an old saying i found trying to read Assembly mtsmm
"There are three reasons for using assembly language: speed, speed, and more speed" π tho it takes too long to understand it lol
"There are three reasons for using assembly language: speed, speed, and more speed" π tho it takes too long to understand it lol
#ααα«α_α¨αα_αα
If you don't understand this code α α°αα₯ αα
let fasting = false;
const startDate = new Date();
startDate.setHours(0, 0, 0, 0); //(12:00 AM)
const endDate = new Date("2025-04-04T03:00:00");
const durationInMilliseconds = endDate - startDate;
fasting = true;
console.log("αα/fasting started.");
// setTimeout to handle the end of the fasting period
setTimeout(() => {
fasting = false; // Set fasting to false after 55 days
console.log("α΅ααα α© α²α α¨αα³α α°αααΆ α°αα΅α·α"); // Log the message
console.log("αα/fasting ended.");
}, durationInMilliseconds);
π2
Forwarded from Sanyi
Media is too big
VIEW IN TELEGRAM
Just finished building YScroll, been working on this project for months and itβs finally done π
Hoping to launch soon, got my Google Play developer account ready
would appriciate your feedback
@thesanyi
Hoping to launch soon, got my Google Play developer account ready
would appriciate your feedback
@thesanyi
Melkam Ye Ramaddan Tsom too πβ¨
Ramadan Mubarak everyone π€π
Ramadan Mubarak everyone π€π
β€3
Last week mightβve been my least productive one ever π
This Asteroid game was made by one of my friends using Python π
That 2 minutes? Just me playing it after running
π¨βπ» Dev: eyuAtske
π¦ Repo: Repository link here
This Asteroid game was made by one of my friends using Python π
That 2 minutes? Just me playing it after running
python3 main.py πππ¨βπ» Dev: eyuAtske
π¦ Repo: Repository link here
Forwarded from Solo codes (Brook Solomon)
Run clear after every command on terminal-aholic
a = [1, 2, 3]
b = a
c = a.copy()
a.append(4)
b.append(5)
c.append(6)
print(a, b, c)
What's the output of the above code?
Anonymous Quiz
44%
[1,2,3,4,5] [1,2,3,4,5] [1,2,3,6]
5%
[1,2,3,4,5] [1,2,3,5] [1,2,3,6]
46%
[1,2,3,4] [1,2,3,5] [1,2,3,6]
5%
Error