#voice-chat-text-0

1 messages · Page 408 of 1

spiral basalt
#

@somber heathHey i just did a quick google and it said apparenly can't be done in javascript, am i mistakeen ?

karmic zodiac
#

There is also a bubble sort algorithm, that's why I asked and I'm learning.

somber heath
quartz beacon
somber heath
spiral basalt
#

ok so can it be done in python ?

whole bear
#

@chilly wolf where I can find it for download ?

chilly wolf
spiral basalt
#

@somber heath here is a dumb question, can i do it in python and perhaps make it an executable app? so i don't need to install a python server ?

quartz beacon
karmic zodiac
# somber heath Do I get to see `arr` in situ at all, or....?

def bubble_sort(arr):
n = len(arr)

for i in range(n):
   
    for j in range(0, n-i-1):
      
        if arr[j] > arr[j+1]:
            arr[j], arr[j+1] = arr[j+1], arr[j]
            
return arr

dizi = [64, 34, 25, 12, 22, 11, 90]
print("Sırasız dizi:", dizi)

sıralı_dizi = bubble_sort(dizi)
print("Sıralı dizi:", sıralı_dizi)

somber heath
#

Packing Python modules into exe launchers is inadvisable.

whole bear
chilly wolf
chilly wolf
chilly wolf
#

Thank you!

karmic zodiac
#

I am Turkish and there are some Turkish notes as well, I hope you don't mind.

quartz beacon
spiral basalt
#

@chilly wolf ok i definitely don't want to pay for something i have no idea how to do, any other recommendations

somber heath
quartz beacon
whole bear
#

bro is just a way to be friendly ! chill bros

somber heath
#

and this is crazy

#

"Not only do you kill my dog, you anti my fucking joke?"

karmic zodiac
#

Can you give me a complete eucoding topic? It would be nice if there was a starting style.

urban abyss
short owl
#

whats a good sprite creation program ?

flat hornet
#

hello

#

what language is that

#

@somber heath thats deep

#

@chilly wolf your game changed so much

#

there even enemies and music

chilly wolf
#

Yah!

#

and the sword GLOWS

flat hornet
#

it does?

#

oh shit it does

#

hahaha

chilly wolf
flat hornet
#

whats that

#

ok

#

also

#

or does kleay sounds different

#

i feel like ive heard him speak before but he sounds different now

#

i think

#

for only 4.99

#

ahh

#

so thats the trick

#

damn

#

bro entered then left

#

@primal shadow are you playing hell let loose?

#

im confused

#

ah

#

chaos

#

i can see that

#

what

primal shadow
woeful kettle
#

Luckily I was the Warrior with decent boons

flat hornet
#

imma go eat

#

see yall later

mellow bramble
#

desmult

#

desmult

chrome pewter
dry parrot
#

that great

chrome pewter
#

I was just showing application of CAD

dry parrot
#

ohhhh sorry

chrome pewter
dry parrot
chrome pewter
#

what kind of application you want to build?

dry parrot
#

okay but could you just send me your github if you can please

chrome pewter
#

I could show you some of my work

dry parrot
#

okay

wind raptor
#

!stream 263551503082455050 1h

wise cargoBOT
#

✅ @unreal thicket can now stream until <t:1739043917:f>.

wind raptor
#

@fresh shell Stop leaving and joining

fresh shell
wind raptor
#

Trolling is not allowed here. If you do it again, you will be removed.

fresh shell
#

let's make internet 2.0

#

using bluetooth

wind raptor
#

Trolling in any way...

vocal basin
#

@soft axle

#

if on desktop

#

on mobile -- no you can't

fresh shell
wind raptor
#

let's make internet 2.0
using bluetooth

would be considered trolling

wind raptor
#

yup

fresh shell
vocal basin
#

if I do need to write something down, it's often in Outline

charred rapids
#

Hey, how you are able to store everything in your brain @chilly wolf :

vocal basin
#

if it's related to some project, then just directly store .md in Git

vocal basin
#

potentially rendered with mdbook

charred rapids
vocal basin
#

@unreal thicket lateKH

chilly wolf
vocal basin
charred rapids
vocal basin
#

you can message @rapid crown to appeal the voice mute

vocal basin
whole bear
#

I luv u all!

chilly wolf
#

@faint raven What error are you getting?

vocal basin
#

@soft axle just use Docker

#

that way you can just recreate the whole thing at any point without breaking everything

#

@soft axle you need to select the interpreter in VSC

#

yes, it does have its own thing

#

bottom right

#

also
ctrl+shift+P -> select interpreter

soft axle
#

well setting up the anaconda is a HW

#

so :/

vocal basin
#

pip freeze

#

so you can then re-install easily

#

426 mentioned

vocal basin
wind raptor
#

!stream 266030641382948865 30M

wise cargoBOT
#

✅ @faint raven can now stream until <t:1739046108:f>.

unique wyvern
wind raptor
#

Who is asking for help?

faint raven
whole bear
#

@wind raptor unmute me

#

hey alias

#

wsp

vocal basin
#

@whole bear if you wish to appeal the mute, you may contact @rapid crown

#

it's easier just to wait it out

whole bear
#

😘 bet

radiant iron
#

@nova stream heya

nova stream
radiant iron
#

nice to see ya aswelll

