#ot1-perplexing-regexing
1 messages · Page 92 of 1
youtube.com/shorts doesn't seem to have a problem loading videos
I wonder if it's a push to promote shorts.
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
history is neat
physical planners my beloved
history and being trivially accessible
and the very tactile feeling of checking things off
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...
TIL roblox has react https://github.com/Roblox/react-lua
you can use typescript on roblox, and with jsx https://roblox-ts.com/docs/guides/roact-jsx/
this is absolutely mind blowing
i WILL be making a roblox game
Python program
The code is linked in the description
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...
How many cats have you acquired this way 
You have 10 cats?? Lmao
no, that's over my entire life, not all at once
last time I had a cat was 3 yrs ago :(
Clown to clown communication
Based to based communication
ifunny
Opal
What does Python use as a backend for AI and data science?
I hope you're happy.
i am
What do you mean?
I mean that the image fails to take a critical point into consideration.
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.
Programmer 2 is still a silly-pants.
So people can bandwagon with surface knowledge.
I think the sillypants are in this channel right now.
If they are marketable enough with what they got I respect the hustle
Making a dollar out of fifteen cents
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
Uncommon being rarer than rare?
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
Pastebin some code
but its 8 in 100 billion to get ONE
object object
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
Do you know dictionaries? I got a challenge for u, put the chances for each drop into a dictionary
Marble slab
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)
I mean we need to get rid of the hard-coded chances in this if elif block
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?
First of all, because of how if elif works, if chance was less than 166 in the second to last elif, then it's guaranteed that chance will be greater than 166 in the next block.
if chance rolled a 13.5 it'd make it trash (treat it as though it was trash). not sure if thats what you wanted?
That is true, and that's why we need to change this code to not use hard-coded numbers
pretty sure you can just increase the upper limit to fix it?
but I would say, this seems like the job for random.choices
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
hm true
Don't be afraid of failure
yay hacker is 1 in 10 billion
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)?
¯_(ツ)_/¯
When I catch you.
Like when I hecking catch you. . .
Like when I ACTUALLY HECKING catch you. . .
あぁ…座ってるだけなのに こんなに可愛いくて美しくカッコイイなんて…(´Д`)ハァ💕 #ユキヒョウ #シジム #円山動物園
💖 22 🔁 3
cat
exactly
update: there's an ecosystem
a DI framework 💀
they overcooked
nah it's perfectly cooked
nobody is trying to code in lua
this is essentially roblox nextjs
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 💀
my classmates would 100% label that as "kinky" for some reason
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.
Does it have to be onboarding related? I recently had to use one with a letting agency
is it possible to pip install happiness
!pip happiness
yes
hits blunt. . . . .If we have two 1's, did 1 just become bigger. . . ? Or is 1 no longer the biggest?
?
e-married
or just married, i guess
that has nothing to do with me 
🤔
why not just not make it public if you don't want people bring it up
i actually did not know that

You could've talked about this via DM
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.


r/fuckcars is #1 subreddit
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.
2 is smaller
Congratulations, now every mathematician and the IRS is out for your head.
I would have been willing to help if it were just the mathematicians, but I am NOT messing with the IRS.
Lol i say them im calc pro xD
They will literally make you prove it by making you quantify the limits of infinity.
They already know where you live, bro. 😂
I used my frens profile cD
My chem teach called me we up for some gud questions this time
They are scary though
What do i call you
They cant do anything cuz i use a vpn teehee
Uhhhh~
do yall avoid lazy imports
Wildcard imports with a *?
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.
lazy import is like
def main():
import pandas as pd
pd....
So its imported in the function instead of at the top
I think the only reason you'd do that is if you'd want to optionally import one module or another, say in the event of operating-system-specific modules.
But I'm open to other reasons.
They'd have to be good ones, though.
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
It's an icky pattern in any event.
sure, I would generally avoid it, but you could have your reasons
expensive imports that are not relevant for a particular invocation
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 🥴
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```
Came back to this file after 3 months, tf is this???
"basic" stuff
that sure is a very precise precise decimal
What's antigravity
Where did it come from
hello
I don't believe in that Robin
happy world serval day everyone
no gym, fake news
wtf
Kitty!
What is this otn?
moyenchad is the tornado therapist
snow kitty
Wsg
parkour
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
You tell them about formatters you want to use and then you tell them about pre-commit
well what is this for
a game that we were given the entire school year for
I've worked on a couple school projects with my friends myself, though the code did go via discord before github
oh man
i'd have to explain what a ruff is
I'd say just tell them to install pre commit.
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
icic
If they're not programmers to begin with, I'm surprised you got them as far as github at all haha
a club sounds voluntary
yep
then they've signed up for the pain! go all out
Its good practice
Im sure they wouldnt mind adopting formatting
I do not recognise this otn
Haven't seen moyen around in a while, wonder where they went
abducted by a suspiciously-flying-saucer-looking tornado
understandable
¯_(ツ)_/¯
cat
https://vxtwitter.com/yukino_lr/status/1770021980194083056.mp4 here's another one
look at that floofy tail
I would bite his tail
bro there is so much wrong with this 
700!! elo
what is a titanic classification

wouldn't you like to know, Mr. Day 1-5

Start here! Predict survival on the Titanic and get familiar with ML basics
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 
guys is the freelancing is so saturated ?
Is this is but do the does?
?
Me too
Hey chat
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
so what do i do?
Close in system tray
Ok
whew thanks
Is Windows dumbing down the UI?
Me when I see someone still using flake8
any1 wanna 1v1 me on an io game
That's rough not ruff, buddy.
*formats your python code with prettier*

Bruh r u in europe
No
U responded at 2 am
We live in different timezones
Timezones arent real kangaroos want you to think they are so you cant move to massachuchets
Why are pycon us events held at seemingly irrelevant places
💀
Because "seemingly relevant" places are expensive and obnoxious
how the fuck are we in march and there's still the threat of a gov't shutdown 😩
USA?





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
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
kitty up
very useful feature: mao zedong on demand
gnome release videos feel so corporate
Honestly 🗣️🗣️🔥
The gnomes always trying to industrialize coral reefs
The propaganda wont work we wont let them
this is why you use a terminal :d
We ze donging with this one 🗣️🗣️🔥
"🗣️🗣️🔥" 🗣️🗣️🔥
""🗣️🗣️🔥" 🗣️🗣️🔥" 🗣️🗣️🔥
🗣️🗣️🗣️🔥🔥🗣️🗣️🔥🗣️🗣️🔥
: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.
wdym?
It did a good job muting emoji spam
No
It was continuing the 🗣️🗣️🔥 chain
🗣️🗣️🔥🔥🗣️🔥🗣️🔥🔥🗣️
Exactly
<@&267628507062992896> makeme mod i lik pythn 
How does not get a warning or anything
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."
taken out of context you say?
I think I have ss
sad the screenshot I was looking for is deleted in that folder
!rule ad
how do I get approved
contact @polar knoll
My cat is confirmed 
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
bro fr said 😼
wtf why some people here are a bit toxic to other members fr
Where ?! I'll ki- remembers no threats allowed. . .Hang on. . . .checks politically correct list of threats. . . .I'll "Send him to the Shadow realm". . . . .I hate this so much.
lol
Still find it so bizarre they invented basically hell to protect children from seeing death
"don't worry they didn't die, they just went to hell"
Idk i just give people that chlorine vibe
You cat is a, python?
Hmm
💀
All i see is yellow python with a brown circle
Intersex snek. Because he's intersex and he's a long boi
I could've chosen just
or
but i think I'd never use the intersex snek ever
oh huh, interesting. as in, XXY (Klinefelter syndrome)?
@umbral breach the cfaa was pretty hated before it came into existence, so a lot of what you're seeing is very specific pushback to it: https://www.newsweek.com/most-hated-law-internet-and-its-many-problems-cfaa-448567
This is long before Van Buren and HIQ
One argument was that the cfaa wasn't even needed to begin with.
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
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.
9th circuit ruled that LinkedIn had to give that company access
@sick phoenix
?
okay
!e
x="awesome"
print("Python is" + x)
@fathom musk :white_check_mark: Your 3.12 eval job has completed with return code 0.
Python isawesome
Works
your code words
i was confused
Send the screenshot of entire screen
Line 25-26
oh thats the other code making the error
the error is on line 27
omg whihc one
27
how is 27 wronh
"1"+5 isnt allowed
ohhhhhh yeah i was trying
you cant merge a string and a number
We aren't javascript
String + int is death
THANK U GUYS
👍
use f-strings
i think you will learn it later in the book
yeah
can u tell me the name of the book
cause i dont have a book its just powerpoint slides
made by perason
s sridhar
j indumathi
v. m. harharan
It costs about 10 dollars in us dollars i think
in india it costs 650 l
thanks fam
https://mimo.org/ @cobalt summit
select python course
and basically thats it
i hope ive helped you enough
bye
yes thank u sm
yw
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)
Nah it's not hell, it's- remembers that Mai got sent there and was tortured by loneliness and visions of being left behind for nearly half a season. . . .Ooooh~ yeah, no~ that's hell. . . .
So wait, if I harvest Linkedin data using my web scraper /crawler which I call "Mr. Crawly Wally", they have to give me access? 😄
who
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?
I'm pretty sure ChatGPT has some way of importing documents for RAG
Not sure if it's a paid feature tho
Well , the first question I have is: Do you need every single source you have at your disposal?
I learnt python through this
he eated the camera
hello
kekule structure is whats in your pfp 👀
everyone hyping over the "errors as values"... C had them for years!! if (!action()) print_err("action failed");
discard the modenity, go back to UB

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 .
then you have no remotes
You can use git remote add to set one
See chapter 1.5
https://goalkicker.com/GitBook/
looks like a cool web
Yeah, found it recently suggested by Saul Goodman here
Honestly 🗣️🗣️🔥
this channel name isn't even funny it's just absolutely disgusting
Nothing of value lost
Doesnt understand the value of a brothers roadblocks account
- 🤓 ☝️
I'm a furry, I've seen so much worse so often that it just doesn't affect me
Bruh what
Feet based milk isn't even the weirdest thing I've seen this hour
Ok
milk based feet
where are the feet
in the milk
feed me
drink it next
fr bro he's maxed out in bloxfruits
dont fall for the roblox phishing guys
two magnets
nice magnets
is this ue5 or irle
both

