Explore >> Select a destination


You are here

tech.chrishardie.com
| | jreypo.io
7.8 parsecs away

Travel
| | Azure Bastion service enables conectivity to Windows and Linux virtual mahciens running on Azure without the need of having RDP or SSH ports open to the public. By default an Azure Bastion connection to a VM will be open in a new tab in the browser, but Bastion also gives you the possibility of establishing a tunnel using Azure CLI and connect with native RDP or SSH clients.
| | www.kensodev.com
5.7 parsecs away

Travel
| | Usually when I blog, I make comments, raise decisions, write code or something like that, it's never a question. This post, above anything else is a question and a try to spark a debate from my fellow developers and software craftsman out there. Earlier this week I started working on a very interesting project for an international company creating test suites for devices and applications. The suite is cross platform and can run on any machine both windows and Linux and test any device, from mobile phones...
| | ner3y.micro.blog
4.6 parsecs away

Travel
| | Last Update: 18.04.2024 (changes are marked in purple) ?? Mail Client: HEY App on iPhone, HEY on Windows/Web ?? Mail Server: Mailbox.org ??? Notes: Reflect ? To-Do: Todoist (Pro) ?? iPhone Photo Shooting: iOS Camera, Halide ?? Photo Management: Google Photos (Google One 200 GB Plan) ?? Calendar: The standard iOS calendar. I integrate the Google calendar and my work calendar there. ?? Cloud file storage: Google Drive (Google One 200 GB Plan)
| | vlad.website
30.4 parsecs away

Travel
| Sometimes, you want to add some code to test something out, but you definitely want to make sure you don't git commit it. Of course, you should always check the output of git diff before you make a commit (you do, right?), but if you have a lot of changes things can slip through the cracks. A solution is to write a comment containing a string such as "nocheckin": function do_stuff() { printf("hello!!! testing!!!\n"); // nocheckin call_important_thing(); call_other_thing(); } Then, you need to set git up such that it refuses to make a commit if it detects the "nocheckin" string anywhere in your changed files. Here's how to do it.