The good source of tasks for interview questions

blake kathryn

Kiana Khansmith
taylor price
No title available
No title available
we're not kids anymore.
Misplaced Lens Cap
noise dept.
trying on a metaphor

Love Begins
Sweet Seals For You, Always
styofa doing anything

PR's Tumblrdome
Claire Keane

Discoholic 🪩
Xuebing Du
Show & Tell

roma★
NASA
ojovivo

seen from China
seen from United States
seen from Singapore
seen from Ukraine

seen from Canada

seen from United States
seen from South Africa

seen from United States
seen from Canada
seen from Netherlands

seen from Netherlands

seen from Yemen
seen from Germany

seen from Netherlands

seen from Malaysia

seen from United States

seen from Türkiye

seen from United States
seen from Brazil
seen from Brazil
@stormsw
The good source of tasks for interview questions
How to preserve exception stack?
Now everyone knows that you have to use “throw;” to rethrow an exception with the original stack. But when your requirements don't allow to get throw at once? This happens with async tasks quite often. Starting from .net 4.5. you have a helper class that captures all required info and rebuilds exceptions stack:
ExceptionDispatchInfo.Capture(mySavedException).Throw();
Let’s Encrypt is the “free, automated, open Certificate Authority” that wants every website to use encryption by default, by making it easy…
Selenium 3.6.0
Regex to replace JSON array property value
I got an idea to replace (hide) on fly JSON object responses from the server API on the logger with help of short REGEX:
Recently I worked on a problem where there was an issue with MIME type application/json from being compressed in as expected in IIS 7.5. After checking the starting steps like are the proper roles installed on the web server, then went about collecting the applicationHost.config (from %windirSystem32inetsrvconfig) and the associated web.config files to...
The dynamic caching in IIS may require configuring frequency parameter
Custom SSL generation on Windows
http://day.ir/en-us/articles/ssl/create-csr-sha2-algorithm
Windows VPN routes
In case you need automatic routes added after VPN connection established on the windows machine (WS2012+,W8.1+). Start powershell as administrator and issue: Add-VpnConnectionRoute https://technet.microsoft.com/en-us/library/dn262649(v=wps.630).aspx
Tool for visualizing algorithms.
Good compilation of resources
IIS reverse proxy
Async operations in .Net
Its concept in C#5 with TPL are very close to a popular javascript framework - Promises.
The general usage pattern is: var task = DoAsync();
if( task.IsCompleted) { /* process task.Result */ }
task.CompleteWith(t=>ProcessSuccess(t), TaskContinuationOptions.NotOnFaulted);
task.CompleteWith(t=>ProcessError(t), TaskContinuationOptions.OnlyOnFaulted); /*t.Exception.InnerException*/
Also its recommeded to keep all async operations together, mix with synchronous will cost you all of async benefits vapored and can produce thread locks.
I found this blog very informative: https://weblogs.asp.net/dixin/understanding-c-sharp-async-await-3-runtime-context
Open an Administrator command prompt.
Press the Win key, type cmd.exe, and press Ctrl + Shift + Enter to run the Command Prompt as Administrator.
It's very interesting idea to optimize system drive using VHD files
Using mimikatz on windows user can export certificates that were setup using Symatec PKI Client and were marked non-exportable.
Hack PKI certs for use on linux