Enable reverse tunelling on port 2224 locally…
echo "RemoteForward 2224 localhost:2224" >> ~/.ssh/config
SSH in to your server (I've only tried this on an Amazon AMI) and cat something
cat large-file.txt | nc localhost 2224
| Modernizr.addTest('minwidth', function() { | |
| var test = document.createElement('div'), | |
| root = document.documentElement.appendChild(document.createElement('body')); | |
| test.style.cssText = 'min-width:22px;padding:0;margin:0;position:absolute;top:0;left:0'; | |
| root.appendChild(test); | |
| var ret = test.offsetWidth === 22; | |
| root.removeChild(test); |
| Modernizr.addTest('box-sizing', function() { | |
| var test = document.createElement('div'), | |
| root = document.documentElement.appendChild(document.createElement('body')); | |
| test.style.cssText = '-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;padding:0 10px;margin:0;border:0;position:absolute;top:0;left:0;width:100px'; | |
| root.appendChild(test); | |
| var ret = test.offsetWidth === 100; | |
| root.removeChild(test); |
| -if content_for?(:track_page_view) | |
| ="_gaq.push(['_trackPageview', #{yield(:track_page_view).gsub(/\s+/, '')} ]);" | |
| -else | |
| _gaq.push(['_trackPageview']); |
| (^\+61\d{9}$)|(^04\d{8}$) |
| on handle_string(str) | |
| set arrayWithDate to my theSplit(str, "@") | |
| if arrayWithDate's length > 1 then | |
| set theDate to my parseDate(getArrayValue(arrayWithDate, 2)) | |
| end if | |
| set arrayWithBody to my theSplit(getArrayValue(arrayWithDate, 1), "#") | |
| if arrayWithBody's length > 1 then | |
| set reminderBody to my getArrayValue(arrayWithBody, 2) | |
| else |
| gulp = require 'gulp' | |
| clean = require 'gulp-clean' | |
| runWintersmith = require 'run-wintersmith' | |
| cssshrink = require 'gulp-cssshrink' | |
| uglify = require 'gulp-uglify' | |
| uncss = require 'gulp-uncss' | |
| image = require 'gulp-image' | |
| deploy = require 'gulp-gh-pages' | |
| concat = require 'gulp-concat' |
| set noautofocus | |
| set cncpcompletion | |
| let locale = "aus" "requires my fork | |
| let qmark a = ["http://forums.overclockers.com.au/forumdisplay.php?f=77", "http://ozbargain.com.au/"] | |
| let qmark s = "http://sfcu.com.au/smf202/index.php?action=unread" | |
| let qmark z = "http://ozbargain.com.au" | |
| let blacklists = ["https://mail.google.com/*","https://inbox.google.com/*","*://*trello.com/b/*","*://*feedly.com/*"] | |
| unmap r | |
| let mapleader = " " |
| am($args) | |
| if length($args) == 1 | |
| [am-{$args}] | |
| {block} | |
| else | |
| $val = () | |
| for i in 1...length($args) | |
| push($val, $args[i]) | |
| [am-{$args[0]}~=\"{join(' ', $val)}\"] | |
| {block} |
| [am-Nav] | |
| position: absolute | |
| left: 0 | |
| top: -rhythm(2, 12px) | |
| height: 100% | |
| z-index: 20 // Footer is 30 zindex | |
| color: #6E8A99 | |
| adjust-font-size-to(12px, 1, 16px) | |
| + #outer-wrap |
Enable reverse tunelling on port 2224 locally…
echo "RemoteForward 2224 localhost:2224" >> ~/.ssh/config
SSH in to your server (I've only tried this on an Amazon AMI) and cat something
cat large-file.txt | nc localhost 2224