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
| const App = ({name}) => { | |
| return ( | |
| <h1>Hello {name}</h1> | |
| ); | |
| }; | |
| ReactDOM.render(<App name="World" />, document.getElementById("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
| daemon off; | |
| #Heroku dynos have at least 4 cores. | |
| worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>; | |
| events { | |
| use epoll; | |
| accept_mutex on; | |
| worker_connections 1024; | |
| } |
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
| # CUSTOM geoffgarside theme | |
| # .oh-my-zsh/themes/geoffgarside.zsh-theme | |
| declare -A archs | |
| archs=( | |
| ["arm64"]="$bg_bold[cyan]%}%{$fg_bold[white]%}m1%{$reset_color%}" | |
| ["x86_64"]="$bg_bold[yellow]%}%{$fg_bold[white]%}x86%{$reset_color%}" | |
| ) | |
| arch=$(uname -m) | |
| label=$archs[$arch] |
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
| plugins { | |
| id 'io.micronaut.library' version '3.5.1' | |
| } | |
| version "0.1" | |
| group "com.example" | |
| repositories { | |
| mavenCentral() | |
| } |
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
| { | |
| "name": "Keychron K3 Pro ANSI White", | |
| "vendorProductId": 875823667, | |
| "macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
| "layers": [ | |
| [ | |
| "KC_ESC", | |
| "KC_BRID", | |
| "KC_BRIU", | |
| "CUSTOM(4)", |
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
| { | |
| "name": "Keychron K3 Pro ANSI White", | |
| "vendorProductId": 875823667, | |
| "macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
| "layers": [ | |
| [ | |
| "KC_ESC", | |
| "KC_BRID", | |
| "KC_BRIU", | |
| "CUSTOM(4)", |
OlderNewer