ssh -D 8123 -f -C -q -N <remoteuser@remotehost>
Configure your Proxy Socks in the network settings of:
- your browser
- your DB Client
| SAVEIFS=$IFS | |
| IFS=$(echo -en "\n\b") | |
| for i in `ls | grep 360p`; do | |
| NEWNAME=`echo $i | sed 's/ \[360p\]//'`; | |
| echo $i " -> " $NEWNAME; | |
| mv "$i" "$NEWNAME"; | |
| done | |
| IFS=$SAVEIFS |
| #!/bin/bash | |
| TITLE="$@" | |
| printf '\e]2;%s\a' "$TITLE"; | |
| while true | |
| do | |
| "$@" | |
| sleep 30 | |
| done |
| #!/bin/bash | |
| # count node | |
| for i in `ls *brol*.xml`; do | |
| xmllint --xpath 'count(//segmentation/segment)' ${i} >> temp.text; | |
| echo " ${i}" >> temp.text; | |
| done; | |
| # concat multiple field matching some text | |
| for i in `ls *LATROIS*xml`; do | |
| xmllint --xpath 'concat(//maxEpisode[text()='0']/../titre/text(), "-", //maxEpisode[text()='0']/../genre/text())' ${i}; | |
| echo ""; |
| export VISUAL=vim | |
| export EDITOR="$VISUAL" |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style> | |
| #board { | |
| border: 1px solid black; | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="Small game to guess additions"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style> | |
| .show {display: block} | |
| .hide {display: none} |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>WebVR tyout</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/aframe/0.3.1/aframe.min.js"></script> | |
| </head> | |
| <body> | |
| <a-scene stats> |
| var googleItems = []; | |
| if(_gaq_account) { | |
| googleItems.push('Google Analytics: '+_gaq_account); | |
| } | |
| if(typeof ga === 'function') { | |
| ga(function(){ | |
| var trackers = ga.getAll(); | |
| for (var i=0; i < trackers.length; ++i) { | |
| var tracker = trackers[i]; | |
| googleItems.push("Analytics Universal: "+tracker.get('trackingId')); |