#voice-chat-text-0
1 messages ยท Page 217 of 1
in a sense of the system not being able to reason about itself fully
I would speak in binary based on ASCII but I'm too tired for that
Yeah ๐
Bro chill. You gotta wait until I wanna do that
weird classes of statements:
unprovable but true
either true or false (independent)
Ok
The Collatz conjecture is one of the most famous unsolved problems in mathematics. The conjecture asks whether repeating two simple arithmetic operations will eventually transform every positive integer into 1. It concerns sequences of integers in which each term is obtained from the previous term as follows: if the previous term is even, the ne...
disprove it rather or demonstrate it good enough
proving it would require checking all numbers
Does a equal something?
"indeed, 7 doesn't seem to be a cross product of any set with 4"
since, in ZFC, size of 7 is 7, size of 4 is 4 and size of a cross product of sets is product of sizes
I'm happy to call you a friend
The incompeleteness theorems are fake, they are not true of all theorems
Hemlock I've been here since september
in some systems, yes, they don't apply
So are we not friends?
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
A theory is a theorem of theories that theorize that a theory exists. Prove me wrong XD
i will believe it's true when someone proves it without using the fixed point lemma
simple (first-order? or whatever it's called) logic is, like, too simple for those
or without using the halting problem
No 9 lives
Let him cook
currently the claim of IC is that it applies to RE-systems, which is what is proposterous
for those that are watching for a while: what is he making/cooking?
I said Let him cook
A piano is just physical programming
I don't like spam
Spam to me, tasted like spoiled sausage with vinegar
I would spray it heavily with BBQ sauce or ketchup
XD
but that still gets covered by being unable to prove consistency in terms of the system,
since it doesn't even provide tools to describe theorems
(statements about predicates (and other statements) don't exist there as a concept)
"if you have stable storage, you don't need backups"
(said by Joe Armstrong, and I'm not sure how much of that was a joke)
WCF?
@rugged root there's a more boring superhero, if you read his books
"war and peace" man
actually a good book, but memed to be dull
i got mushroom soup here for 2
come n eat
Hi
What are you guys doing
Ah i see
Well for you Hemlock you should try Portal Reloaded its portal with a 3th portal a Time Portal
if u have free time at least
And Portal stories mel (Story i think between portal 1 and 2(Not sure anymore))
Yes
It is Realy well made
It has his own little story with voicelines like a portal i just love it
and the 3th portal gives you much to think
You have to know where you place your portal
And when
One thing what i dont quit get is What is an API
Think of it as a menu at a restaurant
They present you with a selection of options they offer
a way for programs to interact with other programs or websites
but what defines it when or what has a code to be that its considert an api
But what is the way what has the code to look like
Like Socket?
That part i get
the part i dont get what the communication looks like
Ah I getcha
i wait
from gui.gui_config import Styles as st
from gui.gui_config import Styles as st
grandma food
wait @earnest crag how does your config works i cant imagin how i would get configs out of a py file
i see
So this is going to be a super simple example, Al. By that I mean I'll expect you to ask questions since it's going to be kind of loose
How can u use it like example tkinter textcolor=text().color or what
import requests
response = requests.get('https://api.github.com/events')
print(response.text)
So REST API's use call and response. In this case, I'm telling it to GET the text or whatever it's going to send me from the /events endpoint
I see? Like programm says get me that html
Yep. But there's more than just GET
def sum(x,y)
return x + y
But how would stuff like this look on the API side
Ah, let me get the FastAPI docs for a good example of that
More or less, it's going to have functions that are tied to particular end points (like /events) and request types.
from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Union[str, None] = None):
return {"item_id": item_id, "q": q}
I see
So if i want to talk with a other PC I could use that to talk to each other?
So long as they can see each other on a network and can communicate, pretty much
okay okay
BUT
What is async?
like a thread?
APIs are more than just the REST style, so you're computer is constantly communicating through APIs that aren't the GET requests and what have you, but the general idea is always the same: the program sets up how it wants other programs to talk to it and details what it's supposed to give back or do
I like to give the bank example for explaining threading, multiprocessing, and async
Well i have to get something to eat comming back later
import * ๐ข
superior culinary skills
!d list
class list([iterable])```
Lists may be constructed in several ways:
โข Using a pair of square brackets to denote the empty list: `[]`
โข Using square brackets, separating items with commas: `[a]`, `[a, b, c]`
โข Using a list comprehension: `[x for x in iterable]`
โข Using the type constructor: `list()` or `list(iterable)`...
Yeah, this is going to take me a hot minute to find this
this is nuts, why you don't use a paste service? https://pastebin.com/ ; https://gist.github.com/ ; etc
@earnest crag also give us an output of tree in the CLI so we can see what your folder structure looks like.
tree -d because we don't know what your folder structure is like.
I have no idea if this is all of it, still trying to dissect it. So I ended up finding it by looking for cpython list implementation, which lead me to a stackoverflow article that linked to where these parts are in the CPython repo.
But for an actually helpful explanation, #internals-and-peps might be able to explain it better
i am uploading a folder(inside it ....contains 3 files and 1 folder ....i already did git init and git add . for tracking and stagging of that file and folder
but when i upload that folder (which conatins 3 files and 1 folder) then only that parent folder uploads on github inside contents did not upload there
how can i sortout this?
anyone
Should Utils be a folder or a module 


curl ifconfig.me
SQL String: INSERT INTO data (test) VALUES (?) ('ABA',)
Error: sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 0 supplied.
Traceback (most recent call last):
File "C:\Users\Dark\PycharmProjects\Python\unfinished_project\DataBase\database.py", line 207, in <module>
data.addEntry(table_name, dictur2)
File "C:\Users\Dark\PycharmProjects\Python\unfinished_project\DataBase\database.py", line 52, in addEntry
self.cursor.execute(execute_quarry,)
sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 0 supplied.
add_str = ""
column_values_list = []
for item in values.items():
column_name, column_value = item
add_str += f"{column_name}, "
column_values_list.append(column_value)
question_mark += "?,"
# Removing Not needed "," wich would throw errors
add_str = add_str.removesuffix(", ")
question_mark = question_mark.removesuffix(",")
column_values_list[-1] = column_values_list[-1].removesuffix(", ")
execute_quarry = f"INSERT INTO {table_name} ({add_str}) VALUES ({question_mark})"
value_tuple = tuple(column_values_list)
print(execute_quarry, value_tuple)
self.cursor.execute(execute_quarry,)
self.connection.commit()
self.cursor.execute("INSERT INTO ? (?) VALUES (?)", (table_name, add_str, question_mark))
con = sqlite3.connect(":memory:")
cur = con.execute("CREATE TABLE lang(name, first_appeared)")
# This is the named style used with executemany():
data = (
{"name": "C", "year": 1972},
{"name": "Fortran", "year": 1957},
{"name": "Python", "year": 1991},
{"name": "Go", "year": 2009},
)
cur.executemany("INSERT INTO lang VALUES(:name, :year)", data)
# This is the qmark style used in a SELECT query:
params = (1972,)
cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params)
print(cur.fetchall())
class Point:
def __init__(self, x, y):
self.x, self.y = x, y
def __conform__(self, protocol):
if protocol is sqlite3.PrepareProtocol:
return f"{self.x};{self.y}"
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.execute("SELECT ?", (Point(4.0, -3.2),))
print(cur.fetchone()[0])
!pep 246
for item in values.items():
column_name, column_value = item
self.cursor.execute("INSERT INTO ? (?) VALUES (?)", (table_name, column_name, column_value))
self.connection.commit()
@wind raptor Are you having only one author per book?
Or can a singular book have multiple authors
!stream 465123434322722817
โ @austere linden can now stream until <t:1700078151:f>.
WHERE time = ? AND date = ? AND person = ? AND personLiked = ?
Can i make it flexible?
@wind raptor Dumb question, in the ERD, what does -|-|--- mean when it's part of the relationship arrow?
Like on the publisher side of the link from publisher to book
one and only one
def get_datasets():
"""Load MNIST train and test datasets into memory."""
ds_builder = tfds.builder("mnist")
ds_builder.download_and_prepare()
train_ds = tfds.as_numpy(ds_builder.as_dataset(split="train", batch_size=-1))
test_ds = tfds.as_numpy(ds_builder.as_dataset(split="test", batch_size=-1))
train_ds["image"] = jnp.float32(train_ds["image"]) / 255.0
test_ds["image"] = jnp.float32(test_ds["image"]) / 255.0
return train_ds, test_ds
@austere linden
Gotcha
@quick cloak
Varient Auto Encoder
Diffusion Model
Normalising Flows
train_ds, test_ds = get_datasets()
train_ds_size = len(train_ds["image"])
steps_per_epoch = train_ds_size // batch_size
perms = np.permutation(len(train_ds["image"]))
perms = perms[: steps_per_epoch * batch_size] # skip incomplete batch
perms = perms.reshape((steps_per_epoch, batch_size))
for perm in perms:
batch_images = train_ds["image"][perm, ...]
batch_labels = train_ds["label"][perm, ...]
# call training step here
@austere linden
with open("path/to/file", "r") as f:
file = f.read()
!kindling @faint ermine
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
Help
des gens bon en codage pour une questio ?
mon code d'erreur : [H[JTraceback (most recent call last):
File "main.py", line 89, in <module>
Console().ui()
File "main.py", line 17, in ui
print(center(f"""\n\n
File "main.py", line 10, in center
space = (os.get_terminal_size().columns - len(var.splitlines()[int(len(var.splitlines())/2)])) / 2
OSError: [Errno 25] Not a tty
os.get_terminal_size(fd=STDOUT_FILENO, /)```
Return the size of the terminal window as `(columns, lines)`, tuple of type [`terminal_size`](https://docs.python.org/3/library/os.html#os.terminal_size).
The optional argument `fd` (default `STDOUT_FILENO`, or standard output) specifies which file descriptor should be queried.
If the file descriptor is not connected to a terminal, an [`OSError`](https://docs.python.org/3/library/exceptions.html#OSError) is raised.
[`shutil.get_terminal_size()`](https://docs.python.org/3/library/shutil.html#shutil.get_terminal_size) is the high-level function which should normally be used, `os.get_terminal_size` is the low-level implementation.
[Availability](https://docs.python.org/3/library/intro.html#availability): Unix, Windows.
"If the file descriptor is not connected to a terminal, an OSError is raised."
try this
import os
def center(var):
try:
if os.isatty(1): # Check if stdout is a terminal
space = (os.get_terminal_size().columns - len(var.splitlines()[int(len(var.splitlines())/2)])) / 2
return ' ' * int(space) + var
else:
# Handle non-terminal environment (e.g., when running in an IDE)
return var
except OSError as e:
# Handle the OSError (e.g., print an error message)
print(f"Error: {e}")
return var
def ui():
# Your UI code here
# ...
Call the ui function
Console().ui()
hey there @somber heath sorry about the voice call. Don't have the voice permissions yet 
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@minor sage https://glpi-project.org/
!stream 372380672641335296
โ @minor sage can now stream until <t:1700095769:f>.
A (bad) example of a flag
while True:
my_flag = False
# loop that does nothing
while True:
x = "1"
if x == "1":
my_flag = True
break
else:
print("It was not 1")
# if the flag is true, break out of the outer loop
if my_flag:
break
@flint hill
i appreciate you say it's a bad example 
I offically have an LLC ladies and gents!!!!!!
!e python a = "" if not a: print("Its null")
@amber raptor :warning: Your 3.12 eval job has completed with return code 0.
[No output]
!e python a = "" if not a: print("Null")
@amber raptor :white_check_mark: Your 3.12 eval job has completed with return code 0.
Null
I need 3 volunteers please DM me for application testing
no thanks
@queen basin ๐
so can I stream
!code
@nova minnow ๐
thankyou ๐
!voice ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@queen basin Could you please post the link again?
ok bro wait
145?
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@bitter osprey ๐
Hey @silent latch ๐
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
you need 3 days and 90 messages
50 messages
oh, right
i hate this life
It has to be there or there would just be people coming in and screaming things into VC
It's to strongly prevent that kind of toxicity and it works really well
Hi @brisk bridge
hi
How are you doing @reef badger ?
how are u guys?
is it bouncing off the planet?
I'm doing well. Just working on a DB assignment for school
What are you making in Svelte?
nah, that's just the path, I mean the graphics look terrible, the lines aren't anti-aliased, they're pixely
you probably just need more resolution so you can shrink the pixels down more
a notes app, wana see?
or is that the smallest is will go?
Sure ๐
Let's go! That's looking great!
Awesome job. Love the palette choices.
Looks really clean
i made a game in 3 days
who wants to try the game
was learning designing through it
Nice. Design isn't as easy as some make it look ๐
i just don't like to work with nosql dbs
Nice. What kind of game is it?
Fair. Usually you just use an ORM that handles everything with them though
i already installed the mongodb module for auth.js, so i thought its good not to install mongoose to increase bundle size
i using ts interfaces for models
a player needs to avoid collisions and its really hard
btw which lang you using for making game?
Yeah, I usually just use mongoose and take the 2MB hit
lol
pynthon
i have started loving svelte, idk why
Nice sounds fun. send it over
some blogs made me against react , lol
I haven't used it yet but heard it is amazing
React is a mess lol. I use it but only because it's industry standard
i student, no boss
Thanks for sharing your project
ty you also
should I send you the code here or in private?
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
thanks alot
๐
over 100 steps away
E:\bot_vanity\main.js:41
bot.navigate.to(target.position);
^
TypeError: Cannot read properties of undefined (reading 'position')
at EventEmitter.<anonymous> (E:\bot_vanity\main.js:41:28)
at EventEmitter.emit (node:events:514:28)
at EventEmitter.<anonymous> (E:\bot_vanity\node_modules\mineflayer\lib\plugins\chat.js:85:13)
at EventEmitter.emit (node:events:514:28)
at Client.<anonymous> (E:\bot_vanity\node_modules\mineflayer\lib\plugins\chat.js:130:9)
at Client.emit (node:events:514:28)
at Client.<anonymous> (E:\bot_vanity\node_modules\minecraft-protocol\src\client\chat.js:199:14)
at Client.emit (node:events:514:28)
at emitPacket (E:\bot_vanity\node_modules\minecraft-protocol\src\client.js:83:12)
at FullPacketParser.<anonymous> (E:\bot_vanity\node_modules\minecraft-protocol\src\client.js:107:9)
Back in a sec
@vivid palm Suuuuup
@vocal peak Yo
You've got to try this! Stitch Fix is the personal styling service for men & women that sends handpicked clothing to your door (with free shipping & returns!). Get started now.
@tough osprey Yo
Slow day today
I'm Administrative Support at an accounting firm, but my main job lately has been IT
oh nice
i am just a student
college 2nd year
computer science
yeap
oh nice
nice meeting you
gotta go now
bye
@hushed nymph Yo
WHY
WHY
WHY
|
HOW TO FIX
@rugged root
@obsidian dragon
@turbid sandal
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Check waht?
โ No Access
Calm down
deadline at friday

We are not Python help here. Try a help channel.
const mineflayer = require('mineflayer');
const botArgs = {
host: 'localhost',
port: '12345',
username: "Hello_world",
version: '1.8.9'
};
const initBot = () => {
// Setup bot connection
let bot = mineflayer.createBot(botArgs);
bot.on('login', () => {
let botSocket = bot._client.socket;
console.log(`Logged in to ${botSocket.server ? botSocket.server : botSocket._host}`);
});
bot.on('end', () => {
console.log(`Disconnected`);
// Attempt to reconnect
setTimeout(initBot, 5000);
});
bot.on('spawn', async () => {
console.log("Spawned in");
bot.chat("Hello!");
await bot.waitForTicks(60);
bot.chat("Goodbye");
bot.quit();
});
bot.on('error', (err) => {
if (err.code === 'ECONNREFUSED') {
console.log(`Failed to connect to ${err.address}:${err.port}`)
}
else {
console.log(`Unhandled error: ${err}`);
}
});
};
initBot();
Can i send an file
through the
web
Yes it is a thing you can do.
I mean like what is the issue you're specifically having
I mean this seems like a keylogger or some kind of info scraper
Yes yes
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
Noki
likely not
Fuck.
Please do not ask for assitance with these kinds of projects on this server
Okay okay sorry guys
don't talk about fight club, nor ytdl
My mistake
All good
@wind raptor How was the library thing?
It was good. My son loved it.
!voice @flat citrus
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Ah
I doubt i can get that atm hahah
Unfortunate
I was going to ask if any of you had experience with Apache Spark
I do not. Sorry.
do you guys watch cricket world cup
yeah
you know india vs new zealand world cup final is on 19th November
haha yes
are you gonna watch it
are you guys working or you guys code for fun
ohh
what is your current project
cries in Logical Increments
one of the sites of all time
It is awesome ๐
I remember making a new configuration every day in 2021 for my dream tower lol
good times
It's why they call them chips
@tawdry gorge Yo
@amber raptor We're trying to recreate you
But we think it might be too nice
and 97.6% with a pentablet
make circle fast
I think it penalises less at faster speeds
ye
Heavy-duty lubricant has thousands of uses. Loosen rusted parts, free sticky mechanisms and drive out moisture. Clean grease, grime and other marks from most surfacesโeven remove stickers and adhesives. Protect metal from moisture and corrosive elements. Application: Gears; Hinges; Moving Parts; ...
1,000 pounds of twerk
playing 2048 on a faulty (double-clicking) keyboard is truly an experience
playing on a faulty (doule-clicking) keyboard is truly an experience
Das me, forgetful
scallopodes
love how his eyes cross just the bit
It's so good
what movie is this; is this revenge of the nerds?
I don't remember where this clip is from specifically
Yeah it's that one
Joining the list of movies that would not be made now
It has not aged well
Just a smidge
an itty bit
itty bitty kitty committee
Not sure
:ok_hand: Added itty-bitty-kitty-committee to the names list.
Amazing
love this comic strip
I need some help
Sup
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
Nnnope. Put it on the hatehastebin
Hastebin is a free web-based pastebin service for storing and sharing text and code snippets with anyone. Get started now.
ya
I have all of the z80 instructions and a few custom ones that I'm still working on implementing
I need help with the dataset
found one kaggle
pascals voc 2012
? why is that !
can I alter it !
@robust bone how familiar are you with Python?
new to machine learning concepts !
I've got the training data
and what images do I need to load for labeled and unlabeled data
That's great, and I'm happy for you. However, the question, restated, is about your experience with Python, not Machine Learning concepts.
intermediate !
lol, "ok"
yeah you need to change bruh !
you made me feel low for a bit !
but thanks for responding
bro you laughed at me
as I mentioned that I don't know, and please don't do that again !
don't do !
for god sake does a python programmer always work on image data !
I'm not a Data scientist
who know how to work on image data thats what I want help with
What did i miss???
I was attempting police condescending behavior and attitude
And it's not being received well
I needed some help and @desert wolf laughed at my current knowledge on the problem I'm working on as I'm just a beginner
Can yeah
The appropriate response when followed by laughing is โhaha, yeah, i made a small project myself once but youโll get better for sure.โ To help with the reason for the laugh
@desert wolf @gilded rivet As someone who just came in for today and for the sake of others here. Please just say, I have heard your opinion. It doesnโt mean acceptance. But to end this fighting and aggressiveness.
*no clue what's happening even with the context from text chat*
Dumb time.

!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
sup hemlock
no
Yo sup
@solid perch https://lichess.org/4ZwuCtJW
Join the challenge or watch the game here.

!d match
8.6. The match statement
New in version 3.10.
The match statement is used for pattern matching. Syntax:
match_stmt ::= 'match' subject_expr ":" NEWLINE INDENT case_block+ DEDENT
subject_expr ::= star_named_expression "," star_named_expressions?
| named_expression
case_block ::= 'case' patterns [guard] ":" block
```...
match choice:
case "1":
if coins >= 5:
...
else:
...
...
case _:
print("invalid choice")
match is wonderful
match.. case
preferrably returning
def main_menu():
while True:
user_choice = input()
if user_choice = "1":
do_thing()
else:
break
def do_thing():
main_menu()
(I think this should just be a return)
https://paste.pythondiscord.com/VDIQ#1L143-L143
you can just use what you used in other places
which is this pattern:
while True:
choice = input()
if choice == "exit":
break
you can move prints inside the loop
https://paste.pythondiscord.com/VDIQ#1L92-L94
so you know where you are
like in main_menu
why, windows, why
os.system('')
?
Wait what how
likely cmd
you really should use windows terminal or kitty/alacritty/etc
powershell is affected the same way too
how to embed that in PyCharm?
those aren't shells, they're terminal emulators. pycharm must have its own terminal emulator
yes, and that's affected too
weird
this uses cmd

I am chatgpt
Bdubz?
wow, what happened here?
burned
I see... damn
From a friend of quantibility
I have no idea what quantibility it is
oh
sender of the pictures
i didn't seen
I wonder how the trees didn't get on fire too
(or probably the bus was on fire before being put in this place)
@whole bear Yo
hello
How goes it
me?
Yeah
Bai
numpy.core._exceptions._ArrayMemoryError: Unable to allocate 17.8 GiB for an array with shape (48901, 48901) and data type float64
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "d:\bbbbbbbbbeeeeeeee\python practice.py\newtrail pod.py", line 27, in <module>
U, s, Vt = svd(reduced_data_matrix)
File "C:\Users\Vishal\AppData\Local\Programs\Python\Python310\lib\site-packages\scipy\linalg_decomp_svd.py", line 127, in svd
u, s, v, info = gesXd(a1, compute_uv=compute_uv, lwork=lwork,
TypeError: ArrayMemoryError._init() missing 1 required positional argument: 'dtype'
got this error while working and have no idea what to do about it

Give me one sec
the file contains data of flow images
#data-science-and-ml would know way more than me on this one
lemme drop it there
Test Question:
In wich direction does Lightning goes?
A: From the Clouds to the Earth
B: From the Earth to the Clouds
C: Its instand
D: From Zeus hand
Clever Mr Hemlock
Your right
In fairness I'd read about it before
You also can see it in slowmotion Looks funny
kerala
What would you use if u want to communicate with a local Server (Client to Server / Server to Client)
I agree with german
ZeroMQ
o
รถ = oe
รค = ae
รผ = ue
Grundstรผcksverkehrsgenehmigungszustรคndigkeitsรผbertragungsverordnung
What I'm gonna base my terminal off of LMFAOOOO I even have one in person
Thanks, I will use as my password for my facebook account
Schietschijfschuifje
Real estate transaction authorization transfer of jurisdiction regulation
What?
now you can print "Hello World" as old 80'yr
Hell yeah
Can it run Doom?
yes but it doesn't zoom
but you can make it run
Mirror: Now u have to make it run xd
anyone knows how BASIC works?
oh, easy to learn then
Im going now have fun :D
just the syntax is different
Very simplistic
was good until you said js
timex sinclair - membrane keyboards @minor sage
10 INPUT "What is your name: "; U$
20 PRINT "Hello "; U$
30 INPUT "How many stars do you want: "; N
40 S$ = ""
50 FOR I = 1 TO N
60 S$ = S$ + "*"
70 NEXT I
80 PRINT S$
90 INPUT "Do you want more stars? "; A$
100 IF LEN(A$) = 0 THEN GOTO 90
110 A$ = LEFT$(A$, 1)
120 IF A$ = "Y" OR A$ = "y" THEN GOTO 30
130 PRINT "Goodbye "; U$
140 END
javaified scheme
FOR I = 1 TO 10 STEP 2 very straightforward
what the U$ does?
text variable = U$
the black mould
variable?
oh
before and after cleaning
string
The output to go with it:
What is your name: Mike
Hello Mike
How many stars do you want: 7
*******
Do you want more stars? yes
How many stars do you want: 3
***
Do you want more stars? no
Goodbye Mike
old pic of my cat
dreaming of a C64 cluster array that runs at 1Ghz , hmm @rugged root
alr I'll stop spamming
cute cat
@amber raptor Connection issues?
1980 ๐คฏ
No Discord is being dumb
3.25 and 25mhz was considered the speed of light even to windows 3.11 a few years later.
what does fastapi use?
timex could do same
(for openapi)
I've only seen it generate openapi thing from python code
(server-side)
The following generators are available:
Do I pull the trigger @rugged root
That's so cheap
But think about it if you really would use it or just have it on a shelf
!pypi openapi-python-generator
Load up some MS-DOS 6.22 with Windows 2.1 on two megabytes of DRAM and 512 kB of graphical memory
what type screen rezz @minor sage
That's the one I tried earlier, but it crashed. I think I've read that the spec I'm trying to generate is a bit borked
I believe 2:40x320 I could be incorrect though
And it's not LCD. They're typically plasma screens so they die out over time in their vibrant colors
hmmm old shell - new innards ? @minor sage
looks like their own
https://github.com/tiangolo/fastapi/tree/master/fastapi/openapi
not big (<2K lines)
https://stoplight.io/api/v1/projects/spacetraders/spacetraders/nodes/reference/SpaceTraders.json?fromExportButton=true&snapshotType=http_service&deref=optimizedBundle That's the one I'm trying to generate the client for
Just craps out midway
scary commit prefixes
Unfortunately, to track down new internals for something that age would take an extremely long time. The best you could do would be just generic upgrades like add more RAM or maybe swap the CPU for something. A little newer stuff like this is either in a museum or someone's personal collection. Very rarely. Would you ever come across a replacement screen or motherboard for one of these items
RP4 inside ? @minor sage
harley ronda s 3878
Thomas Scherrer Z80-Family Official Support Page
machine code reference for z80 memory locations
Thatโs a lot of handwatches
What are you doing with these
why u got so many old watches
can you please help me acc i create this you enter inputs the issue is when i test it in code ot works but when i made the user to enter inputs i doesnt work ... @elder knot
Why bro lying
btw
@brittle nebula ๐
๐
๐
I take dares very seriously @somber heath
also
I donate a lot to this server and some of this will go to pareton
i know but he sent me 50 euro
and that is a lot for me
i got 50
sorry man
I know its bad
have some dignity
i have 50 $
get a job
it was just a suggestion ยฏ_(ใ)_/ยฏ
well, based of what i've seen hes not over the age of 12
๐
faking his death even if it was a "dare" is pretty childish
blud probably in hs
Who, me?
no him
i have a really good money idea that me and my friends are gonna do lol
i've made over 40k off of roblox alone
create and host are own video games website and have ads on it
it's not hard making money online
that's not
a
good idea
at all
it will most likely loose you money
how do you make roblox money
multiple methods
for off i've made multiple scripts for it
1.6k members
15$ / 3k robux each whitelist
oh for like blade ball and stuff
i see
The one i've made the most of is a streamable script for dahood
that alone has brought me 7k
is this all in r$?
now that byfron has been introduced, sales are slow
no, usd
is there anyway i could learn to make my own
@whole bear ๐
Wdym
like what do i need to learn or know to make my own scripts
or is it a trade secret
Bad time to start
luau is the key to exploiting
i see
right
yo
Hope you are doing well... I'm not able to turn on mic
coocoo
huh
you asf
huh
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Let's ease up on the meme/gif posts.
crazy
Don't think so
๐
i mean.... he asked nicely
@zinc sinew
12 Views. Watch chat im so gud and millions of other Roblox videos on Medal, the #1 Game Clip Platform.
also i was thinking about hosting it somewhere free first
netlify works great
but its still a terrible idea
lol
oh well anything that can get around go guardian ig
HI
u can do the project if u want
but i wouldnt recommend it
it wouldnt bring in good revenue
can i stream ?
advertisements arent good alone
game ?
there are already many websites like you're making
therefore, the competition is high
thought so lol it's a very saturated market
yeah
there was barely any competition when i started da hood scripting
therefore, i was the most popular of them
and the one with the best features
mmo an mp game scripts are a hot commodity cause there are so few people to make them
i was making it mostly so me and my friends had a way to play browser games without getting blocked since we could just change the name of the url or what have you when ever we need or just clone it etc
whats the point of that
U can just download one of the existing websites
and play it via the index file
thats what i was thinking which is also why im making my own webscraper lol
I LOVE FRONTEND
why make ur own for it
๐
frontend sucks
fun project

https://swatted.lol/ i do backend but made this
frontendK
have anyone play Assaultcube ?
i guess
woops wrong message
ill check it out
ass
nice lol
idk if u can say that
if ur a frontend developer
I LOVE BACKEND ๐ฅน
stick to something real
god
lmk when u realize html and css isnt a real programming language
its a markup language
unmute
I unmuted
UR MOM
your dad
the game is sooo easy and fun for those who can't install
a big games
i mean like if you cant install CS:GO
its like it game but not sooo much like it but cool 10/10 โ
recomended
what?
wrong place for that my guy
btw you can edit the code or the game its open source
like you cando with it what you want with the game
its offline / online TOO ๐
opps
sure
me
what languages do u
know
js html css and python and im starting to learn java
fr
me when js
I wouldn't
right
how good is their anticheat
not cheating based
js developers in general
there are servers u can help dev for
(i dont have the attention span for it, and i dont need more money)
there is no anticheat i think so ?
IDK i have installed that game yesterday ๐
ill see if it's within my skill level
oh
its not
if u dont know anything abt lua


