Skip to content

Instantly share code, notes, and snippets.

View AaronNGray's full-sized avatar

Aaron Gray AaronNGray

View GitHub Profile
pdfalto/libs
├── freetype
│   ├── include
│   │   ├── dlg
│   │   │   ├── dlg.h
│   │   │   └── output.h
│   │   ├── freetype
│   │   │   ├── config
│   │   │   │   ├── ftconfig.h
│   │   │   │   ├── ftheader.h
grobid-home/lib
├── lin-32
│   ├── ld-linux.so.2
│   ├── libc.so.6
│   ├── libgcc_s.so.1
│   ├── libm.so.6
│   ├── libstdc++.so.6
│   └── libwapiti.so
├── lin-64
│   ├── jep
@AaronNGray
AaronNGray / index.d.ts
Created September 4, 2024 20:45
@types/ws/index.d.ts
/// <reference types="node" />
import { EventEmitter } from "events";
import {
Agent,
ClientRequest,
ClientRequestArgs,
IncomingMessage,
OutgoingHttpHeaders,
Server as HTTPServer,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meeting Schedule</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.38/moment-timezone-with-data.min.js"></script>
<style>
/* Add some basic styling */
@AaronNGray
AaronNGray / schedule.html
Created July 31, 2024 18:58
theconversation.cc/schedule.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meeting Schedule</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.38/moment-timezone-with-data.min.js"></script>
<style>
/* Add some basic styling */
pip install "typer<0.5.0,>=0.4.1" "tomli<3.0.0,>=2.0.1" "rich<13.0.0,>=12.4.4" "httpx<0.24.0,>=0.23.0" "anyio<4.0.0,>=3.6.1" "nala"
pip install --upgrade duplicity
#!/usr/bin/env bash
if [ ! `which jq` ]
then
echo Installing 'jq'
sudo apt-get install jq -y
fi
set -euo pipefail
#!/usr/bin/env bash
# webfinger
if [ ! `which jq` ]
then
echo Installing 'jq'
sudo apt-get install jq -y
fi
set -euo pipefail
@AaronNGray
AaronNGray / instanceof.ts
Created September 21, 2023 04:33
instanceof.ts
abstract class A {
abstract run(): Promise<void>
}
export class B implements A {
async run(): Promise<void> {
}
}
const I = new B();
@AaronNGray
AaronNGray / qt-everywhere-opensource-src-5.15.9
Created August 29, 2023 19:38
qt-everywhere-opensource-src-5.15.9
tar xf ~/Downloads/qt-everywhere-opensource-src-5.15.9.tar.xz
cd qt-everywhere-src-5.15.9
mkdir build
cd build
../configure
make
sudo make install