Skip to content

Instantly share code, notes, and snippets.

View VitaliySh's full-sized avatar

Vitaliy Shaykhutdinov VitaliySh

  • Somewhere in the Ural Mountains
View GitHub Profile
@fworks
fworks / install-zsh-windows-git-bash.md
Last active January 21, 2026 17:51
Zsh / Oh-my-zsh on Windows Git Bash

SetUp Nightscout with MongoDB Atlas, xDrip+, and Google App Engine

This document describes making Google App Engine hosted nightscout application, with MongoDB Atlas and xDrip+.

Google App Engine

  1. Navigate to https://cloud.google.com
  2. Go to App Engine and create your first project. Choose the name of your project wisely, this will also be your URL to access Nightscout for yourself.
  3. Select your appengine configuration. Standard runtime, usCentral, node.js (note: us-central1 is where free tier is!)
  4. Open the terminal on your computer. If you dont know where this is, do a search for "Terminal" and open that application.
  5. Install gcloud command sdk, hit enter many times to accept all the defaults
@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active February 14, 2026 17:47
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@nickoala
nickoala / gpspipe.md
Last active June 6, 2025 14:27
Log GPSD Outputs and Extract Lat/Lon

Log GPSD Outputs and Extract Lat/Lon

$ gpspipe -w             # log to stdout
$ gpspipe -w -o abc.log  # log to a file

To auto-log on startup, insert the following line to the file /etc/rc.local:

@willurd
willurd / web-servers.md
Last active March 22, 2026 04:27
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000