#ot1-perplexing-regexing

1 messages · Page 92 of 1

fresh basalt
#

When did YouTube start doing this?

#

I wonder if it's a push to promote shorts.

solemn tulip
#

I've used pen and paper a bunch for short-term todos as work because it's literally right there in front of me when I'm working

#

though I started dumping tasks and resources into a spreadsheet instead just for the sake of having a nice digital history of wtf I did historically

open fern
#

history is neat

wraith hound
#

physical planners my beloved

#

history and being trivially accessible

#

and the very tactile feeling of checking things off

umbral heart
#

Wanted to share some music I composed using python https://youtu.be/3UkuBhURwwg?si=o684UMCv7rOWNCLz

This I believe, is my first electronic piece. I composed it entirely using trigonometry to choose the pitches, and coded the program in python, using the midiutils library. In the beginning, the first voice is playing a sine function, and then the second starts with cosine, and shortly afterwards, the third voice starts with sin(x)/x. The midi v...

▶ Play video
rough sapphire
#

what do you mean composed using python?

#

are you key constraining?

thick ore
#

this is absolutely mind blowing

#

i WILL be making a roblox game

umbral heart
#

The code is linked in the description

glossy niche
#

https://youtube.com/shorts/ASLL00IiKpQ? homeless kittens? nah son, free cats

Hello Watching videos helps stray cats eat food.
I'm publishing the videos of our cat friends living on the street for you I hope you like it...
If you subscribe to my channel and you like my videos, I will be very happy.

If you would like to support via PATREON account, here is the link ➡ patreon.com/user?u=84196621

İNSTAGTAM https://instagr...

▶ Play video
tulip falcon
glossy niche
#

me?

#

around 10

#

at least 10, actually

tulip falcon
#

You have 10 cats?? Lmao

glossy niche
#

no, that's over my entire life, not all at once

#

