#voice-chat-text-0
1 messages · Page 384 of 1
thier is no permission to speak in that vc
@somber heath are you working on some project or what
??
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@vocal parcel
!voice
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.
!e
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
Wheeze
!e
re-listening to the same recording for ~20th time
for whatever reason
funny sounds sound funny
shar
after how many lines does the bot stop?
!python
for i in range(20):
print(i)
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.
discord is refusing to send my messages on the desktop client apparently
and there is no "cancel send" option
compared to the browser version
Run Python code and get the results.
perfectly descriptive name
a whole octave lower than it should be
or can not should
@gilded kettle 👋
content warning: see the file name
it's also loud
XD
the previous recording that was mentioned:
#voice-chat-text-0 message
an octave higher
@cedar mason how's using nix package manager to install stuff than AUR on arch ?
@cedar mason lawlessness affects everyone, that's why such option is not acceptable
i have arch and installed discord using it, it works like it does on window. No streaming glitches!
tl;dr: allowing to rob rich people will always eventually make them richer and poor people poorer
example: Russia
because they will take advantage of that same lack of law
even more
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.

!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@iron aspen
Hey emlock
@cedar mason this discussion is probably not server-appropriate
@cedar mason consider reading the rules and code of conduct
@cedar mason specifically rule 3
sometimes means domain specific language, but this doesn't seem to fit the context
likely https://en.wikipedia.org/wiki/Digital_subscriber_line instead
!rule 3
Ah right, forgot which one it was
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 ?
visualisations are important;
even if you're limited to just terminal output, you can still do that
I mean directly, through something you can look at
(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
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | L1 2 4 8 16M32 64 128 256 512H
002 | 1 2 4 8 16L32 64M128 256 512H
003 | 1 2 4 8 16L32M64H128 256 512
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!"
`
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!"
``
لغة البرمجة العربية ألف - The Alif Arabic Programming Language
پ
@winged stone 👋
Hello!!
Hello
@zenith ledge 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
@potent root 👋
hey bro
@turbid hedge 👋
@whole bear 👋
before AI?
Hi
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?
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
oh i have to go. nice to meet you, maybe we'll meet on vc another time
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?
cool
just need to improve prompting
thanks for the info, need to bounce. Hve a nice one
Sorry i cant hear clearly so crowded here
No worries
@harsh tulip 👋
Hello
@jagged pond 👋
hi
x = lambda a, b : a * b
print(x(5, 6))
@rustic shadow 👋
def myfunc(n):
return lambda a : a * n
@rotund hound 👋
hi

@indigo surge 👋
sup
what u mean
streaming
coding
i also might take your weather app from your github if thats fine
for what
i wanna watch
but im still learning i just know some stuff
thats fine
wanna try a python face tracker
Start your holidays on a high note. Spirited is now streaming on Apple TV+ https://apple.co/_Spirited
Imagine Charles Dickens’ heartwarming tale of a scrooge visited by four ghosts on Christmas Eve—but funnier. And with Will Ferrell, Ryan Reynolds, and Octavia Spencer. Also, huge musical numbers. Okay, we’re asking a lot. Maybe just watch the t...
So good ^^
@wind raptor what kinda movie did u say?
Christmas musical comedy. Big stress on the comedy

@whole bear 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@upper basin u have experience?
how old are you?
@upper basin u code quantum computing in python?
interesting
sounds like u got it down
@gritty mica 👋
I see thanks
Damn 3 days
:(
@somber heath u know how nested loops work?
can u eexplain 😭
Ive spent 30 minutes
var = 'abc'```
!e py for letter in 'abc': print(letter)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | a
002 | b
003 | c
!e py letter = 'a' print(letter) letter = 'b' print(letter) letter = 'c' print(letter)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | a
002 | b
003 | c
alright
!e py for letter in 'abc': for number in '123': print(letter + number)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | a1
002 | a2
003 | a3
004 | b1
005 | b2
006 | b3
007 | c1
008 | c2
009 | c3
yeah
1 sec
fuck
i cant share my screen
1 sec let me make somthing and take a scren shot rq
!code
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
!e py print('abc' * 3)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
abcabcabc
!e py print(1, 'abc', object())
all good
:white_check_mark: Your 3.12 eval job has completed with return code 0.
1 abc <object object at 0x7fb3339ac450>
!e py print(*'abc') print('a', 'b', 'c')
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | a b c
002 | a b c
!e py print('abc', end='*') print('def')
:white_check_mark: Your 3.12 eval job has completed with return code 0.
abc*def
!d print
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.
hm
!e py print('a', 'b', 'c', sep='*')
:white_check_mark: Your 3.12 eval job has completed with return code 0.
a*b*c
k
!e py print('a', 'b', 'c', sep='*', end='%') print('def')
:white_check_mark: Your 3.12 eval job has completed with return code 0.
a*b*c%def
alright
OH
WAIT
let me try now
to transfer over strings to floats?
and stuff like that?
Hi
How are u
int(input("Hello"))```
good
Ok
hbu?
So what are u working on
trying to figure out nested loops
No i need to be in server for 3 days
When did u join
just now lmao
Oh
!e py string_var = '123.456' float_var = float(string_var) print(type(string_var), string_var) print(type(float_var), float_var)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | <class 'str'> 123.456
002 | <class 'float'> 123.456
@gritty mica Sorry, internet cut out briefly.
It's time for dinner.
Ta ta for now.
!d try
8.4. The try statement
The try statement specifies exception handlers and/or cleanup code for a group of statements...
👍
hi how are youguys doing
Anxiety, despair, you know...normality.
hope it gets better for everyone
That's the best thing. It never does. 😃
@whole bear 👋
https://www.youtube.com/watch?v=Ve3OOWOK-s0
thoughts on OpenAI o3 ?
CNBC's Kate Rooney reports on OpenAI's final day of 'Shipmas.'
Ad Astra Opus
okay D:
super chill
yea, fucker deserved it
are you strong enough to stream or na
still chill

😔
I want someone as caring as jules
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
🔫
pew pew
@vocal basin hi
: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.
any one here ?
@whole bear 👋
hai
@arctic fern 👋
yo
Yo
https://en.wikipedia.org/wiki/Amerika,_Netherlands
https://en.wikipedia.org/wiki/America,_Netherlands
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...
Netherlands is an unincorporated community located within the Township of Concord, in Pemiscot County, in the U.S. state of Missouri.
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...
hellllooo
@viral viper 👋
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```
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
pyoxidizer if you want to recompile it into a standalone
there's a bunch of other options you have for that
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
help:(
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()
Hello
Hello 🙃
okay, well my sister used to call me "Danon" but that was already taken
@quartz beacon so i threw the "r" in there.
@marble mantle chto delaesh?
eating
priyatnogo appetita
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))
I bet there's a lot of russians, just with english nicknames and bio's
What on earth is going on here
can we chat a bit about smth? I really want to unlock the vc
wait how old r u?
20
unc
recently started learning C++ more properly
not sure if I want to continue
C++ is lowk outdated in my opinion
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.
if Fortran (the language itself) is relatively small, I should learn it
fetish on old as hell languages?
Fortran got updated in 2023
and C++
and C
and COBOL
COBOL I won't learn because no use for it
never heard of it
another old asf lang?
yeah
isnt that the first language ever?
the first thing that we today would consider a programming language
first somewhat structured language that can actually run on the computer
I cant consider myself as a programmer tbh, since my biggest project was literally gambling simulator, wrote with customtkinter
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
dang, yk a lot of stuff
this reminds me of what language I should resume learning
Haskell
you're just being an old languages enthusiast at this point
Haskell isn't that old
only 1990
just before all the Pythons and Javas and other
still old in my opinion
I feel like you witnessed both elizabeth queens births and deaths
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
Go is definitely useful
does these worth learning?
I've heard some people say Dart/Flutter are no longer that good, but I haven't tried those for myself
people say it's the best
cuz of crossplatform and stuff
this one seems to somewhat cross-platform too
though there it's just wherever BEAM can run and JavaScript
(BEAM is what Erlang and Elixir use)
@dim palm 👋
cant speak lol
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
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
@fiery coral 👋
and maybe shine
nvm blah can talk
chilling
Why do you sound like a child's book narrator @somber heath?
You sound like English Mr. Rogers.
Can I talk?
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
voice verification
i like it to be honest it sounds calm and understandable
it's not levee-oh-saw, it's leh-vee-oh-saaaaaaaaaaaah
brb getting food
oki
i guessed above 25
hahha ok
how old do you think i am
alright
its cold here00
why not?
At this point it's more of a disability
Im having connection issues
@brittle moat 👋
not sure
hyvä
@somber heath
@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 ?
found em!
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
Hi
hi
What's up
@graceful dagger 👋
Hey
your job or past job was developer opal ?
yeah i hope that for everyone
OK
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 🤮
I like to start new project s
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
@whole bear 👋
Hello
hi
I am not vc verified yet so ima just type in here
I've been there yeah dont go down that route
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i think positivity is great in certain mesure but it stay a placebo, doing real good thing are better
big file happened
I know a bit of Spanish
german is dope in music i find
Ramstein goes hard
Russian also goes really hard in music
@gusty valve 👋
yeaaah
guys i can propose you a project that will make life of pc user better are you intersted ?
Bye pixel
may I ask in what aspect?
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
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
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
@tough barn 👋
and without any lag giving the pc better performance
would it work with any base operation system?
in future i hope
ou can send it here or link are disabled ?
or the third option, the pinguin whos name I never remember
for windows atm
seems the best bet ye
ddang 50 msgs is a lot ngl
mac has a separate anti-virus system and it makes auto-clickers and assitent codes face a ton of trouble
I guess ill just talk about random stuff
I am new to programming and I decided to start out with python.
would a separate storage be required?, I mean, does it store everything you do and the changes in a separate harddrive?
best bet for sure
I am using the PyCharm IDE right now and I am following youtube tutoials to figure stuff out
yeah its nice because my college class i have coming up focuses on python i think
what college are you thinking about choosing if its not too impertinent?
Nah its all good
I am going to a lonestar college here in houston
I just wont say which exact one haha
no storage required
oh which degree?
For right now I choose the Associates of Applied Science - Game Development (Programming) option
links aren't disabled, but that specific video is somewhat intense with the imagery at times
But should I want to get into engineering I guess i could switch my degree plan later
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
what are you saying ?
to test the exe ? im noob
virtual machine ?
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
im fcking broke rly poor
dang
is that ?
no it doesnt need to be os
this verification takes forevs
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...
okkayy i understand xdd it can be a good idea
depends

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

