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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("www.youtube.com") { | |
/** ============================================================================================= | |
* I love Youtube. I watch lot of videos there. | |
* | |
* Once upon a time, I want to search for latest song in Youtube. | |
* I enter Youtube, then I lost. | |
* There are too many exciting videos. I watch the recommended videos, just one video. |
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
//nut trap | |
//default values are for M3 nut | |
//if you use this module as a nut trap cutout, you need to add +de (ie 0.1mm or similiar) to height | |
//in order to get non-manifold cutouts | |
module nut_trap ( | |
w = 5.5, | |
h = 3 | |
) | |
{ | |
cylinder(r = w / 2 / cos(180 / 6) + 0.05, h=h, $fn=6); |
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
g_LastCtrlKeyDownTime := 0 | |
g_AbortSendEsc := false | |
g_ControlRepeatDetected := false | |
*CapsLock:: | |
if (g_ControlRepeatDetected) | |
{ | |
return | |
} |