Pipeviewer is a terminal-based tool for monitoring the process of data through a pipeline.
pv dump.sql | /path/to/mysql -uLOGIN -p DATABASE
| // ==UserScript== | |
| // @include http://www.google.*/ | |
| // @include http://www.google.*/search* | |
| // @include http://www.bing.com/ | |
| // @include http://www.bing.com/search* | |
| // @include http://www.yahoo.com/ | |
| // @include http://search.yahoo.com/search* | |
| // ==/UserScript== | |
| document.querySelector('input[name=q], input[name=p]').value = " -w3schools"; |
Pipeviewer is a terminal-based tool for monitoring the process of data through a pipeline.
pv dump.sql | /path/to/mysql -uLOGIN -p DATABASE
| // Original code from http://www.blog.highub.com/mobile-2/a-fix-for-iphone-viewport-scale-bug/ | |
| var metas = document.getElementsByTagName('meta'); | |
| var i; | |
| if (navigator.userAgent.match(/iPhone/i)) { | |
| for (i=0; i<metas.length; i++) { | |
| if (metas[i].name == "viewport") { | |
| metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0"; | |
| } | |
| } |
| /*! | |
| * jQuery Detach+ - v0.1pre - 5/18/2011 | |
| * http://benalman.com/ | |
| * | |
| * Copyright (c) 2011 "Cowboy" Ben Alman | |
| * Dual licensed under the MIT and GPL licenses. | |
| * http://benalman.com/about/license/ | |
| */ | |
| (function($){ |
| /* | |
| * Updated to use the function-based method described in http://www.phpied.com/social-button-bffs/ | |
| * Better handling of scripts without supplied ids. | |
| * | |
| * N.B. Be sure to include Google Analytics's _gaq and Facebook's fbAsyncInit prior to this function. | |
| */ | |
| (function(doc, script) { | |
| var js, | |
| fjs = doc.getElementsByTagName(script)[0], |
| # ma config | |
| seen-local-config.php | |
| # stockage de mon backup xml | |
| tmp/ | |
| # mes fichiers exportes | |
| seen/ | |
| # mes fichiers downloades |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Table Display test</title> | |
| <style> | |
| @media screen and (min-width: 30em) { | |
| body { | |
| display: table; | |
| caption-side: top; | |
| } |
| /* | |
| * Normalized hide address bar for iOS & Android | |
| * (c) Scott Jehl, scottjehl.com | |
| * MIT License | |
| */ | |
| (function( win ){ | |
| var doc = win.document; | |
| // If there's a hash, or addEventListener is undefined, stop here | |
| if( !location.hash && win.addEventListener ){ |
| function hideAddressBar() | |
| { | |
| if(!window.location.hash) | |
| { | |
| if(document.height < window.outerHeight) | |
| { | |
| document.body.style.height = (window.outerHeight + 50) + 'px'; | |
| } | |
| setTimeout( function(){ window.scrollTo(0, 1); }, 50 ); |