This file contains hidden or 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
module day2; | |
macro import neat.macros.listcomprehension; | |
macro import neat.macros.assert; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
alias command = ( |
This file contains hidden or 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
module day1_2; | |
macro import neat.macros.listcomprehension; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
void main() { | |
[depth.atoi for depth in "day1.txt".readText.split("\n")] |
This file contains hidden or 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
module day1; | |
macro import neat.macros.listcomprehension; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
void main() { | |
[depth.atoi for depth in "day1.txt".readText.split("\n")] |
This file contains hidden or 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
module day1; | |
macro import neat.macros.listcomprehension; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
void main() { | |
auto depths = [depth.atoi for depth in "day1.txt".readText.split("\n")]; |
This file contains hidden or 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
module day1; | |
macro import neat.macros.listcomprehension; | |
import std.stdio; | |
import std.file; | |
import std.string; | |
void main() { | |
auto depths = [depth.atoi for depth in "day1.txt".readText.split("\n")]; |
This file contains hidden or 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
module alsatest; | |
macro import neat.macros.cimport; | |
import c_header("alsa/asoundlib.h"); | |
import std.stdio; | |
import std.string; | |
pragma(lib, "asound"); |
This file contains hidden or 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
module nntest; | |
macro import neat.macros.cimport; | |
import neat.runtime : print; | |
import c_header("stdlib.h") : expf, rand, RAND_MAX; | |
import std.math : abs, exp, pow; |
This file contains hidden or 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
[Donnerstag, 21. Oktober 2021] [04:34:19 CEST] Quit shawwwn ([email protected]) has left this server (Quit: Connection closed for inactivity). | |
[Donnerstag, 21. Oktober 2021] [06:37:48 CEST] <feep> .note shawwwn saw your pm. at the risk of opening wounds, logos01 is not the ultimate reason for my behavior, but I can explain it to you if you like. At any rate, this sounds ridiculous and insulting, but I really *don't* dislike you. | |
[Donnerstag, 21. Oktober 2021] [06:37:48 CEST] Notice -feepbot- Left a note for shawwwn! | |
[Donnerstag, 21. Oktober 2021] [06:38:07 CEST] <feep> well, attempt made | |
[Donnerstag, 21. Oktober 2021] [06:39:51 CEST] <feep> .note shawwwn tl;dr that pattern I keep "accusing" you off, of getting oversensitively attached and then going off on a perceived attacker, you're not the person I've first seen that in, and I always feel I "got away too easy" the last time. so it's not dislike, it's paranoia. | |
[Donnerstag, 21. Oktober 2021] [06:39:52 CEST] Notice -feepbot- Left a note for shaww |
This file contains hidden or 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
module bench; | |
import std; | |
import std.datetime.stopwatch : benchmark; | |
int test(alias skip)(ubyte[] trash) | |
{ | |
int lenSum; | |
while (!trash.empty) | |
{ |
This file contains hidden or 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
module bench; | |
import std; | |
import std.datetime.stopwatch : benchmark; | |
int test(alias skip)(ubyte[] trash) | |
{ | |
int lenSum; | |
while (!trash.empty) | |
{ |