#voice-chat-text-0

1 messages ยท Page 1011 of 1

somber heath
#

Yeah, well, I have earmuffs on, now, and I was reading it.

visual cave
#

you have an idea on how i can solve it?

#

or what i was trying to do lol

somber heath
#

The latter.

visual cave
#

oh got it

#

i was basically trying to make put code in an argument

#

can't figure out how to do it

somber heath
#

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)```
willow lynx
#

py print('hello')

#
print('hello')
whole egret
#

hhhahahaha

#

HAHAHAHHAHAh IT so funn

#

hi

rugged root
#

!server

wise cargoBOT
#
Server Information

Created: <t:1483877013:R>
Roles: 93
Member status: status_online 53,032 status_offline 284,151

Members: 337,184

Helpers: 142
Moderation Team: 37
Admins: 15
Owners: 3
Contributors: 42
Leads: 9

Channels: 252

Category: 31
Forum: 1
News: 8
Staff: 62
Stage_Voice: 2
Text: 138
Voice: 10

somber heath
#

Ah, yes. Esoteric. Not eldrich.

#

"I before E except after C....and all the other times!"
"Wharrrgbl! Who summons Shamaggarog?"

rugged root
#

"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")

narrow fern
#

Good Night/ Good Afternoon/Good Evening/Good Morning.

somber heath
#

!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)

narrow fern
#

Good Night/ Good Afternoon/Good Evening/Good Morning.

wise cargoBOT
#

@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>}
narrow fern
#

I've a question, where did you learn Python?

#

You can type it.

somber heath
narrow fern
#

Anyone can.

somber heath
#

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.

shy elk
#

Consider the Set: V={'A','B'}, what is the result of V.add('C')?

{'A','B','C'}

error

{'A','B'}

narrow fern
#

Wait.

somber heath
#

Oh, those are the choices?

#

Well, give it a go.

#

See what happens.

narrow fern
#

It'll add C.

#

It's correct.

#

Plus, it's a dictionary (at least what I call it).

somber heath
#

It's a set.

narrow fern
#

Dictionary.

somber heath
#

Dictionaries share the {}, but are distinguishable by the colons, :

narrow fern
#

Okay, I learnt it the different way. I'm beginner so I shouldn't be saying much as well.

somber heath
#
{1, 2, 3} #set
{1:2, 3:4} #dict```
narrow fern
#

Okay.

#

Thank you:)

#

TELL ME WHERE YOU LEARNT PYTHON.

#

ANYONE.

rugged root
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

narrow fern
#

JUST TELL ME THE F*****G NAME.

#

Sorry, slow net speed.

#

I mean no offense.

narrow fern
#

Thanks:)

rugged tundra
rugged tundra
narrow fern
narrow fern
swift valley
#

Greetings

narrow fern
#

Greetings.

somber heath
#

Crow taxes.

#

Caw fee.

rugged root
#
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 = []

somber heath
#

' vs " ?

sweet lodge
rugged root
#

I don't have to like it

sweet lodge
#

So important it said it twice

rugged root
#

I know you're right

#

But I still hate it

somber heath
#

My land's only borders lie around my heart.

sweet lodge
#

Fair enough

rugged root
#

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

sweet lodge
#

That's almost Numpy's format

#

Looks fine to me

#

Sphinx would probably even parse it as-is with napoleon

rugged root
#

Surprising

#

I'm just doing this freehand

somber heath
#

Soup or old phone? You decide!

#

What brand of phone does the military use? SAMsung.

lavish rover
#

No.(kia)

somber heath
#

Surface to Air Missile.

#

SAM.

somber heath
lavish rover
#

(Sam Smith)

rugged root
#
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

sweet lodge
#

Then I'd have to scan all that

rugged root
#

I mean this is a lot, right?

#

It feels like a lot

amber raptor
#

Depends on your scanner model

#

If you had big feed scanner with auto separator, itโ€™s not terrible

rugged root
#

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

