#voice-chat-text-0

1 messages · Page 230 of 1

vocal basin
#

oh, wait, it might be a VSC-made venv

woeful salmon
#

ah so it just manually accesses it by full path?

vocal basin
willow gate
#

did you know how to host Website on pythonanywhere

vocal basin
#

I don't use cloud hosting

willow gate
vocal basin
#

I guess that explains

woeful salmon
#

well its just accessing everything by full path then xD

#

that's interesting

vocal basin
#

it adds one entry to $PATH

woeful salmon
#

that makes sense too

vocal basin
#

doesn't change $PYTHONPATH, as far as I see

woeful salmon
#

i still prefer the PEP 582 way better than venvs

#

i wish it becomes the default 1 day 😦

#

!pep 582

wise cargoBOT
vocal basin
woeful salmon
#

ah no 😦 just noticed it

vocal basin
#

I just gave up on Python in general

#

pyproject.toml still confuses me

trim night
#

python -m venv list That will make the venv named as list, then this will activate it for use ```source list/bin/activate``

vocal basin
rugged root
#

I suppose, yeah

#

I guess I'm so used to handling my projects through PDM (even small throw away ones) that I don't really think too much about it

#

pip3 -m pip install setuptools

vocal basin
#

is wheel installed with that too?

vocal basin
rugged root
#

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

small nova
#

Hey yall

#

How have y'all been?

#

Been quiet a while innit?

#

Cool

rugged root
#

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu

vocal basin
#

> glibc
"so basically not alpine"

#

we have pizza/sushi delivery until 5 am
mixes well with disordered sleep

#

there's also electricity cost in addition to GPU cost

#

4?

#

> group of four bits

scarlet halo
#

yo

cinder dawn
#

goo afternoon

#

good

whole bear
#

I have a personal question

rugged root
#

Shoot

whole bear
#

Has anyone lost something or someone important to you?

rugged root
#

Sure. Grandparents, uncles

whole bear
#

I recently lost my uncle who loved me very dearly

rugged root
#

That's always rough

#

My condolences

whole bear
#

Thank you

#

@sinful phoenix

whole bear
#

We also lost our car about a week ago

#

Hemlock

#

How much money do you make?

trim night
#

!e pastebin

wise cargoBOT
#

@trim night :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     pastebin
004 | NameError: name 'pastebin' is not defined
vocal 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.

trim night
#

thanks 🙂

vocal basin
#

I don't remember what my first program was
but I do remember that it was in Pascal

trim night
#

what did it do

vocal basin
#

back then I was only using Pascal for some basic arithmetic

#

16~17 years ago

#

NP-hard problem

#

all three my PRs, that had been merged, were CSS
and I still don't consider myself a web developer

hallow warren
stark river
#

actually wanted your repo but that's ok i can back trace it 😅

vocal basin
#

does numpy support bigint arithmetic?

modern yacht
hallow warren
#

It's not got anything else in it but patch-2 for that PR. I have no idea what happened to patch-1

vocal basin
modern yacht
#

contents of the file

4
12
34
128
1024
4958
1718944270642558716715
9
99
999
9999
9797973
49
239809320265259d
vocal basin
#

@rugged root
n is given to be such that it has 2 primes

#

I'd expect it to be possible as some extension, which trades off performance for that support

modern yacht
#

the expected output

4=2*2
12=6*2
34=17*2
128=64*2
1024=512*2
4958=2479*2
1718944270642558716715=343788854128511743343*5
9=3*3
99=33*3
999=333*3
9999=3333*3
9797973=3265991*3
49=7*7
239809320265259=15485783*15485773

real    0m0.009s
user    0m0.008s
sys 0m0.001s

ooh and all of this is supposed to be done in less than 5 seconds
love to see the one thats even faster

vocal basin
#

well, just factorise into something, I guess

#

lowest divisor might be expected

#

there exist efficient factorisation algorithms, but I only remember one for badly generated case

#

bad case being p close enough to q

#

if you use two consecutive primes, 4096 bit keys aren't going to save you from attacks

modern yacht
hallow warren
candid pike
#

Yo

hallow warren
#

Sadly that kind of fails to capture many important parts and emphasizes trivialities

vocal basin
#

the key to that attack working is that y changes fast while you increase x only by 1

modern yacht
#

i have no idea there were tools like that

#
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-1
6
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-1
6=3*2
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-2
77
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-2
77=11*7
julien@ubuntu:~/RSA Factoring Challenge$ [...]  
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-15
239821585064027
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-15 
239821585064027=15486481*15485867
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-16
2497885147362973
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-16
2497885147362973=49979141*49978553
julien@ubuntu:~/RSA Factoring Challenge$ [...]
vocal basin
#

.wa 10000th prime

viscid lagoonBOT
vocal basin
#

.wa 10001th prime

viscid lagoonBOT
vocal basin
#

(WA site isn't working for me for some reason, so I used .wa)

#

!e

from math import isqrt
n = 10969629647
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 104729
002 | 104743
003 | 1
vocal basin
#

oi

#

well, that was not impressive

#

96 appears thrice in n

rugged root
#

Off load it and find a way to use caching?

#

Like the functools cache

vocal basin
#

!e

from math import isqrt
n = 239814802253561
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 15485863
002 | 15486047
003 | 1
vocal basin
#

why is it so fast, wth

#

!e

from math import isqrt
n = 240091627540549
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 15485863
002 | 15503923
003 | 3
vocal basin
#

finally, not 1

#

!e

from math import isqrt
n = 242635552199011
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 15485863
002 | 15668197
003 | 267
vocal basin
#

(1000000th and 1011111th primes)

#

!e

from math import isqrt
n = 268362092514007
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 15485863
002 | 17329489
003 | 25916
modern yacht
vocal basin
#

this is only fit for primes that are close together

#

!e

from math import isqrt
n = 114112025958181
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
    steps += 1
    yy = x * x - n
    y = isqrt(yy)
    if yy == y * y:
        break
    x += 1
print(x - y)
print(x + y)
print(steps)
wise cargoBOT
#

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

001 | 7368787
002 | 15485863
003 | 745002
vocal basin
candid pike
#

It seems like sometimes people will join in get someone to answer their question then they ditch the call lol

potent carbon
#

Lol

candid pike
#

I’m at work so I can’t unmute rn

#

Yea we are hybrid

#

2 days at home 3 in office

potent carbon
#

What do you do when you go in office?

#

Take online meetings...?

candid pike
#

Listen to you bimbos talk lol

potent carbon
#

Loll

candid pike
#

Nah I just sit here and run SAS scripts

#

Yurp

#

Only job I could get without a degree

potent carbon
#

What's your job title?

modern yacht
candid pike
#

lol no idea we just moved to SAS Viya and the only reason I took the job is cause it’s the only place I could get a job offer. I’m a associate quantitative analyst

vocal basin
#

funny when articles about a programming language include sections like this

candid pike
#

Ohio is gas

#

I rep it

#

Not me lol

#

Podcast and MF Doom mix’s get boring so I join here

potent carbon
#

Haha Ohio is a meme

candid pike
#

I was told they were going to move to python so I was excited to take the job but they decided not to switch

potent carbon
#

Oof

#

I’m sure they’ll be at Python in 1-2 business years

modern yacht
candid pike
#

They say SAS viya handles large data better than python so they are just upgrading our environments rather than switching to python

potent carbon
#

Lame

vocal basin
candid pike
#

I’m running a query with 2.5b records and it took 14 hours yesterday

#

Did nothing all work day

#

After this years up I’ll be looking for work in a different state

#

I need out of Ohio lol

potent carbon
#

Loll

candid pike
#

The guy that heads the decisions like upgrading to viya is in his 60s

#

Been with the company for like 30 years

#

It’s chase though lol

#

Not like it’s a small company

potent carbon
#

Back in my day we used to code with assembly

candid pike
#

Are all y’all in the states?

#

I’m trying to find someone from the states that moved to another country. I’d like to move and work overseas rather than staying in the states

#

Everywhere I want to travel and see are all over seas

#

I mean we are pretty bad at taking care of ourselves

#

I think we have the means to fix or repair the damages we just don’t

#

I would love that lol

#

I just don’t have a reason to stay in the states besides work and I know the language

#

If I could get a chance to move overseas somewhere safe and work I would in a heartbeat

#

Yea I could see both party’s doing that

modern yacht
#

Hey @peak depot

peak depot
candid pike
#

My girlfriend does that with the Amish

#

The Amish are generally really rude in Ohio

rugged root
#

Fair

whole bear
#

Yo

rugged root
#

Jerks are jerks

modern yacht
candid pike
#

Or kick him in the chest

#

Gotta be stern sometimes

rugged root
#

Wait

#

!pypi auto_guild

wise cargoBOT
#

Creates a Discord server based on a template you layout, making it an easy and quick way to flesh out a server to fit your needs.

gentle flint
modern yacht
rugged root
gentle flint
#

just googled "depressed it guy accountant"

peak depot
rugged root
#

"Oh god, I'm being pulled into Hell! I'm Hell sinky!"

potent carbon
#

Spongebob the best

modern yacht
#

how the heck is this even possible

  new_list = [
                        {
                            key: int(value)
                            for key, value in line.items()
                        }
                        for line in dict_data
                    ]```
rugged root
#

We usually shorten it to PyDis

modern yacht
potent carbon
#

Hep-C?

#

Oh Pepsi

rugged root
#

!projects

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.

rugged root
#

A unique multiplayer game built on a free Web API. The best sandbox platform to learn a new skill or apply your knowledge in a fun and meaningful way. Use any programming language with our RESTful API to control the most powerful fleet in universe.

#

Could do something with this

potent carbon
#

Do that loll

#

Eww what

rugged root
#

Back in a sec

potent carbon
#

Okay

rugged root
#
def __innit__(self):
modern yacht
potent carbon
#

Lol

#

Let er rip

#

Not the slinky lol

#

No it sounds normal

modern yacht
#

Would you advice for sleeping pills @rugged root

potent carbon
#

Melatonin good stuff

modern yacht
#

wait what??

potent carbon
#

What did you say? Warm milk and sugar?

#

Whiskey helps

lucid blade
#

horlicks

#

its an old uk drink

potent carbon
#

Nice

modern yacht
lucid blade
potent carbon
modern yacht
#

More Uk product not available in my country

lucid blade
stark river
#

and milo

modern yacht
#

what kind of subaru mind sharing a pick @lucid blade

rugged root
#

A tisket, a tasket, you need a new head gasket

modern yacht
#

@lucid blade share the pick of the subaru

lucid blade
#

YO

#

forester 2001 sf5 2.0 turbo 5 speed manual

#

arctic silver ... 3" prodrive exhaust system, decat, stainless headers, decat up-pipe, gfb dump valve + some other bits and bobs

lucid blade
modern yacht
#

how many inches are the wheels

lucid blade
#

17"

#

there off a mk2

modern yacht
lucid blade
#

yeah i paid £80 for them with tyres 😄

modern yacht
lucid blade
#

nah a guy bought them for his but were a different stud pattern

modern yacht
#

how many horses does she make

lucid blade
#

177 currently its a stock tune

#

but the stage 1 im aiming for 260-300

modern yacht
lucid blade
#

yeh i think anything over 300 will be too much anyway ... and the mods to go to 300+ are expensive

modern yacht
lucid blade
#

£5k for forged rebuild

#

i doubt ill go that far though

#

also they're getting quite rare here in the uk

languid copper
#

hello

lucid blade
#

thats 1/100 left on the road

#

@languid copper hello 🙂

languid copper
#

wat goes on

rugged root
#

Just shooting the shit

modern yacht
#

Deem!! that's some chunk of change over there man sorry my lights were off for a sec

modern yacht
rugged root
#

air lifters
I choose to interpret that as he's turning the car into a hovercraft

modern yacht
rugged root
#

No idea, that's never been my area of expertise. I wasn't a CS major

modern yacht
#

@minor sage where do you live man

