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
/* | |
1. Navigate to `%APPDATA%\Mozilla\Firefox\Profiles ...` or locate the exact directory at `about:profiles` | |
2. Create a folder named `chrome` then create a file named userChrome.css inside it and paste this code | |
3. If userChrome.css doesn’t seem to work, open `about:config` and set `toolkit.legacyUserProfileCustomizations.stylesheets=true` | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
.tab-line[selected="true"] { | |
background-color : #841ebe; |
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
* { | |
scrollbar-color: rebeccapurple transparent; /* ← use a color that matches your Firefox of Windows 10 color-scheme */ | |
scrollbar-width: thin; | |
} |
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
/* | |
Makes text a bit blurry due to ClearType being disabled when CSS Filters are used. Should probably use a less *naive* way. | |
*/ | |
#hyperbaseContainer { | |
filter: invert(100%); | |
} | |
#hyperbaseContainer img, | |
#hyperbaseContainer button { /* revert images back to normal */ |
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
::-moz-selection { background: #000; } | |
::selection { background: #000; } | |
:not(.published-wrap) > .wrapper > .app { | |
background: #222; | |
} | |
.wrapper { | |
height: 100vh; | |
} |
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
@echo off | |
powershell -command "tree > directory-tree.txt" |
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
//pins | |
const int led = 13; //calibration LED | |
const int vibrator = 12; | |
const int buzzer = 11; | |
const int pulseSensor = A0; //LDR | |
const int breathSensor = A1; //resistive fabric | |
//pulse sensor variables | |
int pulseMin = 1023; | |
int pulseMax = 0; |
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
// Script for Maxwell Render: render all the MXS files located in the folder 'inputFolder', including its children | |
var inputFolder = 'C:/_queue'; | |
var outputFolder = 'C:/_output'; | |
var engineVersion = Maxwell.getEngineVersion(); | |
var mxsCount = FileManager.getNumberOfFilesInBranch( inputFolder, '*.mxs' ); | |
var mxsList = FileManager.getFilesInBranch( inputFolder, '*.mxs' ); | |
// Connect event | |
RenderEvents['renderFinished()'].connect(renderHasFinished); | |
var i = 0; |
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
@echo off | |
setlocal | |
:PROMPT | |
SET /P CONFIRM=Do you want to delete all ^ | |
Sketchup : .skb, AutoSave_, Backup*.layout ^ | |
AutoCAD : .bak, .dwl, .dwl2, .log, .err ^ | |
Photoshop : .tmp ^ |
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
/* | |
Obsolete since Dropbox Paper introduced a native Dark theme. | |
*/ | |
::-moz-selection { background: #000; } | |
::selection { background: #000; } | |
body, | |
.ace-editor, | |
.hp-sidebar-container, |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>beep</title> | |
<meta charset="utf-8" /> | |
<style> | |
body { | |
margin: 20px; | |
background: #0000FF; |