#voice-chat-text-0

1 messages ยท Page 217 of 1

solid perch
#

10110100

vocal basin
#

in a sense of the system not being able to reason about itself fully

solid perch
#

I would speak in binary based on ASCII but I'm too tired for that

whole bear
#

Yeah ๐Ÿ˜‚

solid perch
vocal basin
#

weird classes of statements:
unprovable but true
either true or false (independent)

whole bear
#

Ok

rugged root
#

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...

vocal basin
#

disprove it rather or demonstrate it good enough

#

proving it would require checking all numbers

solid perch
#

The impossible question. 5+6= A ร— 4 @rugged root Wana math?

#

Lmao

whole bear
#

Does a equal something?

vocal basin
#

"indeed, 7 doesn't seem to be a cross product of any set with 4"

solid perch
#

Am I proof of friendship?

#

I have a license

vocal basin
rugged root
whole bear
#

The incompeleteness theorems are fake, they are not true of all theorems

#

Hemlock I've been here since september

vocal basin
whole bear
#

So are we not friends?

gentle flint
#

!user

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

solid perch
whole bear
vocal basin
whole bear
#

or without using the halting problem

solid perch
#

Make me fud

#

@gentle flint cook for me bro

whole bear
#

No 9 lives

#

Let him cook

#

currently the claim of IC is that it applies to RE-systems, which is what is proposterous

wise loom
#

for those that are watching for a while: what is he making/cooking?

solid perch
#

@gentle flint cook me a burrito bro

#

I'll pay you XD

whole bear
#

I said Let him cook

solid perch
#

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

vocal basin
solid perch
#

I'd like some meat with my salt please

#

Hemlock, whatcha up to?

vocal basin
#

"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?

solid perch
#

Imma head out from the vc

#

See ya!

vocal basin
#

@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

gentle flint
#

come n eat

fading fractal
#

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

rugged root
#

Think of it as a menu at a restaurant

#

They present you with a selection of options they offer

gentle flint
fading fractal
#

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

rugged root
#

Ah I getcha

fading fractal
#

i wait

earnest crag
#

๐Ÿค”

#

gui be a folder

gentle flint
strong arch
rugged root
#
from gui.gui_config import Styles as st
earnest crag
brazen gazelle
earnest crag
#

import gui.gui_main?

fading fractal
#

wait @earnest crag how does your config works i cant imagin how i would get configs out of a py file

earnest crag
fading fractal
#

i see

rugged root
#

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

earnest crag
fading fractal
#

How can u use it like example tkinter textcolor=text().color or what

earnest crag
fading fractal
#

So it is like it

#

Okay thx

earnest crag
#

st. ..

rugged root
#
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

fading fractal
#

I see? Like programm says get me that html

rugged root
#

Yep. But there's more than just GET

earnest crag
#
def sum(x,y)
      return x + y
fading fractal
#

But how would stuff like this look on the API side

rugged root
#

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.

earnest crag
rugged root
#
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}
fading fractal
#

I see

#

So if i want to talk with a other PC I could use that to talk to each other?

rugged root
#

So long as they can see each other on a network and can communicate, pretty much

earnest crag
fading fractal
#

okay okay

rugged root
#

BUT

fading fractal
#

What is async?

earnest crag
fading fractal
#

like a thread?

rugged root
#

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

fading fractal
#

Yeah sadly in python can only use 1 proces

#

s

#

it can?

earnest crag
fading fractal
#

Well i have to get something to eat comming back later

earnest crag
oblique ridge
#

import * ๐Ÿ˜ข

earnest crag
wise loom
rugged root
#

!d list

