Skip to content

Instantly share code, notes, and snippets.

View thornbill's full-sized avatar
💭
I may be slow to respond.

Bill Thornton thornbill

💭
I may be slow to respond.
View GitHub Profile
@thornbill
thornbill / jellyfin-web.patch
Last active September 26, 2019 19:17
jellyfin-web development patch
diff --git a/src/components/apphost.js b/src/components/apphost.js
index e67d79522..56763ee4a 100644
--- a/src/components/apphost.js
+++ b/src/components/apphost.js
@@ -277,7 +277,7 @@ define(["appSettings", "browser", "events", "htmlMediaHelper"], function (appSet
features.push("displaymode");
features.push("targetblank");
// allows users to connect to more than one server
- //features.push("multiserver");
+ features.push("multiserver");
@thornbill
thornbill / publishing.md
Created May 26, 2019 05:14
Jellyfin ApiClient.js publishing guide

Keybase proof

I hereby claim:

  • I am thornbill on github.
  • I am thornbill (https://keybase.io/thornbill) on keybase.
  • I have a public key whose fingerprint is 1C10 E633 38B3 11CE DB7E FBD0 A7B1 5071 CEF5 AB38

To claim this, I am signing this object:

@thornbill
thornbill / nvm_update.sh
Created February 10, 2016 21:29
Bash function to update installed node.js versions in nvm
nvm_update() {
for NVM_UPDATE_VER in 0.10 0.12 4 5
do
# Install the latest versions of node only if they are already installed
nvm which $NVM_UPDATE_VER &>/dev/null && nvm install $NVM_UPDATE_VER
done
# Switch back to the default version of node
echo "Switching to default version of node..."
nvm use default
}
% helper predicates
square_to_subgrid(Row, Col, Subgrid) :-
floor((Row - 1)/3, RowBase),
floor((Col - 1)/3, ColBase),
Subgrid is 3 * RowBase + ColBase + 1.
one_to_nine(X) :-
member( X, [1, 2, 3, 4, 5, 6, 7, 8, 9] ).
next_square( Puzzle, Row, Col ) :-
one_to_nine(Row),
one_to_nine(Col),
@thornbill
thornbill / to_data_uri.sh
Last active August 29, 2015 14:14
Convert a jpg, png or gif to a data-uri
#!/bin/bash
for file;
do
echo -e "\033[0;32m>> $file\033[0m"
if [ -e $file ]; then
_ext=${file##*.}
if [[ "gif png jpg jpeg" =~ $_ext ]]; then
if [ $_ext == "jpg" ]; then _ext="jpeg"; fi
php -r "echo(\"data:image/$_ext;base64,\".base64_encode(file_get_contents(\"$file\")).\"\\n\");"
else
@thornbill
thornbill / check_jquery_version.js
Created September 16, 2014 20:46
Bookmarklet to Check the Version of jQuery
javascript:(function(w){alert((w.jQuery&&w.jQuery.fn.jquery)||'none');})(window);