Skip to content

Instantly share code, notes, and snippets.

View FBoucher's full-sized avatar
☁️
Sky isn't the limit... it's the playground!

Frank Boucher FBoucher

☁️
Sky isn't the limit... it's the playground!
View GitHub Profile
@FBoucher
FBoucher / tasks.json
Last active February 4, 2019 12:57
VSCode task to convert Mardown to Html into the terminal (dependancy: npm md2html)
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile Markdown",
"type": "shell",
"command": "md2html ${file}",
"group": {
"kind": "build",
"isDefault": true
  • !Commands (!cmd): Show the URL of this Gist

Stream

  • !stream : Show you the Stream Schedule

Be Social

  • !github : Show the Stream GitHub Project URL
  • !twitter
  • !youtube
  • !Commands (!cmd): Show the URL of this Gist

Stream

  • !stream : Show you the Stream Schedule

Be Social

  • !github : Show the Stream GitHub Project URL
  • !twitter
  • !youtube
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string"
},
"virtualMachineName": {
"type": "string",
"metadata": {

All Commands available in the chat

(https://www.twitch.tv/fboucheros)

Stream

  • !commands (!cmd): Show the URL of this Gist
  • !stream : Show you the Stream Schedule
  • !music : Know more about the music playing in the stream
  • !atrs : Show information about the Logos and Emotes
  • !referal : Provide links to my referal/ affiliate links... Goodies for you and for me :)
@FBoucher
FBoucher / empty-arm-template.yaml
Created April 4, 2022 13:01
Empty ARM template
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"variables": {},
"resources": [],
"outputs": {},
"functions": []
}
@FBoucher
FBoucher / generate-preview.sh
Created October 5, 2022 18:39
Script to generate 5 sec animated GIF of all mp4 in the folder and sub-folder
clear
search_dir="/mnt/c/"
files="$(find -L "$search_dir" -type f -name '*.mp4')"
echo "Count: $(echo -n "$files" | wc -l)"
echo "$files" | while read file; do
onlyFilename=$(basename "$file")
onlyName=$(basename -s .mp4 "$file")
onlyDir="$(dirname "${file}")"
#Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
#Install Software
choco install visualstudiocode -y
choco install git -y
choco install nodejs-lts -y