Skip to content

Instantly share code, notes, and snippets.

@snowblink
snowblink / steam_deck.md
Created August 8, 2022 10:27
Steam Deck Notes

Steam Deck Notes

Apple Bluetooth Keyboard (old one that takes AA batteries)

To connect this, you have to be in Desktop mode and you have to hold down the power key on the keyboard until you are asked for some numbers.

To install Epic Games Store Games (Into the Breach)

  1. In Desktop mode use Discover to install Heroic Games Launcher
  2. Start Heroic Games Launcher and download the games you want to play
  3. Run the game at least once in Desktop mode.
  4. Download Heroic Games Bash Launcher https://github.com/redromnon/HeroicBashLauncher
@snowblink
snowblink / paint_holders.md
Last active September 2, 2020 20:14
Paint Holders
  • Citadel
  • Redgrass Games V2
  • Garfy's Get a Grip - some IA figures loose, but that's probably due to FFG printing. Have broken the arm.
  • Warcradle MDF Paint Gripper
  • Hobby Holder
  • Rathcore
@snowblink
snowblink / es_on_docker.md
Last active February 23, 2018 17:18
Run ES on Docker
docker network create elastic
docker run --network=elastic --name=elasticsearch -p 9200:9200 docker.elastic.co/elasticsearch/elasticsearch:6.2.2
docker run --network=elastic -p 5601:5601 docker.elastic.co/kibana/kibana:6.2.2
@snowblink
snowblink / gist:47900
Created January 16, 2009 11:29 — forked from joho/gist:47746
# what is the idiomatic ruby for this:
# if the var is an array, do_something with each element, otherwise just do something with the var
# if var.is_a?(Array)
# var.each do |element|
# do_something(element)
# end
# else
# do_something(var)
# end