Update the list of available locales to include Aussie, then updates the locale on the system.
Must reboot system for it to take effect!
sudo locale-gen en_AU.UTF-8Morning Session 17th Oct 2019
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.20312860608100891</real> |
I hereby claim:
To claim this, I am signing this object:
| black = '#1E2127'; | |
| red = '#E06C75'; // red | |
| green = '#98C379'; // green | |
| yellow = '#D19A66'; // yellow | |
| blue = '#61AFEF'; // blue | |
| magenta = '#C678DD'; // pink | |
| cyan = '#56B6C2'; // cyan | |
| white = '#ABB2BF'; // light gray | |
| lightBlack = '#5C6370'; // medium gray | |
| lightRed = '#E06C75'; // red |
On my Macbook Pro (OS X El Capitan) I was having issues on Electron based apps. These apps had visual issues/glitches like blank screens, visual components showing only when hovering or transparent menus.
By opening with these comands, the problems disappeared.
open /Applications/Slack.app/ --args --disable-gpu
open /Applications/Trello.app/ --args --disable-gpu
open /Applications/Whatsapp.app/ --args --disable-gpu
| /** vim: et:ts=4:sw=4:sts=4 | |
| * @license RequireJS 2.1.15 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. | |
| * Available via the MIT or new BSD license. | |
| * see: http://github.com/jrburke/requirejs for details | |
| */ | |
| //Not using strict: uneven strict support in browsers, #392, and causes | |
| //problems with requirejs.exec()/transpiler plugins that may not be strict. | |
| /*jslint regexp: true, nomen: true, sloppy: true */ | |
| /*global window, navigator, document, importScripts, setTimeout, opera */ |