![photo]
Tell us about things that others may not easily discern about you.
import mysql.connector | |
import re | |
slow_log_files = ['file1','file2'] | |
table = "slow_log" | |
connection = mysql.connector.connect( | |
host="127.0.0.1", |
3.5 fps, Paperwhite 3
@adtac_
mobileread.com is your best resource here, follow the instructions from the LanguageBreak thread
I didn't really follow the LanguageBreak instructions because I didn't care about most of the features + I was curious to do it myself, but the LanguageBreak github repo was invaluable for debugging
import ref from "ref-napi"; | |
import ffi from "ffi-napi"; | |
import ref_array_di from "ref-array-di"; | |
const ArrayType = ref_array_di(ref); | |
const StringArray = ArrayType("string"); | |
// from fcntl.h | |
const F_GETFD = 1; /* get close_on_exec */ |
export const libc = Deno.dlopen( | |
"libc.so.6", | |
{ | |
dl_iterate_phdr: { | |
parameters: ["function", "pointer"], | |
result: "i32", | |
}, | |
readlink: { | |
parameters: ["buffer", "buffer", "isize"], | |
result: "isize", |
#!/bin/bash | |
cache='/tmp/jira_all' | |
assignee="" | |
timeout=3600 # 60m * 60s = 1hr | |
if [[ $1 == "mine" ]]; then | |
cache='/tmp/jira_mine' | |
assignee="-a $(jira me)" | |
fi | |
function refresh_cache() { | |
jira issue list $assignee --plain --columns id,summary,status,type > $cache |
This guide was adapted from https://gist.github.com/niw/e4313b9c14e968764a52375da41b4278#running-ubuntu-server-for-arm64
version: "3" | |
services: | |
mongo1: | |
hostname: mongo1 | |
container_name: localmongo1 | |
image: mongo:4.0-xenial | |
expose: | |
- 27017 | |
ports: | |
- 27011:27017 |