from DevOps team {rduplain,mattd,teebes}, to mobile developers at WillowTree Apps
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
# This is an auto-generated partial config. To use it with 'spacy train' | |
# you can run spacy init fill-config to auto-fill all default settings: | |
# python -m spacy init fill-config ./base_config.cfg ./config.cfg | |
[paths] | |
train = null | |
dev = null | |
vectors = null | |
[system] | |
gpu_allocator = "pytorch" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
yarn add -D eslint-config-airbnb eslint-config-prettier prettier eslint-plugin-{jsx-a11y,prettier,react,react-hooks} | |
cat <<EOF >./.eslintrc | |
{ | |
"env": { | |
"browser": true | |
}, | |
"extends": [ | |
"react-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
""" Automatically crop labelled UI sketch elements """ | |
import argparse | |
import glob | |
import os | |
import cv2 | |
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
"""Automatically crop UI sketch scans from folder and moves them to output folder.""" | |
# import the necessary packages | |
import argparse | |
import os | |
from os.path import basename, splitext | |
import cv2 | |
from imutils import paths |
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
const firebaseConfigMap = { | |
apiKey: "REACT_APP_APIKEY", | |
authDomain: "REACT_APP_AUTH_DOMAIN", | |
databaseURL: "REACT_APP_DATABASE_URL", | |
projectId: "REACT_APP_PROJECT_ID", | |
storageBucket: "REACT_APP_STORAGE_BUCKET", | |
messagingSenderId: "REACT_APP_MESSAGING_SENDER_ID", | |
appId: "REACT_APP_APP_ID" | |
}; |
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
version: "3" | |
services: | |
tf-notebook: | |
image: jupyter/tensorflow-notebook | |
volumes: | |
- /home/user/projects/notebooks:/home/jovyan/ | |
ports: | |
- 8888:8888 | |
container_name: tf-notebook-container |
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
{ | |
"parser": "@typescript-eslint/parser", | |
"parserOptions": { | |
"jsx": true, | |
"useJSXTextNode": true | |
}, | |
"env": { | |
"browser": true, | |
"jest/globals": true | |
}, |
NewerOlder