#voice-chat-text-0

1 messages Β· Page 345 of 1

upper basin
#

HEHEHE

#

What would that be? int[][]?

#

List of lists of int?

upper basin
#

So cursed.

vocal basin
#

iirc C# doesn't

upper basin
#

Thank god.

somber heath
#

"Well you might be looking at this wrinkly old bag of bones and thinking you can take me down in a fight and, you know, you might be right, but if you think for a second that I'm going to go down easy, then you've got another think coming, you little pissant. Now what's it going to be?"

urban abyss
#

what .bm?

upper basin
vocal basin
#

.help bm

viscid lagoonBOT
#
Command Help

**```
.bookmark <target_message> [title=Bookmark]

**Can also use:** `bm`, `pin`

*Send the author a link to the specified message via DMs.

Members can either give a message as an argument, or reply to a message.

Bookmarks can subsequently be deleted by using the `bookmark delete` command in DMs.*
vocal basin
#

you can also do that from context menu

urban abyss
#

okay, were you trying to bookmark the link or ?

vocal basin
#

my voice is too weak for singing again

#

maybe being ill indeed has some effect on that

upper basin
#

You sing AF?

upper basin
vocal basin
upper basin
vocal basin
#

idk if it's accessible worldwide

upper basin
#

We could try.

#

"I want ASMR!"
"We have ASMR at home."

somber heath
#

@gleaming kestrel πŸ‘‹

stark coral
vocal basin
#

@whole bear JVM uses JIT which is responsible for compilation

#

compiled to bytecode
then compiled to machine code as part of interpretation process

#

LLVM is a compile-time abstraction

upper basin
#

LLVM is the framework of compilers.

vocal basin
#

not a runtime VM

#

@frozen owl clang.exe

#

or whatever

upper basin
frozen owl
upper basin
#

As far as I know, LLVM is the framework (abstraction) of compilers.

frozen owl
#

i see

unborn viper
#

hello

#

please help

upper basin
#

@rugged root Would you like to join the call Pydad?

#

We wiss u so mwuch.

unborn viper
#

please help

upper basin
#

Got to love the sheer contrast between the two sentences.

upper basin
unborn viper
# upper basin What's up?

txt_querry = response_3.text

# Clean the string by removing '```python' and '```'
cleaned_string = txt_querry.replace('```python', '').replace('```', '').strip()

try:
    # Safely evaluate the cleaned string
    querry = literal_eval(cleaned_string)
    print(querry)
except (SyntaxError, ValueError) as e:
    print(f"Error evaluating cleaned string: {e}")
    return None  # Or handle the error as appropriate for your use case
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.

unborn viper
#

this work sometimes but smetimes not

upper basin
#

Please format it like this.

unborn viper
#

Error evaluating cleaned string: invalid syntax. Perhaps you forgot a comma? (<unknown>, line 18)

unborn viper
#
   txt_querry = response_3.text

    # Clean the string by removing '```python' and '```'
    cleaned_string = txt_querry.replace('```python', '').replace('```', '').strip()

    try:
        # Safely evaluate the cleaned string
        querry = literal_eval(cleaned_string)
        print(querry)
    except (SyntaxError, ValueError) as e:
        print(f"Error evaluating cleaned string: {e}")
        return None  # Or handle the error as appropriate for your use case
upper basin
#

Uhh, no.

#

Like this.

print("Hello World!")
#

Nevermind, just paste it here.

#

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

upper basin
#

Go to the url, paste your code there, and then click paste. It'll redirect to a new url. Send the url here.

unborn viper
#

ok

upper basin
#

Thank you.

unborn viper
#

txt_querry = response_3.text

cleaned_string = txt_querry.replace('```python', '').replace('```', '').strip()

try:
    # Safely evaluate the cleaned string
    querry = literal_eval(cleaned_string)
    print(querry)
except (SyntaxError, ValueError) as e:
    print(f"Error evaluating cleaned string: {e}")
    return None  # Or handle the error as appropriate for your use case
#

here

unborn viper
upper basin
#

Which line is line 18 in your code?

unborn viper
#

i think line 18 of the text

#

basically i receive a string array "[]" and i want to turn it into [] an array array but ast literal eval sometimes works sometimes not when special characters also json loads

upper basin
#

Can you give me an example of when it doesn't work?

upper basin
unborn viper
vocal basin
#

what syntax, again? didn't hear

#

!d ast

wise cargoBOT
#
ast

Source code: Lib/ast.py

The ast module helps Python applications to process trees of the Python abstract syntax grammar. The abstract syntax itself might change with each Python release; this module helps to find out programmatically what the current grammar looks like.

An abstract syntax tree can be generated by passing ast.PyCF_ONLY_AST as a flag to the compile() built-in function, or using the parse() helper provided in this module. The result will be a tree of objects whose classes all inherit from ast.AST. An abstract syntax tree can be compiled into a Python code object using the built-in compile() function.

unborn viper
upper basin
#

We're in the call.

unborn viper
#

sry

hollow root
#

hi

upper basin
#

No worries.

unborn viper
hollow root
unborn viper
hollow root
#

I made a bot, I want to manage it with a panel, how can I do it?

upper basin
#

Can you please send me the full traceback?

unborn viper
#

he tries to turn string array into array but because of special charchters he fails

#

i think

unborn viper
# upper basin Can you please send me the full traceback?

[22/Aug/2024 16:47:52] "GET /editor?session=b%27gAAAAABmx1EdcuI1uwMSm15gfY9p8hVINqtn_Ft5ilUE36tpFUsciq9yb_FOJawRW0jIqdiHnO9RSVHuGQ9AeFzymWAflY69hg==%27 HTTP/1.1" 200 7867
Uploaded file 'temp_be73888d3d7f4b518a037719253c1e6a.pdf' as: https://generativelanguage.googleapis.com/v1beta/files/30n6b2afre2q
Waiting for file processing...
...all files ready

Error evaluating cleaned string: invalid syntax. Perhaps you forgot a comma? (<unknown>, line 18)
Error evaluating cleaned string: invalid syntax. Perhaps you forgot a comma? (<unknown>, line 18)
[22/Aug/2024 16:49:30] "POST /editor?session=b%27gAAAAABmx1EdcuI1uwMSm15gfY9p8hVINqtn_Ft5ilUE36tpFUsciq9yb_FOJawRW0jIqdiHnO9RSVHuGQ9AeFzymWAflY69hg==%27 HTTP/1.1" 200 7867
[22/Aug/2024 16:49:30] "GET /editor?session=b%27gAAAAABmx1EdcuI1uwMSm15gfY9p8hVINqtn_Ft5ilUE36tpFUsciq9yb_FOJawRW0jIqdiHnO9RSVHuGQ9AeFzymWAflY69hg==%27 HTTP/1.1" 200 7867

#

there is no comma missing in array i think it because of special charchter

upper basin
#

!e

a = "[1, 2, 3]"
b = a.strip("[]").replace(" ", "").split(",")
print(b)
wise cargoBOT
upper basin
#

Like this?

unborn viper
#

this will turn it to array ?

#

b is array ?

upper basin
#

!e

a = "[1, 2, 3]"
b = a.strip("[]").replace(" ", "").split(",")
print(b)
print(type(b))
wise cargoBOT
upper basin
#

Is this what you want?

unborn viper
#

yes

unborn viper
upper basin
#

Ok.

unborn viper
#

there is problem however

#

it does convert any [ to " rigt ?

upper basin
#

You can think of it as replacing it with nothing if you like.

unborn viper
#

becaus eof intervals

upper basin
#

Hmm.

unborn viper
#

["+∞", 1]

upper basin
#

I'd suggest making a help ticket, because I have to sleep in a bit.

unborn viper
#

like those

upper basin
#

If it's not solved until tomorrow, dm me and I'll have another look.

unborn viper
#

ok

whole bear
#

@wind raptor

#

you alive?

split field
#

can't talk but I can type

wind raptor
#

!stream 1028671867785068574

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1724362955:f>.

split field
#

@whole bear what are you working on

#

!user

wise cargoBOT
#

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

split field
#

soo close

#

just need to send 10 mroe

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @split field until <t:1724363392:f> (10 minutes) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

primal shadow
#

Great way to never speak is to game the system.

stuck furnace
#

!unmute 540373904401629185

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction timeout for @split field.

stuck furnace
#

Don't spam for voice verification.

vocal basin
#

@wind raptor I'm so far on a streak of two questionable decisions in the last ~24 hours

#

accepted a friend request purely because of pfp;
bought a domain for a joke;

wind raptor
vocal basin
#

I don't know yet

wind raptor
#

Fair

vocal basin
#

.am whois turned out weird

#

it can't be paidly disabled

#

but it also shows effectively nothing

wind raptor
#

What are you putting on the domain?

vocal basin
#

literally a single sentence

wind raptor
#

Nice

#

!stream 1243210082649505863

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1724363972:f>.

vocal basin
#

I'm having to wait for dns propagation again

#

pain

#

JIT

vocal basin
#

CPython is getting it soon

#

also GIL restrictions are getting removed gradually

#

(both those changes are already part of PyPy afaik)

#

record has dh= in it

#

I wonder if it's ecdhe

#

@wind raptor only experimental React does that

#

React itself is quite stable

#

(it's more about what people tell you not to do, yes; that indeed changes frequently)

#

and when it does break, the general attitude is "it was broken anyway"

primal shadow
wind raptor
vocal basin
#

(there is missing context to that thing, but it'll take way too long to explain)

wind raptor
primal shadow
vocal basin
#

it's a singular linear road

wind raptor
#

Roads can be linear

vocal basin
#

"map of a singular road is quite useless"

spare galleon
#

@wind raptor hello

vocal basin
#

it's literally just an issue of what part to what part the arrows go

#

and the fact that it has numbers

wind raptor
#

Still gives a good guide on what you need to learn. You don't have to stick to the order

vocal basin
#

bullet points there are okay, but the map part is lacking

vocal basin
wind raptor
#

I've seen many better roadmaps, but it's nice to have something over nothing

#

This one is also pretty cool because it gives links on where to study most of the topics

vocal basin
#

yeah, basically just a list of links

wind raptor
#

Yeah

vocal basin
#

descriptions are poorly made often too

#

I would contribute

#

but I don't want to

vocal basin
wind raptor
#

Fair

#

I haven't come across any other sites dedicated to roadmaps

primal shadow
#

Come back!

#

lol

#

it's just in the settings

vocal basin
#

"please stop putting publishing into general tutorials"

primal shadow
#

@whole bear

whole bear
vocal basin
#

for some reason discord-logitech integration isn't working for me still
eh

vocal basin
#

it took me way too long to notice again

#

@wind raptor guess which one I have so much of an issue with there

primal shadow
#

That is some wild shit

vocal basin
#

((some people dislike calling those data structures, but they are, so it's fine))

#

@primal shadow "ruby, throw, crash" paradigm

#

they used to have an issue of overusing exceptions on backend

#

in Ruby

#

where those aren't as over-optimised

#

in terms of delaying backtrace generation

#

"<div>, display: flex -- you know half the all useful HTML and CSS"

primal shadow
#

@whole bear

wind raptor
#

!stream 1243210082649505863

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1724367263:f>.

wind raptor
#

current progress

urban abyss
#

that's very good

#

my current progress with my bus route

primal shadow
somber heath
#

@ivory elm πŸ‘‹

ivory elm
#

@somber heath wassup

somber heath
#

Chilling.

#

It is, after all, a cold morning where I am.

#

So, appropriate.

somber heath
#

@orchid quail πŸ‘‹

primal shadow
whole bear
wind raptor
#

finished

primal shadow
wind raptor
#

100% match - 84 lines of css bahaha

whole bear
#

Hi

#

Someone told me I should use Rust

#

lol

#

I do need something that will last a long time that's true

#

Okay thank you for that information Mindful Dev, I am working a big project for myself

#

This project someone told me would be good for Rust

vocal basin
#

after needing to write hundreds of assertions in a Python project just to have any little certainty in it not breaking catastrophically,
I've witnessed myself that maybe sometimes Rust is a simpler and faster approach

spare galleon
#

who feasible is my life?(this is a troll question, dont get mad)

#

can i say smth funny mindful

#

trust its rlly funni

vocal basin
spare galleon
#

its a your mom joke

#

is that srever apropriate?

vocal basin
#

only approriate when Hemlock is around

spare galleon
#

kay fine, i want say it

vocal basin
#

wait until then

spare galleon
#

hmmm mr hemlock has had enough of my shenaniganz, tho

#

mindful what projects have you been working on recently

whole bear
#

This person who I initially this project with was running into issues with organizing the data better, I have a summary of his idea if you'd like to read it

spare galleon
#

and you to alisa

whole bear
#

segregate downloading data (rust) vs ANN modeling (python) vs webapp (python+javascript)
download only raw game data (not summarized) into SQL
download every bit of data possible (no cherry picking)
bigger model, with more processing and a lower learning rate
use git version control
git-crypt
version control models better somehow
nn models need to predict % chances instead of discriminant binary 1/0 outcomes
potentially a 2nd neuro network to do the betting itself with the predictions + lines

spare galleon
#

mindful may i talk?

whole bear
#

It's actually for creating my own lines

vocal basin
#

why git-crypt

whole bear
#

I'm not trying to open a sportsbook , but my dads best friend owns one and I am trying to beat him

vocal basin
#

using Rust for just data download is a bit odd but okay

#

whatever makes losing money quicker

whole bear
vocal basin
#

you'll have to integrate it into overall app anyway

#

it will speed up processing but there's a synchronisation cost

#

of transferring data out of Rust

#

as with any FFI boundary

#

(FFI/networking boundary rather)

#

JSON parsing and validation is something you definitely don't want to do in Python if you have a lot of data

whole bear
#

You guys seem very skeptical saying that you know for sure I'll lose money, are you guys saying machine learning doesn't have value in sports betting?

vocal basin
vocal basin
whole bear
#

well, I already found out that Colorado Rockies actually do have a home stadium advantage

vocal basin
#

ML isn't a guarantee of success, unless you really have a breakthrough

#

(or a basically empty competition)

whole bear
#

horses are degenerate gambling for sure

#

I agree

#

I would

vocal basin
#

@wind raptor you just have to have infinite money to begin with

whole bear
#

I have a project that is done and a model that actually works

#

but it wants to be longer lasting, and more data involved

#

That's why Rust is being recommended

#

so it depends how high you look at the machine learning differentials

vocal basin
primal shadow
whole bear
#

I am going to be using it for actual gambling.

#

Major league baseball

vocal basin
#

just use ML to excuse your decisions as everyone's doing anyway

whole bear
#

so this was up and running 2 years ago

#

It would actually output winners

vocal basin
whole bear
#

but none of the projected people to win were worth betting on unless they were underdogs

vocal basin
whole bear
#

The percentage went up to 90%

vocal basin
#

you've split data into training and test, right?

whole bear
#

but included a little hindsight biased

#

I am not a programmer, that's the biggest problem I didn't spend time to learn how it works

vocal basin
vocal basin
whole bear
vocal basin
#

you need have a separate test sample that you never used for training

#

ML frameworks provide that split themselves often

whole bear
#

Yes that's true which we did, we included like 10 years of data and cut it into sections based off peoples performance in baseball (batting and pitching)

#

batter vs pitcher for instance

#

Is that what you're asking

#

This project is all coded and finished but I'm running into errors I myself don't know how to fix, but the man said I should start fresh on Rust

primal shadow
#

As they say, if at first you don't succeed, try again in Rust

whole bear
#

the ML would project underdogs to win, and based off the run differentials even if it was 50% winrate (sorry)was there, from the trained ML

#

winrate would be above 50% and go all the way up to 90% the 90% would mostly be favorites

whole bear
wind raptor
#

!rule 9

wise cargoBOT
#

9. Do not offer or ask for paid work of any kind.

whole bear
#

Oh okay I'm sorry

wind raptor
#

No worries

whole bear
#

You seem very knowledgeable @vocal basin

#

Thank you for all the info you're providing me

#

Okay so without money, does anyone want to help me get this up and running?

#

I am unable to stream?

#

Can I share my screen?

wind raptor
whole bear
#

Oh I see

#

Okay

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.

hallow warren
#

Here we go, 50x real time TTS on a single core: https://balacoon.com/blog/on-device

wind raptor
#

3 more messages

whole bear
#

So this project had many different models as well

#

we found that the third model was the best for predictions

wind raptor
#

Nice

whole bear
#

What is a flask server

hallow warren
knotty anvil
#

bruh I cant talk

#

I need messages in here to talk?

wind raptor
wise cargoBOT
#
Voice verification

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

knotty anvil
#

@hallow warren I think flask is easier ngl

wind raptor
knotty anvil
#

but fast is better for microservices

#

fast also has websocketas

whole bear
#

I want to apologize again for breaking rule 9

knotty anvil
#

wait what

#

thats a thing?

#

@sour imp

#

how do I do that

#

what

#

thats insane

#

how is the documentation generated? does it use python comments to generate it or is it just a simple

#

decleration of each endpoint

#

yea but that just declares that endpoint, it dosnt tell me anything about json payloads

#

@sour imp

wind raptor
#

!stream 627232414044782594

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1724373854:f>.

midnight birch
wind raptor
#

!stream 495701014213820427

wise cargoBOT
#

βœ… @knotty anvil can now stream until <t:1724376692:f>.

whole bear
#

are you coming back? @hallow warren

wind raptor
#

!stream 627232414044782594

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1724377645:f>.

whole bear
#

In summary, your system is a comprehensive platform that combines real-time data collection, advanced data processing, and machine learning to predict the outcomes of MLB games with a high degree of accuracy. It leverages a variety of tools and techniques, from data normalization and feature engineering to model training and evaluation, to provide reliable predictions.

whole bear
hallow warren
whole bear
#

πŸ™‚

errant widget
#

Try this:
ask ChatGPT to explain it like you're 10

somber heath
#

!e py import random print(dir(random))

wise cargoBOT
# somber heath !e ```py import random print(dir(random))```

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

['BPF', 'LOG4', 'NV_MAGICCONST', 'RECIP_BPF', 'Random', 'SG_MAGICCONST', 'SystemRandom', 'TWOPI', '_ONE', '_Sequence', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_accumulate', '_acos', '_bisect', '_ceil', '_cos', '_e', '_exp', '_fabs', '_floor', '_index', '_inst', '_isfinite', '_lgamma', '_log', '_log2', '_os', '_pi', '_random', '_repeat', '_sha512', '_sin', '_sqrt', '_test', '_test_generator', '_urandom', '_warn', 'betavariate', 'binomialvariate', 'choice', 'choices', 'expovariate', 'gammavariate', 'gauss', 'getrandbits', 'getstate', 'lognormvariate', 'normalvariate', 'paretovariate', 'randbytes', 'randint', 'random', 'randrange', 'sample', 'seed', 'setstate', 'shuffle', 'triangular', 'uniform', 'vonmisesvariate', 'weibullvariate']
somber heath
#

!e py print(__loader__, __spec__, __package__, __builtins__)

wise cargoBOT
split field
#

How we all doing πŸ™‚

woeful wyvern
#
# repyx.py

import inspect

class AutoStart: pass

def isAutoStart() -> bool:
    for stack in inspect.stack():
        
        if "repyx.py" in stack.filename:
            continue
        
        for member in inspect.getmembers(stack[0]):
            if member[0] == "f_globals":
                if "AutoStart" in member[1] and member[1]["AutoStart"] is AutoStart:
                    return True
    return False


if isAutoStart():
    ...
    print("start the thing")```
somber heath
#

@stone thicket πŸ‘‹

#

!e py print(dir())

wise cargoBOT
# somber heath !e ```py print(dir())```

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

['__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__']
supple cove
#
finder = modulefinder.ModuleFinder()
finder.run_script('main.py')
modules_data = {}
for name, mod in finder.modules.items():
    modules_data[name] = mod.__file__ if mod.__file__ else 'Built-in'

print(f"{'Module Name':<30} {'File Path'}")
print("-" * 60)
for name, path in modules_data.items():
    print(f"{name:<30} {path}")
whole bear
#

you start a rust project with cargo new (create new folder AND init) or cargo init (init the current folder you're in)

dense ibex
#
7

I've solved same issue. Here I have done. I deleted two files and then restart service. Please these files:postmaster.opts, postmaster.pid in "C:/Program Files/PostgreSQL/10/data" directory. As you seen @Abodesegun Ezekiel's answer, I deleted one more file called "postmaster.opts" and it worked for me.

hallow warren
#

@whole bear windows 10 or 11?

#

Hello Everyone! Today in this video I am going to step-by-step guide you on How to install PostgreSQL 16 for Relational DataBase Management System (RDBMS) on Windows 11. Windows (64-bit).

β–Ί Subscribe to Geeky Script Vlog Channel: https://www.youtube.com/@GeekyScriptVlogs/
β–Ί Subscribe to Geeky Syntax Channel: https://www.youtube.com/@geekysynt...

β–Ά Play video
obsidian dragon
somber heath
#

@whole bear πŸ‘‹

upbeat bobcat
#

It was in pronouns so

somber heath
#

@whole bear πŸ‘‹

upper basin
#

git clone --mirror git@github.com:Qualition/QICKIT.git

#

https://github.com/Qualition/QICKIT.git

somber heath
#

@viral arrow @sturdy shell πŸ‘‹

sturdy shell
upper basin
#

! [remote rejected] refs/pull/1/head -> refs/pull/1/head (deny updating a hidden ref)

gentle flint
somber heath
#

@whole bear πŸ‘‹

whole bear
upper basin
#

BRB

ebon valve
#

@somber heath πŸ‘‹

somber heath
gentle flint
jolly root
#

what u making @upper basin ?

gentle flint
somber heath
#

@coral prairie πŸ‘‹

obsidian dragon
gentle flint
vocal basin
#

last time I used bluetooth was a very long time ago

somber heath
#

@austere horizon πŸ‘‹

austere horizon
#

Hi

vocal basin
#

for 8 years I had wired headphones which were way too good to use wireless instead of them

#

(they got damaged recently; might try fixing later)

#

there are spare parts on sale (officially) so I can just replace what's broken

vestal arrow
#

hi

vocal basin
gentle flint
vocal basin
#

no

gentle flint
#

o

vocal basin
#

likely capacitor or internal wiring failure

#

from falling

gentle flint
#

which headphones?

#

I'm looking for some

vocal basin
#

Beyerdynamic Custom One Pro

gentle flint
#

thanks

vocal basin
#

not widely available anymore, from what I've seen

#

with detachable wire

#

so can be replaced

#

very useful given that's where most issues come from, in my experience

somber heath
#

@unreal lion πŸ‘‹

unreal lion
somber heath
#

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

unreal lion
#

Why am I not able to speak?

somber heath
#

@fiery inlet πŸ‘‹

vocal basin
#

also large portion of outer stuff can be replaced

fiery inlet
upper basin
#

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

wise cargoBOT
#
Voice verification

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

fiery inlet
#

Thanks πŸ‘

unreal lion
unreal lion
upbeat bobcat
fiery inlet
unreal lion
#

Is there any other voice verification?

upbeat bobcat
unreal lion
primal shadow
upbeat bobcat
vocal basin
vocal basin
#

I guess the two (six) parts that just hold it together can be replaced too

somber heath
#

@inner hinge πŸ‘‹

vocal basin
#

since if it's the overhead wire, I'm unlikely to replace that

vestal arrow
vocal basin
#

a bit expensive but worth trying

vestal arrow
#

true you could test and try

vocal basin
#

all the spare parts add up to almost twice the headphones price themselves

somber heath
#

@wicked hinge πŸ‘‹

wicked hinge
#

Sup

wicked hinge
vocal basin
wicked hinge
#

Cheese?

vocal basin
#

and replacing outer stuff for one half is another $60

wicked hinge
#

Yum

vocal basin
#

because less plastic

#

also no overhead wire

wicked hinge
#

+10 pounds of cheese πŸ§€

vocal basin
wicked hinge
#

Bro said cheddar

fiery inlet
#

So I need wait 3-4 days for my voice verification.
There are some conditions that I have to fulfil.

wicked hinge
#

Btw why does 1912 look so different rn

#

And idk why we are talking about cheese in the python serverβ€¦πŸ§€πŸ§€πŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ₯ΆπŸ₯ΆπŸ₯Ά

vocal basin
#

!pypi cheese

wise cargoBOT
#

My first Python package using cookiecutter.

Released on <t:1394839723:D>.

wicked hinge
#

How did we go from cheese to ear wax 😭

#

se..se..sefood…uhm

#

In cheese?

peak depot
fiery inlet
somber heath
#

@small imp πŸ‘‹

small imp
#

@somber heath πŸ‘‹

vocal basin
#

πŸŽ‰ now I can claim a 6 octave range, since it's recorded

#

60 Hz ~ 4.2 KHz

#

I can do reliably only up to around 2 KHz

#

3 KHz if I'm lucky

#

4 KHz was a one time occasion

#

@peak depot low-pitched whistling with throat only

peak depot
#

I sound about the same πŸ˜„

vocal basin
#

the issue with high notes is that they're so loud they hurt my ears so I reflexively try to restraint the voice and it ends up failing

peak depot
vocal basin
#

(with a lot of extra noise but the main frequency was that)

vocal basin
#

I can, if I try, have less noise

#

but why, it wouldn't be as funny

#

it doesn't hurt

peak depot
upper basin
vocal basin
#

I just know how little effort and force it takes, so, no, I won't stop doing that

upper basin
#

AF just randomly walking across the hall "Screeeeee!!"

real lance
upper basin
#

Ergo pseudorandom.

vocal basin
#

random module isn't as secure as secret module
so with enough effort you can theoretically reconstruct some outputs if you know later outputs

#

assuming same seed

#

(having deleted/forgot the history but with same python interpreter opened)

real lance
#

Why are you telling me that?

upper basin
#

AF, I was watching long legs (this FBI vs serial killer movie, mid tbh) and saw this encrypted letter and was wondering how expensive solving this in a brute-forced manner. It's massive hehe.

#

403,291,461,126,605,635,584,000,000 possible combinations.

vocal basin
upper basin
#

Returns int, so I guess -127 to 128?

#

256 possible values. I think the complexity would be the number of digits (as in how many times the guy called this, and then stuck them together).

vocal basin
#

!e

print(1 << 256)
wise cargoBOT
vocal basin
#

!e

print(1 << 128)  # good enough AES key
wise cargoBOT
upper basin
#

!e

print(1 << 8)
wise cargoBOT
upper basin
#

Python's int is 32 bits right?

real lance
upper basin
real lance
#

Someone else posted that, I just reposted it because it's funny

vocal basin
#

it's arbitrary-sized

real lance
#

Like who uses a randint as a password

vocal basin
#

.randint has no default values

upper basin
#

I'm stupid hehe.

vocal basin
#

@peak depot okay

#

!e

from os import urandom
from base64 import b64encode
print(b64encode(urandom(18)).decode())
wise cargoBOT
vocal basin
#

and this is how you get those a bit shorter

peak depot
vocal basin
#

!e

from os import urandom
from base64 import b85encode
print(b85encode(urandom(16)).decode())
wise cargoBOT
vocal basin
#

I need to eat first; then I'll attempt to record voice stuff

#

(I'm still tired from illness)

vocal basin
#

trying to push it when I can't doesn't work

peak depot
vocal basin
vocal basin
#

which features, that you need, does it not support?

somber heath
#

@pulsar shale πŸ‘‹

pulsar shale
vocal basin
#

ig they got banned Β―_(ツ)_/Β―

#

apparently they changed their profile recently, not joined like that

pulsar shale
#

Why nobody talking

spare galleon
smoky phoenix
#

Hello folks

#

Hows life

#

jeez

#

ohno

#

AHAHAHH

#

KEEP

#

GOING

#

KEEP GOING

#

Generate it with AI

#

oh right. my bad

#

im brain rotting right now

#

A wormhole opens

vocal basin
#

but

#

no vocal cords involved, so it's fine

whole bear
smoky phoenix
#

WEEBRITISH

whole bear
#

451 GB transfering

smoky phoenix
#

walking on eggshells

#

US

#

AHAHAHAH

#

Best VPN?

#

Serafina where you at

obsidian dragon
#

windscribe

#

hi af

smoky phoenix
#

Oh quick question, any of you folks have certs like CISSP/CSSLP?

vocal basin
#

abwab

smoky phoenix
#

HAHAHAHA

somber heath
#

@frigid oasis πŸ‘‹

frigid oasis
#

hii

vocal basin
#

hmm

#

currently able to only 1.7KHz

vocal basin
#

towards the ends of the range it's just so unstable/fragile that I can't hurt myself while keeping the sound present

willow light
#

Vacation week status update

stuck furnace
short owl
#

kyitty ?

mortal mountain
#

!user

wise cargoBOT
#

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

vestal arrow
#

can i ask a question

upbeat bobcat
vestal arrow
#

do anyone of you work in tech

primal shadow
#

I clicky clack a keyboard for dollars

willow light
#

I am the current victim of a tech layoff, yes.

short owl
#

clicky clack - thats good

primal shadow
#

It's what I do

vestal arrow
vocal basin
#

restructuring some work-related code

#

made one of constructors non-async; though that doesn't yet make it simpler

#

also should rename half the things so that names actually make any sense

#

there is no convention

#

it can be fixed one by one

#

it's gradual improvement anyway

#

since there is nothing depending on it

vocal basin
#

how would convention ever help there

#

(convention can tell to use purpose in the name, but convention can't tell what the object purpose is)

#

@wintry osprey there's at least two more by people who've been here

#

one of those people has been banned Wheeze (for separate reasons)

wind raptor
#
wikiHow

Cults are communities that fervently worship an object, person, or concept over all other things. While cults have the ability to transform into manipulative enterprises in the wrong hands, they're essentially ways of organizing and...

vocal basin
#

"just claim you don't get anything from them joining"

#

"while we're on the topic of cults..."

#

I'm still not sure why I can't access the thing via Tor sometimes

#

key to winning is in premoves

#

I'll keep the timer running for me for some time so you can try premoving

#

!d hashlib.sha256

wise cargoBOT
wintry osprey
vocal basin
#

@split field normally for passwords, it's agron2id or pbkdf

#

or blake2, ig

#

@wind raptor have you seen this in python docs?

vocal basin
primal shadow
vocal basin
#

SHA1 is broken, but only for new collisions, not reversal

vocal basin
vocal basin
#

After the user is presented a request to verify a suspended user account that has been suspected to be compromised, a verification code is sent by SMS. Once the user updates his password, a second SMS is sent, containing the complete login information of that user account.

split field
#

This is it

wintry osprey
vocal basin
#

sha3 has a structure different from sha1 and sha2

#

I'm trying to remember what was the tree hashing thing

#

maybe blake

#

ah

#

it wasn't blake2

#

it was blake3

primal shadow
#

This site is very sus

#

they're just making claims at this point

vocal basin
#

there is a website saying "do not use <>&" specifically

#

that one is obviously suspicious

#

funny how sha and blake have similar version history

#

inheritance is bad, don't use it

split field
vocal basin
wind raptor
vocal basin
#

Python is good as an "interface" to C constructs

#

and so is Rust

#

both are quite near C, programmatically

#

(CPython doesn't put that many abstraction layers on top of C)

#

and, so, to learn both properly, you'll have to know some C

#

uh

#

idk how many repos I have

#

like

#

I've lost track

#

one of the hosts, that I had some of them on, is dead

vocal basin
split field
#

@vocal basin how do I get screen sharing?

vocal basin
wind raptor
#

!stream 540373904401629185

wise cargoBOT
#

βœ… @split field can now stream until <t:1724455634:f>.

vocal basin
# vocal basin I'm counting

on the current PC

some game mod directory: 5
home directory: 9 + 26
  rider: 1
  pycharm: 7
  php: 1
  idea: 2
source directory (after I decided to finally put everything in one place):
  I don't know what this project is: 1
  android studio: 2
  aws: 2
  chrome: 11 + 1
  clion: 54
  go: 2
  hs: 2
  idea: 7
  lua: 6
  md: 4
  node: 2
  php: 1
  pycharm: 209
  renpy: 1
  C#?? F#??: 16
  rider: 3
  ruby: 1
  rust: 2
  tex: 10
  web: 1
  web again: 32
#

approximate numbers

quartz beacon
vocal basin
#

"just learn English terms" is all good until you end up researching a topic that only has UA/RU terms for it because English community hasn't yet been interested in it enough

primal shadow
vocal basin
#

@quartz beacon kaspersky

primal shadow
vocal basin
primal shadow
quartz beacon
primal shadow
vocal basin
#

oscillograph?

wind raptor
vocal basin
primal shadow
quartz beacon
primal shadow
quartz beacon
primal shadow
quartz beacon
vocal basin
#

what an image

wintry osprey
primal shadow
vocal basin
#

@quartz beacon I remember hearing something very similar; but likely a different video

#

isn't that what happened anyway

#

okay

#

then same

#

and I'm trying to find the dialogue somewhere in the middle

vocal basin
quartz beacon
vocal basin
primal shadow
#

Box-drawing characters, also known as line-drawing characters, are a form of semigraphics widely used in text user interfaces to draw various geometric frames and boxes. These characters are characterized by being designed to be connected horizontally and/or vertically with adjacent characters, which requires proper alignment. Box-drawing charac...

vocal basin
#

Latin Belarussian is a thing too

#

so imperial times ig?

wind raptor
#

Back in 5

#

Don't do anything I wouldn't do.

wintry osprey
#

chilean potatoes

whole bear
wintry osprey
whole bear
#

Hey I can be in vc

#

but I dont want to talk

#

but hi πŸ‘‹

split field
#

sup nerd!!!

whole bear
split field
#

not much, just working on this SHA algorithm

whole bear
whole bear
split field
#

i'm making one

#

for my login

whole bear
#

I have been playing minecraft since 7... I love the game, been there since 1.12... now playing 1.21.2...

#

@quartz beacon

quartz beacon
whole bear
#

CUTE

#

noo.

#

its was 7 years ago

#

ish

#

7/6

#

Im 13

#

nearly 14

whole bear
#

Cool

#

Im afraid of talking to minors too 😭 @quartz beacon

split field
whole bear
#

I hate gen Aplha brain rot

whole bear
#

all of them are at some point

#

tbf I tried to make a Token Auth system for my API

#

I can speak 5 languages

#

tho

wintry osprey
whole bear
#

I preffer salt

#

On its own

#

Ρ‚ΠΈ Ρ€ΠΎΠ·ΠΌΠΎΠ²Π»ΡΡ”Ρˆ ΡƒΠΊΡ€Π°Ρ—Π½ΡΡŒΠΊΠΎΡŽ? @split field

#

Wrong person

#

Π’Ρ–Π»ΡŒΠ½ΠΎ Ρ€ΠΎΠ·ΠΌΠΎΠ²Π»ΡΡŽ ΡƒΠΊΡ€Π°Ρ—Π½ΡΡŒΠΊΠΎΡŽ Ρ‚Π° Ρ€ΠΎΡΡ–ΠΉΡΡŒΠΊΠΎΡŽ ΠΌΠΎΠ²Π°ΠΌΠΈ. АлС я ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽ ΡƒΠΊΡ€Π°Ρ—Π½ΡΡŒΠΊΡƒ
@quartz beacon

#

i wish I would speak more languages

#

brb

mortal mountain
#

<@&831776746206265384> how much longer is my voice mute

vivid palm
#

did you receive a DM from @wise cargo when you got your voice mute? check there. if you need help please DM @rapid crown

whole bear
#

@wind raptor

#

Have you ever heard of a artist called Joost klein

wind raptor
#

no

whole bear
#

He made song called Euro papa and got to the last semifinals of eurovishon 2024

whole bear
#

@somber heath πŸ‘‹

dense ibex
#

@upbeat bobcat

upbeat bobcat
whole bear
#

Hi

#

can't speak 3: im supressed 3:

upbeat bobcat
whole bear
#

Hey! :3

#

Whatcha Doing? πŸ™‚

upbeat bobcat
whole bear
#

Breakfast

upbeat bobcat
whole bear
#

Hi @Haven πŸ™‚

verbal zenith
#

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

whole bear
#

3: Im sadly still surpressed

#

Sounds good :3

upbeat bobcat
whole bear
upbeat bobcat
#

Yes

whole bear
#

wait a sec.

#

hi @sleek shale

sleek shale
whole bear
#

i actually joined the server over here to learn how to programm in python

#

Actually have 2 games published but...they are at a beginner's level.

#

yeah :3

#

wanna download them?

#

its a 2d game

#

it doesnt require much system power.

#

one of the game is an text adventure rpg called scriptureblade

#

the other one is a pong replication called Py.ngPong

#

Python

#

Cool :]

#

i actually have a microphone

#

but...

#

im surpressed

#

by the server

#

yeah.

#

Poor me 3:

#

Yeet

#

i can show you some pictures

verbal zenith
whole bear
#

cool :3

verbal zenith
whole bear
#

Sci- fi

#

Those are some snippets of my game Scripture-Blade

#

It was programmed with the help of me a german programmer and some foreigners

#

yeah its static

#

we have some animations

#

true

#

Thanks for the attention :3

#

Yeah πŸ™‚

#

There is also some music

#

and a lot of sounds

#

but i cant show the sounds and music 3:

#

or can i upload videos in here :3?

#

lemme check

upbeat bobcat
verbal zenith
#

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

upbeat bobcat
#

@amber cipher

whole bear
#

Okay great it actually works

#

πŸ™‚

#

Now i can show you some

#

"Gameplay"

upbeat bobcat
whole bear
whole bear
#

which i created with python :3

#

okay the sounds are a bit too loud. XD

upbeat bobcat
whole bear
#

Thx

#

Hello @charred orchid :3

charred orchid
#

@verbal zenith

#

356741089053275

tawdry mica
#

hello

upbeat bobcat
#

@tawdry mica Why

pine token
#

yo wsg

#

hope yall dont mind me joining the vc?

tawdry mica
#

@MTR Can you open the mic for me?

upbeat bobcat
upbeat bobcat
pine token
#

ight

#

anyways im kinda new to python

#

u know do u have any like umm

#

reccomendations?

tawdry mica
#

For me to speak

pine token
#

hold up

#

lemme change my browser

#

edge hates me rn

upbeat bobcat
sour imp
#

no no using edge you hate yourself jk jk jk jk jk jk

pine token
#

HI

tawdry mica
upbeat bobcat
upbeat bobcat
wise cargoBOT
#
Voice verification

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

upbeat bobcat
#

as opal said

pine token
#

hehe

#

wut do yall use to code?

#

and do yall plan to code as a profession?

#

same

#

i use vs code

#

now

#

idk y i feel so young

#

in this vc

#

25?

#

dang

#

ngl

#

thats not bad

#

means more ppl to help the beginners

#

quick question

#

wut do yall do for a living?

#

ah np

slender sierra
#

@somber heath hi😊

pine token
#

so sorry for the question

#

mhhhhmmmmmmm

#

so like

#

😏

#

u sound like that

#

like a spy

#

works for the goverment

#

this vc is growing

primal shadow
#

it does that

somber heath
#

@brazen belfry πŸ‘‹

pine token
#

can i show a code?

#

ight BET

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.

brazen belfry
#

Hello

pine token
#

alright

#
#Grade_checking.py
print("Welcome to the grade checking program")
students = []

total=[]

assesments = []
check = int(input("How many assessment(s) are we checking today: "))
for x in range (check):
    name_a = input("What is the name of assessment {}: ".format(x+1))
    assesments.append(name_a)

number = int(input("how many student grades are we checking today? \n"))
for x in range (number):
    name = input("Enter the name of the student(s): \n")
    students.append(name)

for x in range(len(students)):
    student_scores = []
    for i in range(len(assesments)):
        score = int(input("What did {} get in their {} :\n".format(students[x], assesments[i])))
        if score >= 90:
            print("{} got an A in their {} \n".format(students[x],assesments[i]))
        elif score >= 80:
            print("{} got a B in their {} \n".format(students[x],assesments[i]))
        elif score >=60:
            print("{} got a C in their {} \n".format(students[x],assesments[i]))
        else:
            print("{} got an F in their {} \n".format(students[x],assesments[i]))
        student_scores.append(score)
    total.append(sum(student_scores))

for x in range(len(students)):
    print("{} total score is {}\n".format(students[x],total[x]))
#

what are f strings?

somber heath
#

!f-strings

wise cargoBOT
#
Format-strings

Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.

>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."

Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.

brazen belfry
#

I recently started learning python programming , I am completely new to it. I am in high-school rn. Hope to learn from all of u here

pine token
#

btw why is their f before the ""

#

so it can replace .format()

#

?

pine token
#

ok SIR

#

YES SIR

#

oh and i have this code

somber heath
#

@formal cedar πŸ‘‹

pine token
#

true

#

do you

#

have any like projects i can do?

#

im a beginner btw

#

kindling?

somber heath
#

!kindling

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.

pine token
#

i dont understand a thing

#

ok

#

CATS

#

MUST

#

GO

#

i got chased BY 8 YESTERDAY

#

HELL NAH

#

never entering random alleys

noble solstice
#

Hello Guys!!

primal shadow
#

Lyall's wren or the Stephens Island wren (Traversia lyalli) was a small, flightless passerine belonging to the family Acanthisittidae, the New Zealand wrens. Now extinct, it was once found throughout New Zealand, but when it came to the attention of scientists in 1894, its last refuge was Stephens Island in Cook Strait. Often claimed to be a spe...

#

extincted because of a single pet

somber heath
#

@vestal copper πŸ‘‹

vestal copper
#

yes

#

@somber heath how are you

#

/voice

upbeat bobcat
#

!voice

somber heath
#

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

vestal copper
#

showing : You have sent less than 50 messages.

somber heath
#

@robust mason πŸ‘‹

vestal copper
#

lol dammm

#

how's goin Gen AI projects

robust mason
primal shadow
#

Scruff McGruff the Crime Dog is an anthropomorphic animated bloodhound created by Dancer Fitzgerald Sample advertising executive Jack Keil (who also voiced the character) through the Ad Council and later the National Crime Prevention Council to increase crime awareness and personal safety in the United States. McGruff costumes are used by police...

somber heath
#

@worn lake πŸ‘‹

primal shadow
pine token
#

hi team

#

hi

#

hahaha

#

ngl

#

They are better with sugar

#

ngl truly the best desc

#

HEHE

#

im everywhere man

#

Yup

#

bcs i was never on this week

#

i mean

#

the best part of bagels are

#

the middle πŸ™‚

#

ngl i have never eaten a bagel irl LOL

#

im a donut guy

#

i love how i became the main topic HEHE

#

thats a donut

#

nah

#

NUH UH

#

SALTY

#

DANG

#

sonic

primal shadow
pine token
#

yes

primal shadow
pine token
#

LOL