View the source of this content.
Let's get the whole "linebreak" thing out of the way. The next paragraph contains two phrases separated by a single newline character:
Roses are red Violets are blue
| /** | |
| * load-external-script-snippet.js | |
| * Kosei Moriyama <[email protected]> | |
| * | |
| * Simple code snippet for loading external script from a bookmarklet. | |
| * Replace example url of script to your target script url before use. | |
| */ | |
| (function() { | |
| var u = 'http://example.com/bookmarklet.js'; |
View the source of this content.
Let's get the whole "linebreak" thing out of the way. The next paragraph contains two phrases separated by a single newline character:
Roses are red Violets are blue
| javascript:(function (){h=document.createElement("div");h.setAttribute("id","_bradshiliteline");h.setAttribute("style","width:100%;height:20px;background-color:yellow;font-size:inherit;line-height:inherit;position:absolute;left:0px;top:0px;z-index:999;opacity:0.4;");document.getElementsByTagName("body")[0].appendChild(h);window.onmousemove=function(e){var h=document.getElementById("_bradshiliteline");h.style.top=(e.pageY+15)+"px";h.setAttribute("class",e.pageY);}})(); |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| GOOGLE SEARCH | |
| ------------- | |
| Command line access to advanced Google searches. | |
| To see all options use the `--help` flag. | |
| Copyright (c) 2013, T. Zengerink | |
| Licensed under MIT License |
| net start webclient | |
| robocopy.exe \\live.sysinternals.com\tools "C:\SysInternals" | |
| net stop webclient |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| // this is the background code... | |
| // listen for our browerAction to be clicked | |
| chrome.browserAction.onClicked.addListener(function (tab) { | |
| // for the current tab, inject the "inject.js" file & execute it | |
| chrome.tabs.executeScript(tab.ib, { | |
| file: 'inject.js' | |
| }); | |
| }); |
| # from http://zzapper.co.uk/vimtips.html | |
| ------------------------------------------------------------------------------ | |
| " new items marked [N] , corrected items marked [C] | |
| " *best-searching* | |
| /joe/e : cursor set to End of match | |
| 3/joe/e+1 : find 3rd joe cursor set to End of match plus 1 [C] | |
| /joe/s-2 : cursor set to Start of match minus 2 | |
| /joe/+3 : find joe move cursor 3 lines down | |
| /^joe.*fred.*bill/ : find joe AND fred AND Bill (Joe at start of line) | |
| /^[A-J]/ : search for lines beginning with one or more A-J |
| // ==UserScript== | |
| // @name Google Search Better Privacy | |
| // @description Delete unnecessary params and add useful params on Google Search. | |
| // @version 0.0.4 | |
| // @include http://*.google.*/search* | |
| // @include http://*.google.*/imgres* | |
| // @include https://*.google.*/search* | |
| // @include https://*.google.*/imgres* | |
| // @exclude http://play.google.com/* | |
| // @exclude http://mail.google.com/* |