#voice-chat-text-0

1 messages · Page 384 of 1

fathom magnet
#

@somber heath

#

thier is no permission to speak in that vc

#

@somber heath are you working on some project or what

#

??

somber heath
wise cargoBOT
#
Voice verification

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

abstract needle
#

@vocal parcel

tulip dove
#

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

#

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

timid marten
#

!e

while True:
  print("Bruh")
wise cargoBOT
# timid marten !e ```py while True: print("Bruh") ```

:x: Your 3.12 eval job has completed with return code 143 (SIGTERM).

001 | Bruh
002 | Bruh
003 | Bruh
004 | Bruh
005 | Bruh
006 | Bruh
007 | Bruh
008 | Bruh
009 | Bruh
010 | Bruh
... (truncated - too many lines)

Full output: too long to upload

timid marten
#

Wheeze

tulip dove
#

!e

noble solstice
#

Hlo Guys!!

vocal basin
#

re-listening to the same recording for ~20th time

#

for whatever reason

#

funny sounds sound funny

quartz beacon
forest zodiac
#

!python

for i in range(20):
    print(i)
wise cargoBOT
#
System Python

Why Avoid System Python for Development on Unix-like Systems:

  • Critical Operating System Dependencies: Altering the system Python installation may harm internal operating system dependencies.
  • Stability and Security Concerns: System interpreters lag behind current releases, lacking the latest features and security patches.
  • Limited Package Control: External package management restricts control over versions, leading to compatibility issues with outdated packages.

Recommended Approach:

  • Install Independent Interpreter: Install Python from source or utilize a virtual environment for flexibility and control.
  • Utilize Pyenv or Similar Tools: Manage multiple Python versions and create isolated development environments for smoother workflows.
vocal basin
#

discord is refusing to send my messages on the desktop client apparently

forest zodiac
#

discord client sucks

#

it consumes

#

twice as memory

vocal basin
#

and there is no "cancel send" option

forest zodiac
#

compared to the browser version

vocal basin
#

I need to cut the first few seconds out

#

!source eval

wise cargoBOT
#
Command: eval

Run Python code and get the results.

Source Code
vocal basin
#

time paradoxes 🎉

#

time to restart discord again

vocal basin
#

a whole octave lower than it should be

#

or can not should

somber heath
#

@gilded kettle 👋

vocal basin
#

it's also loud

quartz beacon
vocal basin
#

an octave higher

timid marten
jovial iris
#

@cedar mason how's using nix package manager to install stuff than AUR on arch ?

vocal basin
#

@cedar mason lawlessness affects everyone, that's why such option is not acceptable

jovial iris
#

i have arch and installed discord using it, it works like it does on window. No streaming glitches!

vocal basin
#

example: Russia

#

because they will take advantage of that same lack of law

#

even more

jovial iris
#

i know but how about using different package manager which isn't native to your OS, though Nix has this for the people who are not on NixOs but they wanna use Nix packages which is way ahead of pacman, dnf, apt or even AUR.

#

im going hyprland, its wayland, i can't stream properly on there but could go vesktop and discord on kde gnome or xfce.

#

we had a convo earlier about this, discord streaming on linux isn't supported natively.

#

yep.

#
usage: git [-v | --version] [-h | --help] [-C <path>] [-c <name>=<value>]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--no-lazy-fetch]
           [--no-optional-locks] [--no-advice] [--bare] [--git-dir=<path>]
           [--work-tree=<path>] [--namespace=<name>] [--config-env=<name>=<envvar>]
           <command> [<args>]
#

$ Git -V i got this thing from this git version check command but the letter was Capitalised.

forest zodiac
trail tusk
#

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

trail tusk
#

@iron aspen

dry jasper
#

@peak depot

whole bear
#

Hey emlock

vocal basin
#

@cedar mason this discussion is probably not server-appropriate

#

@cedar mason consider reading the rules and code of conduct

vocal basin
#

sometimes means domain specific language, but this doesn't seem to fit the context

rugged root
#

!rule 3

wise cargoBOT
#

3. Respect staff members and listen to their instructions.

rugged root
#

Ah right, forgot which one it was

mellow karma
#

Hi guys! I have a hard time understanding one thing about coding. So I am learning the basics for now, and I come across an idea that i can't make sense of. Every time i write a code, imagine we are talking about a binary search algorithm for example. when I write that algorithm I always think, the code itself is completly useless, unless I actually have a User Interface so, someone can actually use it. The struggle arises when I think that what I am learning is not exactly how to code in a user-friendly way (even though that's what i am working for), or in a way where I will migrate what i am learning about coding into a more professional state of my career. This means that all i am learning is for the sake of understanding syntax, basic structures and all the basics or smtg, but eventually even my comprehension of what a code is will change! That is kinda weird to think. It's like trying to see with a pair of eyes that is not mine!! It's weird, fucking weird.
In my perspective, what i believe will happen is something like this, for now I learn the basic understanding of the language, then i will use it just to get used to it, then i will learn how to actually make a more complex project, even though it is completely useless, then i will learn a new technology, understand how it intercommunicates with the actual language i am working on, then i will again start creating project that are useless, but will eventually give me a more in depth comprehension of what i will be actually doing with the things i learned in a profession. Am I delusional ? or does this make sense ?

vocal basin
#

visualisations are important;
even if you're limited to just terminal output, you can still do that

mellow karma
#

in a mental way you mean

#

of course! that'sw what it means

#

ty

vocal basin
#

(I was writing the code of an example, but then got summoned elsewhere for help, will resume now)

#

!e

