Skip to content

Instantly share code, notes, and snippets.

View wisehackermonkey's full-sized avatar
♨️
making computers sweat

Oran C wisehackermonkey

♨️
making computers sweat
View GitHub Profile
@wisehackermonkey
wisehackermonkey / Geocaching_user_alamogul_edited.csv
Created July 9, 2020 18:05
Geocaching user with most finds csv file of all they have done
We can't make this file beautiful and searchable because it's too large.
GC7AAZT,Unknown Cache,d28e73ec-c145-44fc-b488-0f31786c257a,100% of The Jasmer Challenge,California
GC5X769,Unknown Cache,7099caec-ff57-4da6-949b-db67480d6a40,A Barrel A Bucket A Riddle A Redux ຒ,California
GC2MCPJ,Traditional Cache,f7fd193e-4b54-4122-a317-aa7ea789aee3,ALOHA ~ ຒCANADA eh?,Hawaii
GC72H6R,Earthcache,8d139c46-c7a8-4eee-93fd-c66d6ae5b50f,H-G Géocaching #589 : VILLENOUVELLE (EARTHCACHE),Occitanie France
GC2P4HM,Earthcache,c3de9d7f-4168-4cf2-96c4-52b1bc777e8f,Hindostan Whetstone ຒ,Indiana
GC7FEJR,Wherigo Cache,f40cea61-c807-43d0-9474-a8d9fbd81c01,⚾️ Home Run! ⚾️,South Dakota
GC28H58,Unknown Cache,2dd42065-1f33-4bee-8be9-dbc54d42fdd5,I am serious... and donຒt call me Shirley,California
GC722M1,Unknown Cache,f879dfec-f1dc-4b1f-b46f-d6696eb7ae8f,It Only Takes 26 Letters to Write A Novel,California
GC7B96,Virtual Cache,225e1955-e6e7-4ddc-8617-a07a6f621429,Jubilee square,Western Cape South Africa
GC7H1GE,Wherigo Cache,7f98300e-f12c-410c-b4ce-29219bf8f086,KCC Reverse Wherigo Geoart #7,California

game ideas

Games to draw from

play with programatic difficutly curve

difficulty curve

@wisehackermonkey
wisehackermonkey / github-actions-recipe-v1.md
Created June 30, 2020 18:29
how to commit files generated by github actions back to the repo

how to commit files generated by github actions back to the repo

    # https://github.com/ad-m/github-push-action
    - name: Commit files
      run: |
        git config --local user.email "[email protected]"
        git config --local user.name "GitHub Action"
        git commit -m "Add changes" -a
 - name: Push changes
@wisehackermonkey
wisehackermonkey / Convert_md_to_pdf_githubactions_4_resume.md
Created June 28, 2020 20:28
how to use pandoc to convert github readme resume to pdf

how to use pandoc to convert github readme resume to pdf

#Steps

docker pull pandoc/latex
docker run --rm -it pandoc/latex  MANUAL.txt --pdf-engine=xelatex -o example13.pdf
linux
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex:2.6 README.md
windows
docker run --rm --volume "${PWD}:/data" pandoc/latex:2.6 README.md
@wisehackermonkey
wisehackermonkey / idea-p5js-instructions-popup.md
Created June 28, 2020 04:59
p5.js popup for instructions on how to play game, mobile and desktop friendly

idea

p5.js popup for instructions on how to play game, mobile and desktop friendly

add: one liner

example

instructions("arrows to move, goal is to get the blocks")

have templates for common input types

improvements for website-to-note.exe

  • make a alternate version that copies it into markdown format
[example website title](www.example.com)
  • strip out url encoding

how to update python from 3.5 -> 3.7 raspberry pi

sudo apt-get update
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
sudo md5sum Miniconda3-latest-Linux-armv7l.sh
sudo /bin/bash Miniconda3-latest-Linux-armv7l.sh
conda config --add channels rpi
conda install python=3.6 # notes 3.7 doesnt exist! as of (20200623)
conda create --name python36 python=3.6