If you ever need to #decompile a #dotNET assembly real quick, look no further: https://t.co/9gdfnJPZca can handle it...
My use case was checking a .DLL included in a @NuGet package to see if it was being packed correctly by @AzureDevOps pipeline.
@ilspy
Useful command to count the number of files by file type in a #git repository branch:
git ls-files -x *.cs -i | wc -lg
* note that we're counting C# code files only with extension .cs.
#numberoffiles#count#filetype
A great paradigm shift... code UI once and use everywhere.
What’s behind the hype about #Blazor?
https://t.co/pcqv1KjBkD
https://t.co/QHhOMnqd72
https://t.co/LwTCM9hXPu
https://t.co/awAXJp1nBT
@stevensanderson
Enjoying #MSBuild2020 while working remotely at the same time. This is the 1st time ever I'm able to attend.
...all from the comfort of my house.💻 Thanks God!🙏
I just love the technology industry.
@satyanadella speaking right now...
https://t.co/TjbD5WVWAq
#Covid_19#MSBuild
Nice way of running an ad-hoc #query on all #SQLServer#Elastic DBs at once:
EXECUTE master.sys.sp_MSforeachdb '
USE [?];
IF (DB_NAME() LIKE ''corporation-product-client-db-%'')
BEGIN
SELECT Verified FROM dbo.TransactionAttempts WHERE Verified <= ''2000-01-01''
END
'
@SQLServer
#VisualStudio Interactive Window is the way to go when you need to check something real quick while writing code... by using it there's no need to run the whole app just to get to that line of code.
C# read-evaluate-print-loop (#REPL) for the win! #CSharp
https://t.co/LU0tJET7s8
I needed to find some piece of code I worked on some days ago but didn't remember in what file it is... so here goes a beautiful and fast way of finding all files touched by a given user in a #git repo:
git log --no-merges --author="name" --name-only --pretty=format:"" | sort -u
While developing a Web #API client to manipulate some #JSON I just skipped 1 to 2 hours of vile donkey work by generating 354 lines of #csharp with @quicktypeio 🎉😎 https://app.quicktype.i
Just copy paste your full JSON and voilá... you've gotten all C# classes. Just amazing.
Just installed this @googlechrome extension:
https://t.co/Cme9BnjoqS
Experience a beautiful image from Google Earth every time you open a new tab.
https://t.co/cQVsbh7SRs
@googleearth
For someone who has implemented user #authentication and #authorization using @Azure B2B and B2C in the past 6 months...
I just played with @Auth0 and it was a breeze. In less than 4 hours got it integrated into a #ReactJS web app.
Really well done Software as a Service. #SaaS
I really liked this #free alternative to Postman in Mac OS: Insomnia #REST Client
Their motto:
"Debug #APIs like a human, not a robot.
Finally, a REST client you'll love."
- Create HTTP requests
- View response details
- Organize everything
@GetInsomnia