interpreter languages are rlly strong thats for sure
lmao
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
the think is that I dont fully understand your objective so my advice is kind of bad
not enough smooth or having to making it rly smooth but for exemple vanguard of league of legend rly dont like that
📝
: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"
the software stores the files in the correct folder
based on the extension
biological neural networks
"learning from Amazon's experience?"
text len?
interested in the field?
not really, just having to deal with all the problems it causes
I mean, do you base it on the how long the text conteined in the doc is?
any example?,taking over jobs or smt?
nope i based it on the whats is writted after the dot of the name of the file
mostly AI generating thoroughly wrong code
it's creating more maintenance debt than it gets the job done
well...sintetic code is trash thats for sure
so like, A goes above B and so?, does it look at the title and classify based on that?
not on the tittle only the extension of the file
problem is that rn there is not enought high quality data so it doesnt rlly generalize well the code but rather just memorizes the examples
aaaa, now I get it
if its a mp3 or a Wav it fo on the music folder
ye ye
for emeple
and mp4 for movies for example
yeah or video
that's why (allegedly) AI can generate correct Dafny code
well now that would require you to give the "application" acces as a viewer which is tricky
incorrect Dafny code generally doesn't compile => doesn't get published
no i find an easier way
feels like you handle smt related
? ,sure, mind sharing it?
i need to try the .exe of the software can you open it and tell me if it work pls ?
I've never written any Dafny code, but I have worked with formal algorithm proofs before
i need to know if you need my library
k
mind explaining what a "formal algorithm proofs" is?
Azure Cloud might have a way to run exes
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)
using mathematics to prove the correctness of an algorithm
seems like memorizing tons of formulas
hi
np
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]
'Code'
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)
can't speak
crazy good
All I see is 2 pixels xD
better then nothing yk
am kidding
In this tutorial you will learn to create a runner game in Python with Pygame. The game itself isn't the goal of the video. Instead, I will use the game to go through every crucial aspect of Pygame that you need to know to get started. By the end of the video, you should know all the basics to start basically any 2D game, starting from Pong and ...
You are not allowed to use that command here. Please use the #bot-commands channel instead.
call me vakura
#python #tutorial #beginners
Python tutorial for beginners' full course 2024
Learn Python in 1 HOUR ⏱ : https://www.youtube.com/watch?v=8KCuHHeC_M0
My original Python 12 Hour course 🐍 : https://www.youtube.com/watch?v=XKHEtdqhLK8
Full Python playlist 📃: https://www.youtube.com/watch?v=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT
...
hundewasser is german (translated it means dogwater)
naw bro
4 ads
in discord
how many messages do i need
to speak i mean
50
nice nice
click the button and see what it says
yes
I guess I cannot talk yet @tough barn @solar jewel @whole bear
lol okay
just be active and send messages
he can hear you
thanks
but dont spam lol
yeah, gotcha
☕
top right
with the two buddies
@whole bear
i think shift crontrol y does work too
@prime echo👋
lol
Yahoy.
Pressure wash, paint red.
Golf.
@azure elbow I think you might have some sound issues you need to attend to.
bro i forgot my alsamixer internal microphone
I'm not a fan.
It's not naturally gender neutral, but it can be used as gender neutral.
@languid nymph@random siren👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
how about homo sapians will u take this offensively?
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.
perfect timing for me to come back
(was away)
@quartz beacon BG3?
oh wait
that one wasn't entirely sentient
uh
I might have to do something about this at some point
but not now
what u viewing in tor
\
YouTube
why vpn for discord?
because Tor doesn't support WebRTC
ohh i tend to sometimes use tor for different reasons
for leaks if i am poced?
"either store our users' data here, or don't store it at all"
Adequate means sufficient. It can also be used in a way to suggest less than ideal but sufficient.
@vocal basin whats temperature in russia?
Context and tonal delivery indicates which.
what part
your part
0°C
@narrow monolith👋
@somber heath allow me to talk
meanwhile SPb is 1°C
i wont say shit but free me
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
what happens when u forget to enable tor routing before discord and other ban social media
Omsk has around that temperature seems like
(just picked random other city to compare)
Im near Philadelphia tho
trump isnt even in office right now ( until some period) right?
Ye just joking
Irkutsk is experiencing slightly cold
Hello, Jikky.
I'm trying to remember what other cities we have
guess
Угадай блядь
arabic
egyptian
i never spoke english before
i once joined a vc but no one understood me
I forgot what was the coldest recorded place before Antartica broke the record recently
hmm
Have a desktop widget or something.
Oymyakon
(first remembered, then checked)
Then some kind of overlay.
I'm getting a third monitor delivered today
Or something in a tray.
a portable one to connect to small computers
Total???
today being today or today being since the last non-awake moment 
@pliant timber 👋
what do you need help with?
it's a bit long is it possible to join a vocal ?
Hello
@somber heath they're not in VC
@broken knoll 👋
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
hello opal
@warped field 👋
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 ?
👋
u can join vc but #voice-verification to talk
i am not here since 3 days
reading through ToS of random website that has MtG cards on it...
so there is no vc i can join to talk with u ?
ye u can only listen for now
at least is it possible to code what i want ?
You have the right to remain silent
how many?
After 3 days you may have the right to speech
for sending code, there is !paste
yes but im not sure how much google likes to be scraped or what else way exists
!paste
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.
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
@nova stream 👋
I made some gingerbread :D
I wont belive you if you don't come to vc and tell me u did it 😁
Ffs-
Hold on 😭
i cant turn on mike
why?
and screenshare?
it says no permission to speak in this channel
@vapid mountain Follow my ping-
what yall talking abt?
@dry jasper "understaffed" being the translation of that? or something different?
Spotify: https://open.spotify.com/track/4y1SGoepZSEhwFcT2TPZkJ?si=xJ-2As-9Q1uxTpMwpKRhZg
Cannabis känns daterat och är inte lika coolt som det en gång var. Världen behöver helt enkelt ett nytt berusningsmedel. Kanske är italiensk hårdost den nya superdrogen? Jag och Lil Åke undersökte saken.
Prod: Lil Åke
Text: Wilhelm Karlsson
Finns även på ...
@scenic trail could you please change your nickname to something non-invisible?
(see Name & Profile Policy in #rules)
ik
✅ @dry jasper can now stream until <t:1734973014:f>.
@dry jasper are you dad?
@soft axle temporary permission
is that his kid 💀
@dry jasper I soon need to get back to work so can't watch over the video for long
(@peak depot if you can mention that to them)
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