I hereby claim:
- I am vallieres on github.
- I am vallieres (https://keybase.io/vallieres) on keybase.
- I have a public key whose fingerprint is 6E00 2E5B EA9B 19AC 174E E079 F28A A14A 4A37 AC54
To claim this, I am signing this object:
// Create here: | |
// https://katanya.co.uk/labs/bookmarklet-generator | |
let jiraIssue = jQuery('a[data-testid="issue.views.issue-base.foundation.breadcrumbs.current-issue.item"] span')[0].textContent.toUpperCase(); | |
let jiraTicketName = jQuery('h1[data-test-id="issue.views.issue-base.foundation.summary.heading"]')[0].textContent; | |
jiraTicketName = jiraTicketName.toLowerCase().split(" ").join("-").split("/").join("-"); | |
jiraTicketName = jiraTicketName.replace(/[^a-z0-9-_]+/g, ''); |
javascript: void((function(d) { | |
d.querySelectorAll('button[aria-label="Toggle diff contents"]').forEach(function(x) { | |
x.click() | |
}); | |
})(document)); |
javascript: void((function(d) { | |
function collectionHas(a, b) { //helper function (see below) | |
for(var i = 0, len = a.length; i < len; i ++) { | |
if(a[i] == b) return true; | |
} | |
return false; | |
} | |
function findParentBySelector(elm, selector) { | |
var all = document.querySelectorAll(selector); |
brew install ffmpeg --with-chromaprint --with-fdk-aac --with-fontconfig --with-freetype --with-frei0r --with-game-music-emu --with-libass --with-libbluray --with-libbs2b --with-libcaca --with-libgsm --with-libmodplug --with-librsvg --with-libsoxr --with-libssh --with-libvidstab --with-libvorbis --with-libvpx --with-opencore-amr --with-openh264 --with-openjpeg --with-openssl --with-opus --with-rtmpdump --with-rubberband --with-sdl2 --with-snappy --with-speex --with-tesseract --with-theora --with-tools --with-two-lame --with-wavpack --with-webp --with-x265 --with-xz --with-zeromq --with-zimg |
<?php | |
function getSslPage($url) { | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); | |
curl_setopt($ch, CURLOPT_HEADER, false); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_REFERER, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); |
#!/bin/bash | |
# Generates 1000 files with name from 1.txt to 1000.txt, each file has a random set of letters and number equivalent to the number its filename. | |
# For example, 12.txt has a string of 12 chars inside it. | |
for i in {0001..1000} | |
do | |
CONTENT=$(cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9' | fold -w $i | head -n 1) | |
echo $CONTENT > "file_${i}.txt" | |
done |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
TZ=America/New_York | |
timestamp="$(date +"%s")" | |
touch ~/logs/user/jekyll_hp_$timestamp.log | |
SUBJECT="Hipster Pixel - Jekyll Update ($timestamp)" | |
EMAIL=" <enter your email here> " |
require 'vendor/autoload.php'; | |
use Cocur\Slugify\Slugify; | |
/* This goes inside your API function */ | |
header('Content-Type:text/plain'); | |
$slugify = new Slugify(); | |
echo $slugify->slugify($string); |
if( $key != 'aRandomKeyThatMakesItPrivate' ) { | |
return '404'; | |
} | |
// The dir where the Git repo will live on your server | |
$repo_dir = '/home/username/webapps/website_git/'; | |
// Full path to git binary is required if git is not in your PHP user's path. Otherwise just use 'git'. | |
$git_bin_path = '/usr/bin/git'; |