-
TILT- React Material UI and Navigation–part 29
I wanted some good looking on the site – so I choose https://mui.com/ It does not have ready made navigation like in Angular – so I need to make on myself. Fortunately,it has the all the things that one need: Media Query: https://mui.com/material-ui/react-use-media-query/ App Bar: https://mui.com/material-ui/react-app-bar/ The final code looks like that const theme =…
-
TILT- Angular2React–part 28
I was thinking to learn React – and transform the Angular site to React. The steps that I took are the folllowing: Learn React from https://reactjs.org/tutorial/tutorial.html – and learning that React is a library,not a framework Learn useEffect,useState with Hooks – very easy Learn that React can have a TypeScript template – it will make…
-
Friday links 496
package.json | npm Docs A Set of Unit Testing Rules The State of WebAssembly – 2021 and 2022 veler/DevToys: A Swiss Army knife for developers. Code Smells in Exceptions – XP123 Scaling the Practice of Architecture,Conversationally Azure Affinity Map A launch.json setting for end-to-end web development | Christian Heilmann The Biggest Mistake I See Engineers…
-
TILT-REACT Router
Now to see how to handle FrontEnd routing ( From Backend it is simple – just transfer to index.html and React will handle it ) The long established in React world seems to be https://github.com/remix-run/react-router . There is a new kid,https://github.com/Paratron/hookrouter – that uses hooks. However,the documentation says: This project is not and will not…
-
NetCoreUsefullEndpoints-5 Endpoints summary
So for now the package https://www.nuget.org/packages/NetCoreUsefullEndpoints/ has the following endpoints: GET=>/api/usefull/user/authorization GET=>/api/usefull/user/noAuthorization GET=>/api/usefull/environment GET=>/api/usefull/errorWithILogger GET=>/api/usefull/errorPure GET=>/api/usefull/date GET=>/api/usefull/endpoints/graph ( this calls https://github.com/dotnet/aspnetcore/blob/8bf447aa3f9719f6f162598708020dd4b420b49d/src/Http/Routing/src/Internal/DfaGraphWriter.cs#L22 ) GET=>/api/usefull/endpoints/text GET=>/api/usefull/configuration ( this calls https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.configuration.configurationrootextensions.getdebugview?view=dotnet-plat-ext-6.0 ) You can see in practice at https://netcoreusefullendpoints.azurewebsites.net/swagger/
-
Friday links 495
https://twitter.com/GeePawHill/status/1558165212250898432 Interesting Technology Tips – Vol. 1 | Khalid Abuhakmeh mariotoffia/FluentDocker: Use docker,docker-compose local and remote in tests and your .NET core/full framework apps via a FluentAPI Incident Review and Postmortem Best Practices – The Pragmatic Engineer Redis Explained bbc/peaks.js: JavaScript UI component for interacting with audio waveforms Monitor Events and Function Calls via Console…
-
TILT- Telemetry/Observability for FE and BE-part 27
Now it is the case to monitor the calls how they arrive from Web ( frontend ) and continue to the backend. Fortunately,it is very simple in Application Insights There are 2 relevant links for Angular https://devblogs.microsoft.com/premier-developer/angular-how-to-add-application-insights-to-an-angular-spa/ https://learn.microsoft.com/en-us/azure/azure-monitor/app/javascript-angular-plugin https://learn.microsoft.com/en-us/azure/azure-monitor/app/javascript?tabs=snippet#enable-distributed-tracing The code is relative well written and appears ok. The fact that the AppInsights SDK is…
-
Friday links 494
Using .NET To Validate JSON with JSON Schema | Khalid Abuhakmeh How we built a $1M ARR open source SaaS | Plausible Analytics mtdvio/every-programmer-should-know: A collection of (mostly) technical things every software developer should know about Creating the C# Slack Client Library by Code Generation with Good Architecture in Three Days – CodeProject jacomyal/sigma.js: A…
-
[ADCES]GIS & Windows 10 Features
Prezentare 1 : Lumea din spatele hartilor – sau ce este GIS-ul?Descriere: GIS este ceea ce folosim atunci cand vrem sa raspundem la intrebarea “Unde?”. Mai exact,sa raspundem la acele inrebari unde spatiul este o componenta si “Unde?” joaca un rol important. Simplu spus,GIS este procesarea datelor spatiale,sau datelor referitoare la “Unde?”O sa vedem Ce…
-
TILT-Count TILTS for each user-part 27
I just wanted to know for each user how many tilts have each user/ url . As a Business Requirement,it is not a big deal. Let’s see what it means for a programmer . 1. Add functions to the backend to calculate the count 2. Add to the frontend call to the function 3. Figure…
I am ok , you are ok