- iso_datetime
-
Date and time in ISO 8601 UTC, e.g.
20240428T051943Z
= 2024-04-28 (time T) 05:19:43 (UTC Z)
iso_date
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proc b(x: ptr seq[int]): auto = | |
proc a(): seq[int] = | |
x[].add(10) | |
return x[] | |
a | |
proc ax(): auto = | |
# allocate a sequence manually | |
# will be GC'd at the first opportunity | |
var k = @[1, 2, 3] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proc route(reqType: string, path: string): void = | |
proc notFound( | |
reqType: string, pathOnly: string, getParams: string, pathParams: StringTableRef | |
): void = | |
stderr.writeLine "default" | |
proc methodNotAllowed( | |
reqType: string, pathOnly: string, getParams: string, pathParams: StringTableRef | |
): void = | |
stderr.writeLine "method not allowed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##[ | |
An extremely basic BBcode parser | |
Not quite ready for the works. | |
Will turn into a package later | |
Supports no parameters yet. | |
2 blank lines = 1 manual line break | |
3 blank lines = 2 manual line break |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std/random | |
import std/strutils | |
import std/httpclient | |
import std/monotimes | |
import std/cmdline | |
import malebolgia | |
import malebolgia/ticketlocks | |
proc toThreeString(i: int): string = i.toHex(3).toLowerAscii() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import makedirs | |
from typing import Any, Generator, cast | |
import requests | |
import json | |
import sys | |
from contextlib import contextmanager | |
from pathlib import Path | |
level: int = 0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder