#voice-chat-text-0

1 messages ยท Page 114 of 1

vocal basin
#

each bool in a list takes, like, what, 8 bytes?

#

!e

import sys
print(sys.getsizeof([True] * 1_000))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

8056
somber heath
#

!e py import sys print(sys.getsizeof(True))

vocal basin
#

8 bytes per bool

wise cargoBOT
#

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

28
vocal basin
#

because

#

it's an address

#

!d array

wise cargoBOT
#

This module defines an object type which can compactly represent an array of basic values: characters, integers, floating point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a type code, which is a single character. The following type codes are defined:

vocal basin
#

yield allows to reduce 8 bytes to 0

#

Erlang has syntax for matching on bit strings

somber heath
#

Bit...strings?

vocal basin
#

it's telecom, they value each bit sent

somber heath
#

@whole bear๐Ÿ‘‹

vocal basin
#

!e

import sys
print(sys.getsizeof([object()] * 1000))
print(sys.getsizeof([object() for _ in range(1000)]))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 8056
002 | 8856
vocal basin
#

!e

import sys
for i in range(6):
    print(sys.getsizeof([object() for _ in range(10 ** i)]))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 88
002 | 184
003 | 920
004 | 8856
005 | 85176
006 | 800984
vocal basin
#

*100000 doesn't create new objects

#

it creates exactly one new object

#

!e

import sys
a = [object() for _ in range(100000)]
print(sys.getsizeof(a))
print(sys.getsizeof(a.copy()))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 800984
002 | 800056
vocal basin
#

I figured out what happens maybe

#

constructing list from an iterator produces a bigger list

#

because it dynamically allocates

#

because it doesn't know the length

somber heath
#

!e ```py
class MyClass:
def init(self):
self.value = 'A'
def repr(self):
return self.value

a = [MyClass() for _ in range(10)]
b = [MyClass()] * 10
print(a)
print(b)
a[0].value = 'B'
b[0].value = 'B'
print(a)
print(b)```

wise cargoBOT
#

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

001 | [A, A, A, A, A, A, A, A, A, A]
002 | [A, A, A, A, A, A, A, A, A, A]
003 | [B, A, A, A, A, A, A, A, A, A]
004 | [B, B, B, B, B, B, B, B, B, B]
vocal basin
#

!e

import sys
print(sys.getsizeof(list(range(1000))))
print(sys.getsizeof(list(x for x in range(1000))))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 8056
002 | 8856
vocal basin
#

it probably uses __len__

#

like length hints in Rust

somber heath
#

Oh, I might also be confused, then.

#

The missile knows where it is.

vocal basin
#

!e

import sys
class C:
    def __iter__(self):
        yield from range(1000)
class D(C):
    def __len__(self):
        return 1000
print(sys.getsizeof(list(C())))
print(sys.getsizeof(list(D())))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 8856
002 | 8056
vocal basin
#

!e

import sys
class C:
    def __iter__(self):
        yield from range(1000)
    def __len__(self):
        return 10000
print(sys.getsizeof(list(C())))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

9080
vocal basin
#

it shrinks

#

probably not, I'd say

#

I'd expect it to choose to allocate in bigger chunks

somber heath
#

@lunar dove๐Ÿ‘‹

vocal basin
#

or smaller chunks if the length hints to

somber heath
#

Contiguous is the word.

vocal basin
#

continuously layed out in memory? maybe

#
typedef struct {
    PyObject_VAR_HEAD
    /* Vector of pointers to list elements.  list[0] is ob_item[0], etc. */
    PyObject **ob_item;

    Py_ssize_t allocated;
} PyListObject;
#

looks like just array list

#

@verbal zenith memory is virtual, so no it doesn't align with physical order

#

also, you can mmap a file, not sure how you'd compare file positions and physical memory positions

#

make file appear like RAM

#

on C level

vocal basin
#

mmap(2) is a POSIX-compliant Unix system call that maps files or devices into memory. It is a method of memory-mapped file I/O.

somber heath
#

!d numpy.memmap

wise cargoBOT
#