wise cargoBOT
#

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)`...
earnest crag
rugged root
#

Yeah, this is going to take me a hot minute to find this

earnest crag
wise loom
#

@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.

earnest crag
#

tree -d?

#

where

#

terminal?

gilded rivet
rugged root
#

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.

warm tangle
#

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

earnest crag
#

Should Utils be a folder or a module pithink

rugged root
trim night
fading fractal
#

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()
rugged root
#
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

wise cargoBOT
rugged root
#

Still my favorite database layout tool

fading fractal
#

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()

rugged root
#

@wind raptor Are you having only one author per book?

#

Or can a singular book have multiple authors

earnest crag
#

WHY NO COLORS REE

wind raptor
#

!stream 465123434322722817

wise cargoBOT
#

โœ… @austere linden can now stream until <t:1700078151:f>.

fading fractal
#

WHERE time = ? AND date = ? AND person = ? AND personLiked = ?
Can i make it flexible?

rugged root
#

@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

quick cloak
#
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
rugged root
#

Gotcha

austere linden
#

@quick cloak

Varient Auto Encoder
Diffusion Model
Normalising Flows

quick cloak
#
    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

wind raptor
#
with open("path/to/file", "r") as f:
    file = f.read()
flint hill
#

if yes

#

elof no

#

have user input str
if str is in the list save it
if not go agian

whole bear
#

Yo

#

I have a question

somber heath
#

!kindling @faint ermine

wise cargoBOT
#
Kindling Projects

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.

whole bear
#

Help

#

des gens bon en codage pour une questio ?
mon code d'erreur : Traceback (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

somber heath
#

@limber falcon ๐Ÿ‘‹

#

!d os.get_terminal_size

wise cargoBOT
#

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.
somber heath
#

"If the file descriptor is not connected to a terminal, an OSError is raised."

limber falcon
#

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 lemon_bald

somber heath
#

I wasn't alerted to a voice call.

#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

wise loom
minor sage
desert vector
#

!stream 372380672641335296

wise cargoBOT
#

โœ… @minor sage can now stream until <t:1700095769:f>.

wind raptor
#

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

desert vector
wind raptor
minor sage
#

I offically have an LLC ladies and gents!!!!!!

wet scroll
#

hey opal :P

#

wat

amber raptor
#

!e python a = "" if not a: print("Its null")

wise cargoBOT
#

@amber raptor :warning: Your 3.12 eval job has completed with return code 0.

[No output]
amber raptor
#

!e python a = "" if not a: print("Null")

wise cargoBOT
#

@amber raptor :white_check_mark: Your 3.12 eval job has completed with return code 0.

Null
shy raft
#

hi

#

@whole bear

#

:(

minor sage
#

I need 3 volunteers please DM me for application testing

gentle flint
#

no thanks

warped raft
#

@somber heath hello

#

how are you doin

#

can you help me with js

somber heath
#

@queen basin ๐Ÿ‘‹

queen basin
#

hello

#

๐Ÿ™‚

warped raft
#

so can I stream

queen basin
#

can i private message you?

#

ok

somber heath
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

somber heath
#

@nova minnow ๐Ÿ‘‹

nova minnow
#

no i can't talk

#

i am not verified yet

queen basin
#

thankyou ๐Ÿ™‚

somber heath
wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

somber heath
#

@queen basin Could you please post the link again?

queen basin
#

ok bro wait

somber heath
#

145?

queen basin
#

ok bro ๐Ÿ™‚

#

Appreciate that bro ๐Ÿ™‚

#

i have to go

#

thankyouu so muchhh

regal bolt
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

somber heath
#

@bitter osprey ๐Ÿ‘‹

warped raft
#

i found out the problem

#

and now my code wrks

#

tnks

#

no
i still took help

wind raptor
#

Hey @silent latch ๐Ÿ‘‹

silent latch
#

hey

#

the voice chat dont let me to talk

#

idk why

wind raptor
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

reef badger
#

you need 3 days and 90 messages

wind raptor
#

50 messages

reef badger
#

oh, right

silent latch
#

i hate this life

wind raptor
#

It has to be there or there would just be people coming in and screaming things into VC

silent latch
#

oh

#

ok

wind raptor
#

It's to strongly prevent that kind of toxicity and it works really well

reef badger
#

Hi @brisk bridge

brisk bridge
#

hi

wind raptor
#

How are you doing @reef badger ?

reef badger
#

hey, I'm working on drawing orbits but the lines look bad.

brisk bridge
#

how are u guys?

wind raptor
wind raptor
wind raptor
reef badger
wind raptor
#

you probably just need more resolution so you can shrink the pixels down more

brisk bridge
wind raptor
wind raptor
brisk bridge
wind raptor
#

Let's go! That's looking great!

#

Awesome job. Love the palette choices.

#

Looks really clean

silent latch
#

i made a game in 3 days
who wants to try the game

brisk bridge
#

was learning designing through it

wind raptor
brisk bridge
#

i just don't like to work with nosql dbs

wind raptor
wind raptor
brisk bridge
#

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

silent latch
brisk bridge
wind raptor
#

lol

silent latch
brisk bridge
#

i have started loving svelte, idk why

wind raptor
brisk bridge
#

some blogs made me against react , lol

wind raptor
wind raptor
#

React is a mess lol. I use it but only because it's industry standard

brisk bridge
#

i have made my mind to boycott react and help svelte grow

#

๐Ÿ“ˆ

#

i gtg, bye

wind raptor
#

Try telling that to your boss

#

lol

#

Have a great one

brisk bridge
wind raptor
#

Thanks for sharing your project

brisk bridge
#

ty you also

silent latch
wind raptor
#

is it in a repo?

#

!paste

wise cargoBOT
#
Pasting large amounts of code

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.

rugged root
#

@stark cosmos

#

Those channels might be able to help you out

stark cosmos
#

thanks alot

willow gate
stark cosmos
#

60% 40%

#

70% 30%

#

50% 50%

rugged root
#

Back again, sorry

#

Lots of running around today

obsidian dragon
#

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)

rugged root
#

Back in a sec

obsidian dragon
rugged root
#

@vivid palm Suuuuup

#

@vocal peak Yo

#

@tough osprey Yo

tough osprey
#

yo bro

#

good

#

np

#

night where i am

#

around 9 30

rugged root
#

Slow day today

tough osprey
#

so what are you going to do now

#

oh

#

so you at work

#

what exactly do you do

rugged root
#

I'm Administrative Support at an accounting firm, but my main job lately has been IT

tough osprey
#

oh nice

#

i am just a student

#

college 2nd year

#

computer science

#

yeap

#

oh nice

#

nice meeting you

#

gotta go now

#

bye

rugged root
#

@hushed nymph Yo

hushed nymph
#

WHY

#

WHY

#

HOW TO FIX

#

@rugged root

#

@obsidian dragon

#

@turbid sandal

rugged root
obsidian dragon
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

hushed nymph
#

Check waht?

obsidian dragon
#

โ No Access

hushed nymph
#

Can u help me

#

Fast

#

Another vc

#

or something

#

fast

amber raptor
#

Calm down

hushed nymph
#

deadline at friday

obsidian dragon
hushed nymph
#

i havve

#

How do I properly configure a websocket?

amber raptor
hushed nymph
#

Who know

#

how to work with websocket

#

fast

amber raptor
#

We are not Python help here. Try a help channel.

obsidian dragon
#
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();
hushed nymph
#

through the

#

web

rugged root
#

Yes it is a thing you can do.

obsidian dragon
rugged root
#

I mean like what is the issue you're specifically having

hushed nymph
#

thats not working

#

when i trying to send something in web

#

from Android device

rugged root
#

I mean this seems like a keylogger or some kind of info scraper

rugged root
#

Yeah that's not something we assist with here

#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

hushed nymph
#

pentesting

#

not malware

#

Oki?

rugged root
#

Noki

obsidian dragon
#

likely not

hushed nymph
#

Fuck.

amber raptor
#

And this isnโ€™t Python anyways

#

Android runs Kotlin

rugged root
#

Please do not ask for assitance with these kinds of projects on this server

hushed nymph
#

Okay okay sorry guys

obsidian dragon
hushed nymph
#

My mistake

rugged root
#

All good

rugged root
#

@wind raptor How was the library thing?

wind raptor
#

!voice @flat citrus

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

flat citrus
#

Ah

#

I doubt i can get that atm hahah

#

Unfortunate

#

I was going to ask if any of you had experience with Apache Spark

wind raptor
#

I do not. Sorry.

flat citrus
#

Gotcha, thanks either way

#

๐Ÿ˜„

rugged root
silver smelt
#

hi

#

how are you guys doing

#

are you guys hiring for a python

#

developer

#

ohhk

rugged root
silver smelt
#

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

amber raptor
willow light
#

cries in Logical Increments

desert vector
rugged root
wind raptor
desert vector
#

I remember making a new configuration every day in 2021 for my dream tower lol

#

good times

flint hill
#

make somputer

#

change parts

willow light
#

Buy computer, eat parts

#

tasty silicon

rugged root
#

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

gilded rivet
vocal basin
#

almost

#

how is this even a circle

#

what a difference of .1% is

vocal basin
#

make circle fast

#

I think it penalises less at faster speeds

gentle flint
#

ye

gilded rivet
minor sage
#
gilded rivet
gilded rivet
rugged root
#

1,000 pounds of twerk

vocal basin
#

playing 2048 on a faulty (double-clicking) keyboard is truly an experience

desert vector
#

playing on a faulty (doule-clicking) keyboard is truly an experience

rugged root
rugged root
#

Das me, forgetful

desert vector
#

forgorful

minor sage
#

me when any anime comes on

rugged root
#

Scallopses

#

Delicious

desert vector
#

scallopodes

rugged root
desert vector
#

love how his eyes cross just the bit

rugged root
#

It's so good

desert vector
#

what movie is this; is this revenge of the nerds?
I don't remember where this clip is from specifically

rugged root
#

Yeah it's that one

#

Joining the list of movies that would not be made now

#

It has not aged well

desert vector
#

aged horribly

#

the 80s were a different time sadge

rugged root
#

Just a smidge

desert vector
#

an itty bit

rugged root
#

itty bitty kitty committee

desert vector
#

is that an otn

#

lemme check

rugged root
#

Not sure

desert vector
#

needs to be if it's not

#

it's not

#

!otn a itty bitty kitty committee

wise cargoBOT
#

:ok_hand: Added itty-bitty-kitty-committee to the names list.

rugged root
#

Amazing

desert vector
#

love this comic strip

minor sage
robust bone
#

I need some help

minor sage
rugged root
minor sage
robust bone
#

I want to test this code and know if it runs !

#

cant upload files?

#

here!

rugged root
#

!paste

wise cargoBOT
#
Pasting large amounts of code

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.

desert vector
#

Nnnope. Put it on the hatehastebin

robust bone
desert wolf
robust bone
#

ya

minor sage
#

I have all of the z80 instructions and a few custom ones that I'm still working on implementing

robust bone
#

I need help with the dataset

#

found one kaggle

#

pascals voc 2012

#

? why is that !

#

can I alter it !

desert wolf
#

@robust bone how familiar are you with Python?

robust bone
robust bone
robust bone
#

and what images do I need to load for labeled and unlabeled data

desert wolf
#

That's great, and I'm happy for you. However, the question, restated, is about your experience with Python, not Machine Learning concepts.

desert wolf
#

lol, "ok"

gilded rivet
robust bone
#

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

solid perch
#

What did i miss???

rugged root
#

I was attempting police condescending behavior and attitude

#

And it's not being received well

solid perch
#

Ah

#

You were trying to keep this from happening?

robust bone
#

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

solid perch
#

Ah

#

Yeah that happens with overconfidence and such

rugged root
#

Can yeah

solid perch
#

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.

vocal basin
#

*no clue what's happening even with the context from text chat*

gilded rivet
rugged root
#

!paste

wise cargoBOT
#
Pasting large amounts of code

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.

whole bear
#

sup hemlock

robust bone
#

no

solid perch
whole bear
#

Yo sup

gilded rivet
vocal basin
#

!d match

wise cargoBOT
#

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
```...
vocal basin
whole bear
#

