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 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 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 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 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 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 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 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 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 |
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
GB_VERSION=v1.60.1 && TEMPMAP=$(mktemp) && wget -q https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/$GB_VERSION/bundle/ios/App.js.map -O $TEMPMAP && npx metro-symbolicate $TEMPMAP < stacktrace.txt |
NewerOlder