Let's have some command-line fun with curl, [jq][1], and the [new GitHub Search API][2].
Today we're looking for:
Let's have some command-line fun with curl, [jq][1], and the [new GitHub Search API][2].
Today we're looking for:
| var scrollPage ; | |
| var intro = new TimelineMax(); | |
| var loopVapor = new TimelineMax({repeat: -1}); | |
| var loopVapor2 = new TimelineMax({repeat: -1}); | |
| var ripple = new TimelineMax({repeat: -1}); | |
| var loopScroll = new TimelineMax({repeat: -1, delay: 6}); | |
| var scrollmolienda = $.superscrollorama(); | |
| var fullW = $(window).width(); | |
| var fullH = $(window).height(); | |
| var marginT = fullH/7; |
| #!/usr/bin/env python | |
| import vobject | |
| import datetime | |
| from pytz import timezone | |
| from dateutil import rrule | |
| TIME_ZONE = timezone('US/Eastern') | |
| TODAY = datetime.date.today() - datetime.timedelta(days=31) | |
| MEETING_START_TIME = datetime.time(19, 30, tzinfo=TIME_ZONE) |
Only files under 25 MB can be previewed with the Google Drive viewer.
Google Drive viewer helps you preview over 16 different file types, listed below:
In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.
The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.
| (function($){ | |
| /* | |
| ajaxDummyResponse.js | |
| TF 2012 | |
| Let frontenders using jquery play around with dummy ajax responses | |
| instead of waiting for backenders in an easy way... | |
| // set-up a connection between the client and the server | |
| var socket = io.connect(); | |
| // let's assume that the client page, once rendered, knows what room it wants to join | |
| var room = "abc123"; | |
| socket.on('connect', function() { | |
| // Connected, let's sign-up for to receive messages for this room | |
| socket.emit('room', room); | |
| }); |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| /** | |
| * Simple outbound message launcher in Node.js | |
| * | |
| * You will need to have a Tropo scripting aplication set up | |
| * to use this. See sample code below: | |
| * | |
| * message(msg, { to:number, network:"SMS" }); | |
| * | |
| * Save this file in your Tropo account as message.js | |
| * |