- nylas/N1 💌 An extensible desktop mail app built on the modern web.
- black-screen/black-screen A terminal emulator for the 21st century.
- shockone/black-screen A terminal emulator for the 21st century.
- ptmt/react-native-macos React Native for macOS
- docker/kitematic Visual Docker Container Management on Mac & Windows
- kitematic/kitematic Visual Docker Container Management on Mac & Windows
- davezuko/wirk-starter Get started with React, Redux, and React-Router!
- TelescopeJS/Telescope 🔭 An open-source social news app built with Meteor & React
- coryhouse/react-slingshot React + Redux starter kit / boile
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Wilker: Apply latest patch", | |
| "type": "shell", | |
| "command": "${workspaceFolder}/scripts/wilker-apply.sh", | |
| "group": "build", | |
| "problemMatcher": [] | |
| }, |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)" | |
| LOGS="$REPO_ROOT/wilker/logs" | |
| mkdir -p "$LOGS" | |
| declare -A ALLOW | |
| ALLOW["install-front"]="pnpm --dir $REPO_ROOT/frontend install || npm --prefix $REPO_ROOT/frontend install" | |
| ALLOW["build-front"]="pnpm --dir $REPO_ROOT/frontend run build || npm --prefix $REPO_ROOT/frontend run build" |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)" | |
| INCOMING="$REPO_ROOT/wilker/incoming" | |
| LOGS="$REPO_ROOT/wilker/logs" | |
| BRANCH="${1:-wilker}" | |
| mkdir -p "$INCOMING" "$LOGS" |
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
| { | |
| "about": { | |
| "browser": "firefox", | |
| "version": "21.2.1" | |
| }, | |
| "showall": true, | |
| "lang": "pt-BR", | |
| "dark": "system", | |
| "favicon": "", | |
| "tabtitle": "", |
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
| #include <DigitalIO.h> | |
| #include <PsxControllerHwSpi.h> | |
| const byte PIN_PS2_ATT = 10; | |
| PsxControllerHwSpi<PIN_PS2_ATT> psx; | |
| boolean connected = false; | |
| byte lxOld, lyOld, rxOld, ryOld; | |
| PsxButtons oldButtons; |
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
| body { | |
| height: 100vh; | |
| background: radial-gradient(circle at top, #430370, #020241 100%); | |
| background-repeat: no-repeat; | |
| background-attachment: fixed; | |
| } |
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
| #! /bin/sh | |
| xcode-select -s /Applications/Xcode.app | |
| xcodebuild -runFirstLaunch | |
| xcrun simctl runtime add $1 |