Posts

  🟢 How to Host a Free 24/7 Minecraft Server With a Free Domain Most people think you need to pay for Minecraft hosting to get a 24/7 online server with a clean domain like play.server.net . But here’s a secret trick only a few know — you can do it 100% free using your own PC + Freehostia domains. 🔥 Step 1: Run Your Minecraft Server Locally Download Minecraft server software (Paper, Spigot, Vanilla, etc.).(purpur recommended) make a folder for that server u can add your server files like  run it with something Run it on your PC. Disable sleep and hibernate so your PC never shuts off in the background. Press your PC’s power button once to turn off only the display — server keeps running silently. Optional: Create a new Windows desktop → one desktop for server, one for your personal use. Now your PC = your free host. 🔥 Step 2: Open the Server to the Internet Log in to your router. Create a new Port Forwarding Rule : Port: 25565 Protocol: TCP/UDP Destination: Your PC’s loc...

The Infinite illusion theory

  📄 The Infinity Illusion Theorem Author: Mehdi Ali (Class 5) Abstract This paper argues that numbers are illusions and that no constant such as “2” exists in reality. All numbers collapse into infinity, and every attempt to move from one point to another dissolves into infinite sub-steps. The result is consistent with both mathematics and philosophical reflection: dunya is an illusion, and only infinity (and the hereafter) represent reality. 1. Core Definition Let x n = 1 + 1 n , n > 1 xₙ = 1 + \frac{1}{n}, \quad n > 1 x n ​ = 1 + n 1 ​ , n > 1 This defines a sequence that appears to approach 2 but never reaches it. 2. Limit Collapse lim ⁡ n → ∞ ( 1 + 1 n ) = 1 \lim_{n → ∞} \left(1 + \frac{1}{n}\right) = 1 n → ∞ lim ​ ( 1 + n 1 ​ ) = 1 ∴ The value 2 does not exist in reality, since it would require n = 1 n = 1 n = 1 , which is forbidden. 3. Infinite Decimal Illusion 1.000 … 0001       →       1 1.000…0001 \;\; → \;\; 1 1.000 … 0001 → 1 Any attempt to...

Sora is here

🎬 Sora is Here: ChatGPT Now Supports AI Video Generation! Sora, a groundbreaking tool developed by OpenAI, is revolutionizing the way we think about AI and video content creation. Gone are the days when you needed a team of filmmakers or complicated software to create videos. With just a few words, Sora  turns your text prompts into fully animated videos, enabling users to produce professional-quality visuals. 🎥✨ The rise of text-to-image technology through models like DALL·E  has already shown the power of AI in the visual space. Now, Sora takes it one step further by adding motion and storytelling to the equation. You can generate everything from cinematic sequences to animated clips, all based on a simple prompt. 🌍📹 But what exactly is Sora? Sora  is a text-to-video AI model that uses deep learning to understand your written descriptions and create a corresponding video. It works by breaking down your prompt into a series of actions, objects, and e...

PY CHARM ROASTED

 💀 PyCharm vs. Py-Hurts-My-Arm Pro – The Ultimate BBQ ☠️🔥 () 🥩 PyCharm: "Install Python first." 🔥 Py-Hurts-My-Arm Pro: "Nah, I run Python without Python. Stay confused." 💰 PyCharm: "Pay for Pro features." 🔥 Py-Hurts-My-Arm Pro: "Pro is FREE. Cry about it." 🐌 PyCharm: "Indexing... still indexing..." 🔥 Py-Hurts-My-Arm Pro: "Bro, I’m already running your code." 💥 PyCharm: "Error: High CPU usage!" 🔥 Py-Hurts-My-Arm Pro: "My CPU usage is lower than your grades." ⚠️ PyCharm: "Trial expired. Buy a license!" 🔥 Py-Hurts-My-Arm Pro: "What’s a trial? We just code." Py hurts my arm pro is ready but it is coming in the internet on 9March 2025 !!!!!!!!!!!!!!!!!

Guys it is not a lie

Mahdi Ali the youngest dev  Mahdi Ali is the youngest dev in the entire universe he is a html and python developor he lives in Pakistan he is 8 years old and he has made couple of websites. He has Py hurts My arm the light weight and easy python ide that has a python repl that also runs without python 🤯🤯🤯 and a builtin python gui compiler. And the app is made in python and tkinter,tkcode pure And he is Me I am Mahdi Realy check my about me

OpenAi 💀💀

Image
O p e n A I   JOKES 💀💀☠️

