This gist contains a rough set of instructions on bootstrapping a new Ubuntu environment the way I like it.
sudo apt install zsh
#!/usr/bin/env bash | |
if [ $# -lt 1 ]; then | |
echo "Please provide at least one file to download"; | |
exit 1; | |
fi | |
for link in "$@"; | |
do | |
echo Converting $link... |
from collections import Counter | |
import re | |
import nltk | |
from nltk.corpus import stopwords | |
import re | |
import ssl | |
try: | |
_create_unverified_https_context = ssl._create_unverified_context |
import neo4j from "neo4j-driver"; | |
const uri = 'YOUR_AURA_URI'; | |
const driverConfig = { | |
logging: neo4j.logging.console("debug"), | |
connectionTimeout: 5000, | |
connectionAcquisitionTimeout: 5000, | |
}; |
This gist contains a rough set of instructions on bootstrapping a new Ubuntu environment the way I like it.
sudo apt install zsh
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Draggable Forms</title> | |
<link rel='stylesheet' href='main.css'> |
"Vim Config | |
set rnu | |
set hidden | |
let mapleader = "," | |
set tabstop=8 softtabstop=2 expandtab shiftwidth=2 smarttab | |
au! BufNewFile,BufRead *.svelte set ft=html | |
set colorcolumn=81 | |
set number | |
"for vim-polyglot | |
set nocompatible |
const feathers = require('@feathersjs/feathers'); | |
const express = require('@feathersjs/express'); | |
const serverless = require('serverless-http'); | |
class Messages { | |
constructor() { | |
this.messages = []; | |
this.currentId = 0; | |
} |
pytest==4.0.0 | |
allure-pytest==2.5.3 |