- Ability to change the settings from the backend for different states, without changing the backend.
- name:
- show_completions: Should we show the completions?
- popup_on_every_session: Should we show the popup on every session?
- status_code: Override the default status code.
- message:
- Initially should be able to support the below states.
- ADMIN_NOT_AUTHORIZED
- NOT_AUTHENTICATED
We can't make this file beautiful and searchable because it's too large.
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
TractId,State,County,TotalPop,Men,Women,Hispanic,White,Black,Native,Asian,Pacific,VotingAgeCitizen,Income,IncomeErr,IncomePerCap,IncomePerCapErr,Poverty,ChildPoverty,Professional,Service,Office,Construction,Production,Drive,Carpool,Transit,Walk,OtherTransp,WorkAtHome,MeanCommute,Employed,PrivateWork,PublicWork,SelfEmployed,FamilyWork,Unemployment | |
1001020100,Alabama,Autauga County,1845,899,946,2.4,86.3,5.2,0.0,1.2,0.0,1407,67826.0,14560.0,33018.0,6294.0,10.7,20.8,38.5,15.6,22.8,10.8,12.4,94.2,3.3,0.0,0.5,0.0,2.1,24.5,881,74.2,21.2,4.5,0.0,4.6 | |
1001020200,Alabama,Autauga County,2172,1167,1005,1.1,41.6,54.5,0.0,1.0,0.0,1652,41287.0,3819.0,18996.0,2453.0,22.4,35.8,30.5,24.9,22.9,6.3,15.4,90.5,9.1,0.0,0.0,0.5,0.0,22.2,852,75.9,15.0,9.0,0.0,3.4 | |
1001020300,Alabama,Autauga County,3385,1533,1852,8.0,61.4,26.5,0.6,0.7,0.4,2480,46806.0,9496.0,21236.0,2562.0,14.7,21.1,27.9,19.4,33.3,9.9,9.6,88.3,8.4,0.0,1.0,0.8,1.5,23.1,1482,73.3,21.1,4.8,0.7,4.7 | |
1001020400,Alabama,Autauga County,4267,2001,2266,9.6,80.3,7.1,0.5,0.2,0.0,32 |
- Install yarn. Follow this guide https://yarnpkg.com/lang/en/docs/install/#debian-stable
- Install yarn packages by running this command.
pushd {project_dir} && yarn && popd
- Edit {project_dir}/css/theme_additional.scss
- Generate css file theme-additional.css
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
# Kubernetes usefulness. | |
alias kubeprod='kubectl config use-context gke_typegenie_europe-west1-d_production' | |
alias kubestag='kubectl config use-context gke_typegenie_europe-west1-b_staging' | |
eval $(kubectl completion zsh) | |
alias kubectx="kubectl config current-context" | |
# Shells into a service on the current kubernetes cluster | |
function kubesh { | |
local service=${1:?"Service name must be arg1"} |
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 zsh | |
# fd - cd to selected directory | |
fd() { | |
local dir | |
dir=$(find ${1:-.} -path '*/\.*' -prune \ | |
-o -type d -print 2> /dev/null | fzf +m) && | |
cd "$dir" | |
} |
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
#!/bin/sh | |
set -e | |
dir="$1" | |
if [ -z "$dir" ]; then | |
{ | |
echo 'This script is for destroying old /var/lib/docker directories more safely than' | |
echo ' "rm -rf", which can cause data loss or other serious issues.' | |
echo |
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
Will create a config file for project. Name of the file would be trueai_config.py. | |
file: trueai_config.py | |
This file will contain all the config settings, related to the project. One of the main config settings, we will be storing | |
is, the elasticsearch indexes we are using. The value of the variable, depends on the environmental variable | |
TRUEAI_ENVIRONMENT | |
if getenv('TRUEAI_ENVIRONMENT', 'devel') == 'test': | |
ELASTICSEARCH_TRUEAI_INDEX = 'test_trueai' | |
else: |
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
TrueAI Ltd is a London based Artificial Intelligence startup that automates customer support using Machine | |
Learning/Deep Learning. The company just closed its funding round and now looking to hire smart and strongly | |
motivated technical employees who are excited by the start-up environment and want to build the company together | |
with the founders. As a Front-end software engineer at True AI, you will specialize in building single-page web applications and chrome extensions, and responsible for the client facing side of the products. | |
More info: | |
* [Web page][1] | |
* [Pitch to Investors][2] | |
### Required Skills |
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
server { | |
listen 443; | |
server_name webhook.idelivr.info www.webhook.idelivr.info; | |
ssl on; | |
ssl_certificate /etc/letsencrypt/live/webhook.idelivr.info/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/webhook.idelivr.info/privkey.pem; | |
access_log off; |
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
location '/.well-known/acme-challenge' { | |
allow all; | |
default_type "text/plain"; | |
root /usr/share/nginx/letsencrypt; | |
try_files $uri /$1; | |
} |
NewerOlder