flowchart LR
Revalidation((Roadmap Revalidation))
ExternalSignals(External Signals:\nApp Reviews\nHE Input\nGH tickets)
ImpicitExternalSignals(Implicit External Signals:\nFeatures performance)
Internal(Internal Signals:\nRising WPCOM Products\nIdentified Opportunity)
Revalidation --> Roadmap
ExternalSignals --> Revalidation
ImpicitExternalSignals --> Revalidation
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
| filetype plugin indent on | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set expandtab | |
| set laststatus=2 | |
| set pastetoggle=<F2> | |
| "set so=999 | |
| set viminfo='1000,:1000 | |
| set statusline=%F%m%r%h%w\ \ \ \ [TYPE=%Y]\ [ASC=\%03.3b]\ [HEX=\%02.2B]\ [LEN=%L]\ [CH\ %o]\ [L\ %l,\ C\ %v] | |
| syntax on |
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
| # On the terminal, use the following to add space to the app links: | |
| defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}' && killall Dock | |
| # On the terminal, use the following to add space to the persistent app icons: | |
| defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' && killall Dock |
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
| { | |
| "description": "(Stefanos) CAPS LOCK for ijkl arrow keys, [m,] for del/backspace, caps-space for enter.", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "name": "caps_lock pressed", | |
| "type": "variable_if", | |
| "value": 1 | |
| } |
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
| /* ==UserStyle== | |
| @name wordpress.com - 5/15/2023, 5:11:36 PM | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description A custom userstyle to make P2 more dense visually. Use via the Stylus extension on Firefox/Chrome. | |
| @author Me | |
| ==/UserStyle== */ | |
| @-moz-document domain("wordpress.com") { | |
| 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
| nativefier --name "Gmail" https://mail.google.com --strict-internal-urls |
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 createSimpleLogger( storeName ) { | |
| return ( store ) => ( next ) => ( action ) => { | |
| const result = next( action ); | |
| console.log( { | |
| storeName, | |
| action, | |
| result, | |
| } ); | |
| return result; | |
| }; |
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
| xattr -cr /Applications/Google\ Chrome.app | |
| sudo codesign -f -s - /Applications/Google\ Chrome.app |
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
| git clone --branch <branch_name> --depth 1 <repo_url> |
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
| git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" && git fetch --all |
NewerOlder