#voice-chat-text-1
1 messages Β· Page 7 of 1
Without the optimization
Forgetting the optimization
You're having to call that arrow function multiple times as well as the actual function you're looping to get
No such thing happens in the for of
Which?
Oh the getting fired
No no, he's serious
He doesn't care if he gets fired
Not a prediction
He's making it happen
Go to your meetings, do your work, etc....
Yo dawg
Straight trippin' yo
Guuurrrrrrrrrlllll why you be hatin'
@leaden pike Yo
hay hayy
@modest flare Later bud
@leaden pike Sleep well
Does it matter in that case?
My god, he's dead
@solid gyro Yo
Employees of the year
Give them a hand
No car - beat me to it
Not be able to support yourself and your partner
@charred creek If you wouldn't describe it as big, would you describe it as girthy?
Hell yes
"I work at a girthy Fortune 500 company"
Amanda
Andrea
Alexis
Conan Doyle?
@solid gyro
Archibald
You rang?
I too am a posh gay big game hunter
"The Importance of Being Earnest"
There were the Earnest movies
(im joking if you didnt understand it by now)
I do
Just felt like being snarky for some reason, apologies
Unless that's the play the whole time
They're intentionally designed for people to succeed via spite
@crystal aurora I've been trying
For
Years
YEARS I say
YEARS Maro
Or you end up making him double down and spiting you
Gunpowder plot anyone?
@crystal aurora Don't worry, I'll keep her occupied
With a puppet show!
With a puppet show I say
@solid gyro That's when you have to justify getting more than one candy bar
Were those blue bananas?
maybe
Is that a euphemism or...
Never even seen them before
if it helps, Banana Green color hex code is #BDAA5D
Oh yeah, THAT'S what I need to deal with today...
Same
That's literally what LP
Except for the startup part
Build up the PTO first
You could make a go-kart in that time
That'd go somewhere
@crystal aurora
Yep
And it would indeed go places
No, but you can make your own go-kart track
There's a business
Indoor go-kart tracks
my meeting is delayed
why dont email clients support base64 encoded images
like i dont think you can suddenly hack someone with base64 encoded images
i love how apple mail decides to allow this unlike any email client
the reason why is because email clients are not standardized
no way i couldve guessed that on my own
Force of habit
the most painful thing is how they render emails
Protonmail mobile supports base64 encoded images, their web doesnt, their application doenst. on mobile webistes are dark , on browser they are their true colors
@zinc aspen π
Weird
Guessing it's not CTRL + Scroll Up? @charred creek
Mike Bro Soft
you can get it in vs code too
!
or more like as a beginner i started in it thats why i like it more perhaps
You can get the keyboard shortcuts yeah. But I love the plugin ecosystem that Sublime has. They're written in Python, so if I need to make one I know I can do it relatively comfortably
@surreal bolt Yo
You had background noise, @surreal bolt
That's what we were saying, yeah
All good brother
Hey AF
I figured out why groupby doesn't sort but failed to apply the same reasoning to another its implementation/interface detail
the code wasn't perfectly easy
but it did look simple-ish
@crystal aurora He's always using text chat
You know this
Ah, fair
Thought you were gaslighting me
Don't know if I've ever heard AF
there was usage of object() for non-equal element
this is why there's "roughly equivalent" in docs
!d object
class object```
Return a new featureless object. [`object`](https://docs.python.org/3/library/functions.html#object "object") is a base for all classes. It has methods that are common to all instances of Python classes. This function does not accept any arguments.
Note
[`object`](https://docs.python.org/3/library/functions.html#object "object") does *not* have a [`__dict__`](https://docs.python.org/3/library/stdtypes.html#object.__dict__ "object.__dict__"), so you canβt assign arbitrary attributes to an instance of the [`object`](https://docs.python.org/3/library/functions.html#object "object") class.
yoyo
Yep
does any one know how to get the the link produced from ngrok
ngrok is the fastest way to put anything on
the internet with a single command.
God I love that text cursor
I'll try to redo the reference implementation with a more OO way of keeping the state
(state objects or what are they called?)
Just zipping and zooming around
@surreal bolt Derp, I meant ask it here. Or link me to your help thread
Vim
or functional idk
this is kind of the part that these both paradigms share
π cheers
Pylance still is not happy with tuples' covariance
What's the error/red squiggly saying?
Are they okay?
You do realize it'd be a hit and run, right?
Tranq them
Hunt them down
i dont thinkthis is ark
!e
from itertools import groupby
sequence = [1,1,1,2,2,2,3,1,1,2,3]
for k, v in groupby([1,1,1,2,2,2,3,1,1,2,3]):
print(k,list(v))
@charred creek :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 1 [1, 1, 1]
002 | 2 [2, 2, 2]
003 | 3 [3]
004 | 1 [1, 1]
005 | 2 [2]
006 | 3 [3]
fyi
tuple[T] should be covariant over T
it mostly works
but sometimes doesn't
So it's mainly a typing issue
yes
Huh
zip64 is just an extension of the standard, Windows does indeed natively support it
tuples' typing is quite complex
probably both I and Pylance fail at understanding it
Any time you have to deal with arbitrary container stuff it becomes a mess
I gave up when I made auto_guild with all the API responses
@true valley Can you tell him to stop sounding so proud of it?
@true valley Coming out of the sewers.... no wait, those are CHUDs
I know you're saying sai
i need google to have my assets on their local dns
But all I can think is sigh
and hotlink it in my email
"Going to take you down with... -sigh-"
They're not
Handguard
It's a fork
It's a fork with a longer center prong
The lamest of all forks
tee hee
i would use tar.gz
the reason being establishment
ahh
Integrates directly with the context menus on Windows
ye it also supports winrar and stuff which is quite helpful
winzip does it aswell lol
"No, I don't want to purchase"
crack it then ye then 7z is prob the best
so the first step would be to separate started and non-started state
I forgot what the hell I was doing
OH right
C#
Recreating my database picker to be a bit snappier
snappier?
Currently it's just a PyInstaller program
So there's a bit of a lag at startup
All it needs to do is have buttons and change a registry value
isnt a database picker supposed to turn database into SQL?
In a broader sense yeah. In my case, it's for our Document Management System
Specifically Lacerte DMS
Originally it was all in one database, but as it grew larger there were huge performance impacts and issues
Tax?
So I had to split it up into - yeah, I work at an accounting firm - 5 different ones
remote?
But Lacerte Tax will only print to the last database you accessed, which is an issue during tax season
from typing import Iterable, Generator, TypeVar
T = TypeVar("T")
def g_groupby(s: Iterable[T]) -> Generator[tuple[int, Iterable[T]], None, None]:
s = iter(s)
try:
cur = next(s)
except StopIteration:
raise RuntimeError("Empty iterable? What do?")
buf: list[T] = [cur]
for e in s:
if e != cur:
yield e, buf
cur = e
buf.clear()
buf.append(e)
yield cur, buf
@charred creek What's the editor you are using ?
But it just checks the registry value, so it's easy to work around that
Neovim
AstroNvim
Sadly no, I work in office
Were you the one who was using LunarVim?
Or did I imagine that
ngl this looks like the most licensed software of the century
Welcome to financial software
Hello
Yo
Why i dont have permission to speak
their careers page literally says a bunch of useless stuff lmao. better yet pure BS
Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate system
I'd suggest using Iterable not Generator
Yep. And their products are different shades and flavors of crap, but your options are limited when you are interacting with state, federal, local, c-corps, s-corps, etc....
or Iterator
itertools.groupby(iterable, key=None)ΒΆ
Make an iterator that returns consecutive keys and groups from the iterable. The key is a function computing a key value for each element. If not specified or is None, key defaults to an identity function and returns the element unchanged. Generally, the iterable needs to already be sorted on the same key function.
The operation of groupby() is similar to the uniq filter in Unix. It generates a break or new group every time the value of the key function changes (which is why it is usually necessary to have sorted the data using the same key function). That behavior differs from SQLβs GROUP BY which aggregates common elements regardless of their input order.
The returned group is itself an iterator that shares the underlying iterable with groupby(). Because the source is shared, when the groupby() object is advanced, the previous group is no longer visible. So, if that data is needed later, it should be stored as a list:
Open-source just can't cut into that market
Not without some serious financial backing
Tax law and policy can change multiple times during the year. And that can be for different states, different kinds of returns, etc
what
Welcome to hell
Can i get a job by just knowing Python
id presume finance is the opposite of this lmao
Possible, but always better to have more languages under your belt
Eh, coding is coding
Well i know python, js, and c++
just learn C#, and you will basically be decent in every other standard language (unlike go or like python)
#career-advice can probably give you a better handle on what skills you'd need or how you'd pursue things in your country
you cant go more standard than C#
Java
na
Still heavily in industry
i have used java and C# and i can say by far C# is way more standard
but i mean libaries suck so Java is better, conclusion made
:%g/^$/d
Still prefer C#
the language is just awesome
I think it'll have more growth potential now that .NET isn't just Windows
ASP.NET is huge
we had classes in summer, and except for the whole namespace and OOP methods, i pretty much could make a decently well terminal application
Yeah I'm trying to get more comfortable with it. I like it, I've used it for some projects, but haven't kept in practice
sad i had my code pictures on reddit but deleted them
@true valley How've you been
Enjoying it?
YES
can someone help me
The whole series is amazing, probably one of the greatest Video Games ever made.
I didn't like the earlier games, but I think you had to have had that pedigree and history in order for these last to games to really hit
Like have that emotional impact
You know all the things he's gone through
You feel the weight of his past
You see the active struggle he has being a father again
Making sure that they're safe
Christopher Judge did an excellent job playing Kratos
from prettytable import PrettyTable
import random
pokemons = ['Pikachu', 'Squirtle', 'Charmander']
table = PrettyTable()
table.add_column('Pokemon Name', ['Pikachu', 'Squirtle', 'Charmander'])
table.add_column("Type", ['Electric', 'Water', 'Fire'])
table.add_column("HP", ['100', '80', '90'])
table.align = 'l'
print(table)
pokemon = input("Choose a pokemon from the table above. ").lower()
if pokemon == 'pikachu':
user_hp = 100
comp_hp = 100
elif pokemon == 'squirtle':
user_hp = 80
comp_hp = 80
else:
user_hp = 90
comp_hp = 90
opponent = random.choice(pokemons)
if opponent == pokemon:
opponent = random.choice(pokemons)
print(f'Your opponent is {opponent}.')
attack_table = PrettyTable()
attack_table.add_column('Pokemon', ['Pikachu', 'Squirtle', 'Charmander'])
attack_table.add_column('Attack', ['Lightning Bolt', 'Water Splash', 'Flamethrower'])
attack_table.align = 'c'
print(attack_table)
pikachu_attack = 'Lightning Bolt'
squirtle_attack = 'Water Splash'
charmander_attack = 'Flamethrower'
user_damage = [20, 40]
u_damage_done = random.choice(user_damage)
comp_damage = [20, 40]
c_damage_done = random.choice(comp_damage)
def attack():
user_attack = input("Do you want to attack first? Type 'yes' or 'no'. ").lower()
if user_attack == 'yes':
print(f'Attacking {opponent}! You did {u_damage_done} damage!')
new_comp_hp = comp_hp - u_damage_done
print(f'{opponent} is now on {new_comp_hp} HP!')
user_attack = True
else:
print(f'{opponent} is attacking first! He did {c_damage_done} damage!')
new_user_hp = user_hp - c_damage_done
print(f'You have {new_user_hp} HP left!')
def check_winner():
if user_hp == 0:
print(f"Uff! NIce try, but you lost to {opponent}")
else:
print(f"You won! You defeated {opponent}")
attack()
while user_hp or comp_hp != 0:
attack()
else:
check_winner()
Oh, I loved the earlier games, they basically redefined the action adventure genre of video game.
nice
What's happening that shouldn't happen or isn't happening that should
Christopher Judge has always been central of the series, his voice really carries the character.
Wait, how long has he been the voice?
Carson was before right? He was also amazing
Yeah that's right
autopep8 and Pylance are fighting
@stone ermine π
Interesting Carson Also did Mace Windu on the Animated Series... Wonder if his interpretation was any good.
one wants to change lambda to def, another gets angry at it
It's amazing how many voice actors do like 80% of the voice work
It's such a small community of people but dear god are they good
True story.
Billy West
Mark Hamill
Mel Blanc when he was still alive
Frank Welker
Just absolute legends
They are part of the reason I got interested in voice acting
Could just never follow through
@burnt mesa π
Did you hear the Radio Lab piece on Mel Blanc?
I haven't, no
def g_groupby(s: Iterable, key=lambda e: e):
s = iter(s)
try:
cur = next(s)
except StopIteration:
raise RuntimeError("Empty iterable? What do?")
buf: list = [cur]
cur = key(cur)
for e in s:
if key(e) != cur:
yield cur, buf
cur = key(e)
buf = []
buf.append(e)
yield cur, buf
Yield wouldn't make sense there
It's really good. They talked to his son, and covered a part of his life in the hospital, the man was fascinating.
The last one I mea -never mind
I see that it's the ending one
@charred creek I missed the yield in the for loop, that's my bad
raise looks off
If you would
!e
class User:
def __init__(self, age:int, name:str) -> None:
self.age = age
self.name = name
def __repr__(self) -> str:
return f"User(age={self.age}, name={self.name!r})"
iterable = [
User(10, "Maroloccio"),
User(10, "Bob"),
User(3, "Griff")
]
def g_groupby(s, key=lambda e: e):
s = iter(s)
try:
cur = next(s)
except StopIteration:
raise RuntimeError("Empty iterable? What do?")
buf: list = [cur]
cur = key(cur)
for e in s:
if key(e) != cur:
yield cur, buf
cur = key(e)
buf = []
buf.append(e)
yield cur, buf
for k, v in g_groupby(iterable, lambda e: e.age):
print(k, list(v))
@charred creek :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 10 [User(age=10, name='Maroloccio'), User(age=10, name='Bob')]
002 | 3 [User(age=3, name='Griff')]
Looks like it's in the wrong spot.
Or at least feels like it
from __future__ import annotations
from itertools import groupby
class User:
def __init__(self, age:int, name:str) -> None:
self.age = age
self.name = name
def __repr__(self) -> str:
return f"User(age={self.age}, name={self.name!r})"
iterable = [
User(10, "Maroloccio"), User(10, "Bob"), User(3, "Griff")
]
for k, v in groupby(iterable, lambda e: e.age):
print(k,list(v))
from typing import Iterable
def identity(e):
return e
def g_groupby(s: Iterable, key=identity):
s = iter(s)
try:
cur = next(s)
except StopIteration:
raise RuntimeError("Empty iterable? What do?")
buf: list = [cur]
cur = key(cur)
for e in s:
if key(e) != cur:
yield cur, buf
cur = key(e)
buf = []
buf.append(e)
yield cur, buf
print("Griff...")
for k, v in g_groupby(iterable, lambda e: e.age):
print(k,list(v))
I would think it'd be in the for loop
I'm trying to figure out what I mean
I think I'm just used to seeing something like this as a class with the dunders
def takewhile(predicate, iterable):
# takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4
for x in iterable:
if predicate(x):
yield x
else:
break
It's essentially that
"Empty iterable? What do?" question(s) can be answered
@autumn raft Charge you for these... um.... I'll get back to you on that
@autumn raft If I don't see this in 1's and 0's I will disown you
it took me 4 classes to make it simpler for me
||State, EmptyState, StartedState, Grouper||
@pale pivot Hey buuuuuuudddddddddy
hello fren
Isn't that last one a fish?
How is you
Eh
good english
Why are we in vc1 instead of 0
Standard procedure. Someone wanted to do something and would have talked over people so they migrated, the original chat dies because everyone moved, etc.
I cannot brain today, I have the dumb
Fair enough
good english
@solid gyro I want to drink your namesake
Why not namevodka?
Alcohol messes with my stomach anymore
I really want a cider
But I have to manage the heartburn I know it will give me later
but sake is alcohol too
I'm disappointed
I get that a lot
@delicate geode π
Hi @stuck bluff !
Just started a new job for post-graduation. I feel Im gonna be spending a lot of time here haha
focus on your job first
@jagged hawk I mean for help lol
@crystal aurora
I know why the next value gets retrieved
because the v isn't lazy apparently
those two are connected
group on a lot of values with the same group
or, like, an infinite group
wdym it's not lazy
it gave you 99
the group for 99 is already available
it doesn't know
it can't see the future
using d[k] = v is not very good for this
at least because k is not required to be Hashable
!e
print(5)
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
5
@crystal aurora :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'itertools' is not defined
@crystal aurora :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | [0, 2, 2, 2]
002 | [3, 4]
I'd guess that would be a counter-example for takewhile solution:
(_, v0), (_, v1), (_, _) = groupby([0, 1, 0])
next(v0)
next(v1)
next(v0)
with takewhile this does not fail, from what I understand
!e
from itertools import chain, dropwhile, takewhile, repeat
def g_groupby(s, key=lambda e: e):
s = iter(s)
try:
t = next(s)
except StopIteration:
raise
tk = key(t)
yield tk, takewhile(lambda e: key(e) == tk, chain([t], s))
yield from g_groupby(dropwhile(lambda e: key(e) == tk, s), key)
class User:
def __init__(self, age:int, name:str) -> None:
self.age = age
self.name = name
def __repr__(self) -> str:
return f"User(age={self.age}, name={self.name!r})"
iterable = [
User(10, "Maroloccio"), User(10, "Bob"), User(3, "Griff")
]
i = 0
for k, v in g_groupby(chain(iterable, repeat(User(99, "Fisher"))), lambda e: e.age):
if k != 99:
print(k, v, list(v))
else:
print(k)
i += 1
if i == 3:
break
@charred creek :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 10
002 | 3
003 | 99
!e
from itertools import chain, dropwhile, takewhile, repeat
def g_groupby(s, key=lambda e: e):
s = iter(s)
try:
t = next(s)
except StopIteration:
raise
tk = key(t)
yield tk, takewhile(lambda e: key(e) == tk, chain([t], s))
yield from g_groupby(dropwhile(lambda e: key(e) == tk, s), key)
class User:
def __init__(self, age:int, name:str) -> None:
self.age = age
self.name = name
def __repr__(self) -> str:
return f"User(age={self.age}, name={self.name!r})"
iterable = [
User(10, "Maroloccio"), User(10, "Bob"), User(3, "Griff")
]
i = 0
for k, v in g_groupby(chain(iterable, repeat(User(99, "Fisher"))), lambda e: e.age):
if k != 99:
print(k, v, list(v))
else:
print(k)
i += 1
if i == 3:
break
@charred creek :x: Your 3.11 eval job timed out or ran out of memory.
001 | 10 <itertools.takewhile object at 0x7fad515bd840> [User(age=10, name='Maroloccio'), User(age=10, name='Bob')]
002 | 99
oh it does fail
!e
from itertools import chain, dropwhile, takewhile, repeat
def g_groupby(s, key=lambda e: e):
s = iter(s)
try:
t = next(s)
except StopIteration:
return
tk = key(t)
yield tk, takewhile(lambda e: key(e) == tk, chain([t], s))
yield from g_groupby(dropwhile(lambda e: key(e) == tk, s), key)
(_, v0), (_, v1), (_, _) = g_groupby([0, 1, 0, 0])
print(next(v0))
print(next(v1))
print(next(v0))
weird
oh, I managed to do that
!e
from itertools import chain, dropwhile, takewhile, repeat
def g_groupby(s, key=lambda e: e):
s = iter(s)
try:
t = next(s)
except StopIteration:
return
tk = key(t)
yield tk, takewhile(lambda e: key(e) == tk, chain([t], s))
yield from g_groupby(dropwhile(lambda e: key(e) == tk, s), key)
grouped = g_groupby([0, 1, 0])
(_, v0) = next(grouped)
print(next(v0))
next(grouped)
print(next(v0))
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 0
002 | 0
@charred creek
hello
hi
def g_groupby(s: Iterable, key=identity):
s = iter(s)
v = next(s)
vk = key(v)
t1, t2 = tee(s)
yield vk, takewhile(lambda e: key(e) == vk, chain([v], t1))
yield from g_groupby(dropwhile(lambda e: key(e) == vk, t2), key)
"Marolokkio"
@delicate wren please try to break
!e
from itertools import chain, dropwhile, takewhile, repeat, tee
def g_groupby(s, key=lambda e: e):
s = iter(s)
v = next(s)
vk = key(v)
t1, t2 = tee(s)
yield vk, takewhile(lambda e: key(e) == vk, chain([v], t1))
yield from g_groupby(dropwhile(lambda e: key(e) == vk, t2), key)
grouped = g_groupby([0, 1, 0, 0])
(_, v0) = next(grouped)
print(next(v0))
next(grouped)
print(next(v0))
oh, it doesn't do the thing at least now
!e
from itertools import chain, dropwhile, takewhile, repeat, tee
def g_groupby(s, key=lambda e: e):
s = iter(s)
v = next(s)
vk = key(v)
t1, t2 = tee(s)
yield vk, takewhile(lambda e: key(e) == vk, chain([v], t1))
yield from g_groupby(dropwhile(lambda e: key(e) == vk, t2), key)
grouped = g_groupby([0, 0, 1, 0, 0])
(_, v0) = next(grouped)
print(next(v0))
next(grouped)
print(next(v0))
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 0
002 | 0
well, expected and correct for this test
this probably woks correctly in terms of not overrunning the group
but tee() allocates additional memory
yehp
has anyone here worked with 2FA?
true, but does it outweigh the required state stuff
if you hold on to groups (thus them not getting GCd), it will be duplicating the whole iterable
@stuck bluff heya
https://github.com/Hilellasry/Project_generator I made ne project!
hi guys i have been trying to run my python file in terminal but it just keep on showing this
plzzzz help i have been stuck for past 2 hrs
Cheers, @stuck bluff , and everyone!
@elder wraith I will slap fight you
woah, I magically transported here
He's moving himself
I literally moved everyone
I AM A GOD
I literally said it in #code-help-voice-text as well
Too tired
To anything really
I had like.... 15ish minutes of broken sleep last night because I forgot to refill my sleep meds
F
i woke up at 11pm ready to goto work
and was like
Fuq, its still not morning
I woke up at 4 pm
gg

@elder wraith I'm sorry for being an abusive lover admin
sadmin 
Hello
yo Hemlock
Not Twilio, no
Emogus 
Professional pedants
π© "This is a poop"
but there could be multiple meanings
π© Aka chocolate ice-cream
you would have to have to define context
@charred creek Are you ah... having a stroke?
@elder wraith Uncivil courts are more fun
see i cant even tell what these emojis mean
Brahhamas
he is getting a divorcees because of his emoji addiction
Subsidiary?
Yeah
Or subsidirary
@elder wraith You're cutting in and out
Tax havens
so you have a company(US based) that doesn't make profit because they are owned by a company in a Tax haven who take all the profit. So you don't have any profit.
Hello Opal
I was actually watching the stream
hey
there is money in everything
heyy
Have you been to London?
@stuck bluff could you possibly help me?
i cant hear the call hence me leaving
okay now I can help
What's up? I'm in an awkward position right nowfor typing.
They are closed on Sunday
its with my code for the assignment...we talked yesterday
@sinful elm ?
can i send it to you by dm?
No.
oh okay
wanted to know that awkward position lmao
Phonecharging.Cableshortish.
Phone landscape keyboard shittily large.
Not while my pride remains.
Radio and TV dont have two way communication
it also makes it diverse
In 1983, Billy Joel released his album An Innocent Man, an album that traces Joel's musical history through his teenage years in the late '50s and early '60s. Watch the official music video for 'The Longest Time', which broke the Top 20 on the US Billboard Hot 100 chart.
Official Video for "The Longest Time" by Billy Joel
Listen to Billy Joel: ...
do you listen to andrew tate in any way? @elder wraith
Fuck no.
Andrew Tate is terrible Human Being
umm debatable
Can you fill up an excel sheet automatically from a picture
+1
Computer vision.
yeh depending on the way and the amount of milk u have added
u can make multiple ones
White Americano?
So it's just an Americano now
Americano is just two shots of espresso and water
@true valley
Hai opal
The o in Americano is to make it sound stylish.
McDonald's coffee is good
It really does
Or like Mario is saying it
Tim Hortors is the GOAT
I like my coffee the way I like my men
Strong and black
@warm tendon How's it going
Lymph biskit
This is funnier when said by a 8 year old girl on an Airplane
@stuck bluff It's served him well so far
alright Β―_(γ)_/Β―
without sleep
Fair enough
It's a separate part of my brain. Like an entire lobe dedicated to shitty jokes
- More hilarious Airplane clips here https://www.youtube.com/playlist?list=PLPC9Lmc1DqoblBOiI7mjyBdZ6Fv4zH8Ox
- Video Source: Airplane! Blu-ray Disc
- Screenshots - https://imgur.com/69rDPsh
You have to donate it for research
whats wrong with capitalism? π
lowercase is better
NaH tHiS iS bEtTeR
And the demands of jobs in general
Like
If you have shit that HAS to be done
Being forced to take time off isn't helpful
didnt get the point though.....
Oh, capitals vs lowercase
#sorrynotsorry
Nah
but on a serious point i dont see a valid point against it
It's very stilted towards the success of a smaller percentage
How regulated are we talking?
but arent they the one working for it
Bran and prunes every morning
and have earned it somewhere?
solid food? too far man
Not necessarily. Plenty of families essentially handing down dynasties via inheritance or nepotism with jobs. Lots of classism.
obviously a society with equal distribution would fail if thought practically
Shall we auction off toilet breaks? Capitalism!
The folks in the lower social/economic class are often times stuck there, higher the same
it will decrease the demand in the market directly/indirectly
I can't talk yet in voice, i am too new! so don't mind me ease dropping lol
Welcome
@misty sinew Always happy to have more folks in here!
i see no problem with that either
they were prolly 'fortunate' enough
Thank you for the welcomes!
to be born
I'm only pointing out that it's counter to saying "they worked for it" or "they earned it"
yeh but that doesnt create a point against capitalism innit?
wait how many members are in Python Discord
They had significant factors that allowed for those opportunities to happen, even if they may have just been riding the coat tails of their familiy
i agree to the points you stated
At least seven.
hmm
That many
damn
Oh huh, we broke the 350k
Thought we were still hovering around that
@true valley To heir is human
@halcyon notch I wouldn't sign for your loans only because you refuse to work
Too much risk
Was gonna say
HIRE
AN
ACCOUNTANT
@true valley
Tax season is here already
@daring jungle God don't remind me. I work for an accounting firm. I can feel the tension growing
@warm tendon But the complaints will still happen regardless
but by people who are paid to do it
Yep
so it's fine
And people who will then keep better track of the stuff
And potentially finding other savings, tax benefits, etc.
@true valley America sucks. We have to deal with federal, state, local
We have a corporatocracy that has bent the tax system to benefit them and the rest of the folks have to deal with the headache
As well has companies like Intuit and Thomson Reuters who lobby to have special perks regarding integrating with the IRS e-filing systems
Just a lot of dumb
I'm just glad I'm IT
IT is the it job
That is pretty janky, though
Same
All American Regex
Does YAML or TOML support comments?
Neat
True
Or taking notes on API responses or requests
Yep
If that's the case then it would be more prudent to have it be a separate key
That's the case with any new API you're interacting with
Gotta tweak
Ah, okay
Fair
Slowly learning about Charlie's secret agendas
@agile crystal You're old
@stuck bluff You're also old
Yep
Oh Reaper you mean
I have to turn you up again
I know
Still calling you old
Yeah
It's my new thing
Fury is old as hell as well
I mean like woah
hemlock would you follow this amazing tutorial?
its not mine lol
I know
why did you remove it it was awesome work
charlie: 15 yo are basically 19...
what is it
where technology has gotten us to
@jagged hawk I'm not having a random swastika, even if it's just the design of the drone, just laying here in the server
yes grandpa
its the new dji drone
hemlock didnt want me to leak so he deleted it
ahh lol
Just consider your audience, speedro
i have audience?
This server isn't the best place for that kind of humor
I wana play ludo actully
Wait, which one is ludo
Oh it's Sorry
Got it
Which
I can do Car
I don't have the brain to relearn it right now
I'm running on like 15 min of sleep
monopoly is a good game...
hello
@rocky granite Carcassonne
yeh i love it too
Yarp
yall playing ludo??
@mild flume hows ur milage going
Already knocked it out. Think it was only like ~$140 this time around
nice
But it's better than nothing, and tax is already taken out of it
Das a lot
yh but barely any profit
@solid gyro I have an account, but I apparently don't have you added
Free lancer or small business owner or what
all time fav β€οΈ
I provide an add on logistic service for construction contractors/companies
small company
I rent out Vans and provide a driver
right now its just me though and i can only manage 1 customer
Im able to write off all the van rentals as expenses
plus claim back 20% vat
Vat is in the UAE only or its somwhere else too
It can be very profitable however the current customer I have is getting "friends" rates so i can get some consistent cash flow into the business before expanding and finding other leads
UK
ohh i see
π€
Yeah I don't know
I tried
Example
Those two are not joined by another city tile yet
So they're considered separate
Which let me place a meeple
Hmm
Yarp
Wait
You have reached the voice mail of Mr. Hemlock. Please leave your name, number, and a brief message, and I will infract you as soon as I return.
does anyone here use AWS
yes i do
aws
any doing scraping from linkedin?
@ember cradle π
??
hi bro
Yoi @snow patrol
aarigato
Can you toss the code in here?
What are the other work of recursion rather than factorial??
sum of natural numbers
I am
@mortal edge
Yeah
Can you toss the code that you have in PyCharm into here?
Want to make sure I'm not missing something
Hey pap
a = 0 #max 7
b = 1 #max 8
c = 2 #max 9
xa = 0
xb = 0
xc = 0
while a < 7:
ax = a + xa
bx = b + xb
cx = c + xc
print(f' ax:{ax} bx:{bx} cx:{cx}')
print(f'a:{a} b:{b} c:{c}')
print(f'xa:{xa} xb:{xb} xc:{xc}')
xc = xc + 1
if xc == 9:
c += c
xc = 0
xb = xb + 1
if xb == 8:
b += b
xb = 0
xa = xa + 1
if xa == 7:
break
print(f'ax:{ax} bx:{bx} cx:{cx}')
Hmm
012>...>019>023>...>029>034>..>789 end
No no, you're fine
Testing on my end
Sorry, bouncing between here and work
It's been a stressful few weeks
From what I'm seeing (ran it locally), xc is being zeroed out
So I guess I'm not understanding where you're talking about
!e
Also, neat trick, you can do something like:
ham = 5
print(f"{ham=}")
@mild flume :white_check_mark: Your 3.11 eval job has completed with return code 0.
ham=5
No no
I mean it gives both the variable name and value
Just saves a couple strokes
Yarp
So can you show me in PyCharm where you're talking about?
Because I'm not seeing the issue where it isn't zeroing
You're good, I see
@mortal edge
I can see it fine, don't sweat it
Getting this output @charred creek
!e
print("012>...>019>023>...>029>034>..>789 end")
@charred creek :white_check_mark: Your 3.11 eval job has completed with return code 0.
012>...>019>023>...>029>034>..>789 end
done
@charred creek
Expected output:
012
013
...
019
023
If it's xyz then
When z > 9, z = y+1, else z += 1
When y > 9, y = x+1, else y += 1
Kind of
I'm phrasing it poorly
!e
from itertools import combinations
print(', '.join(f"{i}{j}{k}" for i, j, k in combinations(range(10), 3)))
@charred creek :white_check_mark: Your 3.11 eval job has completed with return code 0.
012, 013, 014, 015, 016, 017, 018, 019, 023, 024, 025, 026, 027, 028, 029, 034, 035, 036, 037, 038, 039, 045, 046, 047, 048, 049, 056, 057, 058, 059, 067, 068, 069, 078, 079, 089, 123, 124, 125, 126, 127, 128, 129, 134, 135, 136, 137, 138, 139, 145, 146, 147, 148, 149, 156, 157, 158, 159, 167, 168, 169, 178, 179, 189, 234, 235, 236, 237, 238, 239, 245, 246, 247, 248, 249, 256, 257, 258, 259, 267, 268, 269, 278, 279, 289, 345, 346, 347, 348, 349, 356, 357, 358, 359, 367, 368, 369, 378, 379, 389, 456, 457, 458, 459, 467, 468, 469, 478, 479, 489, 567, 568, 569, 578, 579, 589, 678, 679, 689, 789
@mortal edge Would you mind hopping off video for right now? We prefer to not have folks on video/streaming while there aren't any available mods+
I appreciate it
@mild flume could you check the dm, please?
Sorry, work has been swarming me right now
Ohh, I'm sorry
oh
idk
@languid jackal creating a function the print those digit
Like those
def work():
a = -1
while(a <7):
a = a + 1
b = a
while(b<8):
b = b + 1
c = b
while(c <9):
c = c + 1
print(f'{a}{b}{c}')
work()
@mild flume 3days to get this xD
@mild flume i have a much more difficult one now xD wanna take a look
pls help #off-topic-lounge-text
@hallow anchor
Here's your reminder: henlo
[Jump back to when you created the reminder](#voice-chat-text-1 message)
Hi Chris
Hi
hello
Hello my friends
@green eagle can we continue here?
People join the Voice cannels
Needs to listen to some Python talk to keep me motivated
@charred creek can u help me
How many times do I have to send messages?
To voice verify You need to send i think 50 messages and to be at least 3 days on server
hey i know no one here knows me but can someone help me find the full code of snakes and ladders with classes in the code if anyone can help me find it, but it cant be easily found on google because i need it for my college work but i dont have time to complete it because of work etc, help would be much appreciated.
?
@odd blade what to do??
hmm
wait
leme instlal
anaconda
slow plz
me indain
yeah
really?
are u selling it?
how much?
hmm
how do i get it?
yeah
hmm
I dont have my webcam right now
I will try it soon
looks intresting
sci-phi pruebas
hmm
should i install anaconda??
ok
we can do anything in it??
accept my friend req
already did
wanna go to a private vc so you can show me your script and i can hel you out ?
yes
its me
now i have a bead
hmm sur
beard
ee
lol
send me the invite
lmk when you install anaconda
I want to start competitive programing with python. is that a good decision?
@short ice π
@lyric dagger π
hi
@stuck bluff i have the same question if you could throw some adv or views on it
career wise?
hmm agree
yeh thats what i wanted to know:}
am still a teenager but wanna make sure that my base is strong
doesnt?
have heard it does
yeh example
instead of doing bubble sorting
u do sort
method
:}
and etc etc
yehh thats what i meant
aight cool
ty for the views verboof and opal
Sup
hi
What a shocker
Who could have guessed
You did what now?
Ahh, okay
I heard I tore off every piece of clothing that I wore
Thought you turned into Bruce Banner
Back in a bit
George of the jungle?
Also yes
@bright coral π
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
how can i just turn on the voice without waiting for 3 days
you cant
have to abide by the rules
oh now i need to send 50 messages now
high chances that you may do it then
i found coding game is so interesting
:}}}
hangin' like dooz balls
what is dooz balls
dooz = those
oh kk i understand
is it easier to use sublime text than javascript?
@median mortar π
Okay, I'm back
Those aren't really equivalent. Sublime Text is a code editor, where as JavaScript is a programming language
OpenTissue sounds like a tissue typing database.
Now, you can write JavaScript using Sublime Text, but they aren't the same
oh ok i know , i just thought they are the same XD
Nope, not in this case
k k
Sublime Text is more like Visual Studio Code
@halcyon notch What kind of book
Oh I can train you
Hey all!
Is your office still MIA @mild flume ?
sup hem
It's just got up and walked off like Baba Yaga's house.
Yarp
Weird claw feet and all
Yep.
@halcyon notch According to my wife, apparently it's an ADD/ADHD thing
It's just very very hard for us
@agile crystal Yooo
heyoooo
I've done that
@halcyon notch Wait, you mean those huge ones that they have at restaurants?
Do the old way
Mortal and pestle
this brings out a lot more flavor imo
hey Mr.Hemlock
also isnt it a mortar?
h sure, it was more for the lols
HA
can you code with sublime text
can you help me
Immortal Pestilence.
What's the issue you're having?
:{
Also it'll be easier if you ask in here, as I'm going to be off and on a lot today
And others might know the answer
have you seen the one which google has?
im trying to find a code to write on my game but i can't
googles sleeping capsules
56,729
310,129