#voice-chat-text-0
1 messages ยท Page 1011 of 1
The latter.
oh got it
i was basically trying to make put code in an argument
can't figure out how to do it
It's not so much that you pass code as an argument into a function's parameter, you give the parameter an object.
So you can create whatever object you want before the call then just give it a reference to that object.
It's often cleaner, because you don't clutter up the call line.
a = 1 * 20 + 8 // 2
b = math.sin(a) * 10
func(a, b)```vs```py
func(1 * 20 + 8 // 2, math.sin(1 * 20 + 8 // 2) * 10)```
!server
Ah, yes. Esoteric. Not eldrich.
"I before E except after C....and all the other times!"
"Wharrrgbl! Who summons Shamaggarog?"
"Tentacles" (7:04) ("Prologue: Tradition")
"Arkham, Dunwich" (3:32) ("Sunrise, Sunset")
"Byakhee Byakhee" (3:46) ("Matchmaker")
"Shoggoth Prayer" (1:54) ("Sabbath Prayer")
"If I Were a Deep One" (4:30) ("If I Were a Rich Man")
"To Life" (3:35) ("To Life")
"The Nightmare" (7:19) ("Tevye's Dream")
"Victim of Victims" (1:57) ("Miracle of Miracles")
"Very Far From The Home I Love" (2:09) ("Far From the Home I Love")
"Do You Fear Me?" (2:46) ("Do You Love Me?")
"Miskatonic" (2:47) ("Anatevka")
Good Night/ Good Afternoon/Good Evening/Good Morning.
!e ```py
class MyClass:
def __init__(self)
self._hash = 0
def __hash__(self):
self._hash += 1
return self._hash
mc = MyClass()
result = {mc, mc, mc}
print(result)
Good Night/ Good Afternoon/Good Evening/Good Morning.
@somber heath :white_check_mark: Your eval job has completed with return code 0.
{<__main__.MyClass object at 0x7f5c91261cf0>, <__main__.MyClass object at 0x7f5c91261cf0>, <__main__.MyClass object at 0x7f5c91261cf0>}
https://mustafaquraish.github.io/imagen/ Mustafa's thing.
Anyone can.
Reading the docs from Python.org, watching YouTube vids, reading the internal docs using the help function.
Reading stackoverflow.
Coming here and getting yelled at for bad code practices.
Consider the Set: V={'A','B'}, what is the result of V.add('C')?
{'A','B','C'}
error
{'A','B'}
?
Wait.
It's a set.
Dictionary.
Dictionaries share the {}, but are distinguishable by the colons, :
Okay, I learnt it the different way. I'm beginner so I shouldn't be saying much as well.
{1, 2, 3} #set
{1:2, 3:4} #dict```
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
free if you click 'audit'
Okay, I haven't opened Coursera and seen it, yet.
Okay:)
Greetings
Greetings.
def channel_builder(categories):
"""
Builds an array of channels to pass to the API
Channels must consist of either 3 things if they're a category
and 4 if they're a channel in a category
name: str - The name of the channel or category
id: int - Placeholder id for the channel. This will be replaced by a unique
snowflake on Discord's end
type: int - Dictates what kind of channel it is. We only care about 3 of them:
0 - Text channel
2 - Voice channel
4 - Category
parent_id: int -
"""
payload = []
' vs " ?
I don't have to like it
So important it said it twice
My land's only borders lie around my heart.
Fair enough
But yeah, these are the kind of notes I'm writing for myself as I'm doing this
Messy, will be cleaned up later, but it works
That's almost Numpy's format
Looks fine to me
Sphinx would probably even parse it as-is with napoleon
No.(kia)
oof
categories:
welcome:
- welcome
staff:
- admins-mods
- lounge-helpers-org
- defcon
- incidents
- incidents-archive
- staff-announcements
- dev-logs
logs:
- all-logs
- big-brother-logs
- duck-pond
available-help-channels:
- how-to-get-help
- help-candy
- help-bagel
occupied-help-channel:
- help-apple
- help-banana
python-help-dormant:
- help-bread
- help-burrito
miscellaneous:
- bot-commands
- general-meta-voice
- dev-core-contrib
voice:
- voice-verification
- vc: voice
- staff-voice: voice
- afk: voice
roles:
- admins
- devops
- helpers
- voice-verified
One sec
Kill me
Depends on your scanner model
If you had big feed scanner with auto separator, itโs not terrible
Sup
Let me take a look
It looks like there was a point where you were spamming to hit the message limit in order to verify
Our standard voice mute extension for that (meaning how long it'll take to get re-verified/initially verified) is 2 weeks
You've got about 6 days left
Now having said that, you're still free to join and listen in as well as participate via text in here
If we're in VC, we're typically watching and reading the paired text channel
So no one gets left out
Not as high as I would like
Effective wpm is like.... 70ish?
I think?
Although I've tested higher
But that's not what real life ends up being
Yep. And thinking about what you're going to write vs just straight copying for those typing tests
I for sure notice I'm getting slower as I get older
Not that I'm that old
But like... I see where it's going to be an issue
Absolutely do
Love them
I've got a special place in my heart for Persona 4 Golden
Well lets not use retarded in that way.
But I do get you there. Persona 5 is very special in that regard. It's hard to go back to the old ones partially because of the quality of life things they added in 5. 4's story and what not is great but...
Yeah, little rough to play now in some regards
@rugged root can you give me screen sharing for few minutes
@rugged root if possible can you join vc0
import asyncio
async def get_data(timestamp:str):
print(f"Initiated Fetching for Record {timestamp}")
await asyncio.sleep(2)
print(f"Fetching done for Record {timestamp}")
return f"Completed Operation for Record {timestamp}"
async def main():
missing_data = [
{"2022-04-20 10:00": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:01": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:02": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
]
results = []
for rec in missing_data:
# result = asyncio.ensure_future(get_data(list(rec.keys())[0]))
result = asyncio.create_task(get_data(list(rec.keys())[0]))
results.append(result)
print(results)
if __name__ == "__main__":
asyncio.run(main())
!d asyncio.gather
awaitable asyncio.gather(*aws, return_exceptions=False)```
Run [awaitable objects](https://docs.python.org/3/library/asyncio-task.html#asyncio-awaitables) in the *aws* sequence *concurrently*.
If any awaitable in *aws* is a coroutine, it is automatically scheduled as a Task.
If all awaitables are completed successfully, the result is an aggregate list of returned values. The order of result values corresponds to the order of awaitables in *aws*.
If *return\_exceptions* is `False` (default), the first raised exception is immediately propagated to the task that awaits on `gather()`. Other awaitables in the *aws* sequence **wonโt be cancelled** and will continue to run.
If *return\_exceptions* is `True`, exceptions are treated the same as successful results, and aggregated in the result list.
If `gather()` is *cancelled*, all submitted awaitables (that have not completed yet) are also *cancelled*.
@mental flume can you give me screen sharing permission?
import asyncio
async def get_data(timestamp:str):
print(f"Initiated Fetching for Record {timestamp}")
await asyncio.sleep(2)
print(f"Fetching done for Record {timestamp}")
return f"Completed Operation for Record {timestamp}"
async def main():
missing_data = [
{"2022-04-20 10:00": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:01": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:02": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
]
results = await asyncio.gather(*[asyncio.create_task(get_data(list(rec.keys())[0])) for rec in missing_data])
print(results)
if __name__ == "__main__":
asyncio.run(main())
!d asyncio.create_task
asyncio.create_task(coro, *, name=None)```
Wrap the *coro* [coroutine](https://docs.python.org/3/library/asyncio-task.html#coroutine) into a [`Task`](https://docs.python.org/3/library/asyncio-task.html#asyncio.Task "asyncio.Task") and schedule its execution. Return the Task object.
If *name* is not `None`, it is set as the name of the task using [`Task.set_name()`](https://docs.python.org/3/library/asyncio-task.html#asyncio.Task.set_name "asyncio.Task.set_name").
The task is executed in the loop returned by [`get_running_loop()`](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_running_loop "asyncio.get_running_loop"), [`RuntimeError`](https://docs.python.org/3/library/exceptions.html#RuntimeError "RuntimeError") is raised if there is no running loop in current thread.
This function has been **added in Python 3.7**. Prior to Python 3.7, the low-level [`asyncio.ensure_future()`](https://docs.python.org/3/library/asyncio-future.html#asyncio.ensure_future "asyncio.ensure_future") function can be used instead...
!e
import asyncio
async def get_data(timestamp:str):
print(f"Initiated Fetching for Record {timestamp}")
await asyncio.sleep(2)
print(f"Fetching done for Record {timestamp}")
return f"Completed Operation for Record {timestamp}"
async def main():
missing_data = [
{"2022-04-20 10:00": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:01": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
{"2022-04-20 10:02": [{'device':'device1','pv1': None,'pv2': None,'pv3': None},{'device':'device2','pv1': None,'pv2': None,'pv3': None}]},
]
results = []
for rec in missing_data:
# result = asyncio.ensure_future(get_data(list(rec.keys())[0]))
result = asyncio.create_task(get_data(list(rec.keys())[0]))
results.append(result)
for task in results:
print(await task)
if __name__ == "__main__":
asyncio.run(main())
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | Initiated Fetching for Record 2022-04-20 10:00
002 | Initiated Fetching for Record 2022-04-20 10:01
003 | Initiated Fetching for Record 2022-04-20 10:02
004 | Fetching done for Record 2022-04-20 10:00
005 | Fetching done for Record 2022-04-20 10:01
006 | Fetching done for Record 2022-04-20 10:02
007 | Completed Operation for Record 2022-04-20 10:00
008 | Completed Operation for Record 2022-04-20 10:01
009 | Completed Operation for Record 2022-04-20 10:02
by the bin under hemlocks desk i can infer that he just throws the folders that he doesn't like
goddamit im gonna miss godzilla
im jetlagged as hell
:(
@molten pewter the leg breaker
@woeful salmon you were the best goalkeeper in the punjab at one point
why am I muted?
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Check out the #voice-verification channel
That'll tell you what you need to know about our voice gate
not even helper, @silent sequoia for Admin
Iron Lung is a short dread-driven submarine horror game from the developer of DUSK, The Moon Sliver, and Squirrel Stapler.FEATURES Experimental minimalist gameplay, where your senses are limited and anything could be lurking around you Glimpse your surroundings through the lens of a grainy still camera and navigate using an incomplete satellite ...
$5.99
1667
Pilot a rusty submarine in an ocean of blood. Nothing scary can possibly happen...
Follow me on Twitter - https://twitter.com/JackWNicholls
Chapters:
00:00 - Intro
01:30 - Game Premise
03:39 - Early Conclusions
04:38 - Great Gameplay
07:35 - Excellent Atmosphere
10:21 - Personally Investing
12:55 - Recommendation
14:21 - SPOILERS Beat-by-Beat
...
how come when i run intelliJ, it takes 70 percent of my cpu, 3 gb of ram, and absolutely kills my pc?
damn, the voice verification sucks
YEAH
I've been on the server for years actually, just found it again ๐
I did not really message here I guess, I only joined once to ask about some metaclass stuff long ago
professionally
but never graduated IT
C++/Python mainly
I have two degrees but they are not IT relevant at all ๐
speaking about horifying monstrocities
do you wanna check something I am working on?
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
thoughts appreciated ๐
@weak lintel yeah I also would like to have voice verifed... but that the first message which i am sending now
I wonder why they did it
spam?
in a 3O minute interval
So we set up the gate because we had hit and run trolls
classic
People who would join the server, join voice chat, scream and then leave
it seems to be all over discord now
Yarp
But with this system we've completely shut down raids
They just fill the channels and then nothing happens and then they leave
@rugged root why cant you go back? its never too late
colleges have too much bloat
@rugged root damn...
it is definitely possible
they are not gonna look at your papers if you pass the interview on a good level
so it is kinda obsolete, just makes life easier
that is probably the reason youre still with us
dont underestimate those indians
that probably killed some tumours
I am just thinking how could this be automated:D and probably get all messages deleted by admin ๐ :
def verifyVoice():
keyboard.press('a')
keyboard.press(Key.enter)
time.sleep(2)
for i in range(2000):
verifyVoice()
@rugged root youre a perfectionist
@rugged tundra youre one of the greatest of all time for this image
yea, that route didnt work though messages. i wasted 5 hours on that ๐ i found some a day later on kaggle ๐
I want bot role
how do i learn python?
I will usually direct people to Corey Schafer's Youtube playlist for Python beginners.
You can also read through the documentation at Python.org
Also
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
For the documentation, I learned on the downloadable PDF version of the documentation.
There's a zip archive of them, one in particular, library.pdf is very good.
united states has entered the chat
wow
everyone is quiet

rant about what?
I wanted to rant abotu work
but now I have to type for more message s
before I can

LOL
I'm not spamming ๐ผ
hehe
yea
50 is not much
it's easier when people are interacting with text chat
rn I'm auditing my own gcloud spend
LMAO
I had a $50/month instance running in gcloud for some dumb projcet i forgot to shut off
๐ญ
!e list(map(print,range(51)))
@lavish rover :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
007 | 6
008 | 7
009 | 8
010 | 9
011 | 10
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/rupahigato.txt?noredirect
print(*range(51), sep="\n")```
I'm 54% of the way to my goal
well.
60% now ๐
well,
idk
if you do the math it should be like
roughly double rihgt
right?*
so if you double the number
you get
200% of the original
I've bene on for longer than 3 days the bot says
I'm only
less than 50 messages
SORRY
I've been somewhat active
todays' my 3rd day
yea
TRUEE
Yea I generally just like to vibe in discord voice calls while I work
!user
Created: <t:1510259196:R>
Profile: @lavish rover
ID: 378279228002664454
Joined: <t:1604700419:R>
Roles: <@&267630620367257601>, <@&430492892331769857>, <@&764802720779337729>
Messages: 21,265
Activity blocks: 2,761
Total: 0
Active: 0
but it's hard to context switch
if i have to type every message lol
gues guess what
this is . my 100% ๐คฉ
Dark Matter: Created by Joseph Mallozzi, Paul Mullie. With Melissa O'Neil, Anthony Lemke, Alex Mallari Jr., Jodelle Ferland. In the dystopian 27th century, six people wake up on a deserted spaceship with no memory of who they are or what they're doing there. They reluctantly team up and set off to find answers with the help of a female android.
https://www.imdb.com/title/tt2861424/ Haven't seen as much of this as I'd like.
https://www.imdb.com/title/tt2243973/ Dark, but gorgeous.
Movie recommendations?
Series.
def b():
x += 1
def a():
x = 5
b()
print(x)
hi
hi
Python DMed me saying Voice Gate Passed, but when I try to turn on my mic, I get "You don't have permission to speak in this channel"
@visual sequoia thanks for the example, I'll try it trough classmethod first then if that doesn't work I will try that.
@woeful salmon hi
Hey Opal, you Mist some of my jokes
If a single person is super unhappy, do they bring down the happiness index of the surrounding area, or are they eliminated as a statistical outlier?
Your prof just pretend to know calculus
Differential equations enters the chat
@molten pewter , how often do you chat in the voice chat channel?
print('Magical girl how often do you stay in the voice channel?')
Cope I lot
Cope I lot?
Copilot.
I'm a "regular"
Helps people cope a lot.
I am afraid to use it, seems like the crutch that will become my mechanical legs
There's nothing wrong with mechanical legs.
Probably more reliable, to be honest. As long as you can still control them...
Crypto, as in crypt, as in where the dead are kept.
Crypt? Oh.
Okay.
mustafa youre a big n notation legend
??
Cryptocurrency.
That's such an nยณ joke tbh
@rugged tundra they did that a few years ago
and pretended they were a college
the government dont play fair
@lavish rover
@molten pewter id be pretty happy
Uh idk without thinking about it, and tbh I can't be arsed
I would think probably not, but eh
pain
anyone else who wanna take a shot at it?
being alive
Pathetic try.
Hey all ๐
After showing you the apt definition, I must say that was painful.
๐
That's not a disease.
check the war crimes in iraq as well
And beside the point I was trying to make.
the cia is disgusting
mustafa youre funny as hell๐คฃ
my point is people in the western world fill their bodies with junk
Of course there would be war crimes, there is no water being supplied in the country.
and try to act surprised when something bad happens
If the water is being supplied, it's not clean and is mixed with chemicals.
thats the least of it
That's not the same as actively going to war and having people be killed.
you heard of abu ghraib?
Long story short.
Not even the same ballpark.
What do you mean?
if people truly knew the severity of war
That was in response to jmac
they would protest against it
although the larger public either doesnt understand it enough or just dont care enough
yes, but war atleast kills people. Were talking about peoples quality of life
neither is humanely sufficient either way as a reason tbh
What did I walk into?
walking around like a zombie without energy
A bar?
Well played
people in war countries or eastern world places probably are healthier and happier
It wasn't war, it was a semi-civil war, the terrorist groups had occupied a key area of strategic importance around 2015 and then cut of the supply of water. Afterwards, the USA made promises to make funds to fix the 'water system' and then didn't give enough funds.
Integrate your service with Discord โ whether it's a bot or a game or whatever your wildest imagination can come up with.
thats not the only war crimes.
Plus, the terrorist groups diluted the water of the main river with chemicals.
Then, what's more to say?
illegal invasion?
Nah, there's no word like that.
@rugged root want to hear a joke?
u got a reference for that
Wait
wdym
And the timing couldn't be worse.
Become a Video Lab member! http://bit.ly/video-lab
Iraq gets almost all of its water from two rivers: The Tigris and the Euphrates. Both begin in Turkey and make their way down the entire length of the country, before emptying into the Persian Gulf. The problem is - they are drying up.
There are two main reas...
There it's.
Don't question my sources now.
proceed mustafa
2 blind people walked into a bar
i will still
An invasion can be defined as an offensive launched by a country, neighboring or non-neighboring.
Okay.
One duck, one curtain?
Nope that's it
Swing and a miss, 0-2
Now, don't tell me there're some indirect wars being fought in the Middle-East.
Ok mr butterfly van
Because they wouldn't be called an invasion.
@rugged root walks into a bar, Runs into a bar, crawls into a bar, dances into a bar, flies into a bar, jumps into a bar. He then orders a beer, 2 beers, 0 beers, 99999999 beers, a lizard in a beer glass, -1 beer, "qwertyuiop" beers.
Testing complete.
A real customer walks into the bar and asks where the bathroom is.
The bar goes up in flames.
@peak copper im trying to get an AWS badge as we speak, this is kind of weird
what?
Any more ideas/bright thoughts you've to share @whole bear ?
how old are u bro?
Why, what's the need?
If you're crawling into bars, maybe they should increase the height of the entrance.
I'd tell you how good the drinks at this underground place I went to were, but to be honest compared to the neighborhood it's a low bar.
They wanna make you work for it
Haha.
Very funny.
@peak copper the AWS masterโค๏ธ
AWS?
What's with the labels for everyone
What would my label be?
mustafa what do you want?
big o notation man?
Sticky.
I don't like labels
Beat me to it, fuck
Opal! Not in public!
Anymore geopolitics related communication you want to engage in? Anybody? I would only do written.
What's brown and sticky?
Alright, opinion on this. For the channels (innermost key value pairs), is that too messy? Or does that seem fine? It'll make parsing it a lot easier for me. https://paste.pythondiscord.com/gamofaribu.yml
A stick.
Seems reasonable.
Are you building your own parser?
Yeah. Essentially just two for loops
@molten pewter ๐คฃ
Not to rain on your parade, but what's wrong with [de]serializing YAML/TOML into dataclasses?
That's what I'm going to be doing. You'll see when I'm done
Said the eye surgeon.
In a hopeful tone
bye
.
Service... discovery?
Shouldn't you know about your services when you create them?
@rugged root ๐
Ow ow ow
Changing my name to young, so be a bit more basic with me.
I should add six after it.
I love this man's voice: https://open.spotify.com/track/41MGwEtx3Pa9rRyN7JfC2b?si=b411d2f779f94976
As far as I am aware, you can't hardcode IP addresses, even if you wanted to
What do you mean, Shen?
Kuberentes picks the IP address it assigns to a pod
I don't think you can change that
Bye.
Yeah, I'm gonna do some homework, have to write a 60 word paragraph in Sanskrit.
Me?
You and Id yeah
Just nothing, he was discussing war crimes and I derailed a bit of the topic.
Plus, we've to write it on 'Importance of Sanskrit as a language'.
Yes, and in modern times as well.
Neat
Some of it is though.
cya
Catch you later
Have a nice day๐
You as well
Did you want to play some RL today @woeful salmon ?
how about rn?
ah then probably not cuz i wanna try joining mustafa in a cs go game for once :3
he should be done in like an hour too
I can play a few rounds now
Kk
@lavish roveri will join chris for a few games ๐ ping me when you're out of the comp
cool cool
@rugged root - How much RAM do I need to max it out?
Depends on the board
Some max out at like 32 gigs, others at 128
Easiest way to find out is to run the Crucial thing on it
I'll get the link
I love how you just jumped in ready to help
We all really appreciate you
But I was teasing
He already has a custom built computer with 500GB SSD, 32GB RAM, and a 3080TI
He's just an idiot
I still have a 1080
I didn't even get a ti
@olive hedge Can you explain the name changes?
For some reason with that current picture of Ella, it's so much more intense
I was born this way, hemlock ๐ญ
Yeah you were
๐
Hello my admin priviledges have gone missing can someone give them back
code jampion
@rugged tundra good cop bad cop

Good cop sock hop
Urf Day
https://github.com/dowinterfor6/sp500-companies-api Don't know if this is helpful
If you want to build your own trackers, good free stock market APIs are hard to find. This article gets you the best ones for free.
Medians are usually more informative than means tbh.
Which one?
but mean faster to compute
Not in a long while
I think I do on Steam or something. Unfortunately I'm at work so can't really play anything
Ah yeah
Lib/dataclasses.py line 1242
def _asdict_inner(obj, dict_factory):```
result = []
for f in fields(obj):
value = _asdict_inner(getattr(obj, f.name), dict_factory)
result.append((f.name, value))
return dict_factory(result)
dict_factory == dict
A kick right in the dict_factory
:incoming_envelope: :ok_hand: applied mute to @silent sequoia until <t:1650642573:f> (9 minutes and 59 seconds) (reason: discord_emojis rule: sent 82 emojis in 10s).
:incoming_envelope: :ok_hand: pardoned infraction mute for @silent sequoia.
Sup, Thug
Deutsche Bank: 60k
JP Morgan: 50k
Lloyds 47k
HSBC: 44k
Amazon: 55k
Google: 70k
Netflix: 80k
Meta: 85k

big tech salaries are quite a bit better than bank salaries
those are the averages all taken from glassdoor
Banks donโt need high tech.
nothing๏ผIt's just that I'm a little bored
I hear you there
@lavish rover - Did you misspell Hemlock-chan?
!pypi httpx
hmm
S3
R2
?1
What are we going to do for 1?
someone is playing music at 1 milion volume and i can feel the vibration of bass on my desk
First Quarter
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
๐
I'm verified, but my mother denies to talk verbally with strangers.
why
I don't know.
Fair enough
I've asked them before but they always say that you shouldn't talk with them and you're doing fine enough without talking with them.
How much did you do?
@dark sable Yo
Ya'll like Batman?
Nice:)
Did.
How was the new batman movie?
It was nice, the plot isn't as great as I thought, it's decent. The photography is amazing!
It's just a story of taking down the Riddler.
@narrow fern - FYI - You're not muted, and we can hear you
Yes, I've done it purposefully.
Mom, I just heard an Indian female talking to her mother.
I've left Voice Chat 0.
There's nothing to hear about/discuss.
?
its early ๐
how are you!
Terms:
Abstraction
Computation
Conditional statement
Declartion
Definition
Divide and conquer
Else
Expression
For-statement
Range-for-statement
Function
If-statement
Increment
Input
Interation
Loop
Lvalue
Member function
Output
Push_back()
Repetition
Rvalue
Selection
Size()
Sort(9
Statement
Switch-statement
Vector
While-statement
its CPP
im starting in 2min ๐
see what i can make ๐
Hi
i can't talk ๐ซ
WHat terms can you explain?
what kind of terms
Explain theese tearms ๐
Terms:
Abstraction
Computation
Conditional statement
Declartion
Definition
Divide and conquer
Else
Expression
For-statement
Range-for-statement
Function
If-statement
Increment
Input
Interation
Loop
Lvalue
Member function
Output
Push_back()
Repetition
Rvalue
Selection
Size()
Sort(9
Statement
Switch-statement
Vector
While-statementv
@cedar solar Are you able to hear me at all?
It sounds like you're having a conversation with someone else, entirely.
I don't have permission to speak.
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
But I can listen. Thanks for welcoming me @somber heath
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!charinfo \โ
You are not allowed to use that command here. Please use the #bot-commands channel instead.
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
so can u suggest me...the best database to doing scraping automatic website?
need to get coffee, brb
@rugged tundra what is that? how the republic work?
I am currently listening to the book. The book is written by Plato, who was Socrates' student. Plato writes the book from a perspective of listening in to Socrates' conversations with different people (figures) in Athens, Greece. The different figures represent different ways of thinking. From older generations (old religion), to the current generation with its different states (military, the state, the civilian, etc.) The story displays the Socratic Method. The method of questioning a person, situation, or way of thinking, in order to reveal truth. The Socratic Method is the basis of Western Civilizations' judicial and legislative thinking.
I am still very early in the book, and my understanding of the story is surely flawed and too general.
interesting
so there's anykind of book u suggest for me to reading....like "how this human work" or "shadow goverment"
so how do u think after reading permanent record ?
for me....i only receive 2 thing from he :
1.he save people from the dirty hand
2.telling us...the *** is controlling us
so that's mean vpn or proxy connection is has been control by the government?
even the connection has been encrypted?
so there's a chance to peek our connection...to be honest...i have been learing ethical hacking...it's not use to keep us anonymous
there's any chance to keep my script to access information anonymous....like tor or proxy connection in python?
right now...i'm doing to scraping to any kind of information real time...to tracking my government
how's the temperature there?
@hazy oracle what kind language u use to work? or make some script?
python
i'd probably choice django...
javascript keep growing...it's hard to keep the website or ur script keep up to date
so the django could be the alternative way to make simple website including API?
candidate function not viable: no known conversion from 'int ()[5]' to 'int ()[]' for 1st argument
printAry(&nums,5);
void printAry(int (*ary)[], int size)
@lavish rover ah ok
just learning
yk
like everyone
how about you?
oh good for you
what do you normally do?
oh what job is that
how old are you
ah okok
what time is it for u rn
oh ok same timezone
ontario?
ah
ive been
im in washington rn
working
took a break from school rn
im a graphic designer lol
no just the art side
like logos and yeah websites but not coding
yep
um
well theres this company
so
im trying it
yeah ive done a lot of different stuff
I'm just trying to figure out what to start with python
ive worked since i was 14 ha
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
ah ok thanks
I just wish I had someone to ask questions to that wont make fun of me for basic stuff๐
yeah but it feels like such a bother
itd be nice to have a friend though ;w;
all of you lmao
yeah I know one of them but hes mean to me so I cant ask him
he was the only one I knew until I joined
but you're advanced
in python
compared to me
it feels impersonal though :((
even still, it's like a professor with a thousand students
:((
yeah I want that ๐ฉ
ig Ill try that
ikik but im very convincing
shhh
i have great luck
you'll see ๐
lol ikik dw I wont bother you
no I want a friend
who is educated
ikik, I won't
dw I know my ways
๐
so are you just meditating or..?
@lavish rover
which one?
blue period
i heard its good but i do art so i dont wanna watch it
oml it's okay, but it's generally the same thing over and over
@royal sequoia how is that a problem?
nooo not one piece
maybe hunter x hunter
o.o
I couldnt watch naruto or dragonball or one piece, I can't past a couple dozen episodes
its too slow for no good reason
filler alert
I like 20-ep anime, feels rounded but not too long
there are rare exceptions
like sailor moon or inuyasha
theres a liveaction version
of both of those i think
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@south bone look at the message above
!roles
farewell
sometimes
i kinda dont know why my shit aint workin
learning python
and like
im okay at it
but i dunno how it like not workin
you can certainly take advantage of one of the help channels
just ask your question in one of the "Available Help Channels" section
Hey @rugged wedge!
It looks like you tried to attach file type(s) that we do not allow (.exe). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
Hey @rugged wedge!
It looks like you tried to attach file type(s) that we do not allow (.exe). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
Stop spamming please (pleease)
he wasn't spamming, we were chatting.
Oh ok.
@Jesus Spreader#7429 get some indian youtuber help ๐ฅณ
yeah since I couldnt talk in vc yet I was using this channel to respond
she ๐ค
sorryyyyy that was wrong of me to assume
ah that's rough. How's things with you?
There are going good, however my mom's a bit tired today.
I see I see
Nothing, today's Sunday. I'm thinking about having to start learning from my tutorials again (for Python).
@lavish rover
How are things going on your end?
What have you been learning in Python?
Plus, what are you doing these days?
Things are good on my end. Just been chilling out this weekend
not really much going on for me right now
I've finished with Tuples.
I began 2 weeks ago, left it a few days ago.
Plus, my exams are beginning.
good luck with those!
Thanks!
Good๐
That's nice, not much pressure for you.
yeah I guess so ๐
anyway, I'm going to head off for a bit. Might be back in a while if you're still around, see ya!
Okay! Cya!
def symbolicate(func):
def wrapper(*args, **kwargs):
from .integer import Int
args = [ (Int(a) if isinstance(a, (int, bool)) else a) for a in args ]
return func(*args, **kwargs)
return wrapper
def handle_only(*types):
def decorator(method):
@symbolicate
def wrapper(self, other):
if not any(isinstance(other, t) for t in types) and not isinstance(other, type(self)):
return getattr(super(type(self), self), method.__name__)(other)
return method(self, other)
return wrapper
return decorator
def curried(orig, argc=None):
if argc is None:
if isinstance(orig, type):
argc = orig.__init__.__code__.co_argcount - 1
else:
argc = orig.__code__.co_argcount
def wrapper(*a):
if len(a) == argc:
return orig(*a)
def q(*b):
return orig(*(a + b))
return curried(q, argc - len(a))
func_name = getattr(orig, "__name__", getattr(orig, "__class__").__name__)
wrapper.__name__ = func_name
return wrapper
def curried(orig, argc=None):
if argc is None:
if isinstance(orig, type):
argc = orig.__init__.__code__.co_argcount - 1
else:
argc = orig.__code__.co_argcount
def wrapper(*a):
if len(a) == argc:
return orig(*a)
def q(*b):
return orig(*(a + b))
return curried(q, argc - len(a))
func_name = getattr(orig, "__name__", getattr(orig, "__class__").__name__)
wrapper.__name__ = func_name
return wrapper
@curried
def add3(a, b, c):
print(a, b, c)
add3(1,2,3)
add3(1,2)(3)
add3(1)(2,3)
add3(1)(2)(3)
!d asyncio.get_event_loop
asyncio.get_event_loop()```
Get the current event loop.
If there is no current event loop set in the current OS thread,
the OS thread is main, and [`set_event_loop()`](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.set_event_loop "asyncio.set_event_loop") has not yet
been called, asyncio will create a new event loop and set it as the
current one...
KONUลAMIYOOOOOOM
Pardon?
heya guys just came to check in, won't be joining vc's a lot since im in a diff country and still catching up on sleep.
@austere mauve Down here. ๐
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
can i send you friend request
?
why?
ok no problem
nice to meet you btw
i was searching for a good education sever
yea
also a new friend,hehe
your eng is so cool tho
where are you from?
wow
i have a question
@somber heath
do you know what is pi?
like the cypto pi
yea
ohh no problem
yea yea
you can seacrh on playstore tho
im from india
and here lots of people said
that the cypto pi with
*cypto pi will grow in future
yeaa
bro
your eng is so cool
hm
btw
@somber heath
do you play any games?
ohh
ohh ohh
do you understand hindi?
aaa
np
ohh ohh
who is the admin?
what about you>
*?
you sound like an admin tho
thats why i asked
ok bye @somber heath
im going to study
will meet again soon
@somber heath @wind raptor
nice to meet you both
bye
๐งโ๐ซ 
๐ค
Kivy
๐คจ
But you don't need to use Kivy at all.
how can i learn phyton
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
Corey Schafer, YouTuber, playlists, Python for beginners.
In this course you will learn about algorithms and data structures, two of the fundamental topics in computer science. There are three main parts to this course: algorithms, data structures, and a deep dive into sorting and searching algorithms.
By the end, you will understand what algorithms and data structures are, how they are measured and e...
5 hours ๐ณ
pain
lol
hi !
โ โ โ โ
Chris can i get help?
@whole bear
hey
i need help about pynput
my script gonna be like that
i am gonna press key
and my script gonna press it one more time
how can i do that
yes
i know but i can not doing that
i am trying
def on_press(key):
if pressed:
is that can run?
@midnight agate what up?
navie solution n^3... try all linear combinations
I can think of n^2 log n
@midnight agate
do linear combinations of n of two things... and other one do binary search!
try all combinations of topings + crust ... then do binary search for reaming amount!
nvm... if you want to get all combinatoins... you need to do n^3... you just want count you can get n^2 logn
if your data size is this, you dont need to reduce time complexity. I think just loop is fine.
import bisect
buget = 6
pizza_topping = [2, 4]
pizza_base = [1, 2]
pizza_sauce = [2]
pizza_topping.sort()
def find(A, x):
i = bisect.bisect_right(A, x)
return i
count = 0
for i in pizza_base:
for j in pizza_sauce:
cost = i + j
count += find(pizza_topping, buget - cost)
print(f"{count=}")
@midnight agate
O(N^2 log N)
Bisect, where you wear fancy robes and mostly everyone is potentially in your dating pool.
Come for the free food, stay for the human sacrifice.
Stay forever.
!e
def combinations(*args):
items = [len(i) for i in args]
if len(items) == 1:
return items[0]
else:
return items[0] * combinations(*args[1:])
print(combinations(["thin crust", "stuffed crust", "gluten free crust"], ["marinara sauce", "bbq sauce", "no sauce"],
["garlic", "onions", "mushrooms", "tomatoes"], ["mozzarella", "cheddar", "feta"]))
@wind raptor :white_check_mark: Your eval job has completed with return code 0.
108
Feng Shui (้ขจๆฐด/้ฃๆฐด) is an old Chinese practice where furniture and items are arranged in a certain way to increase the flow of positive energy throughout a house. This supposedly brings good health and fortune to the members of the household.
Main article: Wikipedia:Feng Shui
In the Animal Crossing series, the guidelines for Feng Shui are fairly ...
@midnight agate
Death cleaning...when Death gets out the mop and the bucket.
Musk is starting to invest in glassware products.
Bezos is just run-of-the-mill evil corporate overlord.
I want to like Musk, but, just...he's got aspects I love about him, aspects that make me very disappointed then there's the crazy.
The dogs thing was a few years ago. Proper quarantine or GTFO.
Local and yokel.
Dat atlas.
Ever imagined you were a bean farmer. Sure, who hasn't. You got your Red beans, your green beans, your black-eyed beans, your coffee beans. But where to plant them. In this card game, smart sowing lets you reap big rewards. Plant The beans you do want, and trade the beans you don't want to the ot...
thanks hemlock
have a nice sunday guys
ctrl-r
You know you want to buy a house when Google tells you that you want to.
Pyramid schema.
Assign positions for all the builtins, letters, numbers, syntax characters, etc, away you go.
Dragon ass? "Whoah, Nelly, I shouldn't have eaten that chilli."
Set the curtains on fire, the fire department comes, everyone's embarrassed.
Found it
@gentle flint how is the app going? ๐ฎ
almost done
That's the best part
it took me a bit to process that :x
i personally have not had to use a printer / photocopy machines in the last 5 years since i just send people pdfs or figma files now or markdown files
here
Sorry to interrupt, but can anyone of you help me??
What's your question?
So I was making a GUI for my program...
And I decided to add an image label
But it doesn't work...
๐
I'm using tkinter...
Here's the code:
from tkinter import *
import os
root = Tk()
root.geometry("515x610")
root.minsize(415,560)
root.maxsize(515,610)
bgPhoto = PhotoImage(file="txtBackground.png")
root_label = Label(image=bgPhoto)
root_label.pack()
root.mainloop()
The error:
Traceback (most recent call last):
File "d:\Programming\Python_Projects\JARVIS\MainFile.py", line 8, in <module>
bgPhoto = PhotoImage(file="txtBackground.png")
File "C:\Program Files\Python310\lib\tkinter\__init__.py", line 4093, in __init__
Image.__init__(self, 'photo', name, cnf, master, **kw)
File "C:\Program Files\Python310\lib\tkinter\__init__.py", line 4038, in __init__
self.tk.call(('image', 'create', imgtype, name,) + options)
_tkinter.TclError: couldn't open "txtBackground.png": no such file or directory
Is the file in the same folder as the script?
It sometimes say that it cannot read the file...
YEahh
53,032
284,151


