top of page
ToucanSway
All Posts


ANOTHER QUANTUM COMPUTER ADVANTAGE FROM GOOGLE?
No, not again. Google is claiming another advantage of its 105-qubit quantum computer, Willow . There is a straightforward test to determine whether a quantum computer is functional. People at Google can run it; it's an almost trivial algorithm. 1) X=0, initialize a qubit, gate, or the whole quantum computer to whatever state you like. Hero, zero means an initial state. 2) Determine X, figure out what that state is. 3) Repeat steps 1) and 2) a large number of times, say 1000-

waclaw_koscielniak
Oct 221 min read
Â
Â
Â


PYTHON CODING
from sklearn.preprocessing import MinMaxScaler import numpy as np scaler = MinMaxScaler() data = np.array([[2], [4]]) print(scaler.fit_transform(data)[0][0]) [Running] python3 -u "/Users/name/test/test947.py" 0.0 [Done] exited with code=0 in 1.531 seconds #Python #PythonCoding #VSC Try to verify it.

waclaw_koscielniak
Oct 221 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 221 min read
Â
Â
Â


HAPPY WEDNESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 221 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 211 min read
Â
Â
Â


HAPPY TUESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 211 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
Oct 201 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 201 min read
Â
Â
Â


HAPPY MONDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 201 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 191 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
Oct 181 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 181 min read
Â
Â
Â


HAPPY WEEKEND
Happy Weekend, everyone. #happyday

waclaw_koscielniak
Oct 181 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
Oct 171 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 171 min read
Â
Â
Â


HAPPY FRIDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 171 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
Oct 161 min read
Â
Â
Â


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

waclaw_koscielniak
Oct 161 min read
Â
Â
Â


HAPPY THURSDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 161 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
Oct 151 min read
Â
Â
Â
bottom of page