Wallet of Satoshi. Some troubles revealed

Wallet of Satoshi
App Version 3.3.6 (352), iOS 26.6

This information complements the website information from the WoS official website and I think may be useful to those who also encounter similar problems.
Switch between custodial and self-custodial wallet of Satoshi
The custodial wallet runs with a direct connection with the Belarusian IP address. But the self-custodial wallet only runs via VPN! And I couldn't switch the wallet to non-custodial wallet without VPN.

Custodial Wallet

Switch between custodial and self-custodial wallet of Satoshi without VPN freezes at three-quarters part
Switch between custodial and self-custodial wallet without VPN freezes at three-quarters part.

Self-custodial Wallet

Wallet of Satoshi stuck without VPN at startup during Syncing... at three quarters
Wallet of Satoshi stuck without VPN at startup during Syncing... at three quarters
Wallet of Satoshi gives out the message: A network error occured. Please check your connection.
If the VPN connection is dropped or you disconnect, Wallet of Satoshi gives out the message: "A network error occured. Please check your connection."
The message disappears when the VPN is restored.
Without VPN stuck the Wallet of Satoshi on the Finalizing... at the eleventh of twelve parts of circle
Switching from WoS Custody Wallet to Self-custodial wallet without VPN stuck the app on the Finalizing... at the eleventh of twelve parts of circle.

Pygame 2.6.1. was not installed on Python 3.14.6 (3.14.5)

Pygame logo
Running py -m pip install -U pygame --user to install Pygame the error message occured: Getting requirements to build wheel did not run successfully.
After update to pillow-12.2.0 the Pygame was not install all the same.

pygame 2.6.1 was released: Sept. 29, 2024

Pygame is dead?

TitleBar - Delphi component which adds many features: AutoHide, SetRegion, border width for form, color for everything, good looking borders, ShowInTaskbar, etc.

TitleBar - Delphi component which adds many features
This is a curiosity component demonstrates, what can be made of Delphi forms and control elements.
This is another note for Delphi code modernization trend
Changes in TTitleBar by Valient Newman in an attempt to revive an old project and to make the component meet the requirements of Delphi 6 and higher.
Corrections were tested in Delphi 2007, 2009 environment. Date last modified by Newman: January 30, 2025
Checked in in Delphi 2007, 2009
Updated January 30, 2025

TTitleBar v2.01

TitleBar - Delphi component which adds many features: AutoHide, SetRegion, border width for form, color for everything, good looking borders, ShowInTaskbar, etc.

The components TTitleBar v2.01 is available in My Github Repository

This component can be freely used and distributed in commercial and private environments. Source code is provided free of charge. The software is provided to you “AS-IS”. As such, there is no guarantee of any support whatsoever.


credits to:
Seth Taylor made this component on February 8, 1999 on Delphi 3

Christmas tree on Python on Turtle

Christmas tree on Python on Turtle
# Christmas tree on Python import turtle def line(x1, y1, x2, y2): turtle.penup() turtle.goto(x1, y1) turtle.pendown() turtle.goto(x2, y2) screen = turtle.Screen() screen.title("Christmas Fir tree") screen.setup(500, 500) # To turn the drawing upside down screen.setworldcoordinates(0, screen.window_height(), screen.window_width(), 0) turtle.pencolor('green') line(200,210,220,230) line(220,230,180,230) line(180,230,200,210) line(200,230,230,250) line(230,250,170,250) line(170,250,200,230) line(200,250,250,270) line(250,270,150,270) line(150,270,200,250) line(200,270,270,290) line(270,290,130,290) line(130,290,200,270) line(200,290,290,310) line(290,310,110,310) line(110,310,200,290) turtle.hideturtle() turtle.exitonclick()

This simple code example was intentionally made similar to Christmas tree on Pascal on Android

The Christmas tree on Python on Turtle is available in My Github Repository

Christmas tree on Pascal on Android

Fir Tree on Pascal N-IDE on Android

Fir Tree on Pascal N-IDE on Android

Realized on Pascal N-IDE - Editor Compiler.

Pascal N-IDE - Editor Compiler, Nguyễn Mậu Hiếu, mauhieudev on Google Play

The Christmas tree on Pascal on Android is available in My Github Repository



Fir Tree Code on Pascal N-IDE on Android
program Firtree; uses graph, crt; var g,h: integer; begin g := detect; initgraph(g,h,'EGAVGA.BGI'); setcolor(2); line(200,210,220,230); , line(220,230,180,230); line(180,230,200,210); line(200,230,230,250); line(230,250,170,250); line(170,250,200,230); line(200,250,250,270); line(250,270,150,270); line(150,270,200,250); line(200,270,270,290); line(270,290,130,290); line(130,290,200,270); line(200,290,290,310); line(290,310,110,310); line(110,310,200,290); readln; end.