rugged root
modern yacht
#

Hey under 15 are present in the server voice note

lucid blade
#

oh air ride lol

#

thats expensive and u need to loose space for thhe compressors / tank

#

im going with bc coilovers when i have the $$$

modern yacht
#

Honestly for a Subaru that's a pretty good car project you have over there and it being a Subaru it's also cool.

minor sage
#

@peak depot

modern yacht
rugged root
#

Sorry, I'm slammed at work right now

#

Lot more things got added to my plate than I expected

modern yacht
#

yeah

#

wassup

whole bear
modern yacht
#

am not really man i think it has to do with your current shifting and logins you have tried to make with the incorrect inputs maybe give it

#

well beyond that am unable to produce a solution for you that's out of my plate

#

welcome mate

#

Yeah that's a pretty nice approach to take well maybe try the get in touch with or even try out their helper email

#

Fuzz they are really trying to avoid you at all cost

#

Good luck

edgy nymph
#

pls unmute me

minor sage
#

@rugged root were learning neural networks tomorrow 9am sharp

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.

lavish rover
#

Escape while you still can

somber heath
#

@royal blade 👋

minor sage
lavish rover
#

Indeed

#

Take it from someone who deals with neural nets 8 hours a day

somber heath
#

@quasi yacht 👋

quasi yacht
#

this sucks

#

hi

#

LMAO

#

goodbye

somber heath
#

@sudden barn brb

sudden barn
tall stump
#

yo @sudden barn @tulip plover

sudden barn
#

You need to be active on the server in text.
And then write a command in bot chat.

#

To get a role that lets you talk.

#

:)

tall stump
#

nope you said it right the first time

#

sear isssss

#

nope

#

yes

#

yes

#

bull greek god

sudden barn
#

Why not Sirus?

tall stump
#

im learning python rn

#

i started this week

sudden barn
#

Well... Depends on what you want from this language.
But it's quite versatile.

#

Mostly used in backend and data science stuff.

#

Includion machine learning.

tall stump
#

talking to me?

sudden barn
#

Yeah.

tall stump
#

idk what i want out of it

sudden barn
#

If you wanna make software and applications, Python is probably not for you.

tall stump
#

i want to go into cyber Security

#

eventually

sudden barn
#

Ah... Good then.

tall stump
#

but i want to get my certificate

#

not a degree

sudden barn
#

Good luck!

#

Keep going.

#

I don't know much about the security.
But you probalby need to learn the leverls of network.
Protocols.
How ports work...
What makes a package and http requests...

#

No idea what you know already.

stuck furnace
#

Hey 👋

#

Because we're programmers 😄

#

So we count from 0...

sudden barn
# stuck furnace Hey 👋

Can you accept the friend request, so I can send the recording of that guy acting weird? :D
So you can judge as a mod...

#

Or I need to make a ticket...

stuck furnace
sudden barn
#

Not sure how that works...

whole bear
#

@rain agate

rain agate
#

ya

stuck furnace
#

Alright, not really sever-appropriate.

tulip plover
stuck furnace
#

Just leave pithink

#

¯_(ツ)_/¯

#

👀

#

Errrrm, I'm not really a web dev sorry lemon_sweat

#

Mocking maybe?

#

Yeah pretty much 😄

#

The best base class for most tests is django.test.TestCase. This test class creates a clean database before its tests are run, and runs every test function in its own transaction.

sudden barn
#

So it does create a DB to run tests. :\

#

No idea why people like Django. Especially funny to read LinkedIn posts and comments where people like "yeah, always use django".

#

:D

#

But I am a hater. So...

#

I'm not objective either.

stuck furnace
#

Alright, anyway cya 👋

sudden barn
#

Goodbye!

somber heath
#

@flint drum 👋

whole bear
#

my name was

#

previously

#

jan Apisu

#

the former is the correct

#

for my old name

#

but as people always call me the second jan

#

ive changed it to jan

#

and now you pronounce it as the second

#

shall I stream?

#

ah your not a moderator

#

hah your always around vc so i was in the impression that your a

#

moderator

somber heath
#

@celest jungle 👋

whole bear
#

did someone quack?

somber heath
#

@foggy spear 👋

foggy spear
#

?

somber heath
# foggy spear ?

You joined voice chat. I make a point of waving to people who do not yet have their unmuting privileges. That way, they're aware this, the associated text channel, exists.

foggy spear
#

i have a exam tmr lol

#

thats why i left

#

