#voice-chat-text-0
1 messages Β· Page 325 of 1
interesting
is how I access the numpad
It gets the job done, even if some of the bindings are a little idiosyncratic
macbook keyboard is enough for most of us
keyboard I'm using is ZSA Moonlander
They're comfortable and well made I think Β―_(γ)_/Β―
And if you can afford it it's probably cheaper than physio therapy π
this is the desk/chair I have my eye on
Does the bike charge the laptop?
don't really care, this is more just so I can stim productively
maybe it can charge some batteries
That sounded like a PagerDuty level of pain
fish makes your fur shiney also
Fact
is anybody coding?
Ah yes
Down in #voice-chat-text-1 they are I think
yeah but they are troubleshouting some docker stuff π¦
chained to a radiator in a basement would help you lose weight also
I just come here to listen to people who are smarter than me when I remember to shut up so they can talk
to be safe ... you may want to start talking .. just to be
a big box of chocolate bars is happiness
The power of topic hopping
maybe he is also have lot of background noise like me
My co-worker is trying to con me into picking up food
What're you getting?
does anybody want to peer coding?
What're you working on?
Omg I love Bill Withers.
right now im building some django templates for an app
and God knows I hate front-end part ahsahah
@regal pike maybe mine some cryptos
Er, sorry I stopped listening for a second. Where did this conversation go?
skillshare is good website
Alright alright change the topic please.
Quantum Space Folding or packing more in a suitcase when needed
Yes please @regal pike, not server appropriate.
@silk dust @regal pike π’
π

