Skip to content

Instantly share code, notes, and snippets.

View flaketill's full-sized avatar
🏠
Working from home

Armando Ibarra flaketill

🏠
Working from home
View GitHub Profile
@brianspiering
brianspiering / python_nlp_packages.md
Last active April 8, 2024 20:48
A Hacker's Guide to Python string and Natural Language Processing (NLP) packages

A Hacker's Guide to Python string and Natural Language Processing (NLP) packages

Extraction

  • textract - Extract text from any document.
  • camelot - Extract text from PDF.

Preprocessing

@waicool20
waicool20 / Gifview Wallpaper.ds
Last active July 24, 2017 05:50
Animated Wallpapers on Linux
( if
( begin
( contains ( application_name ) "Gifview Wallpaper" )
)
( begin
( maximize )
( wintype "desktop" )
( stick )
( geometry "+0+0" )
( println "match" )
@ivan
ivan / sublime_text.sh
Created January 11, 2017 05:38
How to open files in the correct Sublime Text window instead of the most-recently-used Sublime Text window
#!/bin/bash
# Do not -o pipefail because xdotool returns exit code 1 if no match
set -eu
# For debugging:
# set -o verbose
# When called from the command line, Sublime Text opens files in the most-recently-used window,
# and provides no option for controlling this behavior. Work around this by searching for the
# window we *don't* want the file opened in, finding the other sublime_text window, then raising
@anshula
anshula / phoronix-cmd.md
Last active March 22, 2024 21:43
Phoronix Test Suite Cheat Sheet
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active May 3, 2024 12:32
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository