I hereby claim:
- I am jamiees2 on github.
- I am jameselias (https://keybase.io/jameselias) on keybase.
- I have a public key whose fingerprint is 0AD4 D571 6EC5 EF63 AA44 1BCF 540F 3E19 921A 77E4
To claim this, I am signing this object:
const fs = require("fs/promises"); | |
const fsWatch = require("fs").watch; | |
const fsExistsSync = require("fs").existsSync; | |
const assert = require("assert"); | |
class FileTailer { | |
constructor(filepath, logger = console) { | |
this.filepath = filepath; | |
this.watcher = null; | |
this.watching = false; |
for (let i = 0; i < 10; i++) { | |
console.log(i); | |
} | |
console.log('360 no-scope', i); |
I hereby claim:
To claim this, I am signing this object:
setInterval(function(){ | |
window.frames[0].document.querySelectorAll(".thechosenone")[0].style.backgroundColor = 'white'; | |
},1500) |
def matrixMul(A, B): | |
TB = list(zip(*B)) | |
return [[sum(ea*eb for ea,eb in zip(a,b)) for b in TB] for a in A] | |
def pivotize(m): | |
"""Creates the pivoting matrix for m.""" | |
n = len(m) | |
ID = [[float(i == j) for i in range(n)] for j in range(n)] | |
r = 0 | |
for j in range(n): |
% \documentclass[9pt,a4paper,twocolumn,landscape,oneside]{amsart} | |
\documentclass[9pt,a4paper,landscape,oneside]{amsart} | |
\usepackage{amsmath, amsthm, amssymb, amsfonts} | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\usepackage{booktabs} | |
\usepackage{fancyhdr} | |
\usepackage{float} | |
\usepackage{fullpage} | |
%\usepackage{geometry} |
#!/bin/bash | |
DIR="$(cd "$(dirname "$0")" && pwd)" | |
echo "Running N'SIQ on" $1 | |
echo "===========================================" | |
$DIR/nsiqcppstyle/nsiqcppstyle -f $DIR/profiles/nsiq-profile.txt $1 | |
echo "" | |
echo "===========================================" | |
echo "N'SIQ finished" | |
echo "Now running vera++ on" $1 |
upstream blah_cluster { | |
server ip; | |
} | |
server { | |
server_name blah; | |
access_log /srv/logs/blah.log; | |
error_log /srv/logs/blah-error.log; |
git remote set-url origin $(echo "[email protected]:<TEAM>/$(git remote -v | grep -oh "[^/]*\.git" | head -n1)") |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |