Skip to content

Instantly share code, notes, and snippets.

View emjayoh's full-sized avatar

Matt Ogram emjayoh

View GitHub Profile
@emjayoh
emjayoh / resume3.json
Last active April 7, 2023 22:42
jsonresume-aimee
{
"meta": { "theme": "elegant" },
"basics": {
"name": "Aimee Birch",
"email": "earthaimee422@gmail.com",
"phone": "(619) 214-7192",
"picture": "https://scontent-sjc3-1.xx.fbcdn.net/v/t39.30808-6/271818527_5097743013569380_1108558749193768120_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=09cbfe&_nc_ohc=u4tjsndJYvkAX_axGNb&_nc_ht=scontent-sjc3-1.xx&oh=00_AfAssaqvtVeiKNHgnWUeyM1kOfL0t9R1XumcF2RXYnZCFg&oe=64362668",
"objective": "To obtain a position in project coordination or management where I can utilize my organizational skills and experience to successfully manage projects and exceed client expectations.",
"location": {
"city": "San Diego, CA",
@emjayoh
emjayoh / resume.json
Last active April 11, 2023 14:46
resume.json
{
"meta":{
"author":"emjayoh",
"theme":"elegant"
},
"basics":{
"name":"Tera Little",
"label":"Professional Commercial/Private Cleaning Services",
"email":"tera@ogram.us",
"phone":"(619) 844-7613",
@emjayoh
emjayoh / jq-cheetsheet.md
Created February 21, 2022 13:43 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@emjayoh
emjayoh / remove-spaces.sh
Created January 12, 2022 15:21
[remove spaces] removes pesky spaces from things like filenames #bash #terminal #copypaste
find . -depth -name '* *' \
| while IFS= read -r f ; do mv -i "$f" "$(dirname "$f")/$(basename "$f"|tr ' ' _)" ; done
@emjayoh
emjayoh / killnotifications.sh
Created December 28, 2021 13:22
[kill multiple notifications]
pkill NotificationCenter
@emjayoh
emjayoh / move-nested-dirs.sh
Created December 16, 2021 19:31
[move sub^2 dir to parent dir] #bash
#!/bin/bash
#needed in case we have empty folders
shopt -s nullglob
#we must write the full path here (no ~ character)
target="/path/to/photos"
#we use a glob to list the folders. parsing the output of ls is baaaaaaaddd !!!!
#for every folder in our photo folder ...
@emjayoh
emjayoh / docx-to-markdown.sh
Created November 25, 2021 09:42
[docx->md] convert word to markdown #word #docx #markdown #convert
# -t gfm (GitHub-Flavored Markdown)
# -t markdown_mmd (MultiMarkdown)
# -t markdown (pandoc’s extended Markdown)
# -t markdown_strict (original unextended Markdown)
#- t markdown_phpextra (PHP Markdown Extra)
# -t commonmark (CommonMark Markdown)
pandoc -f docx -t markdown foo.docx -o foo.markdown
@emjayoh
emjayoh / convert-h265-h265.sh
Created November 17, 2021 18:10
[convert h.264 to h.265 hevc] use ffmpeg #conversion #video
ffmpeg -i input.mp4 -c:v libx265 -vtag hvc1 output.mp4
@emjayoh
emjayoh / vidconcat.sh
Created November 17, 2021 18:08
[concatenate video files of same type] use ffmpeg #video #concat
echo file file1.mp4 > mylist.txt
echo file file2.mp4 >> mylist.txt
echo file file3.mp4 >> mylist.txt
ffmpeg -f concat -i mylist.txt -c copy output.mp4

Keybase proof

I hereby claim:

  • I am emjayoh on github.
  • I am emjayoh (https://keybase.io/emjayoh) on keybase.
  • I have a public key ASDhaAsMNteTp1_XlKZ5-w47diK_tGpXFqfZXPeCliuX-Qo

To claim this, I am signing this object: