Skip to content

Instantly share code, notes, and snippets.

View minademian's full-sized avatar

Mina Demian minademian

View GitHub Profile

Keybase proof

I hereby claim:

  • I am minademian on github.
  • I am minademian (https://keybase.io/minademian) on keybase.
  • I have a public key ASD93lruSUIhKNCxwJtvzi0LnIHrJmybAS7eCGKz7VYgwgo

To claim this, I am signing this object:

@minademian
minademian / sanitize-dir-listing
Created January 14, 2017 00:50
sanitize Linux directory listing
# Sanitize a Linux directory listing so that it shows files, directories, and contents of subdirectories
# useful for sending a listing in an email, IM message, or online
^\-?[a-z]+(\s) # directory bit and file permissions
[0-9]{1}(\s) # directory counter, shows how many subdirectories this file has.
[a-z]+\s # owner
[a-z]+\s+ # group
[0-9]+\s+ # filesize
[a-z]+\s+[0-9]+\s+
[0-9]+:?[0-9]+\s # date, last updated
git init --bare $HOME/.cfg
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
config config --local status.showUntrackedFiles no
echo "alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'" >> $HOME/.zshrc
@minademian
minademian / interactive-search-replace-vim
Created April 6, 2017 09:51
interactive search/replace in Vim
:%s/old/new/gc
@minademian
minademian / wgetGah.sh
Created May 15, 2017 17:35
batch move downloaded PDFs to new dir
#!/bin/bash
srcDir="/foo/bar" # <--- change this to where you will download the files
newDir="/foo/bar/ouch" # <--- change this to where you want to move the files
url="your url"
echo "Let's download some files..."
wget -m -P $srcDir -A pdf $url
echo "going to $srcDir..."
^(.*)(\r?\n\1)+$ # search for duplicate lines in file
\: # look for character
\n # put in newline character
@minademian
minademian / ls-output-cleaner
Last active April 11, 2018 13:59
cleans up output from GCE Storage Bucket if you copy and paste from browser into text editor
\/[(\s+)\—]+Folder[(\s+)\—]+
@minademian
minademian / duplicate-lines.regex
Created April 11, 2018 14:16
delete duplicate lines in text editor
^(.*)(\r?\n\1)+$
@minademian
minademian / ReplaceSweChar
Created April 27, 2018 11:12
replace Swedish characters
" Replace all Swedish special characters with entities.
" adapted from http://vim.wikia.com/wiki/HTML_entities
nnoremap <silent> ,r :call ReplaceSweChar()<CR>
function! ReplaceSweChar()
silent %s/Å/\&Aring;/eg
silent %s/Ö/\&Ouml;/eg
silent %s/Ä/\&Auml;/eg
silent %s/É/\&Eacute;/eg
silent %s/å/\&aring;/eg
silent %s/ö/\&ouml;/eg
@minademian
minademian / .babelrc
Last active June 14, 2018 09:14
Internationalization project - automating the 1) process of checking if existing copy keys are being used, 2) if keys conform to BEM
{
"presets": ["es2016"]
}