For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 after it, like this #00000066.
This file contains hidden or 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
| // Removes stuff from YouTube video names to make it easier to find the song on Spotify | |
| // Add this to the filter section of your IFTTT applet after the Youtube Trigger, before Spotify. | |
| // Spotify title in the applet settings can be whatever (so long as it's not empty) this replaces it. | |
| var title = Youtube.newLikedVideo.Title | |
| // Some videos use a dash or colon instead of hyphen. | |
| var titleSplit = title.split('-') | |
| if (titleSplit.length != 2){ | |
| titleSplit = title.split('–') |
This file contains hidden or 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
| # this file contains keys needed for decryption of disc file system data (WUD/WUX) | |
| # 1 key per line, any text after a '#' character is considered a comment | |
| # the emulator will automatically pick the right key | |
| 541b9889519b27d363cd21604b97c67a # example key (can be deleted) | |
| 219FCB908520E9912D57444DFC136C23 # The Legend of Zelda: Breath of the Wild | |
| 566FCA3A88AA9255456635EDE688FD0B # The Legend of Zelda: Breath of the Wild EU | |
| 082fa2981e004defac03524cc685f693 # The Legend of Zelda: Breath of the Wild JPN |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome] | |
| "ExtensionManifestV2Availability"=dword:00000002 |
This file contains hidden or 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
| C:\Windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_43100dd3f0c99703\NvCamera | |
| in admin cmd: | |
| NvCameraEnable.exe off |
This file contains hidden or 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 Hide e-Core bots | |
| // @namespace https://gist.github.com/MuTLY/dd867ede63841e3d2982791f43e95156 | |
| // @version 0.1 | |
| // @description Hide the e-Core bots on Slack | |
| // @author MuTLY | |
| // @match https://app.slack.com/* | |
| // @grant none | |
| // ==/UserScript== |
Ctrl + Alt + Space
This file contains hidden or 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
| { | |
| "globals" : | |
| { | |
| "alwaysShowTabs" : true, | |
| "defaultProfile" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "initialCols" : 145, | |
| "initialRows" : 40, | |
| "keybindings" : | |
| [ | |
| { |
This file contains hidden or 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 CASE | |
| $('#q').selectRange(); | |
| $('#q').selectRange(0, 10); | |
| $('#q').selectRange(searchVal.indexOf('{'), (searchVal.indexOf('}')+1)); | |
| $.fn.selectRange = function(start, end) { | |
| if (!start || !end) { | |
| start = 0; | |
| end = 9999; | |
| } |
NewerOlder