for ebooks go to https://libgen.is
Library Genesis is a scientific community targeting collection of books on natural science disciplines and engineering.
Yep. They had to cancel a bunch of surgeries. Kind of sucks.
if I want to have a styles.css archive into my django project where it has to live?
when you download any file just scan it once on virustotal.com
I'm reading "Kafka on shore "
Does anyone wanna join? Reading it together I mean
hasa nyone done any new stuff with text to speech using python
hell yeah
if you want an extra layer of security in MAC or something like that you can use a Virtual Machine
Let's read it again please
Currently I'm into his work
Hahaha in which chapter are you on currently
interesting
Chapter 5
vm sucks tbh
Can we read now?
maybe, but if you let people to get inside your Kernel you are done...
how vc?
Yup
I don't have the permission to speak lol
Then how we're gonna read?
yep this will happen everywhere not just for the vm, I was saying in general vm sucks coz it's slow
that really depends on your machine isnt it?
but yeah secuirty wise it maybe a good choice
because Windows 11 has the Kernel isolation feature wich its basically that
Not exactly,
There are certain constraints
well idk
Join a vc
is there anybody who is using Django?
how can I provide CSS into my template and for the server-side?
Cause I keep having troubles
[05/Jun/2024 18:16:13] "GET / HTTP/1.1" 200 860
Not Found: /css/styles.css
[05/Jun/2024 18:16:13] "GET /css/styles.css HTTP/1.1" 404 2296
[05/Jun/2024 18:16:15] "GET / HTTP/1.1" 200 860
Not Found: /css/styles.css
[05/Jun/2024 18:16:15] "GET /css/styles.css HTTP/1.1" 404 2296
[05/Jun/2024 18:17:21] "GET / HTTP/1.1" 200 860
Not Found: /css/styles.css
[05/Jun/2024 18:17:21] "GET /css/styles.css HTTP/1.1" 404 2296
can you tell me how to easily do it?
βββ README.md
βββ __pycache__
β βββ manage.cpython-312.pyc
βββ _ogame_professor
β βββ __init__.py
β βββ classes
β β βββ account.py
β β βββ planet.py
β βββ database
β β βββ __init__.py
β β βββ data.py
β βββ main.py
βββ db.sqlite3
βββ local
β βββ editor
β βββ settings.json
βββ ogame_professor
β βββ __pycache__
β β βββ __init__.cpython-312.pyc
β β βββ settings.cpython-312.pyc
β β βββ urls.cpython-312.pyc
β β βββ wsgi.cpython-312.pyc
β βββ core
β β βββ __init__.py
β β βββ __pycache__
β β β βββ __init__.cpython-312.pyc
β β β βββ admin.cpython-312.pyc
β β β βββ apps.cpython-312.pyc
β β β βββ models.cpython-312.pyc
β β β βββ urls.cpython-312.pyc
β β β βββ views.cpython-312.pyc
β β βββ admin.py
β β βββ apps.py
β β βββ migrations
β β β βββ __init__.py
β β β βββ __pycache__
β β β βββ __init__.cpython-312.pyc
β β βββ models.py
β β βββ templates
β β β βββ core
β β β βββ landing_page.html
β β βββ tests.py
β β βββ urls.py
β β βββ views.py
β βββ db.sqlite3
β βββ front_end
β β βββ css
β β β βββ styles.css
β β βββ html
β β βββ links.html
β β βββ skeleton.html
β βββ manage.py
β βββ ogame_professor
β βββ __init__.py
β βββ __pycache__
β β βββ __init__.cpython-312.pyc
β β βββ settings.cpython-312.pyc
β β βββ urls.cpython-312.pyc
β β βββ wsgi.cpython-312.pyc
β βββ asgi.py
β βββ settings.py
β βββ urls.py
β βββ wsgi.py
βββ poetry.lock
βββ pyproject.toml
```py
i figured it out haha
tree command
bash
tree
yeah it always happen XD
absolute king
let me show you my settings
#settings.py
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.0/howto/static-files/
STATIC_URL = "front_end/"
STATICFILES_DIRS = [BASE_DIR / "front_end/css/"]
...
```py
D- day
@still herald u still reading?
The problem is, we're not
Still looking, Heiwa. I'm having to refresh myself on Django
I'm pulling skeleton.html into landing_page.html, but I would like to be able to load the css into skeleton
Using some line in the HTML of landing_page.html like this:
<link rel="stylesheet" href="css/styles.css">
Are you loading it at the top?
#landing_page.html
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-slate-900 text-slate-50 text-base">
<header>
<nav>
<ul>
<li><a href="#">Overview</a></li>
<li><a href="#">Data Customization</a></li>
<li><a href="#">Account Calculator</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<main>
<p>main-content</p>
</main>
<footer>
<p>Contact</p>
<p>Discord</p>
<p>Done by Abraham Kalume with Love for the community.</p>
</footer>
</body>
</html>
Oh I see the issue
Back in a bit
Currently you're having it look for the file directly instead of having Django load it properly for you. Probably be more beneficial if I link to where it is in the tutorial, as I don't know if I can properly explain it: https://docs.djangoproject.com/en/5.0/intro/tutorial06/#customize-your-app-s-look-and-feel
What that dictator did, was not preventable, basically because Himmler was the orchestrator
thanks mate
{% load static %}
<link rel="stylesheet" href="{% static 'polls/style.css' %}">
Like that's the part that's throwing it off, I think
Yeah I hope it helps
Hemlock, can you pop in VC1 for a moment please?
Hell yeah Hemlock! It worked as intended!
Tyvm!
So, how do you guys consider yourself at front develpment?
Any idea on how to build something from scrach without commiting as crazy?
bad sentence
sry do you mind reapeting what you said about Django?
Sure, it's not worth learning or using. It's method of working (Server Side Rendering) has long fallen out of mainstream use.
don't tell me that please XD
so if you want to develop using Python what should you use?
@regal pike you like php then why you are in python discord
So is Django bullshit or dont? hahah
But what do you do if you want to develop on Python?
idk
Nothing? RestAPIs?
Python is mainly used to glue stuff together.
Though my work uses Flask for parts of our application
but you can use Django with the REST framework right?
and basically you'll be building a RESTAPI right?
You can but itβs like bring SemiTruck to move a coach.
so basically you are telling me to learn JS and dive into React or some framework like that for building the frontend right? @amber raptor
Yo what's happening here? XD
I feel like this is scaling for some reason jaksjaks
Guys, you should not make laugh out of people beliefs...
YEAH
LION movie
Well, im not agree with you
Im just saying that nobody should bully peoples beliefs...
What's going on in here?
Let's just in general avoid making generalisations about whole groups of people.
brb
have fun respectfully
People were giving their opinion on Bollywood
Ah
@regal pike https://www.imdb.com/title/tt3741834/
yep this one
epic movie
loved the ending
its lion not leo
in my country it was "leo"
ohk
if i remember correctly
Where did everyone come from?
@deep forge what did you ask? π
Ah, just said I asked another question on Reddit that will probably cause an outrage.
What did I miss?
Wellk guys, it's been a pleasure, gotta go for now ^^ Stay well!
https://www.imdb.com/title/tt3741834/releaseinfo/?ref_=tt_dt_rdat#akas i dont see leo here
Bollywood, angle shots, racism, zodiac signs, what is happening...?
just watch the movie lion and ur gonna understand
CHAOS!
have fun respectfully
@whole bear Check the #voice-verification channel. That'll tell you what you need to know about the voice gate
thank you
Happy to help
how to play valorant on linux ?
With great effort
The amount of times OS get mentioned in a 24 hour period in VC
Does anyone plays counter strike 2 here?
And I die inside every time it does
I could never get into it
Ikr
Lol
@silk dust your mic is leaking
Thanks
@still herald What's up?
Running on a 2020 Apple MacBook Air M1, Linux VM via QEMU. Unoptimized build of V.
Support the development of V: https://github.com/sponsors/medvednikovβ
https://vlang.io/compare Interesting comparison on their site to other langs
Haven't heard of comfy
I'll take a gander
Oh apparently I have
Thanks past Hemlock and your shitty memory
https://github.com/comfyanonymous/ComfyUI?tab=readme-ov-file#apple-mac-silicon Looks like they have a section in their readme
Micropython π
it just works but its very slow
Does anyone have tips for optimizing Comfy UI performance on a MacBook M2?
Oh that I don't know
PyPy is surprisingly good though
Yo
!stream 343834855882227724
β @cedar mason can now stream until <t:1717616956:f>.
home assistant?
nope
i identify my skill as newbie. So, what i recently learned that, you dont have to train your program with a ton of data. You can train your AI just with like 20 to 100 data and still get an excellent result with high accuracy
but i dont think its work with nlp
I have no idea, all the ML and AI stuff is way over my head
#data-science-and-ml would know more for sure
bro its on his local host
Yeah I have no idea
@cedar mason just try installing Home assistant and ollama on same network
so that both can ping eachother
Okay
So same subnet?
yea tq!
yes, as far as i know, device cant talk if they're in different network
if they are able to make network then device can communicate
but in his case HA is on cloud and ollama is on localhost
Gotcha
heiwa will give you peace
well i rather have people who will be paid for smash their skulls eachother
while I have not to do it
XD
play that onion router, maybe it can connect your ollama
i dont like free violence
paid violence
i buy one
no, its a chat app
ahh are u taking about boxing?
people really play these kind of games nowadays?
That is what i was wondering about haha
go play that cod
ahhhh
demn
hahha
same problem with me
in engineering or design?
never make a beautiful eye catching wonderful website
i dont follow u
bc ... beautiful in terms of engr or in terms of design
well i dont really care about engineering haha
damn
voice is suppressed.. @cedar mason
my problem its always the beauty and visual atractiveness
btrayed
Iβm keeping my microphone off due to the considerable construction noise in my vicinity.
I mean, i prefer work on logic
i'm not a ui/ux guy
me neither
i'm listening to music while making functions πΆ
me when i work with front end
but not with bckend
i died
functions with template type params
teletubbiesπ
backend = no sleep, no eat
you even have to poop in your own chair
btw, you play pico ctf?
yes its finished in march i guess
i am just bug bounty hunter
well, I assume its time for watching some tutorial on Tailwind XD
or you can call it independent security researcher
i see
tutorial for tailwind? who needs a tut for that
because one thing its to know the syntax, and another one its knowing what you are building with that syntax ahsjahsjah
true
just now i learned computer architecture in university
what?
tailwind is kids play
I had a hard childhood XDDD
hahaha
good night everyone
ce ya bud
ahahaha
bye
guys, if you want to have a fixed layaout for a header the main and the footer using tailwind, would you use Grid utilities?
aa
theres a guy named ben eater
make me a wonder why theres man who understand computer architecture that well
and what makes me shock is that
i know
you sound choppy
damnnn
for free?
shit man
yea'
im suppressor
i know
hello
game/username password thing
so u can play a game and what not and u can have a username as a leaderboard
and u can log into ur last save to beat the highscore
i see
What is it for? Assignment?or training?
Damn people showing off spanish accent in vc
Hermanos dont leave me valeria burrito
im building off my finale project
just for practice
rr
yea
u use pygame?
no im using turtles
yea
so the u dont use pygame at all and making the game from scratch?
good for practice
i see
making shitty 2d pictures of plane game that shoot alien ufo
nice
having trouble with this damn for loop
dopers
wdym
so i open a file.txt
and then an widget input pops up and u have to put in a user name
once that user name in entered
it goes through the txt file and checks if it is already in there
if it isn't then it add it to the file
if it is then it makes you do it again
yes of course why wouldnt i
are you sure u use correct method to read the file .txt?
maybe you want to learn the basics :)))
her i wanna learn the basics
I quite enjoyed automate the boring stuff
nah i learn the advance stuff
Nothing, for a while I thought I was dreaming when u guys were talking and then I wanna to sleep, I'm smoking too much these days hahaha
hello!
Jaime Teevan, Chief scientist said Windows Recall is OKAY π
Someone wants his next paycheck.
not a one issue with this first implementation, we did perfect!
Such a pathetic outlook
"we may have overlooked some things, we promise to do better"
BRB
could someone help me with a programming problem
it might be easier to do it if I stream
I have a program that tracks information for a card game called hearthstone replay. the information that im concern with is deck size and number of spells played each turn. I want to take snap shots after my turn is done and send it to an csv file for the purpose of visualization
mind if I move down to code help
a snap shot of your screen?
no of the data
is it alright if I explain in code/help chat
dont want to interupt there conversation
how is the data represented
.
Android studio
If you like these video's, you can now support us for as little as $1,- on http://www.patreon.com/survivalguide :)
Follow us on Facebook! https://www.facebook.com/dutchsurvivalguide
The Netherlands is a great country, except for this one thing: the climate. With an average of 100 minutes of rain per day, this place is just very, very wet. Here...
Probably won't fix it
But it at least eliminates the possibility that it's using the wrong pip
I'll start hunting
Thinking
python3 -m pip install cuda-quantum==0.7.1
@upper basin
I don't think this would make a difference but again, just eliminating variables
Thank you so so much.
I am really sorry for bothering so frequently.
Love you sir.
!pypi cuda-quantum
linux only wheels.
Hemlock, I found this which explains why distutils isn't being found.
So, python 3.11.9?
Worth trying
Ok, I'll try to set that up now.
I'm not sure what I can do, because I can't even get it to install on my rig
It might work with conda but i really don't wanna
Back in a moment. Work has me running around today
I'm soo sorry.
Same.
It's weird, I can't install 3.11.9
I couldn't get any working 3.8 and higher
But I'm doing this on Windows, not WSL, so I'm not sure
Yeah, you're not wrong
We unbox and check out Robosen's Optimus Prime robot, which actually transforms between his iconic vehicle and robot modes with voice commands. The auto-converting Optmus Prime impresses Adam and Norm with its stability and range of motion, and we dive into some user-generated animations that stress the limits of its movement!
Learn more about ...
Nothing wrong with that
Keep at it
Every adventure requires a first step, as they say
@urban abyss okay day 2 im now making a calculator
we have addition and subtraction so far
adding division and multiplication soon
would division be "/" and multiplication be '*'?
okay the answer to that question is yes
division and multiplication added
Should I make it to where depending on what you chose it would say something different after it had given you the sum?
Bye guys
@thin otter π
@midnight swan π
join a voice chat and contribute in the chat,. normally we pay attention on the text channels while we are chatting ^^
Oh sorry, will do
A network its a bunch of devices connected between each other
I will send you a example
I looked up a fullstack job
They demand that you are also a system architect
@whole bearπ
See ya later 
Helo
Hey bois
@midnight agate Good to see you poke your head in from time to time. Hope you're doing well
Download the best classic and new games on Windows, Mac & Linux. A vast selection of titles, DRM-free, with free goodies and 30-day money-back guarantee.
I figured as much.
pip freeze > requirements.txt
?
@vale plank could you please enable PTT, your tapping is not very conductive to the conversation we're having
"Find what you seek not seek what you find" a qout from a friend who found the qout in a meme
So sorry
No prob
@undone rune @keen slate π
automatic gain control is unpredictable,
echo cancellation is just wrong
#voice-chat-text-1 message
some types of digest authentication, to be specific
@stone latch π
hi
@jovial flume π
@queen dust π
I'm sorry but I have absolutely no clue on coding tbh
just started learning like 2 days ago
That is, in fact, a prerequisite to begin learning about it.
This is a pedagogical server. Learning and teaching is what we do, here.
Also socialising.
Yeah
Sometimes, there are puns.
π
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@ember sluice π
Mhm. See above. π
@flat hedge π
Hello, @somber heath How are u ?
isn't it summer right now?
cool, didnt know you were in australia
!kindling
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
wait would it be possible to build a renderer in c++
and what is a renderer precisly
2d and 3d
I thought you build C++ programs, not render
wdymbt
well thx i think ima make a faster renderer for blender
This is a common argument, and one we have answers for.
I'll leave you to consider that.
yeah, expected
where did everyone go π¦
im there
I'm here
wanna game @pallid moon
jk actually, I remembered the time back when I got shamed for making discord bots in python bcz it's too slow, I wish I knew the answers back then
which game, my laptop isn't one that can handle many
rocket league
?
farming simulator 19?
oh wait can't play rocket league got banned for being mad
i gotta try installing it
maybe it won't lag, hopefully
farming simulator i never played but sounds boring π
its payed?
yes
oh rocket league is prolly payed too
need 4gb ram for that
no its epic games
I have 8!
rocket league is epic games
I see I see
I think there must be other specs requirements
and mine arent the best
wich games you own @pallid moon
not many π
no payed ones:
minecraft, starcraft 2, trackmania
i dont have paid access in trackmania
and i suck
so yeah prolly minecraft
which I also have cracked π
i've never played trackmania before
lol, I'm into it like 1 month and I still can't drive properly
lol
tbh I'm not in gaming mood anymore sry
thats fine
hello! I am new here!
hi @eager vector
You've found your way to Python Discord, a ⨠community⨠dedicated to the instruction and learning of the Python programming language. This particular text channel is the accompanying text channel to the Voice Chat 0 voice channel.
We often talk about Python.
We often do not.
Some channels are dedicated to a topic.
This one is not.
I am gonna do all of the above. Cheers!
What did I just build π
My alarm clock says hello
well can't help but say hi back
@nova wave π
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Have to send 50 messages
@somber heath Whats your experience with Py
nice
How about you @iron gyro
Thats sick, Keep it up
@crystal fox 
@crystal fox Whats your experience with Py
@whole bear Same question for you
yo
yo
@torpid torrent π
The Floor-drobe is the latest laundry hack to hit the market! Join the revolution and clean up a messy bedroom today!
Recorded live on twitch, GET IN
https://twitch.tv/ThePrimeagen
Become a backend engineer. Its my favorite site
https://boot.dev/?promo=PRIMEYT
This is also the best way to support me is to support yourself becoming a better backend engineer.
Reviewed excerpt: https://lkml.iu.edu/hypermail/linux/kernel/2401.3/06971.html
By: Linus Torvalds...
you need send 50 messages
can we summon a wild @gentle flint
I'm available now for the next 10 minutes
but I'm guessing you're in bed
Vasodilator improves blood flow. News at 11.
I could pop some Viagra in a corporate setting.
If anyone asks me what I'm taking I'd be transparent about it because it would improve my output and the bottom line.
@vast tundra π
hi
@wide lotus π
I meant the hp printer app requires internet and a hp account with your phone number . Then when you print i reqires internet and says the files will pass through more than 2 hp server before printing .
This is still accepted and no one is complaing
It is every hp wifi printer
I never knew that was a thing until i bought it
This printer does not even have fucring USB port to print directly
Hi
@gentle willow π
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
why my mic is suppressed
what do you do @somber heath
You'll need to visit #voice-verification.
@whole bear π
yes
they are saying dirstlly send 50 message in chat
i remember zoom bombing
Im impatient
Where you from
What part of England
Oh
You sound British
Like ur from Bristol orsum
Thatβs nice
Howβs the weather now
What temp
Wait what
In the beginning of summer?
Iβd thought it would be a lil higher
Even though youβre not in the summer season yet
Oh shit
Summer for us is may and onwards
Like end of may
Thatβs when things start to heat up
Protect ur skin yung lad
G2g
Anywhere in this server
The whole collective count must be at least 50, but don't spam it'll get you blocked from VCs
The idea is to give VC access to people who contribute to this server in any way, when you actually start contributing 50 messages mark can be reached without much effort.
The bot channels aren't counted.
!e
code
!e
import os
os.mkdir("dir")
for i in range(9):
os.mkdir(f"dir/subdir{i+1}")
:warning: Your 3.12 eval job has completed with return code 0.
[No output]
Anywhere except for #bot-commands. If you chat for a bit, say in #python-discussion, it doesn't take long at all to meet the requirement.
You can also participate in voice-conversations by posting in the associated text channel. People do read the messages.
oh based
proof God exists
the mandelbrott set
what is it the best channel in youtube for learn python
:incoming_envelope: :ok_hand: applied timeout to @whole bear until <t:1717971274:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
!tvmute 828001400625692755 2w Spamming to reach our voice verification requirements is strictly prohibited. You can still join voice channels without being verified; you just have to get some legitimate server activity in order to get verified.
:incoming_envelope: :ok_hand: applied voice mute to @whole bear until <t:1719180512:f> (14 days).
Hey OpalMist, I have a doubt
selection_clean["TEMP"]=int(selection_clean["TEMP"])
I have data frame which name is selection_clean and have a serries about TEMP, the thing is I want to change the format from string to int
and sorry if I sudenly mention you 
I don't do pandas. Though it is built on numpy, so maybe there's a numpy.ndarray.astype method.
Or equivalent.
ah, ok" got it
thanks, let me search in that
Also, you had a question, not a doubt.
I may doubt if what I am doing is correct or not. I may ask someone a question about if I'm doing the correct thing.
English teachers in India get that wrong.
yeah I did this one, seems is not correct
thanks
!e py import numpy as np arr = np.linspace(0, 5, 10) print(arr) print(arr.astype(int))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | [0. 0.55555556 1.11111111 1.66666667 2.22222222 2.77777778
002 | 3.33333333 3.88888889 4.44444444 5. ]
003 | [0 0 1 1 2 2 3 3 4 5]
There may be a Pandas way of doing this.
ok thanks, finally found it π
where is the stream verification guys?
there isn't any
you need to ask a mod for perm
make sense, i will probably never have it ...
@astral runeπ
wait until a mod is in vc, then if you have something interesting you want to stream you can ask and they can temporarily grant permission
nvm
!e print("test")
:white_check_mark: Your 3.12 eval job has completed with return code 0.
test
lol
i made another stupid text editor guys
Hi
Hi
Wearing your dress inside out is considerably different from wearing it upside down.
@sturdy summitπ
Hello
How are you doing?
Where can I learn more Python on this server? I'm fresh with the language.
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
gluten tag
wilco women
That's a start.
You can also have lists, which are like a collection of such objects.
['apple', 'orange', 'pear']```
I say like, because the lists contain references to those objects, they don't actually contain the objects, themselves. It just looks like they do.
Is it normal for it to show RTC disconnected on web when it's still working?
what would i do without lists π
yes
Do you have some kind of a newbie bootcamp?
There is a tutorial at python.org in the documentation.
But also just hanging out here.
there is one on coursera named Python3 Programming
https://www.youtube.com/watch?v=_uQrJ0TkZlc This is a great course.
Become a Python pro! π This comprehensive tutorial takes you from beginner to hero, covering the basics, machine learning, and web development projects.
π Want to dive deeper?
- Check out my Python mastery course: https://bit.ly/35BLHHP
- Subscribe for more awesome Python content: https://goo.gl/6PYaGF
π New version available Watch here: https...
youve watched the whole thing ig?
@peak depot https://youtu.be/ZH26PuX3re0
What is Python Discord?
We're a large Discord community focused around the Python programming language. We believe anyone can learn to code, and are very dedicated to helping novice developers take their first steps into the world of programming. We also attract a lot of expert developers who are seeking friendships, collaborators, and who wish...
is that a ref to american psycho?
ref? nah, thats HIM
i never watched that movie
@scarlet halo was there any cosplay or costume challenge?
how did ur class won anyy prize?
cooperation
@desert hull π
i just used normal like water paint for the blood
i think we have the same tie
idk
@scarlet halo accept friend request so i can dm it to u
Ooo pretty
Sup how can i speak in the channel?
cuz my old drive was 512 GB
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
which super mario
super mario world?
1 2 3 was on nes
world is on snes
i was gonna ask something but i think it breaks rule 5
!rule 5
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
I'm on dark, and if I shake my phone, it looks like it wriggles.
Ooh. Snakey monuments do it well.
how do u have this lol
wikipedia page π
@rugged root in blessed can you set a characters color at a specific position without changing the character? i dont know if you understand what i mean but try
like can you get the character at a position
how
hemlock i love blessed
guys are you excited for GPT-5
Fancy autocorrect with googly eyes.
quick to release phones but with insignificant updates
One sec, I need to check something

nice bonnes
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
You rejoined a day ago
I was fixing my networks
lol
@rugged root make exception again for me?
pls, id like to talk in vc1
Thinking
@rugged root #bot-commands message
Currently doing this tutorial on Python. What do you think, is it any good?
This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
Click the βοΈ to change to a dub track in Spanish, Arabic, or Portuguese, or Hindi.
(Hindi dubbed via Melt Labs - https://www.withmelt.com/)
Want more from Mike? He's starting a codin...
I think my mum has a bit of a fear or using buses. It's probably not uncommon.
Little bit of claustrophobia, little bit of people are scary
Yeah
I think I get it, because it takes you to a place you're not familiar with?
Graduated exposure can work. Maybe try taking smaller train journeys before your big trip?
I have phone fear π
Yep
Yeah a lot of people do!
brb
!stream 1243210082649505863
β @whole bear can now stream until <t:1718034521:f>.
It might work better with ghee π€
Yeah because the butter can burn
I think they sell powdered butter too
you speak? @stark river
Corn country is the US
seen you so many times before
This video is still pretty relevant: https://www.youtube.com/watch?v=YFl2mCHdv24
Docker is all the rage right now. In 12 minutes I'll give you comprehensive introduction to docker, covering:
- What is Docker
- Virtual Machines vs. Docker
- Introduction to Dockerfiles, images and containers
- The Docker Hub
- Writing a Dockerfile
- Building an image
- Running a container
- Mounting volumes
- One process per containe...
@whole bear was it you who was asking? 
yeah thank you @stuck furnace
What
As in he has a fear of speaking over the phone or on Discord
Universities focus on scientific research and education based on it. Universities of applied sciences, on the other hand, offer a pragmatic education that responds to working life needs. Studies at a university of applied sciences (UAS) focus on professional and practical know-how and skills.
@rugged root did you find any?
Not any that jumped out at me
umm its okay. let me know when you find one
I only do exuberant math
tdd for the win
β― sudo docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
inotify-base-notifier latest fa7aec644f83 4 hours ago 14.4MB
@versed heath What's up, type it here
Can I ask one more question β
That penguin is not having a good time
The Penguin should be freaking the hell out, this is extremely low level shit that you can easily screw up.
Penguins aren't meant to go to space
This is like someone going "Hey, I built my own car, do you want get in?"
yes?
Not on chats
Meanwhile, compile bot just shoves it into container and walks off
Was just about to ask
added cursor
Also, all container runtimes are pretty much using ContainerD at this point
does podman use containerd
docker desktop has switched over
hell, even MIcrosoft adopted it for Windows
yea, I think they run servers
@still herald I know you're still looking at their pages. Close it
Omg
# podman --runtime /usr/bin/runc run --rm --memory 4M fedora echo it works
Error: container_linux.go:346: starting container process caused "process_linux.go:327: getting pipe fds for pid 13859 caused \"readlink /proc/13859/fd/0: no such file or directory\"": OCI runtime command not found error
# podman --runtime /usr/bin/crun run --rm --memory 4M fedora echo it works
it works
I think Hemlock picks frameworks based primarily on their mascots π
Not inaccurate
Β―_(γ)_/Β―
It certainly catches my interest more
Was I right?
Ahh ya
It's like a withdrawal after doing drugs when u come out from a toxic relationship
It's not easy
Close π the π browser
Yes sir
They're pretty active, but I think people sometimes don't find them because of the dynamically changing names
i can do github interactions entirely in emacs now
like a gimmicky text editor with hex codes
you use linux too?
hemlock
can i stream
to show you what i mean by my text editor
WHY WOULD YOU NEEDTHAT
you dont need 3 ais
also school trip tmrw
no .. whoever asked that
!stream 1159603930087575623
β @stone raven can now stream until <t:1718116306:f>.
I have no time to do any of this. Iβm too busy coding
