Skip to content

Instantly share code, notes, and snippets.

View Jonovono's full-sized avatar
😈

Jordan Howlett Jonovono

😈
View GitHub Profile
@Jonovono
Jonovono / tinacious-minimal-obsidian-theme.json
Created January 1, 2024 20:07
I love the Tinacious theme for VSCode. Had ChatGPT make me a Obsidian theme for minimal. https://github.com/tinacious/vscode-tinacious-design-syntax. Dark mode only for now
{
"minimal-style@@bg1@@dark": "#1D1D26",
"minimal-style@@bg2@@dark": "#1D1D26",
"minimal-style@@ui1@@dark": "#252530",
"minimal-style@@ax1@@dark": "#00BFFF",
"minimal-style@@ax3@@dark": "#00D364",
"minimal-style@@ui2@@dark": "#2c2c3e",
"minimal-style@@ui3@@dark": "#2c2c3e",
"minimal-style@@ax2@@dark": "#FF3399",
"minimal-style@@base@@dark": "#1D1D26",
@Jonovono
Jonovono / looking for the mouse.md
Created April 16, 2022 14:38 — forked from jm3/looking for the mouse.md
Gin, Television, and Social Surplus

Gin, Television, and Social Surplus, or, “Looking for the Mouse”

Clay Shirky / April 26, 2008

transcription of a speech [Clay Shirky] gave at the Web 2.0 in 2008, emphasis by @jm3

I was recently reminded of some reading I did in college, way back in the last century, by a British historian arguing that the critical technology, for the early phase of the industrial revolution, was gin.

The transformation from rural to urban life was so sudden, and so wrenching, that the only thing society could do to manage was to drink itself into a stupor for a generation. The stories from that era are amazing-- there were gin pushcarts working their way through the streets of London.

And it wasn't until society woke up from that collective bender that we actually started to get the institutional structures that we associate with the industrial revolution today. Things like public libraries and museums, increasingly broad education for children, elected leaders--a lot of th

:root{--blue:#007aff;--indigo:#5603ad;--purple:#510fa8;--pink:#f074ad;--red:#ff3b30;--orange:#ff9500;--yellow:#fc0;--green:#4cd964;--teal:#24b7fa;--cyan:#4bd6e5;--white:#fff;--gray:#6c7686;--gray-dark:#343a40;--light:#ced4da;--lighter:#f5f9fb;--primary:#510fa8;--secondary:#fafbfe;--success:#4cd964;--info:#24b7fa;--warning:#ff9500;--danger:#ff3b30;--light:#ced4da;--dark:#05172a;--white:#fff;--darker:#020b13;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-view
# you need to install Biopython:
# pip install biopython
# Full discussion:
# https://marcobonzanini.wordpress.com/2015/01/12/searching-pubmed-with-python/
from Bio import Entrez, Medline
IDS = ['20808220', '20396467', '17903820', '17903981']
@Jonovono
Jonovono / install.sh
Last active March 3, 2016 03:49 — forked from sergeyklay/install.sh
Install Nginx with Nchan
#!/usr/bin/env bash
# Works fine on Ubuntu 14.0.4 LTS
NGINX_VERSION="1.8.1"
NCHAN_VERSION="0.97"
PUSH_STREAM_VERSION="0.5.1"
HEADERS_MORE_VERSION="0.29"
DEV_KIT_VERSION="0.2.19"
ECHO_VERSION="0.58"
fightbot decline - Decline's any proposed match.
fightbot chicken - Chicken out of your own challenge before it is accepted, or out of an accepted challenge (as the challenger or challenged).
fightbot leaderboard <1-infinity> - Shows the top players, sorted by Elo.
fightbot rank <someone's name> - Gets that person's stats. If none given, it will return your own stats.
fightbot reset <name> <secret> - Admin-only command that reset's a person's stats.
fightbot new_season <secret> - Admin-only command that reset's all stats and begins a new
"cards": {
"regular_cards": {

 "past_sessions_card": {

"past_sessions": [

{
"calm_percentage": 0.22744819935825136,
"local_start_date": "2014-10-08 05:32:31"
},

{
"calm_percentage": 0.5873029625841549,
@Jonovono
Jonovono / gist:9372050
Created March 5, 2014 17:30
keybase.md
### Keybase proof
I hereby claim:
* I am Jonovono on github.
* I am Jordan (https://keybase.io/Jordan) on keybase.
* I have a public key whose fingerprint is 97DC 9F0E 114D 83B6 5744 3A5C 9EFD 7F67 51B7 EA67
To claim this, I am signing this object:
@Jonovono
Jonovono / gist:7796174
Created December 4, 2013 21:46
piface
from multiprocessing import Process, Queue
import time
import cv2
# Upper limit
_Servo1UL = 250
_Servo0UL = 230
# Lower Limit
_Servo1LL = 75
@Jonovono
Jonovono / githubdyna.js
Last active December 17, 2015 16:19
Create Github.com API response to use for dynatree.
var und = require("underscore");
var parsedFile = require("./file.json");
var tree = parsedFile.tree
files = [];
function parseFolder(name, path, type) {
var paths = und.map(tree, function(item) {return {path: item.path,
type: item.type}});
setupRoot(paths);