ionic ferry
#

@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())

woeful salmon
#

!d asyncio.gather

wise cargoBOT
#

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*.
ionic ferry
#

@mental flume can you give me screen sharing permission?

woeful salmon
ionic ferry
#
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

wise cargoBOT
#

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...
woeful salmon
#

!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())
wise cargoBOT
#

@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
plain rose
# rugged root Kill me

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

#

:(

lyric pawn
#

@molten pewter the leg breaker

#

@woeful salmon you were the best goalkeeper in the punjab at one point

terse needle
weak lintel
#

why am I muted?

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

rugged root
#

That'll tell you what you need to know about our voice gate

terse needle
#

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 ...

Price

$5.99

Recommendations

1667

โ–ถ Play video
plain rose
#

how come when i run intelliJ, it takes 70 percent of my cpu, 3 gb of ram, and absolutely kills my pc?

weak lintel
#

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?

#

thoughts appreciated ๐Ÿ˜„

opal zodiac
#

@weak lintel yeah I also would like to have voice verifed... but that the first message which i am sending now

weak lintel
#

spam?

opal zodiac
#

I dont know but we need to send hm..

#

50 not deleted messages

weak lintel
#

in a 3O minute interval

rugged root
#

So we set up the gate because we had hit and run trolls

weak lintel
#

classic

rugged root
#

People who would join the server, join voice chat, scream and then leave

weak lintel
#

I don't know why people are doing that

#

it is not even a game discord

rugged root
#

It happened like.... 5 or 6 times a day

#

Because people like chaos

weak lintel
rugged root
#

Yarp

weak lintel
#

idiots

#

ยฏ_(ใƒ„)_/ยฏ

rugged root
#

But with this system we've completely shut down raids

#

They just fill the channels and then nothing happens and then they leave

lyric pawn
#

@rugged root why cant you go back? its never too late

weak lintel
#

colleges have too much bloat

lyric pawn
#

@rugged root damn...

weak lintel
#

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

lyric pawn
#

that is probably the reason youre still with us

#

dont underestimate those indians

#

that probably killed some tumours

opal zodiac
#

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()

lyric pawn
#

@rugged root youre a perfectionist

rugged tundra
lyric pawn
#

@rugged tundra youre one of the greatest of all time for this image

quasi condor
lyric pawn
#

yea, that route didnt work though messages. i wasted 5 hours on that ๐Ÿ˜‚ i found some a day later on kaggle ๐Ÿ™

rugged tundra
lyric pawn
#

@whole bear put the dog in the microwave

#

๐Ÿ˜‚

#

youre a data science king

sinful gazelle
#

I want bot role

eternal latch
#

how do i learn python?

somber heath
#

You can also read through the documentation at Python.org

#

Also

#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

somber heath
#

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.

lavish rover
#

united states has entered the chat

somber scarab
#

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

#

๐Ÿ˜ญ

lavish rover
#

!e list(map(print,range(51)))

wise cargoBOT
somber heath
#
print(*range(51), sep="\n")```
somber scarab
#

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

lavish rover
#

!user

wise cargoBOT
#
Mustafa (mustafaq#8791)
User information

Created: <t:1510259196:R>
Profile: @lavish rover
ID: 378279228002664454

Member information

Joined: <t:1604700419:R>
Roles: <@&267630620367257601>, <@&430492892331769857>, <@&764802720779337729>

Activity

Messages: 21,265
Activity blocks: 2,761

Infractions

Total: 0
Active: 0

somber scarab
#

but it's hard to context switch

#

if i have to type every message lol

#

gues guess what

#

this is . my 100% ๐Ÿคฉ

lavish rover
#

bobiverse series

#

this is legion, this is bob

somber heath
#
IMDb

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.

rugged wedge
somber heath
#

Series.

rugged wedge
#

o

#

k

lavish rover
#
def b():
  x += 1

def a():
  x = 5
  b()
  print(x)
whole bear
#

hi

shy parrot
#

hi

woeful salmon
real shore
#

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"

odd sable
#

@visual sequoia thanks for the example, I'll try it trough classmethod first then if that doesn't work I will try that.

lavish rover
rugged wedge
#

@woeful salmon hi

tidal shard
lavish rover
#

Hey Opal, you Mist some of my jokes

somber heath
#

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?

lavish rover
#

The secret is to make everyone around you sad too

whole bear
#

Your prof just pretend to know calculus

lavish rover
#

Differential equations enters the chat

narrow fern
#

@molten pewter , how often do you chat in the voice chat channel?

#

print('Magical girl how often do you stay in the voice channel?')

somber heath
#

Cope I lot

molten pewter
#

Cope I lot?

somber heath
#

Copilot.

somber heath
#

Helps people cope a lot.

molten pewter
#

I am afraid to use it, seems like the crutch that will become my mechanical legs

lavish rover
#

There's nothing wrong with mechanical legs.

#

Probably more reliable, to be honest. As long as you can still control them...

somber heath
#

Crypto, as in crypt, as in where the dead are kept.

lavish rover
#

Crypt? Oh.

narrow fern
lyric pawn
lavish rover
#

??

narrow fern
#

Cryptocurrency.

lavish rover
#

That's such an nยณ joke tbh

lyric pawn
#

@rugged tundra they did that a few years ago

#

and pretended they were a college

#

the government dont play fair

cosmic lark
#

@lavish rover

lyric pawn
#

@molten pewter id be pretty happy

lavish rover
#

Uh idk without thinking about it, and tbh I can't be arsed

#

I would think probably not, but eh

cosmic lark
#

pain

narrow fern
#

What's pain?

#

Define pain.

cosmic lark
#

anyone else who wanna take a shot at it?

cosmic lark
narrow fern
wind raptor
#

Hey all ๐Ÿ™‚

narrow fern
#

Hello.

narrow fern
lavish rover
whole bear
#

@molten pewter he means what is advertised

#

like propaganda

#

like generally

narrow fern
lyric pawn
#

@lavish rover people arent trying

#

people are eating shampoo

lavish rover
#

That's not a disease.

whole bear
#

check the war crimes in iraq as well

lavish rover
#

And beside the point I was trying to make.

whole bear
#

the cia is disgusting

lyric pawn
#

my point is people in the western world fill their bodies with junk

narrow fern
lyric pawn
#

and try to act surprised when something bad happens

narrow fern
#

If the water is being supplied, it's not clean and is mixed with chemicals.

whole bear
#

thats the least of it

lavish rover
#

That's not the same as actively going to war and having people be killed.

whole bear
#

you heard of abu ghraib?

narrow fern
#

Long story short.

lavish rover
#

Not even the same ballpark.

narrow fern
whole bear
#

if people truly knew the severity of war

lavish rover
#

That was in response to jmac

whole bear
#

they would protest against it

#

although the larger public either doesnt understand it enough or just dont care enough

lyric pawn
whole bear
#

neither is humanely sufficient either way as a reason tbh

lyric pawn
#

mental health

#

whats the point in being around if youre not enjoying it

rugged root
#

What did I walk into?

lyric pawn
#

walking around like a zombie without energy

lavish rover
rugged root
#

Well played

lyric pawn
#

people in war countries or eastern world places probably are healthier and happier

narrow fern
#

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.

peak copper
narrow fern
#

Plus, the terrorist groups diluted the water of the main river with chemicals.

narrow fern
whole bear
narrow fern
lavish rover
#

@rugged root want to hear a joke?

narrow fern
#

Wait

whole bear
lyric pawn
#

@peak copper dont question it

#

๐Ÿ˜‚

narrow fern
#

There it's.

#

Don't question my sources now.

lyric pawn
lavish rover
#

2 blind people walked into a bar

whole bear
narrow fern
# whole bear wdym

An invasion can be defined as an offensive launched by a country, neighboring or non-neighboring.

narrow fern
somber heath
lavish rover
#

Nope that's it

rugged root
#

Swing and a miss, 0-2

narrow fern
#

Now, don't tell me there're some indirect wars being fought in the Middle-East.

peak copper
lavish rover
narrow fern
#

Because they wouldn't be called an invasion.

wind raptor
#

@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.

lyric pawn
#

@peak copper im trying to get an AWS badge as we speak, this is kind of weird

whole bear
narrow fern
#

Any more ideas/bright thoughts you've to share @whole bear ?

whole bear
#

how old are u bro?

narrow fern
somber heath
#

If you're crawling into bars, maybe they should increase the height of the entrance.

lavish rover
#

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.

rugged root
lyric pawn
#

@peak copper the AWS masterโค๏ธ

narrow fern
#

AWS?

lavish rover
sweet lodge
#

What would my label be?

lyric pawn
#

big o notation man?

somber heath
lavish rover
#

I don't like labels

lavish rover
sweet lodge
narrow fern
#

Anymore geopolitics related communication you want to engage in? Anybody? I would only do written.

somber heath
#

Dogs. Sticks.

#

Sticky notes.

lavish rover
#

What's brown and sticky?

rugged root
lavish rover
#

A stick.

sweet lodge
rugged root
#

Yeah. Essentially just two for loops

narrow fern
#

Do I seem too young for my age?

#

Or is it the way I talk?

lyric pawn
#

@molten pewter ๐Ÿคฃ

sweet lodge
lavish rover
#

SAME WTF

#

I thought it was only me

rugged root
#

That's what I'm going to be doing. You'll see when I'm done

somber heath
sweet lodge
lyric pawn
#

bye

narrow fern
#

.

sweet lodge
#

Service... discovery?
Shouldn't you know about your services when you create them?

lyric pawn
#

@rugged root ๐Ÿ˜‚

somber heath
#

Ow ow ow

sweet lodge
#

They come with some basic DNS built in

narrow fern
#

Changing my name to young, so be a bit more basic with me.

#

I should add six after it.

rugged root
sweet lodge
rugged root
#

What do you mean, Shen?

sweet lodge
narrow fern
#

Bye.

rugged root
#

You heading out?

#

Also wait, what have I missed between you two?

narrow fern
#

Yeah, I'm gonna do some homework, have to write a 60 word paragraph in Sanskrit.

rugged root
#

You and Id yeah

whole bear
#

hey guys i g2g now do some job applications so bye cya

#

:)

narrow fern
#

Just nothing, he was discussing war crimes and I derailed a bit of the topic.

rugged root
#

Goooootcha

#

That's a lot of Sanskrit

narrow fern
rugged root
#

Historically?

#

Or as it relates to today

narrow fern
#

Yes, and in modern times as well.

rugged root
#

Neat

narrow fern
#

Some of it is though.

narrow fern
rugged root
#

Catch you later

narrow fern
#

Have a nice day๐Ÿ‘

rugged root
#

You as well

wind raptor
#

Did you want to play some RL today @woeful salmon ?

woeful salmon
#

how about rn?

wind raptor
#

Gotta do a bit of cleaning first

#

Brb

woeful salmon
#

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

wind raptor
#

I can play a few rounds now

woeful salmon
#

don't get alot of oppertunities to play cs go anymore

#

and sure lets do it xD

wind raptor
#

Kk

woeful salmon
#

@lavish roveri will join chris for a few games ๐Ÿ™‚ ping me when you're out of the comp

lavish rover
#

cool cool

sweet lodge
sweet lodge
rugged root
#

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

sweet lodge
#

I love how you just jumped in ready to help

#

We all really appreciate you

#

But I was teasing

rugged root
sweet lodge
#

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

stuck furnace
#

Hello ๐Ÿ‘€

rugged root
#

@olive hedge Can you explain the name changes?

olive hedge
#

Name change?

#

This has always been my name

rugged root
#

For some reason with that current picture of Ella, it's so much more intense

olive hedge
#

I was born this way, hemlock ๐Ÿ˜ญ

rugged root
#

Yeah you were

lyric pawn
#

๐Ÿ˜‚

lavish rover
#

Hello my admin priviledges have gone missing can someone give them back

#

code jampion

lyric pawn
#

@rugged tundra good cop bad cop

lavish rover
rugged root
#

Good cop sock hop

lavish rover
#

banned

#

oh no look at all this stuff I have to scan

rugged root
#

Urf Day

rugged tundra
stuck furnace
#

Cooler than I expected ๐Ÿ˜„

#

I wish I could afford a fancy office chair ; - ;

rugged root
stuck furnace
#

Medians are usually more informative than means tbh.

random copper
#

so

#

anyone playing age of empires :D?

rugged root
#

Which one?

random copper
#

2

#

HD

lavish rover
#

but mean faster to compute

rugged root
#

Not in a long while

random copper
#

you got it?

#

play a match ๐Ÿ˜„

rugged root
#

I think I do on Steam or something. Unfortunately I'm at work so can't really play anything

random copper
#

ah okay ๐Ÿ˜„

#

im off ๐Ÿ˜„

#

another day ๐Ÿ˜„

stuck furnace
#

Ah yeah

rugged tundra
wise cargoBOT
#

Lib/dataclasses.py line 1242

def _asdict_inner(obj, dict_factory):```
stuck furnace
#
        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

rugged root
#

A kick right in the dict_factory

stuck furnace
#

Lo Charlie ๐Ÿ‘‹

#

Woww Rabbit ๐Ÿ˜„

wise cargoBOT
#

: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).

