Skip to content

Instantly share code, notes, and snippets.

View itCarl's full-sized avatar
🤓
Working from my parents' basement

Carl itCarl

🤓
Working from my parents' basement
View GitHub Profile
@itCarl
itCarl / Artisan Cheatsheet
Last active January 16, 2023 14:46
Artisan Cheatsheet -- Very nice and quick resource
===================================================================================
https://artisan.page/
===================================================================================
@itCarl
itCarl / turnus.js
Last active March 19, 2023 16:19
Ist die Woche ein grader oder ungrader Turnus
// Kalenderwoche, in denen schule ist.
const schoolWeeks = [ 2, 6, 9, 12, 17, 20, 23, 26 ];
const weekNumber = (d = new Date()) =>
{
let startDate = new Date(d.getFullYear(), 0, 1);
// EDIT: 19.03.2023
let days = Math.floor((d - startDate) / (7 * 24 * 60 * 60 * 1000));
return Math.ceil(days / 7);
};