:(

tranquil jasper
#

yo anybody tryna help me out real quick

eager thorn
sly kayak
#

Hey

tranquil jasper
# eager thorn watcha need.

I want to find the like permutations of the like range of some number n that add up to n so like:
"""
n=2
[0,0,0,2]
[0,0,1,1]
[0,0,2,0]
[0,1,0,1]
[0,1,1,0]
[0,2,0,0]
[1,0,0,1]
[1,0,1,0]
[1,1,0,0]
[2,0,0,0]
"""
but i dont quite understand how to formulate this pattern into code like i got to here on 3 and started to lose it

"""
n=3
[0,0,0,3]
[0,0,1,2]
[0,0,2,1]
[0,0,3,0]
[0,1,0,2]
[0,1,1,1]
[0,1,2,0]
[0,2,0,1]
[0,2,1,0]

"""

i dont really even know what to call this kind of like "permutation" any help would be appreciated!

#

just getting into code tho not exactly sure how

sly kayak
#

try sending the code this way
```python
YOUR CODE HERE
```

tranquil jasper
#

well like the way i had it is find all possible permutations of the list of range(n) and then find the ones that sum up to n but that takes way too long and i think theres a more efficent alg

eager thorn
#

i would probably do this using a recursive approach 🤔

sly kayak
#

what if n = 1
you want the output to look like this?

[1, 0, 0, 0]
[0, 1, 0, 0]
[0, 0, 1, 0]
[0, 0, 0, 1]
tranquil jasper
#

yeah

sly kayak
#

You want it to always be a list of 4?

tranquil jasper
#

yeah always list of 4

vocal basin
#

it's easier not to think about permutations, if the goal is to list all options

#

since, apart from permutations, there are different sets of numbers that add up to n

tranquil jasper
#

well its not really permutations but not really sure what to call it

#

so base case should just be when one of the cells is occupied with n

vocal basin
#

all sequences s such that len(s) == m and sum(s) == n for given m and n?

tranquil jasper
#

yes

sly kayak
#

n = 2

[1, 1, 0, 0]
[1, 0, 1, 0]
[1, 0, 0, 1]
[0, 1, 1, 0]
[0, 1, 0, 1]
[0, 0, 1, 1]

[2, 0, 0, 0]
[0, 2, 0, 0]
[0, 0, 2, 0]
[0, 0, 0, 2]

right?

tranquil jasper
#

yeah

#

i kinda took the approach like treat it as one big number then find all of them in increasing order but if n is greater than 10 gets a little confusing

vocal basin
#

does the order matter?

tranquil jasper
#

order does not matter

vocal basin
#

it also generates them in sorted order, if you reverse the output

sly kayak
#

how about 3?

vocal basin
#
[0, 0, 0, 3]
[0, 0, 1, 2]
[0, 0, 2, 1]
[0, 0, 3, 0]
[0, 1, 0, 2]
[0, 1, 1, 1]
[0, 1, 2, 0]
[0, 2, 0, 1]
[0, 2, 1, 0]
[0, 3, 0, 0]
[1, 0, 0, 2]
[1, 0, 1, 1]
[1, 0, 2, 0]
[1, 1, 0, 1]
[1, 1, 1, 0]
[1, 2, 0, 0]
[2, 0, 0, 1]
[2, 0, 1, 0]
[2, 1, 0, 0]
[3, 0, 0, 0]
tranquil jasper
#

was that by hand or did you get it with code?

sly kayak
#

It's with code I guess

vocal basin
#

around ten lines of code

tranquil jasper
#

could i see?

vocal basin
#
def sequences(m, n):
    if m == 0:
        if n == 0:
            yield []
    else:
        for i in range(n + 1):
            for sub in sequences(m - 1, n - i):
                sub.append(i)
                yield sub
sly kayak
#

what is m?

vocal basin
#

length

sly kayak
#

ohh

#

gotchu

tranquil jasper
#

wow thats crazy ty

whole bear
#

@urban ridge

nova dove
warped raft
#

@royal blade how are you doing

warped raft
#

@wind raptor and @somber heath hello

#

how are you doing

#

dev i need your help

#

have you studied the three.js library

#

@wind raptor

#

oh

#

yeah you're right

#

yeah that is my issure

#

it is creating a lag

#

but the thing is that

#

the tutorial i am watching in that it doesn't lag

#

moreover it does not lag in the live preview

#

that makes sense

#

ahh it sucks

#

when you think of doing something

#

oh it was playing in that video

#

i thought @somber heath was saying that again and again

#

i was thinking to use that a backgroung

#

but not i can't

#

it feels absolutely great

#

😦

#

i want some

#

see ya later

willow gate
#

@wind raptor @rugged root @somber heath Hello

rugged root
#

Had to do a double take, thought this was Patrick Stewart

rugged root
#

That'll tell you what you need to know about the voice gate

eager thorn
rugged root
#

xXx69_GraveYardBoi_69xXx

scarlet halo
#

noodle

rugged root
#

From the final part of the academic decathlon in the movie Billy Madison. The actor is Jim Downey, formerly of SNL. I could not find a good version to use for a sound board, so I decided to upload my own.

What you've just said is one of the most insanely idiotic things I have ever heard. At no point in your rambling, incoherent response were y...

▶ Play video
mild quartz
rapid chasm
molten pewter
#

What do you call a vampire who wants to be an electrician? an Ampere.

gentle flint
amber raptor
#

!e python a = [] if not a: print('Hello')

wise cargoBOT
#

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

Hello
rugged root
#

Rabbit, why am playing with RabbitMQ

#

I don't know what I'm learning from it, why do I do this

amber raptor
#

use it for Discord bot

#

or doing tasks

rugged root
#

True

amber raptor
#

don't use RabbitMQ, use beanstalkd

rugged root
#

I think I read beanstalkd is a message broker and RabbitMQ is more of a worker broker?

amber raptor
#

they both just have messages

#
import time
import socket
import os
import json
import csv
import random

import requests
import greenstalk

BEANSTALK_IP = str(socket.gethostbyname(os.environ['BEANSTALK_ADDRESS']))
BEANSTALK_QUEUE = str(os.environ['BEANSTALK_QUEUE'])
BEANSTALK_STAT_QUEUE = str(os.environ['BEANSTALK_STAT_QUEUE'])
ZKILLBOARD_NAME=os.getenv('ZKILLBOARD_NAME', f"DiscordLoader{random.randint(1,1000)}")
ZKILLBOARD_URL = "https://redisq.zkillboard.com/listen.php"
beanstalk_client = greenstalk.Client(address=(BEANSTALK_IP,11300),use=BEANSTALK_QUEUE)
beanstalk_stat_client = greenstalk.Client(address=(BEANSTALK_IP,11300),use=BEANSTALK_STAT_QUEUE)
kill_count = 0

try:
    print("Starting up")
    while True:
        r = requests.get(
            url = ZKILLBOARD_URL,
            params = {'ttw': 3,
            'queueID': ZKILLBOARD_NAME}
            )
        if r.status_code != 200:
             print(r)
        elif r.status_code == 200:
            body = r.json()
            if body['package'] is not None:
                package = body['package']
                payload_body = {
                    "killid": package['killID'],
                    "killmail": package['killmail'],
                    "killboard": package['zkb']
                }
                beanstalk_client.put(
                    body = json.dumps(payload_body)
                )
                beanstalk_stat_client.put(
                     body = json.dumps(payload_body)
                )
                kill_count += 1
                print(f"{kill_count}")
except Exception as e:
        print(body)
        raise e```
rugged root
#

Oh huh

#

Neat

mild quartz
#
Replit Blog

It’s the most wonderful time of the year: Advent of Code! Advent of Code is a month-long programming challenge with a new daily puzzle you can solve in any programming language.

For many, Advent of Code is an excuse to learn a new programming language or practice a familiar one. No matter what programming language you choose to tackle the puzzl...

amber raptor
# rugged root Neat

reason I recommend Beanstalkd BTW is you don't need to precreate queues, if someone connects for a queue, queue is created, queues are deleted when everyone using them disconnects AND all messages are deleted.

rugged root
#

Ahh, okay that is quite handy

amber raptor
#

it also has no security so easy to get going, obviously don't internet expose it

whole bear
#

Rabbit where are you?

amber raptor
whole bear
#

You're not in the vc

amber raptor
#

I'm stuck on work meeting

whole bear
#

Makes sense

vocal basin
rugged root
#

Fair

#

And greenstalk is the one you recommend, right Rab?

amber raptor
#

it's not async though

rugged root
#

Meh, it's more just so I can learn about the concepts

#

py -m pip install [package_you_want_to_install]

vocal basin
# vocal basin rabbitmq has more ~~features~~ potential for confusion

way too many distinct modes of operation:

work distribution (default/direct exchange with ack)
just messages (default/direct exchange without ack)
RPC (either of two previous but with reply-to and correlation-id)
fanout
pub-sub (topic exchange)
whatever headers exchange is
streams

rugged tundra
#
#

@mild quartz this is the paper the researcher was pointing to as reference that LLMs have some level of 'world model' or world representation

vocal basin
rugged root
#

@eager thorn We're hearing folks in your background

#

Cheers

eager thorn
rugged root
#

All good all good

vocal basin
#

chess AIs are forced in matches to play non-draw-ish openings often

somber heath
#

"Two AIs in a room. They might kiss."

amber raptor
vocal basin
#

yeah, just pointing out another difficulty about rabbitmq

vocal basin
#

7-piece endgames are all solved, iirc

#

like, brute-force solved

eager thorn
#

looks like i found the issue @rugged root

#

😒

rugged root
#

Yeah that'd do it

#

Weird

eager thorn
#

of course GPT tells me the one thing i forgot to check, I'm offended.

vocal basin
gentle flint
somber heath
#

(╯°□°)╯︵ ┻━┻

#

If you make a mistake in Europe, is it Euroneous?

molten pewter
#

"If you doubt the ubiquity of corn you can take a chemical test. It turns out that corn has a peculiar carbon structure which can be traced in everything that consumes it.'

#

Nattō (納豆) is a traditional Japanese food made from whole soybeans that have been fermented with Bacillus subtilis var. natto. It is often served as a breakfast food with rice. It is served with karashi mustard, soy or tare sauce, and sometimes Japanese bunching onion. Within Japan, nattō is most popular in the eastern regions, including Kantō, ...

somber heath
#

Nuclear Gandhi is a video game urban legend purporting the existence of a software bug in the 1991 strategy video game Civilization that would eventually force the pacifist leader Mahatma Gandhi to become extremely aggressive and make heavy use of nuclear weapons. The claim was mentioned on the TV Tropes wiki in 2012, and continued until 2020, w...

rugged root
#

Huh, weird

#

So it was a myth for all that time until it became an actual bug

#

That's... weird

#

Or no wait

#

I'm confuzzled

#

Either way, back in a bit

peak depot
gentle flint
eager thorn
#

@rugged root mrs has christmas music playing for the kido, will be muted for a while 😒

somber heath
#

Rawr men.

woeful salmon
#

@lavish rover

Ramen is a Japanese noodle dish. It consists of Chinese-style wheat noodles served in a broth; common flavors are soy sauce and miso, with typical toppings including sliced pork, nori, menma, and scallions.

maggi doesn't come with meat (even vegitables are barely there), barely has any broth unless you really wanna lose all flavor so idk if i count it

lavish rover
#

yeah but we're not talking about the proper dish you make, he specifically asked instant ramen

#

that you get in packets

#

none of those come with meat and vegetables either

woeful salmon
#

i guess so xD then i've also had topramen curry noodles which is probably the only other instant noodles i've been able to endure eating other than maggi

somber heath
#

Instant ramen. Superluminal noodles.

#

Big badda boom.

woeful salmon
#

also if google looses its gonna start such a big learn android development! boom xD as they won't take 30% of your profit anymore

#

i might take the chance to make 3 full blown android tutorials, native with java / kotlin, react native and maybe a game dev tutorial with a mobile game in unity xD

#

if epic wins that is

eager thorn
#

There's no good ramen brands here anymore to fix at the house, but there's one ramen place that is so good near us 🔥

molten pewter
#

Kebab (UK: , US: ; Persian: كباب, kabāb, Arabic: كباب, [kaˈbaːb]; Turkish: kebap, [cebɑp]), kabob (North American), or kebap or kabab is roasted meat that originates from the Middle East but has been popularised by Iranian cuisine & Turkish cuisine. Many variants of the category are popular around the world, including the skewered shish kebab an...

#

https://en.wikipedia.org/wiki/Shawarma#:~:text=Shawarma (%2F%CA%83%C9%99%CB%88w,turning%20vertical%20rotisserie%20or%20spit.

Shawarma (; Arabic: شاورما) is a Middle Eastern dish that originated in the Levant region of the Arab world during the Ottoman Empire, consisting of meat cut into thin slices, stacked in an inverted cone, and roasted on a slowly turning vertical rotisserie or spit. Traditionally made with lamb or mutton, it may also be made with chicken, beef or...

#

Also Gyro...

gentle flint
rapid chasm
gentle flint
woeful salmon
#

@rugged root we generally don't use mail alot here outside of businesses

#

even before we had mobile phones it wasn't common

rugged root
#

Fair

woeful salmon
#

@west lion depends on wether they enjoy programming or if its just something they have to do for money, the same can be said for any other hobby one may have as a job as well be it art or music

little pond
#

Hey guys,
Can someone suggest a shorter code than this?
# Binary to Decimal: Write a program to convert a binary number to its decimal equivalent. binary_code = input() binary_empty_list = [] for i in binary_code: binary_empty_list.append(i) binary_code_list = list(map(int, binary_empty_list)) print(binary_code_list) def binary_to_decimal_converter(binary_code_list): sum = 0 for i in binary_code_list: sum += i*(2**(len(binary_empty_list)-i)) return(sum) binary_to_decimal_converter(binary_code_list)

woeful salmon
#

python does allow you to just use the int function with base 2

little pond
frozen owl
gentle flint
rugged root
#

That is a really clean note

#

That's crazy

frozen owl
#

very theraputic

gentle flint
frozen owl
#

nah i like the first one more

#

still clean tho

gentle flint
#

sure

#

I put it up for comparison

rugged root
#

!stream 425552190283972608

wise cargoBOT
#

✅ @peak depot can now stream until <t:1702581779:f>.

civic spade
#

@gentle flint could you help me with bootstrap?

peak depot
#

The first flute was the best!

#

Got some Zelda vipes

rugged root
#

Very true

peak depot
#

I have been conquered:

scarlet halo
#

now i get to see my pc crumble from custom discord css (it flickers alot and i kinda broke it)

rugged root
#

Back later, meeting time

rapid chasm
gentle flint
short owl
#

try a C64 assembler emulator @rapid chasm

#

assembly ( ASM ) is extremely fast , but it has lots of basic parts ( granular ) , its a real discipline

#

C is a human convienience , its close to english , the power of C is the compiler , it will translate C to ASM better than most humans can do

frozen owl
#

rust goated 👑

stuck furnace
#

@high token There's an MIT course you might be interested in...

stuck furnace
#
MIT OpenCourseWare

6.858 Computer Systems Security is a class about the design and implementation of secure computer systems. Lectures cover threat models, attacks that compromise security, and techniques for achieving security, based on recent research papers. Topics include operating system (OS) security, capabilities, information flow control, language security...

high token
#

Thanks!

scarlet halo
#

i should not be up rn

#

eh its only 9PM

#

nah

#

i should not be on my pc rn*

scarlet halo
#

well i dont have a beard.

high token
#

grow one?

scarlet halo
#

nah

stuck furnace
#

Australia, I think?

somber heath
#

@nocturne scroll 👋

nocturne scroll
#

I can't talk

#

Idk why

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.

nocturne scroll
#

Well maybe later

somber heath
#

@azure fox 👋

azure fox
#

how do I mic

#

i need 50 messages

wise cargoBOT
#

failmail :ok_hand: applied timeout to @azure fox until <t:1702602891:f> (10 minutes) (reason: burst spam - sent 8 messages).

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

somber heath
#

@azure fox This is why reading the directions is important.

muted hinge
#

!tvmute 2w Spamming to reach our voice verification requirements is strictly prohibited. You can still join voice channels without being verified; you just have to get some legitimate server activity in order to get verified.

wise cargoBOT
#
Bad argument

Could not convert "user" into UnambiguousMember or UnambiguousUser.
2w is not a User mention, a User ID or a Username in the format name#discriminator.

muted hinge
#

!tvmute 301348598463856640 2w Spamming to reach our voice verification requirements is strictly prohibited. You can still join voice channels without being verified; you just have to get some legitimate server activity in order to get verified.

wise cargoBOT
#

failmail :ok_hand: applied voice mute to @azure fox until <t:1703812023:f> (14 days).

willow gate
#

@somber heath hello

somber heath
#

@rich cipher 👋

rich cipher
#

hi

somber heath
#

@oblique turret 👋

scarlet halo
#

hey

#

at school lmao

#

two of my classmates are lise

#

listening to weird songs on spotify

somber heath
#

@finite tartan 👋

finite tartan
#

I meant to check another channel

#

oops X3

#

sorry for that

somber heath
#

All good.

mental hare
#

Hello

#

What are you doing

somber heath
#

@wooden parrot 👋

wooden parrot
#

hi

#

i can't speak

somber heath
#

@vapid egret 👋

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.

vapid egret
#

всем ку

#

микро не работает

wooden parrot
#

да
есть такое

#

!voice

vapid egret
#

с какой ты страны

#

Н

#

?

somber heath
#

@rough cobalt 👋

rough cobalt
#

hi

vapid egret
#

ты ржачный

#

лялялял

#

@finite tartan ты поляк?

rough cobalt
#

Эта ваще законна

wooden parrot
#

не получается

vapid egret
#

крутой

wooden parrot
#

микро не работает(

vapid egret
#

я только завтра смогу говорить

#

верефку надо пройти

rough cobalt
# wooden parrot не получается

Он же тебе нормальным английским языком написал в лс, ты должен пробыть 3 дня, написать 50 сообщений и тд

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.

wooden parrot
vapid egret
#

@rugged root

#

хаахха смешной тип

rough cobalt
wooden parrot
rough cobalt
#

3 дня над пробыть, 50 сообщений написать и еще чет

#

крч да

vapid egret
wooden parrot
#

(

vapid egret
#

дохуя надо

rough cobalt
#

о мама ландыши ландыши

vapid egret
#

на это челы смешные

rough cobalt
vapid egret
#

@finite tartan Сколько тебе лет?

#

скок?

rough cobalt
#

omg

rough cobalt
#

You are support Ukraine ?

vapid egret
#

@finite tartan Это правда что ты лошок?

somber heath
#

@proven current 👋

vapid egret
#

@finite tartan Лялялля

rough cobalt
#

@somber heath how old are you?

vapid egret
#

@finite tartan You loser

#

pidrinka

#

mandarinka

rough cobalt
#

Ya sosu chlen

vapid egret
#

@finite tartan You like sosat chlen negrov?

rough cobalt
#

@finite tartan say pls: "ya sosu chlen"

somber heath
#

<@&831776746206265384> Apologies for the bother.

vapid egret
#

ражака капец

rough cobalt
#

Omg, poco

muted hinge
#

!rule English please use English

wise cargoBOT
#

4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.

vapid egret
#

@finite tartan Zastavlal modera sosat

vapid egret
#

@finite tartan Perdyn

muted hinge
#

I will start handing out mutes if English is not used

vapid egret
#

@finite tartan Lox ebaniy mama v konave zdoxla kak otez

#

Sosat

finite tartan
#

That's just insulting

vapid egret
#

moderi sosyt

muted hinge
#

!shh

wise cargoBOT
#

✅ silenced current channel for 4 minute(s).

muted hinge
#

!mute 1179005209515671622 6H You were told to speak English. Take a break to read our #rules before you return.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @vapid egret until <t:1702667275:f> (6 hours).

muted hinge
#

!unshh

wise cargoBOT
#

✅ unsilenced current channel.

somber heath
#

@worldly raptor 👋

#

@opal willow 👋

opal willow
#

Heyaa

somber heath
#

@ember meadow 👋

ember meadow
somber heath
#

@astral quiver 👋

#

@kindred shoal 👋

rugged root
#

I'm sort of here. Prepping things for holiday deliveries

somber heath
#

Canned and dehydrated food...

#

@median cipher 👋

median cipher
#

@somber heath hlo

#

can you give me a server which has owo bot

#

plese

wind raptor
warped raft
#

can anyone recommend any bg color

#

btw hello everybody

rugged root
#

If you lighten the background color a bit I think it'd be good

#

Kind of reminds me of the Discord blurple

obsidian dragon
#

SKY BLUE?

exotic moss
#

should i shoot for the browns or wait for reds to be available

rugged root
#

I like browns because I like the tactile feel

warped raft
#

how about this

exotic moss
#

well the keeyboard i have now sucks bc it seendss muulttiple inputs and it has cherry reds

#

😭

rugged root
#

Press down on the keys a bit harder, make sure they're properly seated

#

Like not on the regular

#

Just to do a quick maintenance thing

exotic moss
#

i've tooken this thing apart and deep cleaned it every now and then but this started happening a few weeks after getting the keyboard and just got worse over time

waxen plover
#

Thats depressing

exotic moss
#

but ive had the kb for like 2 years now so i think an upgrade is worth

eager thorn
exotic moss
#

i'll try the browns, i can always switch them out with other switches

rugged root
#

True that

warped raft
#

see ya later

eager thorn
exotic moss
#

i may also like russian layouts

exotic moss
whole bear
#

Yo people

#

Its meeee

#

I know you hemlock

#

I had to make a new account

#

No i had to make a new discord account

#

Im the funny python guy

#

Oh wait

#

No

#

I wasnt banned

#

I had issues with stalkers

exotic moss
#

why cant they name things the same on amazon vs their website smh

waxen plover
#

Now they know

whole bear
#

Because they would keep coming back

#

Noooo

#

Luckly theire not here on this server hehe

#

"I hope so"

#

I was around there by a guy who trashed his car battery

#

If you guys remember him

#

I think yes

#

Yes yes that guy

obsidian dragon
whole bear
#

But i was there, i wasnt this guy

rugged root
whole bear
#

I was the guy who saw you do some python basic exercises to see what you have missed

whole bear
wind raptor
whole bear
#

Wow

#

I remember that one keyboard you can litterally wear as gloves

#

So wierd

#

I saw people do some crab finger controll

rugged root
whole bear
#

The momment your opponnent does this

eager thorn
whole bear
eager thorn
whole bear
#

People who play pixel gun

eager thorn
#

gets a phone call

whole bear
#

Decimeters

#

My bed is around 55 decimeters long

#

Wait lol no thats too long

#

15 decimeters hehe

#

Btw people use deciliters for drinks

#

5 deciliters

#

American people are kinda wierd, they use feets

#

Imagine using feets to mesure

exotic moss
#

hey man it's what we have on hand

#

or should i say on foot

whole bear
#

Bro is getting wasted

whole bear
#

:b

woeful salmon
#

my name on this server is NoodleReaper and i get caught eating noodles on this server alot too :x

whole bear
#
if True is not False:
    print("why")
#

The best stones are always the kitney stones

#

Wine is also just liquid grapes

#

Vodka is liquid potato

rugged root
whole bear
#

Liquor is liquid fruits

whole bear
woeful salmon
#

o- o just drink more water and you'r probably be fine

rugged root
#

Make jewlery out of it

woeful salmon
#

i'd be back in a bit

whole bear
#

Im kidding i have an unlimited cobblestone generator at home

rapid chasm
whole bear
#

Liquid bread hmmm

exotic moss
#

definitely beer

whole bear
#

Im about to make liquid pizza

#

Is it liquid pizza if you mix things like liquid bread, mozerella, tomato and other things?

#

A pizza cocktail

#

So cool, the python discord talks about alcohol while the taxi driver ones ban it lol

#

Programmer is so much better

#

Honnestly i dont like alcohol

#

I hate the burn in the troat

#

Il stay by the alcohol less drinks

stark river
#

donate to mozilla 🫶

whole bear
#

What do u do with the white chunks after i drunk the mozzerella?

rapid chasm
rugged root
#

WinRAWR~~~<3 XDXD

whole bear
exotic moss
#

7zwip~~~~<3 XDXD

rapid chasm
whole bear
#

Ohhh

whole bear
stark river
#

windows doesn't have tar zip?

obsidian dragon
rugged root
eager thorn
stark river
#

jinja templating engine only works with python?

exotic moss
rugged root
exotic moss
#

HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response

wise loom
#

@thick marten
I've finished reading a summary about Philippe Flajolet's work on building methods for Automatic Analysis of Algorithms here.
He basically wanted given an algorithm to find the complexity automatically. This is of course complicated but from what Zimmermann says he made a lot of progress towards that goal:
https://members.loria.fr/PZimmermann/papers/aa.pdf

Now I'm reading a lecture note about a classification of generating functions here:
http://jaypantone.com/courses/winter16math118/lecture-notes/lecture-notes-03.pdf

rugged root
#

@obsidian dragon https://spacetraders.io/

A unique multiplayer game built on a free Web API. The best sandbox platform to learn a new skill or apply your knowledge in a fun and meaningful way. Use any programming language with our RESTful API to control the most powerful fleet in universe.

exotic moss
#

i dont remember that being there

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.

rugged root
#

@thick marten Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate

wise loom
#

@thick marten ^^ !voice

thick marten
#

but i don't qualify until next week

solid oyster
#

You need to be interactive without voice access through messages here first before you qualify...

bright bridge
#

what are we talking about?

rugged root
#

Reasons for why the voice gate is here

solid oyster
kindred marsh
#

i want to use ironpython in visual studio community 2019 for desktop application. can anyone help me to configure

finite tartan
#

We doing randmom keyboard reveals?

rugged root
#

It happens from time to time

finite tartan
#

Khali box whites :3

#

if your coding doesn't annoy your roommates, it's not clicky enough

whole bear
#

Hello

finite tartan
#

IronPython is cool

whole bear
#

Mindful and hemlock

woeful salmon
#

@wind raptor unit, integration and e2e?

kindred marsh
rugged root
#

If you're needing it for .NET support, I strongly advise just using C#, F#, or VisualBasic

woeful salmon
#

i just dropped out of top 5% in cs2 after climbing back up 😦 because i invited a friend to play who invited his friend who went afk in my match

rugged root
#

IronPython is a bit.... clunky

woeful salmon
#

i hate people

obsidian dragon
kindred marsh
rugged root
#

You should be able to have that functionality with C# and what not anyway, I would think

kindred marsh
exotic moss
eager thorn
#

loaded for me

scarlet halo
#

this thing looks so good i kinda want it (kinda = i really really want it)

exotic moss
frozen owl
#

how about tor

exotic moss
#

i dont care for it personally

lucid blade
#

brave has tor built in

#

i dont use it though

frozen owl
#

i know

#

i use brave

#

but i use tor browser for the authentic experience

lucid blade
#

its slow though

frozen owl
#

fair

#

but it's secure

lucid blade
#

kind of

frozen owl
#

can it substitute a vpn?

lucid blade
#

it all depends how u use it

frozen owl
#

just some dodgy web browsing

lucid blade
#

did u hear about the exit point crypto skimming

solid oyster
#

omg lol that's good to know about feet aniblobsweat

#

i stepped on a nail as a kid and it went through the other side... cried a lot too but had to walk to the doctor's

thorn vector
#

how can i open my mic?

#

?

rugged root
#

Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate

wise cargoBOT
#

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

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

lucid blade
#

oof

exotic moss
#

tuff

#

everytime i go near a random piece of metal i always barely tap it to make sure its not hot, same with the stove even if i know it hasn't been on in a day

cursive gust
#

Hey

#

Is it possible to code a trojan horse with python???

exotic moss
#

no

lucid blade
#

lol

cursive gust
#

Okay

exotic moss
#

python to high level you need to use brainfuck for that

lucid blade
#

yes

#

but not here

cursive gust
#

Will c++ work?

#

Thx

lucid blade
#

you can use lots of languages

cursive gust
#

Don't ask why I'm asking that

lucid blade
#

i wont

#

hacker

exotic moss
#

!rule 5

lucid blade
#

😛

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.

cursive gust
#

😉

lucid blade
#

im not

cursive gust
wind raptor
#

Please refrain from talking about any malicious implementation details on the server.

cursive gust
#

Okay

solid oyster
#

@lucid blade same, interest in cybersecurity and stuff like that got me into coding now that i studied coding, i'm interested in data and data processing it's cool when you go down coding rabbit holes because there's so much to learn!

#

it's like penetration testing and cybersecurity testing

#

for a class i had to write raw sql...

woeful salmon
#

@wind raptor question

solid oyster
#

we only glazed over security and sql injections which was a real shame, i wanted to dive into protecting my code better

woeful salmon
#

is this safe? in the context of next.js

`select * from users where username = ${user} and password = ${password}`
wind raptor
#

lmao

woeful salmon
#

xD

lucid blade
#

'' or 1=1 --

solid oyster
#

you need to learn what it is and what the logic behind it is not necessarily how to do it

lucid blade
#

@solid oyster select * from users where username = ${user} and password = ""'' or 1=1 --"

#

that would select all records from the db as 1 always will equal 1

exotic moss
shrewd island
solid oyster
#

a lot of scientists and inventors have died for less

#

@lucid blade not much would change, most people would rather be a drop in the ocean such as @peak depot said, and some billionaires would try to capitalize but it's not exactly different from what is currently going on

#

@peak depot interesting to learn about finland's gathering and winter prepping habits are similar to lebanon's. Growing up we always prepared for winter and then I came to the US and people don't really do anything different between seasons

woeful salmon
#

@wind raptor btw chris what were you testing?

solid oyster
#

hahaha chosen family is the best type

amber raptor
#

I’m here for it

solid oyster
#

no worries, I just want to hit the 50 messages and finaly be able to talk

peak depot
solid oyster
#

awww so fluffyyyy

#

they're adorable cat loafs

peak depot
#

The orange one has t-rex on his back

solid oyster
#

hahaha now i see it

peak depot
solid oyster
#

that's beautiful!

#

Did you have nice lights recently? there was a solar flare that was supposed to give more lights or something

peak depot
#

I dont go outside 😂

solid oyster
#

lol! same here

modern yacht
#

is it weird that i don't play games like you guys not even have an interest at all

cursive gust
#

Skibidi!

peak depot
#

Skipidipapapapau

#

Skipikidi pam pam pau

modern yacht
#

prapapa papa Big Shaq

cursive gust
#

Game

#

What's wrong in this image

#

Y'all gotta guess

rugged root
#

Mmm.... free food

#

!rule 6

wise cargoBOT
#

6. Do not post unapproved advertising.

solid oyster
#

my side project is building a laundry folding machine 😄

woeful salmon
#

"house work is useless shit"
me cleaning every small corner of my house to keep insects away because i hate them o-o
also me when i'm hungry and there's nothing to eat + i don't wanna eat out

solid oyster
peak depot
solid oyster
#

hahaha and they always fall behind on seeing the reels and memes

scarlet halo
#

me be like

rugged root