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 / 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 / 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

game ideas

Games to draw from

play with programatic difficutly curve

difficulty curve

@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
@wisehackermonkey
wisehackermonkey / detect_program_lang.md
Created July 16, 2020 18:51
how to detect python, java, c programming languages using regex

hacker rank example

function trim(s){ 
  return ( s || '' ).replace( /^\s+|\s+$/g, '' ); 
}
function processData(input) {
            input = trim(input)

    var split = input.split('\n');
 split.shift();
@wisehackermonkey
wisehackermonkey / research-zmq.md
Last active July 30, 2020 18:51
Research into what zmq is

Zmq

ZeroMQ

looks like its similar to mqtt but faster and more flexiable written in c/c++, and supports bindings in python (most docs are in c++) does not require a server

Frames

  • frames are (message parts) blocks of data with specific length. has garente of being recieved at the other end
@wisehackermonkey
wisehackermonkey / Photo_shop_automation.md
Created September 21, 2020 20:39
How to automate photoshop
@wisehackermonkey
wisehackermonkey / MindMap_TSS_brainstorm_shellhacks_2020_hackathon_v1.md
Last active September 25, 2020 23:07
MindMap TSS brainstorm shellhacks 2020 hackathon v1