top of page
ToucanSway
All Posts


WORDLE SOLUTION SEPTEMBER 4, 2025
BLEND # wordle # game1538 # nytimes # blend #brainactivity #TracyBennett Try to solve it.

waclaw_koscielniak
15 hours ago1 min read
Â
Â
Â


HAPPY THURSDAY
Not too difficult. #happyday

waclaw_koscielniak
16 hours ago1 min read
Â
Â
Â


WORDLE SOLUTION SEPTEMBER 3, 2025
FETCH # wordle # game1537 # nytimes # fetch #brainexercise Did you solve it?

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


PYTHON CODING
from dataclasses import dataclass @dataclass class Point: x: int y: int = 0 p = Point(5) print(p) [Running] python3 -u...

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


HAPPY WEDNESDAY
Keep it Happy. #happyday

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


COMMENTS ON THE DIVINCENZO'S CRITERIA FOR QUANTUM COMPUTING
Let's comment briefly on the DiVincenzo's criteria for quantum computing. They are relatively old, published in 1996, and most are...

waclaw_koscielniak
2 days ago2 min read
Â
Â
Â


GLUCOSE SPIKE MYTH
Worth reading on glucose spike ( click here ) - from American Council on Science and Health #glucosespike Myth busted.

waclaw_koscielniak
3 days ago1 min read
Â
Â
Â


WORDLE SEPTEMBER 2, 2025
MIGHT # wordle # game1536 # nytimes # might #brainhealth Try to solve it.

waclaw_koscielniak
3 days ago1 min read
Â
Â
Â


HAPPY TUESDAY
It's a wall. #happyday

waclaw_koscielniak
3 days ago1 min read
Â
Â
Â


WORDLE SEPTEMBER 1, 2025
LEAST # wordle # game1535 # nytimes # least #brainexercise Did you solve it?

waclaw_koscielniak
3 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR AUGUST 31, 2025
PETAL # wordle # game1534 # nytimes # petal #brainexercise Try to solve it.

waclaw_koscielniak
5 days ago1 min read
Â
Â
Â


PYTHON CODING
import itertools a = [1,2] b = itertools.count(3) c = itertools.chain(a,b) print([next(c) for _ in range(5)]) [Running] python3 -u...

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR AUGUST 30, 2025
ELATE # wordle # game1533 # nytimes # elate #braincognition Did you try to solve it?

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


HAPPY WEEKEND
Keep it Happy! #happyday

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


PYTHON CODING
def f(a, L=[]): L.append(a) return L print(f(1)) print(f(2, [])) print(f(3)) [Running] python3 -u "/Users/name/test/test67.py" [1] [2]...

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR AUGUST 29, 2025
GRAFT # wordle # game1532 # nytimes # graft #brainexercise Try to solve it.

waclaw_koscielniak
7 days ago1 min read
Â
Â
Â


HAPPY FRIDAY
Make it Happy! #happyday

waclaw_koscielniak
7 days ago1 min read
Â
Â
Â


PYTHON CODING
class Meta(type): def __new__(cls, name, bases, dct): dct["id"] = 99 return super().__new__(cls, name, bases, dct) class...

waclaw_koscielniak
Aug 281 min read
Â
Â
Â


WORDLE SOLUTION AUGUST 28, 2025
SPLIT # wordle # game1531 # nytimes # split #brainexercise #TracyBennett Try to solve it.

waclaw_koscielniak
Aug 281 min read
Â
Â
Â


HAPPY THURSDAY
Keep it Happy. #happyday

waclaw_koscielniak
Aug 281 min read
Â
Â
Â
bottom of page