why did i even check this channel
I'm afraid to ask, but what was the weirdest thing you saw in that hour
$ clear
say, that include human sized spiders and mosquitos?
levels of emotional trauma:
🟩 average joe - 🟨 kidnapping survivor - 🟧 war veteran - 🟥 furry
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
kitty
@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
meow
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."
this is already the case for domain names though
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?
Yooooo @eternal wing
Oh wow, the name aligned as well!
you're the master here
for the day atleast
nope. Google has nothing similar to WHOIS privacy for Play dev accounts
it looks like Node.js is catching up to the other ones
they got a modern looking next.js site now
@rough sapphire bro
Go to bot commands and run !user
!rule 9
And probably a scam
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).
o, what are you doing? 
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...
i have a school laptop that i'm gonna reset
anyone have any cool ideas before i do that
create your own malware to infect it with
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
Format current drive. It's funny to see how stuff stops working on Linux, idk how it would behave on Windows
Backup any driver files.
Or, indeed, a compressed disk image.
ohh, i thought it had to do with literal germs
still interesting
i kinda wanna get into gardening mainly because i saw a bunch of interesting tumblr posts about it lol
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
ok
since im using tkinter
will the windows icon be fine with it not being png
@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
ok, wierd how a tutorial said to use png but idk
@lament cairn
this makes it now not work
i dont know then
A leafy heart for you
(the original leaf pair is still connected by the seed remains)
From other angles
For this one, the seed's shell stuck to only one of the leaves.
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...
What do you think the chances are that my PRs get accepted here?
https://github.com/bitdotioinc/pgsqlite/pulls
bitdotioinc/pgsqlite#20
bitdotioinc/pgsqlite#21
bitdotioinc/pgsqlite#22
bitdotioinc/pgsqlite#23
Sorry, please don't fire me for not being productive enough
yo
xz backdoor
https://www.bleepingcomputer.com/news/security/red-hat-warns-of-backdoor-in-xz-tools-used-by-most-linux-distros/
(only affects 5.6.0 and 5.6.1; fedora 41 and debian sid. ignore the shit title)
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
@grave cove @jaunty wraith need your expert analysis on this 1......
cat
clearly a flying squirrel
One of the creatures of all time
Amazing pin
"im on a diet, please some coke zero please"
at a macdonalds
i've heard that one too many times
Is that weird?
for a normal diet it's acceptable, but kinda weird after ordering a triple bacon cheeseburger
yeah
At maccas?
mcdonalds?
Thats what i said
hey at least its not adding
no cows are wet water
@rich cape why your insta is not found?
idk
wanna follow me?
its @vladgsandu on insta
no
ok
but it says user not founs
cap
I am talking about the one in your discord connections
ohhh i changed the username
i forgot
Rate my setup
3/10, definitely has the elements needed to be a fire hazard but I don't see any canisters of flammable gasses or liquids.
Also sorry forgot the desk
Real
Wash your hair/pillow.
hello guys
yo nerd
where is a nerd?
yo
@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
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.
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
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.
i am more of a backend side
servers
networking
general scripting/automation
data processing
Ya. I am trying to do more of that. I mostly like building simple desktop apps, and tools for other things.
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.
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
He’s learning
The english learning english
The italians learning italian
The python learning python
good snake
@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.

