Skip to content

Instantly share code, notes, and snippets.

import sys
def is_prime(n: int) -> bool:
if n <= 1:
return False
else:
range_end: int = n + 1
flag: list = [True] * range_end
flag[0] = False
/*
Universal Colors
Ref. https://jfly.uni-koeln.de/colorset/CUD_color_set_GuideBook_2018_for_print_cs4.pdf
*/
:root {
/* Accent colors */
--red: #ff4b00;
--yellow: #fff100;
--green: #03af7a;
@Meiryo7743
Meiryo7743 / README.md
Created May 1, 2021 12:22
A web counter implemented with Google Apps Script.
switch ($Args.Length) {
0 {
Write-Host "No item is selected."
exit
}
1 {
Write-Host "The following item will be deleted:"
Write-Host "$($Args)"
}
Default {
@Meiryo7743
Meiryo7743 / LICENSE.md
Last active March 17, 2021 13:59
This license applies to all of my public gists.