Explore >> Select a destination


You are here

blog.nuculabs.de
| | powershellisfun.com
14.1 parsecs away

Travel
| | You always use certificates but forget when they expire until it's too late. In this blog post, I will show you how to use a small script when starting a PowerShell session to display certificates about to expire on your Windows system.
| | www.brandonpugh.com
17.3 parsecs away

Travel
| | It's pretty easy to configure npm to connect through a proxy by setting the proxy and https-proxy config settings and you can even use npm config set which will store them in your .npmrc file. Connecting through a corporate proxy that requires authentication, however, can be a little trickier. To specify your credentials, you have to place them in the proxy url so your npm command would look something like this:
| | luten.dev
12.0 parsecs away

Travel
| | Ive been out of the .NET loop for a very long time. I would never have thought that it was so easy to get a .NET project up and running on Linux. But, I guess a decade of embracing Open Source at Microsoft changes things. Here are the steps I took to get an OpenGL window up and running on Ubuntu using .NET Core, VSCode, and OpenTK.
| | chaosinmotion.com
78.6 parsecs away

Travel
| A design pattern is defined as "general, reusable solution to a commonly occurring problem within a given context in software design." The idea is that when you encounter a problem, it provides a ready to use template for helping to solve that problem. If you look at the Wikipedia article linked above, we then drop...