Summary: PAIN IN MY ARSE.
If it was just the glass, that would have been fine, but the gold flecks were fiddly as fuck.
Dang unlucky
Careless.
Let’s just hope that won’t happen again
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.

I had expected french based on the image
I thought you hurt your head.
At this point, they're the same damn thing.
&games join
You are not allowed to use that command here. Please use the #bot-commands channel(s) instead.
get good, m8
&games score
You are not allowed to use that command here. Please use the #bot-commands channel(s) instead.
oh c'mon
get good, m8
We are everywhere
Noooo
!mute 429445826251587616 mod aboose
oh wookie you're smart changing your nick, i'mma copy you
uwu you're a function now
i wonder what i do
fr
I am a struct instantiation
haha
you fisk
change your name too
disperse efforts
With no struct keyword 😔
in Rust
Ah but you will upset our parents that you are using rust, instead of using thier ways
!d struct
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.
module, though
go to #bot-commands and run &games join
@alpine coyote
bruh
@velvet plover
Yeah
not quite fast enough. ping to summon to slow 😔
lmfao
Stradegy 🤓
HEHE
god that's fast
15 seconds iirc
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
bot/exts/games.py line 213
await asyncio.sleep(15)```
tsk tsk magic number
no dict reactions 😌
it's timed
Yea i read it i am jus timepassing
Give tuple points plz
you watched the wrong channel
🙃
it just hit ot0

Yeah
That feels a lot shorter than 15
I am faat boiii
I am on phone wdu expect
Official HD Video for “Fat” by “Weird Al" Yankovic
Listen to “Weird Al" Yankovic : https://weirdalyankovic.lnk.to/listenYD
Subscribe to the official “Weird Al" Yankovic YouTube channel: https://weirdalyankovic.lnk.to/subscribeYD
Watch more ““Weird Al" Yankovic videos: https://weirdalyankovic.lnk.to/listenYC
Even Worse:
Buy/Listen - http...
Its as fast as i can go
Ding Dong man, Ding Dong
Beep
boop
boo
it ain't that bad actually
Yess
skill does though
💪
hi
nuke here
🤯
👀
emoji fail twice
why do we have so many off topic channels
less is bad
more simultaneous conversations
👀
hi
thanks
lists are the greatest data type thats ever existed
that is false
not even in your dreams
dict missed it oh no
and what do you think tuple is?
ill be quiet
fastest datatype thats ever existed in python
in sequence
and a tuple
a static one
the original one
also tuple is loyal, it doesn't change
I'll tell you the rule:
- The less you react, the more you win.
- React on either tuple or dict more.
lmao
why is list keep getting reaction
why there is no list member in the chat other than me
you pop() them
Cause
shall win
again
0
heh
i think you gonna keep getting one scores and carry your team like this
Feels like it’s quite hard to miss the reactions (since you can’t “cancel” other teams’ reactions)
I want more list people in the chat

They're still iterating, give them time.
list, tuples: 👎🏼
dict: 👍🏼
ok
dog: 👎
human: 👍
cat 👍🏼
Fuck tuples
Your words are truly true
thuri lurk
I hacked robin
duck
I hate dictheads bruh
hi mate
Three cummoning
quack
25% per 5 minutes
And four score
four score?
Yes
3
what do you mean?
you've been made useless by generators
the ducks are 5 points per person
four score is 80
duck in ot2
When you nod your head yes, but you wanna say no
Nah
it will come soon dw
Made you lol haha
ducky when?
in few mins
@novel condor
.ducky
||boo||
weee
.ducky
.ducky
wee
🤔

hmm
boop
quack
.quack
quack
.quack
.quack
.quack manduck
.quack manduck
distribute attempt 2
Failed?
How many attempts you going for?
untill we get it
Rip
attempt 7
DUCK
I swear I was 1st
fuck
nah i was 1st
dude cry, I was.
Let’s ply nice
We need to win!
alright sorry.
do we tho?
I’ll be banning every member of my team if I lose
get mod first
you practically don't react to anything tho
I’ve been asleep!!
sleep is for the weak ones

Sir robin
@novel condor
boo
.
@wheat lynx
noo I was like 0.1 seconds too late :(
Unbelievable
you're an admin, you can hack your team these 5 points, it needs them smh
saw an activity from you in #dev-log at the same time... you're in two places at once 
great multitasking
threading
annoyingly I only have one screen at the moment
And discord won't shrink to less than ~2/3 of the width of it
do you now have a phone?
two very important tasks
@wheat lynx
@wheat lynx
too late
wait do i get more points if i react with more ducks
afaik no
ok
so i had been wasting my time finding new ducks for no reason whatsoever 💀
💀
Rip tuples
:(
We'll be fine
As long as we can avoid closing the server
If tuples lose though we might just have to close it any ways
I was actually getting kinda excited about the Steam group
Steam is the main platform for playing games on PC
like Xbox Live or PlayStation Network
Bottom line: i don’t play games
It's basically the PC version of the play store/app store
steam is water heated above 100°C at sea level pressure
Also a state of water
You can just get steam and collect the free ones, never playing anything. I don't think I played even half of what I have
latent heat of vaporization
Ah puzzle games
Energy required to change states and impurities go brrr
If you microwave water, you can get above 100 C without it boiling



