Skip to content

Instantly share code, notes, and snippets.

View jasonm23's full-sized avatar

Jason Milkins jasonm23

View GitHub Profile
h1. Papervision3D ::curl http://blog.papervision3d.org/
<link rel="shortcut icon" type="image/x-icon" href="http://www.gravatar.com/blavatar/910a9f52f167f9b7cebf4f617c2e29e9?s=16&#038;d=http://s2.wp.com/i/favicon.ico" />
<link rel="icon" type="image/x-icon" href="http://www.gravatar.com/blavatar/910a9f52f167f9b7cebf4f617c2e29e9?s=16&#038;d=http://s2.wp.com/i/favicon.ico" />
<link rel="apple-touch-icon" href="http://www.gravatar.com/blavatar/23e19631d006200351ce203fb2b47175?s=158&#038;d=http://s0.wp.com/wp-content/themes/h4/i/webclip.png" />
<div class='snap_preview'><p><a href="http://events.q-dance.nl/2010-06_12-juni_defqon1/" target="_blank"><img src="http://papervision3d.files.wordpress.com/2010/04/defqonthumb.jpg?w=447&#038;h=312" alt="" title="Defqon.1" width="447" height="312" class="alignnone size-full wp-image-991" /></a></p>
<p>Monty Python meets MadMax in this fully interactive journey. <a href="http://www.hanazuki.com" target="_blank">Hanazuki</a> studio created this trippy experience websit
@jasonm23
jasonm23 / How to set overscan on MacOS Displays when the slider is missing.md
Last active November 27, 2024 14:18
How to set overscan on MacOS Displays when the slider is missing

How to set overscan on MacOS Displays when the slider is missing?

Screenshot 2022-06-03 at 12 21 03

When I connect a monitor or TV to my Mac. Usually I have an overscan slider in the Display Preferences. However sometimes, it's not there. Ironically, this always seems to happen when the screen needs overscan adjustment.

Thankfully it's not impossible to fix the issue.

I haven't found much useful information on this, the difficulty level is quite high, we will need to use the terminal. Open spotlight and type Terminal, press enter and you'll get an imposing Terminal window, with a flashing cursor and not much else. We'll come back to that in a moment or two.

@jasonm23
jasonm23 / xterm-256color.svg
Last active November 23, 2024 19:34
Xterm 256color mode color chart, organised into sections. (used on Wikipedia/xterm)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jasonm23
jasonm23 / gopassbridge-dark-setup-windows.md
Last active October 31, 2024 02:43
GopassBridge-Dark For Firefox on Windows
@jasonm23
jasonm23 / how-to-run-passff-on-windows.md
Last active October 19, 2024 06:06
Running passff on Windows and Firefox

Hi all, Please consider donating to this or any of my many of opensource projects.

Buy Me a Coffee at ko-fi.com

How To run PassFF for Firefox on Windows

Getting it running on Windows is fairly simple, but the browser extension PassFF with its host script, PassFF host didn't work for me after running the installer install_host_app.bat file.

I found gopass which is a Go implementation of the original pass script, and seems to be 100% compatible.

@jasonm23
jasonm23 / open-key-system-harmonic-mixing.md
Last active October 4, 2024 11:58
OpenKey Harmonic Mixing System

How to Use OpenKey Harmonic Mixing Notation

Used by Native Instruments Traktor and other DJ/Music software (open alternative to Camelot, which is functionally equivalent to OpenKey)

  1. Key Labels: The notation uses a combination of a number and a letter. The number indicates the key's position in the circle (from 1 to 12), and the letter indicates the mode: m for minor and d for major. You can mix from Minor (openkey m, camelot B) to Major (openkey d, camelot A) and Major to Minor
Action Description
about Inkscape version, authors, license
action-list Print a list of actions and exit
clone Create a clone (a copy linked to the original) of selected object
clone-link Relink the selected clones to the object currently on the clipboard
clone-link-lpe Creates a new path, applies the Clone original LPE, and refers it to the selected path
clone-unlink Cut the selected clones' links to the originals, turning them into standalone objects
clone-unlink-recursively Unlink all clones in the selection, even if they are in groups.
com.inkscape.generate.generate-voronoi Voronoi Pattern
@jasonm23
jasonm23 / sparklist.rb
Created May 28, 2010 05:34
Spark project AS3 library list

Spark project AS3 library list

Graphics/Color (AS3)

@jasonm23
jasonm23 / emacs.desktop
Created April 25, 2024 02:50
Emacs desktop application launcher file
[Desktop Entry]
Name=Emacs
GenericName=Text Editor
Comment=Edit text
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
Exec=sh -c "if [ -n \\"\\$*\\" ]; then exec emacsclient -a emacs -n \\"\\$@\\"; else exec emacs; fi" dummy %F
Icon=emacs
Type=Application
Terminal=false
Categories=Development;TextEditor;
@jasonm23
jasonm23 / upgrade-or-install-emacs-mac-port-with-custom-icon-via-homebrew.sh
Last active March 25, 2024 16:08
Upgrade emacs-mac homebrew and move app to Applications and apply custom icon
#!/bin/bash
# Update brew and upgrade Emacs mac (tap railwaycat in-case it's not already)
brew tap railwaycat/emacsmacport
brew update
if [[ -d /usr/local/Cellar/emacs-mac ]]; then
brew upgrade emacs-mac
else
brew install emacs-mac