last time I had a cat was 3 yrs ago :(

idle sluice
#

Clown to clown communication

grave cove
#

Based to based communication

lament cairn
#

ifunny

rough sapphire
#

Opal

soft violet
#

What does Python use as a backend for AI and data science?

fresh basalt
lament cairn
#

i am

fresh basalt
soft violet
#

I mean that the image fails to take a critical point into consideration.

fresh basalt
#

Oh I see.

#

I mean anything like that is going to do that.

#

Things like that miss the point in order to pretend something is funny.

soft violet
#

Programmer 2 is still a silly-pants.

fresh basalt
#

So people can bandwagon with surface knowledge.

#

I think the sillypants are in this channel right now.

tulip falcon
#

If they are marketable enough with what they got I respect the hustle

#

Making a dollar out of fifteen cents

lapis trench
#
Godly count: 10046
Legendary count: 20130
Rare count: 50037
Uncommon count: 40060
Common count: 373732
Trash count: 505051
Object count: 0
Leaf clover count: 0``` my game
harsh tundra
#

Uncommon being rarer than rare?

lapis trench
#

idk how

#
Godly count: 9906
Legendary count: 20158
Rare count: 50392
Uncommon count: 79998
Common count: 401073
Trash count: 437517
Object count: 0
Leaf clover count: 0```
#

i need to get a object

tulip falcon
#

Pastebin some code

lapis trench
#

but its 8 in 100 billion to get ONE

tulip falcon
#

object object

lapis trench
#

the code?

#
import random

# Define the number of iterations
iterations = 1000000

# Counters for each outcome
ancient_count = 0
godly_count = 0
legendary_count = 0
rare_count = 0
uncommon_count = 0
common_count = 0
trash_count = 0
object_count = 0
leaf_clover_count = 0

for _ in range(iterations):
    chance = random.uniform(1.0000000000, 1000.000000000)
    
    # Check for each outcome
    if 1.00000001 < chance < 1.00000009:
        object_count += 1
    if 1.0001 < chance < 1.0003:
        leaf_clover_count += 1
    elif 1.0 < chance < 2.0:
        ancient_count += 1
    elif 3.0 < chance < 13.0:
        godly_count += 1
    elif 14.0 < chance < 34.0:
        legendary_count += 1
    elif 35.0 < chance < 85.0:
        rare_count += 1
    elif 86.0 < chance < 166.0:
        uncommon_count += 1
    elif 166.0 < chance < 566.0:
        common_count += 1
    else:
        trash_count += 1


print("Ancient count:", ancient_count)
print("Godly count:", godly_count)
print("Legendary count:", legendary_count)
print("Rare count:", rare_count)
print("Uncommon count:", uncommon_count)
print("Common count:", common_count)
print("Trash count:", trash_count)
print("Object count:", object_count)
print("Leaf clover count:", leaf_clover_count) ```
#

i got one leaf clover before

#
Godly count: 9915
Legendary count: 19992
Rare count: 49983
Uncommon count: 39939
Common count: 373378
Trash count: 505754
Object count: 0
Leaf clover count: 1
#

oh i got it twice

#

10,000,000 iterations im doing now

tulip falcon
#

Do you know dictionaries? I got a challenge for u, put the chances for each drop into a dictionary

lapis trench
#

ok!

#

thats ez

jovial oriole
#

Marble slab

lapis trench
#
import random

# Define the number of iterations
iterations = 10000000
dic = {'object': 0,'lucky leaf': 0,'ancient':0,'godly':0,'legendary':0,'rare':0,'uncommon':0,'common':0,'trash':0}
# Counters for each outcome
ancient_count = 0
godly_count = 0
legendary_count = 0
rare_count = 0
uncommon_count = 0
common_count = 0
trash_count = 0
object_count = 0
leaf_clover_count = 0

for _ in range(iterations):
    chance = random.uniform(1.0000000000, 1000.000000000)
    
    # Check for each outcome
    if 1.00000001 < chance < 1.00000009:
        dic['object'] += 1
    if 1.0001 < chance < 1.0003:
        dic['lucky leaf'] += 1
    elif 1.0 < chance < 2.0:
        dic['ancient'] += 1
    elif 3.0 < chance < 13.0:
        dic['godly'] += 1
    elif 14.0 < chance < 34.0:
        dic['legendary'] += 1
    elif 35.0 < chance < 85.0:
        dic['rare'] += 1
    elif 86.0 < chance < 166.0:
        dic['uncommon'] += 1
    elif 166.0 < chance < 566.0:
        dic['common'] += 1
    else:
        dic['trash'] += 1

for txt in dic:
    if txt == 'object':
        object += 1
    elif txt == 'lucky leaf':
        leaf_clover_count += 1
    elif txt == 'ancient':
        ancient_count += 1
    elif txt == 'godly':
        godly_count += 1
    elif txt == 'legendary':
        legendary_count += 1
    elif txt == 'rare':
        rare_count += 1
    elif txt == 'uncommon':
        uncommon_count += 1
    elif txt == 'common':
        common_count += 1
    else:
        trash_count += 1
print("Ancient count:", ancient_count)
print("Godly count:", godly_count)
print("Legendary count:", legendary_count)
print("Rare count:", rare_count)
print("Uncommon count:", uncommon_count)
print("Common count:", common_count)
print("Trash count:", trash_count)
print("Object count:", object_count)
print("Leaf clover count:", leaf_clover_count)
tulip falcon
lapis trench
#

or ```py
import random

iterations = 10000000

counts = {'object': 0, 'lucky leaf': 0, 'ancient': 0, 'godly': 0, 'legendary': 0, 'rare': 0, 'uncommon': 0, 'common': 0, 'trash': 0}

for _ in range(iterations):
chance = random.uniform(1.0000000000, 1000.000000000)

if 1.00000001 < chance < 1.00000009:
    counts['object'] += 1
elif 1.0001 < chance < 1.0003:
    counts['lucky leaf'] += 1
elif 1.0 < chance < 2.0:
    counts['ancient'] += 1
elif 3.0 < chance < 13.0:
    counts['godly'] += 1
elif 14.0 < chance < 34.0:
    counts['legendary'] += 1
elif 35.0 < chance < 85.0:
    counts['rare'] += 1
elif 86.0 < chance < 166.0:
    counts['uncommon'] += 1
elif 166.0 < chance < 566.0:
    counts['common'] += 1
else:
    counts['trash'] += 1

for outcome, count in counts.items():
print(f"{outcome.capitalize()} count:", count)

#

should i add a even luckier one?

tulip falcon
lapis trench
#

oh

#

what about the others

severe wadi
tulip falcon
#

That is true, and that's why we need to change this code to not use hard-coded numbers

severe wadi
#

but I would say, this seems like the job for random.choices

tulip falcon
#

Yup, but you just highlighted the error prone nature of the magic numbers, we change it once and we must change it everywhere

#

forget to change it and we now have a logic error

#

If the chance was a variable it's now getting changed everywhere at once and we can do comparison against that instead

severe wadi
#

hm true

lapis trench
#

oh 😦

#

then my code is a failiure

severe wadi
#

kinda

#

not that much

tulip falcon
#

Don't be afraid of failure

lapis trench
#

yay hacker is 1 in 10 billion

lapis trench
#

hey guys

#

guys?

#

did you guys know that 1 is equal to ((sin(90) 2)%3((sin(90) 2)%3)−((sin(90) 2)%3)+((sin(90) 2)%3)−((sin(90) 2)%2)+((sin(90) 2 )%2)−((sin(90) 2 )%2)+((sin(90) 2
)%2)−((sin(90) 2 )%2)+((sin(90) 2 )%2)−((sin(90) 2)%2)+((sin(90) 2)%2)?

young shoal
#

¯_(ツ)_/¯

hot umbra
#

hi peeps

#

you ever py the thon

rough sapphire
#

Like when I hecking catch you. . .

#

Like when I ACTUALLY HECKING catch you. . .

thick ore
lament cairn
#

exactly

thick ore
#

a DI framework 💀

jaunty wraith
#

they overcooked

thick ore
#

nah it's perfectly cooked

#

nobody is trying to code in lua

#

this is essentially roblox nextjs

rare wing
#

Bro

#

1 is the largest number

#

Infinity is the smallest number

severe wadi
#

my schools crazy bro 💀

#

a guy slapped someone because he thought that guy was gay

#

so the guy he slapped choked him

#

so he went on insta and put a story about how he's gonna beat everyone up tomorrow

#

but then everyones clowning him for it 💀

small coral
odd jasper
#

Hello, does anyone know of any businesses that use ai chatbot and specially ai for onboarding new clients? I need to research them for college.

junior marten
sharp hatch
#

is it possible to pip install happiness

fresh basalt
#

!pip happiness

royal lakeBOT
#

this package is for spreading happiness

Released on <t:1622628649:D>.

fresh basalt
#

yes

rough sapphire
sick nexus
#

?

young shoal
#

e-married

#

or just married, i guess

#

that has nothing to do with me pithink

#

🤔

#

why not just not make it public if you don't want people bring it up

#

i actually did not know that

fresh basalt
#

You could've talked about this via DM

lament cairn
#

⬜ I'm not a robot

#

It means whatever you want it to mean

fresh basalt
#

I don't care about you or your relationship tbh.

#

no offense

#

Your personal life is none of my business.

#

I don't need to know about it.

#

I'm sure a lot of other people feel the same way. When you bring it up you make things awkward.

#

This Discord is absurd. I'm just going to block you.

high verge
high verge
heavy trench
#

r/fuckcars is #1 subreddit

rough sapphire
#

Yeesh, who stepped in THAT guys corn-flakes?

#

Ahp ahp. Wait. . .It was me. . .Sorry. LMFAO.

#

It was a joke within a joke that didn't land.

#

pce.

#

Get out.

#

😂

#

lol , good night.

rough sapphire
#

I would have been willing to help if it were just the mathematicians, but I am NOT messing with the IRS.

rare wing
#

Lol i say them im calc pro xD

rough sapphire
#

They will literally make you prove it by making you quantify the limits of infinity.

rare wing
#

IRS will not find my add

#

Thanks kilo

rough sapphire
rare wing
#

I used my frens profile cD

#

My chem teach called me we up for some gud questions this time

rare wing
rough sapphire
#

Good luck.

rare wing
#

What do i call you

rare wing
rough sapphire
heavy trench
#

do yall avoid lazy imports

soft violet
#

If not, I'm not sure what you mean by lazy import.

#

Wildcard imports are generally best avoided, but become more viable the more specialised to a given module you are from which you're importing *.

#

Say if you were writing a more-or-less tkinter-only widget library for use in other projects.

#

The more modules you bring into the mix as imports, the less you want to wildcard import.

#

Especially bad would be doing multiple wildcard imports from different modules, particularly if those modules had shared names within.

heavy trench
#

lazy import is like

def main():
import pandas as pd
pd....

So its imported in the function instead of at the top

soft violet
#

But I'm open to other reasons.

#

They'd have to be good ones, though.

timid latch
#

it could also be for optional dependencies like, "this is the only function that needs XYZ library, so install that if you want to use this"

#

could also be for optimization reasons, some libraries take a while to import, and if it is only used in a handful of rare cases it could make sense to only import it if it actually is needed

soft violet
#

It's an icky pattern in any event.

timid latch
#

sure, I would generally avoid it, but you could have your reasons

solemn tulip
#

it's kinda rare for it to be useful, but this one time at work it reduced startup time of a cli tool by up to like 10x 🥴

royal lakeBOT
#

gravity/run.pyx lines 51 to 54

static double inline __fastcall rad(const double& n){
    double x;
    x = std::cbrt((n)*0.00006043858598426405155780396077437254254473151104067966408139266230084688517755438041396726687326066555293905420003466760894667538460047290615619015597406323008705315200154775097711813154313619279318382)*1.2599210498948731647672106072782283505702514647015079800819751121552996765139594837293965624362550941543102560356156652593990240406137372284591103042693552469606426166250009774745265654803068671854055;
    return x*x; // basically convert mass to volume & finds roche limit squared```
jovial oriole
#

Came back to this file after 3 months, tf is this???

young shoal
#

"basic" stuff

rough sapphire
safe bane
#

What's antigravity

marble bay
#

try importing it

#

you'll see

#

:)

jovial oriole
jovial oriole
#

@grave cove

#

Robin meet robin

#

Robin, here is Robin

grave cove
#

hello

jaunty wraith
jovial oriole
#

Same

#

Robin

glossy niche
#

happy world serval day everyone

alpine tusk
fresh basalt
lament cairn
#

wtf

harsh tundra
rough sapphire
#

What is this otn?

grave cove
lament cairn
grave cove
#

snow kitty

rare wing
#

Wsg

thick ore
#

how do I tell my teammate about code formatting practices without it sounding annoying or arrogant

#

of course i could just commit to the repo with "format code" but i don't think that's right either

tardy rain
#

You tell them about formatters you want to use and then you tell them about pre-commit

soft violet
#

Lead by example.

#

Lead pipe.

#

Take your pick.

thick ore
#

a game that we were given the entire school year for

fringe rain
#

I've worked on a couple school projects with my friends myself, though the code did go via discord before github

thick ore
fringe rain
#

It might come off as annoying to have them learn PEP8 or setup format-on-save in their editor if its not something they're personally interested in

#

Plus this works out anyways

#

its probably not that big of a deal either ways, my friends probably just wouldnt care

thick ore
#

icic

fringe rain
#

If they're not programmers to begin with, I'm surprised you got them as far as github at all haha

thick ore
#

it's a school club

#

programmers join... i'd expect them to know what a github is

fringe rain
#

a club sounds voluntary

thick ore
#

yep

fringe rain
#

then they've signed up for the pain! go all out

thick ore
#

hell yeah

#

time for dependabot and a fuck ton of CI

tardy rain
#

Im sure they wouldnt mind adopting formatting

jaunty wraith
#

I do not recognise this otn

frozen coral
#

Haven't seen moyen around in a while, wonder where they went

young shoal
frozen coral
#

understandable

jaunty wraith
#

cat

lament cairn
jaunty wraith
#

look at that floofy tail

glossy niche
jovial oriole
#

💀

glossy niche
rough sapphire
#

700!! elo

acoustic moss
alpine tusk
quick ledge
rough sapphire
glossy niche
#

2 weeks to learn stat then calc then ML

#

wild

#

also stat then calc, wild

carmine apex
glossy niche
#

mfs take a data analytics boot camp, make a notebook on this and then put "machine learning engineer' in their linked in afterwards

#

i do feel bad for these ppl cause some of them did legit get scammed yert

bright turret
#

guys is the freelancing is so saturated ?

uneven pine
#

Is this is but do the does?

bright turret
uneven pine
#

Me too

rough sapphire
#

Hey chat

umbral heart
#

my computer wont let me uninstall google drive

#

it says this

#

but look at my taskbar

#

nowhere is it in use

#

is this google not letting me uninstall something

jovial oriole
#

System tray

#

Task manager

#

@umbral heart

umbral heart
jovial oriole
#

Close in system tray

umbral heart
#

ok

#

where is system tray

#

ok i think i closed it

jovial oriole
#

Ok

umbral heart
#

whew thanks

fresh basalt
#

Is Windows dumbing down the UI?

cobalt remnant
#

Me when I see someone still using flake8

jovial oriole
#

any1 wanna 1v1 me on an io game

fringe rain
#

Which one?

solemn tulip
thick ore
#

*formats your python code with prettier*

jovial oriole
fringe rain
#

No

jovial oriole
fringe rain
#

We live in different timezones

jovial oriole
rapid needle
#

Why are pycon us events held at seemingly irrelevant places

low chasm
#

💀

uneven pine
#

Because "seemingly relevant" places are expensive and obnoxious

honest star
#

how the fuck are we in march and there's still the threat of a gov't shutdown 😩

glossy niche
#

USA?

glossy niche
#

windows file explorer: struggles to open folder with 300 pics in it on an NVMe SSD with 5000mbps reads and a 6 core desktop CPU

my samsung phone from 2 years ago: here you go boss, every single photo of mao zedong that you have on your phone, all in under a second without you even asking

uneven pine
#

Pebkac no issues opening folders with thousands of high res images here

#

And it's on a SATA drive

#

The 6 core desktop CPU in question

lament cairn
#

kitty up

lament cairn
lament cairn
thick ore
#

gnome release videos feel so corporate

jovial oriole
#

The gnomes always trying to industrialize coral reefs

#

The propaganda wont work we wont let them

wanton delta
jovial oriole
glossy niche
#

"🗣️🗣️🔥" 🗣️🗣️🔥

jovial oriole
lime citrus
#

🗣️🗣️🗣️🔥🔥🗣️🗣️🔥🗣️🗣️🔥

royal lakeBOT
#

:incoming_envelope: :ok_hand: applied timeout to @exotic marten until <t:1711042754:f> (10 minutes) (reason: emoji spam - sent 22 emojis).

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

uneven pine
#

Nice

#

Good job @royal lake

exotic marten
uneven pine
#

It did a good job muting emoji spam

jovial oriole
#

It was continuing the 🗣️🗣️🔥 chain

#

🗣️🗣️🔥🔥🗣️🔥🗣️🔥🔥🗣️

uneven pine
#

Exactly

jovial oriole
#

<@&267628507062992896> makeme mod i lik pythn lemon_holding_back_tears

rough sapphire
#

How does not get a warning or anything

low chasm
#

they edited the ping in, most likely

rough sapphire
# low chasm they edited the ping in, most likely

Also a few weeks I got muted and I created a modmail and you said "t's cool that you're deciding to learn python. When your mute expires, we look forward to talking with you about what you're learning on the server."

swift portal
#

taken out of context you say?

#

I think I have ss

#

sad the screenshot I was looking for is deleted in that folder

torn ravine
#

yo

#

anyone wanna join a server

timid latch
#

!rule ad

royal lakeBOT
#

6. Do not post unapproved advertising.

torn ravine
#

how do I get approved

timid latch
harsh tundra
#

My cat is confirmed pydis_intersex

#

I wasn't sure he's tricolor (as it was mostly seen in the sunlight, before that I thought he's just brown tabby with white) but we had a checkup at the vet today and yep

acoustic moss
#

bro fr said 😼

timid sequoia
#

wtf why some people here are a bit toxic to other members fr

rough sapphire
timid latch
#

"don't worry they didn't die, they just went to hell"

wanton delta
wanton delta
timid sequoia
timid sequoia
wanton delta
#

All i see is yellow python with a brown circle

lament cairn
harsh tundra
#

I could've chosen just flag_intersex or heart_intersex but i think I'd never use the intersex snek ever

gritty zinc
granite tree
#

This is long before Van Buren and HIQ

#

One argument was that the cfaa wasn't even needed to begin with.

umbral breach
#

well yea i agree with that

#

I think it should be pretty common sense what should be considered breaking and entering in computers but congresstech has different ideas

#

that include things like accessing publicly available data in a way that upsets the owner who published it

#

which to me just seems an impossible position to explain logically

granite tree
#

But now: At any point, any site can send you a C&D, -after which- you'll be violating the CFAA. (AFAIU)

#

So, let's say you start doing something with LinkedIn data, thinking it's valid, and they send you a C&D, then you're probably going to have to stop.

umbral breach
#

9th circuit ruled that LinkedIn had to give that company access

cobalt summit
#

@sick phoenix

sick phoenix
#

?

cobalt summit
#

x="awesome"
print("Python is" + x)

#

here

sick phoenix
#

okay

fathom musk
#

!e
x="awesome"
print("Python is" + x)

royal lakeBOT
#

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

Python isawesome
fathom musk
#

Works

sick phoenix
#

your code words

cobalt summit
#

obv it does

sick phoenix
cobalt summit
#

but it gives me error

#

when i wirte it

fathom musk
cobalt summit
fathom musk
#

Line 25-26

sick phoenix
#

oh thats the other code making the error

acoustic moss
#

the error is on line 27

cobalt summit
sick phoenix
#

27

cobalt summit
#

how is 27 wronh

acoustic moss
#

"1"+5 isnt allowed

cobalt summit
#

ohhhhhh yeah i was trying

sick phoenix
#

you cant merge a string and a number

fathom musk
#

We aren't javascript
String + int is death

cobalt summit
#

THANK U GUYS

sick phoenix
#

you should conver the string into number

#

like

#

int(x)

cobalt summit
#

👍

sick phoenix
#

or

#

if you wanna merge a text thing and a number

#

which is a interger

cobalt summit
sick phoenix
#

use f-strings

cobalt summit
#

i still didnt take thta

#

but we took the plus sign

sick phoenix
#

i think you will learn it later in the book

cobalt summit
#

yeah

sick phoenix
#

i have a book too lol

#

but i have it irl

#

about python

cobalt summit
#

can u tell me the name of the book

#

cause i dont have a book its just powerpoint slides

sick phoenix
#

its just "Python programming"

#

made in India

cobalt summit
#

got it

#

aha

sick phoenix
#

made by perason

cobalt summit
#

niice

#

btw r yall uni students

sick phoenix
#

s sridhar
j indumathi
v. m. harharan

#

It costs about 10 dollars in us dollars i think

#

in india it costs 650 l

cobalt summit
#

thanks fam

sick phoenix
#

or

#

another option

#

is

#

you could learn from a website

#

called mimo

cobalt summit
#

alr ill try it

#

thanks

sick phoenix
#

select python course

#

and basically thats it

#

i hope ive helped you enough

#

bye

cobalt summit
#

yes thank u sm

sick phoenix
#

yw

harsh tundra
# gritty zinc oh huh, interesting. as in, XXY (Klinefelter syndrome)?

Yep, everything points to that.

Cat's ginger or not-ginger gene is on X, calico and tortoiseshell have to have one ginger and one not-ginger gene, that's why it requires two Xs. He's phenotypically (ie looks) male (although testes didn't descend, we don't even know whether he has internal testes or internal ovaries or both - according to vet any of those options is possible, but we wouldn't know without a surgery)

rough sapphire
rough sapphire
jaunty wraith
#

who

storm tulip
#

Hi, I have to give a presentation. It's a huge topic, so I have a lot of sources. I have already read through them, but that was a long time ago, so I can't remember the details.

I know I want an AI to summarise all the important information for my topics in bullet points. But the sources are quite long and therefore don't fit into the 2k - 4k symbols you can type into Chat-GPT, ... . It would be possible to cut them down to size, but that would require a lot of effort.

Does anyone know a solution to this problem?

lament cairn
rough sapphire
outer pebble
grave cove
green pelican
#

hello

brazen ingot
thick ore
#

everyone hyping over the "errors as values"... C had them for years!! if (!action()) print_err("action failed");

naive igloo
strange blade
#

wive waugh uwu?!

#

wow

#

nya~

undone thorn
hearty cape
#

I am trying to write this Git command in the vs code terminal ' git remote -v ' to get the url of current origin.
but I am not getting anything not even an error message or something , just complete nothing.

#

anyone got a solution to this ? i am confused why its happening , some commands are working very well but some like this one ain't working .

vocal oyster
#

then you have no remotes

fringe rain
#

You can use git remote add to set one

cursive salmon
fringe rain
#

Yeah, found it recently suggested by Saul Goodman here

glossy niche
#

for once im posting snow cats instead of yellow ones

lament cairn
jovial oriole
umbral breach
#

this channel name isn't even funny it's just absolutely disgusting

thick ore
#

i got my brother's Roblox account back and now he won't play with me

#

😔

uneven pine
#

Nothing of value lost

jovial oriole
uneven pine
#

I'm a furry, I've seen so much worse so often that it just doesn't affect me

jovial oriole
#

Bruh what

uneven pine
#

Feet based milk isn't even the weirdest thing I've seen this hour

jovial oriole
#

Ok

glossy niche
#

milk based feet

ancient merlin
#

where are the feet

stable fulcrum
ancient merlin
stable fulcrum
#

no

#

its forbidden to feed you

harsh tundra
#

Nah, this only applies to feeding after midnight

rough sapphire
thick ore
#

drink it next

thick ore
#

dont fall for the roblox phishing guys

jovial oriole
fringe rain
thick ore
small coral
spare oriole
#

why did i even check this channel

marble bay
rough sapphire
#

$ clear

marble bay
undone thorn
#

levels of emotional trauma:
🟩 average joe - 🟨 kidnapping survivor - 🟧 war veteran - 🟥 furry

rough sapphire
#

.wiki Sir Lancebot

median domeBOT
#
Wikipedia Search Results

List of Nexo Knights characters
Squirebots – The helpful robots who fight to defend the kingdom. Dennis – A Lancebot who is Lance's personal attendant where he has taken care of Lance since

lament cairn
grave cove
#

kitty

lament cairn
#

@rough sapphire #career-advice message wrong channel to post that kind of stuff in so I'll drag discussion here
https://issuetracker.google.com/issues/307784521

I submitted my app in the Google play console and once it was approved and published, I noticed that the "App support" section has a "About the developer" that has my legal name and address on it. This is not the case for any other app in the play store since I have not yet seen any other app with a "About the developer" section on their play store page. [...] Note that if this isn't considered a bug and is more about being "transparent to google play customers" then my legal name and address should only show to the customers, not to anyone who has a link to my app that they can view on the web.
holy shit this is bad

jaunty wraith
soft violet
#

Maybe it's a "Please stop suing us for stuff on the app store. Here, have the actual address of the people who make the apps and stop bothering us."

#

I mean, it's not like they wouldn't have teams and teams of lawyers on full time salary to deal with that.

#

Maybe the lawyers are trying to make less work for themselves. "Hey, let's tell corporate they need to do this for, um...transparency, yeah, they'll swallow that."

young shoal
#

this is already the case for domain names though

uneven pine
#

But with domains you can pay a company to publish for you and not have your information leaked

#

It appears that isn't the case for the play store the way they have it set up?

rough sapphire
#

Yooooo @eternal wing

eternal wing
#

Oh wow, the name aligned as well!

lime maple
#

for the day atleast

lament cairn
thick ore
#

it looks like Node.js is catching up to the other ones

#

they got a modern looking next.js site now

leaden rose
#

@rough sapphire bro

jovial oriole
#

Should i be banned right now?

strange blade
uneven pine
#

!rule 9

royal lakeBOT
#

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

uneven pine
#

And probably a scam

harsh tundra
#

Anyone wants pepper or tomato seedlings? Chilli in the photo. But we also have habanero and some mild ones. And oxheart and some other big tomatoes (idk the English name for the other cultivars).

harsh tundra
#

We gotta put them in bigger containers now, later they'll be transferred to outside.

#

Because the germinating is done with a lot of seeds quite close to each other, but then those that started to grow want to grow their roots so they need space

#

But they grew so well we have too many seedlings compared to the containers...

glossy niche
#

germinating? pithink

#

interesting

crystal spruce
#

i have a school laptop that i'm gonna reset

#

anyone have any cool ideas before i do that

marble bay
harsh tundra
# glossy niche germinating? <:pithink:652247559909277706>

Seed germination is when plant starts growing from the seed. :3 If you don't do that, you don't really know if the seed is good or not, so it's not worth planting it separately - that's why you plant a lot and then give space to the ones that grow... But apparently, this year almost all seeds were good

harsh tundra
soft violet
#

Or, indeed, a compressed disk image.

glossy niche
#

i kinda wanna get into gardening mainly because i saw a bunch of interesting tumblr posts about it lol

marble grove
#

can anyone help

lament cairn
#

what is this error from?

#

whatever it is, it says right there: convert your png file to a compatible icon (like .ico)

#

just search up "png to ico converter" online theres like a million

marble grove
#

ok

#

since im using tkinter

#

will the windows icon be fine with it not being png

#

@lament cairn

lament cairn
#

if the error says that .ico is compatible then itll probably be fine ¯_(ツ)_/¯

#

afaik windows converts images to .ico internally so youre not literally using the png as an icon when you set it on folders and other things

#

so yea just convert your icon to .ico and set it and you should be good

marble grove
#

ok, wierd how a tutorial said to use png but idk

#

@lament cairn

#

this makes it now not work

lament cairn
#

i dont know then

marble grove
#

i think ill just scrap all the image stuff

#

not too important anyway

harsh tundra
#

From other angles

#

For this one, the seed's shell stuck to only one of the leaves.

harsh tundra
#

Unhinged pricing
And yes, it shows it costed 24kPLN with new EU regulations of "lowest price in last 30 days before current promo"

#

I just wanted to buy rubber balls for my kitty because he loses them under furniture...

cobalt remnant
cobalt remnant
#

Did I open too many PRs this week?

#

ok, that last one is an issue, but still

vale raven
#

No

#

You didn't open enough

cobalt remnant
#

Sorry, please don't fire me for not being productive enough

lament cairn
cobalt remnant
#

on the first plugn pr, I was asked to add some tests, so I did. Then I opened 2 more PRs.

#

I have not had a response since

lament cairn
#

@grave cove @jaunty wraith need your expert analysis on this 1......

jaunty wraith
#

cat

carmine apex
#

clearly a flying squirrel

grave cove
rough sapphire
#

Amazing pin

jovial oriole
#

Chat is this information factual?

cursive salmon
#

at a macdonalds

#

i've heard that one too many times

tardy rain
#

Is that weird?

cursive salmon
tardy rain
#

🤨

#

They have those now?

cursive salmon
#

yeah

tardy rain
#

At maccas?

cursive salmon
#

mcdonalds?

tardy rain
#

Thats what i said

fringe rain
stable fulcrum
#

no cows are wet water

stable fulcrum
#

@rich cape why your insta is not found?

rich cape
#

wanna follow me?

#

its @vladgsandu on insta

stable fulcrum
#

no

rich cape
#

ok

stable fulcrum
rich cape
#

cap

stable fulcrum
rich cape
#

i forgot

timid latch
#

Rate my setup

open fern
#

3/10, definitely has the elements needed to be a fire hazard but I don't see any canisters of flammable gasses or liquids.

timid latch
#

Also sorry forgot the desk

jovial oriole
fresh basalt
covert flame
#

hello guys

hexed hatch
#

yo nerd

covert flame
verbal portal
#

yo

rough sapphire
#

@verbal portal as i was saying

#

i personally did not work with any primers

#

i just started without a tutorial

#

simply learnt by trial and error and tons of googling

verbal portal
#

That's kinda how I should try and do it too. In the past I would keep trying to find the "perfect" tutorial and kept swapping a bunch. Never got anything done. Like a turbo version of tutorial hell I guess lol.

rough sapphire
#

yeah

#

well

#

gotta keep at it ig

#

python is like the only thing that managed to stick in my "interest" zone for years

#

i loose motivation faster than anything

verbal portal
#

What do you like to program? I started out with C# for Unity stuff, but I like how Python is less strict about some things.

rough sapphire
#

i am more of a backend side

#

servers

#

networking

#

general scripting/automation

#

data processing

verbal portal
#

Ya. I am trying to do more of that. I mostly like building simple desktop apps, and tools for other things.

rough sapphire
#

yea

#

i couldn't get into front end really

#

i think i am gonna enter via flutter

verbal portal
#

That seems like a good choice. With C# for desktop apps you can either use WinForms, WPF (I think might get phased out? idk), or MAUI. So it's a bit more clear.

rough sapphire
#

yea, i just have some bias against c# ngl

#

i know a bit of web dev, i can get my websites/UI working if i need to

#

as for native desktop gui

#

i couldn't get my head around any library

#

so i just made my own for fun's sake

#

flutter is really appealing to me nowdays, so i m gonna go with it sooner or later

winter ether
#

He’s learning

jovial oriole
#

The italians learning italian

#

The python learning python

naive igloo
soft violet
#

@magic hawk @strange blade Aftermath report: Head fine, though a touch sensitive. A lot of broken glass with fragments ranging from substantial to very fine. Sustained a negligible laceration on my finger as I was picking those up. A few minor damages to some of my pieces. One smashed bottle with a few gold flecks I got from panning, the ejecta of which I had to pick out from the carpet, but most stayed with the remains of the bottle, so I retained most if not all of it.

lament cairn
soft violet
#

Summary: PAIN IN MY ARSE.

#

If it was just the glass, that would have been fine, but the gold flecks were fiddly as fuck.

magic hawk
#

Dang unlucky

soft violet
#

Careless.

magic hawk
#

Let’s just hope that won’t happen again

soft violet
#

Where there is life, there are accidents.

#

Where there isn't life, sometimes, there are accidents.

#

Vacuuming of the affected area performed.

#

Because there was a bottle of sand that died

#

and the glass bits

#

Sand or salt

#

I think it was salt.

#

With a bit of coloured chalk, though it had become mixed.

solemn tulip
#

I had expected french based on the image

fresh basalt
soft violet
vocal path
#

@spare oriole what's the difference

#

ok anyways

#

who cares

frozen crane
#

&games join

novel condorBOT
#
Wrong Channel

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

open fern
#

get good, m8

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

open fern
#

&games score

novel condorBOT
#
Wrong Channel

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

open fern
#

oh c'mon

digital oracle
#

get good, m8

green pelican
#

L MOD

#

OH

#

oh get it

latent wolf
#

guys move to here

#

fr

alpine coyote
#

We are everywhere

wheat lynx
#

Noooo

open fern
#

!shhhhhh

#

:D

carmine apex
#

!mute 429445826251587616 mod aboose

latent wolf
#

lol

#

!mute 555944200047296513 to good at the game

grim pelican
#

oh wookie you're smart changing your nick, i'mma copy you

nova wyvern
#

uwu you're a function now

grim pelican
#

i wonder what i do

shell raptor
#

fr

nova wyvern
grim pelican
#

haha

nova wyvern
nova wyvern
nova wyvern
#

disperse efforts

ruby fox
nova wyvern
ruby fox
# nova wyvern in Rust

Ah but you will upset our parents that you are using rust, instead of using thier ways

carmine apex
royal lakeBOT
#

Source code: Lib/struct.py

This module converts between Python values and C structs represented as Python bytes objects. Compact format strings describe the intended conversions to/from Python values. The module’s functions and objects can be used for two largely distinct applications, data exchange with external sources (files or network connections), or data transfer between the Python application and the C layer.

carmine apex
#

module, though

jovial oriole
#

Hey guys

nova wyvern
novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

carmine apex
#

@alpine coyote

reef goblet
#

bruh

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

carmine apex
#

@velvet plover

velvet plover
reef goblet
#

FRICK

#

WHAT

carmine apex
#

not quite fast enough. ping to summon to slow 😔

reef goblet
#

WE MISSED IT

#

AND ANOTHE TUPLE WTF

velvet plover
#

Amigos how r u?

#

No messages i guess

reef goblet
#

lmfao

velvet plover
reef goblet
#

HEHE

nova wyvern
#

diversion

#

trolled

velvet plover
#

No one getting trolled today

#

Fudge u fast

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

solemn tulip
#

god that's fast

carmine apex
#

15 seconds iirc

velvet plover
#

Yea theyr sweating themselves js for reactions

#

It was fr under 4-5 secs they all already reacted while i was still searching duck on this hanging phone

royal lakeBOT
#

bot/exts/games.py line 213

await asyncio.sleep(15)```
acoustic moss
#

tsk tsk magic number

solemn tulip
#

no dict reactions 😌

velvet plover
#

I will see if there are any

#

Tuples

#

List

#

Dictionaries

carmine apex
#

it's timed

velvet plover
eternal wing
#

Give tuple points plz

velvet plover
#

Gimme some reacts sire robin

#

Sire robin

carmine apex
#

you watched the wrong channel

velvet plover
#

🙃

carmine apex
#

it just hit ot0

velvet plover
novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

carmine apex
#

@velvet plover

#

oh good, you got one

velvet plover
marble bay
#

That feels a lot shorter than 15

velvet plover
carmine apex
#

congratulations, but i'd prefer fast instead

#

with an s

velvet plover
fresh basalt
velvet plover
#

Its as fast as i can go

fresh basalt
#

Ding Dong man, Ding Dong

steady hound
#

Beep

lucid raptor
#

boop

marble bay
latent wolf
#

yo

#

my name is flow

lucid raptor
#

boo

carmine apex
#

trechery, flow

#

but they did not claim anything

latent wolf
#

here

#

@carmine apex

carmine apex
#

i have all channels on ping-on-message

#

i am everywhere

marble bay
#

earrape

carmine apex
#

it ain't that bad actually

latent wolf
#

pls

#

react

#

sir

#

robin

marble bay
#

it's timed

#

spam doesn't help

lucid raptor
#

Yess

marble bay
#

skill does though

steady hound
#

team_dict 💪

delicate gull
#

hi

brazen ingot
#

nuke here

marble bay
#

🤯

steady hound
#

👀

brazen ingot
#

emoji fail twice

delicate gull
#

why do we have so many off topic channels

brazen ingot
#

less is bad

carmine apex
#

more simultaneous conversations

delicate gull
#

👀

stable fulcrum
#

hi

carmine apex
#

thanks

stable fulcrum
#

lists are the greatest data type thats ever existed

brazen ingot
#

that is false

carmine apex
#

not even in your dreams

brazen ingot
#

0

stable fulcrum
#

lists in general not specifically python

#

bassically arrays

brazen ingot
#

dict missed it oh no

delicate gull
#

and what do you think tuple is?

brazen ingot
#

ill be quiet

stable fulcrum
#

in sequence

delicate gull
#

a static one
the original one

stable fulcrum
#

also tuple is loyal, it doesn't change

brazen ingot
pale kettle
#

lmao

delicate gull
#

why is list keep getting reaction

pale kettle
#

fr

#

havent seen a tuple yet

stable fulcrum
#

why there is no list member in the chat other than me

delicate gull
#

you pop() them

narrow pecan
#

Cause team_dict shall win

pale kettle
#

again

brazen ingot
#

0

stable fulcrum
#

heh

delicate gull
#

i think you gonna keep getting one scores and carry your team like this

narrow pecan
#

Feels like it’s quite hard to miss the reactions (since you can’t “cancel” other teams’ reactions)

stable fulcrum
#

I want more list people in the chat

brazen ingot
fresh basalt
jaunty wraith
#

list, tuples: 👎🏼
dict: 👍🏼

brazen ingot
#

ok

pale kettle
#

sir robin biased

#

no tuples

#

sad

stable fulcrum
jaunty wraith
#

cat 👍🏼

reef goblet
#

Fuck tuples

narrow pecan
brazen ingot
#

thuri lurk

stable fulcrum
brazen ingot
#

duck

reef goblet
#

I hate dictheads bruh

stable fulcrum
stable fulcrum
#

where duck?

reef goblet
#

Three cummoning

jaunty wraith
#

quack

carmine apex
#

25% per 5 minutes

reef goblet
#

And four score

carmine apex
#

four score?

reef goblet
#

Yes

brazen ingot
#

3

carmine apex
#

what do you mean?

delicate gull
carmine apex
#

the ducks are 5 points per person

fresh basalt
#

four score is 80

reef goblet
#

Thrice will the sun rise

#

And twice will it fall

brazen ingot
#

duck in ot2

narrow pecan
reef goblet
brazen ingot
#

it will come soon dw

reef goblet
#

Made you lol haha

nova wyvern
#

ducky when?

brazen ingot
#

in few mins

delicate gull
#

@novel condor

nova wyvern
#

.ducky

median domeBOT
delicate gull
#

||boo||

delicate gull
#

weee

nova wyvern
#

.ducky

median domeBOT
nova wyvern
#

.ducky

median domeBOT
delicate gull
#

wee

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

velvet plover
#

how many times ha-...............

#

hello everyone how yall dooing??

marble bay
#

🤔

shell raptor
small coral
#

hmm

marble bay
small coral
#

boop

shell raptor
#

quack

carmine apex
#

.quack

median domeBOT
rare sapphire
#

quack

meager sphinx
#

.quack

median domeBOT
rare sapphire
#

.quack

median domeBOT
narrow pecan
#

.quack manduck

median domeBOT
carmine apex
#

.quack manduck

median domeBOT
marble bay
#

@meager sphinx

small coral
#

distribute attempt 2

fading agate
#

Failed?

fading agate
meager sphinx
#

untill we get it

fading agate
#

Rip

small coral
#

distribute attempt 4

#

distribute attempt 6

marble bay
#

attempt 7

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

lime oyster
#

DUCK

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

lime oyster
#

I swear I was 1st

acoustic moss
#

fuck

echo ice
lime oyster
#

dude cry, I was.

echo ice
#

you cry

vale raven
#

Let’s ply nice

lime oyster
#

We need to win!

vale raven
#

We do

#

But winning doesn’t require attacking the other players

lime oyster
#

alright sorry.

delicate gull
vale raven
lime oyster
#

get mod first

delicate gull
vale raven
#

I’ve been asleep!!

elfin holly
#

sleep is for the weak ones

vale raven
rare sapphire
#

Sir robin

vale raven
#

@novel condor

delicate gull
#

boo

frank laurel
#

.

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

digital oracle
#

@wheat lynx

wheat lynx
#

noo I was like 0.1 seconds too late :(

fading agate
nova wyvern
digital oracle
wheat lynx
#

great multitasking

nova wyvern
wheat lynx
#

annoyingly I only have one screen at the moment

#

And discord won't shrink to less than ~2/3 of the width of it

nova wyvern
digital oracle
#

two very important tasks

wheat lynx
#

oh good call actually lol

#

phone is now in play

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

digital oracle
#

@wheat lynx

novel condorBOT
#
Quack!

Time's up! Hope you reacted in time.

strange blade
#

@wheat lynx

elfin holly
#

too late

acoustic moss
#

wait do i get more points if i react with more ducks

strange blade
#

#

No

acoustic moss
#

ok

meager sphinx
#

so i had been wasting my time finding new ducks for no reason whatsoever 💀

fading agate
#

Rip tuples

fervent socket
#

:(

dapper dew
#

We'll be fine

narrow pecan
dapper dew
#

As long as we can avoid closing the server

#

If tuples lose though we might just have to close it any ways

strange blade
#

Yes please.

#

I don’t know what steam is still

narrow pecan
dapper dew
#

like Xbox Live or PlayStation Network

strange blade
#

Bottom line: i don’t play games

timid latch
#

It's basically the PC version of the play store/app store

nova wyvern
dapper dew
#

Also a state of water

harsh tundra
brazen ingot
#

latent heat of vaporization

strange blade
#

My funnest game I’ve played: taking notes

#

And making aesthetic notes.

timid latch
narrow pecan
strange blade
#

Actually no, I sweat at chess.

#

Sadly I still suck

narrow pecan
#

If you microwave water, you can get above 100 C without it boiling