Send iMessages from the Command Line
Just run the following in your shell:
var docRef = app.activeDocument; | |
function ExportJpg(path, filename, qual) | |
{ | |
try | |
{ | |
var options = new ExportOptionsSaveForWeb(); | |
jpgFile = new File( path + "\\" + filename ); | |
options.quality = qual; // Start with highest quality (biggest file). | |
options.format = SaveDocumentType.JPEG; // Or it'll default to GIF. |
[ | |
// Shows the build console, or at least it use to | |
{ "keys": ["ctrl+shift+b"], "command": "show_panel", "args": {"panel": "output.exec"} }, | |
// Makes it so Ctrl + Tab or Ctrl + Shift + Tab go between tabs in the | |
// order that they are displayed and not the order that they were opened. | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" } | |
] |
<!doctype html> | |
<html> | |
<head> | |
<title>A Very Tiny MP4</title> | |
</head> | |
<body> | |
<video src="data:video/mp4;base64,AAAAIGZ0eXBpc29tAAACAGlzb21pc28yYXZjMW1wNDEAAAAIZnJlZQAAAr9tZGF0AAACoAYF//+c3EXpvebZSLeWLNgg2SPu73gyNjQgLSBjb3JlIDEyNSAtIEguMjY0L01QRUctNCBBVkMgY29kZWMgLSBDb3B5bGVmdCAyMDAzLTIwMTIgLSBodHRwOi8vd3d3LnZpZGVvbGFuLm9yZy94MjY0Lmh0bWwgLSBvcHRpb25zOiBjYWJhYz0xIHJlZj0zIGRlYmxvY2s9MTowOjAgYW5hbHlzZT0weDM6MHgxMTMgbWU9aGV4IHN1Ym1lPTcgcHN5PTEgcHN5X3JkPTEuMDA6MC4wMCBtaXhlZF9yZWY9MSBtZV9yYW5nZT0xNiBjaHJvbWFfbWU9MSB0cmVsbGlzPTEgOHg4ZGN0PTEgY3FtPTAgZGVhZHpvbmU9MjEsMTEgZmFzdF9wc2tpcD0xIGNocm9tYV9xcF9vZmZzZXQ9LTIgdGhyZWFkcz02IGxvb2thaGVhZF90aHJlYWRzPTEgc2xpY2VkX3RocmVhZHM9MCBucj0wIGRlY2ltYXRlPTEgaW50ZXJsYWNlZD0wIGJsdXJheV9jb21wYXQ9MCBjb25zdHJhaW5lZF9pbnRyYT0wIGJmcmFtZXM9MyBiX3B5cmFtaWQ9MiBiX2FkYXB0PTEgYl9iaWFzPTAgZGlyZWN0PTEgd2VpZ2h0Yj0xIG9wZW5fZ29wPTAgd2VpZ2h0cD0yIGtleWludD0yNTAga2V5aW50X21pbj0yNCBzY2VuZWN1dD00MCBpbnRyYV9yZWZyZXNoPTAgcmNfbG9va2FoZWFkPTQwIHJjPWNyZiBtYnRyZWU9MSBjcmY9MjMuMCBxY29tcD0wLjYwIHFwbWluPTAgcXBtYX |
console.reset = function () { | |
return process.stdout.write('\033c'); | |
} |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |
REM These commands allow you to dump a mysql database or import a database that is too large to be uploaded via PHPmyAdmin. | |
REM If importing, you should put your .sql file in your mysql bin dir ( for wamp: C:\wamp\bin\mysql\mysql15.5.20\bin\ ) | |
REM If exporting, the mysql bin dir is where the exported file will show up. | |
REM export a mysql database | |
REM wamp's username is root, does not have a password | |
mysqldump -u username -p password(optional) databasename > databasename.sql | |
REM import a mysql database | |
mysql -u username -ppassword databasename < databasename.sql |
; | |
// attribute test by Jeremy Keith, http://www.abookapart.com/products/html5-for-web-designers | |
function elementSupportsAttribute( element, attribute ){ | |
var test = document.createElement(element); | |
if (attribute in test){ | |
return true; | |
} else { | |
return false; | |
} |
if(!Array.prototype.indexOf){Array.prototype.indexOf=function(b){var a=this.length>>>0;var c=Number(arguments[1])||0;c=(c<0)?Math.ceil(c):Math.floor(c);if(c<0){c+=a}for(;c<a;c++){if(c in this&&this[c]===b){return c}}return -1}}; |
# Credit http://stackoverflow.com/a/2514279 | |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |