- Set Light mode
- defaults write -g NSRequiresAquaSystemAppearance -bool Yes
- Log out and log back in
- Set Dark mode
  
    
      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
    
  
  
    
  | (function (context, trackingId, options) { | |
| const history = context.history; | |
| const doc = document; | |
| const nav = navigator || {}; | |
| const storage = localStorage; | |
| const encode = encodeURIComponent; | |
| const pushState = history.pushState; | |
| const typeException = 'exception'; | |
| const generateId = () => Math.random().toString(36); | |
| const getId = () => { | 
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
  
    
      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
    
  
  
    
  | //single file version of https://github.com/kchapelier/wavefunctioncollapse | |
| function randomIndice (array, r) { | |
| var sum = 0, | |
| i, | |
| x; | |
| for (i = 0; i < array.length; i++) { | |
| sum += array[i]; | |
| } | 
  
    
      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
    
  
  
    
  | #define PLOT_SAMPLES 3 | |
| template <FN, XMIN, XMAX, YMIN, YMAX, XGRID, YGRID> | |
| glsl vec4 plot(vec2 pos) { | |
| vec2 tPos = vec2( | |
| mix(float(XMIN), float(XMAX), pos.x), | |
| mix(float(YMIN), float(YMAX), pos.y) | |
| ); | |
| vec2 pxSize = vec2((XMAX)-(XMIN), (YMAX)-(YMIN))*shadron_PixelSize; | 
  
    
      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
    
  
  
    
  | // Credits: Tom Ruark | |
| // Switch OFF ScriptingListener output | |
| var listenerID = stringIDToTypeID("AdobeScriptListener ScriptListener"); | |
| var keyLogID = charIDToTypeID('Log '); | |
| var d = new ActionDescriptor; | |
| d.putBoolean(keyLogID, false); | |
| executeAction(listenerID, d, DialogModes.NO); | |
| // Switch ON ScriptingListener output | 
  
    
      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
    
  
  
    
  | * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } | 
NewerOlder