stuck furnace
#

;-;

#

!unmute 489485360645275650

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @silent sequoia.

rugged root
#

82 emoji

#

Jesus

woeful salmon
#

@lavish rover wanna play 1 quick match?

#

๐Ÿ™‚

lavish moss
#

hola

#

guys

sweet lodge
#

hola

#

como estas

rugged root
#

Sup, Thug

quasi condor
#

Deutsche Bank: 60k
JP Morgan: 50k
Lloyds 47k
HSBC: 44k

Amazon: 55k
Google: 70k
Netflix: 80k
Meta: 85k

lavish moss
quasi condor
#

big tech salaries are quite a bit better than bank salaries

#

those are the averages all taken from glassdoor

amber raptor
#

Banks donโ€™t need high tech.

lavish moss
rugged root
#

I hear you there

lavish moss
stuck furnace
rugged root
quasi condor
sweet lodge
#

@lavish rover - Did you misspell Hemlock-chan?

quasi condor
#

!pypi httpx

wise cargoBOT
quasi condor
bronze patrol
#

hmm

sweet lodge
#

S3
R2
?1
What are we going to do for 1?

bronze patrol
#

someone is playing music at 1 milion volume and i can feel the vibration of bass on my desk

rugged root
narrow fern
#

Hi:)

#

