-HTML editor improved.
-Added a python editor. (Beta)
-Bugs fixed.
-Improved UI and mobile control.
-Website overhaul.
-More projects and websites are coming soon!
The rise of coding in our world today is less about a tech trend and more about a new way for people to understand the world. There was a time when programming seemed like a secret skill practiced only by a few people in quiet offices. Now, that has changed. We have reached a point where understanding how a computer works is as important as knowing how to read or do basic math. It is no longer a special skill for just a few; it is the foundation for almost everything we do, from how we get our news to how we take care of our health.
This change has altered what it means to do a job well. In the past, a scientist used a microscope and a writer used a pen, but now, both are likely to use computer programs to organize their data or their stories. The tools have become much easier for everyone to use. With better apps and the help of smart software, the difficult parts of typing in code have been replaced by a focus on solving problems. This does not mean that people are less important. Instead, as machines get better at the repetitive parts of the work, people are free to be the builders and the thinkers who decide what to create and why it matters.
Knowing even a little bit about code gives you more control over your life. In a world full of apps and websites, the people who understand how they work are the ones who can really help shape the future. Learning about code in recent years is about learning how to look at a big problem and break it into small, manageable pieces. It is a move from just watching the digital world happen to actually being one of the people who helps lead the way.
3/19/2026
A good way to personalize any desk setup is with a nametag.
This nametag is going to blink your name in morse code.
For this project we are going to use a raspberry Pi Pico 2. You can find them in places like: microcenter, PIShop, ect.
You will need to prepare the pico by downloading a few files to get it running. Many of which can be found easly online.
Now you will need to download software called "thonny". Open it up and connect to your pico.
Now imput the code.
import machine import time # Setup the LED led = machine.Pin("LED", machine.Pin.OUT) # Timing (in seconds) dot_duration = 0.2 dash_duration = dot_duration * 3 pause_between_elements = dot_duration pause_between_letters = dot_duration * 3 pause_between_loops = 2.0 # Morse Code Dictionary for "LOGART" # L: .-.. O: --- G: --. A: .- R: .-. T: - morse_code = { 'L': [0, 1, 0, 0], 'O': [1, 1, 1], 'G': [1, 1, 0], 'A': [0, 1], 'R': [0, 1, 0], 'T': [1] } word = "LOGART" def blink_element(is_dash): led.value(1) time.sleep(dash_duration if is_dash else dot_duration) led.value(0) time.sleep(pause_between_elements) print("Broadcasting: LOGART") while True: for letter in word: print("Blinking letter:", letter) elements = morse_code[letter] for element in elements: blink_element(element) # 0 for dot, 1 for dash time.sleep(pause_between_letters - pause_between_elements) # Adjust for the pause already in blink_element print("Loop finished. Waiting...") time.sleep(pause_between_loops)
Make sure to imput YOUR name instead of Logarts.
Html is a very easy to learn language!
A good way to start is by using the provided HTML editor in The Gart Palace.
Creating a simple webiste starts with using <H1>.
After typing the text you want to appear you can then type </H1> to close the coding line!
Now you can do the same with <p> to make text.
Now there is way more to learn then that. You can find tutorials on youtube and on the provided articles to learn how to code!
The Gart Palace contains Many diffrent things.
Coding tutorials, coding websites and projects, and diffrent online and technology based media can be found here.
Its all still a work in progress with many features coming soon.
He scratched his chair on his desk and it left a mark.