Explore >> Select a destination


You are here

dumblebots.com
| | ncona.com
2.2 parsecs away

Travel
| | In my previous post, Getting Started With Arduino UNO R4, I showed how we can upload a sketch into an Arduino board. In this article, we are going to do the same, but this time using the Arduino CLI. Why Arduino CLI? I personally, use neovim for coding, which makes it a necessity for me to be able to compile and upload my code from my terminal. If you prefer the IDE, this article might not be for you, but, understanding the CLI could be useful in the future to automate repetitive tasks or run things in a...
| | www.doctormonk.com
4.4 parsecs away

Travel
| | Note. There is now a followup to this post here . The Raspberry Pi is creating quite a storm of interest. I have just got mine and one o...
| | michaelscodingspot.com
2.9 parsecs away

Travel
| | Michael Shpilt's Blog on .NET software development, C#, performance, debugging, and programming productivity
| | joshuarogers.net
21.7 parsecs away

Travel
| Just over a year ago we went over how to setup a reverse proxy that would require our users to authenticate. In our original proxy article, we generated some NGinx configuration that looked a bit like... location / { proxy_pass http://jira; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } And it worked. And everyone was happy. Until the day the request came in that NGinx should add a fixed set of credentials to all upstre...