I can't talk.

sweet lodge
#

๐Ÿ‘‹

#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

narrow fern
#

๐Ÿ‘‹

sweet lodge
#

oh

#

my mistake

narrow fern
#

I'm verified, but my mother denies to talk verbally with strangers.

sweet lodge
#

why

narrow fern
#

I don't know.

sweet lodge
#

Fair enough

narrow fern
# sweet lodge 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?

rugged root
#

@dark sable Yo

narrow fern
#

Ya'll like Batman?

rugged tundra
#

Did anyone see the new movie?

narrow fern
#

Nice:)

narrow fern
rugged tundra
narrow fern
#

It's just a story of taking down the Riddler.

sweet lodge
#

@narrow fern - FYI - You're not muted, and we can hear you

narrow fern
#

Mom, I just heard an Indian female talking to her mother.

#

I've left Voice Chat 0.

#

There's nothing to hear about/discuss.

narrow fern
#

?

tribal plover
#

oops I'm muted

#

I believe i've done the vc verification before

random copper
#

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 ๐Ÿ˜„

steel sluice
#

Hi

random copper
#

hi Alest

#

we explaining terms ๐Ÿ˜„

steel sluice
#

i can't talk ๐Ÿ˜ซ

random copper
#

WHat terms can you explain?

steel sluice
#