class numpy.memmap(filename, dtype=<class 'numpy.ubyte'>, mode='r+', offset=0, shape=None, order='C')```
Create a memory-map to an array stored in a *binary* file on disk.

Memory-mapped files are used for accessing small segments of large files on disk, without reading the entire file into memory. NumPyโ€™s memmapโ€™s are array-like objects. This differs from Pythonโ€™s `mmap` module, which uses file-like objects.

This subclass of ndarray has some unpleasant interactions with some operations, because it doesnโ€™t quite fit properly as a subclass. An alternative to using this subclass is to create the `mmap` object yourself, then create an ndarray with ndarray.\_\_new\_\_ directly, passing the object created in its โ€˜buffer=โ€™ parameter.

This class may at some point be turned into a factory function which returns a view into an mmap buffer.
vocal basin
#

why is it >12 not >0?

thin galleon
#

can someone help me quick?

#

my code stops without any error:

              while True:
                print("Loop")
                if self.controller:
                    for event in self.events:
                        mod = c.mods.mod.get(str(event.code))
                        if mod != None:
                            exec(mod, {"controllerClass": self, "client": self.clientClass, "app": self.appClass, "gamepad": event})
                for button, mod in c.mods.mod.items():
                    if keyboard.is_pressed(button):
                        exec(mod, {"controllerClass": self, "client": self.clientClass, "app": self.appClass, "keyboard": keyboard})

it prints the loop only one time and then it just stops, no error nothing

vocal basin
#

just add assert

#
# after the loop
assert len(atoms) == 8, f'{len(atoms)}!=8'
#

for now it's fine, can be changed for better exception later

#

just run it for now

#

throws an error if False

#

falsy

#

loop actually reads 8 bytes, and then 4 bytes

#

!d struct.unpack

wise cargoBOT
#

struct.unpack(format, buffer)```
Unpack from the buffer *buffer* (presumably packed by `pack(format, ...)`) according to the format string *format*. The result is a tuple even if it contains exactly one item. The bufferโ€™s size in bytes must match the size required by the format, as reflected by [`calcsize()`](https://docs.python.org/3/library/struct.html#struct.calcsize "struct.calcsize").
vocal basin
#

read 8

#

then read at most 4

#

handle length 4 and length 0 as separate cases

#

trying to figure out how to do that with a stream

_size = stream.read(4)
while True:
    _name = stream.read(4)
    header = _size + _name
    size, name = int.frombytes(_size, 'little'), _name.decode("ascii")
    while name in self:
        name += "2"
    _flag_or_child_size = stream.read(4)
    if not _flag_or_child_size:
        self[name] = header
        break
    flag_or_child_size = int.frombytes(_flag_or_child_size, 'little')
    if flag_or_child_size > 1:
        self[name] = header + stream.read(size - 8)
        _size = stream.read(4)
    else:
        self[name] = header
        _size = _flag_or_child_size
#

!d io.BytesIO

wise cargoBOT
#

class io.BytesIO(initial_bytes=b'')```
A binary stream using an in-memory bytes buffer. It inherits [`BufferedIOBase`](https://docs.python.org/3/library/io.html#io.BufferedIOBase "io.BufferedIOBase"). The buffer is discarded when the [`close()`](https://docs.python.org/3/library/io.html#io.IOBase.close "io.IOBase.close") method is called.

The optional argument *initial\_bytes* is a [bytes-like object](https://docs.python.org/3/glossary.html#term-bytes-like-object) that contains initial data.

[`BytesIO`](https://docs.python.org/3/library/io.html#io.BytesIO "io.BytesIO") provides or overrides these methods in addition to those from [`BufferedIOBase`](https://docs.python.org/3/library/io.html#io.BufferedIOBase "io.BufferedIOBase") and [`IOBase`](https://docs.python.org/3/library/io.html#io.IOBase "io.IOBase"):
vocal basin
#
stream = io.BytesIO(atoms)
vocal basin
#

if may produce collision if a name appears thrice

#

that's why while

vocal basin
vocal basin
#

how do you parse atoms itself?

#

i.e. how do you know when to stop?

#

where do you get atoms from

#

outside of Moov class

#

not how you process it

#

how do you get it in the first place?

#

to the end of the file, right?

vocal basin
#

stream is just IO[bytes]

#

it works just like a file

vocal basin
#
name += "2" if name in self else ""
# should be
if name in self:
    name += "2"

it shows intent more correctly

#

name += ... looks like "always change name"

#

whereas this more clearly says "change name if ..."

if ...:
    name += ...
#

name += "" is just a hack

#

less lines != more concise

vocal basin
#

first thing is more code, not less

#
name = self.non_duplicate(name)
#

checking for duplicates can be made into a separate method for easier code maintenance

#

atom_length
atom_size
size (overwrite)
real_size

#
if flag_or_child_size <= 1:
    size = 8
vocal basin
#

read atoms[:12]
if it's 8 bytes long, handle differently

#

doing all in one loop works better without readahead

#

you read flag_or_child_size twice

#

once as flag_or_child_size and then as size

vocal basin
#

try putting try-except around everything inside the loop after print

#

it might be raising SystemExit

#

which is a silent error

#

!e

raise SystemExit(0)
wise cargoBOT
#

@vocal basin :warning: Your 3.11 eval job has completed with return code 0.

[No output]
vocal basin
#

generally, you should avoid using exec

#

use imports+function calls instead

#

... if it's possible

celest pendant
#

hi i need help from advanced python programmers to my programm with voice recognation

vocal basin
#

what libraries for voice recognition are you using?

#

and what's the question/problem you're facing?

warped raft
#

Hello @rugged root

#

how are you doing

steel pilot
#

Hi

sweet lodge
#

@rugged root firH

warped raft
#

have you applied any voice affect @rugged root

#

so which hosting service do you recommend

#

all of you

#

i want many opnions

#

@rugged tundra , @cerulean ridge

#

can i have a look of it

#

hostinger

#

np

#

have a look at this

rugged root
warped raft
#

hey @somber heath

sweet lodge
#

stress stress stress

cerulean ridge
#

@rugged root you're in Misery? I'm really sorry for you

frozen owl
#

Florida Man is an Internet meme first popularized in 2013, referring to an alleged prevalence of men performing irrational, maniacal, illogical, delusional, insane, and absurd actions in the U.S. state of Florida. Internet users typically submit links to news stories and articles about unusual or strange crimes and other events occurring in Flor...

pallid hazel
#

@rugged root funny thing.. spent a day stressing over a hidden deadlock or racecondition that lead to one..

#

processpool -> threads
couldnt find the resource causing it even sending in lovks and semaphores to lockup everything.. i was so pissed.. then. wait for it.

#

i was running out of ports.. called port exhaustion

vocal basin
#

async is fine if you only want concurrency

#

(with all non-async GIL-releasing IO in threading and non-releasing IO in processes)

#

async has locks too

#

you can't share locks in that manner

#

you can't share locks across processes

#

you need messaging not locking

#

probably

#

redesign the architecture to not use locks

#

that could help

#

have exactly one process that is the one responsible for the resource

#

it would tell others "now you can use this resource"

#

well, yeah, depends on what locks

#

!d multiprocessing.Lock

wise cargoBOT
#

class multiprocessing.Lock```
A non-recursive lock object: a close analog of [`threading.Lock`](https://docs.python.org/3/library/threading.html#threading.Lock "threading.Lock"). Once a process or thread has acquired a lock, subsequent attempts to acquire it from any process or thread will block until it is released; any process or thread may release it. The concepts and behaviors of [`threading.Lock`](https://docs.python.org/3/library/threading.html#threading.Lock "threading.Lock") as it applies to threads are replicated here in [`multiprocessing.Lock`](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Lock "multiprocessing.Lock") as it applies to either processes or threads, except as noted.

Note that [`Lock`](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Lock "multiprocessing.Lock") is actually a factory function which returns an instance of `multiprocessing.synchronize.Lock` initialized with a default context.

[`Lock`](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Lock "multiprocessing.Lock") supports the [context manager](https://docs.python.org/3/glossary.html#term-context-manager) protocol and thus may be used in [`with`](https://docs.python.org/3/reference/compound_stmts.html#with) statements.
vocal basin
#

this

#

!d threading.Lock

wise cargoBOT
#

class threading.Lock```
The class implementing primitive lock objects. Once a thread has acquired a lock, subsequent attempts to acquire it block, until it is released; any thread may release it.

Note that `Lock` is actually a factory function which returns an instance of the most efficient version of the concrete Lock class that is supported by the platform.
vocal basin
vocal basin
#

python has at least three different Lock classes

#

!d asyncio.Lock

wise cargoBOT
#

class asyncio.Lock```
Implements a mutex lock for asyncio tasks. Not thread-safe.

An asyncio lock can be used to guarantee exclusive access to a shared resource.

The preferred way to use a Lock is an [`async with`](https://docs.python.org/3/reference/compound_stmts.html#async-with) statement:

```py
lock = asyncio.Lock()

# ... later
async with lock:
    # access shared state
```...
vocal basin
#

if you ever choose to make it distributed in any way

vocal basin
#

something like that with messages
it's still a lock in some sense

server               client
        <acquire---< A
        >acquire ok> A
        <acquire---< B
        <release---< A
        >acquire ok> B
        <release---< B
#

this is what (good) locks do anyway

somber heath
#

@chrome silo๐Ÿ‘‹

vocal basin
#

"ungreet"
like uncancel in async

#

!d asyncio.Task.uncancel

wise cargoBOT
#

uncancel()```
Decrement the count of cancellation requests to this Task.

Returns the remaining number of cancellation requests.

Note that once execution of a cancelled task completed, further calls to [`uncancel()`](https://docs.python.org/3/library/asyncio-task.html#asyncio.Task.uncancel "asyncio.Task.uncancel") are ineffective.

New in version 3.11.

This method is used by asyncioโ€™s internals and isnโ€™t expected to be used by end-user code. In particular, if a Task gets successfully uncancelled, this allows for elements of structured concurrency like [Task Groups](https://docs.python.org/3/library/asyncio-task.html#taskgroups) and [`asyncio.timeout()`](https://docs.python.org/3/library/asyncio-task.html#asyncio.timeout "asyncio.timeout") to continue running, isolating cancellation to the respective structured block. For example:
somber heath
#

That seems like an "oh, shit! fuck, no, stop, I didn't mean to do that" sort of call.

vocal basin
#

like it says there, used for timeouts

#

timeouts cancel the task they were spawned from
and uncancel it later when that cancellation is caught

amber raptor
#

Rabbit take: using messaging system is generally a better idea in most cases ๐Ÿ˜›

molten pewter
amber raptor
#

Rabbit take: Hi Sir Lancebot

#

Rabbit

rugged root
#

Never realized there were two rabbit emoji

amber raptor
#

Also, I can endorse Beanstalkd with greenstalk client, much pog

vocal basin
#

does it get triggered by rabbitmq too

#

no

somber heath
#

By the hare of my chinny chin chin.

vocal basin
pallid hazel
#

rabbit joined channel ๐Ÿฐ

vocal basin
#

even without choosing proper message queues with broker or not, you can change Locks to Queues even in the framework you already have

#

asyncio.Lock to asyncio.Queue
threading.Lock to queue.Queue
multiprocessing.Lock to multiprocessing.Queue

#

yes, they can coexist

#

there is "two ways" to lock the file

#

first is:
"just don't access it twice lol" (i.e. you choose how to lock)
second is:
filesystem/OS support

#

or just have one process that ever touches the file

#

(process/thread/task)

amber raptor
somber heath
#

@shell moat@ripe fern๐Ÿ‘‹

vocal basin
shell moat
#

@somber heath ๐Ÿ‘

rugged tundra
somber heath
#

@spice wave๐Ÿ‘‹

#

"Hey, ChatGPT, give me some really bad advice disguised as good advice."
"Sure thing. It's what I do anyway."

vocal basin
#

I wonder if there's aio_pika.connect_unreliable too

await aio_pika.connect_robust
amber raptor
vocal basin
#

how did I not know Starlark PL even existed

vocal basin
rugged root
#

Medical instruments: "This kazoo can cure cancer!"

pallid hazel
#

@somber heath you may find this interesting. when I was trying to find the race/block.. I did ask chatgpt for help.. but...
Chatgpt"I apologize for the confusion. Upon double-checking the code, I realize that I misunderstood your original message. You are correct that there is no typo in the code you provided earlier. Again, I apologize for the mistake."
Yea... I think I'm done with it.

rugged root
#

In fairness, your code is a very niche case, so it's going to have a hard time managing it

#

Hey MAD

graceful grail
#

๐Ÿ˜„

rugged root
#

Oh just the phrase medical instruments was said and it was the first thing that came to mind

#

Nam?

graceful grail
#

Dan

rugged root
#

Ooooooooooooooooooooooooooooooooooooo

#

I

#

LEGIT

#

Didn't think of that

pallid hazel
#

well, it had suggested that i had typos in the code and all the problems were do to that.. it aggervated me intensly

rugged root
#

I'm not at my #best

#

Huh

#

Neat

graceful grail
#

VOTE: peanut butter and jelly or quesadilla?

pallid hazel
#

does the animal consent?

peak copper
#

They reduced the price of the mac mini recently.

vocal basin
#

Docker for development

#

sell your soul to VS Code Dev containers

vocal basin
#

also dtrace

rugged root
#

Back in a sec.... Just when I'm getting super interested in the convo

#

@whole bear Yo

graceful grail
#

no

spice wave
#

Hi

whole bear
somber heath
#

@willow light Hemlock wants to get you tea.

molten pewter
rugged root
willow light
# rugged root https://www.logitech.com/en-us/products/mice/mx-ergo-wireless-trackball-mouse.ht...

I see your mouse and raise you mine
https://www.anker.com/products/a7852

graceful grail
rugged root
ember knot
#

meep

#

yo how do i get unmuted

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.

ember knot
#

50

#

messages shiiiii

willow light
#

50 really isn't that much if you actively participate

molten pewter
ember knot
#

i guess

#

i anyone doing data related stuff

somber heath
molten pewter
#

29%

somber heath
#

Fair.

#

@north lake ๐Ÿ‘‹

graceful grail
#

^^ ๐Ÿ˜„

rugged root
#

Core Keeper

somber heath
#

@whole bear ๐Ÿ‘‹

wind raptor
#

!stream 189200135278952450

wise cargoBOT
#

โœ… @graceful grail can now stream until <t:1681405057:f>.

whole bear
#

hi guys

#

new to the server

#

im fine

#

mate

#

and you

rugged root
#

Glad to have you on the server. Always happy to see new faces

#

Or new avatars I guess

glad spindle
#

hey guys

#

I have been on the server for a while

#

but now decided to become more active

rugged root
#

Awesome!

#

The more the merrier

rotund scaffold
#

@rugged root What site or software is being streamed right now ?

rugged root
wind raptor
#

g2g for a bit

rugged root
#

I am out of smoothie and now I'm sad

somber heath
#

Would bubble tea be a bumpy?

rugged root
#

I hope so

graceful grail
#

And they all left ๐Ÿ˜ฆ

silent stirrup
limpid umbra
#

howdy

rugged root
#

How're things in your neck of the woods, prop?

limpid umbra
#

getting warm - snow disapearing

#

brown grass

rugged root
#

@verbal zenith Sup

verbal zenith
rugged root
#

Not much, 'bout you?

verbal zenith
#

Just about to work on some programming stuff I gotta get done

rugged root
#

For class or other

verbal zenith
#

other

#

I'm doing development for a large game server

#

lol

rugged root
#

Oh sick

limpid umbra
#

@verbal zenith howdy , i use pygame to practice math graphics , can you recommend something much faster

verbal zenith
#

Unfortunately everything is written in javascript

rugged root
#

Eh... JS is tedious but what isn't

verbal zenith
#

Yeah, working with their codes is tedious on another level though

rugged root
#

Poorly written and documented?

verbal zenith
#

missing awaits on statements and missing catches on promises all over the place

rugged root
#

Love it

verbal zenith
#

semicolons in some places, not in others

#

lol

rugged root
#

@vale obsidian Yo

rugged root
#

@dry dew Yo

#

@quasi condor How you doin'?

amber raptor
#
{{- if .Values.controller.ingressClassResource.enabled -}}
# We don't support namespaced ingressClass yet
# So a ClusterRole and a ClusterRoleBinding is required
apiVersion: networking.k8s.io/v1
kind: IngressClass
metadata:
  labels:
    {{- include "ingress-nginx.labels" . | nindent 4 }}
    app.kubernetes.io/component: controller
    {{- with .Values.controller.labels }}
    {{- toYaml . | nindent 4 }}
    {{- end }}
  name: {{ .Values.controller.ingressClassResource.name }}
{{- if .Values.controller.ingressClassResource.default }}
  annotations:
    ingressclass.kubernetes.io/is-default-class: "true"
{{- end }}
spec:
  controller: {{ .Values.controller.ingressClassResource.controllerValue }}
  {{ template "ingressClass.parameters" . }}
{{- end }}```
#
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  annotations:
    nginx.ingress.kubernetes.io/auth-tls-verify-client: "on"
    nginx.ingress.kubernetes.io/auth-tls-secret: "kube-system/mtls-client-crt-bundle"
    nginx.ingress.kubernetes.io/auth-tls-error-page: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  name: modmail-web
spec:
  tls:
  - hosts:
      - "*.pythondiscord.com"
    secretName: pythondiscord.com-tls
  rules:
  - host: modmail.pythondiscord.com
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: modmail-web
            port:
              number: 80```
somber heath
stuck furnace
#

Hey Mina ๐Ÿ˜„

honest pier
#

hi mina~

somber heath
#

@stiff crest ๐Ÿ‘‹

stuck furnace
#

Pretty sure this is actually a thing ๐Ÿค”

honest pier
#

chocotaco

stuck furnace
#

Yo

#

I'm just reading about these top secret documents that were leaked by an airman on Discord ๐Ÿ˜‘

honest pier
#

new ones?

stuck furnace
honest pier
#

oop

#

fair enough

stuck furnace
#

Whoever found this has a keen eye

amber raptor
#

At least it wasn't WarThunder forums

honest pier
#

not this time!

#

you know that chinese engineer that leaked the APFSDS round is probably in prison forever ๐Ÿ˜”

amber raptor
#

It was Discord this time

honest pier
#

on a minecraft forum iirc

quasi condor
somber heath
#

I enjoy a light burn. More than that is excessive.

terse needle
quasi condor
rugged root
stuck furnace
#

๐Ÿ‘‹ @verbal zenith

gentle flint
#

I'll try it another time perhaps

amber raptor
#

oof, did England steal or buy New York City?

gentle flint
#

captured

#

so stole ig

#

The conquest of New Netherland occurred in 1664 as an English expedition led by Richard Nicolls that arrived in New York Harbor effected a peaceful capture of New Amsterdam, and the Articles of Surrender of New Netherland were agreed. The conquest was mostly peaceful in the rest of the colony as well, except for some fighting in New Amstel.

#

@amber raptor

somber heath
#

A generation refers to all of the people born and living at about the same time, regarded collectively. It can also be described as, "the average period, generally considered to be about 20โ€“โ 30 years, during which children are born and grow up, become adults, and begin to have children." In kinship terminology, it is a structural term designatin...

cedar glacier
#

@olive heron

olive heron
#

Hello, someone has worked with dietpi on pi zero..

cedar glacier
olive heron
#

yes

#

Does anyone know how I can upgrade to python 3.9 in the pi zero?

terse needle
cedar glacier
#

it says "surpressed"

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

cedar glacier
#

@amber raptor if we can't able to marry soldiers, should we all be soldiers just for that pension?

somber heath
#

They'd just stop offering pensions.

#

and knock a bunch of people back from joining

#

"Bunch of people want to join up? Cool. We don't need inducements."

whole bear
#

why cant i fking talk

#

!voice

cedar glacier
whole bear
#

fr

#

lets chat for a bit

#

u need over 50 messeges

terse needle
somber heath
cedar glacier
somber heath
#

To that end, it is largely successful.

whole bear
#

beuh

#

I just made the chat gpt make me some ransomware which is wild because its suposed not to code any malicous content

olive heron
#

Thanks James for the links.

cedar glacier
somber heath
#

Yes, I call that doing a Jedi hand wave.

whole bear
somber heath
#

In a world burning itself alive, I think it is an ugly act to bring things forth that are malignant like that.

#

Shadowing.

cedar glacier
#

python developer?

whole bear
#

yes

#

mostly

#

how about you

somber heath
#

!epy def func(): print = 'abc' print(print) func()

wise cargoBOT
#

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

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 4, in <module>
003 |     func()
004 |   File "/home/main.py", line 3, in func
005 |     print(print)
006 | TypeError: 'str' object is not callable
whole bear
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.

whole bear
#

my bad

cedar glacier
#

@whole bear I assume you are good at python scripting

whole bear
#

yes

#

kinda of

ionic lake
#
Traceback (most recent call last):
  File "A:\OoogaBooga\oobabooga-windows\text-generation-webui\server.py", line 827, in <module>
    create_interface()
  File "A:\OoogaBooga\oobabooga-windows\text-generation-webui\server.py", line 489, in create_interface
    with gr.Blocks(css=ui.css if not shared.is_chat() else ui.css + ui.chat_css, analytics_enabled=False, title=title) as shared.gradio['interface']:
  File "A:\OoogaBooga\oobabooga-windows\installer_files\env\lib\site-packages\gradio\blocks.py", line 1200, in __exit__
    self.config = self.get_config_file()
  File "A:\OoogaBooga\oobabooga-windows\installer_files\env\lib\site-packages\gradio\blocks.py", line 1176, in get_config_file
    "input": list(block.input_api_info()),  # type: ignore
AttributeError: 'State' object has no attribute 'input_api_info'```
cedar glacier
#

@whole bear what company do you work?

whole bear
whole bear
#

The error message suggests that the problem is related to an attribute error on a State object that does not have an attribute called "input_api_info". This error message might be caused by a typo or a missing import statement.

#

To resolve this error, you can check the code in the "server.py" file and make sure that the State object is defined correctly and that it has the "input_api_info" attribute. You might also need to check for any missing import statements or dependencies that could be causing this issue.

somber heath
#

Is that from chatgpt?

whole bear
#

yes bro

somber heath
#

!rule 10

wise cargoBOT
#

10. Do not copy and paste answers from ChatGPT or similar AI tools.

whole bear
#

BRUH

#

my bad

olive heron
whole bear
cedar glacier
#

@olive heron what do you do?

#

what do you work?

olive heron
#

Teacher of blockchain

#

python and django

olive heron
cedar glacier
whole bear
somber heath
#

!e ```py
class MyClass:
def abc(self):
print('Hello, world.')

instance = MyClass()
instance.abc()
instance.defg()```

olive heron
wise cargoBOT
#

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

001 | Hello, world.
002 | Traceback (most recent call last):
003 |   File "/home/main.py", line 7, in <module>
004 |     instance.defg()
005 |     ^^^^^^^^^^^^^
006 | AttributeError: 'MyClass' object has no attribute 'defg'
whole bear
#

No I mean how do you run stuff in a discord channel

cedar glacier
olive heron
#

it will be important to consider how they can be used in conjunction with each other to create even greater value.

cedar glacier
#

@olive heron If I wanted to develop/program a blockchain. Should I start solidity or it does not matter?

#

whats the best roadmap you can give

olive heron
ivory stump
#

@olive heron your link was getting deleted since it's from a url shortener and people have a history of using them to send less than great links in an opaque way. If you want you can send the link that redirects to

ionic lake
thin galleon
#

Hey

sudden barn
#

It's kinda funny to see that the directors of this Python servers are also part of the The Forbidden Trove server(PoE game related).
Pog.

sudden barn
#

That's the reason? For real? :D
Well. I guess that's true.

thin galleon
#

we can hear you

fierce wigeon
#

so the fact that are many kinds of sexuality and veganism are a sign of people going insane?

noble solstice
#

Hello Guys!!

#

ANyone here knows c++

final crane
#

function goodEnough(x, z) {
    if (Math.abs(x - z) < 0.01 || z === x) {
      return true;
    }else{
        return false
    }
}

function rootNewton(n,x,g){
    console.log(g)
    if(goodEnough(g**n,x)){
        return g;
    }else{
        return rootNewton(n,x,(-(g**n-x-(n*g**(n-1)*g)))/(n*g**(n-1)))
    }
}

console.log(rootNewton(2,16,1))

whole bear
#
this is a code block
final crane
#

I forgot about the minus sign, in the last row

sharp urchin
#

hello

thin galleon
#

Hey

#

Good

#

wbu?

#

Hey

#

What are you guys doing?

sour willow
#

Wait ... You played chess to get movies?

#

Thats like fairly uncommon nowadays

#

just use Thunderbolt

vocal basin
#

some companies allow more arbitrarily choosing laptop configurations
but that's mostly not for small orders

#

win-at-chess tape

#

last thing I played from CD/DVD was anime

#

Australia does quite a lot of media censorship

#

RimWorld got banned for some time there

vocal basin
thin galleon
#

Hey

thin galleon
#

Hey

#

Hey

warped raft
#

hello @rugged tundra , @somber heath , @cerulean ridge

cerulean ridge
#

Just start from scratch, all brand new hardware, new accounts

vocal basin
#

sadly, in some countries it's more dangerous to go to the police in such cases

vocal basin
#

maybe not in this particular city though

rugged root
#

I'd double check those settings to see if he's put you as part of a family account or something

warped raft
#

@vocal basin down for some clash of code

gentle flint
vocal basin
maiden skiff
#

I finally got the mic authority.

somber heath
#

@whole bear๐Ÿ‘‹

whole bear
warped raft
rugged root
#

@stuck furnace Suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuup

stuck furnace
#

Werther's are amazing ๐Ÿ˜„

#

I always wake up with a numb arm, and every time I think it's never going to work again.

rugged root
#

Hmm

#

No no, no need to apologize

#

Just thinking

#

I'd run the free version first, see if it finds anything

peak copper
rugged root
thin galleon
#

Hey

rugged root
somber heath
#

Why is it cross?

gentle flint
vocal basin
#

not easy to drive away because that requires oxygen too

rugged root
#

Yo AF

vocal basin
#

finally, usecase for electric cars

#

polluting rivers, a common Russian corporate hobby

#

nornickel

rugged root
#

That tracks

vocal basin
thin galleon
#

What are you guys doing?

wind raptor
#

Have you guys heard of the big snapple melt of 2005 in Time Square?

gentle flint
#

The Norilsk diesel oil spill was an industrial disaster near Norilsk, Krasnoyarsk Krai, Russia. It began on 29 May 2020 when a fuel storage tank at Norilsk-Taimyr Energy's Thermal Power Plant No. 3 (owned by Nornickel) failed, flooding local rivers with up to 17,500 tonnes of diesel oil. President Vladimir Putin declared a state of emergency in ...

molten pewter
vocal basin
rugged root
#

Anyone working on some neat coding things?

vocal basin
#

can't code right now because can't sit
coding on phone would be a little bit too hardcore

somber heath
#

Kali Linux is for hacking. Silicon Valley is in California.

#

I don't know what I'm saying.

vocal basin
#

at this point I'm not even sure if it's about banning specific books or all books

#

Russia plans to implement Chinese closed internet too

#

just reduce total cars count

rugged root
#

We'd have to invest in infrastructure first

#

Or along side it

vocal basin
#

"person has health problems => person is unqualified to speak on health" is magic thinking

somber heath
#

Well, if they were surfing, it'd have to be the Navy.

gentle flint
peak copper
gentle flint
rugged root
#

Damn it

#

I hate my attention span

#

Now I'm back looking at Elm

peak copper
somber heath
#

Affirm.

#

But people will judge you.

rugged root
#

@jagged geode Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate

But what's the question you have?

somber heath
#

Which makes having the process at all prejudicial to atheists and anyone not locally-dominant-religion-oriented.

#

Because they either have to perjure themselves or disincline themselves to a bunch of people.

#

"Yes, we need a law to allow us to do legally what we were doing, already, but given we probably now need to operate a bit more out in the open, so...yeah. Fuck you."

rugged tundra
somber heath
rugged root
#

@whole bear What're you up to? Working on anything?

#

What course?

amber raptor
rugged root
#

Oh nice. Never got that far, so it'd all be crazy complicated looking to me

amber raptor
rugged root
#

Why the time crunch?

#

HA, fair

#

I'm with you there

#

Oh no, I was just a lazy student

#

I'm 33, been out of school for a while

#

Ah cool cool

#

You got this

#

I haz the faith in you

#

How would I even look up what the opcode abbreviations mean

#

Hmm

gentle flint
#

dad just sent this

limpid umbra
#

thats cool

rugged root
zenith radish
wind raptor
#

Hey @zenith radish Do still have the link to that website that generated terrible phone pic screenshots from code blocks?

zenith radish
wind raptor
#

No worries

vocal basin
terse needle
limpid umbra
#

whats with all the 8080 op-codes

#

ohhh try emulate a Z80

#

6502

#

minulate a Z80 , then have a real one on a breadboard , all warm and toasty

terse needle
rugged root
limpid umbra
#

pumpernicle taoast butter , corned beef , dill pickle - bit o horseradish

#

need coofy , one not enough

#

@rugged root do you have a real 8080 chip ?

rugged root
#

I don't

#

I just a weird itch to look into this

#

I don't usually buy any hardware until I know I'm going to do something with it. I've bought enough crap that just sits collecting dust over the years

#

Trying to curb that a bit

limpid umbra
#

so the PDF in room is that the version you want to emulate

#

boxes of parts - yes i have that downstairs with all the cobwebs

#

easy part to start emulating in - PYTHON - is rthe memory map

#

chip 8 ?

#

PDF link ?

rugged root
#

Ah CHIP-8 is a language, okay

#

I think I found the one I'm going to be working with/from

limpid umbra
#

tiny environment - wow

#

Libre Office

molten pewter
limpid umbra
#

what about motor on a server HD

limpid umbra
#

they push 8 T drives , default to 4 T drive for mass storage , sits on shelf backup

#

price drop , bla bla

molten pewter
limpid umbra
#

4T ~ 6T = sweetspot , what about cost

#

kimchi is probiotic , it solves many stomach issues

#

its not vinegar based

#

itds fermented

#

garlic + fish stock + sea salt + many type radish

#

it balances out your stomach biome

lavish rover
#

@rugged root how goes chip8?

rugged root
#

Having to tackle a work thing first, but it's fine so far

#

Reading the high level guide to help me gather what's really needed

limpid umbra
#

chip 8 = 4 KB x 8 bit yes

#

@rugged root are you finished yet ?

thin galleon
#

Hey

rugged root
#

How goes it

limpid umbra
#

is there any speed advantage to using CLASS or just a organizational aid

rugged root
#

What do you mean?

limpid umbra
#

i never use CLASS for anything

#

but i code inside a cave

rugged root
#

It's useful for bundling information and functionality into a package you can pass around. So it's more than just an organizational thing

somber heath
#

Slots, maybe?

limpid umbra
#

well if i want to use others code , yes

rugged root
#

No, even within your own code

limpid umbra
#

yes - im trying to use that idea as motivation

somber heath
#

I used to think "I don't need to write classes, functions do fine and I can just use global or pass state around from function to function."

I learned them anyway. I went a bit crazy with them for a while.

#

Some things belong as functions. Some things belong as classes.

limpid umbra
#

its good to try coding with boxing gloves on - learn to code around limitations , new code becomes wow a new tool

somber heath
#

Where appropriate, use them.

#

Expand your toolbox.

limpid umbra
#

yes - especially with data juggling or pygame

#

but i need something faster than pygame

#

maybe Arcade , dont know

verbal zenith
limpid umbra
#

to draw a sphere with gradual shading or a reflection is so very complex

verbal zenith
#

I haven't actually done this yet, was just showing Gi what a raytracer could do, I'm planning on writing one of these though

#

sounds like a fun project

limpid umbra
#

need super coding skills

cedar glacier
#

I donโ€™t need that super, I need chatGPT

limpid umbra
#

@verbal zenith will you make your own C / C++ for speed ?

verbal zenith
#

I'm going to make it in C

thin galleon
#

How can I learn C++ or C?

limpid umbra
#

im just exploring , pygame and using math to draw , 2D and beginning 3D stuff

thin galleon
#

Because I have a game rn made in python and I want to write the code in C++ or C to make it much faster

limpid umbra
#

@verbal zenith are you going to direct access screen memory with C

verbal zenith
#

I'm not sure what that means

limpid umbra
#

did you ever use a C64 ?

#

@verbal zenith did you ever use a C64

verbal zenith
#

What is that?

limpid umbra
#

old computer , and to draw to screen required direct access to memory , machine code was fastest way to draw

rugged root
#

!stream 559903350024568833

wise cargoBOT
#

โœ… @verbal zenith can now stream until <t:1681496139:f>.

limpid umbra
#

@rugged root you must have used a C64 ??

rugged root
#

Nope, never have

#

Just researched about it

limpid umbra
#

the idea is , direct accessing graphics ( screen ) memeory for speed

rugged root
#

Right right

limpid umbra
#

im guessin , if you can use C , you can direct access screen memory for speed , is it possible or does OS restrict it ?

rugged root
#

You potentially could through the driver? No idea

#

The amount of memory you'd get from it nowadays would be insignificant

#

And way slower than your on board memory

limpid umbra
#

therefore be nice , and use C libs to access it ?

rugged root
#

I have no idea

limpid umbra
#

are you working on the instruction set for , CHIP-8

rugged root
#

Trying to, I'm still just reading

limpid umbra
#

will you stay inside the confines of , 4KB x 8 bit memory

rugged root
#

Attempt to

thin galleon
#

Guys

#

I finished

#

I made a TCP Chat with socket in 1 Hour ๐Ÿ™‚

limpid umbra
#

arrows on icons ???

#

ultimate windows tweaker can remove arrows on icons ....

thin galleon
#

littlebit why?

#

@acoustic marlin

acoustic marlin
#

I don't understand the dataSrc part and below

#

do you know what it does

thin galleon
pallid hazel
#

hmm.. on my phone.. and restarted the app a few times.. i cant scroll past code help voice text chat ๐Ÿ˜ฆ

#

doh... fixed it..

vocal basin
#

don't use mutable as defaults

#

PyCharm will bonk you

#

for build/commit validation, CI, CD, Docker and prayers

#

there was a meme comparing two images with captions

  1. girls' handwriting
  2. a brick
    peak humour
#

original version (in Russian)

#

caption says that

#

cursive is optimised for writing

#

f is cursed

#

paint + mouse pointer

#

temporary pfp
will change back in May probably

vocal basin
#

ARM supremacy is at least a little bit overrated

#

at that price, anywhere
at that size at power consumption, nowhere

#

Threadripper

#

or Xeon

#

"just buy both and more"

#

rent cloud

#

reduce compilation time

#

some people buy an ssd and find themselves unable to plug it in

#

(me)

vocal basin
narrow salmon
#

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

copper plover
#

.

whole bear
#

oh lol

#

i want to make a bot that uses python and node.js

#

and i need some help with it

#

but i can't talk or stream

#

lmao

#

I'm trying to make a discord bot, that can be used for hypixel adverstive, only for me, for education purposes

#

@lavish rover

#

Then it uses JS for the mineflayer bot

#

ok thanks

whole bear
#

anyone mind vc?

#

i don't have voice verify and i need help

#

with somethng

vocal basin
#

"just use match"

#

only now I'll try to find python version on stream and verify if that applies

#

it does, it's 3.11

#

but it's slower in some cases

#

concatenation in serialisation often leads to worse performance (if that matters)

#

but it looks cleaner

#

sometimes

dense meadow
#

hello

#

opal

#

how are you?

somber heath
#

I don't and it wouldn't matter if I did.

somber heath
dense meadow
#

I have a fundamental question to ask you Opal, and that is, do you mind me using you for a boss battle for a game I made about the Python discord?

#

And I can't hear oyu, so

#

*you

somber heath
#

Yes yes, I'm realising that.

dense meadow
#

Ok

somber heath
#

As to your question...I'd prefer you changed things up a bit.

#

So yes. I mind.

dense meadow
#

Like what?

somber heath
#

But I only low-key mind, you know?

dense meadow
#

Oh...

#

So can I just umm.. use your philosophical way of typing and your profile pic?

somber heath
#

Like, if you want to have me in mind when you're writing a character, that's your prerogative, but it's good for story to not use the same names, you know?

dense meadow
#

Oh ok

somber heath
#

I'd also prefer you not use my profile image.

dense meadow
#

Ok

#

I will just change up your name and profile pic.

#

Is that good with you?

#

me?

#

i am NOT SUS

somber heath
#

For example, you could use a rose.

dense meadow
#

yes

#

i was also thinking about that

#

Could you also reccomend me a name?

somber heath
#

I'll leave that up to you.

dense meadow
#

Ok

#

Thanks for the reccomendation!

#

What does Opal mean, btw?

somber heath
#

It's a gemstone.

#

I'm prominent.

dense meadow
#

You send NSFW links, Opal????!!!!!

#

Oh no

somber heath
dense meadow
#

Ohhhh

#

Ok

#

For the name, what about: RubyRain?

somber heath
#

Alliteration. Nice.

dense meadow
#

Thank you

#

Wait 1 sec

#

I got an email form MIT

#

*from

#

OH

#

MY

#

GOD

#

I got accepted... wtf

#

i am not trolling

#

bro

#

nothery

somber heath
#

It's a large server, public on the internet.

dense meadow
#

*notjerry

#

why u so negative

somber heath
#

Before the voice gate was implemented, people would come in to scream every ten minutes.

#

People are shit.

somber heath
#

All people. But not everyone is shit all the time. Some people are shit only some of the time.

#

Some people balance their shit by being the opposite.

dense meadow
#

nice

somber heath
#

@limpid crypt ๐Ÿ‘‹

limpid crypt
#

@somber heath hi

#

im muted

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.

limpid crypt
#

@somber heathafter 50 msg

#

ok

vocal basin
#

minesweeper can probably be added as a mod/map into Minecraft quite easily
(ignoring the hard stuff like mine counts and timers)

#

win streak would become the main metric of success

quaint oyster
#

minesweeper mod map minecraft muffins

somber heath
#

Muffins?

quaint oyster
#

red stone is quite interesting because it gives you the ability to code 1 and 0s in minecraft so technically you can build something like an 8 bit cpu

somber heath
#

Wait, are muffins a vanilla food, now?

quaint oyster
#

yes. muffins.

somber heath
#

Yes. I've been in one.

#

Or a CPU, at any rate.

#

Or sort of processor construction.

quaint oyster
#

nice

somber heath
#

Rendered a bit obsolete with mods, but impressive all the same.

quaint oyster
somber heath
#

Satisfying.

#

@cerulean sphinx๐Ÿ‘‹

cerulean sphinx
#

Hello

somber heath
#

@quaint oyster I have the Tetris music in my head, now. Thanks.

vocal basin
#

official people for C++ are already too preoccupied with making stuff up for the new specification version

#

this seems like a self-contained entity

#

not anything C++ official

#

> Treasurer

obsidian dragon
vocal basin
#

was analysing voice recordings earlier

vocal basin
somber heath
vocal basin
#

many lines stuff

vocal basin
#

so, basically, just noise

#

(first one I googled, didn't bother finding a better one)

obsidian dragon
somber heath
#

@tight pulsar๐Ÿ‘‹

tight pulsar
#

sup

somber heath
#

@livid flame๐Ÿ‘‹

livid flame
#

do u know python rlly good

#

?

#

can u help me? if yes, thank you, i dont know anything, but i want anyone to help me

vocal basin
#

thing from spectrogram is the last one probably

somber heath
#

@ocean tapir๐Ÿ‘‹

livid flame
#

i want to do hack for unity game, and i need to send http request to the api and i dont know how to do it, i mean i know req = requests.get("")... but idk how

ocean tapir
vocal basin
wise cargoBOT
#

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

vocal basin
#

depends on game's ToS

#

if it's multiplayer, then no

livid flame
#

then u cant help?

vocal basin
#

if it's CTF challenge, then no

livid flame
#

its stumble guys

vocal basin
#

yeah, that's competitive

#

that'd be cheating

livid flame
#

๐Ÿ˜ฆ

vocal basin
livid flame
vocal basin
livid flame
#

NO, but my friend do it, and i want too ๐Ÿ˜ฆ

vocal basin
#

if you want to hack games legitimately, look into past (NOT ACTIVE) CTF challenges

#

or make your own games

#

or ask developers for the permit

livid flame
vocal basin
#

or participate in bug bounty programs

livid flame
#

i dont understand english well

vocal basin
livid flame
#

ok, i will ask

vocal basin
#

developer being the developer of the game

livid flame
vocal basin
#

we have no way of proving to ourselves that you have any form of written permit

vocal basin
#

!rule 5 because this

wise cargoBOT
#

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

livid flame
#

oK

#

okk

ancient lily
#

hello

somber heath
#

@placid sapphire๐Ÿ‘‹

warped raft
#

@somber heath Hello

#

good singing

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

vocal basin
#

it can't code

#

.

#

it writes stuff that accidentally compiles

#

sometimes

#

if it's lucky

#

Catalan OP

#

nvm, Na1 OP

#

sodium attack

#

c4/e4/d4/Nf3 are mostly all fine for the first move with white

#

some chess960 starting positions benefit black

somber heath
#

@glass hare๐Ÿ‘‹

#

@twilit phoenix๐Ÿ‘‹

#

@hollow shoal๐Ÿ‘‹

#

Bullshit.

#

If you want to learn chess, go the fuck ahead and learn chess. The only person stopping you is you.

#

@static gazelle๐Ÿ‘‹

static gazelle
#

hi

#

hmmmmmmmmmmm

#

Yo i need someone to help me with something

#

well you guys know gpt-neo?

#

well anyways the problem is

#

when i run it the gpu utlization is on 0%

#

and im not getting any benfit from the gpu

#

I did but im kinda confused

#

no im on win 11

somber heath
#

@obsidian dragon The tool you might be after is called an awl.

rugged tundra
vocal basin
#

why did I have them muted apart from message history

#

whoa
first time seeing this

whole bear
#

@somber heath may we all meet again?

somber heath
#

I assume you're asking about my Discord status message?

whole bear
#

yes yes

#

meet me at 37ยฐ13'23.0"N 38ยฐ55'21.0"E

#

as a friend

somber heath
#

I've never been to an archaeological site.

#

It's also more than a little outside of my range.

#

It does look interesting, however.

#

I can see it being the sort of place I would enjoy.

vocal basin
#

funny how if you google it, one of the first results is some fictional make-stuff-up "scientific" journal

somber heath
#

Because I'm self-absorbed and pretentious.

#

Is it?

somber heath
#

@vale rivet ๐Ÿ‘‹

vale rivet
#

Hello!

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
#

@dapper river ๐Ÿ‘‹

teal flower
#

Hello

somber heath
#

@covert flame ๐Ÿ‘‹

#

@ancient cloud ๐Ÿ‘‹

ancient cloud
#

hello

somber heath
#

@whole bear ๐Ÿ‘‹

whole bear
#

ah

#

hey

somber heath
#

@echo pier ๐Ÿ‘‹

echo pier
somber heath
#

@vernal halo ๐Ÿ‘‹

covert flame
#

Hi

#

whatcha coding?

vocal basin
#

what where

covert flame
#

voice chat 0

vocal basin
#

seems like that could be just in one copy

#

fixed-size blocks

#

you know total size you need to copy

#

just by adding

covert flame
#

kk

glass hare
#

@somber heath help me plese

covert flame
vocal basin
#

length = sum(self.sizes)

#

use chunking

#

copy in 1MB chunks or whatever is optimal

somber heath
#

@twilit magnet ๐Ÿ‘‹

twilit magnet
#

Hello

#

lol

glass hare
#

i create a discord server but i can't run the bot to turn on to write code

somber heath
vocal basin
somber heath
vocal basin
#

code now seems fine

vocal basin
#

it should be streamed and distributed but for now it's ok

#

just piping from input file to output file

somber heath
#

@turbid sandal @dreamy matrix ๐Ÿ‘‹

vocal basin
#

with writing and reading possibly being done in parallel with each other

#

it's happening virtually concurrent anyway

#

(right now)

#

but it could be properly separated

#

some solutions may seem simpler but actually aren't

vocal basin
#

which segfaults

#

but it looks simple and clean

#

Maroloccio

vocal basin
#

the specific code was doing search in a linked list
it segfaulted if search failed instead of returning a proper error code or whatever

#

not a better solution

#

just found an error in existing one

#

C

#

idk if I can come up with a better interface right now

write_parts(ofile, read_parts(ifile, sizes))
#

tuple

#
def read_parts(ifile: IO[bytes], sizes: Iterable[int]) -> Iterable[bytes]:
    for size in sizes:
        yield ifile.read(size)

def write_parts(ofile: IO[bytes], parts: Iterable[bytes]) -> None:
    for part in parts:
        ofile.write(part)
#

depending on how often you need that functionality, it may make things either better, or worse, or just different

#

these aren't methods

#

just functions

#

though, yes, those aren't compatible with the progress bar

#

so idk

#

you can store two version of a function/method/class in one branch, as two separate implementations of a single interface (or multiple interfaces)
with the ability to switch and compare without checking out a branch

#

interfaces
flags, configurations, etc.

#

not git

#

just OOP

vocal basin
covert flame
#

can someone troubleshoot this for me its a auto type number program but i cant seem to figure it out

#

TypeWords:Loop{SendInput 1{Enter}Sleep 1100}
return

F9::Pause, Toggle return

lethal bloom
#

sorry but can anyone help me? ;-;
I just got the XMrig Miner virus and I discovered it in the file C:/ProgramData/Dllhost/dllhost.exe. however when I open the local file it doesn't open at all, and it seems to have blocked me from seeing the file. how should i do it ;-;