This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
str=tHe QuIcK bRoWn FoX jUmPs OvEr ThE lAzY dOg | |
StringUpper,str,str,T | |
MsgBox, % Str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#main> .column>ul>li>a:first-of-type { | |
background-color:#663399; | |
border: 1px dotted #FFFF00; | |
text-transform: uppercase; | |
width:98%; | |
} | |
ul:first-of-type{ | |
border-right:1px dotted lime; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Truncate and Hide Page Title | |
// @namespace my | |
// @version 0.2 | |
// @description Display first word of the page title | |
// @include https://* | |
// @include www* | |
// @include http://* | |
// @copyright 2017, Ranjit Saini | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetControlDelay -1 | |
;things to do, check periodically, gui | |
;check and deleted if last version file cache is present | |
boxicheckfile=boxifierv | |
UrlDownloadToFile, http://www.boxifier.com/, %boxicheckfile%.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CoordMode, Mouse, Screen | |
;This script hides the chrome address bar by displaying a fake address bar image (png) on the top of google chrome | |
; Useful trick to have more privacy | |
;overlays on chrome and minimize itself if chrome is minimized | |
; Has transparent area where google chrome back, next button are to make it work with other script which use those button images | |
; still to do is is to make it resize according to google chrome window's size. | |
;demo is at https://github.com/1nsp1r3rnzt/Autohotkey-scripts/blob/master/Autohotkey-scripts/chrome%20demo.gif?raw=true | |
Gui, Color, CABAFF | |
Gui +LastFound | |
winset,transcolor,CABAFF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "keys": ["ctrl+e", "ctrl+w"], "command": "open_evernote_note", "args": {"note_guid": "clipboard"} }, | |
{ "keys": ["ctrl+e", "ctrl+u"], "command": "send_to_evernote" }, | |
{ "keys": ["ctrl+e", "ctrl+o"], "command": "open_evernote_note" }, | |
{ "keys": ["ctrl+e", "ctrl+s"], "command": "save_evernote_note" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
;this ahkscript open an evernote in sublime_text for quick editing in markdown | |
;define the hotkey here | |
^m:: | |
clipboard= | |
;copying the shared url | |
sendInput {ctrl Down}{Alt Down}l{Alt Up}{ctrl up} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
`:: | |
#IfWinExist ahk_class ENMainFrame | |
WinActivate ,ahk_class ENMainFrame | |
send {enter} |
OlderNewer