- install spotify https://www.spotify.com/us/download/mac/
- install whatsapp https://www.whatsapp.com/download
- install authy https://authy.com/download/
- install slack https://slack.com/downloads/mac
- install postman https://www.postman.com/downloads/
- install sublime text https://www.sublimetext.com/3
- open sublime from command line https://ashleynolan.co.uk/blog/launching-sublime-from-the-terminal
- install docker https://www.docker.com/products/docker-desktop
- install vscode https://code.visualstudio.com/docs/setup/mac#_installation
- Open the Command Palette (⇧⌘P) and type 'shell command' to find the Shell Command: Install 'code' command in PATH command.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env bash | |
ENV=$1 | |
APP=$2 | |
NAMESPACE=$3 | |
FILENAME=upgrade-error.txt | |
while true | |
do | |
function upgrade() { |
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
""" | |
Author: Awni Hannun | |
This is an example CTC decoder written in Python. The code is | |
intended to be a simple example and is not designed to be | |
especially efficient. | |
The algorithm is a prefix beam search for a model trained | |
with the CTC loss function. |
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
/** | |
* Created by TheFinestArtist on 2014. 9. 2.. | |
*/ | |
public class LanguageDetector { | |
public enum Language {Korean, Japanese, English} | |
public static boolean isEnglish(CharSequence charSequence) { | |
boolean isEnglish = true; | |
for (char c : charSequence.toString().toCharArray()) { |
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
# Assuming an Ubuntu Docker image | |
$ docker run -it <image> /bin/bash |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
NewerOlder