what kind of terms

random copper
# steel sluice 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

steel sluice
#

but why

#

you can google

random copper
#

to learn

#

show ๐Ÿ˜„

#

im just extended smoke break ๐Ÿ˜„

#

let me see ๐Ÿ˜„

vast valley
#

hello

#

i need help

#

is anyone here

#

hi

lunar lake
#

Yo

#

I cannot talk

#

cus i havnt sent 50 msgs

somber heath
#

@cedar solar Are you able to hear me at all?

#

It sounds like you're having a conversation with someone else, entirely.

bronze pasture
#

I don't have permission to speak.

somber heath
wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

bronze pasture
#

But I can listen. Thanks for welcoming me @somber heath

grand grail
rancid temple
#

Hi

#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

quasi condor
#

!charinfo \โ˜•

wise cargoBOT
#

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

quasi condor
solar flax
#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

solar flax
#

so can u suggest me...the best database to doing scraping automatic website?

rugged tundra
#

need to get coffee, brb

solar flax
#

@rugged tundra what is that? how the republic work?

rugged tundra
# solar flax <@170709455091138561> 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.

solar flax
#

interesting

#

so there's anykind of book u suggest for me to reading....like "how this human work" or "shadow goverment"

rugged tundra
solar flax
#

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

rugged tundra
solar flax
#

