top of page
ToucanSway
All Posts


WORDLE SOLUTION SEPTEMBER 15, 2025
ALONG # wordle # game1549 # nytimes # along #brainexercise Try to solve it.

waclaw_koscielniak
Sep 15, 20251 min read
Â
Â
Â


PYTHON CODING
import json data = {"x": 5, "y": 10} js = json.dumps(data) parsed = json.loads(js) parsed["z"] = parsed["x"] * parsed["y"]...

waclaw_koscielniak
Sep 15, 20251 min read
Â
Â
Â


HAPPY MONDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 15, 20251 min read
Â
Â
Â


WORDLE SEPTEMBER 14, 2025
NOISY # wordle # game1548 # nytimes # noisy #brainexercise Try to solve it.

waclaw_koscielniak
Sep 14, 20251 min read
Â
Â
Â


PYTHON CODING
from functools import reduce nums = [1, 2, 3, 4] res = reduce(lambda x, y: x * y, nums, 2) print(res) nums.append(5) res2 = reduce(lambda...

waclaw_koscielniak
Sep 13, 20251 min read
Â
Â
Â


WORDLE SOLUTION FOR SEPTEMBER 13, 2025
NADIR # wordle # game1537 # nytimes # nadir #BrainExercise #health Try to solve it.

waclaw_koscielniak
Sep 13, 20251 min read
Â
Â
Â


HAPPY WEEKEND
Keep it Happy. #happyday

waclaw_koscielniak
Sep 13, 20251 min read
Â
Â
Â


PYTHON CODING
nums = [1, 2, 3, 4] ref = nums copy = nums[:] ref[0] = 99 copy[1] = 100 print(nums, copy) [Running] python3 -u...

waclaw_koscielniak
Sep 12, 20251 min read
Â
Â
Â


INTERMITTENT FASTING?
Worth reading ( click here ) - from Scientific American #intermittentfasting #health Try to read it.

waclaw_koscielniak
Sep 12, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 12, 2025
THROB # wordle # game1535 # nytimes # throb #brainhealth

waclaw_koscielniak
Sep 12, 20251 min read
Â
Â
Â


HAPPY FRIDAY
Make it Happy. #happyday

waclaw_koscielniak
Sep 12, 20251 min read
Â
Â
Â


PYTHON CODING
def gen(): for i in range(3): yield i * i g = gen() print(next(g)) print(sum(g)) [Running] python3 -u "/Users/name/test/test823.py" 0...

waclaw_koscielniak
Sep 11, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 11, 2025
CHAIR # wordle # game1545 # nytimes #chair #brainexercise Try to solve it today.

waclaw_koscielniak
Sep 11, 20251 min read
Â
Â
Â


HAPPY THURSDAY
Have fun! #happyday

waclaw_koscielniak
Sep 11, 20251 min read
Â
Â
Â


PYTHON CODING
def outer(x): def inner(y): return x + y return inner f = outer(5) print(f(3)) print(outer(10)(2)) [Running] python3 -u...

waclaw_koscielniak
Sep 10, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 10, 2025
POUTY # wordle # game1544 # nytimes # TracyBennett # pouty Try to solve it.

waclaw_koscielniak
Sep 10, 20251 min read
Â
Â
Â


HAPPY WEDNESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Sep 10, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 9, 2025
TRICK # wordle #game1543 # nytimes # trick Did you solve it?

waclaw_koscielniak
Sep 10, 20251 min read
Â
Â
Â


PYTHON CODING
import weakref class A: pass a = A() r = weakref.ref(a) print(r() is a) del a print(r() is None) [Running] python3 -u...

waclaw_koscielniak
Sep 8, 20251 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 8, 2025
CHIRP # wordle # game1542 # nytimes # chirp #brainexercise Try to solve it.

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