main comet
main comet
woeful kettle
#
    predamage = ((((2*level*crit) * power * (Att // Def)) //50)+2)
    if attacker_type in movetypes:
        predamage_with_STAB = predamage * 1.5
    else:
        predamage_with_STAB = predamage * 1
    predamage_with_STAB_postTyping = predamage_with_STAB
    for mtypes in movetypes:
        if mtypes in typc.poketypes_dict[defender_type]["Super Effective"]:
            predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 2
        elif mtypes in typc.poketypes_dict[defender_type]["Normal"]:
            predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 1
        elif mtypes in typc.poketypes_dict[defender_type]["Not very effective"]:
            predamage_with_STAB_postTyping = predamage_with_STAB_postTyping // 2
        elif mtypes in typc.poketypes_dict[defender_type]["No effect"]:
            predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 0
        else:
            predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 1

    if predamage_with_STAB_postTyping == 1:
        damage = predamage_with_STAB_postTyping * 1
    else:
        damage = predamage_with_STAB_postTyping * (rand.randrange(217, 256, 1) / 255)

    print(int(damage))
    return int(damage)

for i in range(10):
    damage_calc(10, 1, 40, 180, 170, ["Fighting"], "Normal", "Normal")```
#

34
34
35
31
33
35
32
32
31
32

#

53
48
46
49
47
48
47
49
45
51

main comet
quartz beacon
main comet
main comet
#

@unique wyvern

radiant iron
#

trh4twjhw65hret

main comet
radiant iron
#

@unique wyvern

#

woooooow

main comet
chilly wolf
#

pytmx

#

Tiled

woeful kettle
#
                             "Normal": ["Fire", "Water", "Electric", "Grass", "Ice", "Poison", "Ground", "Flying", "Psychic", "Bug", "Rock", "Dragon", "Dark", "Steel", "Fairy"],
                             "Not very effective": ["None"],
                             "No effect": ["Ghost"]},
                    "Fire": {"Super Effective": ["Water", "Ground", "Rock"],
                             "Normal": ["Electric", "Fighting", "Poison", "Flying", "Psychic", "Ghost", "Dragon", "Dark"],
                             "Not very effective": ["Fire", "Grass", "Ice", "Bug", "Steel", "Fairy"],
                             "No effect": ["None"]}           
                             }


def damage_calc(level, crit, power, Att, Def, movetypes, attacker_type, defender_type):
    predamage = ((((2*level*crit) * power * (Att / Def)) /50)+2)
    if attacker_type in movetypes:
        predamage_with_STAB = predamage * 1.5
    else:
        predamage_with_STAB = predamage * 1
    predamage_with_STAB_postTyping = predamage_with_STAB
    for mtypes in movetypes:
        for ptype in defender_type:
            if mtypes in typc.poketypes_dict[ptype]["Super Effective"]:
                predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 2
            elif mtypes in typc.poketypes_dict[ptype]["Normal"]:
                predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 1
            elif mtypes in typc.poketypes_dict[ptype]["Not very effective"]:
                predamage_with_STAB_postTyping = predamage_with_STAB_postTyping // 2
            elif mtypes in typc.poketypes_dict[ptype]["No effect"]:
                predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 0
            else:
                predamage_with_STAB_postTyping = predamage_with_STAB_postTyping * 1

    if predamage_with_STAB_postTyping == 1:
        damage = predamage_with_STAB_postTyping * 1
    else:
        damage = predamage_with_STAB_postTyping * (rand.randrange(217, 256, 1) / 255)

    return int(damage)

for i in range(10):
    print(int(damage_calc(10, 1, 40, 180, 170, ["Fighting", "Water"], ["Fighting"], ["Normal", "Fire"])))```
unique wyvern
#
from enum import Enum, auto

class PokeTypes(Enum):
    FIRE = auto()
    WATER = auto()
    ELECTRIC = auto()
    ...

whole bear
#

@chilly wolf AMAZING

unique wyvern
#
from enum import Enum, auto
from typing import TypedDict

class Effectiveness(Enum):
    Normal = auto()
    SuperEffective = auto()
    ...

type PokeDict = dict[Effectiveness, dict[Effectiveness, PokeType]]
#
from typing import Literal

PokeType = Literal["fire", "water", "electric"]
stuck furnace
#

Well like, we can't perceive a difference between an equal mixture of red and green light, and light with a "yellow" wavelength. If our eyes worked differently, we might be able to distinguish them.

stuck furnace
#

Ah but colour is perceptual, not physical

#

A colour is just the label our brains apply to a certain stimulus.

chilly wolf
woeful kettle
#

!e list = ["test", "Foo", "Bar"]

print(len(list))

wise cargoBOT
stuck furnace
#

It's actually a pretty nice language, or so I've heard

#

It does reference counting

#

So, I guess like Python if you turned off the GC

#

Cya

#

Oh, I was saying that to the other guy 😄

#

Yeah

#

Although I do need to go now actually so cya 👋

spiral basalt
#

how is everyone tonight

#

whats everyone up to?

somber heath
#

@split hatch 👋

tacit crane
unreal thunder
tacit crane
somber heath
#

Also, typing would be annoying.

peak depot
tacit crane
tacit crane
primal shadow
somber heath
#

@halcyon perch 👋

somber heath
somber heath
#

@summer swan 👋

tacit crane
#

@router.get("/")
async def home_page(request: Request):
    with open('home.html', 'r') as f:
        html = f.read()
    return HTMLResponse(content=html)```
jovial iris
#

@wise loom its okay

wind raptor
#

Yes, I do software development.

#

Sounds like a lot of work

#

Do you have a team @rapid jungle?

#

Sorry, I don't really have the time to contribute to that.

#

Nor does the idea resonate with me

#

Aren't there other open-source CAD-like programs?

wise loom
#

openscad for example

#

kicad

wind raptor
#

FreeCAD looks like another

wise loom
#

librecad for floorplans

#

qcad

#

nanocad

#

brl-cad

#

there's so many

wind raptor
#

Why not just contribute to your favourite one of these if you want a feature that doesn't exist?

#

@rapid jungle

hollow torrent
#

yooo

vocal basin
#

still working on the visual thing

#

most of the time it's on per-request basis

#

lmao

#

that's highest timestamp that's displayable in my timezone without showing invalid date

#

I think it depends on the timezone

#

some people have said before that it's showing as invalid date

#

<t:8639998952399:R>
<t:8640000000000:R>
<t:8640000000001:R>

#

oh wait

#

it's no longer showing an error

#

seems like they changed how it renders

#

it's now a round number of days from the epoch

#

100 million days, to be precise

#

used to be off by 12 days (idk why) and 3 hours (because timezone)

sleek salmon
#

the silent conversation

vocal basin
#

!stream 864591592026144776

wise cargoBOT
#

✅ @woeful kettle can now stream until <t:1739141750:f>.

vocal basin
#

!e

print(["00"] + list(map(str, range(37))))
wise cargoBOT
# vocal basin !e ```py print(["00"] + list(map(str, range(37)))) ```

:white_check_mark: Your 3.12 eval job has completed with return code 0.

['00', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']
sleek salmon
vocal basin
#

though a bit less trivially

#

!e

print(", ".join(f"0x{i:02x}" for i in range(256)))
wise cargoBOT
# vocal basin !e ```py print(", ".join(f"0x{i:02x}" for i in range(256))) ```

:white_check_mark: Your 3.12 eval job has completed with return code 0.

0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6
... (truncated - too long)

Full output: https://paste.pythondiscord.com/XFLDPI6YGUWIDR3V7KEBZ7WBUA

vocal basin
#

temporal aspect isn't entirely relevant for code clarity;
if it's not clean, it's only a matter of seconds before you lose context

woeful kettle
#

!e print(list(map(str, range(1, 37, 2)))

wise cargoBOT
woeful kettle
#

!e print(list(map(str, range(1, 37, 2))))

wise cargoBOT
woeful kettle
#

!e print(list(map(str, range(2, 37, 2))))

wise cargoBOT
vocal basin
#

!e

print(list(map(str, range(1, 11, 2))) + list(map(str, range(10, 37, 2))))
print(list(map(str, range(2, 11, 2))) + list(map(str, range(11, 37, 2))))
wise cargoBOT
vocal basin
#

eh

#

I was lied to by the internet

#

ah, there's four ranges not two

#

!e

a = range(1, 11)
b = range(11, 19)
c = range(19, 29)
d = range(29, 37)
print([*a[::2], *b[1::2], *c[::2], *d[1::2]])
print([*a[1::2], *b[::2], *c[1::2], *d[::2]])
wise cargoBOT
vocal basin
#

!e

a = [*range(1, 11), *range(19, 29)] + [*range(11, 19), *range(29, 37)][::-1]
print(sorted(a[::2]))
print(sorted(a[1::2]))
wise cargoBOT
vocal basin
#

yeah, muting drops the stream

willow light
#

Time to carefully ignore my neighbors for the next several hours ig

woeful kettle
#

powerful

willow light
#

something about a sportsball event

vocal basin
#

brb
(back in ~10 minutes)

vocal basin
#

time estimate failed, I remembered that I need to eat

normal geyser
#

`def add(x, y):
return x + y

def subtract(x, y):
return x - y

def multiply (x, y):
return x * y

def divide(x, y):
return x / y
print("Select Operation")
print("1.Addition")
print("2.Subtract")
print("3.Multipy")
print("4.Divide")
while True:
choice = input("Enter your choice (1/2/3/4): ")
if choice in ('1', '2', '3', '4'):
number1 = float(input("Enter first number: "))
number2 = float(input("Enter second number: "))
if choice == "1":
print(number1, "+", number2, "=", add(number1, number2))
elif choice == "2":
print(number1, "-", number2, "=", subtract(number1, number2))
elif choice == "3":
print(number1, "*", number2, "=", multiply(number1, number2))
elif choice == "4":
if number2 == 0:
print ("ERROR. Cannot Divide By 0")
else:
print(number1, "/", number2, "=", divide(number1, number2))

    next_calculation = input("Would you like to do another calculation? (Y/N): ")
    if next_calculation == "N":
       print("OK Goodbye!")
       break
    

    if next_calculation == "Y":
       print ("OK, Continue with Calculations")

    else:
        print("Invalid Input, Please choose again.")
        print("Would you like to do another calculation? (Y/)N)")

`

vocal basin
#

another while True around the Y/N

#

and continue on Y

vocal basin
#

idk if I want to publish the whole source code or just pre-built wasm files

#

not really worth putting on a separate CNAME'd domain

somber heath
#

!e py 1/0

wise cargoBOT
# somber heath !e ```py 1/0```

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     1/0
004 |     ~^~
005 | ZeroDivisionError: division by zero
somber heath
#

!e py try: print(1/2) except ZeroDivisionError: print('Caught.')

wise cargoBOT
somber heath
#

!e py try: print(1/0) except ZeroDivisionError: print('Caught.')

wise cargoBOT
somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

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.

For long code samples, you can use our pastebin.

sweet saffron
#
# Ask the user for a number
day_number = int(input("Enter a number between 1 and 7: "))
# Display all of the days
days = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
# Find the day and make sure the user entered a number between 1 and 7
if 1 <= day_number <= 7:
    print(days[day_number - 1])
else:
    print("Error: Please enter a number between 1 and 7.")
somber heath
#

!e py print('abc'[0]) print('abc'[1]) print('abc'[2]) print('abc'[-1]) print('abc'[-2]) print('abc'[-3])

wise cargoBOT
somber heath
#

!e py 'abc'[3]

wise cargoBOT
# somber heath !e ```py 'abc'[3]```

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     'abc'[3]
004 |     ~~~~~^^^
005 | IndexError: string index out of range
somber heath
#

!e py int('abc')

wise cargoBOT
# somber heath !e ```py int('abc')```

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     int('abc')
004 | ValueError: invalid literal for int() with base 10: 'abc'
somber heath
#

!e py var = 'M*A*S*H' print(var) var = var.split('*') print(var)

wise cargoBOT
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 as a single delimiter (to split with multiple delimiters, use [`re.split()`](https://docs.python.org/3/library/re.html#re.split)). Splitting an empty string with a specified separator returns `['']`.

For example:
somber heath
#

!e py text = '''Apples pears and bananas.''' result = text.split() print(text) print(result)

wise cargoBOT
sweet saffron
#
usersdate = input ("Enter a date in the following format 00/00/0000: ")
somber heath
#

snake_case

#

input(...)

#

@cursive totem 👋

sweet saffron
#
users_date = input("Enter a date in the following format 00/00/00: ")
day = 10
month = 6
year = 60
somber heath
#

'10/06/60'

sweet saffron
#

month = int(month)
day = int(day)
year = int(year)

somber heath
#

!e py var = '10/06/60'.split('/') print(var)

wise cargoBOT
sweet saffron
#

users_date = input("Enter a date in the following format 00/00/00: ")
var = '10/06/60'.split('/')
print(var)
month, days, years = ['10', '06', '60']

wise cargoBOT
#

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 32, in <module>
003 |     MAP = dfs_maze_generation(1, 1, MAP, MAP_WIDTH, MAP_HEIGHT)
004 |                                     ^^^
005 | NameError: name 'MAP' is not defined. Did you mean: 'map'?
#

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     MAP = [[1 for _ in range(MAP_WIDTH)] for _ in range(MAP_HEIGHT)]
004 |                                                         ^^^^^^^^^^
005 | NameError: name 'MAP_HEIGHT' is not defined
chilly wolf
#

OK one more try

wise cargoBOT
#

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     MAP = [[1 for _ in range(MAP_WIDTH)] for _ in range(MAP_HEIGHT)]
004 |                                                         ^^^^^^^^^^
005 | NameError: name 'MAP_HEIGHT' is not defined
#

:x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 33, in <module>
003 |     MAP = dfs_maze_generation(1, 1, MAP, MAP_WIDTH, MAP_HEIGHT)
004 |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
005 |   File "/home/main.py", line 28, in dfs_maze_generation
006 |     start_x, start_y = random.choice([(x, y) for x in range(1, MAP_WIDTH, 2) for y in range(1, MAP_HEIGHT, 2)])
007 |                        ^^^^^^
008 | NameError: name 'random' is not defined. Did you forget to import 'random'?
chilly wolf
#

!e

import random
MAP_WIDTH, MAP_HEIGHT = 21, 21
MAP = [[1 for _ in range(MAP_WIDTH)] for _ in range(MAP_HEIGHT)]
def dfs_maze_generation(x, y, MAP, MAP_WIDTH, MAP_HEIGHT):
    # Initialize the maze with walls (1's)
    MAP = [[1 for _ in range(MAP_WIDTH)] for _ in range(MAP_HEIGHT)]
    
    # Function to carve out the maze paths
    def carve(x, y):
        # Mark the current cell as a path
        MAP[y][x] = 0
        # Define potential directions to carve
        directions = [(1, 0), (-1, 0), (0, 1), (0, -1)]
        random.shuffle(directions)  # Shuffle directions for randomness
        
        for dx, dy in directions:
            # Calculate the next cell coordinates
            nx, ny = x + dx * 2, y + dy * 2
            # Calculate the coordinates of the wall between current and next cell
            wall_x, wall_y = x + dx, y + dy
            # Check if the next cell is within bounds and has not been visited
            if 0 <= nx < MAP_WIDTH and 0 <= ny < MAP_HEIGHT and MAP[ny][nx] == 1:
                # Remove the wall between the current cell and the next cell
                MAP[wall_y][wall_x] = 0
                # Recursively carve from the next cell
                carve(nx, ny)
    
    # Choose a random starting position on the grid within the valid range
    start_x, start_y = random.choice([(x, y) for x in range(1, MAP_WIDTH, 2) for y in range(1, MAP_HEIGHT, 2)])
    carve(start_x, start_y)
    
    return MAP
# Generate the maze starting from the cell (1, 1)
MAP = dfs_maze_generation(1, 1, MAP, MAP_WIDTH, MAP_HEIGHT)
print(MAP)```
wise cargoBOT
# chilly wolf !e ```py import random MAP_WIDTH, MAP_HEIGHT = 21, 21 MAP = [[1 for _ in range(M...

:white_check_mark: Your 3.12 eval job has completed with return code 0.

[[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1], [1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1], [1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], [1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 0, 0, 0, 0, 0, 1, 0,
... (truncated - too long)

Full output: https://paste.pythondiscord.com/SSU6VFYWDWEYS7RUYD7QH4B5CI

spare galleon
vocal basin
#

@somber heath I think this one is the best result so far:

#

0 post-processing

#

it is very much a matter of catching the right moment to screenshot it, because only seconds later the details disappeared:

#

need to also save the whole source code

#

which I do for the non-WASM version

peak depot
twin python
#

power metal

#

what's opal talkin about

#

clan of dragons

#

google is mid

vocal basin
#

6 billion iterations

#

the archive of this getting generated is taking up 136GB

twin python
#

you should play valo lol they think they're cooked just bc there's a girl in team\

#

😂

vocal basin
#

discord almost crashed trying to send this

somber heath
#

@astral bluff 👋

astral bluff
twin python
#

are there any games where you play as a cat?

vocal basin
#

Stray?

twin python
#

or an animal

twin python
#

i think there is

#

i played one called water

#

it's based of nemo

#

you're a fish

chilly wolf
twin python
#

never expected tht

#

not in a million years

wind raptor
peak depot
#

USE TO PLAY IT SO MUCH!

twin python
#

his accent'

somber heath
#

@deep grove 👋

vocal basin
#

very slow

twin python
#

i should prolly focuss on my lessons rather than being a keyboard warrior

chilly wolf
twin python
#

@rapid jungle you're audible it's just he doesn't understand the accent

twin python
#

4th spear looks like a toothbrush

#

make it spiky

vocal basin
chilly wolf
vocal basin
#

138G at the time it was stopped

tacit crane
vocal basin
#

I remember one where such episode had critical plot importance
(as such I won't spoiler it)

#

I should coerce Hemlock into watching it without any more context whatsoever

#

as I said, no further context

#

okay, I really should restart firefox soon, the pagefile has reached 58GB

#

happy browser life

wide grail
#

hello

#

who can help pls

somber heath
#

Without an understanding of the problem at hand?

wide grail
#

whats wrong

vocal basin
# wide grail

your second line of code got interpreted as user input instead

#

you need to either use a proper script file or interleave inputting code and values

#

!e

float('num2 = input("Введите второе число: ")')
wise cargoBOT
vocal basin
#

^ this is what happens

wide grail
#

oh

#

i caught

vocal basin
#

@chilly wolf be careful with licensing the assets if they're external, might need to be credited in some very specific form and/or distributed separately

chilly wolf
#

I think the asset packs I downloaded only require proper credits

wide grail
#

but i think the problem is in the float(num1)

#

but wth

#

this code must work perfect cause i copied it from browser

vocal basin
wide grail
#

okay

vocal basin
#

red -- code
green -- program output
blue -- user input

#

just to demonstrate what happens in such cases

dreamy mantle
vocal basin
#

now you can see why I bought a CPU with 256GB RAM support

#

I doubt there is any meaningful context to this

rugged root
#

@dreamy mantle I only just now realized your profile picture is from Stardew Valley

#

@woven lichen Yo

vocal basin
#

slight memory usage drop

woven lichen
#

supp@rugged root

vocal basin
#

pagefile back to only 21GB

tacit crane
dreamy mantle
#

Quack

rugged root
#

@dreamy mantle You can stay here, it's fine

dreamy mantle
#

Hello

vocal basin
#

@dreamy mantle please refrain from overusing derogatory terms

sleek salmon
#

i thought i was gonna be the one warned 😆

vocal basin
#

@rugged root wasn't Spain under Arab control for a while?

#

like millenia ago

woeful kettle
vocal basin
#

!e

print(1492 - 711)
print(2025 - 1492)
wise cargoBOT
sleek salmon
#

😆

#

@dreamy mantle mic off

rugged root
#

@dreamy mantle Scooted you to AFK since we were hearing you talking with the other person in the background fairly clearly

sleek salmon
#

fall guy aint caring about none

vocal basin
# vocal basin

also high concentration of another ethnicity because that government was friendlier to them

sleek salmon
#

wdym

#

spainiards are usually mixed

rugged root
#

Aren't we all

sour willow
#

sup hem and af

sleek salmon
#

not me i guess

sour willow
#

irani hasti?

sleek salmon
#

egyptian

sour willow
#

ah

vocal basin
#

@upper basin depth is symmetric

sleek salmon
#

@upper basin indian?

vocal basin
#

@rugged root
- did you test it on your machine before deploying?
- yes
- did it work?
- no
the "it didn't work on my machine"

#

should be latest or stable, to be clearer about the meaning

upper basin
charred rapids
#

I am indian

vocal basin
#

0.0.1
0.1
1

upper basin
#

We play Tetris, they live it.

vocal basin
#

Japan has more people than Russia, right?

#

not yet

#

almost there

upper basin
#

I see

#

Icy

chilly wolf
vocal basin
#

@chilly wolf "no, Hemlock only works with [jif]s not [ghif]s"

#

"bring your own assets" game

sweet lodge
vocal basin
#

no, a bit less

sweet lodge
#

Isn't there a....

#

You know

vocal basin
#

see curve above

sweet lodge
#

Pretty massive size difference?

vocal basin
#

yes there is

sweet lodge
#

It also surprises me how much land in countries is just uninhabited

chilly wolf
vocal basin
#

back from doing vocal experiments

rugged root
#

Experiments?

upper basin
vocal basin
#

I haven't actually heard my voice layered that often before;
and for extreme vocals it's actually more normal than doing it single-layer like I usually do

upper basin
sweet lodge
#

I'm good thanks

#

I'll stick with backend

upper basin
#

Game dev backend is fun.

#

That's the part I like.

#

Like defining game logic.

rugged root
#

I hate making maps

#

Hate hate hate

upper basin
#

Though its the animation, maps, textures, and story that make it enjoyable.

#

The code just brings them together.

vocal basin
#

I didn't bother aligning them properly

rugged root
#

Sounds like you need a lozenge

vocal basin
#

I still can't get very low notes easily

sleek salmon
#

butt suit

#

butt suit

#

butt sword

#

buttsu

#

are you guys talking about beautiful soup?

charred rapids
#

lmao

#

bruh

#

roasted

#

bruh

#

xd

#

xd

upper basin
#

Who was asking for web scraping?

charred rapids
#

xd

vocal basin
#

I think

sleek salmon
#

butt soup

nimble kernel
#

What is butt soup

upper basin
#

crawl4ai

sleek salmon
#

i think he means beautiful suop

rugged root
vocal basin
#

@rugged root " 'I missed who is asking' is a very polite form of 'who asked' "

#

lmao

sleek salmon
#

mr hemlock is a classic gentleman

#

kick ass videos

#

😆

charred rapids
#

xd

#

bruh

#

xd

upper basin
#

I'll high five you.

sleek salmon
#

damn a lot of silent people

sleek salmon
#

and i am straight to the bottom

upper basin
#

I roll a nat 20 and dodge your high five. Now you look silly. DM can we get him a -5 on charisma?

sleek salmon
#

lets see this

nimble kernel
#

really wanted to be a top huh

sleek salmon
#

to the top noobs

upper basin
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

warm atlas
#

Get the latest KFC menu prices, deal offers & exclusive KFC products. Sign up for offers & order KFC online now!

sleek salmon
#

ip grabber

sweet lodge
nimble kernel
#

Anyone sleepy?

sleek salmon
#

crazygamer

upper basin
nimble kernel
#

Well yes

charred rapids
#

i wanna get unmutted 😦

sleek salmon
#

idk if its the dialect or him

upper basin
#

Doggo, could I get some review on the repo when you get a chance?

nimble kernel
sleek salmon
#

yeah

#

it just says جاكيت

upper basin
#

I'm gonna head to bed.

sweet lodge
#

night

upper basin
#

Cya guys later.

nimble kernel
#

Yea so it means Jacket

upper basin
#

Thank ye.

sleek salmon
#

arabs dont use a and an

#

so just jacked

#

jacket

nimble kernel
#

ت would sound like t

#

ت

sleek salmon
#

yeah

#

jacket is pronounced jacket in arabic

#

some say jacketta

nimble kernel
#

Cool

#

عمار

sleek salmon
#

north african?

sweet lodge
#

@rugged root did I pick up "stop dying it's bad for you" from you?

rugged root
#

You did indeed

sweet lodge
#

I couldn't remember where I got it from

#

I just realized

rugged root
#

I would assume you get it from me, anyway

peak depot
gentle flint
vocal basin
sleek salmon
#

no alisa

#

if you want to meditate right

#

fast for a day

#

no food no water

#

and sit there and do nothing

#

youll figure out that you arent real

vocal basin
#

@sleek salmon no, you're wrong, its content is controlled by users

rugged root
#

I read that as deserialization

#

And was disappointed

vocal basin
sleek salmon
#

damn

#

all power to you girl

vocal basin
#

I know what it is to avoid food and water and feel unreal

#

those are symptoms of a mental illness, consulting a doctor is recommended

sleek salmon
#

lmao

#

i am just messing with you guys

#

😆

rugged root
#

It just became irritating enough that I really had to hop channels

sleek salmon
#

i am trying to practice english by starting subjects

#

yeah talking for the sake of talking feels akward sometimes

#

i think i am just so good at pretending

vocal basin
sleek salmon
#

you can hear me laughing i think but i held back 😆

vocal basin
#

there do exist people who seriously believe what you were describing

#

trolling or not, it deserves pushback

sleek salmon
#

i am not trolling i just want to practice english by starting convos

vocal basin
sleek salmon
#

i mean i mean no harm 😆

vocal basin
#

after a certain threshold, it no longer falls under "just joking" category;
people leaving and/or telling you to shut up is a good indicator of being way past that threshold

sleek salmon
#

lol yeah i see how akward this can get

vocal basin
#

a phrase

sweet lodge
#

It’s just a phrase he says a lot
I started saying it myself and I couldn’t remember where I first heard it

timid iris
vocal basin
#

@rugged root would these ones already be brain roombas

rugged root
#

!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 Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

rugged root
#

@whole bear

vocal basin
#

@rugged root you're supposed to be impressed not reading

sweet lodge
#

Use the pastebin

vocal basin
sweet lodge
#

@calm smelt if you're looking for a quick and dirty way to generate a web service, Ruby on Rails will generate HTML views for you, so you can get a website off the ground with practically no manual coding
Check out https://guides.rubyonrails.org/getting_started.html
It's not very pretty, but it gets the job done quickly

#

Whoever is getting spam pinged is giving me anxiety

whole bear
sweet lodge
#

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

whole bear
#

yes

sweet lodge
#

Are you behind a proxy?

whole bear
#

?

#

idk

#

i think not

sweet lodge
#

We'll have to figure out why you're being blocked from PyPI

old temple
#

hi everyone. i'm new on discord. if i'm here it's because i'm looking for enthusiasts for a python project.

unreal thicket
#

🚀 Meta Reality Labs unveils "AEO" - a groundbreaking egocentric dataset capturing real-world interactions through Project Aria glasses.

🔍 What makes it special:
✅ 143 sequences of daily activities
✅ 5 diverse indoor locations
✅ First-person view of cooking, exercise & social interactions
✅ Comprehensive multimodal data for AR development

This ...

old temple
# whole bear What exactly?

I am a French speaker so excuse my English. The goal of the project is to create a gaming environment where users (players) create their character and upload it to the game. The character must be able to manage alone once in the game. Of course it will be up to us to provide the necessary tools for the creation and programming of the character. Several users can therefore make their character face off to find out who is the best.

vocal basin
old temple
ebon mist
tacit crane
#

@wind raptor

cold stirrup
#

hello

obtuse viper
#

hi

#

wsp

#

it was on purpose to make it hard to pronounc elol

#

what yall doin bruv?

#

just say hh or smthn idk 💀

#

yep

#

new asf

#

nah 2 days ago or smthn

#

i got 50 msgs

#

and all that

#

just gotta wait another day

#

to get mic access

#

ic

#

me still trying to figure out whats goin on 👁️ 👄 👁️

#

i finna dip then

#

byz

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @simple flume until <t:1739217312:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).

The <@&831776746206265384> have been alerted for review.

vocal basin
#

it took a bit longer than usual to connect to VC

vocal basin
#

idk what else to change there

#

maybe just optimisations now

#

can't push wasm version past 512x512

#

high resolution is only in the native version

#

I should temporarily turn off the rainbow

spare galleon
#

my game is less cool even @chilly wolf however it is a puzzle game, lol not using tiled

#

im okay

#

i saw

#

ive been slowly following along with the build for the past couple of days

#

lol make a cli?

shell crown
#

Yoo can someone help me with flask question?

primal shadow
#

What is happening?

somber heath
#

👋 @oak sun

oak sun
#

Hi

#

No vc perms yet

#

💔

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.

oak sun
#

Ik

#

I need to met the requirements

flat hornet
#

hello

#

what yall up to tonight

#

@soft axle whats that sounds

#

sound

somber heath
#

@agile yacht👋

agile yacht
#

yo

#

i saw the chat

#

okay so im having some issues and im trying to see of this line of code seems ai generated

hasty orbit
#

post it here?

agile yacht
#

def grade(score):

if not (0.0 <= score <= 1.0):
    return "Bad score"  
elif score >= 0.9:
    return "A"
elif score >= 0.8:
    return "B"
elif score >= 0.7:
    return "C"
elif score >= 0.6:
    return "D"
else:
    return "F"

user_input = input("Enter score: ")

try:
user_score = float(user_input)
print(grade(user_score))
except ValueError:
print("Bad score")

somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

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.

For long code samples, you can use our pastebin.

agile yacht
#

it seems human right ??

hasty orbit
agile yacht
#

alr bro

#

i used ai

#

yea

#

lol

hasty orbit
#

so it is ai generated lmfao

agile yacht
#

yea lmao

#

yea i totally get you but im super late on my assignment im just trynna push it out so it doesnt go late

#

wifi went out bro

#

look i wasnt trynna come across that way i had my wifi card act up for a few days and i was just trynna see if it looked natural and what i could do to improve it

#

sorry it cut out again lol

hasty orbit
#

breakdown of what the code does @agile yacht:

creates a function called grade which takes a variable called score as an argument.
asks for a user input for the score
attempts to turn the user's input into a float type
the grade function is called, using the float variable as the argument
prints the output of the function, showing the returned string depending on the value of the float (determined by the if statements). if the value can't be turned into a float and the try operation fails, the ValueError exception will be raised and "Bad score" will be printed

agile yacht
#

thanks bro

#

🙏

hasty orbit
#

yw

#

i'd edit the "bad score" to "invalid input" tho tbh

agile yacht
#

yea

hasty orbit
#

because the code expects/assumes that the users input is gonna be within a certain range and is an integer that will be converted to a float

agile yacht
#

genuinely means alot i was scratching my head trynna figure this out

#

why is bro giving a sob story lmao

hasty orbit
#

but if you don't really care about learning python and you just wanna pass your assignment, you got your answer i think haha

agile yacht
#

yea preciate it fr

hasty orbit
#

this lee guy legit knows nothing about code and yaps non-stop tho. i wouldn't take anything he says as having any value. just a heads up

agile yacht
#

this class is cool but the prof is just kinda shit at explaining stuff sometimes but i think i got it now

agile yacht
#

i had to mute cuz he was on a yap marathon

hasty orbit
#

honestly i wouldn't try to learn how to code by fixing the code AI spits out. it really is better to understand it from the ground up

hasty orbit
hasty orbit
#

lmfao what are you talking about

#

no more meth for you

calm smelt
hasty orbit
#

he's not voice verified...

calm smelt
hasty orbit
#

lmfao. could've fooled me

agile yacht
calm smelt
hasty orbit
#

i'm not bullying man, i'm stating facts that you never seem to grasp

somber heath
#

Gentlemen, let's dial it down a notch.

calm smelt
hasty orbit
#

i'm sorry opal but this lee guy comes in here on the regular and literally just talks constantly but says absolutely nothing

calm smelt
soft axle
calm smelt
somber heath
#

Disengagement is an option available to everyone.

hasty orbit
#

@soft axle idk man. idk if i've seen you before personally. but lee literally just uses buzzwords without knowing what they mean and expects other people to do all his bidding and pander to his idea of greatness but nothing he says is revolutionary or fruitful in any way

calm smelt
hasty orbit
#

also @soft axle it says a lot that you're voice verified but you're active and muted rn

calm smelt
hasty orbit
agile yacht
#

@calm smelt not trynna be mean or anything but there is public servers u can join that aren't coding related

#

i can send u links in dms if thats allowed here

hasty orbit
#

it is. but only in dm (i believe)

agile yacht
#

it may be considered advertising tho

#

idk

calm smelt
hasty orbit
hasty orbit
vocal basin
#

"problem leads to this other problem" reminded of this meme, the JS part specifically

lethal ether
#

imagine java 🐒

vocal basin
#

!warn 816880243452805140 being so overly condescending is not welcome in this community

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied warning to @calm smelt.

vocal basin
#

@calm smelt stop interrupting.
you want others to listen, they wait until you finish and only then talk.
learn to do the same.

#

@hasty orbit if not clear, they haven't said even a single idea ever that I know of

#

it's only been "idea of ..." not the content of the idea

hasty orbit
#

i've been in about 3/4 vcs with him and he has a completely different 'idea' each time. but none of them ever make any sense. it's just buzzwords or overly abstract concepts that can be simplified in a matter of a couple of relatively short sentences

hasty orbit
#

it's just buzzword babble

#

i wish i didn't have to speak up about this tbh. but it drives me crazy that people drop from the vc as soon as he starts talking for a long time about literally nothing

vocal basin
#

@calm smelt if you continue with "says who"s, I'll take that as you not respecting the warning you've just received.

hasty orbit
#

just learnt a new word!

ingratiation

vocal basin
#

I've had the Windows Terminal crash for ~30 times today already

#

I might be doing something wrong

somber heath
#

@thick pecan 👋

vocal basin
#

you need to contact them to get API access afaik

#

moderation of traffic based by content is stopped by one simple thing:
HTTPS

#

so that project plan sounds potentially dead

thick pecan
#

Też

#

Withuat

#

Telephon

#

Acctoriaction

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.

thick pecan
#

How

somber heath
thick pecan
#

This dont verifity my cuz ia hav anonymous

#

Can someone talk me how to get here anonymous

vocal basin
#

voice verification does not involve providing personal identifying information

somber heath
thick pecan
#

Someone can talk and help with. ADM

#

I desceibe

#

Hey

#

Hey

#

Why

#

Go on tolk

#

Talk

wind raptor
#

Please don't spam

#

It will result in a much longer wait

thick pecan
#

I cant

#

Number of telephon

vocal basin
#

@somber heath does AU have its own "import-replacement" for Discord/Facebook/whatever similar to how Russia has?

thick pecan
#

No russsia

#

Polska jestem z Polski

#

Im anaomyous

hasty orbit
#

hahaha

thick pecan
#

Looking inteligent

vocal basin
#

would Hemlock be able to pass language analysis check in that case pithink

thick pecan
#

I accpleint

#

But premission

#

Global ciccada

#

Thet dong accept

#

I cant Give register numer of telephon

wind raptor
#

What programming language? Do you have the code to show @thick pecan ?

vocal basin
#

telephone number only affects being able to interact at all and moderation (separately)

#

since you can type messages, you not being able to provide it does not affect it

somber heath
#

@thick pecan Please stop sending me friend requests.

thick pecan
#

But im drug Dealer an number on no my registratuoan

#

Also Engineering

somber heath
thick pecan
#

A Need Third one

#

Number to only Talking

wind raptor
thick pecan
#

A dont have third

vocal basin
#

@hasty orbit grow it rather than create it

hasty orbit
#

grow what, sorry?

vocal basin
#

old accounts are viewed as valuable even without such laws

thick pecan
#

But i want talk now

#

Nooo terrorist

#

Fuck IA

hasty orbit
#

not so much on discord though, right??

thick pecan
#

I Think i can talk with inteligwntvpeople

#

But im in Isolation

#

I can @proton.me

#

Poland

chilly wolf
#

Go to the voice verification channel and check the requirements

thick pecan
#

I cant

vocal basin
#

and 1 hour

hasty orbit
#

@thick pecan

Wymagania dotyczące weryfikacji głosowej:
⚠️ NIE WYSYŁAJ SPAMU, aby spełnić te wymagania, w przeciwnym razie zostaniesz wykluczony z weryfikacji! ⚠️

50 nieusuniętych wiadomości w kanałach innych niż kanały poleceń bota
Dołączył ponad 3 dni temu
Aktywny przez co najmniej trzy różne dziesięciominutowe bloki

Kliknij przycisk „Weryfikacja głosowa” poniżej, aby spróbować zweryfikować.

Sugerujemy udział w konwersacjach w ⁠python-discussion lub korzystanie z czatów tekstowych dla kanałów głosowych podczas słuchania, aby zwiększyć liczbę wiadomości.

Możesz użyć polecenia ​!user​ w ⁠bot-commands, aby sprawdzić, jak blisko jesteś spełnienia wymagań.

thick pecan
#

I Need admin

#

To fukck requmairents

#

Xdddd

vocal basin
#

daytime/nighttime now always associates with this

thick pecan
#

Need Mail

somber heath
thick pecan
#

I want have premiasions

hasty orbit
#

do you know python already @thick pecan or are you here to learn from scratch?

somber heath
#

Talk in text channels. That's all you need.

tidal salmon
wind raptor
#

Classic

hasty orbit
#

loool

wind raptor
#

They were so close

#

I think they were past 50 already

hasty orbit
#

they ignored all advice in text and voice

vocal basin
#

I think they ignored just everything not only all advice

#

" there's, like, one word that was a clear response, and that word was 'Russia' "

upper basin
#

@tidal salmon Would you like to join us for a bit?

upper basin
#

Just to chat.

#

So we could enjoy your company.

vocal basin
#

@wind raptor you can do the opposite

#

there's now an "ignore" option

thick pecan
#

Im HDL AND ASSEMBLY

#

Sci

#

I dont like rusians

#

Im polish

#

I know HDL ASSEBLER PYTHON AND ARCHITEKTURA

#

ESPAÑOLES ENGLISH

#

POLISH

vocal basin
thick pecan
#

Need confirm my specations

#

Sepculations

#

Cyberneticas

#

Radios

#

Analog Technologies

thick pecan
#

Whant talk in englisch

#

Cicada 303

vocal basin
#

did you mean 3301?

thick pecan
#

Never mind

#

13 33 55

#

Interviews from other Country

#

To my single Self laboratoryjny

upper basin
vocal basin
lavish rover
somber heath
thick pecan
#

Ok

#

I dont have Computers

vocal basin
thick pecan
#

I cant

#

I want talk

vocal basin
#

@lavish rover it effectively becomes a fluid simulation later in its life

thick pecan
#

Parafrazzing

lavish rover
thick pecan
#

Polane

#

ASU Heru Adam

lavish rover
#

800x500 me thinks

thick pecan
#

Please

#

Noooo

#

Only 32

#

Bits

#

2 Rivera 1 sun thats the Country in chineseee

#

32 bit

lavish rover
#

rust -> wasm I'm guessing?

vocal basin
#

yes

thick pecan
#

Kopta to arsie

vocal basin
#

@somber heath or just a thing you'd expect to see in the 80's

thick pecan
#

Isaaaaa

vocal basin
#

(without any real object)

#

bottom left looks like a forming vortex a bit

#

blurriness is slowly spreading

somber heath
vocal basin
#

I'm not applying any filters/postprocessing

#

each channel is just round(sqrt(raw_value) * 255)

somber heath
#

One of the things I did is to mutate toward a source image.

#

So I could take a photo of a spider and paintify it.

vocal basin
#

I need to source two extra channel values somehow

#

I guess I can just x=y=whatever to normalise it

charred rapids
#

Hey Guys i want to start with Cloud computing, can you help me with the resources for theory as well as practical work

vocal basin
#

did not include videos, since those are giant

charred rapids
#

You can call me Paradox

meager escarp
#

Hi

#

Hey guys I'm working on slm. Any advice or suggestions, you guys wanna give.

vocal basin
#

!pypi slmsuite

wise cargoBOT
#

Package for high-performance spatial light modulator (SLM) control and holography.

Released on <t:1735937668:D>.

vocal basin
#

presumably along these lines?

meager escarp
#

Yeah exactly for small enterprises and specific field Target,not chat but problem solving.

vocal basin
#

ah

#

so not 3d stuff

meager escarp
#

Why not can achieve since it has slm...m thinking to use modular approach to create efficient llm using slm.

tacit crane
vocal basin
#

ohno, the page file has grown back to over 50GB

#

something has gone wrong

#

a lot of free memory => programs see it => programs use more memory => page file grows => a lot of free memory

#

(not true but a funny hypothesis)

#

it grows because it can rather than because it needs to

thick pecan
#

¯_(ツ)_/¯

meager escarp
#

So LLM since it requires gpu npu for neural processing I think npu is complex version of alu, cu and registers..... which make sense a lot but for GPU since deep seek out globally the way it impacts...my belive for modular slm approach towards llm becoming more stronger.

vocal basin
#

oh, look, firefox "allocated" 140GB of VRAM
how tf did it do that

#

task manager is going insane again I guess

vocal basin
#

my guess is that it's shared across subprocesses therefore task manager overestimates

#

also, yes, overallocation is a thing

somber heath
#

@timid quartz 👋

timid quartz
#

hi

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.

timid quartz
#

how i do

charred rapids
#

Hey Guys, i am making a application like basic paint. i have to use turtle. i did make a canvas and add event listeners for dragging the turtle. but i want the turtle to follow my Computer cursor, is there any way to do that?

main comet
#

why this dealer, taken a piss, Ive been standing here, for 30 mins

obtuse viper
#

hii

#

wsp

tacit crane
somber heath
primal shadow
#

sounds fine to me

#

Corporations LOVE paying for Oracle licenses

#

might be old

#

but still the reality

#

that if yo uwant $$$$

#

and a job at a big company

#

Oracle is popular in Enterprise

somber heath
#

@amber raptor Discord thinks your connection is shit.

amber raptor
primal shadow
#

Dogs get all the love

#

Ah, lancebot LOVES love

#

I was so confused, but tis the season of love

vocal basin
#

does it get triggered by 'heart' too pithink

primal shadow
#

how about valentine

#

how about my amor

#

no spanish, understandable

vocal basin
somber heath
#

Hearth.

primal shadow
#

you got the heart

#

well, the hearts heart

#

which is thinner

#

and redder

vocal basin
#

crimson-er

primal shadow
#

♥️ ❤️

#

no love for the hearts

vocal basin
#

they're stored as emojis

#

so not parsed as text

#

maybe `lemon_hearteyes ' would trigger it pithink

#

apparently not

#

tbf it's hearteyes not just the word itself

#

"why are you reassigning me every time?"

primal shadow
#

Do they not mind zeroes on their scores?

#

so thye go to class for funsies

#

with no requirements?

#

well, then don't get upset

#

your job is to entertain children

#

not teach them

#

because your child ignores the lesson

#

"because you haven't raised a decent human"

somber heath
#

@full moss 👋

primal shadow
#

Sometimes you gotta let it all out

vocal basin
#

English/Deutsch teacher I know recently quit his job

primal shadow
#

Ah yes, we must bottle it up until we explode

#

that's the right way to do it

#

You haven't exploded.... yet

#

keep on bottling

#

You've got years left yet

#

more time for pressure to build

willow light
#

Seems time to get back to research and go back to academia, since climatology is doing so well in the US right now...

primal shadow
#

thoguh venting helps

#

release the pressure

vocal basin
#

"just be in a society where everyone already assumes everyone else's life is terrible"

primal shadow
#

love cannabis