how's the temperature there?

#

@hazy oracle what kind language u use to work? or make some script?

solar flax
#

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?

lavish rover
lavish rover
#
struct A {
  ...
}
#
class A {
public:
  ...
}
royal sequoia
#

candidate function not viable: no known conversion from 'int ()[5]' to 'int ()[]' for 1st argument

#
printAry(&nums,5);

void printAry(int (*ary)[], int size)
valid lichen
#

@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

lavish rover
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

valid lichen
#

ah ok thanks

#

I just wish I had someone to ask questions to that wont make fun of me for basic stuff๐Ÿ’€

lavish rover
valid lichen
#

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

lavish rover
#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

royal sequoia
#

@south bone look at the message above

lavish rover
#

!roles

peak nacelle
#

farewell

lavish rover
whole bear
#

@silver charm yo help people with like

#

python stuff

#

like do you?

silver charm
whole bear
#

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

silver charm
#

you can certainly take advantage of one of the help channels

silver charm
#

just ask your question in one of the "Available Help Channels" section

lavish rover
wise cargoBOT
#

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.

whole bear
lavish rover
whole bear
#

Oh ok.

daring oar
valid lichen
valid lichen
lavish rover
#

sorryyyyy that was wrong of me to assume

narrow fern
#

Hello @lavish rover !

#

I can't talk right now, mommy issues.

lavish rover
#

ah that's rough. How's things with you?

narrow fern
lavish rover
#

I see I see

narrow fern
#

I don't want to make her angry or irritated, so I'm trying to be a good boi.

#

๐Ÿ˜‡

lavish rover
#

that's fair enough

#

working on anything lately?

narrow fern
#

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?

lavish rover
#

What have you been learning in Python?

narrow fern
#

Plus, what are you doing these days?

lavish rover
#

Things are good on my end. Just been chilling out this weekend

#

not really much going on for me right now

narrow fern
#

I began 2 weeks ago, left it a few days ago.

#

Plus, my exams are beginning.

lavish rover
#

good luck with those!

narrow fern
#

Thanks!

narrow fern
lavish rover
#

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!

woeful salmon
lavish rover
#
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
woeful salmon
lavish rover
#
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

wise cargoBOT
#

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...
vivid slate
#

KONUลžAMIYOOOOOOM

somber heath
plain rose
#

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.

manic reef
#

