Skip to content

Instantly share code, notes, and snippets.

View vallieres's full-sized avatar
🏡
Working from Home

Alexandre Vallières-Lagacé vallieres

🏡
Working from Home
View GitHub Profile
@vallieres
vallieres / copy-branch-from-jira.js
Last active December 12, 2022 17:13
Copy branch name from JIRA webpage to clipboard
// 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, '');
@vallieres
vallieres / toggle-github-pr-files.js
Created January 17, 2019 14:52
Toggles GitHub's PR Files Collapsable Boxes
javascript: void((function(d) {
d.querySelectorAll('button[aria-label="Toggle diff contents"]').forEach(function(x) {
x.click()
});
})(document));
@vallieres
vallieres / bookmarklet-github-pr-status.js
Created January 17, 2019 14:43
Prepares a Status Update from Selected PR in Github
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);
@vallieres
vallieres / ffmpeg-install.sh
Created February 20, 2018 15:47
ffmpeg install with all options
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
@vallieres
vallieres / youtube-not-playlist-script.php
Created May 18, 2017 19:44
List YouTube's Channel Videos Not in a Playlist
<?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);
@vallieres
vallieres / genereate-1000-files-with-content.sh
Last active February 7, 2017 17:00
Generate 1000 files with random characters as content of the length of the index
#!/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
@vallieres
vallieres / keybase.md
Created April 1, 2016 00:41
Keybase Validation

Keybase proof

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:

@vallieres
vallieres / jekyll-post-merge-hook.sh
Last active January 27, 2016 18:19
post-merge Hook Script for Jekyll Auto Build and Rsync. All details available here: https://hipsterpixel.co/2016/01/27/my-blog-publishing-workflow-on-ios-part-1-tutorial
#!/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> "
@vallieres
vallieres / slugify-slim-framework-endpoint.php
Last active January 27, 2016 18:20
Simple API Endpoint That Uses Cocur/Slugify to Transform the Title of Artilces, , all the details on https://hipsterpixel.co/2016/01/27/my-blog-publishing-workflow-on-ios-part-1-tutorial
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';