View add-subtitles.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Converting audio" | |
rm -f temp.wav | |
ffmpeg -i "$1" -ar 16000 -ac 1 -c:a pcm_s16le temp.wav | |
echo "Transcribing" | |
./main -m models/ggml-base.en.bin -f ./temp.wav --output-srt | |
echo "Adding to video file" | |
ffmpeg -i "$1" -i temp.wav.srt -c copy -metadata:s:s:0 language=eng "${1%.*}.subtitled.mkv" |
View gist:cf74cd8e282443b43b8a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Author unknown. | |
1.) Algorithm Complexity: You need to know Big-O. If you struggle with | |
basic big-O complexity analysis, then you are almost guaranteed not to | |
get hired. | |
For more information on Algorithms you can visit: | |
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=alg_index | |
2.) Coding: You should know at least one programming language really | |
well, and it should preferably be C++ or Java. C# is OK too, since |
View runTests.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use whatever your test app directory is for ExampleTest, and whatever the | |
# package you are testing for com.example.test | |
export PATH="$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:$PATH" | |
pushd ExampleTest | |
# adb shell throws away the return value, so we have to hack do some magic | |
# see https://code.google.com/p/android/issues/detail?id=3254 |
View git-fanfic-setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# thanks hanselman https://www.hanselman.com/blog/EasilyRenameYourGitDefaultBranchFromMasterToMain.aspx | |
git config --global alias.new '!git init && git symbolic-ref HEAD refs/heads/canon' | |
# https://twitter.com/tesseralis/status/1271197776886370305 | |
git config --global alias.retcon 'rebase' | |
git config --global alias.op 'blame' | |
git config --global alias.clip-show 'log' | |
git config --global alias.fanfic 'branch' |
View backup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NAME="something" | |
d=$(date "+%F--%H-%M-%S") | |
/usr/local/bin/tarsnap -c --keyfile /root/tarsnap.key --cachedir /usr/local/tarsnap-cache -f $NAME-backup-$d /etc /home /root /var |
View explore.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import defaultdict | |
import json | |
import os | |
import os.path | |
import shutil | |
from pygments.formatters import HtmlFormatter | |
from pygments.lexers import get_lexer_for_filename | |
from pygments import highlight |
View test_pep8.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Run PEP8 on all Python files in this directory and subdirectories as part of the tests.""" | |
__author__ = 'Christopher Swenson' | |
__email__ = 'chris@caswenson.com' | |
__license__ = 'CC0 http://creativecommons.org/publicdomain/zero/1.0/' | |
import os | |
import os.path | |
import unittest |
View helloworld.bf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ | |
+ | |
+ | |
+ | |
+ | |
+ | |
+ | |
+ | |
[ | |
> |
View life.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pprint import pprint | |
import random | |
def nextgen(state): | |
new_state = [] | |
for i in range(5): | |
new_state.append([0] * 5) | |
for x in range(5): |
View rlwe-integers.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder