top of page
ToucanSway
All Posts


PYTHON CODING
import os from pathlib import Path p = Path("sample.txt") p.write_text("Hello") print(os.path.isfile("sample.txt"), p.stat().st_size)...

waclaw_koscielniak
Sep 23, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 23, 2025
MOUTH # wordle # game1557 # NYTimes # mouth #brainexercise Try to solve it.

waclaw_koscielniak
Sep 23, 20251 min read
Â
Â
Â


HAPPY TUESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 23, 20251 min read
Â
Â
Â


PYTHON CODING
import glob, os with open("a.txt", "w") as f: f.write("A") with open("b.txt", "w") as f: f.write("B") print(len(glob.glob("*.txt")))...

waclaw_koscielniak
Sep 22, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 22, 2025
QUILL # wordle # game1556 # nytimes # quill # BrainExercise # TracyBennett Try to solve it.

waclaw_koscielniak
Sep 22, 20251 min read
Â
Â
Â


HAPPY MONDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 22, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 21, 2025
COVEN # wordle # game1555 # nytimes # coven # briancognition Try to solve it.

waclaw_koscielniak
Sep 21, 20251 min read
Â
Â
Â


WORDLE SOLUTION FOR SEPTEMBER 20, 2025
DEFER # wordle # game1554 # nytimes # defer # brainexercise Try to solve it.

waclaw_koscielniak
Sep 20, 20251 min read
Â
Â
Â


HAPPY WEEKEND
Small Moon behind trees. #happyday

waclaw_koscielniak
Sep 20, 20251 min read
Â
Â
Â


PYTHON CODING
from fractions import Fraction f1 = Fraction(3, 4) f2 = Fraction(2, 3) result = f1 * f2 + Fraction(1, 6) print(result, float(result))...

waclaw_koscielniak
Sep 19, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 19, 2025
LATER # wordle # game1553 # nytimes # later #braincognition Try to solve it.

waclaw_koscielniak
Sep 19, 20251 min read
Â
Â
Â


HAPPY FRIDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 19, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 18, 2025
KNIFE # wordle # game1552 # nytimes # knife #brainhealth Try to solve it.

waclaw_koscielniak
Sep 18, 20251 min read
Â
Â
Â


HAPPY THURSDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 18, 20251 min read
Â
Â
Â


PYTHON CODING
import numpy as np import matplotlib.pyplot as plt number = 500 x = np.random.rand(number)*10 y = np.random.rand(number)*10 sizes =...

waclaw_koscielniak
Sep 17, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 17, 2025
TEETH # wordle # game1551 # nytimes # teeth #brainexercise Did you solve it?

waclaw_koscielniak
Sep 17, 20251 min read
Â
Â
Â


HAPPY WEDNESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 17, 20251 min read
Â
Â
Â


PYTHON CODING
import asyncio async def double(x): await asyncio.sleep(0.05) return x * 2 async def main(): results = await asyncio.gather(double(3),...

waclaw_koscielniak
Sep 16, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 16, 2025
LEFTY # wordle # game1550 # nytimes # lefty #brainexercise Try to solve it.

waclaw_koscielniak
Sep 16, 20251 min read
Â
Â
Â


HAPPY TUESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 16, 20251 min read
Â
Â
Â
bottom of page