(not so much the technical parts of the language)
ART + JS
| #!/usr/bin/python | |
| import subprocess | |
| import re | |
| import os | |
| import sys | |
| import optparse | |
| import time | |
| def call_checked(*args): | |
| r = subprocess.call(args) |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="test for paint vs onload css behavior" /> | |
| <meta charset="utf-8" /> | |
| <title>Awesome mobile-first site</title> | |
| <!-- | |
| Base stylesheet across all devices, loads first, and *needs* to be blocking to avoid | |
| showing unstyled content. |
| { | |
| "chrome":[ | |
| [ | |
| "chrome", | |
| 932 | |
| ], | |
| [ | |
| "file", | |
| 211 | |
| ], |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| (function () { | |
| var _UDS_CONST_LOCALE = 'en'; | |
| var _UDS_CONST_SHORT_DATE_PATTERN = 'MDY'; | |
| var _UDS_MSG_SEARCHER_IMAGE = ('Image'); | |
| var _UDS_MSG_SEARCHER_WEB = ('Web'); | |
| var _UDS_MSG_SEARCHER_BLOG = ('Blog'); | |
| var _UDS_MSG_SEARCHER_VIDEO = ('Video'); | |
| var _UDS_MSG_SEARCHER_LOCAL = ('Local'); | |
| var _UDS_MSG_SEARCHCONTROL_SAVE = ('save'); | |
| var _UDS_MSG_SEARCHCONTROL_KEEP = ('keep'); |
| import json | |
| import os | |
| import time | |
| import requests | |
| from PIL import Image | |
| from StringIO import StringIO | |
| from requests.exceptions import ConnectionError | |
| def go(query, path): | |
| """Download full size images from Google image search. |
| // Scraping Made Easy with jQuery and SelectorGadget | |
| // (http://blog.dtrejo.com/scraping-made-easy-with-jquery-and-selectorga) | |
| // by David Trejo | |
| // | |
| // Install node.js and npm: | |
| // http://joyeur.com/2010/12/10/installing-node-and-npm/ | |
| // Then run | |
| // npm install jsdom jquery http-agent | |
| // node numresults.js | |
| // |
| //from http://www.codeproject.com/Articles/317974/KinectDepthSmoothing | |
| function smoothDepth(arr){ | |
| var res = createArray(width,height); | |
| for(var i=2; i< width-2; i++){ | |
| for(var j=2; j < height-2; j++){ | |
| if(arr[i][j]===0){ | |
| var innerBandCount = 0; | |
| var outerBandCount = 0; | |
| var filterCollection = []; |
| <!DOCCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset=utf-8> | |
| <meta name="viewport" content="width=620"> | |
| <title>Embedly Drag and Drop</title> | |
| <script src="js/jquery.min.js"></script> | |
| <script src="js/jquery.embedly-3.1.1.min.js"></script> | |
| </head> |