You can copy and do whatever with this code. You don't even have to give me credit, although I wouldn't complain if you did. Keep the information free!
This file contains hidden or 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
" modeline | |
" vi: sw=2 ts=2 sts=2 et cc=80 | |
" Make Vim more useful | |
set nocompatible | |
" Use the OS clipboard by default (on versions compiled with `+clipboard`) | |
set clipboard=unnamed | |
"set some mac terminal/handling options - should add a detection for GUI/shell | |
"vim to this before uncommmenting - Matt | |
"set term=builtin_beos-ansi "could probably do xterm-256colors but meh |
This file contains hidden or 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== | |
// @name | |
// @namespace | |
// @description | |
// @include | |
// @version 0.0.1 | |
// @grant GM_addStyle | |
// @require https://code.jquery.com/jquery-3.2.1.slim.min.js | |
// @require https://d3js.org/d3.v4.min.js | |
// ==/UserScript== |
This file contains hidden or 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
Bypassing/not exporting multiple nodes from blender |
This file contains hidden or 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
#!/usr/bin/env python3 | |
import sys | |
import os | |
import inspect | |
# threading code, only used for debug server right now. | |
# from threading import Thread | |
# from queue import Queue | |
from math import pi, sin, cos | |
import pprint | |
import logging |
This file contains hidden or 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
#!/usr/bin/env python | |
# Import the modules | |
import bitlyapi | |
import sys | |
# Define your API information | |
API_USER = "your_api_username" |