items = [(1 << i) for i in range(10)]
items_str = list(map(str, items))
lo = 0
hi = len(items)
while (d := hi - lo) > 1:
    mid = lo + d // 2
    print(
        " " if lo else "",
        " ".join(items_str[:lo]),
        "L",
        " ".join(items_str[lo:mid]),
        "M",
        " ".join(items_str[mid:hi]),
        "H",
        " ".join(items_str[hi:]),
        sep="",
    )
    if items[mid] < 67:
        lo = mid
    else:
        hi = mid
wise cargoBOT
vocal basin
#

... and then also add colours

versed heath
south loom
#

Base class

class Animal:
def init(self, name):
self.name = name

def sound(self):
    pass  # Define in child classes

Derived class

class Dog(Animal):
def sound(self):
return "Woof!"

class Cat(Animal):
def sound(self):
return "Meow!"

Instantiate objects

dog = Dog("Buddy")
cat = Cat("Whiskers")
print(dog.sound()) # Output: Woof!
print(cat.sound()) # Output: Meow!

#

Base class

class Animal:
def init(self, name):
self.name = name

def sound(self):
    pass  # Define in child classes

Derived class

class Dog(Animal):
def sound(self):
return "Woof!"

class Cat(Animal):
def sound(self):
return "Meow!"

versed heath
#

`

#
Base class
class Animal:
    def init(self, name):
        self.name = name

    def sound(self):
        pass  # Define in child classes

Derived class
class Dog(Animal):
    def sound(self):
        return "Woof!"

class Cat(Animal):
    def sound(self):
        return "Meow!"
#

``

hard island
#

پ

somber heath
#

@winged stone 👋

winged stone
azure rivet
#

Hello

somber heath
#

@zenith ledge 👋

zenith ledge
#

hi!

#

how do i get permission to speak?

somber heath
wise cargoBOT
#
Voice verification

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

zenith ledge
#

!voice

somber heath
#

@potent root 👋

potent root
somber heath
#

@turbid hedge 👋

turbid hedge
#

hi

#

@somber heath howdy?

somber heath
#

@whole bear 👋

turbid hedge
#

before AI?

whole bear
turbid hedge
#

Interesting, I'm interested in making art but I'm not that good with code rn so... I think making art while programming is hard?

somber heath
turbid hedge
#

thats really cool

#

thanks for sharing

#

Is it posible to use turtle with video, for like psycodhelic transitions or something like that?

#

can you write the video lib my ears are busted so can't hear that well

#

pls

zenith ledge
#

oh i have to go. nice to meet you, maybe we'll meet on vc another time

somber heath
#

PyGame

#

Numpy

#

PyGame's surfarray.

turbid hedge
#

im also looking to make music with python and AI to make tracks like NIN or RAmmstein to study

#

do you know any library that can help me with that?

somber heath
turbid hedge
#

cool

#

just need to improve prompting

#

thanks for the info, need to bounce. Hve a nice one

graceful tangle
#

Sorry i cant hear clearly so crowded here

wind raptor
somber heath
#

@harsh tulip 👋

harsh tulip
#

Hello

somber heath
potent root
somber heath
#

@jagged pond 👋

jagged pond
#

hi

potent root
#

x = lambda a, b : a * b
print(x(5, 6))

somber heath
#

@rustic shadow 👋

potent root
#

def myfunc(n):
return lambda a : a * n

somber heath
#

@rotund hound 👋

rotund hound
thorny trench
somber heath
#

@indigo surge 👋

indigo surge
#

hi

#

@potent root can you start coding🥺

potent root
potent root
indigo surge
#

streaming

#

coding

#

i also might take your weather app from your github if thats fine

potent root
potent root
indigo surge
potent root
#

but im still learning i just know some stuff

indigo surge
#

thats fine

indigo surge
wind raptor
#

So good ^^

slender sierra
#

@wind raptor what kinda movie did u say?

wind raptor
#

Christmas musical comedy. Big stress on the comedy

timid marten
timid marten
whole bear
#

im good man

#

i can't speak tho

wind raptor
#

!voice

wise cargoBOT
#
Voice verification

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

whole bear
#

i guess im not that active here

#

XD

#

babye : (

wooden abyss
#

woow Im server muted

#

sadge

wind raptor
#

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

wooden abyss
#

@upper basin u have experience?

#

how old are you?

#

@upper basin u code quantum computing in python?

#

interesting

#

sounds like u got it down

somber heath
#

@gritty mica 👋

gritty mica
#

I see thanks

#

Damn 3 days

#

:(

#

@somber heath u know how nested loops work?

#

can u eexplain 😭

#

Ive spent 30 minutes

somber heath
#
var = 'abc'```
gritty mica
#

i know what a variable is lol

#

alright

somber heath
#

!e py for letter in 'abc': print(letter)

wise cargoBOT
somber heath
#

!e py letter = 'a' print(letter) letter = 'b' print(letter) letter = 'c' print(letter)

wise cargoBOT
gritty mica
#

alright

somber heath
#

!e py for letter in 'abc': for number in '123': print(letter + number)

wise cargoBOT
gritty mica
#

yeah

#

1 sec

#

fuck

#

i cant share my screen

#

1 sec let me make somthing and take a scren shot rq

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.

gritty mica
#

alright

#

btw im gonna try to make this

#

**




#

..

#

nvm 1 sec

#
    print(f"i is currently {i}")
    for i in range(5):
        print( i + 1 )```
#

I want to maKE A STAR TOWER

#

caps

#
    print(f"i is currently {rows}")
    for i in range(5):
        print( i + 1 )```
#

oh wait

