Skip to content

Instantly share code, notes, and snippets.

View ls-avanier's full-sized avatar

Alexis Vanier ls-avanier

  • Lightspeed
  • Montréal
View GitHub Profile
@ls-avanier
ls-avanier / issue_template.txt
Last active February 12, 2022 00:26
Jira Issue Template
h3. Description
*As a* _<type of user>_,
*I want* _<to perform some task>_,
*so that I can* _<achieve some goal/benefit/value>_.
h3. CoS
* It MUST use tech
* It SHOULD allow feelings
@ls-avanier
ls-avanier / download_all_the_things.rb
Created December 22, 2016 16:10
Download the test material
#!/usr/local/bin/ruby -w
require 'mixlib/shellout'
require 'logger'
song_list = %w(
http://www.lindberg.no/hires/test/2L-106/2L-106_stereo_PCM-192k_MAGNIFICAT_04.flac
http://www.lindberg.no/hires/test/2L38_01_192kHz.flac
http://www.lindberg.no/hires/test/2L-038_MQA2016-176k-24b_01.flac
http://www.lindberg.no/hires/test/2L-125_stereo-176k-24b_04.flac
@ls-avanier
ls-avanier / arrgh-time.sh
Last active November 23, 2016 19:51
Force synchronization of time on the retail VM
# This chunk will run in your favourite Ubuntu vm
if [[ $(uname) == 'Linux' && $(test -f /usr/bin/apt-get) ]]; then
sudo apt-get update
sudo apt-get install ntp
sudo service ntp stop
sudo ntpdate -s ca.pool.ntp.org
sudo service ntp start
fi
# This chunk will run in your favourite CentOS vm
-