Skip to content

Instantly share code, notes, and snippets.

View ab-gh's full-sized avatar
💻
shouting at computers

ash ab-gh

💻
shouting at computers
View GitHub Profile
@ab-gh
ab-gh / README.md
Created August 22, 2023 23:56
keybow macros

Macros.lua

Layout

With keybow landscape and cable at top:

Row 1: Lightroom

  • Reject | Prev | Next | Pick

Row 2: Media

  • Prev | Shuffle | Play/Pause | Next/Skip

Keybase proof

I hereby claim:

  • I am ab-gh on github.
  • I am tyxcho (https://keybase.io/tyxcho) on keybase.
  • I have a public key ASDw5JFhvY-l4RjGS_9Fxe4fmKSP3is_vCmjej0hdGW6zgo

To claim this, I am signing this object:

{
"meta": {
"theme": "flat"
},
"basics": {
"name": "Ash ~ Curriculum Vitae",
"label": "Multidisciplinary aspiring developer",
"picture": "",
"email": "me@ash.pm",
"website": "https://ash.pm",
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import odeint
def func(r, t, params):
x, y, z = r
a, b, c = params
# Differential Equations
dx = a*(y-x)
@ab-gh
ab-gh / resume.json
Last active December 19, 2020 22:58
resume.json
{
"meta": {
"theme": "flat"
},
"basics": {
"name": "Ash ~ Curriculum Vitae",
"label": "Multidisciplinary aspiring developer",
"picture": "",
"email": "me@ash.pm",
"website": "https://ash.pm",
@ab-gh
ab-gh / guidelines.md
Last active December 4, 2020 06:11
Guidelines for DMA Articles

Article Standards for DMA

This is a brief overview of how you should approach writing an article for the Discord Moderator Academy syllabus.

First of all - thank you for contributing! The contributions to DMA have come almost entirely from the community, which gives us the broadest set of experience and knowledge we could hope for.

This document is a set of guidelines and standards, not a set of rules. The most important thing to consider is what you want the reader to take away from your article, and so sometimes you may not follow the rules to the letter - and thats okay. The best advice I can give you is to ask questions. Asking for help - whether to proofread a finished submission, or to help you brainstorm your outline - isn’t a sign of weakness, it shows a commendable desire to collaborate.

The second most important thing is that these guidelines are not set in stone. If we’ve missed something, or made a mistake, tell us and we’ll improve where necessary.

The Goal

Ex 1

Length: 30
23rd Element: Vanadium

Ex 2

['Sodium', 'Silicon', 'Sulphur', 'Scandium']
['Neon', 'Iron', 'Zinc']

Ex 1

12.694505576656235


[[ 89.  96. 101. 104.]
 [177. 192. 205. 216.]
 [233. 256. 277. 296.]
 [257. 288. 317. 344.]]
[[[ 0. 0. 0. 0.]
#include <stdio.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
int check_key(string key);
void encrypt(string key);
int main(int argc, string argv[])
#include <stdio.h>
#include <cs50.h>
// Prototypes
long get_card_no(void);
bool checksum_pass(long card_no);
string get_card_type(long card_no);
// Main
int main(void)