With keybow landscape and cable at top:
Row 1: Lightroom
- Reject | Prev | Next | Pick
Row 2: Media
- Prev | Shuffle | Play/Pause | Next/Skip
I hereby claim:
To claim this, I am signing this object:
{ | |
"meta": { | |
"theme": "flat" | |
}, | |
"basics": { | |
"name": "Ash ~ Curriculum Vitae", | |
"label": "Multidisciplinary aspiring developer", | |
"picture": "", | |
"email": "[email protected]", | |
"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) |
{ | |
"meta": { | |
"theme": "flat" | |
}, | |
"basics": { | |
"name": "Ash ~ Curriculum Vitae", | |
"label": "Multidisciplinary aspiring developer", | |
"picture": "", | |
"email": "[email protected]", | |
"website": "https://ash.pm", |
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.
#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) |