-
Bere cu ADCES pe 1 octombrie la 19:30
FB : https://www.facebook.com/events/412204707702706/ Meetup : https://www.meetup.com/bucharest-a-d-c-e-s-meetup/events/288604931/ Linkedin: https://www.linkedin.com/events/laoberecuadces6977614756975136768 Va astept !
-
Licences for .NET Core and Angular–part 24
I was curious about the licences that .NET Core and Angulare are using. It was interesting to find that ng build (https://angular.io/cli/build) has a –extract-licenses flag- and creates 3rdpartylicenses.txt For .Net Core I have found https://github.com/tomchavakis/nuget-license that creates a file with dotnet dotnet-project-licenses -i NetTilt\NetTilt.WebAPI -o –outfile NetTilt\NetTilt.WebAPI\wwwroot\netcorelicences.txt -t And I copy those,in the CI,to…
-
TILT- Docker with Ductus.FluentDocker–part 23
I have already tests with Sqlite – however,it will be better to try tests with a real SqlServer . One of the way to have a sql server is to have docker – but how to start docker with sql server any time ? One of answers is Ductus.FluentDocker – https://www.nuget.org/packages/Ductus.FluentDocker – and this is…
-
Friday links 490
ethereal.email trekhleb/javascript-algorithms: Algorithms and data structures implemented in JavaScript with explanations and links to further readings future-architect/cheetah-grid: The fastest open-source data table for web. Reverse Engineering – EF Core | Microsoft Docs Source generator updates: incremental generators: Exploring .NET 6 – Part 9 runtime/LoggerMessageGenerator.Roslyn4.0.cs at v6.0.0-rc.2.21480.5 · dotnet/runtime roslyn/incremental-generators.md at main · dotnet/roslyn Roslyn…
-
TILT–Some improvements-part 23
I wanted to have a share on TILTs,instead of a clipboard copy. Discovered that browser navigator has a native share – https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share . Implementation very simple ( not so good,) private share(str:string): boolean{ if (‘share’ in navigator) { navigator .share({ title: ‘TILT!’, text: str, url: environment.url + ‘AngTilt/tilt/public/’+this.profileForm.controls[‘url’].value }) .then(() => { console.log(‘Callback after sharing’);…
-
TILT- TimeZone -part 22
To see if two TILTS are in the same day,it is not enough to see if the difference is less than one day. Could be less than 1 day in UTC – but in Europe/Bucharest can be the next day ( suppose that I put one TILT at 23:59:59 local time – the next TILT…
-
Vintage Development part 2 si RX
Pe 13 septembrie 2022,ora 19:30, va fi un nou meetup ADCES despre “Vintage Development part 2 si RX” Details Prezentare 1:Vintage development part 2 – VB6.0,Classic ASP,Windows NT Server,Visual SourceSafePrezentator: Julian Atanasoae,https://www.linkedin.com/in/julianatanasoae/ Prezentare 2:Reactive Extensions in .NET si JavaScript cu multe exemple in AngularPrezentator: Andrei Ignat,http://msprogrammer.serviciipeweb.ro/Descriere: In cadrul prezentarii o sa fie o introducere in…
-
TILT-AMS – about my software-part 21
One of the most related are data that fill the database for developer – and do not fill into production AMS ( About My Software) could help . It generates an unique class that inherits public class AboutMySoftware { public string Authors { get; set; } public bool IsInCI { get; set; } public string…
-
TILT-Angular 14 and small updates-part 20
It is always good to have the latest version of NuGet packages – if it does not break the application,of course. Easy task when you have some automated test -and Visual Studio is doing this for you. However,to update an Angular application where the version is fixed – a nightmare. I will do in a…
-
TILT-Server Timing in Browser-part 19
For see fast what is happening with your server,you can use the Server Timing API. One of the implementations for .NET is https://github.com/tpeczek/Lib.AspNetCore.ServerTiming . Not a big deal – implemented separately with AOPMethodsCommon – but I think it is a good idea to use it. The implementation was straightforward builder.Services.AddScoped<ServerTiming>(); var app = builder.Build(); app.UseServerTiming();…
I am ok , you are ok