#ot1-perplexing-regexing
1 messages ยท Page 613 of 1
nice visuals
there's also verryyy popular when working with hardware
yeah, true.
that confused me.. alot.
they're used for bit masks occasionally, where you use 1 short int as though it's 16 separate bools.
if both pair of bits are different -> return 1
else
return -> 0
the result has a 1 in a place if either operand had a 1 there, but not both. It's got a 0 for that place if both were 0 or both were 1
!e
a = 0b101
b = 0b010
print(bin(a^b))
@solemn leaf :white_check_mark: Your eval job has completed with return code 0.
0b111
2 to the 32nd power.
I only know + - / *
it's a bit over 4 billion.
is that much?
!e print(2**32)
@solid elbow :white_check_mark: Your eval job has completed with return code 0.
4294967296
returns a new binary i mean
so 2**4 is 4*4?
ok i've learned this one
'tis nothing but 2^(2^5) 
!e
a = 0b010
print(bin(a >> 1))
@solemn leaf :white_check_mark: Your eval job has completed with return code 0.
0b1
just didn't know it was ** in python
lmfao
:faint:
it shifts the bits be the number specified in >> (right) or <<(left) direction
what's >>?
ok, yes, there's also bit shifts, where the binary digits move left or right.
omg
in case anyone else is confused by why "not" acts so weird in Python, it's cause Python ints aren't a specific bit-size, but can be any size. So a bitwise "not" would theoretically require flipping all the zero bits on the left, which you obviously can't do
@rough sapphire this
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
0b11
a left shift by 1 multiplies by 2, a right shift by 1 (floor) divides by 2
a left shift by 2 multiplies by 4, a right shift by 2 floor divides by 4. Etc.
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
0b1110
Bruh
so:
10101 << 3 is 10101000
10101 >> 3 is 10
lmao
so adding a digit?
Adding a zero if no digit available.
left shifts add N zeoes on the least significant side.
The bitwise left shift operator (<<) moves the bits of its first operand to the left by the number of places specified in its second operand. It also takes care of inserting enough zero bits to fill the gap that arises on the right edge of the new bit pattern:
right shifts drop the least significant bit N times.
damn
Which is of course assuming our language is N bit.
oh i found a general pattern
!e ```py
print(1010 << 3)
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
8080
technically both sides do but leading zeros are insignificant, right?
exactly what that pattern says
or maybe it's trailing zeros
since when does binaries have 8?
1010 << 3 = 1010 * 2(to the power 3)
thats decimal
nope. leading zeros
int?
that doesn't seem like a useful way to think of it, but sure. You can add any number of 0s at the start without changing the number, just like how 123 in decimal is the same as 00123 in decimal.
leading zero's can be used by us for better understanding maybe
!e ```py
print(bin(1010 << 3))
@solid elbow :white_check_mark: Your eval job has completed with return code 0.
0b1111110010000
@solemn leaf :white_check_mark: Your eval job has completed with return code 0.
0b1111110010000
why did it add on both sides?
@solid elbow :white_check_mark: Your eval job has completed with return code 0.
0b1010000
there we go.
idk. helps me understand that the behavior of both should only differ by direction
needed the 0b to tell it that 1010 was binary, not decimal.
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
0b1
>> 3 means lose the last 3 bits, << 3 means add 3 0s at the right. That's all.
so no matter what, something always happens to the right side of the binary, either it removes, or adds
ok got it
yep.
thanks again btw
less scared now? ๐
xD
what does this mean? "child process in a multiprocessing concept"
Perhaps it's just the trauma of being in an environment where they become necessary
never again
uh - there's a Python module called multiprocessing that lets you split work across multiple OS processes
that sentence is referring to one of those child processes.
wat
is that python?
that's C.
python source code
it's part of the C code that makes up the Python interpreter.
i see C, i get immunity
oh ok i got scared for a sec
or, it's C code that could appear in the Python interpreter, anyway.
You C see?
yeah, corrected myself.
ascorbic acidic code
they are sponge
I've been learning this all for 20 years, give or take.
and it's, ya know, my job that I do for 40 hours a week give or take ๐
20 years??????
incoming "that's longer than I've been alive"
sir what was the first language u learned?
(its also true)
Python was one of the first languages I learned. I played with it in high school.
I also learned VBA in high school, and TI Basic (a language you could program TI calculators like the TI 83 in)
if anyone can help thatll be phenomenal
I max(2,5,7,3)
II max((2,5,7,3))
III max[2,5,7,3]
IV max([2,5,7,3])
Which of the above shows the correct usage of the max() function?```
What's your IQ?
and I learned a smidge of JScript in high school, too.
8th grade computer science homework lol
that's microsoft's javascript before microsoft started to just use regular javascript.
like, lets say i've coded python everyday for 2 years straight, after 1 month I'll forget 80% of what I learned during the 2 years
do u guys take notes on everything or what? how do u remember all?
somewhat high, but IQ matters less than perseverance, really.
If you apply the knowledge you gain, it'd be hard to forget some things
I do have a good memory for trivia, though.
constant practice till it gets burnt into your brain personally
when you use stuff every day, it's hard to forget. And you learn a lot of stuff if you get into a coding career.
trust me, this convo we had, when I wake up tomorrow, I wont even know who you are, or ghoulie, or anything we talked about
contribute and make projects i guess. but easier said than done. some people do take notes or code snippets
I'm sure you would've taken at least something away from this discussion
there were absolutely things that didn't come naturally to me, and that I had to be taught multiple times for it to click.
thats what skills are
I swear 3 different classes tried to teach me big O notation before it clicked for me.
oh no
whats that?
a way of describing how the performance of a function changes as the inputs to it grow infinitely large.
trust me, idk why, or how, but I forget everything, if not tmrw, it will be the day after, prob because of my adhd idk tbh
oh the On(x) thing?
yeah.
๐ does learning them and other algorithms help you in daily life work (job,etc)
big o lets you quantify whether giving a function an input that's 1000 times larger will make the function run a thousand times slower, or a million times slower, or the same speed.
yep that big O is a big no for me
One of these days I'll want to tackle time complexity
that was unnecessarily funny
thank you for this
#algos-and-data-structs will be there for you.
ye
it's something that's tested for in junior hire interviews, so it is pretty helpful to know.
U kidding?
so mainly for acing the interviews i presume
and it does give you a basis for understanding data structures. Without knowing big oh, you really can't make sense of why some data structures are better for a particular task than others.
where can I learn big oh
right so like sets and dictionaries and stuff
I believe there's some pinned messages in #algos-and-data-structs for it.
I remember switching from a tuple to a set made one of my programs several times faster
i mean speaking of web development , it does not generally require algo knowledge ig
I was trying to see how fast I could get, for the fun of it
more like how does a dict work, how does a list work, why is using a list for some jobs much slower than a dict when it's faster than a dict for other jobs.
btw i know how lists and dicts works, but i've never understood tuples, and the % operator, any1 who can help me?
I don't mean how to use lists and dicts, I mean how they work internally.
:faint: oh boy
a list is a dynamic array of references under the hood, and a dict is a hash table.
and a data structures course will teach you what those words mean.
understanding internal working is helpful to make / change stuffs to make it more efficient ๐
and what problems a dynamic array is well suited for, and what problems a hash table is well suited for.
Yeah, if you don't know how a list works, it's very easy to write very slow code that uses lists.
and worse, it'll probably work on your small set of testing data, and then fail with your large set of real world data
(how to crash prod server 101)
as far as how to use them, a tuple is just like a list, except it can't be changed once it's created.
so it doesn't have .append or .insert, and you can't assign to it with tup[idx] = val, but you can read from it with val = tup[idx], and do other normal list-like stuff with it.
sometimes, that inability to change it is an asset. I mentioned hash tables above, and they're one of those cases. They use the value of a key to decide where to put it, and if the key's value could change later, they wouldn't be able to find it again.
so, hash tables (both dicts and sets in Python) require that the keys be types whose values can't change.
more precisely types that implement __hash__, which isn't well defined for lists and other mutables, but you could implement it yourself and have a mutable with a hash but that's rarely a good idea
there's a TreeSet in java.util
Refrain from posting random memes and pranks with no context.
ok sorry
i wish there was channel for memes
This is a server for learning and discussing Python. There are other forums that are more appropriate for sharing random memes.
Delete what?
like there's no time limit
i assume this will be kept forever
*i mean i can, but should i
wth are these
genshin
ik
standard wishes
what is even the purpose of this game
waste time
was that an order
wym
"waste time"
@ionic light boop
anyway. I am quite attracted to learn Golang
I still consider that writing in python is twice faster
but Golang makes... quality results in terms of performance
I think Golang is well to know as second language at least ๐
Java is super famous for backend. Seeing its Spring like everywhere.
Plus it could be useful to use for mobile app. Java -> Kotlin -> Mobile App
I learned the basics of Java and aiming to learn 6 Lang's but yes it sucks ๐. I still don't know why this idea of learning 6 Lang's came in my mind but yes it is great to learn this things ๐
Never really encountered Ruby to know about Ruby
except for hearing about Ruby on Rails
which is sort of Ruby counterpart to Python Django
I sometimes think that shall I learn ruby or not
Anyway. So, I guess
Java will be middle to everything. Backend / Desktop App / Mobile dev, it can do everything.
Golang would be Backend / DevOps scripting / Desktop App
Any application for ruby?
Ruby, at least Backend for sure
it will work as scripting for small nedds too
definitely not mobile dev
possibly limited desktop app at the level of python
That's what python does in a better way
Seems like ruby is a waste of time if I know python
well, quite right)
they look taking the same niche, but Python can work also as ML and DS
Better not to learn ruby after learning python
๐
I think I should go for spring or gin
I have even heard they are very fast
I want to learn golang
I know basics of Java
well, be sure to know that Java eats a lot
I heard rumours about its RAM consumption)
I am aware of that and tbh java isin't that bad as the people say
I guess so.
Anyway, it is interesting option for Android Development in a future
Java is probably still supported there
and Kotlin I heard is basically just some sort of a step forward Java, it shares a lot of things as far as I heard
Yeah, I don't know about others but to be honest for me kotlin sucks but yes in this place Java helped me alot
I wish to learn Golang because it is...
compiled language
the size of the program in comparison to Python programs ;%
when u don't need to take all those libraries with you
and yes I know that python can be compiled as well, but that's sort of not always possible
doesn't go still have pretty hefty binaries
though IG it would be smaller than python
Zig doesn't have a standard library, so it isn't really comparable with go
First time hearing about this language
going to tell my friend Zig that he has same named language as him
wait is std in zig not a standard lib?
what I mean is that the stdlib doesn't do enough to be really compared to go or python
oh sure. zig is still experimental.
well, it won't ever do all that much
since, y'know, small binaries
can't have an http server in the stdlib if you want a small binary
anyway, the golang offers 40 times performance boost in comparison to Python
and terraform and k8s were written in golang, that all i need to know in order to choose learning it next.
I chose being DevOps as secondary specialization. Golang is the most preferable scripting lang for DevOps
yeah, if you want devops, go is the way to go
golang offers a good enough balance between speed and easy writing
not easy as python, but much easier than C
yeah, go was not used for perf, it was used because it's C but not awful to write in
i dont think not learning ruby because its slow is a valid criticism/evaluation of the language
and while you can talk to low level OS apis with python, go/C do that job just fine as well, and you don't have as hard of a time dealing with keeping a python runtime up
though keeping a runtime cross-fork is still kind of a pain in go
no experience with ruby so cant tell but slowness can be a valid criticism for some tasks
ruby is so slow that it is sometimes an issue, since you can't run a rails app on a bottom tier VPS
but even then, I have written things in ruby before and it is still realtime for most things
Lol i sometimes surprised how im opposite of myself when im angry and when im not. When im not angry i think too much if i would hurt people with my sentences etc. , but when im angry i just yell to people and think no more ๐
is there a lot of physics in cs?
because i am literally gonna fall asleep in this physics class rn
T__T
not really ๐ค but cs is applicable to physics, especially with data analysis and stuff
cool, cool
if u want to make games physics is going to help
yeah, im using pygame and theres some gravity and coordinates involved
but its not like i need to take a physics course for that..right? O__o
well, you'd do well to know school-level physics in order to implement physics
physics is needed for physics 
Elos
oh god O__o
big if tru
physics is life relatable ๐
cool stuff
ngl, i think teachers influence a lot how much you like something
but ye
@solemn leaf what's your fave oreo flavour?
exactly
youre an oreo
oreo's are vegaf
and you admit to devouring your kind
yeah yeah...
still committed a crime against your kind smdh
one time i ate like 48 oreos in one sitting
idk how old i was
ok
ahaha, #divorcedparentaesthetic
wtf are these gift, and why do they even exist
I'm feeling very sussy rn one could even say i might be the impostor
yes
ejected
๐
wheres the "im dad"
You don't have to say "I'm dad" to know where the joke is going
k
i disapprove
history repeats itself
History does have a tendency to do that
Time is a flat circle
time has alzheimer's
mobius strip
No, it's a 4 sided cube
Itโs Jeremy Bearimy
@young shoal your disapproval is over, for now.
the previous name for this channel was a joke about psvm's disapproval
its better if youre young
i wish i had started sooner
its like learning a language
it literally is one
you got this!
you will
i started like 2 months ago more or less
it doesnt matter how old you are
no prob! everyone here was a beginner at some point
you should be able to put the server list on the other side
does anyone know what the current banner for the server represents?
also why is your profile pic barbie with a santa hat?
great name :O
Thanksgiving > Christmas ๐
๐ ๐จ๏ธ > ๐ฆ
@misty dew did you get your otn
I did 
very good
is thanksgiving really that big?
i heard thanksgiving is bigger in the US than Christmas
but that sounds kinda sus
no way
it's a pretty big thing for some people i guess. my family doesn't really do anything
I get together with my family for both holidays, and do a big dinner for both.
publica santa void main
nice
nice name
ive never celebrated thanksgiving, but american families just have like a dinner and thats it
but christmas is like 2 entire months
nove 1st is already christmas here
No it isn't?
it's christmastime ๐
Like, advertising for Christmas is, I guess ๐
in NOVEMBER
hehe, yes
and here Christmas is huge
my dad made me set the christmas tree on halloween
ON HALLOWEEN T__T
lmfao
so sad
Where's that?
dominican republic
Ah, nice. I've been to a resort there, beautiful country...
well, everyone likes the beaches
i am not a beach person though T__T
but its still nice
christmas usually gets a longer holiday from school and stuff
are you guys american?
I am, yeah.
something like that
23 I think
i agree. the beach is a scam perpetrated by Big Beach
For me in EDT, at least
1,000%
Beaches are nice. So are mountains and lakes though. ๐คท
i never like the beach
but the weather is nice here...if you like having ZERO SEASONS
West coast beaches have freezing water
Snow is great. I'm more of a cold weather person than hot weather
but at least it's not water with 5 billion people in it ๐
you can ice skate
And skiing is just about the one sport I have any skill at
that beats any beach sport imo
kids here used to take this part of the palm tree (idk the name of it) and use it as a sleigh
in hills
i wanna go snow sleighinggg
it seems cool
Paragliding from the back of a boat
That's cool
you can do that in a lake too though
probabluy
ive never been to a lake
like an actual ACTUAL lake
they seem cool???
idk
They're not that different from the ocean, just in the middle of things instead of at the edges ๐
and no salt
aren't u!!! from east coast lol
she's a defector
yummy
also, how does mashed-potatoes follow from petri ๐ค
p=p
e_e
i used bs4 for the first time today
technically from west coast and i spend a lot of time there
on snekbox of all places
ok psvm
pub the person I was helping was a kpop stan
wild
I didn't recognize the group tho
is there supposed to be a fancy character at the end of your nick
OMG DOES IT NOT SHOW
no
It shows for me
!charinfo ๐ซ
You are not allowed to use that command here. Please use the #bot-commands channel instead.
๐ฉ
do you have any berry emoji
๐ซ
yeah that's what I'm using lol
bruh
boo
shows up different ๐
so whose fault is it, android's? pub's phone's?
i'm on windows
just everyone imagine this one bc it's cuter
lol ok I'll pick a better one tmrw
that is not cuter. that just looks weird because it's more realistic than it should be
Wait that's not there on Windows? I see that fine on win11
Nicknames use system emoji font, messages use twemoji
Weird, ik
weird indeed, emojis in messages on ios doesnt use twemoji either
what about now, strawberry ๐
ooh that's nice
still no for me
pub I'm gonna conclude you are the problem
Here are a bunch ^
oh yeah that :D
they 3D its so good
it's kind of grown on me
omg freaking clippy
is clippy still alive in msft products?
That one actually looks like this, it's not as 3D, but still great
I think they revived it or something
Hell yes
looks fine to me
I see a blueberry, a strawberry, and what I think is a blue snowflake in your name
lmao
wait but like, do you know what clippy was back in the day
he was the most annoying assistant in Microsoft Word and maybe some other stuff
:o back when
before you were alive probably ๐
lmao probably, looks like 2001
The Office Assistant is a discontinued intelligent user interface for Microsoft Office that assisted users by way of an interactive animated character which interfaced with the Office help content. It was included in Microsoft Office for Windows (versions 97 to 2003), in Microsoft Publisher and Microsoft Project (versions 98 to 2003), Microsoft ...
I don't actually see much difference in the new logo apart from microsoft softening it a tiny bit
The feature drew a strongly negative response from many users.[5][6] Microsoft turned off the feature by default in Office XP, acknowledging its unpopularity in an ad campaign spoofing Clippit.[7] The feature was removed altogether in Office 2007 and Office 2008 for Mac, as it continued to draw criticism even from Microsoft employees.
i hated it
pepperidge farms remembers
yeah it was dumb but its dumb cute in a nostalgic way yanno
yeah kinda nostalgic
looks like it was briefly brought back into msft teams before they killed it again
thank god
I knew about people too young to remember 9/11, but I'm not sure how to cope with people too young to remember Clippy
Yes, though he died after
maybe he died in the war on terror 
I mean, all things considered, missing out on 9/11 ain't a bad thing.
Missing out on Clippy probably isn't ether, though ๐
wait but you're old
Older
old
old++
everyone older than me is just old ๐
same
shush, you're also old
absolutely brutal
Thanks
somehow "older" sounds better than "old"
yeah, one of my teachers used to say "older, not old"
Older is the new foreign buyers cool
2001... so they have to be at least 21 y/o. and apparently there are a lot of teens here
no way you remember stuff when you're 1 tho, gotta be at least like 25ish
Yep. It's still weird to realize that an event that shaped our every day world so much is already so long ago, though. It doesn't feel like it.
soon you'll be getting to the "get off my lawn" and the "back in my day" age
walked uphill both ways to the wfh job
@solid elbow are you actually still wfh tho?
Am I still working from home? Yes
lucky. don't miss the office?
A bit, but not enough to justify the commute
honestly, freshmen these days are a bit cringe ngl
actually that's always been true. sophomores too now
I'm in a weird situation, though. My teammates are in San Francisco, London, and Madrid. I'm in Philadelphia, my office is in New Jersey. There's not much point in me going into the office, because the team members I work closest with wouldn't be there anyway.
let's hear it, why? @young shoal
how long is the commute?
dude you commuted from Philly to NJ?
yeah wait what i thought you worked near where you lived ๐ฉ
Philly's right on the NJ border
ok well to me NJ is that wee bit over the NY border I guess
But, yeah, I worked near Princeton and commuted from north Philly. It's about a 1 hour drive. 50 miles, but all interstates
yikes
fake news
I've had shorter commutes that were worse.
2 hours per day ๐
why worse
I'd take an hour on a highway over 30 minutes in bumper to bumper traffic
for sure, probably cheaper gas too
hm short bumper to bumper commute or long but fast driving commute
Yeah. And I have a convertible I enjoy driving ๐
๐
FWIW I used to actually work on a team in NJ, but I did a lateral move within the company into a different position, with the understanding that I'd be permanently working from a different office. That was before covid, and at this point I'm likely going to be pregnant wfh, just making that official.
I am looking forward to when business travel can resume, though. I do miss seeing my London and SF teammates.
Permanently working from home.
ah, autocorrect got you there lol
๐
Lol
when's!!
that's just how it is
(I'm almost always on mobile. Our moderator tools on mobile are not great.)
sure blame autocorrect typo on the moderation tools ๐
!ban 568276116062863405 impugning my character
I suppose you guys will have buttons or other tools one day
dude
my ID should be protected at all costs
are you not aware of my accidental ban
I know we've had some, didn't realize you were one
right before i became helper 
!ban 568276116062863405 what accidental ban
Moderating is hard, yo.
i know (or can only imagine) thank you mods 
btw @distant hazel christmas pfp already?
wdym already, she switched to it like a day late
wth
like 0.3 minutes after you did pub smh
imma go check my date time
i was looking for the right hat + photo combo
i might change to a fall/thanksgiving one later
Yeah I chickened out, sorry about that
wow
I never want to change my PFP. GitHub generated a sad face for me, and I love it so much and upload it everywhere
what if i put a santa hat on it
make it red and white
although it's kinda too zoomed in for a hat
it'd have to just be the edges to make sense
I gotta do something for Thanksgiving, but I have my December pfp lined up
it's so zoomed in I didn't even know it was a face
I think it's a woman with a hat
๐ my github one ๐
smh calling hayan a goat
greatest of all time ๐ค
true
you're not caught up tho 
lol
Nah bro I think that's a neckerchief
Only ever ironically ๐
he said bruh the other day
wait how long ago was this
I found putting "bro" and "neckerchief" in the same sentence funny ๐
๐ circa 2001
it was
that's adorable
dawn is probably not old enough like me to remember
Yeah probably
wtf is no kap
Oh yeah, clippy's 6 years older then me ig
cap (K A P) ๐งข
Maybe 7
reminds me of scragly's pfp which is like a Eevee
It is an Eevee
vectorized :D
there's a really funny relevant video but.. it's in korean
Sentences to make you feel old
No, it's a profile pic.
you're suggesting that all profile pics aren't real? treason /s
The Treachery of Images (French: La Trahison des images) is a 1929 painting by Belgian surrealist painter Renรฉ Magritte. It is also known as This Is Not a Pipe and The Wind and the Song. Magritte painted it when he was 30 years old. It is on display at the Los Angeles County Museum of Art.The painting shows an image of a pipe. Below it, Magritte...
yeah, and the commit, and the issue
lmfao
yesterday I think
don't you have stuff from code jam?
I remember looking at it after I woke up
it's in november, so it's just this stuff
she is a beast and she strong
and a waifu
I need treatment maybe
!otn a no-kap-frfr
no for real for false ๐ค
No for false, for true
yes for all that passes through this plane of reality, and is neither real or true or false or good
๐ฏ
Congrats @misty dew, you played yourself
@eager cliff do you have a whole plugin setup for vim
i'm currently too much of a scrub to figure out how to get much of anything working except nerdtree
i have two plugins, and two themes. that is it.
one is intellisense, the other is a thing to highlight the text i yank.
and i am thinking of ditching the intellisense.
oooo gotcha. themes are colors right? or is that something else
yes
which ones do you use? i've been using ron
Maybe not the best but this is my .vimrc
wait does that set backspace thing make my computer stop yelling at me when i try to backspace things sometimes
The last "PEP8" thing? It should let you backspace to the right indent level
nice ๐ thanks
Why are we converting an innocent soul to vim
i already use vim i'm just too much of a scrub to get any plug ins working lol
I generally steer people to VS Code first
wait while we're talking about vim does anyone know how to get completions from all files in the same directory even if they're not opened in a buffer
like with ctrl+n and ctrl+p
i think if it's possible it has something to do with set complete but i can't figure it out
Im on kubuntu and just downloaded 3.10, where should I be extracting the .tar and how do I compile it?
or do I not need to
extract it where u want to store the python executable
then ./configure and then make
then you can symlink stuff
like: ln -s python /usr/bin/python3.10
then restart ur shell
python3.10 should invoke python3.10
you don't need to restart the shell
i mean ยฏ_(ใ)_/ยฏ
also if u want
u can make python3.10 ur primary python invoked on shell
you can alias it by adding alias python3=python3.10
In the future on Ubuntu based systems I recommend using the deadsnakes ppa
Less hassle
I might just try using that
Or apt actually
Didnโt think about that for some reason
Deadsnakes ppa is apt lol
pyenv
Oh cool
I wish I was in Northern US right now
Everyoneโs seeing auroras up there (northern lights
meanwhile Iโm stuck where I am with light pollution
bruh you're literally in it
Happy diwali to all
happy diwali
This is the type of response Open AI's GPT-3 would give.
Should I boost this server?
YES!
i mean u can do it if u want to show ur appreciation but mostly it wont really be useful
because it has such a huge number of boosts already
it has 3 times the amount needed for the final level
Why did you post this?
damn
.topic
Suggest more topics here!
Die from anxiety
ants? 
no , beetles
looks like ACO without the pheromones
Firing particles with collisions to solve mazes ๐คฃ
lol
24 kg
Happy Diwali to all my indian folks here and those who celebrate it!
Omg so good 0.00000000000% sarcasm
Is that what that was?
Yeah ๐คฃ
it's how sperm finds the egg.
uh
Why did you change your name?
It's no longer Halloween
I should change my pfp but I've not found anything that I want to change it to
I can't unsee it.
lol
no?
A portrait of me
no
Are byou inhalable?
oh . . .
lied
The Cake?
no the lemon god of the gurkan lands
does not compute
You don't know the gurkan lands?
Pics or it didn't happen.
Did you make it to the gurkan lands?
LMFAO, Cucumber Propaganda! https://www.youtube.com/watch?v=0Xa7Dp3-eYA
The best Cucumba song ever made ๐ฅ
Original video by @Macka B: https://youtu.be/Hc65D12fV8Y
Follow Macka B:
https://www.instagram.com/officialmackab
https://twitter.com/mackab
https://www.youtube.com/user/OfficialMackaB
https://www.mackab.com
Buy Macka B's Cucumba Merch: https://www.mackab.com/product/cucumba-t-shirt/
๐ต The Kiffness on Spot...
Your catified nickname is: TheHive | แแแข
Your catified nickname is: TheHive | แแแข | แแแข
Your catified nickname is: TheHive | แแแข | แแแข | แฆแแข
Your catified nickname is: TheHive | แแแข | แแแข | แฆแแข | แแแข
Your display name is too long to be catified! Please change it to be under 26 characters.
.topic topic
green shrek choco
This isn't #sir-lancebot-playground
I know
Do you though?
yes
That was from hours ago
tis the only recent thing
spam is spam
Why do I hate you?
cause im always right
Oh wow this man allway got A in everything why don't you become president?
politics is boring
Like you
im not the one spamming a channel with commands
How does that make me boring?
doesnt make you interesting, for sure
do any of you deal with unhappiness in life
disappointment in yourself, and your life
thinking you could have had a better life
No
Sure, its part of the human experience. Plus 100% happiness and joy is not a realistic goal
exactly
If you do feel that way, I would recommend seeing a specialist. I am not an expert in human psychology and we are complex beings. Plus the brain is an organ and can become sick, but its treatable
money....
poor
dont want to involve parents also
they'll give me that shit talk you're fine what the fuck bro
Try to identify the sources, and if you are over-thinking / dwelling / fixating on them
That's when you use murder
not to that point
though it would be nice killing some schoolmates i suppose
killing is a great feeling
to be in control of someone
Then they'll for sure let you go to a specialist
it do be kinda cringe in here right this moment
How old are ye?
old enough to party
Yeah I am seeing myself out. 'Tis too much
maybe its time to ping a mod to step in and clean up a bit
Wym by party?
go to a night club presumably
if you know you know
oh strip club? why didn't youy say so?
chilidog
!mute 745674084863574087 7d I have no clue what made you think that suggesting murder as the solution to someone's depression is appropriate here. You should also be keeping chat SFW, as per our #rules and #code-of-conduct.
:incoming_envelope: :ok_hand: applied mute to @rough sapphire until <t:1636638641:f> (6 days and 23 hours).
!warn 404929584400695307 I get that depression can be hard, but this isn't the place to be talking about killing people (schoolmates/parents/anyone). Please don't do this again.
:incoming_envelope: :ok_hand: applied warning to @honest spade.
What's happening
Let's move on please
yes
so anyway, im writing a script to dump a week's worth of git commits for my 1on1s every friday
beautiful soup 4
do i use rich or do i dump into html
Duck
Rich
I'd go with rich
the best soup is orange juice
rich definitely is nice, been rewriting tree in it
Morning kat
I like cream of tomato soup ๐
mooorning
Dumb question, but French onion soup counts as a soup right?
no but orange juice does gg
Yes
tea is leaf soup
wtf
is toilet water a soup
bruh
n- maybe
forbidden soup 
yes its basic biology
debatable
that will then conclude that vsauce ate a donut dipped in soup
TMI starcy
cope
I prefer beanut butter, honestly
banned
I donโt have words
๐ฐ
D:
wtf
need help coming up with a name for a reporting script
repyrter
based
might actually go the JS way and start naming all my projects <project>.py
names should be self documenting
Are you a honorary senior expert software developer or something? Iโve heard that some legendary developers know how to easily name things properly, but I thought it was just a myth
yes
i say its a reporting script but i actually was talking about the package name
names are for humans, transform to robot
git_cli_reports
ah youre no fun, wheres the funny pun in the name
Be careful with who you show your true powers. Some people might get obsessed and start the Lakcult
how'bout Lakult
im in
we worship lactose
Was originally thinking that, but itโs a bit unclear. Maybe thatโs fine though
Letโs call it Lakult yeah
i used to drink that long ago
till a friend scared me away by saying it's made of poo
it is tho
It had to be done
i mean they're not wrong you can make it out of poop
Hhaha please do
never
Lies arenโt you a programmer?
no waifus
nah i am not
guessed it with that line
Not even in your freetime?
u have time to sleep? what is sleep?
husbando then
no
Only Gurkfus
gurkfuse
idk, i like sleeping more recently
use gurks as fuse
Then you are not a true developer. You must conform to the norms of you ever wish to rejoin.
/s aside, thatโs actually nice. Sleep is really important
i develop better sleeping performance
b..bu..but sleep for the weak right?
time.sleep: ๐ฐ
you underclocked ur circadian cycle to perform better
Big bren
Hey, question about Dropbox.
Do you know if it's possible to share an invite link so that users can also eddit the contents.
I only see links with "view only" access.
im week ๐
im month ๐
Github co pilot is very cool
Yes
No
It's cool till you learn about the licensing issues
๐esplain?
Copilot doesn't check the licenses of the code they're using, and some licenses don't allow use of the code without using that same specific license, so it can be an issue
Yeah I just got in today
it automates some things but nothing cool yet
it's more like boilerplate stuff
Seems like licensing software is synonymous with trademarking a quote. Like Coca Cola and other Namebrand products. IMO it's just an idiotic way of extorting money out of people.
Never heard of the GPL then I assume, or the unlicense?
Licensing is copyright related. A license is essentially the legal permission to own or possess or use something in a certain way.
How you license code you create, determines how people are allowed to benefit from it.
That's why I said it was idiotic because there's so many ways to get around those licenses it's almost comical.
lolwut
Well no duh, you can just copy paste the code. The whole point of the license is that legally, if you violate it, you can be sued or whatever.
wtf are you even talking about bro, you open up with "It's just a way to extort money out of people!" then follow up with "you can evade licenses!"
i swear i've never copied anything illegally in my life ๐ฅบ
Which doesn't even touch on the fact that the GPLs were created specifically to grant legal recourse against people trying to extort money out of people
I've said too much.
"Too much" being anything, since you've clearly never read the GPL?
I usually go with the unlicense cause I like simplicity.
I know about GPL, CC, CC-BY . . . Yes Open Source is a type of license.
mmm this is getting hostile ๐
Open Source is a type of license
I don't think I can continue this, I'm gonna come out with either brain damage or a mute
bye
Open source ain't a license, it just means that the source is... well, open
There are various open source licenses, but it isn't a license in and of itself
I was responding to the confusion directly. It worked.
Uhh whatt?

