#voice-chat-text-0

1 messages ยท Page 44 of 1

honest torrent
#

yeah try again

#

Sorry whats your question again?

mortal crystal
#

IBM Model M :3

quasi condor
#

img

stray niche
#

What is this supposed to / going to be

somber heath
#

Phone pouch.

stray niche
#

I'm assuming it's not done yet?

somber heath
#

One improvised pooter and about twenty of the little dears later...

stray niche
somber heath
#

Yeah. Insect sucker-uperer.

stray niche
stray niche
drifting sonnet
#

Mohammed Abdalla Mohammedali Elmufti

somber heath
#

!d str.split

wise cargoBOT
#

str.split(sep=None, maxsplit=- 1)```
Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, the list will have at most `maxsplit+1` elements). If *maxsplit* is not specified or `-1`, then there is no limit on the number of splits (all possible splits are made).

If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, `'1,,2'.split(',')` returns `['1', '', '2']`). The *sep* argument may consist of multiple characters (for example, `'1<>2<>3'.split('<>')` returns `['1', '2', '3']`). Splitting an empty string with a specified separator returns `['']`.

For example:
somber heath
#

!d slice

wise cargoBOT
#

class slice(stop)``````py

class slice(start, stop, step=1)```
Return a [slice](https://docs.python.org/3/glossary.html#term-slice) object representing the set of indices specified by `range(start, stop, step)`. The *start* and *step* arguments default to `None`. Slice objects have read-only data attributes `start`, `stop`, and `step` which merely return the argument values (or their default). They have no other explicit functionality; however, they are used by NumPy and other third-party packages. Slice objects are also generated when extended indexing syntax is used. For example: `a[start:stop:step]` or `a[start:stop, i]`. See [`itertools.islice()`](https://docs.python.org/3/library/itertools.html#itertools.islice "itertools.islice") for an alternate version that returns an iterator.
drifting sonnet
#

Abdalla Mohammedali Elmufti, Mohammed

somber heath
#

!d str.join

wise cargoBOT
#

str.join(iterable)```
Return a string which is the concatenation of the strings in *iterable*. A [`TypeError`](https://docs.python.org/3/library/exceptions.html#TypeError "TypeError") will be raised if there are any non-string values in *iterable*, including [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytes "bytes") objects. The separator between elements is the string providing this method.
somber heath
#

!d str.strip

wise cargoBOT
#

str.strip([chars])```
Return a copy of the string with the leading and trailing characters removed. The *chars* argument is a string specifying the set of characters to be removed. If omitted or `None`, the *chars* argument defaults to removing whitespace. The *chars* argument is not a prefix or suffix; rather, all combinations of its values are stripped:

```py
>>> '   spacious   '.strip()
'spacious'
>>> 'www.example.com'.strip('cmowz.')
'example'
```  The outermost leading and trailing *chars* argument values are stripped from the string. Characters are removed from the leading end until reaching a string character that is not contained in the set of characters in *chars*. A similar action takes place on the trailing end. For example:
somber heath
#

!e py things = ["apple", "banana", "pear"] print(things[0]) print(things[1]) print(things[2]) print(things[-1]) print(things[-2]) print(things[-3])

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | apple
002 | banana
003 | pear
004 | pear
005 | banana
006 | apple
somber heath
#

!e py things = "abcdefg" result = things[1:-1] print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

bcdef
wise cargoBOT
#

str.index(sub[, start[, end]])```
Like [`find()`](https://docs.python.org/3/library/stdtypes.html#str.find "str.find"), but raise [`ValueError`](https://docs.python.org/3/library/exceptions.html#ValueError "ValueError") when the substring is not found.
somber heath
#

!e py text = "abcdefg" result = text.index("e") print(result)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

4
somber heath
#

!d str.count

wise cargoBOT
#

str.count(sub[, start[, end]])```
Return the number of non-overlapping occurrences of substring *sub* in the range [*start*, *end*]. Optional arguments *start* and *end* are interpreted as in slice notation.

If *sub* is empty, returns the number of empty strings between characters which is the length of the string plus one.
drifting sonnet
#
test = name.split(' ')
for item in test:
    if item.find(','):
        print(item)
        break   
    ```
somber heath
#

!d str.find

wise cargoBOT
#

str.find(sub[, start[, end]])```
Return the lowest index in the string where substring *sub* is found within the slice `s[start:end]`. Optional arguments *start* and *end* are interpreted as in slice notation. Return `-1` if *sub* is not found.

Note

The [`find()`](https://docs.python.org/3/library/stdtypes.html#str.find "str.find") method should be used only if you need to know the position of *sub*. To check if *sub* is a substring or not, use the [`in`](https://docs.python.org/3/reference/expressions.html#in) operator:

```py
>>> 'Py' in 'Python'
True
somber heath
#

Use str.index.

drifting sonnet
#
    if ',' in item:
        print(item)
        break   
    ```
somber heath
#

!e py if -1: print("A")``````py if 0: print("B")``````py if 1: print("C")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | A
002 | C
drifting sonnet
#

whaaaat

somber heath
#

For numerics, zero is falsy. Nonzero is truthy.

drifting sonnet
#

!e print(True + False)

wise cargoBOT
#

@drifting sonnet :white_check_mark: Your 3.11 eval job has completed with return code 0.

1
somber heath
#

str.find returns a numeric

#

Not found will return -1, truthy.

#

Found for the first index will be 0, falsy.

#

Found for other indexes, nonzero positive...truthy.

#

if keys off truthiness

drifting sonnet
#

!e ```name = "Abdalla Mohammedali Elmufti, Mohammed"

test = name.split(' ')

for item in test:
if ',' in item:
first,last = test[test.index(item)+1],test[test.index(item)].replace(',','').strip()
print(first,last)
break
```

wise cargoBOT
#

@drifting sonnet :white_check_mark: Your 3.11 eval job has completed with return code 0.

Mohammed Elmufti
drifting sonnet
#
            
            if full_name.count(' ') > 1:
                test = full_name.split(' ')
                for item in test:
                    if ',' in item:
                        first,last = test[test.index(item)+1],test[test.index(item)].replace(',','').strip()
                        break
            else:
                full_name = item.find("h3").text.replace(',','')
                last,first = full_name[:full_name.find(' ')],full_name[full_name.find(' '):].lstrip()```
somber heath
#

@drifting sonnet Depending on how much you'll be working with strings, you might also like to become proficient in regex, regular expressions, provided for in Python through the re module, but it's not what I'd call a beginner subject.

#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

covert sail
#

what are you making @lunar haven yourself

somber heath
#

@warm delta ๐Ÿ‘‹

drifting sonnet
#

I GOT IT

warm delta
somber heath
#

@cinder juniper ๐Ÿ‘‹

cinder juniper
#

Hi ! Sorry I didnโ€™t have permission to speak in call

wise cargoBOT
#

Voice verification

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

cinder juniper
#

Thanks !

dusk raven
#

@stray niche we can hear u

#

@stray niche can u hear us

somber heath
#

@polar merlin ๐Ÿ‘‹

somber heath
#

@odd star ๐Ÿ‘‹

stray niche
#

No one was talking here

#

Until I said bye

proper cloak
#

ill join back on my main account

robust lichen
serene glade
#

CPU: AMD FX 8300
Memory: 16 GB HydperX Dual Channel DDR3 @665MHz (9-9-9-24) 4 GB X4
Graphics: NVIDIA GeForce GTX 750
Motherboard: ASRock 970 Extreme3
Power: 700 Watt ocZ Mod X Stream-Pro
Storage: 2 TB Seagate ST1000 2x
Keyboard / Mouse: Redragon S101 Wired Gaming Keyboard and Mouse Combo
Capture Card: Wishlist

honest torrent
#

is the game peggle?

#

@robust lichen

robust lichen
#
for file_name in file_names:
    file_name = file_name.replace("\r", "").replace("\n", "").strip()

    resp, content = httplib2.Http().request(file_name)

    if resp.status == 200:
        objlxml = html.fromstring(content)

        filename = "subtitle"

        print("Downloading %s ..." % filename)

        btnEl = objlxml.xpath("//a[@id='downloadButton']")

        if len(btnEl):
            downloadUrl = btnEl[0].get("href")

            resp, zipcontent = httplib2.Http().request(
                "http://subscene.com" + downloadUrl
            )

            if resp.status == 200:
                with open(filename + ".zip", "wb") as fw:
                    fw.write(zipcontent)

                filenames = []

                with zipfile.ZipFile(f"{filename}.zip", "r") as zip_ref:
                    zipfiles = zip_ref.infolist()
                    zip_ref.extractall()

                    filenames = [zipinfo.filename for zipinfo in zipfiles]

                os.remove(f"{filename}.zip")

                print("...%s done!\n" % filename)
serene glade
#
# Python program to print list
# using for loop
a = [1, 2, 3, 4, 5]
ย 
# printing the list using loop
for x in range(len(a)):
ย ย ย ย print a[x],
robust lichen
robust lichen
somber heath
#

@merry thunder ๐Ÿ‘‹

somber heath
#

@gray yoke ๐Ÿ‘‹

gray yoke
#

i cant speak

#

lol

stray niche
#

!voice

somber heath
#

!voice

stray niche
#

#voice-verification @gray yoke

winged hinge
#

I dont have any topic to discuss so Ill just be silent and listen to you guys lol

stray niche
#

sometimes we all become silent

winged hinge
#

yeah

#

by any chance any one of you are into devops?

#

brb

#

what are you discussing lol

stray niche
#

verb (spans, spanning, spanned)
1 [with object] (of a bridge, arch, etc.) extend from side to side of

stray niche
somber heath
winged hinge
#

ask chatGPT

barren prawn
#

Hi guys,
I want to train a neural net to output x,y coordinates of a sub image which is part of a big image by matching pattern.
any ideas?????

somber heath
#

Will it be fuzzy? Computer vision?

barren prawn
#

Yeah I have an image of size 8,000 by 11,000 pixel and i divided it into 10,000 (200*200) images
I want to find the coordinates of those small images

whole bear
#

Ciao folks ! I don't want to interrupt Opal

stray niche
whole bear
#

Ciao cacao !

stray niche
whole bear
sweet lodge
#

Hi Sam

stray niche
#

Heylo @quasi condor

stray niche
robust lichen
#

what do yall think

barren prawn
robust lichen
#

so sexy

barren prawn
zenith radish
robust lichen
#

occasiaonly

#

how do i spell that

#

again

stray niche
#

occasionally

#

no

#

occasionally

somber heath
#

If you're after NN, #data-science-and-ml is where you'll want to look. If you have perfect copies of the source and the candidate images, you shouldn't use a NN. You'd use a particular image processing technique to test membership.

winged hinge
#

oke - sanli

robust lichen
#

Ford F150

zenith radish
winged hinge
#

i Had a honda city,

zenith radish
stray niche
#

especially for Indian roads

#

hits everything

winged hinge
#

yeah but for mods, it was great

stray niche
#

ah

winged hinge
#

had to sell it as I changed my city

#

people give out on lease right?

stray niche
#

or ship it

winged hinge
stray niche
#

are you in WB?

#

dont have to answer

winged hinge
stray niche
#

byee @karmic elk

winged hinge
#

byee @stray niche

#

and theres me who cant even center a div

quasi condor
stray niche
zenith radish
robust lichen
#
carrot/
    .gtkrc-xfce
    .pythonhist
    .bash_logout
    .wget-hsts
    .bashrc
    .gtkrc-2.0
    .xsession-errors.old
    .xsession-errors
    .profile.bak
    .dmrc
    .sudo_as_admin_successful
    test.py
    .python_history
    .profile
    .Xauthority
    .bash_history
    seeker/
        install.sh
        Dockerfile
        LICENSE
        seeker.py
        .gitignore
        metadata.json
        README.md
        logs/
            info.txt
            php.log
            install.log
            result.txt
        template/
            mod_gdrive.py
            mod_whatsapp.py
            mod_custom_og_tags.py
            mod_whatsapp_redirect.py
            templates.json
            sample.kml
            mod_captcha.py
            mod_telegram.py
zenith radish
#
require "grip"

class IndexController < Grip::Controllers::Http
  def get(context : Context) : Context
    context
      .put_status(200) # Assign the status code to 200 OK.
      .json({"id" => 1}) # Respond with JSON content.
      .halt # Close the connection.
  end

  def index(context : Context) : Context
    id =
      context
        .fetch_path_params
        .["id"]

    # An optional secondary argument gives a custom `Content-Type` header to the response.
    context
      .json(content: {"id" => id}, content_type: "application/json; charset=us-ascii")
      .halt
  end
end

class Application < Grip::Application
  def initialize(environment : String, serve_static : Bool)
    # By default the environment is set to "development" and serve_static is false.
    super(environment, serve_static)

    scope "/api" do
      scope "/v1" do
        get "/", IndexController
        get "/:id", IndexController, as: :index
      end
    end

    # Enable request/response logging.
    router.insert(0, Grip::Handlers::Log.new)
  end
end

app = Application.new(environment: "development", serve_static: false)
app.run```
woeful salmon
#

@lavish rover i feel you there... i had a similar thing today while helping someone everything that should've worked didn't work and at the end the broken thing fixed itself after leaving it for an hour

lavish rover
#

I wish my thing fixed itself

late vale
#

lets run it up

woeful salmon
#

the more dms i get for help

#

the lesser they should be able to find my name in a help channel the more they somehow find me o-o

#

that happen to you too?

stray niche
#

Why do you reap noodles

stray niche
quasi condor
lavish rover
#

Hi @rugged root why no join earlier

#

Lame

woeful salmon
#

@zenith radish ICANN or I CAN N?

rugged root
lavish rover
#

l a m e

woeful salmon
#

i shall now leave as i have more work to do. hope you guys have a gr8 day

#

cya all later

rugged root
zenith radish
#

โ–ถโ–ถ Subscribe to the Cartoon Network Classics YouTube channel and watch full episodes of the awesome shows you used to watch on TV! https://www.youtube.com/c/CartoonNetworkClassics?sub_confirmation=1

Dee Dee has a song stuck in her head literally. Dexter discovers Dee Dee has a viral boy-band infecting her brain and must come up with a cure be...

โ–ถ Play video
solar fog
#

@zenith radish that porn moustache

stray niche
#

๐Ÿ‘‹

molten pewter
#

้™ณๆธฏ็”Ÿ

#

้™ณCHEN

#

ๆธฏ็”Ÿ

#

ๆธฏ

#

็”Ÿ

rugged root
#

Baccano! is great

stray niche
#

@gentle flint hows prep going

gentle flint
#

entirely ignoring it

#

lol

stray niche
#

Are you a last min person

gentle flint
#

rn I'm designing a circuit for the light I'm hanging up tomorrow

gentle flint
stray niche
stray niche
gentle flint
#

it's just a switch

#

3 wires

#

not much to see

stray niche
#

it might be just a switch to you

#

but also, I meant the lights, mostly

#

the circuit as well, but mostly lights

#

Oh it light. not lights. anyway, still interesting

old bay
#

!voiceverify\

wise cargoBOT
#

Voice verification

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

old bay
#

!voiceverify

#

!voiceverify

honest torrent
#

ur in the wrong channel

rugged root
#

@zenith radish Desert Punk's dub is amazing

winged hinge
#

heylooooooooooooooooooooooooooo

rugged root
#

Neat

#

For the game Godville

#

Majority of the game is community content, and they recently added a "Picturizer"

winged hinge
#

Monero

rugged root
#

@amber raptor Huh, I should have figured, but I didn't realize PowerShell had Try Catch error handling

#

Trying to get up to speed with it, might try to automate some stuff later

winged hinge
#

This is what I am wearing lol

molten pewter
#

it's inside =out

stray niche
#

Hey @warm jackal

winged hinge
#

Expect to pay capital gains tax at a rate of 20 per cent in addition to applicable fees & surcharges

#

Dividends are subject to taxation. When determining tax on US equities in India, dividends paid from US stocks must also be included. This sum is subject to a flat tax rate of 25%.

rugged root
#

Jesus

#

Is that even if the dividends just get reinvested?

winged hinge
#

So even if we go and invest into US stock via any broker like INDMoney, Indian GOvt still taxes you on your CGs

stray niche
#

I dont even pay normal taxes lol. I dont earn anywhere near the minimum

stray niche
#

I should just pay a friend in the US to buy for me lol

rugged root
#

Yeesh

winged hinge
stray niche
winged hinge
mild quartz
#

James Harris Simons (; born 25 April 1938) is an American mathematician, billionaire hedge fund manager, and philanthropist. He is the founder of Renaissance Technologies, a quantitative hedge fund based in East Setauket, New York. He and his fund are known to be quantitative investors, using mathematical models and algorithms to make investment...

winged hinge
stray niche
#

hmm

winged hinge
#

Basically you play safe

mild quartz
#

Medallion, the main fund which is closed to outside investors, has earned over $100 billion in trading profits since its inception in 1988. This translates to a 66.1% average gross annual return or a 39.1% average net annual return between 1988 โ€“ 2018.

winged hinge
#

but onbviously you are always welcome to cheat XD @stray niche

mild quartz
#

probably zero

#

gains never realized?

winged hinge
#

In india its a whole different scene thats why

whole bear
#

@rugged root @stray niche ๐Ÿ‘‹

stray niche
warm jackal
#

@whole bear ๐Ÿ‘‹

stray niche
#

how are things

whole bear
whole bear
stray niche
whole bear
stray niche
stray niche
whole bear
#

How are things on your ends guys?

stray niche
#

love the reverse +1

stray niche
whole bear
stray niche
#

website up?

whole bear
warm jackal
stray niche
stray niche
whole bear
stray niche
warm jackal
whole bear
#

Sending pets for pepsi!

warm jackal
stray niche
whole bear
stray niche
whole bear
warm jackal
whole bear
stray niche
warm jackal
stray niche
#

When did Hemlock leave

whole bear
#

oh noo, he was here a minute ago

warm jackal
whole bear
warm jackal
warm jackal
stray niche
warm jackal
#

Typing on phone (or any keyboard, but phone is worse) does not help =P

winged hinge
#

phones are just getting worst day by day

#

all this upgrades technically but the impact on gen-z is just crap. future is dangerous

warm jackal
#

I think it's size difference which makes this painful for me

winged hinge
#

yeah the size is also a issue

quasi condor
#
Cloudflare

Cloudflare, Inc. (NYSE: NET), the security, performance, and reliability company helping to build a better Internet, today announced the Workers Launchpad Funding Program has grown to $2 billion for potential investment in startups building on Cloudflare Workers, an increase of 14 partners and $750 million in less than two months. Cloudflare is...

stray niche
warm jackal
quasi condor
zenith radish
quasi condor
zenith radish
quasi condor
obtuse pier
#

hi

unkempt magnet
molten pewter
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

unkempt magnet
hardy cloud
#

@chilly kiln no mic no?

chilly kiln
#

I have one.... but it says mic surpressed ๐Ÿ˜ฆ

hardy cloud
#

you have to verify

chilly kiln
#

so i am now emoji man

#

how?

hardy cloud
#

dk

#

look for channel

chilly kiln
#

๐Ÿ˜„

#

Cre's username is ussr

#

he's lying

#

CreSSR

#

lmao

#

yeah

#

i cant type it for cool reasons

#

tell me ๐Ÿ˜ฎ

#

wow

hardy cloud
#

Nazi term for Germany and its regime during the period of Nazi reign, from 1933 to 1945

#

there you go

chilly kiln
#

damn

#

yes... learner ๐Ÿ˜„

#

hmmm a few months

#

progress is okay

#

some basic projects nothing to shout about

#

do you know any other langauges?

#

languages

#

what is it?

hardy cloud
#

Nim is a general-purpose, multi-paradigm, statically typed, compiled systems programming language, designed and developed by a team around Andreas Rumpf.

chilly kiln
#

damn

#

rust is super good to learn

#

and django

#

idk,,, i seen it on a couple jobs

#

i looked atg

#

at

#

Man will ascend to discord mod status!

#

XD

#

21 :()

#

whats 9 + 10

#

just learning

#

yeahhhhhh, bit of both

#

you?

#

oh damn

#

you taking a course in that?

#

nahhh

#

they are capping

#

CS degree is good

#

but software engineering degree is better

#

imo

#

yeah

#

yeah but you can get a degree focused solely on it

hardy cloud
#

@rugged root how do u verify voice

chilly kiln
#

:0

#

TRUE

#

he is a validated discord moderator

#

๐Ÿ˜ฆ

#

lmao pepe profile pic

#

yeah

#

thats the main thing

#

damn bruh

#

me too

#

you are me?

hardy cloud
#

join back vc pepe

chilly kiln
#

i understand you

#

๐Ÿ˜ณ

#

Cre should start live streaming

#

๐Ÿ˜ฆ

#

switch to apple OS ๐Ÿค“

#

yeah

#

mac

#

fuck

#

๐Ÿ˜ฆ

#

not surprised

#

my math is also bad ๐Ÿ˜ฆ

#

learn python in 3 hours

#

YT

#

yeah

#

code camp

#

hhhh

#

brocode is good

#

BroCode is a W

#

W

#

Yeah its everyhting

#

im doing his C course atm

#

bro's CS grades are impeccable, I can already tell

#

yeah

#

XD

#

why?

#

lmao

#

Cre's age

#

what is that?

#

damn

#

i am the oldest

#

^^

#

fax

#

Cre is god

#

Cre is free

#

Cre is a busy bee

hardy cloud
#

carbapenem-resistant Enterobacteriaceae

chilly kiln
#

whats that?

#

you named yourself after antibiotics

#

?

#

I have a friend who is a antibiotic

#

๐Ÿ˜ฆ

#

an

#

print("I have to go, it was nice to meet you Cre and Pepe..... goodbye!")

hardy cloud
#

print('goodbye, nice meeting you "Low Flo".')

late vale
#

c

vivid palm
#

!cban 707912260378689586

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @viscid pond permanently.

hardy cloud
#

I was just talking to him and he got banned so confused

honest torrent
#

free pepe

#

he did nothing wrong

#

afk

#

@coarse hearth what going on lad

coarse hearth
coarse hearth
honest torrent
#

ah i see

coarse hearth
#

already 3/50, thats the progress

honest torrent
#

come on were getting somewhere

coarse hearth
#

UA

#

UA - Ukraine

#

I am in :). Lazy to type, have OW match in progress

honest torrent
#

coudve said UKR

coarse hearth
honest torrent
#

yes

#

30 years actually

#

and am 16

coarse hearth
#

Well, used it for my projects, transitioned from Java half a year ago, got into a company as a Data Pipeline Engineer (S2 level)

honest torrent
#

wtf

#

i cant talk my push to talk is buggin g out

#

its like a data scientist with a plumbing aspect

coarse hearth
#

Sounds mad, but actually it's mostly working with components and APIs/Queuing systems for importing and exporting data

#

I am Luigi.

honest torrent
#

ahhhh he caught you

coarse hearth
#

Letsa go

honest torrent
#

hes got you there lad

coarse hearth
#

Corona? Dying?

honest torrent
#

oh

coarse hearth
#

Good good

honest torrent
#

===========================================================================

coarse hearth
#

You are not pissing me off. It's like trying to use racial slurs against COD MW2 lobby players.

#

I am immune

#

Ez.

honest torrent
#

lord nani

coarse hearth
#

y?

honest torrent
#

can i touch you

coarse hearth
#

I am not grass

#

so sure

#

uwu, daddy

honest torrent
#

lol

coarse hearth
#

lmao

honest torrent
#

you touch pipes for a living

coarse hearth
#

I am working like 3 hours from 8, at most

#

XD

honest torrent
#

3 hours

#

nice

coarse hearth
#

Plumbers in US

#

holy shit

#

4times salary of eu IT guy

honest torrent
#

lord nani how far off are you from 50 messages

coarse hearth
#

Lemme see

honest torrent
#

you gotta speak

coarse hearth
#

what? System who?

#

system administrator?

#

System administators make lowest amounts from it

honest torrent
#

bro

coarse hearth
#

you are probably talking about DevOps, System Architects

#

etc

honest torrent
#

how many messages left

coarse hearth
hardy cloud
#

no I was specific

honest torrent
#

ok

coarse hearth
#

I can hear you, why are you typing, lmao

#

yea, looking for some data to back it up

#

yellow

#

blue

#

.

honest torrent
#

hey lord nani document your week with 3 words per message

coarse hearth
honest torrent
#

that'll help you get there

coarse hearth
#

but i can send you a cringy meme though

honest torrent
#

voice verify now

coarse hearth
#

ChatGPT memes are insane

#

I tried generating game reviews

#

and it literally made better reviews than IGN

hardy cloud
honest torrent
#

i asked it to use for over while

coarse hearth
#

@hardy cloud zaporozska nuclear power plant

coarse hearth
#

BYTE_SIZE_OFFSET = 4

honest torrent
#

im doing that rn

coarse hearth
#

def section_atoms(moov: str) -> Dict[str, byte]:

molten bronze
#

HI

coarse hearth
#

def get_previous_release(release_id):
""" Holt Vorgรคngeritem eines Items mit der ID release_id

    :param release_id: ID des items fรผr das Release
    :type release_id: int

"""
#

param: moov

ashen wave
#

what is @lunar haven coding?

coarse hearth
#

param: moov: bytes for doing something!

molten bronze
#

'?I want to know the code that you are doing is for sabe information in a nosql

coarse hearth
molten bronze
#

?

coarse hearth
molten bronze
ashen wave
#

Lord_Nani can u speak german?

coarse hearth
molten bronze
#

I speak spanish

ashen wave
#

i am from germany ๐Ÿ˜†

coarse hearth
#

:param moov: stream of bytes from mp4 file
:type release_id: bytes
:returns: dictionary of fixed bytes

ashen wave
#

Is somebody in this voicechat german?

molten bronze
#

what is the objective of the code?

#

noo

#

i am spanish

ashen wave
#

ok

molten bronze
#

i want to know what they are coding but they dont want to say what is that code about

ashen wave
molten bronze
#

I KNOW

#

I KNOW

#

U.U

#

but i cant speak

#

shows your screen!!!! to see the WHILE!!!!

#

yoo PUT!!! BO0LEAN!!

civic zephyr
#
def section_atoms(moov: bytes) -> dict[str, bytes]:
    """Section bytes to keys: moov, trak, mdia, minf, stbl, "stss", stsc, stsz, stco, udta

    Args:
        moov (bytes): the moov atom bytes from the mp4 file

    Returns:
        dict[str, bytes]: the atoms sections and its bytes
    """     

    SIZE_BYTES = 4

    atoms = {
        "moov": b"moov",
        "trak": b"trak",
        "tkhd": b"tkhd",
        "mdia": b"mdia",
        "minf": b"minf",
        "stbl": b"stbl",
        "stss": b"stss",
        "stsc": b"stsc",
        "stsz": b"stsz",
        "stco": b"stco",
        "udta": b"udta",
    }

    atom_sections = {}
 
    i = 0
    while i < len(atoms):
        start = moov.find(atoms[i])
        end = moov.find(atoms[i+1], start)
        atom_sections[i] = moov[start:end]
        moov = moov[end:]
        i += 1
    atom_sections[i] = moov

    return atom_sections
#

Instead of using the rfind() method to search for the next atom, you could use the find() method and search from the beginning of the moov_trim variable. This would avoid the need to search the entire string each time.

Instead of using a list of atom names and looping over it, you could use a dictionary with the atom names as keys and the values as the bytes objects representing those atoms. This would allow you to more easily retrieve the atoms by name without having to search for them.

Instead of slicing the moov_trim variable to remove the bytes for each atom, you could keep track of the start and end indices for each atom within the moov string and extract the atoms using those indices. This would avoid the need to create new slices of the string each time.

Instead of using a for loop to iterate over the atoms, you could use a while loop and a counter to keep track of your progress through the atoms. This would allow you to avoid the overhead of looping and increase the efficiency of the function.

molten bronze
#

i am in a web application+

#

SHINY!!!

#

use shiny!!!

#

SHINY WEB APPLICATION

#

not mobile apps!!!

ashen wave
#

Does this GUI look ok?

#

i try something

#

Random?

#

ok i do random

#

ok i try random

gentle flint
ashen wave
#

Enough randomnes?

somber heath
ashen wave
#

XD

somber heath
#

The button should be distinct.

ashen wave
#

its only when u hover over it

#

ok

#

I wonder why only some people can make screen share

somber heath
#

Your elements should have sufficient contrast to neighbouring elements.

ashen wave
#

its night time

somber heath
coarse turret
molten bronze
#

WHY I CANT 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.

somber heath
#

@runic wolf ๐Ÿ‘‹

molten bronze
#

!voice

#

noo......

#

how i ask for voice?

somber heath
#

Begin by reading the instructions provided by the bot message.

molten bronze
#

i did

coarse turret
#
line, = ax.plot([0], [0])  # empty line
#
from matplotlib import pyplot as plt

class LineBuilder:
    def __init__(self, line):
        self.line = line
        self.xs = list(line.get_xdata())
        self.ys = list(line.get_ydata())
        self.cid = line.figure.canvas.mpl_connect('button_press_event', self)

    def __call__(self, event):
        print('click', event)
        if event.inaxes!=self.line.axes: return
        self.xs.append(event.xdata)
        self.ys.append(event.ydata)
        self.line.set_data(self.xs, self.ys)
        self.line.figure.canvas.draw()

fig, ax = plt.subplots()
ax.set_title('click to build line segments')
line, = ax.plot([0], [0])  # empty line
linebuilder = LineBuilder(line)

plt.show()
somber heath
#

!e py line, = (1, ) print(line)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

1
civic zephyr
#

!e line,= 1

wise cargoBOT
#

@civic zephyr :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | TypeError: cannot unpack non-iterable int object
somber heath
#
line = (1,)[0]```
coarse turret
#

!e

line, = (1,2)
print(line)
wise cargoBOT
#

@coarse turret :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | ValueError: too many values to unpack (expected 1)
somber heath
#

!e py a, b = (1, 2) print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 1
002 | 2
molten bronze
#

i want to know hhow i can get voice!!

civic zephyr
#

Line,

#

(1,)

somber heath
#

Follow the instructions presented to you by the bot.

molten bronze
#

the bot show me a video

#

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

molten bronze
#

okay and how i can been on the server for less than 3 days.

coarse turret
#

!e

line, = (2,)
print(line)
wise cargoBOT
#

@coarse turret :white_check_mark: Your 3.11 eval job has completed with return code 0.

2
molten bronze
#

? i have to inscribe and ask for a ticket?

#

soo if i have voice and i want to talk i will need to wait 3 days each time?

#

mmmm why you dont put those rule for the main voiche chat 0 and no to the other voice chats???

#

yes i understand the point but i miss the oportunity to speak with other different from the moderatos to get help

#

you can use AI

#

use a pytorch ๐Ÿ˜„

#

i know

#

i am data science R and Python

#

with finances u.u

#

like a insurance guy

#

swaps, risk defaul free cash flow

#

automating things

#

heavy optimization

#

but the money it is in the big data

#

i need you for handle apache spark

#

with pyspark

#

buy the pyspark is the library

#

but

robust lichen
#

cool little thing im working on

somber heath
#

!e py d = {'key a': 'value a', 'key b': 'value b', 'key c': 'value c'} print(d.keys()) print(d.values()) print(d.items())

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | dict_keys(['key a', 'key b', 'key c'])
002 | dict_values(['value a', 'value b', 'value c'])
003 | dict_items([('key a', 'value a'), ('key b', 'value b'), ('key c', 'value c')])
robust lichen
#

values = 'example'

class TestApp(npyscreen.NPSApp):
    def main(self):
        F = FmSearchActive()
        F.wStatus1.value = "Status Line "
        F.wStatus2.value = "Second Status Line "

        F.value.set_values(values)
        F.wMain.values = F.value.get()

        F.edit()
#

@somber heath

#
class FmSearchActive(npyscreen.FormMuttActiveTraditional):
    ACTION_CONTROLLER = ActionControllerSearch


class TestApp(npyscreen.NPSApp):
    def main(self):
        self.F = FmSearchActive()
        self.F.wStatus1.value = "Status Line "
        self.F.wStatus2.value = "Second Status Line "

        self.F.value.set_values(values)
        self.F.wMain.values = F.value.get()

        self.F.edit()


if __name__ == "__main__":
    App = TestApp()
    App.run(
#
python: can't open file '/home/carrot/PycharmProjects/pip-cli/subtitles/subscene_downloader.py': [Errno 2] No such file or directory
Traceback (most recent call last):
  File "/home/carrot/PycharmProjects/pip-cli/subtitles/display.py", line 54, in <module>
    App.run()
  File "/home/carrot/.local/lib/python3.10/site-packages/npyscreen/apNPSApplication.py", line 30, in run
    return npyssafewrapper.wrapper(self.__remove_argument_call_main)
  File "/home/carrot/.local/lib/python3.10/site-packages/npyscreen/npyssafewrapper.py", line 41, in wrapper
    wrapper_no_fork(call_function)
  File "/home/carrot/.local/lib/python3.10/site-packages/npyscreen/npyssafewrapper.py", line 97, in wrapper_no_fork
    return_code = call_function(_SCREEN)    
  File "/home/carrot/.local/lib/python3.10/site-packages/npyscreen/apNPSApplication.py", line 25, in __remove_argument_call_main
    return self.main()
  File "/home/carrot/PycharmProjects/pip-cli/subtitles/display.py", line 47, in main
    self.F.wMain.values = F.value.get()
NameError: name 'F' is not defined. Did you mean: 'f'?
somber heath
#

@small hawk ๐Ÿ‘‹

robust lichen
#
class TestApp(npyscreen.NPSApp):
    def __init__(self, values):
        self.values = values

    def main(self):
        F = FmSearchActive()
        F.wStatus1.value = "Status Line "
        F.wStatus2.value = "Second Status Line "

        F.value.set_values(self.values)
        F.wMain.values = F.value.get()

        F.edit()

if args.download:
    subprocess.run(["python", "subscene_downloader.py"])
    with open("Deadpool.2016.BluRay.720p.x264.Ganool.srt", "r") as f:
        values = f.readlines()
    App = TestApp(values)
    App.run()
robust lichen
#
import npyscreen
import argparse
import subprocess

parser = argparse.ArgumentParser()
parser.add_argument(
    "--view", action="store_true", help="view the output of predator.sh"
)
parser.add_argument(
    "--download",
    action="store_true",
    help="download subtitles using subscene_downloader.py",
)

args = parser.parse_args()

if args.view:
    output = subprocess.check_output(["bash", "predator.sh"])
    values = output.decode("utf-8")

if args.download:
    subprocess.run(["python", "subtitle_downloader.py"])
    with open("Deadpool.2016.BluRay.720p.x264.Ganool.srt", "r") as f:
        values = f.readlines

class ActionControllerSearch(npyscreen.ActionControllerSimple):
    def create(self):
        self.add_action("^/.*", self.set_search, True)

    def set_search(self, command_line, widget_proxy, live):
        self.parent.value.set_filter(command_line[1:])
        self.parent.wMain.values = self.parent.value.get()
        self.parent.wMain.display()


class FmSearchActive(npyscreen.FormMuttActiveTraditional):
    ACTION_CONTROLLER = ActionControllerSearch


class TestApp(npyscreen.NPSApp):
    def main(self):
        F = FmSearchActive()
        F.wStatus1.value = "Status Line "
        F.wStatus2.value = "Second Status Line "

        F.value.set_values(values)
        F.wMain.values = F.value.get()

        F.edit()


if __name__ == "__main__":
    App = TestApp()
    App.run()
chrome pewter
#

@somber heath

Traceback (most recent call last):
  File "C:\Python_3.9\lib\threading.py", line 980, in _bootstrap_inner
    self.run()
  File "C:\Python_3.9\lib\threading.py", line 917, in run
    self._target(*self._args, **self._kwargs)
TypeError: sound() takes 1 positional argument but 8 were given
from  playsound import playsound
from threading import Thread
#ui sounds
def sound(name):
    sound_path = {
        'screen_on':'Screen_On.wav',
        'screen_off':'Screen_Off.wav',
        'button':'ClickOpen_buttons_confirm.wav',
        'listening':'Startup_Music.wav',
        'stop_listening':'Stopped_Listening.wav',
        'show_window':"Show_Window.wav",
        'start':'process_start.wav',
        'ss':'ClickOpen_dropdown.wav',
        'adjust':'sound_adjust.wav',
        'start_up':'start_up.mp3'
    }

    if name in sound_path.keys():
        path = 'sounds\\gui_sounds\\'+sound_path.get(name)
        playsound(path)

#sound('start_up')

loadsound = Thread(target = sound, args=('start_up'),)
loadsound.start()

The function works perfectly but when used in a Thread gives error

#

do you how to fix it?

robust lichen
#

like how it says

#

dont feed 8 arguments to it

whole bear
#

try:
print(x)
except:
print("An exception occurred")

chrome pewter
#

i am just giving a single arg

#

i.e. 'start_up'

robust lichen
#

no you aren't

whole bear
#
try:
  print(x)
except:
  print("An exception occurred") 
robust lichen
#

there are 8 things inside of sound_path

#

which is giving a error

chrome pewter
#

args = 'start_up',

#

like this??

#

@somber heath

#
a = ('start_up',)
loadsound = Thread(target = sound, args=a,)
loadsound.start()
somber heath
#

!e py "abc"[3]"Hey, Python, what's the fourth thing in a sequence of three things?"

wise cargoBOT
#

@somber heath :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | IndexError: string index out of range
somber heath
#

!e py try: "abc"[3] except IndexError: print("Caught.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Caught.
whole bear
#

@hybrid siren ๐Ÿ‘‹

stray niche
#

๐Ÿ‘‹ @somber heath

stray niche
#

rejoining

somber heath
#

@split saffron ๐Ÿ‘‹

#

@whole bear ๐Ÿ‘‹

#

Did you not just join and leave VC?

#

Just greeting and farewelling. ๐Ÿ™‚

stray niche
#

@winged hinge ๐Ÿ‘‹

winged hinge
#

Oh Hello There @stray niche

somber heath
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

whole bear
#

class Solution:
    def wordPattern(self, pattern: str, s: str) -> bool:
        hm = {}
        
        # we need to split the s over the space(" ")

        s = s.split(" ")   # type: ignore        
        # if the lengths of pattern and s are not same then return False
        if len(s) != len(pattern):
            print("False")
        
        # loop over both pattern and s at same time using the index, as they are of same length
        for i in range(len(s)):
            '''
            if both pattern and s has same characters as shown below
                pattern: 'xyyx'
                s: 'y x x y'
            
            Then using the same keys in hashmap will result in error, so we need to prefix these with some thing 
            Here I am prefixing pattern and s with `pat` and `str` respectively
            '''  
            pv, sv = "pat"+pattern[i] , "str"+s[i]
            
            # add the pattern value and s value if its not in hashmap
            if pv not in hm:
                hm[pv] = i
                
            if sv not in hm:
                hm[sv] = i
            
            # if both are not returning the same index, it means the pattern is not being followed
            if hm[sv] != hm[pv]:
                print("False")

        return True

ll1 = Solution()
ll1.wordPattern(pattern='xyyx' , s=  'amar singh amar ')
somber heath
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

stray niche
#

brb

whole bear
somber heath
#

!e ```py
def func():
return True

a = func()
print(a)```

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
whole bear
#
class Solution:
    def wordPattern(self, pattern: str, s: str) -> bool:
        hm = {}
        
        # we need to split the s over the space(" ")

        s = s.split(" ")   # type: ignore        
        # if the lengths of pattern and s are not same then return False
        if len(s) != len(pattern):
            return False
            
        
        # loop over both pattern and s at same time using the index, as they are of same length
        for i in range(len(s)):
            pv, sv = "pat"+pattern[i] , "str"+s[i]
            
            # add the pattern value and s value if its not in hashmap
            if pv not in hm:
                hm[pv] = i
                
            if sv not in hm:
                hm[sv] = i
            
            # if both are not returning the same index, it means the pattern is not being followed
            if hm[sv] != hm[pv]:
                return False
            

        return True

ll1 = Solution()
ll1.wordPattern(pattern='xyyx' , s=  'amar singh singh amar')
somber heath
#
def func():
    return True

print(func())```
whole bear
somber heath
#

@vital swift ๐Ÿ‘‹

vital swift
#

hi

#

wot u guys doin

#

i was trying to bypass cloudflare

#

any help?

somber heath
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.

vital swift
#

ohh

#

nvm

#

my ai hcap solver works fine

#

its malicious tho

#

yep

#

but doesnt work

#

on steelseries

#

uh 1 month promo

#

link gen

#

๐Ÿ˜›

#

it collabed with discord

#

u get 1 month free nitro

#

u get a promotion link to claim

#

i already made a gen for it

#

but then cloudflare fks it

#

i do :

#

doesnt work bruh\

#

i am working on it for 2 hours

#

it has hcap

#

tbh i used selenium / playright to solve caps and bypass it

#

but then its slow af

#

uh like

#

its easy to get promo links

#

u just need a steelseries mail verified acc

#

i use module account-generator-helper

#

for mail verify

#

https://accounts.steelseries.com/register?next=%252F%2540me

#

example*

#

nah

#

every request

#

goes to cf

#

uh maybe

#

i only get cloudflare in mail verify part

#

the mail verify

stray niche
#

๐Ÿ‘‹ @somber heath

vital swift
#

yep

vital swift
#

yep

#

that is perfect

#

it gives mail ,listens to mail

#

and if mail arrives then it verifies

#

uhm

stray niche
#

@zenith radish live music?

vital swift
#

it is against it tbh

#

botting acc is always

#

against tos

stray niche
vital swift
#

@zenith radish bro got early id without a nitro

#

๐Ÿ˜›

stray niche
#

surprised the mic is picking it up

#

usually noise cancels intruments

vital swift
#

@robust lichencan u check dms

warped raft
#

Java

#

why

#

it's fun for me

winged hinge
#

Hey @stray niche

#

The Wisp Sings

#

Ya Mustafa Noor Ul Huda (Na'at Sharif)
Melody composed by Ustad Nusrat Fateh Ali Khan and Ustad Farrukh Fateh Ali Khan

Recorded Live at Soundscape Studios

Music written and arranged by Rushil
https://www.facebook.com/RushilMusicOfficial/
https://www.instagram.com/rushilmusic/

Vocal by Abi Sampa
https://www.facebook.com/AbiSampa/
https://www....

โ–ถ Play video
zenith radish
stuck sky
#

hey

#

@winged hinge

#

are u lil bit free

#

i need a small help

winged hinge
#

yeash @stuck sky

#

tell me

#

just got free

tidal shard
zenith radish
quasi condor
zenith radish
frosty star
#

latest dog one +1

zenith radish
frosty star
#

i love it

#

its fiiine

zenith radish
frosty star
#

hay

stray niche
#

what is nocode

frosty star
#

welcome back sam

stray niche
somber heath
#

@cedar crown ๐Ÿ‘‹

stray niche
#

@cedar crown ๐Ÿ‘‹

stuck sky
#

@cedar crown ๐Ÿ‘‹

cedar crown
#

hi ๐Ÿ™‚

somber heath
#

@idle shadow ๐Ÿ‘‹

stuck sky
#

How to Master

#

Python

cedar crown
#

yes I am from Tibet ๐Ÿ™‚

stray niche
somber heath
#

Study, practice, looking after yourself, time for that to happen in.

stuck sky
#

it's been more then 2 years that i've been coding

#

he's the best

stuck sky
stuck sky
#

of inteviews

#

or

#

DSA

#

Help

#

Master

#

@somber heath

stuck sky
#

Automate Boring Stuff with Python

#

TechWithTIm

#

yes

#

yess

#

i suck at problem solving

#

exactly

#

u just need me to practice right? @somber heath

#

i made 100k$+

#

from Python

#

Web development

#

and i cant solve

#

string

#

problem

#

wtf

#

im gonnna

#

goo

#

andddddd

#

illl be back
after i solve 100 questions

#

fk it

somber heath
#

Your chosen style of communication is regretable.

stuck sky
stray niche
#

Nooooodlee

cedar crown
#

yeah

#

lobsang is a common name

whole bear
stray niche
whole bear
stray niche
whole bear
fallen heron
#

hey

stray niche
#

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

fallen heron
#

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

somber heath
#

@velvet cipher ๐Ÿ‘‹

fallen heron
#

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

somber heath
#

@mellow hemlock @fossil salmon ๐Ÿ‘‹

fossil salmon
#

i need help with something

somber heath
stray niche
#

@fallen heron I was saying, please dont speak over someone when someone else is saying something.

fossil salmon
#

i cant explain it i have to talk because typing it takes too long and hard to explain it

somber heath
#

I find the reverse is often true, that writing a problem out makes it easier to absorb.

fallen heron
#

are you there

#

??

somber heath
#

Both for yourself and the recipient.

fossil salmon
# somber heath I find the reverse is often true, that writing a problem out makes it easier to ...

ok look i made a script and im running it on VSC (virtual studio code) and when i run it nothing happens
Here is the code btw im new to coding:

import pyautogui
import time
import keyboard

enabled = False

def on_press(key):
global enabled
if key == "h":
enabled = not enabled

while True:
if enabled and pyautogui.mouseDown(button='left'):
while pyautogui.mouseDown(button='left'):
pyautogui.moveRel(2, 0, duration=0.1)
pyautogui.moveRel(-2, 0, duration=0.1)
pyautogui.moveRel(0, 2, duration=0.1)
pyautogui.moveRel(0, -2, duration=0.1)
time.sleep(0.1)
time.sleep(0.1)

keyboard.on_press(on_press)

stray niche
fossil salmon
#

its su post to make my cursor jitter but nothing happens i dont know what is wrong

fallen heron
#

??

stray niche
wise cargoBOT
#

Voice verification

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

stray niche
fossil salmon
#

!voice

fallen heron
#

for

stray niche
fallen heron
#

chat

fossil salmon
fallen heron
fossil salmon
#

nothing happend

somber heath
fallen heron
#

help me!

#

๐Ÿ˜…

stray niche
#

you are already verified

#

rejoin

#

leave vc and join again

fallen heron
#

ok

stray niche
#

come to code help

quasi condor
#

Awful awful place

stray niche
quasi condor
#

Photo not uploading

#

There

stray niche
#

brb call

whole bear
#

@somber heath good call

tawny dock
molten pewter
somber heath
#

@bronze charm ๐Ÿ‘‹

bronze charm
#

?

somber heath
#

Greetings.

bronze charm
#

ok

somber heath
#

@remote karma ๐Ÿ‘‹

zenith radish
zenith radish
molten bronze
#

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

somber heath
#

@astral basalt ๐Ÿ‘‹

fossil salmon
#

who is the best in python in here because i need help

#

i need help in python help

stray niche
#

@limpid sparrow ๐Ÿ‘‹ long time how's everything

hardy cloud
quartz lance
#

what are you making?

honest torrent
#

hard guy ringring

hardy cloud
#

@vivid palm free up my pepe did nothing wrong

obsidian sinew
#

hello!

molten bronze
#

u.u

#

use SHINY!!!

#

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

molten bronze
#

noo is better overleaf

#

overlead instead google docs

honest torrent
#

gonna deafen

#

watching cs50 lecture

hardy cloud
#

@honest torrent went for a hike?

honest torrent
#

yes

robust lichen
#

Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 1050623 1048576 512M EFI System
/dev/nvme0n1p2 1050624 500117503 499066880 238G Linux filesystem

#

Disk model: SAMSUNG MZVLQ256HAJD-000H1

somber heath
#

NVM Express (NVMe) or Non-Volatile Memory Host Controller Interface Specification (NVMHCIS) is an open, logical-device interface specification for accessing a computer's non-volatile storage media usually attached via PCI Express (PCIe) bus. The initialism NVM stands for non-volatile memory, which is often NAND flash memory that comes in several...

whole bear
#

@sick moon ๐Ÿ‘‹

vocal basin
#

I lost a type hinting fight against Pylance
I failed to convince it that tuple is properly covariant[ over element type]

vocal basin
#

"IDLE best IDE"

vocal basin
#

I got it

#

anyway, I'm not confident enough to actually open GitHub issue at Pylance repo

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

hello

#

@somber heath

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.

whole bear
#

nice to meet you si

#

sir

#

@somber heath ++

#

@somber heath how to get intern as python developer /

#

?

vocal basin
#

!d pickle

wise cargoBOT
#

Source code: Lib/pickle.py

The pickle module implements binary protocols for serializing and de-serializing a Python object structure. โ€œPicklingโ€ is the process whereby a Python object hierarchy is converted into a byte stream, and โ€œunpicklingโ€ is the inverse operation, whereby a byte stream (from a binary file or bytes-like object) is converted back into an object hierarchy. Pickling (and unpickling) is alternatively known as โ€œserializationโ€, โ€œmarshalling,โ€ 1 or โ€œflatteningโ€; however, to avoid confusion, the terms used here are โ€œpicklingโ€ and โ€œunpicklingโ€.

vocal basin
#

if the object is not made for pickling, you probably shouldn't pickle it

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

i wanted to talk ๐Ÿคฃ

#

anyway how is everyone today

#

sounds fun

#

thats me with my game ๐Ÿคฃ

#

months of stress

vocal basin
whole bear
#

his aus like me

#

aus on top ngl

vocal basin
#

something carrying something else if generalised too much

whole bear
#

opal you sound mid 20s

#

python is the best lang

#

ofc yes

#

@robust lichen good job

#

๐Ÿคฃ

#

ahhh need 50 msg to speak

vocal basin
#

what
what a coincidence
latest population estimates for Australia on Wikipedia are very close to being twice larger than ones for the city I'm in
like, within a thousand of people

vocal basin
whole bear
#

anyone here into game dev ?

#

@coral sandal was that you speaking ?

#

ahhh nice

#

currently working on my game called darkside

#

its a white/grey/black hat based game

vocal basin
#

I mostly gave up on game dev as soon as I got into learning proper software engineering instead of just programming

#

game development in a lot of cases is too messy

whole bear
#

is a online game

#

yes my good fps

#

even on 0.3 ghz on the cpu i was getting 140 fps in game

#

yea its not ๐Ÿ˜

#

but i plan to make it a fun game for the skilled and knowledge

#

@coral sandal you work for Microsoft?

#

whens windows 12 coming ๐Ÿคฃ

somber heath
#

@somber gyro ๐Ÿ‘‹

somber gyro
#

Hello

vocal basin
whole bear
#

it will be set at 60 fps

vocal basin
whole bear
#

python has never let me down with any project

vocal basin
#

if you need help with Java, you just pay Oracle

whole bear
#

oh java i hate java

#

i tried to get a job ๐Ÿคฃ

#

they denied me bc i would not tell them how to setup a printer

vocal basin
#

"cheers to it"?

whole bear
#

opal your english is to good

vocal basin
#

at least, it's Django not Flask

whole bear
#

@coral sandal make another chat ai

#

but without restrictions

#

they killed chatgpt ith all the blocks now

vocal basin
#

(from what I know)

whole bear
#

whats wrong with flask

vocal basin
whole bear
#

hmm

#

i never had a problem with it

vocal basin
#

Flask's ASGI is fake

vocal basin
whole bear
#

would gunicorn not fix this ?

vocal basin
#

wsgi runners just throw more threads at the problem

whole bear
#

nothing wrong with threads ๐Ÿคฃ