match is wonderful

vocal basin
#

also the code recurses

#

consider returning/raising instead

whole bear
#

match.. case

vocal basin
#

preferrably returning

rugged root
#
def main_menu():
  while True:
    user_choice = input()
    if user_choice = "1":
      do_thing()
    else:
      break

def do_thing():
  main_menu()
vocal basin
#

you can just use what you used in other places

#

which is this pattern:

while True:
    choice = input()
    if choice == "exit":
        break
#

so you know where you are

#

like in main_menu

#

why, windows, why

os.system('')
rugged root
#

?

vocal basin
#

this makes some ansi escape codes work

#

why

#

how

rugged root
#

Wait what how

whole bear
#

aren't the escape codes dealt with by the terminal?

#

are you using cmd.exe?

vocal basin
#

likely cmd

solid perch
whole bear
#

you really should use windows terminal or kitty/alacritty/etc

vocal basin
#

powershell is affected the same way too

vocal basin
rugged root
whole bear
vocal basin
#

yes, and that's affected too

whole bear
#

weird

vocal basin
#

this uses cmd

gilded rivet
vocal basin
#

and this uses powershell

#

by default

#

those are separate

robust bone
#

chatgpt can help you become one

#

ikigai

idle vector
#

I am chatgpt

whole bear
#