#
    print(f"i is currently {rows}")
    for i in range(5):
        print( i + "1" )```
#

i forfoty ''

#

forgot*

#

im lost

somber heath
#

!e py print('abc' * 3)

wise cargoBOT
somber heath
#

!e py print(1, 'abc', object())

gritty mica
#

all good

wise cargoBOT
somber heath
#

!e py print(*'abc') print('a', 'b', 'c')

wise cargoBOT
gritty mica
#

alreight

#

alright*

somber heath
#

!e py print('abc', end='*') print('def')

wise cargoBOT
somber heath
#

!d print

wise cargoBOT
#

print(*objects, sep=' ', end='\n', file=None, flush=False)```
Print *objects* to the text stream *file*, separated by *sep* and followed by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as keyword arguments.

All non\-keyword arguments are converted to strings like [`str()`](https://docs.python.org/3/library/stdtypes.html#str) does and written to the stream, separated by *sep* and followed by *end*. Both *sep* and *end* must be strings; they can also be `None`, which means to use the default values. If no *objects* are given, [`print()`](https://docs.python.org/3/library/functions.html#print) will just write *end*.

The *file* argument must be an object with a `write(string)` method; if it is not present or `None`, [`sys.stdout`](https://docs.python.org/3/library/sys.html#sys.stdout) will be used. Since printed arguments are converted to text strings, [`print()`](https://docs.python.org/3/library/functions.html#print) cannot be used with binary mode file objects. For these, use `file.write(...)` instead.
gritty mica
#

hm

somber heath
#

!e py print('a', 'b', 'c', sep='*')

wise cargoBOT
gritty mica
#

k

somber heath
#

!e py print('a', 'b', 'c', sep='*', end='%') print('def')

wise cargoBOT
gritty mica
#

alright

#

OH

#

WAIT

#

let me try now

#

to transfer over strings to floats?

#

and stuff like that?

tulip dove
#

Hi

gritty mica
#

hi

#

I know how to lol

tulip dove
#

How are u

gritty mica
#

int(input("Hello"))```
gritty mica
tulip dove
#

Ok

gritty mica
#

hbu?

tulip dove
#

So what are u working on

gritty mica
#

trying to figure out nested loops

tulip dove
#

Okay

#

Can u use VC?

gritty mica
#

No i need to be in server for 3 days

tulip dove
#

When did u join

gritty mica
#

just now lmao

tulip dove
#

Oh

somber heath
#

!e py string_var = '123.456' float_var = float(string_var) print(type(string_var), string_var) print(type(float_var), float_var)

wise cargoBOT
somber heath
#

@gritty mica Sorry, internet cut out briefly.

#

It's time for dinner.

#

Ta ta for now.

gritty mica
#

oh alright

#

bye

somber heath
#

!d try

wise cargoBOT
#
try

8.4. The try statement

The try statement specifies exception handlers and/or cleanup code for a group of statements...

somber heath
#

@flat hound

#

👋

flat hound
#

👍

somber heath
#

@magic spade 👋

#

@tight birch 👋

magic spade
#

hello

#

good morning

somber heath
#

@short forge 👋

short forge
#

hi how are youguys doing

somber heath
torn yarrow
#

wassaaup

#

@lethal shell in vc

#

:exit:

lethal shell
#

hi

#

o/

short forge
somber heath
#

@whole bear 👋

wise loom
dry jasper
sweet sorrel
sweet sorrel
#

Ad Astra Opus

lethal shell
#

okay D:

sweet sorrel
uneven temple
#

yep thats an alien

#

I dont wanna spoil it but they will not be chilling forever

sweet sorrel
#

super chill

#

oh shit @uneven temple he just killed a man with his mind

uneven temple
#

super chill

sweet sorrel
#

yea, fucker deserved it

uneven temple
#

are you strong enough to stream or na

sweet sorrel
#

still chill

uneven temple
uneven temple
sweet sorrel
#

I want someone as caring as jules

uneven temple
#

alien's stronger

#

also does this relate to python in any way

sweet sorrel
#

yes

#

aliens go to space, space is amazing

uneven temple
#

aye

#

welcome back @dry jasper

#

welcome back @dry jasper

#

someone is watching aliens

#

its aliens not ghosts

#

less spooky(?)

#

hallo @random falcon

#

lock in watch aliens ig

#

goodbye @random falcon

#

hows the movie @sweet sorrel

#

was it everything u dreamed of

#

I didn't know guns needed python but ig the world is becoming more modern

#

🔫

sweet sorrel
dry jasper
uneven temple
#

pew pew

dry jasper
young matrix
#

@vocal basin hi

wise cargoBOT
#

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

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

frozen echo
#

any one here ?

worn fossil
#

Is this for any topic this y'all?

#

If so hehehheheh

somber heath
#

@whole bear 👋

gentle flint
hardy sinew
#

hai

gentle flint
somber heath
#

@arctic fern 👋

arctic fern
vale plank
#

Yo

gentle flint
#

Amerika is a hamlet in the Netherlands. It is part of the village of Een, in the Noordenveld municipality in Drenthe.
Amerika is not a statistical unit, and does not have town limit signs. It contains about 25 houses, a camping and some bungalow parks. It is a forested area and mainly has a recreational use.
Just north of the hamlet is the recre...

America (Limburgish: Amerika, Dutch pronunciation: [ɑˈmeːrikaː]) is a parish village in the Dutch province of Limburg, known historically for its peat extraction.

#

Nederland is a hamlet in the municipality Steenwijkerland in the province Overijssel, Netherlands. It has a population of about 15. 'Nederland' is the Dutch name for the Netherlands. Because of the comical value of the toponym, roadsigns with the name 'Nederland' are stolen frequently.
It was first mentioned between 1830 and 1855 as 't Nederland...

plain mica
#

hellllooo

somber heath
#

@plain mica @glacial oyster 👋

#

@unreal magnet 👋

somber heath
#

@viral viper 👋

viral viper
#

hello

#

i cant speak

#

idk why

hard island
#
from datetime import datetime
if __name__ == '__main__':
    import argparse
    print('============================')
    print('obstructed')
    print('obstructed')
    print('obstructed')
    print('Version 5.0 2023')
    print('============================')
    expiry_date_str = '2024-07-22'
    expiry_date = datetime.strptime(expiry_date_str, '%Y-%m-%d').date()
    today_date = datetime.now().date()
    if today_date > expiry_date:
        print('Contact OBSTRUCTED')
        return None
    parser = argparse.ArgumentParser()
    parser.add_argument('-f', '--file', help = 'specify .psc file to run')
    args = parser.parse_args()
    from ps2.app import PS2
    if args.file:
        PS2.runFile(args.file)
        return None
    PS2.runPrompt()
    return None```
somber heath
wise cargoBOT
#
Voice verification

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

wise loom
#

pyoxidizer if you want to recompile it into a standalone

#

there's a bunch of other options you have for that

hard island
#

Mode LastWriteTime Length Name


d----- 22/12/2024 04:46 PYZ-00.pyz_extracted
d----- 22/12/2024 04:58 pycache
-a---- 22/12/2024 04:46 1332005 base_library.zip
-a---- 22/12/2024 04:46 5162776 libcrypto-3.dll
-a---- 22/12/2024 04:57 789 main.py
-a---- 22/12/2024 04:57 1302 main.pyc
-a---- 22/12/2024 04:46 1854 pyiboot01_bootstrap.pyc
-a---- 22/12/2024 04:46 5648 pyimod01_archive.pyc
-a---- 22/12/2024 04:46 24359 pyimod02_importers.pyc
-a---- 22/12/2024 04:46 6170 pyimod03_ctypes.pyc
-a---- 22/12/2024 04:46 1643 pyimod04_pywin32.pyc
-a---- 22/12/2024 04:46 1546 pyi_rth_inspect.pyc
-a---- 22/12/2024 04:46 7003928 python312.dll
-a---- 22/12/2024 04:46 1317612 PYZ-00.pyz
-a---- 22/12/2024 04:46 30488 select.pyd
-a---- 22/12/2024 04:46 305 struct.pyc
-a---- 22/12/2024 04:46 1137944 unicodedata.pyd
-a---- 22/12/2024 04:46 119192 VCRUNTIME140.dll
-a---- 22/12/2024 04:46 84760 _bz2.pyd
-a---- 22/12/2024 04:46 253208 _decimal.pyd
-a---- 22/12/2024 04:46 65816 _hashlib.pyd
-a---- 22/12/2024 04:46 159512 _lzma.pyd
-a---- 22/12/2024 04:46 83224 _socket.pyd

wise loom
#

ps2.app

#

from ps2.app import PS2

#

ps2/

#

ps2/app.py

viral viper
#

i need help:(

#

my code doesnt work but i dont know why

hard island
viral viper
#

help:(

hard island
#
DECLARE X : STRING

PRINT LEFT("ABCDEFGH", 3)
PRINT RIGHT("ABCDEFGH", 3)
PRINT MID("ABCDEFGH", 2, 3)

PRINT LENGTH("Happy Days")

PRINT TO_UPPER("Error 803")
PRINT TO_UPPER('a') 

PRINT TO_LOWER("JIM 803")
PRINT TO_LOWER ('W')

PRINT NUM_TO_STR (-87.5)
PRINT NUM_TO_STR (87.5)
PRINT NUM_TO_STR (87)

X <- NUM_TO_STR (87)
IF X = "87" THEN
    PRINT "YES"
ELSE
    PRINT "NO"
ENDIF

PRINT STR_TO_NUM("23.45")
PRINT STR_TO_NUM("23")

PRINT IS_NUM(-12)
PRINT IS_NUM("-12")
PRINT IS_NUM("12")
PRINT IS_NUM("A")

PRINT ASC('A')

PRINT CHR(65)
PRINT CHR(50)

PRINT INT(27.5415)

PRINT RAND(87)

PRINT  "Summer" & " " & "Pudding"

PRINT DAY("04/10/2003")

PRINT MONTH("04/10/2003")

PRINT YEAR("04/10/2003")

PRINT DAYINDEX("25/01/2024")

PRINT SETDATE(26, 10, 2003)

PRINT TODAY()
tulip dove
#

Hello

worn fossil
#

Hello 🙃

quartz beacon
terse rose
deep python
#

@quartz beacon

quartz beacon
#

ye

#

i know

#

you text here

#

and i reply

deep python
#

okay, well my sister used to call me "Danon" but that was already taken

#

@quartz beacon so i threw the "r" in there.

dry jasper
dire palm
#

@marble mantle chto delaesh?

terse rose
#

Is this worth 15$ a month chat?

marble mantle
dire palm
marble mantle
#

just a reminder: rule 4 exists

#

(it's mostly there so moderation staff can make sure whatever we're writing is appropriate)

#

((since most mods can read English; I'd expect not many know Russian))

dire palm
worn fossil
#

What on earth is going on here

dire palm
marble mantle
#

I'm considering trying out more programming languages soon

#

idk what next to learn

dire palm
#

its good

#

it has nice syntax

marble mantle
#

I haven't written any C# in ~2 years

#

used it for ~5 years prior to that

dire palm
marble mantle
#

20

dire palm
marble mantle
#

not sure if I want to continue

dire palm
marble mantle
#

not as "outdated" as Fortran at least

#

!d numpy.f2py

wise cargoBOT
#

Copyright 1999 – 2011 Pearu Peterson all rights reserved. Copyright 2011 – present NumPy Developers. Permission to use, modify, and distribute this software is given under the terms of the NumPy License.

NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.

marble mantle
#

if Fortran (the language itself) is relatively small, I should learn it

dire palm
marble mantle
#

Fortran got updated in 2023

#

and C++

#

and C

#

and COBOL

#

COBOL I won't learn because no use for it

dire palm
marble mantle
#

@spark oriole asynchronous version of WSGI

#

and WSGI is what Flask works with

dire palm
spark oriole
#

yeah

marble mantle
#

probably from 1950s

#

1959

dire palm
#

before ussr collapse

#

insane

marble mantle
#

Fortran was a bit earlier than that

#

1954

dire palm
marble mantle
#

the first thing that we today would consider a programming language

#

first somewhat structured language that can actually run on the computer

dire palm
marble mantle
#

iirc, first formal notation for describing programs and the first (mostly correct) program written were somewhere in 1800s

#

checked, it was indeed in 1800s (likely first half), judging by that programmer's span of living (from 1815 to 1852)

#

as for things that can be more or less directly translated into modern languages -- that stuff started in 1930s

dire palm
#

dang, yk a lot of stuff

marble mantle
#

Haskell

dire palm
#

you're just being an old languages enthusiast at this point

marble mantle
#

Haskell isn't that old

#

only 1990

#

just before all the Pythons and Javas and other

dire palm
#

still old in my opinion

#

I feel like you witnessed both elizabeth queens births and deaths

marble mantle
#

learning history is fun because you'll notice how slow programming changes

#

functions as values was something invented in 1930s and Java got it only in 2014

marble mantle
#

slightly modern

dire palm
#

btw

#

Im planning to learn go and dart with flutter

marble mantle
#

Go is definitely useful

dire palm
#

does these worth learning?

marble mantle
#

I've heard some people say Dart/Flutter are no longer that good, but I haven't tried those for myself

dire palm
#

cuz of crossplatform and stuff

marble mantle
#

though there it's just wherever BEAM can run and JavaScript

#

(BEAM is what Erlang and Elixir use)

somber heath
#

@dim palm 👋

dim palm
#

cant speak lol

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.

dim palm
#

i have to send atleast 50 messeges wowo

#

nvm i will just type

#

i will type so its fulfuilled

#

yeah ?

#

i joined this server for some help in python and then i am still in the server

#

yeah

#

what do you think messeges here will count ??

#

les go

#

oh ok

#

what do you do for living

#

hahaha ok no problem

#

i guess same thing with blah lol

somber heath
#

@fiery coral 👋

dim palm
#

and maybe shine

fiery coral
#

in this channel, what are you doing?

dim palm
#

nvm blah can talk

dim palm
sour geyser
#

Why do you sound like a child's book narrator @somber heath?

#

You sound like English Mr. Rogers.

fiery coral
#

Can I talk?

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.

dim palm
#

i like it to be honest it sounds calm and understandable

sour geyser
#

it's not levee-oh-saw, it's leh-vee-oh-saaaaaaaaaaaah

dim palm
#

what are they

#

oki

sour geyser
#

brb getting food

dim palm
#

oki

#

i guessed above 25

#

hahha ok

#

how old do you think i am

#

alright

#

its cold here00

whole bear
#

Hello

#

I wonder if a man who is 5'3 tall will survive a quality life ?

whole bear
#

At this point it's more of a disability

pseudo thunder
#

bruh

#

rethink your views!

whole bear
#

5ft 3 inches tall

#

That's what I meant

pseudo thunder
#

Im having connection issues

somber heath
#

@brittle moat 👋

deep python
#

not sure

woven pumice
#

.

#

...

#

Deobfucste python codes

obsidian dew
#

hyvä

wind raptor
#

@somber heath

somber heath
#

@copper perch 👋

copper perch
#

hiii

#

i cant speack im to new to the serv actualy

#

how are you guyyys ?

obsidian dew
copper perch
#

meawwww

#

meow

#

cut

#

which kind of project are you doing ?

#

vidéo of cat ? x)

#

video of what i didnt understood

#

hoo which kind of web site ?

#

your american ?

obsidian dew
copper perch
#

baseball from where ?

#

meow

#

yeah

#

huuh ?

obsidian dew
copper perch
#

meow

#

are u depressed opal ?

#

sorry if its to respondent

#

tics are terrible xd

#

hope u dont get lyme

#

my moms dog bite me today its so sad to see a little dog that i was withdraw the tics cant be apporch by me

tulip dove
#

Hi

copper perch
#

hi

tulip dove
#

What's up

copper perch
#

trying to pass windows defender xd

#

i need someone to teste my exe

tulip dove
#

Ok

#

Ok

somber heath
#

@graceful dagger 👋

copper perch
#

you have what sorry ? xd

#

hooo okayy

tulip dove
copper perch
#

I hope things will go better for you

#

doing python is a therapy

tulip dove
#

Yeah

copper perch
#

yeah i feel like ur taking lean

#

xdd

tulip dove
#

Its night time here

#

10:35pm

copper perch
#

your job or past job was developer opal ?

copper perch
tulip dove
#

OK

copper perch
#

when i feel bad i start a ne python project and try doing crazy stuff that make me happy, if peaople was telling me what to do 🤮

tulip dove
#

I like to start new project s

copper perch
#

what shido ?

#

agree on what sorry wasnt listening

#

okayy i respect that

#

xDDDDD

#

i know taht

#

hope u will find something you like shido

#

guys im normal if i dont have take xannax or drug here ?

#

xDDDD

#

i think inteligence is a probleme in this society for being fully happy

#

yeah

#

but we need to find the solution other then medication

#

we can i trust

#

it make them so much monney to give medication so easier then really improve life of peaople

#

are ou fine ?

#

yeah its help a lot i agree on short therme

#

what about doing something special ? i dont know you and i can even feel that you have good capacity

somber heath
#

@whole bear 👋

whole bear
#

Hello

copper perch
#

hi

whole bear
#

I am not vc verified yet so ima just type in here

#

I've been there yeah dont go down that route

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.

copper perch
#

i think positivity is great in certain mesure but it stay a placebo, doing real good thing are better

whole bear
#

I've been there

#

I have to send more msgs

#

and be active for longer

copper perch
#

what ?

#

yeah im french

vocal basin
#

big file happened

copper perch
#

xDDD cuase my syntaxe is shit ?? xd

#

gurls like italian

whole bear
#

I know a bit of Spanish

copper perch
#

xDDDDDDDD

#

ho enchanté

vocal basin
#

from what I know, it's at least mostly consistent

#

at least compared to English

copper perch
#

german is dope in music i find

whole bear
#

Ramstein goes hard

copper perch
#

xd

#

techno hardtekk

#

powerfull language

whole bear
#

Russian also goes really hard in music

somber heath
#

@gusty valve 👋

copper perch
#

yeaaah

whole bear
#

bask bask kjard bask

#

tripolski tripolski

copper perch
#

guys i can propose you a project that will make life of pc user better are you intersted ?

whole bear
#

Bye pixel

copper perch
#

ciaoo

#

meow

whole bear
#

bro was chilling

#

just vibing

whole bear
#

laters

#

LMAO

#

I think i just need to hit 50 msgs and i can talk

#

waddup

#

I live in houston and we have a street called Preston

#

Ive been there, its not in a great part of town lol

vocal basin
# whole bear Russian also goes really hard in music

I recently finally listened to a somewhat popular song from 2021 (named "Кто убил Марка?");
idk if it sounds as powerful without understanding the lyrics, the overall context is kind of important

whole bear
#

Oh nice

#

I need to find the one that I like i forget the name

copper perch
#

better work flow with extremly intuitive feature, like auto desk and folder storage, copy past manager with only the already ctrl c and ctrl v shortcut, auto priority of processus, anti afk ect

somber heath
#

@tough barn 👋

copper perch
#

and without any lag giving the pc better performance

gusty valve
#

would it work with any base operation system?

copper perch
#

in future i hope

gusty valve
#

I mean, would it be an extension for windows?

#

at the start

#

or rather for mac

copper perch
gusty valve
#

or the third option, the pinguin whos name I never remember

whole bear
#

Thats the song i like

copper perch
gusty valve
#

seems the best bet ye

whole bear
#

ddang 50 msgs is a lot ngl

gusty valve
#

mac has a separate anti-virus system and it makes auto-clickers and assitent codes face a ton of trouble

whole bear
#

I guess ill just talk about random stuff

#

I am new to programming and I decided to start out with python.

gusty valve
gusty valve
whole bear
#

I am using the PyCharm IDE right now and I am following youtube tutoials to figure stuff out

whole bear
gusty valve
whole bear
#

Nah its all good

#

I am going to a lonestar college here in houston

#

I just wont say which exact one haha

gusty valve
#

not that, the degree

#

a

#

lol

whole bear
#

oh which degree?

#

For right now I choose the Associates of Applied Science - Game Development (Programming) option

vocal basin
whole bear
#

But should I want to get into engineering I guess i could switch my degree plan later

gusty valve
# copper perch no storage required

that would add a ton of overhead... maybe you should make an artificial separate hardrive with bootcamp or smt and connect the virtual hardrive to the real one, only problem is that you need to manually adjust the capacity of each of them, sooo

copper perch
#

what are you saying ?

copper perch
#

virtual machine ?

gusty valve
#

Im even noober

#

xd

#

I got a coumputer

#

with both macintos and windows

#

I thought you could do smt similar

#

with some program like bootcamp

copper perch
#

im fcking broke rly poor

gusty valve
#

its free

#

.-.

copper perch
#

hoo okayyy

#

simulation os os

#

of os *

whole bear
#

dang

copper perch
#

is that ?

gusty valve
#

no it doesnt need to be os

whole bear
#

this verification takes forevs

gusty valve
#

it makes unexisting hardrives by dividing the real hardrives capacity in several parts, you decide each ones capacity

#

I say you should make a code that does this like bootcamp but that adjust the capacity of the sub-hardrive that stores the savings

#

or if it feels too hard

#

then the simplest way is just to store it as an archive somewhere

#

problem with that is that if the main hardrive has a problem then the save is also well...

copper perch
#

okkayy i understand xdd it can be a good idea

gusty valve
#

depends

whole bear
gusty valve
#

if you want smt simple just make a code that gets the stuff saved as a separate archive

whole bear
gusty valve
whole bear
#

lmao

copper perch
#

but i find it annoying when i have to swap game from a partition or having probeleme with the right partition ect i dont think its in the direction of the logicielle i want to do

gusty valve
copper perch
#

not enough smooth or having to making it rly smooth but for exemple vanguard of league of legend rly dont like that

whole bear
#

📝

gusty valve
#

:I

#

so funny OpenAI said 2d ago they made Agi and they already got caught lying

#

love how well their biological neural networks do "an amazing job"

copper perch
#

the software stores the files in the correct folder

gusty valve
#

yes

#

auto-clasification

#

on what criteria?

copper perch
#

based on the extension

vocal basin
#

biological neural networks
"learning from Amazon's experience?"

gusty valve
gusty valve
vocal basin
#

not really, just having to deal with all the problems it causes

gusty valve
gusty valve
copper perch
#

nope i based it on the whats is writted after the dot of the name of the file

vocal basin
#

it's creating more maintenance debt than it gets the job done

gusty valve
gusty valve
copper perch
#

not on the tittle only the extension of the file

gusty valve
gusty valve
copper perch
#

if its a mp3 or a Wav it fo on the music folder

gusty valve
#

ye ye

copper perch
#

for emeple

gusty valve
#

and mp4 for movies for example

copper perch
#

yeah or video

vocal basin
gusty valve
#

well now that would require you to give the "application" acces as a viewer which is tricky

vocal basin
#

incorrect Dafny code generally doesn't compile => doesn't get published

copper perch
#

no i find an easier way

gusty valve
gusty valve
copper perch
#

i need to try the .exe of the software can you open it and tell me if it work pls ?

vocal basin
#

I've never written any Dafny code, but I have worked with formal algorithm proofs before

copper perch
#

i need to know if you need my library

gusty valve
vocal basin
#

I'd advise against ever running any exe someone else sends you;
it's fine-ish only inside a VM or a container (Windows containers do exist -- they require WIndows Pro and, iirc, Hyper-V)

vocal basin
gusty valve
tough barn
#

hi

tough barn
#

hi

#

@potent rootcant talk yet sorry

potent root
#

np

tough barn
#

nobody else active

#

chat is dead :/

tough barn
#

so

#

real

#

how was your day

#

do you know hwo to python already

#

same

#

yes

#

no

#

also not in the other one

#

maybe live codung

#

i think it is "this"

#

no

#

[test]

whole bear
#

'Code'

tough barn
#

idk what im doing

#

this

#

use before and after

#

😭

whole bear
#

from sys import exit



# game start and window setup
pygame.init()
screen = pygame.display.set_mode((800, 500))  #   x , y
# game name and icon setup
pygame.display.set_caption("Mage Runner")
icon = pygame.image.load("images/gameicon2.jpg")
pygame.display.set_icon(icon)



gilbert_x_pos = 3

clock = pygame.time.Clock()
gilbert = pygame.image.load("images/gilbert_sprite.png").convert_alpha()

background = pygame.image.load("images/background.png").convert()
#game_font = pygame.font.Font("fonts/Minecraft.ttf", 50)
#text_surface = game_font.render("Hello world!", True, "Black")




while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            exit()
    screen.blit(background, (0, 0))
    #screen.blit(text_surface, (400, 200))
    gilbert_rect = gilbert.get_rect(topleft=(gilbert_x_pos, 350))
    screen.blit(gilbert, gilbert_rect)

    keys = pygame.key.get_pressed()
    if keys[pygame.K_a]:
        print("Moved Left")
        gilbert_x_pos -= 2.5
    keys = pygame.key.get_pressed()
    if keys[pygame.K_d]:
        gilbert_x_pos += 2.5
        print("Moved Right")

    if gilbert_x_pos >= 800:
        gilbert_x_pos = 3
    if gilbert_x_pos <= 0:
        gilbert_x_pos = 780

    pygame.display.update()
    clock.tick(60)
winter tartan
#

can't speak

tough barn
#

can you sent screenshots

#

maybe

#

can you also sent me the pngs privatley

#

in pm

whole bear
tough barn
#

crazy good

winter tartan
#

All I see is 2 pixels xD

tough barn
#

better then nothing yk

winter tartan
#

am kidding

tough barn
#

bro your better then me

#

i need to learn pygame

#

im in tutorial hell

#

:(

whole bear
tough barn
#

HOW ARE THERE ADS IN DISCORD BRO

#

yes

#

!user

wise cargoBOT
#

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

tough barn
#

call me vakura

whole bear
tough barn
#

hundewasser is german (translated it means dogwater)

#

naw bro

#

4 ads

#

in discord

#

how many messages do i need

#

to speak i mean

whole bear
#

50

tough barn
#

nearly there

#

:)

whole bear
#

nice nice

tough barn
#

why did you chose python

#

should be able to speak now

#

i hope

whole bear
#

click the button and see what it says

tough barn
#

yes

whole bear
rapid lava
#

I guess I cannot talk yet @tough barn @solar jewel @whole bear

tough barn
#

yes

#

send 50 messages and wait atleast 30 mins

rapid lava
#

lol okay

whole bear
#

just be active and send messages

tough barn
#

he can hear you

rapid lava
#

thanks

whole bear
#

but dont spam lol

rapid lava
#

yeah, gotcha

solar jewel
#

tough barn
#

top right

#

with the two buddies

#

@whole bear

#

i think shift crontrol y does work too

somber heath
#

@prime echo👋

prime echo
#

lol

somber heath
#

Yahoy.

#

Pressure wash, paint red.

#

Golf.

#

@azure elbow I think you might have some sound issues you need to attend to.

azure elbow
somber heath
#

I'm not a fan.

#

It's not naturally gender neutral, but it can be used as gender neutral.

#

@languid nymph@random siren👋

#

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

azure elbow
#

how about homo sapians will u take this offensively?

somber heath
#

If you press the button, it'll tell you.

#

I do not like green eggs and ham.

#

There are two, under their own category.

#

This is not one of them.

#

Engage on a regular conversational basis.

#

Don't concentrate on trying to fulfill the criteria. 🙂

#

Just have fun and chat with folk.

vocal basin
#

perfect timing for me to come back

#

(was away)

#

@quartz beacon BG3?

#

oh wait

#

that one wasn't entirely sentient

#

I might have to do something about this at some point

#

but not now

azure elbow
vocal basin
#

YouTube

azure elbow
#

why vpn for discord?

vocal basin
azure elbow
#

ohh i tend to sometimes use tor for different reasons

vocal basin
#

linkedin

#

yes, and even for an adequate reason

#

Europe has same laws

azure elbow
#

for leaks if i am poced?

vocal basin
#

"either store our users' data here, or don't store it at all"

somber heath
#

Adequate means sufficient. It can also be used in a way to suggest less than ideal but sufficient.

azure elbow
#

@vocal basin whats temperature in russia?

somber heath
#

Context and tonal delivery indicates which.

vocal basin
azure elbow
#

your part

vocal basin
#

0°C

somber heath
#

@narrow monolith👋

sleek salmon
#

@somber heath allow me to talk

vocal basin
#

meanwhile SPb is 1°C

sleek salmon
#

i wont say shit but free me

vocal basin
#

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

azure elbow
# vocal basin 0°C

what happens when u forget to enable tor routing before discord and other ban social media

terse rose
vocal basin
#

Omsk has around that temperature seems like

#

(just picked random other city to compare)

terse rose
#

Im near Philadelphia tho

azure elbow
#

trump isnt even in office right now ( until some period) right?

terse rose
#

Ye just joking

vocal basin
#

Irkutsk is experiencing slightly cold

somber heath
#

Hello, Jikky.

vocal basin
#

I'm trying to remember what other cities we have

sleek salmon
#

smh cant speak english

#

too shy 😊

vocal basin
#

Novosibirsk is the big city there

#

-18

sleek salmon
#

guess

quartz beacon
#

Угадай блядь

sleek salmon
#

arabic

#

egyptian

#

i never spoke english before

#

i once joined a vc but no one understood me

vocal basin
#

I forgot what was the coldest recorded place before Antartica broke the record recently

somber heath
#

Have a desktop widget or something.

vocal basin
somber heath
#

Then some kind of overlay.

vocal basin
#

I'm getting a third monitor delivered today

somber heath
#

Or something in a tray.

vocal basin
#

a portable one to connect to small computers

somber heath
#

Total???

vocal basin
#

today being today or today being since the last non-awake moment pithink

somber heath
#

Roughly 15 hours.

#

I'm feeling examined.

peak depot
somber heath
#

@pliant timber 👋

pliant timber
#

hi

#

could someone help me it's my first time coding in python and i need help

vocal basin
#

what do you need help with?

pliant timber
#

it's a bit long is it possible to join a vocal ?

whole bear
#

Hello

vocal basin
#

@somber heath they're not in VC

pliant timber
#

tell me if you dont understand im french

#

do you know magic the gathering ?

somber heath
#

@broken knoll 👋

pliant timber
#

well i wanted to create a deck and i asked chat gpt to generate one and it gave me a lot of card names and now i have to print them

broken knoll
somber heath
#

@warped field 👋

pliant timber
#

and i'd like a code for searching the names on google and download the pictures

#

is it possible to join a vocal to talk ?

warped field
dull sluice
pliant timber
#

i am not here since 3 days

whole bear
#

Ask mod

vocal basin
#

reading through ToS of random website that has MtG cards on it...

pliant timber
#

so there is no vc i can join to talk with u ?

dull sluice
whole bear
#

You can use voice messages instead

#

My bad

pliant timber
#

at least is it possible to code what i want ?

whole bear
#

You have the right to remain silent

vocal basin
#

how many?

whole bear
vocal basin
#

for sending code, there is !paste

dull sluice
vocal basin
#

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

vocal basin
#

as for coding whatever you want:
troubles start when you publish it

#

at least most of them

#

@somber heath they can proprietarily use others' open derivative works, right?

#

Apache and GPL have the same "we can use what you made based on what we created" but through different means

#

copyright assignment is another way of that

somber heath
#

@nova stream 👋

limber oar
#

Hey

#

can i get some help

#

??

#

here??

#

anybody in here??

#

😦

vale plank
#

Yoo

#

any one have a tutorial for minecraft like hp in ursina

#

??

timid marten
#

I made some gingerbread :D

peak depot
#

I wont belive you if you don't come to vc and tell me u did it 😁

timid marten
#

Hold on 😭

calm ginkgo
#

@vapid mountain whats the new error?

#

i can hear you

vapid mountain
#

i cant turn on mike

#

why?

#

and screenshare?

#

it says no permission to speak in this channel

timid marten
#

@vapid mountain Follow my ping-

gentle flint
gritty mica
#

what yall talking abt?

vocal basin
#

@dry jasper "understaffed" being the translation of that? or something different?

gentle flint
vocal basin
#

@scenic trail could you please change your nickname to something non-invisible?
(see Name & Profile Policy in #rules)

scenic trail
#

ik

vocal basin
#

@dry jasper the role gives both

#

!stream 381154715293188106

wise cargoBOT
#

✅ @dry jasper can now stream until <t:1734973014:f>.

vocal basin
scenic trail
#

@dry jasper are you dad?

vocal basin
#

@soft axle temporary permission

scenic trail
vocal basin
#

@dry jasper I soon need to get back to work so can't watch over the video for long

vocal basin
#

it does

#

@quartz beacon "you want something with consistent phonetics? you can try French"

#

turns out I did remember correctly that Islam is majority there

#

no

#

I already have somewhat enough programming to do this month

wispy hull
#

💀

tight shore
#

ň§ô

#

§ô

#

§ô§

#

ô

#

§ô§

#

ô