Skip to content

Instantly share code, notes, and snippets.

View sgoggins's full-sized avatar
🧨
Engines pumping and thumping in time The green light flashes, the flags go up

Sean P. Goggins sgoggins

🧨
Engines pumping and thumping in time The green light flashes, the flags go up
View GitHub Profile

SQL to extract the GitHub organization from a repository URL

SELECT distinct 
    substring(repo_git from 'github.com/([^/]+)/') as org_name
FROM
    repo
@sgoggins
sgoggins / gist:653c59e35f8087680f200527788f3e6a
Created September 5, 2024 18:48
Word Document to Markdown using Pandoc
pandoc -s CS3050SP2024-A2.docx -t markdown -o CS3050a2.md
@sgoggins
sgoggins / gist:6387a4287bbe45201a3a1b1d2a6ce3c6
Created September 5, 2024 18:50
Pandoc Word to Markdown
https://gist.github.com/sgoggins/653c59e35f8087680f200527788f3e6a
@sgoggins
sgoggins / docxtomarkdown.md
Last active October 1, 2024 18:05
Pandoc: Word to Markdown

Convert a Word Document to Markdown

 pandoc -s CS3050SP2024-A2.docx -t markdown -o CS3050a2.md 

Convert a Word Document to Latex

pandoc -s Draft_method_findings.docx -t latex -o draft.tex