top of page
ToucanSway
All Posts


WORDLE SOLUTION FOR OCTOBER 22, 2025
STUNT # wordle # game1586 # nytimes # stunt #brainexercise #TracyBennett Try to solve it.

waclaw_koscielniak
1 hour ago1 min read
Â
Â
Â


HAPPY WEDNESDAY
Keep it Happy. #happyday

waclaw_koscielniak
1 hour ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR OCTOBER 21, 2025
DETOX #wordle #game1585 #nytimes #detox #Brainhealth Try to solve it.

waclaw_koscielniak
24 hours ago1 min read
Â
Â
Â


HAPPY TUESDAY
Keep it Happy. #happyday

waclaw_koscielniak
24 hours ago1 min read
Â
Â
Â


PYTHON CODING
import statsmodels.api as sm X = sm.add_constant([1,2,3,4]) Y = [2,4,6,8] model = sm.OLS(Y, X).fit() print(model.params.tolist()) [Running] python3 -u "/Users/name/test/test485.py" [0.0, 1.9999999999999996] [Done] exited with code=0 in 1.967 seconds #Python #PythonCoding #VSC Try to run it.

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR OCTOBER 20, 2025
LIMBO # wordle # game1584 # nytimes # limbo #BrainHealth Try to solve it.

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


HAPPY MONDAY
Keep it Happy. #happyday

waclaw_koscielniak
2 days ago1 min read
Â
Â
Â


WORDLE SOLUTION OCTOBER 19, 2025
IDEAL # wordle # game1583 # nytimes # ideal #brainexercise Try to solve it, it's not too difficult.

waclaw_koscielniak
3 days ago1 min read
Â
Â
Â


PYTHON CODING
import turtle t = turtle.Turtle() screen = turtle.Screen() screen.bgcolor("black") colors = ["red", "blue", "orange", "DarkViolet", "green", "purple", "brown", "cyan", "DarkBlue"] for i in range(9): t.color(colors[i]) for _ in range(25): t.forward(100) t.right(64) t.right(100) turtle.done() #Python #PythonCoding #VSC Try your own version.

waclaw_koscielniak
4 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR OCTOBER 18, 2025
HAVEN # wordle # game1582 # nytimes # haven #brainexercise Try to solve it.

waclaw_koscielniak
4 days ago1 min read
Â
Â
Â


HAPPY WEEKEND
Happy Weekend, everyone. #happyday

waclaw_koscielniak
4 days ago1 min read
Â
Â
Â


PYTHON CODING
import time from datetime import datetime while True: now = datetime.now() current_time = now.strftime("%H:%M:%S") print("Digital Clock:", current_time) time.sleep(10) #Python #PythonCoding #VSC [Running] python3 -u "/Users/name/test/test935.py" Digital Clock: 15:56:31 Digital Clock: 15:56:41 [Done] exited with code=null in 11.946 seconds Try to run it.

waclaw_koscielniak
5 days ago1 min read
Â
Â
Â


WORDLE OCTOBER 17, 2025
GROSS # wordle # game1581 # nytimes # gross #brainhealth # TracyBennett

waclaw_koscielniak
5 days ago1 min read
Â
Â
Â


HAPPY FRIDAY
Keep it Happy. #happyday

waclaw_koscielniak
5 days ago1 min read
Â
Â
Â


PYTHON CODING
import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 15, 1000) y1 = np.exp(-0.1*x) * np.sin(x) y2 = np.cos(x + np.pi/2) + 0.1 plt.fill_between(x, y1, y2, color='yellow', alpha=0.4) plt.plot(x, y1, color='blue') plt.plot(x, y2, color='red') plt.title("Filled Area") plt.xlabel("x") plt.ylabel("y1 & y2") plt.show () #Python #PythonCoding #VSC Try your own version.

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


WORDLE SOLUTION FOR OCTOBER 16, 2025
CATTY # wordle # game1580 # nytimes # catty #brainexercise Try to solve it.

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


HAPPY THURSDAY
Keep it Happy. #happyday

waclaw_koscielniak
6 days ago1 min read
Â
Â
Â


PYTHON CODING
import matplotlib.pyplot as plt import numpy as np theta = np.linspace(0, 12*np.pi, 500) r = theta**(np.cos(theta/4)) plt.polar(theta, r, color='red', linewidth=3) plt.title("Polar Plot") plt.show() #Python #PythonCoding #VSC Try to run it.

waclaw_koscielniak
7 days ago1 min read
Â
Â
Â


PYTHON CODING
import numpy as np import matplotlib.pyplot as plt import matplotlib.image as mpimg from sklearn.cluster import KMeans image = mpimg.imread('Baby_dinosaur.jpg') w, h, d = image.shape pixels = image.reshape(w * h, d) n_colors = 16 kmeans = KMeans(n_clusters=n_colors, random_state=42).fit(pixels) palette = np.uint8(kmeans.cluster_centers_) plt.imshow([palette]) plt.axis('off') plt.show() #Python #PythonCoding #VSC Baby_dinosaur.jpg Color strip.

waclaw_koscielniak
7 days ago1 min read
Â
Â
Â


WORDLE SOLUTION OCTOBER 15, 2025
SPOOF # wordle # game1579 # nytimes # spoof #brainexercise Try to solve it.

waclaw_koscielniak
Oct 151 min read
Â
Â
Â
bottom of page