Bdubz?

echo garden
peak junco
fading fractal
#

burned

peak junco
#

I see... damn

fading fractal
#

From a friend of quantibility

peak junco
#

I have no idea what quantibility it is

fading fractal
#

The user

#

in this channel

peak junco
#

oh

fading fractal
#

sender of the pictures

peak junco
#

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)

rugged root
#

@whole bear Yo

whole bear
#

hello

idle vector
rugged root
#

How goes it

whole bear
rugged root
#

Yeah

gilded rivet
#

Bai

whole bear
#

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

gilded rivet
whole bear
#

I can't unmute myself

#

;-;

rugged root
#

Give me one sec

whole bear
#

the file contains data of flow images

rugged root
whole bear
fading fractal
#

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

rugged root
#

In fairness I'd read about it before

fading fractal
#

You also can see it in slowmotion Looks funny

idle vector
#

kerala

rugged root
fading fractal
#

What would you use if u want to communicate with a local Server (Client to Server / Server to Client)

peak junco
#

I agree with german

fading fractal
#

Sonne

#

KRankenWagen

#

Eichhรถrnchen

#

รถรครผ

idle vector
#

ea

#

eau

gentle flint
#

Oachkatzlschwoaf

#

@fading fractal

idle vector
#

o

fading fractal
#

