###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| // usage | |
| import historyFallback from 'lib/polyfill/historyFallback' | |
| import historySupport from 'lib/support/history'; | |
| let redirected = historyFallback('/', historySupport ? 'history' : 'hash'); | |
| if (!redirected) { | |
| // You app ... | |
| // Vue.use(VueRouter); |
Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
| #!/bin/bash | |
| set -e | |
| CONTENTS=$(tesseract -c language_model_penalty_non_dict_word=0.8 --tessdata-dir /usr/local/share/tessdata/ "$1" stdout -l eng | xml esc) | |
| hex=$((cat <<EOF | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> |
| import UIKit | |
| import PlaygroundSupport | |
| struct ToDoItem { | |
| let id: UUID | |
| let title: String | |
| init(title: String) { | |
| self.id = UUID() | |
| self.title = title |
| all: | |
| # Build a static library from the Rust file | |
| rustc --crate-type=staticlib ext.rs | |
| # Compile the C file with the static library | |
| # gcc -o sample-c sample.c libext.a | |
| gcc -o sample-c sample.c -L. -lext | |
| ./sample-c | |
| # g++ -o sample-cpp sample.cpp libext.a | |
| g++ -o sample-cpp sample.cpp -L. -lext | |
| ./sample-cpp |
| $ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj | |
| Cloning into 'my-awesome-proj'... | |
| ssh: connect to host github.com port 22: Connection timed out | |
| fatal: Could not read from remote repository. | |
| $ # This should also timeout | |
| $ ssh -T git@github.com | |
| ssh: connect to host github.com port 22: Connection timed out | |
| $ # but this might work |
This should make True Color (24-bit) and italics work in your tmux session and vim/neovim when using Alacritty (and should be compatible with any other terminal emulator, including Kitty).
Running this script should look the same in tmux as without.
curl -s https://gist.githubusercontent.com/lifepillar/09a44b8cf0f9397465614e622979107f/raw/24-bit-color.sh >24-bit-color.sh