Still haven't sent 50 messages

#

It is very slow

somber heath
#

@austere mauve Down here. ๐Ÿ™‚

austere mauve
#

ohhh yeaa

#

i cant unmute my mic

somber heath
#

!voice

wise cargoBOT
#

Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

austere mauve
#

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

whole bear
#

๐Ÿ–๏ธ

#

๐Ÿ“

somber heath
#

๐Ÿง‘โ€๐Ÿซ dice_question

wind raptor
#

๐Ÿค”

whole bear
#

๐ŸŽฎ ๐Ÿ’

#

โค๏ธ ๐Ÿง‘โ€๐Ÿซ

whole bear
#

ok how we make games

#

ok how we make application

#

๐Ÿฅ

somber heath
#

Kivy

whole bear
#

i cant

#

so if i wanna learn phyton i have to learn kivy ๐Ÿฅธ โœŒ๏ธ

somber heath
#

No.

#

To learn Kivy you need to learn Python.

whole bear
#

๐Ÿคจ

somber heath
#

But you don't need to use Kivy at all.

whole bear
#

how can i learn phyton

somber heath
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

somber heath
#

Corey Schafer, YouTuber, playlists, Python for beginners.

stuck sky
#

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...

โ–ถ Play video
whole bear
#

5 hours ๐Ÿ˜ณ

stuck sky
whole bear
#

pain

stuck sky
manic reef
#

lol

balmy kestrel
#

hi !

rugged wedge
stuck sky
#

My client got this for me

rugged wedge
#

ops

#

i know

#

look like 3โ‚ฌ

strong arch
wind raptor
#

โ˜• โ˜• โ˜• โ˜•

whole bear
#

Chris can i get help?

wind raptor
#

@whole bear

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?

signal sand
#

@midnight agate what up?

whole bear
#

nice

#

can i get codes?

signal sand
#

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

storm cobalt
#

if your data size is this, you dont need to reduce time complexity. I think just loop is fine.

signal sand
#
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)

sweet lodge
#

It's a subcommand

#

git bisect

#

Not that I actually understand what it does

somber heath
#

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.

wind raptor
#

!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"]))
wise cargoBOT
#

@wind raptor :white_check_mark: Your eval job has completed with return code 0.

108
rugged root
#
Animal Crossing Wiki

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 ...

somber heath
#

Death cleaning...when Death gets out the mop and the bucket.

rugged root
somber heath
#

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.

rugged root
somber heath
#

Local and yokel.

rugged root
somber heath
#

Dat atlas.

rugged root
short plank
#

thanks hemlock
have a nice sunday guys

heady robin
#

why cant i see stream

#

its coming that the stream has ended

somber heath
#

You know you want to buy a house when Google tells you that you want to.

#

Pyramid schema.

molten pewter
somber heath
#

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.

woeful salmon
#

i'm half dying from the pronunciation although its not really your fault :x

rugged root
#

Found it

#
White Wolf Wiki

Kuei-jin are the vampires of East and Southeast Asia, the karmically cursed outcasts dwelling on the Middle Kingdom's fringes. Other terms to describe them include Wan Kuei, Wan Xian, Gui Ren, asuratizayya (in India), or simply the "Hungry Dead".

gentle flint
#

@rugged root

woeful salmon
#

@gentle flint how is the app going? ๐Ÿ˜ฎ

gentle flint
#

almost done

woeful salmon
#

ah he's trying to copy his screen to print

#

lol

rugged root
#

That's the best part

woeful salmon
#

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

gentle flint
#

here

woeful salmon
#

@rugged root i have that too

#

since 5 years

rugged root
gentle flint
#

gtg eat

#

cya later

acoustic ingot
#

Sorry to interrupt, but can anyone of you help me??

rugged root
#

What's your question?

acoustic ingot
#

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  
rugged root
#

Is the file in the same folder as the script?

acoustic ingot
#

It sometimes say that it cannot read the file...

acoustic ingot