MSBuild: Build C#7 Project with GitLab
Since I started using C# 7's features like 'Local Functions', 'Inline out variables' or 'expression-bodied members' I ran into a p…
Since I started using C# 7's features like 'Local Functions', 'Inline out variables' or 'expression-bodied members' I ran into a p…
If you tail, less, cat or grep big log files you often encounter lines that contain no usefull information to you but are getting…
It took me a while to figure out how to do this: var objectContext = ((IObjectContextAdapter)dbContext).ObjectContext; var refres…
Entity Framework can be slow when inserting data using a foreach loop for example. This Method uses the SqlBulkCopy class to speed…
Extend Monitor to another computer: http://spacedesk.ph Web-Based Email Client: http://www.rainloop.net Duplicate Detection/Clean…
Here is a little collection of command line shortcuts that you can use to save some MouseClicks: Hibernate System: %WINDIR%\Syste…
We're in 2018 and some nice guy wrote an awesome python script which autoselects the best mirror based on the country you provide…
Change origin from HTTPS to SSH git remote rm origin git remote add origin git@git:XYZ.git git pull git branch —set-upstream-to=o…
Autostart chromium in fullscreen mode Edit ~/.config/lxsession/LXDE-pi/autostart and add the following line: @chromium-browser --s…
Method: > A method is a piece of code that is called by a name that is associated with an object. In most respects it is identica…