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
| #TabsToolbar { visibility: collapse; } | |
| #titlebar { appearance: none } | |
| #sidebar-box { | |
| position: fixed !important; | |
| top: 40px !important; | |
| left: 0 !important; | |
| min-width: 4px !important; | |
| max-width: 4px !important; | |
| width: 4px !important; |
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
| #TabsToolbar { visibility: collapse; } | |
| #titlebar { appearance: none } | |
| #sidebar-box { | |
| position: fixed; | |
| top: 40px; | |
| bottom: 0; | |
| left: 0; | |
| width: 4px !important; | |
| min-width: 4px !important; |
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 Change jscad online editor colors and size | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description this change the text editor a bit to allow focusing in the code editor | |
| // @author github.com/animaone | |
| // @match https://openjscad.xyz/ | |
| // @grant GM_addStyle | |
| // ==/UserScript== |
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
| -printf format | |
| True; print format on the standard output, interpreting `\' | |
| escapes and `%' directives. Field widths and precisions can | |
| be specified as with the `printf' C function. Please note | |
| that many of the fields are printed as %s rather than %d, and | |
| this may mean that flags don't work as you might expect. This | |
| also means that the `-' flag does work (it forces fields to be | |
| left-aligned). Unlike -print, -printf does not add a newline | |
| at the end of the string. The escapes and directives are: |
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
| <html> | |
| <head> | |
| <title>test</title> | |
| </head> | |
| <body> | |
| <script type="javascript"> | |
| alert("test"); | |
| </script> | |
| </body> |
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
| /* Frank edited file - you are good to go...*/ | |
| /* | |
| * Do not remove the @namespace line -- it's required for correct functioning | |
| */ | |
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
| /* hide horizontal tabs at the top of the window */ | |
| #TabsToolbar > * { | |
| visibility: collapse; |