What is Meteor.js?
- CLI tool (meteor)
- Library of packages
- Open source
- Built on Node.js
| import rtc | |
| import time | |
| import board | |
| from adafruit_magtag.magtag import MagTag | |
| from adafruit_oauth2 import OAuth2 | |
| from adafruit_bitmap_font import bitmap_font | |
| from adafruit_display_text import label | |
| class Calendar: |
| { | |
| "background" : "#282828", | |
| "black" : "#282828", | |
| "blue" : "#458588", | |
| "brightBlack" : "#928374", | |
| "brightBlue" : "#83A598", | |
| "brightCyan" : "#8EC07C", | |
| "brightGreen" : "#B8BB26", | |
| "brightPurple" : "#D3869B", | |
| "brightRed" : "#FB4934", |
| module AttributeRequirements | |
| extend ActiveSupport::Concern | |
| SQL_TYPE_MATCHERS = { | |
| /^character varying/ => String, | |
| /^text/ => String, | |
| /^enum/ => String, | |
| /^timestamp/ => DateTime, | |
| /^integer/ => Integer, |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. |
convert image.png -resize 40 txt:-|sed -E 's/://;s/\( ? ?//;s/, ? ?/,/g;s/\)//;s/([0-9]+,[0-9]+,[0-9]+),[0-9]+/\1/g;s/255/254/g;/mage/d'|awk '{print $1,$2}'|sed -E 's/^0,[0-9]+ /print "echo;tput setaf "\;/;s/^[0-9]+,[0-9]+ /print "tput setaf ";/;s/(.+),(.+),(.+)/\1\/42.5*36+\2\/42.5*6+\3\/42.5+16/'|bc|sed 's/$/;echo -n " ";/'|tr '\n' ' '|sed 's/^/tput rev;/;s/; /;/g;s/$/tput sgr0;echo/'|bash
| 1 leek plant | |
| 1 bushel of asparagus | |
| 2 cups veggie broth | |
| 1 table spoon Butter | |
| 1 table spoon olive oil | |
| Salt & pepper | |
| First cut leek and asparagus into smaller less then 2 inch pieces. | |
| Melt butter with olive oil |
| #!/bin/sh | |
| # | |
| # Shell script that configures gnome-terminal to use solarized theme | |
| # colors. Written for Ubuntu 11.10, untested on anything else. | |
| # | |
| # Solarized theme: http://ethanschoonover.com/solarized | |
| # | |
| # Adapted from these sources: | |
| # https://gist.github.com/1280177 | |
| # http://xorcode.com/guides/solarized-vim-eclipse-ubuntu/ |
| (function (window, document, $, undefined) { | |
| if (!$.Deferred) throw 'jQuery 1.5 is required to use the jQuery.oauth script!'; | |
| function require(name, url) { | |
| if (window[name] === undefined) | |
| return $.ajax({ type: 'GET', cache: true, dataType: 'script', url: url }); | |
| } | |
| $.oauth = function (options) { | |
| var d = $.Deferred(); |