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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Syntax highlighting for the HashiCorp Configuration Language language | |
--> | |
<language id="hcl" name="HashiCorp Configuration Language" section="Sources" version="2.0"> | |
<metadata> | |
<property name="globs">*.hcl;*.nomad;*.tf</property> | |
<property name="line-comment-start">//</property> | |
<property name="block-comment-start">/*</property> | |
<property name="block-comment-end">*/</property> |
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 | |
src="${1:-Jenkinsfile}" | |
JENKINS_URL="https://jenkins.example.com" | |
function lint() { | |
JENKINS_CRUMB=$(curl --user USERNAME:PASSWORD -k "$JENKINS_URL/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,\":\",//crumb)") | |
curl --user USERNAME:PASSWORD -k -X POST -H $JENKINS_CRUMB -F "jenkinsfile=<${src}" $JENKINS_URL/pipeline-model-converter/validate | |
} | |
lint 2>/dev/null |
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
https://youtu.be/5r9V5WV_Fbk?t=40 | |
https://youtu.be/sJUWn-26jkw | |
https://youtu.be/sgJXbIP83A8?t=251 | |
https://youtu.be/DFvKWqUPmLU | |
https://youtu.be/rdOIY3KH0nI | |
https://youtu.be/wk2Gnyiirb0?t=4 | |
https://youtu.be/0XfKGI2o_VQ?t=225 | |
https://youtu.be/T9ifzzMD7zk?t=164 |
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
commit 690db7d59c5dca1f814263fde11563ebe36e9b4b | |
Author: John Anderson <[email protected]> | |
Date: Sun Feb 17 19:16:42 2019 -0500 | |
Scrape HTML tables to JSON | |
diff --git a/hello/views.py b/hello/views.py | |
index c248072..9616840 100644 | |
--- a/hello/views.py | |
+++ b/hello/views.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
import unittest | |
def flatten(it): | |
"""Flatten an arbitrarily-nested list of integers into a single list. | |
Args: | |
it (list) | |
Returns: list of integers |
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
# play .mid music files using PyGame on your computer's sound card | |
# PyGame is free from: http://www.pygame.org/news.html | |
# tested with Python25 and PyGame171 vegaseat 27aug2007 | |
import pygame | |
def play_music(music_file): | |
""" | |
stream music with mixer.music module in blocking manner | |
this will stream the sound from disk while playing | |
""" | |
clock = pygame.time.Clock() |
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 | |
# Requires: | |
# 1. at | |
# 2. espeak or spd-say | |
# 3. zenity | |
# 4. notify-send | |
# 5. MATE or Gnome desktop | |
talk=$(which espeak || which spd-say) | |
if [[ "$(which mate-session-save)" != "" ]]; then | |
logout="mate-session-save --force-logout" |
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
// ==UserScript== | |
// @grant none | |
// @name Craigslist - Hide Personals 2015 | |
// @description This style hides the personals section on the craigslist homepages (in June 2015 anyway). | |
// @author guitarmanvt | |
// @include http://craigslist.org/* | |
// @include https://craigslist.org/* | |
// @include http://*.craigslist.org/* | |
// @include https://*.craigslist.org/* | |
// @run-at document-end |