top of page
ToucanSway
All Posts


WORDLE SOLUTION OCTOBER 28, 2025
HOLLY # wordle # game1592 # nytimes # holly #brainexercise Try to solve it today.

waclaw_koscielniak
Oct 28, 20251 min read


HAPPY TUESDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 28, 20251 min read


PYTHON CODING
import plotly.express as px import pandas as pd data = pd.DataFrame({"City":["New York", "Paris", "London", "Cairo", "Melbourne", "Tokyo"], "Temperature":[19, 17, 16, 23, 24, 20]}) fig = px.bar(data, x="City", y="Temperature", title="Average Temperature in Cities (°C)") fig.show() Are temperatures correct? If not, you can always change them. #Python #PythonCoding #VSC

waclaw_koscielniak
Oct 27, 20251 min read


PYTHON CODING
from calendar import TextCalendar year = 2025 cal = TextCalendar() print(cal.formatyear(year, 2, 1, 8, 3)) Year 2025. #Python #PythonCoding #VSC #calendar

waclaw_koscielniak
Oct 27, 20251 min read


WORDLE SOLUTION FOR OCTOBER 27, 2025
FETID # wordle # game1591 # nytimes # fetid #braincognition Try to solve it today.

waclaw_koscielniak
Oct 27, 20251 min read


HAPPY MONDAY
Keep it Happy. Play some music. #happyday

waclaw_koscielniak
Oct 27, 20251 min read


WORDLE SOLUTION OCTOBER 26, 2025
PLUMP # wordle # game1590 # NYTimes # plump #brainexercise # TracyBennett Try to solve it.

waclaw_koscielniak
Oct 26, 20251 min read


WORDLE SOLUTION FOR OCTOBER 25, 2025
GAUGE # wordle # game1589 # nytimes # gauge #brainactivity Try to solve it.

waclaw_koscielniak
Oct 25, 20251 min read


HAPPY WEEKEND
Enjoy your weekend. #happyday

waclaw_koscielniak
Oct 25, 20251 min read


WORDLE SOLUTION FOR OCTOBER 24, 2025
TUBER # wordle # game1588 # nytimes # tuber #brainactivity Did you solve it?

waclaw_koscielniak
Oct 24, 20251 min read


HAPPY FRIDAY
Keep it Happy. #happyday

waclaw_koscielniak
Oct 24, 20251 min read


HOW TO EAT A BANANA
Must watch - from William Hanson and YouTube. #banana #WilliamHanson #YouTube Really?

waclaw_koscielniak
Oct 23, 20251 min read


PYTHON CODING
from collections import deque dq = deque([10, 21, 34, 46]) dq.append(57) dq.appendleft(1) print(dq[0], dq[-1]) [Running] python3 -u "/Users/name/test/test937.py" 1 57 [Done] exited with code=0 in 0.051 seconds #Python #PythonCoding #VSC Try to run it.

waclaw_koscielniak
Oct 23, 20251 min read


WORDLE SOLUTION OCTOBER 23, 2025
DRILL # wordle # game1587 # nytimes # drill #BrainExercise Try to solve it.

waclaw_koscielniak
Oct 23, 20251 min read


SMALL DRONE FROM CHINA
Small drone - from Facebook. Everything is AI; the audio is distorted, not a human voice. #smalldrone #drone #spying #China True or false?

waclaw_koscielniak
Oct 23, 20251 min read


HAPPY THURSDAY
Charge your life but not with this one. #happyday

waclaw_koscielniak
Oct 23, 20251 min read


PYTHON CODING
import speedtest def check_speed(): st = speedtest.Speedtest() st.get_best_server() download_speed = st.download() / 1000000 upload_speed = st.upload() / 1000000 print(f"Download Speed: {download_speed: .2f} MBps") print(f"Upload Speed: {upload_speed: .2f} MBps") check_speed() [Running] python3 -u "/Users/name/test/test847.py" Download Speed: 138.91 MBps Upload Speed: 60.06 MBps [Done] exited with code=0 in 25.254 seconds #Python #PythonCoding #VSC Determine your spee

waclaw_koscielniak
Oct 22, 20251 min read


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 22, 20251 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 22, 20251 min read


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

waclaw_koscielniak
Oct 22, 20251 min read
bottom of page