รถ = oe
รค = ae
รผ = ue

#

Grundstรผcksverkehrsgenehmigungszustรคndigkeitsรผbertragungsverordnung

minor sage
#

What I'm gonna base my terminal off of LMFAOOOO I even have one in person

peak junco
fading fractal
#

What?

minor sage
peak junco
rugged root
#

Hell yeah

fading fractal
#

Can it run Doom?

gentle flint
#

yes but it doesn't zoom

peak junco
fading fractal
#

Mirror: Now u have to make it run xd

peak junco
#

anyone knows how BASIC works?

gentle flint
#

like any other interpreted language

#

same as python or js

peak junco
#

oh, easy to learn then

fading fractal
#

Im going now have fun :D

gentle flint
#

just the syntax is different

rugged root
#

Very simplistic

peak junco
short owl
#

timex sinclair - membrane keyboards @minor sage

rugged root
#
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
vocal basin
peak junco
#

FOR I = 1 TO 10 STEP 2 very straightforward

gentle flint
short owl
#

text variable = U$

gentle flint
#

the black mould

vocal basin
#

variable?

peak junco
#

oh

gentle flint
#

before and after cleaning

short owl
#

string

rugged root
peak junco
#

and the A$ I assume is for numbers?

#

hmm

gentle flint
#

old pic of my cat

short owl
#

dreaming of a C64 cluster array that runs at 1Ghz , hmm @rugged root

gentle flint
#

alr I'll stop spamming

peak junco
short owl
#

cats are fine

#

timex 1000 + 64 k mem module - value village $5

rugged root
#

@amber raptor Connection issues?

minor sage
#

1980 ๐Ÿคฏ

amber raptor
#

No Discord is being dumb

minor sage
#

3.25 and 25mhz was considered the speed of light even to windows 3.11 a few years later.

short owl
#

evil membrane keyboards

#

some C64 users load / save files via Audacity , wave files

vocal basin
#

what does fastapi use?

short owl
#

timex could do same

vocal basin
#

(for openapi)

#

I've only seen it generate openapi thing from python code

#

(server-side)

uncut meteor
minor sage
#

Do I pull the trigger @rugged root

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

wise cargoBOT
minor sage
#

Load up some MS-DOS 6.22 with Windows 2.1 on two megabytes of DRAM and 512 kB of graphical memory

short owl
#

what type screen rezz @minor sage

rugged root
#

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

minor sage
#

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

short owl
#

hmmm old shell - new innards ? @minor sage

vocal basin
#

not big (<2K lines)

rugged root
#

Just craps out midway

vocal basin
#

scary commit prefixes

rugged root
#

Gitmojis, yeah

#

It's a thing

minor sage
# short owl hmmm old shell - new innards ? <@372380672641335296>

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

short owl
#

RP4 inside ? @minor sage

minor sage
#

the size of my ultrawide lmfao look at it

rugged root
#

I'm stupid, I had the command out of order

#

Flags in the wrong spots

gentle flint
minor sage
gentle flint
rugged root
gentle flint
#

harley ronda s 3878

minor sage
#

machine code reference for z80 memory locations

wise loom
wise loom
whole bear
#

@elder knot yess

#

i dont have the permission to talk anyway

whole bear
#

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

elder knot
#

Mirai, dm me.

#

Super </dev> many condolensences ...

whole bear
#

Why bro lying

whole bear
#

btw

somber heath
#

@brittle nebula ๐Ÿ‘‹

whole bear
#

๐Ÿ‘€

somber heath
#

Also deleted messages.

whole bear
#

He was lying

#

To try to gain sympathy

turbid sandal
#

nope it was a dare

#

from mr zoom

#

a friend

whole bear
#

๐Ÿ‘€

hushed nymph
#

Guys

#

Who can help me with websocket

turbid sandal
#

I take dares very seriously @somber heath

hushed nymph
#

See this?

