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
#!/usr/bin/env python | |
# source: https://gist.github.com/cevaris/79700649f0543584009e | |
# updated to allow an arbitrary message to be displayed in front of the spinner | |
import itertools | |
import sys | |
import time | |
import threading | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="//code.jquery.com/jquery-2.1.0.min.js"></script> | |
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>quadraticCurveTo given three points</title> | |
<style> | |
body { background:#000; margin:0px; padding:0px; overflow:hidden; } |
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
@ECHO OFF | |
:: A simple batch script wrapper around PuTTY's PLINK.EXE | |
:: to integrate with Eclipse's EGit plugin. Update your | |
:: remote [username] below and save this script as | |
:: 'plink.cmd' alongside wherever PLINK.EXE is installed | |
:: on your system. | |
:: | |
:: The SO article referenced below will show you how to | |
:: use this script with EGit (hint: set the GIT_SSH | |
:: environment variable to the full pathname to this |