(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| Latency Comparison Numbers (~2012) | |
| ---------------------------------- | |
| L1 cache reference 0.5 ns | |
| Branch mispredict 5 ns | |
| L2 cache reference 7 ns 14x L1 cache | |
| Mutex lock/unlock 25 ns | |
| Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
| Compress 1K bytes with Zippy 3,000 ns 3 us | |
| Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
| Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
This benchmark has been misleading for a while. It was originally made to demonstrate how JIT compilers can do all sorts of crazy stuff to your code - especially LuaJIT - and was meant to be a starting point of discussion about what exactly LuaJIT does and how.
As a result, its not indicative of what its performance may be on more realistic data. Differences can be expected because
| #!/usr/bin/env python | |
| # Takes an interger n for 2^n x 2^n Hadamard matrix | |
| import numpy as np | |
| import sys | |
| def recursiveKronecker(k, hmat): | |
| if 2**(k-1) == 1: | |
| return hmat | |
| else: |
| A warning occurred (42 apples) | |
| An error occurred |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| { | |
| "log": { | |
| "version": "1.2", | |
| "creator": { | |
| "name": "WebInspector", | |
| "version": "537.1" | |
| }, | |
| "pages": [ | |
| { | |
| "startedDateTime": "2012-08-28T05:14:24.803Z", |
##Google Interview Questions: Product Marketing Manager
| # File Transfer for Pythonista | |
| # ============================ | |
| # This script allows you to transfer Python files from | |
| # and to Pythonista via local Wifi. | |
| # It starts a basic HTTP server that you can access | |
| # as a web page from your browser. | |
| # When you upload a file that already exists, it is | |
| # renamed automatically. | |
| # From Pythonista's settings, you can add this script | |
| # to the actions menu of the editor for quick access. |
| gnome-cups-manager | |
| ------------------ | |
| Once upon a time there was a printer who lived in the woods. He was a | |
| lonely printer, because nobody knew how to configure him. He hoped | |
| and hoped for someone to play with. | |
| One day, the wind passed by the printer's cottage. "Whoosh," said the | |
| wind. The printer became excited. Maybe the wind would be his | |
| friend! |