Copy and paste these values to your Slack settings Sidebar Theme section:
#5A80D9,#076570,#62B234,#FFFFFF,#93B3FD,#FFFFFF,#62B234,#F15340,#475FA1,#FFFFFF
This file contains 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
(defun elan-sync-mail () | |
"Synchronize mail-accounts using mbsync." | |
(interactive) | |
(if (get-buffer "*mbsync*") | |
(user-error "There is already a sync in progress") | |
(let* ((output-buffer (get-buffer-create "*mbsync*")) | |
(proc (progn | |
(async-shell-command "mbsync -q -a" output-buffer "*mbsync-error*") | |
(get-buffer-process output-buffer)))) | |
(when (process-live-p proc) |
This file contains 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
const config = require('./metro.config.js'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const exclusionList = require('metro-config/src/defaults/exclusionList'); | |
const rnPath = fs.realpathSync( | |
path.resolve(require.resolve('react-native/package.json'), '..'), | |
); | |
const assetRegistryPath = fs.realpathSync( |
This file contains 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
(defun custom-color--choose-action (widget &optional _event) ; this function is only needed if you want to use color-picker in Easy Customization | |
"customize `widget-color--chose-action' to not split the screen" | |
(list-colors-display | |
nil nil | |
`(lambda (color) | |
(when (buffer-live-p ,(current-buffer)) | |
(widget-value-set ',(widget-get widget :parent) color) | |
(pop-to-buffer ,(current-buffer)))))) | |
(defun nscolor2hex (color) |
This file contains 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDC0WMiBfU+PRCHt429MjnCtCt/Ds+TRz9xBLxtJyDkdQbp+d9MQBVNwzp2kCIkgPBw4GKmQadbkejk5GcQ4rvwx/BBZxD3gQMuCat4WDPyptDSSevB2zQmSzEGLQh3RQdMnVu55/WGMVruOb0UzhtXp5+dffGY15XDKTI/gtLVSXqcr8yfOEH40kcpmYgSGzrJugyJrYKV8gWUQvw7DdRkKtYG8gkDv6DEQv4FqDCkLRmi0NlwC62kuXlDMCkuJdfkVdGgexrTUQicziKULzSwNOZwrPfXbgY8kdgmJs8u9kL0X4mwi1Chfb6ewrqHn9++kKJ++nTYSH9KLpappcsMp+773RiQ4NRPCnde2H9UY9LDA01nm1NwoEOwThoyOteL06TjhcCMjB8RBSLbSwioNmh8iYdCr0myXuTH/8EEtzd9K8GrE+Uh2pIee29PaNGA2sgbDbTm6nketj2HoRTYaPmi7OAc8it6Rg17dOcocXC2R34kUwBWIBnbgxEvIeWAM5iWKCQaeLr4Zm356F56rgyfrJEGJjdtz+oYne+qJRWveD9qCUroQxOHbN0EVrfamkSuwBXV6ahqPBFX6L2yn0kXu2Y4CFEl3axGygPMO1J151WGBbB9uXegauu4+2dK2gm7z/GjnPLDGjXbtyMZb7fp8fZFDaq9UymKbVXZww== [email protected] |
This file contains 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
# Adding a name, implicitly groups the cluster(s) | |
Name | |
Write name | |
Choose existing | |
# Determine order based user preference first and on quality second | |
People* | |
Click person -> Person | |
People edit mode | |
People add name -> Name |
This file contains 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
# Adding a name, implicitly groups the cluster(s) | |
# You will also be able to choose an existing person to merge with | |
Name | |
Submit from search -> Search | |
Submit from person -> Person edit mode | |
# Determine order based user preference first and on quality second | |
People | |
Click person -> Person | |
People edit mode |
This file contains 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
(defun svg2code/transpileES5 () | |
"Transpiles the current javascript-mode buffer from ES2015 to ES5" | |
(when (and (string-match ".js$" (buffer-file-name)) | |
(not (string-match "exports.*" (buffer-file-name)))) | |
(shell-command-on-region | |
(point-min) (point-max) | |
"babel --no-babelrc --compact false --presets env" | |
(current-buffer) | |
t | |
"*Babel Error Buffer*" |
This file contains 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
Nebula Reactive Flow | |
Data going in | |
SomeService | |
dispatch SomeAction -> StateStore | |
StateStore | |
portion of state -> Reducers | |
Reducers | |
modify state for next-tick -> Data going out |
NewerOlder