Skip to content

Instantly share code, notes, and snippets.

View kutyel's full-sized avatar
🌊
数学者に俺は成る!

Flavio Corpa kutyel

🌊
数学者に俺は成る!
View GitHub Profile
<wake reason="dispatch" current-time="2026-06-25T09:28:31Z">
<channel id="C01NA7G6MQE" type="channel" member-count="27">
<message trigger="true" from="system" trust="principal" role="initiator" sent-at="2026-06-25T09:28:31Z"># Tool constraints (hard rules — read before doing anything)
- Post your FIRST `reply()` before any other tool call — zero `fetch_channel`, zero `search` before it. AFTER that first reply: call `fetch_channel` ONCE for this channel only, then at most 2 `search` calls. That&#39;s your full tool budget — write your remaining replies after that. (BROADCAST: skip this — go straight to memory after your one reply.)
- `search` is keyword-only: 1-3 plain words. NO from:/in:/to:/after: modifiers.
- Don&#39;t call `fetch_thread` — work from search snippets to keep this tight.
- If any tool errors, skip it and move on — never retry.
- TEAM/PERSONAL channels: always post all three replies (never `no_reply_needed` — even if you see your own prior intro in the history, treat each join as fresh).
@kutyel
kutyel / Japan.elm
Created October 17, 2025 21:10
An SVG with the map of all Japan prefectures drawn in Elm
Svg.svg
[ SvgAttr.viewBox "0 0 1024 1024"
]
[ Svg.defs []
[ Svg.g
[ SvgAttr.id "ground"
]
[ Svg.g
[ SvgAttr.fill "grey"
, SvgAttr.stroke "black"
@kutyel
kutyel / bible.json
Created August 18, 2025 11:32
JSON with the book names of the Bible and the number of chapters each has
{
"Genesis": 50,
"Exodus": 40,
"Leviticus": 27,
"Numbers": 36,
"Deuteronomy": 34,
"Joshua": 24,
"Judges": 21,
"Ruth": 4,
"1 Samuel": 31,
@kutyel
kutyel / tournaments.csv
Last active August 7, 2025 12:04
Recent results
Oponent Rating Opening Result Playing Tournament
Bianca Andre Varcagiu Nadoleanu 1446 Dubov Gambit 1 White IV IRT Sub1800 Mutxamel 2025
Fran Penalva Cuerva 1688 Sicilian Najdorf 1/2 Black IV IRT Sub1800 Mutxamel 2025
Alfonso Serrano Ruzafa 1598 Open Sicilian 0 Black IV IRT Sub1800 Mutxamel 2025
Rostyslav Bachyk 1780 Kan Sicilian 0 White IV IRT Sub1800 Mutxamel 2025
Josep Frau Roig 0 Sicilian Defence: Bowlder Attack 1 Black IV IRT Sub1800 Mutxamel 2025
Francisco Muñoz Martínez 1416 French Defence: Advanced Variation 1 White IV Peones Traviesos 2025
FM Bernat Serarols Mabras 2303 Caro Kann: Advance 1/2 White IV Peones Traviesos 2025
Guillermo Elvira Martínez 0 Sicilian Defence: Bowlder Attack 1 Black IV IRT Sub1800 Sant Joan 2025
Aurelio Martínez Córchalo 0 Italian Game 1 White IV IRT Sub1800 Sant Joan 2025
@kutyel
kutyel / bsky-comments.js
Last active November 26, 2024 12:38 — forked from LoueeD/bsky-comments.js
bluesky comments web component - inspired by emilyliu and coryzue
class BskyComments extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
this.visibleCount = 3;
this.thread = null;
this.error = null;
}
connectedCallback() {
@kutyel
kutyel / FTN-Tupas.md
Created May 20, 2024 10:34 — forked from ykarikos/FTN-Tupas.md
FTN Test accounts and personal ID numbers for Finnish bank authentication
@kutyel
kutyel / index.js
Created August 11, 2023 09:42
Haskell style valid braces kata but in JavaScript! 🥷🏻
const validBraces = (str) => ![...str].reduceRight(collapse, []).join('')
const collapse = ([head, ...tail], val) => {
switch (val) {
case '(':
return head === ')' ? tail : [val, head, ...tail]
case '{':
return head === '}' ? tail : [val, head, ...tail]
case '[':
return head === ']' ? tail : [val, head, ...tail]
default:
@kutyel
kutyel / Autocomplete.scss
Created September 20, 2022 11:32
Elm Autocomplete
@use '_share/src/zindex' as zindex;
@use '_share/src/Platform2/colors' as P2Colors;
@use '_share/src/Platform2/Scrollbar/style' as Scrollbar;
@mixin autocomplete {
&--search-icon {
margin-left: -8px;
margin-right: -4px;
height: 32px;
}
const app = Application.currentApplication()
app.includeStandardAdditions = true
let Calendar = Application("Calendar")
const rounds = [
["Round 1", "12/26/2022 17:00"],
["Round 2", "12/27/2022 10:00"],
["Round 3", "12/27/2022 17:00"],
["Round 4", "12/28/2022 10:00"],
["Round 5", "12/28/2022 17:00"],
@kutyel
kutyel / part3.elm
Created July 13, 2022 14:10
Chapter 1 of Essential F# in Elm
module Main exposing (Customer(..), calculateTotal)
type Customer
= Eligible { id : String }
| Registered { id : String }
| Guest { id : String }
calculateTotal : Customer -> Double -> Double