Skip to content

Instantly share code, notes, and snippets.

View joshartman's full-sized avatar

joshartman

  • CAVOK Software Systems GmbH
View GitHub Profile
@noonat
noonat / coreos-virtualbox.md
Last active February 10, 2023 22:00
Installing CoreOS on VirtualBox
  • Download and install VirtualBox.
  • Download the CoreOS ISO
  • Create a new VM in VirtualBox
    • For the OS, Other Linux, 64-bit should be fine
    • Give the VM 1gb of memory, like your physical hardware has.
    • Create a disk of whatever size you want. I made a VMDK file that could expand dynamically up to 8gb.
  • Mount the ISO in the VM
    • Right click on the VM and click settings
  • Go to the storage tab
@ivanvladimir
ivanvladimir / pushbullet IP
Last active March 12, 2020 20:43
Bash function to update my given IP via Pushbullet
#!/bin/bash
function pb_msg {
curl -vs -o /dev/null \
-u PUSHBULLET_TOKEN \
https://api.pushbullet.com/v2/pushes \
-d type=note \
-d title="$1" \
-d body="$2" 2> /dev/null
}