-
The component programmer
In our days there are a few occasions when you wrote all the code. I will give 2 examples: 1. Sorting an array In the late 90 I will do a Quick sort implementation . In our days,the .NET the Array Sort https://docs.microsoft.com/en-us/dotnet/api/system.array.sort?view=net-5.0 has many overloads – pick your poison 2. Make a persistent searchable…
-
Friday links 420
1 Angular – Routing https://angular.io/tutorial/toh-pt5 2 forkJoin · learn-rxjs https://www.learnrxjs.io/operators/combination/forkjoin.html 3 GDC Vault – 1,500 Slot Machines Walk into a Bar: Adventures in Quantity Over Quality https://www.gdcvault.com/play/1025766/1-500-Slot-Machines-Walk 4 Adding a new teller | queuing theory example https://www.johndcook.com/blog/2008/10/21/what-happens-when-you-add-a-new-teller/ 5 nosir/cleave.js: Format input text content when you are typing… https://github.com/nosir/cleave.js 6 ASP.NET Core 3.0 Exception Handling –…
-
CORS and Programmer Types
There are many types of programmers – and I would think that I can give an example about how they think differently. My example will be with CORS – that means,accepting requests from other site(s) . In ASP.NET ,there is a simple way to accept anything ( see tutorial at https://docs.microsoft.com/en-us/aspnet/core/security/cors?view=aspnetcore-5.0 ) .AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod() And this will…
-
Friday Links 419
Building a Vue v2 JS app using Vue-router – Liquid Light vuejs/vue: Simple yet powerful library for building modern web interfaces. HackerNews Clone – vue.js Step by step Macros for Visual Studio » Iris Classon Fun with the HttpClient pipeline » Thomas Levesque’s .NET blog In-memory testing using ASP.NET Core | Joseph Woodward,Software Developer Is…
-
[ADCES] RSCG and Communication
Tomorrow I will present at https://www.meetup.com/Bucharest-A-D-C-E-S-Meetup/events/276827530/ – about Roslyn Source Code Generators ( disclosure: I organize the meeting ). Emilian Balanescu will talk about Reliable Communication in Distributed Systems . We wait for you!
-
Friday Links 418
Announcing Microsoft ASP.NET WebHooks V1 | .NET Web Development and Tools Blog Kevin Montrose Dinis Cruz Blog: Roslyn Why is reflection slow? · Performance is a Feature! kevin-montrose/Sigil: A fail-fast validating helper for .NET CIL generation Eliding Async and Await Async and Await IT Jobs Explained With A Broken Lightbulb [comic] Yet another developer blog:…
-
What I should return from WebAPI ?
There are several approaches when returning code from WebAPI . Let’s frame the problem: say we have a Person controller with 2 actions: – a GET {id} – that retrieves the Person with id – a POST {Peron} – that tries to verify the validity of the Person and then saves to database. We…
-
Friday Links 417
Development Delusions: That it is Enough to Build a Better Mousetrap – Simple Talk Untitled Document Developers’ side projects – Joel on Software firehol/netdata: Get control of your servers. Simple. Effective. Awesome. https://my-netdata.io/ Generate Deadlock Summary Information – SQLServerCentral Cost of a slide deck Microsoft introduces two new services to help developers create smart bots…
-
Automate the generation of the e-book
What I have found important in composing the e-book with examples was automating the work of generating the e-book. I have had a json file ( 10 years ago I have used xml ) and some specific folders with the chapters content. I have had also a template for each example chapter – that was…
-
Code as picture and PowerAutomateDesktop
I want to make an e-book from RCSG . For this I need to put the code into the book in a nice form. However,the Word document and the PDF and the HTML all have the ideas of formatting the code. How one can accommodate various formats ? Short answer: picture. What if I take…
I am ok , you are ok