PY HURTS MY ARM?

  New Python Code Editor PY-HURTS-MY-ARM  sorry but the folder is too big . 85MBs I name it Py-Hurts-My-Arm becuase i dont like pycharm it is too complex. i want to make apps that haven't complexity easy to use the gui not too hard for learning so How to download: go to  here select the version go to assets and select pyhurtsmyarm.zip  then after download extract all  right click on init.ps1 and click run with powershell now it is done!!!!!!!!   NOTE: it is a light weight python code editor no multi file editing no errors detecting no auto suggestion no auto-indent DOCUMENTATION:       docs          

Python try Statments

How to Use try , except , and finally in Python (With a Little Humor) So, you’ve written some Python code and suddenly... BAM! An error crashes your program. Don’t panic! This is where try , except , and finally come in to save the day. 1. The try Block – "I’ll Try, but I Can’t Promise Anything!" The try block is where you place the code that might break (but you hope it doesn’t). You’re saying, “Hey Python, I’ll give this a try, but I’m not sure it’ll work!” try: # I'm trying to divide by zero. What could go wrong? 😅 result = 10 / 0 print(result) 2. The except Block – "Okay, That Didn’t Work, But Let’s Handle It!" When things go wrong in the try block, Python will raise an error. This is where the except block steps in like a superhero. except ZeroDivisionError: print("Oops! You can't divide by zero, silly!") 3. The finally Block – "No Matter What, I’ll Be There!" Now, even if something breaks, the...

MenuBars in py

 MenuBars In Python Example: 

Tkcode Magic

TKCODE Tutorial Type in your terminal: Example:

New Year Quiz- 2025

Loading…

Python tkinter trick

This trick allows you to link a label's text directly to a variable, so the label updates automatically whenever the variable changes. Example: Dynamic Label with StringVar import tkinter as tk # Create the main window root = tk.Tk() root.title("Dynamic Label with StringVar") # Create a StringVar to hold the label's text dynamic_text = tk.StringVar() dynamic_text.set("Hello, Tkinter!") # Create a label that uses StringVar label = tk.Label(root, textvariable=dynamic_text, font=("Arial", 16)) label.pack(pady=20) # Function to update the label's text def update_text(): current_text = dynamic_text.get() dynamic_text.set(f"{current_text} 🎉") # Create a button to trigger the text update button = tk.Button(root, text="Update Text", command=update_text) button.pack(pady=10) # Run the application root.mainloop()

Daily quiz#1

Loading…

Python tabs using tkinter

Python TTK Tabs Tutorial In this tutorial, we’ll learn how to create tabs in Python using the ttk.Notebook widget from the tkinter library. Tabs are a great way to organize content in your GUI applications. Code Example # Import tkinter and ttk import tkinter as tk from tkinter import ttk # Create the main window root = tk.Tk() root.title("Bonedev Python TTK Tabs Example") # Create a Notebook widget (Tab container) notebook = ttk.Notebook(root) # Create two frames that will hold content for each tab frame1 = ttk.Frame(notebook) frame2 = ttk.Frame(notebook) # Add frames as tabs to the notebook notebook.add(frame1, text="Tab 1") notebook.add(frame2, text="Tab 2") # Add content to Tab 1 label1 = ttk.Label(frame1, text="This is the content of Tab 1.") label1.pack(padx=20, pady=20) # Add content to Tab 2 label2 = ttk.Label(frame2, text="This is the content of Tab 2.") label2.pack(padx=20, pady=20) # Pack the...

FUNCTIONS IN PYTHON

 Functions in python Functions are used for call something while coding  like your own code line follow Python def text (text): print (text) text( "sample" ) Light/Dark M Copy

Conditions in js(JAVASCRIPT)

  Conditions in js conditions are if then else else if  like a copy of events TO DO THIS:- JavaScript let variable = 2 // The real if sample if ( variable + 2 = 5 ) { console.log ( "false" ) } else { console.log ( "true" ) } Light/Dark M Copy

CREATING TABLES IN HTML

 -:HOW TO CREATE TABLES IN HTML     :- how to create tables in html to create follow me. TYPE:-      HTML Table Example <table> <tr> <th> Column #1 </th> <th> Column #2 </th> </tr> <tr> <td> Row #1 </td> <td> Row #2 </td> </tr> <!-- YOU CAN ADD MANY COLUMNS AND ROWS YOU LIKE --> </table> Light/Dark Mode Copy result= Collumn#1 collumn#2 row#1 row#2

JOKE#2

A JOKE How to make YouTube in html.  Simple  Type  <iframe src=" https://www.youtube.com " />

Tip idea

Blog post request Loading…

A TIP#3

Image
Using Figure and Figcaption in HTML Below is an example of how to use the <figure> and <figcaption> elements to properly structure images and their captions: This is the caption for the image. Using these elements enhances accessibility and provides better context for your images! the code HTML Figure Example <figure> <img src = "example.jpg" alt = "Description of the image" width = 400 /> <figcaption> This is the caption for the image. </figcaption> </figure> Light/D Copy