Skip to content

Instantly share code, notes, and snippets.

View excenter's full-sized avatar

Andrew Batz excenter

View GitHub Profile
@excenter
excenter / strip.bash
Last active October 9, 2018 13:55
pull file extensions off of file names
export INPUT=filename.pdf;
export FOLDER=folderName;
STRIPPED=${INPUT%%.*}
aws s3 cp $INPUT s3://BUCKET/path/$(echo $FOLDER)/$(echo $STRIPPED)_i.pdf --content-disposition inline
@excenter
excenter / logger.js
Created October 30, 2018 17:08
a lambda that just logs everything.
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!')
};
return response;
};
@excenter
excenter / rune.bash
Created November 30, 2018 04:35
Mojave pyenv update
export VERSION="3.7.1"
xcode-select --install
brew update
brew upgrade
brew install zlib
brew reinstall zlib
export LDFLAGS="-L/usr/local/opt/zlib/lib"
export CPPFLAGS="-I/usr/local/opt/zlib/include"
pyenv install $VERSION
pyenv global $VERSION
setInterval(function(){
var buttons = document.getElementsByClassName('liked');
var i = 0; buttons[i].scrollIntoView(); buttons[i].click();
},250);
@excenter
excenter / youtube-dl-init.bash
Created January 2, 2019 20:52
bish lasagna
youtube-dl "https://www.youtube.com/watch?v=Mr__WcIjGs4" --write-auto-sub -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio' --merge-output-format mp4
@excenter
excenter / time.js
Created January 15, 2019 16:19
get the current local time in your clipboard
copy(new Date().toLocaleString());
@excenter
excenter / squish.js
Created January 17, 2019 21:22
it's like minify, but different in subtle ways important to few people.
function jsonSquish(contents){
// remove all line breaks
// console.log(contents)
contents = contents.replace(/\r?\n|\r/g,"")
contents = contents.replace(/"/g, '\"\"')
// console.log(contents)
// compress all multiple spaces down to one space
change = ""
for(;change !== contents;){
// console.log(contents)
@excenter
excenter / grab_complete_node.py
Created March 18, 2019 03:35
py2neo cheat sheet
from py2neo import Graph, Node, Relationship
graph = Graph(
host="alpha.graph.domain.co",
auth=('neo4j', 'thePassword-butBetter')
)
url="https://py2neo.org/v4/database.html#py2neo.database.Graph.delete_all"
a = Node("Type", url=url)
graph.merge(a, "Website", "url")
from pyogg import VorbisFile
from pygame import mixer
# path to your audio
path = "./file.ogg"
# an object representing the audio, see https://github.com/Zuzu-Typ/PyOgg
sound = VorbisFile(path)
# pull the frequency out of the Vorbis abstraction
frequency = sound.frequency
# initialize the mixer
@excenter
excenter / KillWebroot.bash
Last active August 7, 2021 18:56
All the nonsense you have to run to actually get rid of webroot.
sudo launchctl unload /Library/LaunchDaemons/com.webroot.security.mac.plist;
sudo kextunload /System/Library/Extensions/SecureAnywhere.kext;
sudo rm /usr/local/bin/WSDaemon;
sudo rm /usr/local/bin/WFDaemon;
sudo killall -9 WSDaemon;
sudo killall -9 WfDaemon;
sudo killall -9 "Webroot SecureAnywhere";
sudo rm -rf /System/Library/Extensions/SecureAnywhere.kext;
sudo rm -rf "/Applications/Webroot SecureAnywhere.app";
sudo rm /Library/LaunchAgents/com.webroot.WRMacApp.plist;