Skip to content

Instantly share code, notes, and snippets.

View minomy13's full-sized avatar
💥
Enhancing my Rust skills...

Adrian Mysak minomy13

💥
Enhancing my Rust skills...
View GitHub Profile
@minomy13
minomy13 / acmart.typ
Created January 14, 2025 13:36 — forked from vtta/acmart.typ
acmart typst template
// made according to typst ieee template and official acm word template
// --- Draft Formatting
// Papers will be submitted electronically in PDF format via the web submission form.
// 1. Submissions may have at most 12 pages of technical content, including all text, figures, tables, etc. Bibliographic references are not included in the 12-page limit.
// 2. Use A4 or US letter paper size, with all text and figures fitting inside a 178 x 229 mm (7 x 9 in) block centered on the page, using two columns separated by 8 mm (0.33) of whitespace.
// 3. Use 10-point font (typeface Times Roman, Linux Libertine, etc.) on 12-point (single-spaced) leading.
// 4. Graphs and figures should be readable when printed in grayscale, without magnification.
@minomy13
minomy13 / congruency_sentence.js
Last active November 29, 2021 20:48
Cungruency Get the congruency sentence of a triangle. #maths
function getCongruency(a, b, c, Al, Be, Ga) {
var allGiven = [a, b, c, Al, Be, Ga];
var given = [];
for (var i = 0; i < 6; i++) {
if (allGiven[i] != null) {
given.push(allGiven[i]);
}
}
}