#

its already installed

turbid sandal
#

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

zinc sinew
turbid sandal
#

i have 50 $

zinc sinew
#

get a job

turbid sandal
#

not dignothy

#

i am sorry

zinc sinew
#

than ou can make more than 50 every day

#

to late to say sorry lol

whole bear
#

50 a day is decent for someone who's as dumb as him

#

no offense

zinc sinew
whole bear
turbid sandal
#

๐Ÿ˜•

whole bear
#

faking his death even if it was a "dare" is pretty childish

zinc sinew
whole bear
zinc sinew
#

no him

whole bear
#

I'm in hs too

#

yet i have more knowledge then most people

#

and by far more money

zinc sinew
#

i have a really good money idea that me and my friends are gonna do lol

whole bear
#

i've made over 40k off of roblox alone

zinc sinew
#

create and host are own video games website and have ads on it

whole bear
#

it's not hard making money online

whole bear
#

a

#

good idea

#

at all

#

it will most likely loose you money

zinc sinew
#

what else could I do

whole bear
#

i dont know

#

but thats a terrible idea

zinc sinew
#

how do you make roblox money

whole bear
#

multiple methods

#

for off i've made multiple scripts for it

#

1.6k members

#

15$ / 3k robux each whitelist

zinc sinew
#

oh for like blade ball and stuff

whole bear
#

3k r$ usd sold = 30$

#
  • robux used to buy limiteds
#

which then usd sold later on

zinc sinew
#

i see

whole bear
#

Way more profitable

zinc sinew
#

what kind of scripts?

#

like what was their purpose

whole bear
#

The one i've made the most of is a streamable script for dahood

#

that alone has brought me 7k

zinc sinew
#

is this all in r$?

whole bear
#

now that byfron has been introduced, sales are slow

whole bear
zinc sinew
somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
whole bear
zinc sinew
#

or is it a trade secret

whole bear
#

luau is the key to exploiting

zinc sinew
whole bear
#

But byfron has been implemented to roblox

#

(Hyperion)

zinc sinew
#

right

whole bear
#

Therefore, most of exploiting com is dead

#

Hi All

zinc sinew
#

yo

whole bear
#

Hope you are doing well... I'm not able to turn on mic

whole bear
#

It's a virus

zinc sinew
#

you asf

zinc sinew
somber heath
wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

whole bear
#

buyers in server alone btw

somber heath
#

Let's ease up on the meme/gif posts.

zinc sinew
whole bear
turbid sandal
#

if

#

I

#

may...

somber heath
zinc sinew
whole bear
#

@zinc sinew

zinc sinew
whole bear
#

but its still a terrible idea

#

lol

zinc sinew
whole bear
#

HI

whole bear
#

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

zinc sinew
#

yeah

whole bear
#

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

zinc sinew
#

mmo an mp game scripts are a hot commodity cause there are so few people to make them

whole bear
#

so i can't stream
XD

#

BRO XD

whole bear
#

4 years

#

I hate frontend

zinc sinew
#

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

turbid sandal
zinc sinew
whole bear
#

I LOVE FRONTEND

whole bear
#

๐Ÿ™‚

whole bear
zinc sinew
turbid sandal
whole bear
#

frontendK

#

have anyone play Assaultcube ?

whole bear
zinc sinew
#

woops wrong message

whole bear
#

oh and this

zinc sinew
#

ill check it out

turbid sandal
#

ass

zinc sinew
#

nice lol

whole bear
#

if ur a frontend developer

#

I LOVE BACKEND ๐Ÿฅน

#

stick to something real

zinc sinew
#

can you do it?

turbid sandal
#

god

whole bear
#

lmk when u realize html and css isnt a real programming language

#

its a markup language

whole bear
turbid sandal
#

I unmuted

whole bear
#

UR MOM

turbid sandal
#

your dad

whole bear
#

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

whole bear
#

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 ๐Ÿ™‚

turbid sandal
#

opps

whole bear
#

so true

#

@zinc sinew u want to make money right

whole bear
whole bear
#

know

zinc sinew
whole bear
#

eh

#

try to learn

#

lua

#

@whole bear who ?

#

(i hate lua but it brings most money)

turbid sandal
#

fr

zinc sinew
whole bear
#

go to fivem

#

they pay well

turbid sandal
#

I wouldn't

zinc sinew
zinc sinew
#

how good is their anticheat

whole bear
#

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)

whole bear
zinc sinew
whole bear
#

oh

whole bear
#

if u dont know anything abt lua