#ot2-the-original-pubsta
652 messages · Page 74 of 1
i have a very bad idea
why not just use github for files torage?
maybe you can store all your word documents 
BitBucket is big because Atlassian makes Jira

2GB is max size for free acc. Plus, afaik, you cant upload more than 25MB of files at once
what about premium
Github Pro does give some extra storage ig
where is marked?
github student premium aexists 
@wide totem read #ot0-fear-of-python it might be of use to u
lmao zeeshanok is now prashant 2 electric boogaloo
That reminds me of this that I saw yesterday: https://supabase.io/new/videos/blog/launch-week-storage-2/directory-uploads.mp4
lol
lmao
heh
I need a good idea for anstartup
Like making apps is so saturated
I dont know, what, todo
How do I distribute my idea
Apps webapps?
an app that can make apps
wow
I was just warning someone else earlier that specific build has really bad broken z levels. Right click menus showing behind things, unusable, etc
i'm still on 10 lol
This channel is laughable man, completely different purposes for the editor
if you REALLY want to compare terminal editors...compare vim and emacs
or nano and micro or something
compare something that's...comperable
Hi
why did you post in all 3 channels...?
I'm trying to verify my voice
spamming will not help you with that
Messaging in different channels would not considered as Spam
the same message in all 3 channels is
I NEED HELP
PLES
where is the uefi firmware settings file thing,
i reinstalled windows in uefi mode
and now i need to know where the files are that allows me to change the settings
i have intel i5 core 3570 3.40ghz
-_-
Why is taking evening naps so scuffed
I just had a headache, lied down for an hour and now it’s 3 am
I have no feeling of tiredness
Makes ur brain lighter
Keen. There’s been a lot of work leading up to this PEP. Hoping it’s accepted and the python community reaps the consistency rewards. https://discuss.python.org/t/pep-665-specifying-installation-requirements-for-python-projects/9911
Also known as lock files. 😀 Been working on this for almost 6 months with @pradyunsg and @uranusjr. If this gets accepted I think it would mean rejecting PEP 650 as redundant (the installer API PEP). PEP: 665 Title: Specifying Installation Requirements for Python Projects Author: Brett Cannon brett@python.org, Pradyun Gedam pradyunsg@gmail...
When it's Brett Cannon you KNOW it's going to be good
minor
anyone know any good anime card apis
magic
@limber pollen

A list of most active GitHub users in Philippines.
damn
45k 
hi! I'm trying to make a rain prediction model using already existing data but get errors left and right. Pls help me in #help-mango
tf whatsapp
whatsapp desktop exists?
yes
it does? what jeez
do you need a phone to use it tho
that QR code thing?
Desktop
Yes
i have one thing against microsoft store
same
the thing keeps installing everything in C drive 
its "microsoft" store
lmfao understandable
What is this channel
this is a offtopic channel
I was about to pong
it's okay to do personal projects just for fun and learning for whoever reads that
damn
in what language the mac terminal
bash ig
hsab
I mean, just give a week and python and I can do that many contribs
you are smart, we are not 😔
I mean, that guy live with github
jeez
wot
hey while programming you have to move a few charakteres to the right sometimes how do you do it? for example if you need to get behind a closed bracket to start writing the next line of code
it seems extremely inefficient and wrong to move the right hand to the arrow keys for that task
y
thats smart thanks but sometimes i dont even want to the end of the line
thats a cool trick as well but my question was more about if its common to use different keyboard layouts with special keybingings or are just typing the closed bracket them self for example
The navigation keys are all on the right hand side, many programmers prefer to use two hands on the keyboard and only use the mouse if it's quicker
In fact I made an entirely keyboard controlled console minesweeper in python lately
Still looks like classic windows minesweeper, just ascii and wasd
My point is that's a perfectly valid position for the right hand
yeah i guess you are right
Ctrl up and down in some editors will move to the next code block
Add shift to any arrow key sequence to select
I don't have a laptop handy I can't remember what alt does with arrow keys
da hek man god :prayage:
laaser keyboard is the deal
x
different keyboard layouts/additional keyboard layers exist and can help with that. e.g. https://dreymar.colemak.org/layers-extend.html extend layer to do stuff without moving your hands from main part of the keyboard 😄
btw, if the closing parens was automatically added when you were opening parens, then IDEs usually recognize writing closing one as matching it 🙂
A treasure trove of keyboard wisdom. Layout tips, tricks, modifications and additions await in the Big Bag! Centered around but not limited to the Colemak layout.
thank you
I have unfortunately aged
is that a new disease?
yes
yo are memes allowed in here?
Guidelines on conversation etiquette.
Nice, I actually found this one which seems to be lightly based off of that same theme
Ocean Space
There are a lot of Monokai themes
another one I found was "Material Deep Ocean Theme"
also The Night Ocean
The other one I found was the Red theme (default in VSC), which I call VSCode Eternal lol
ye
I'm still thinking of which VSCode theme I should use
no more yucky microsoft icons
what type of themes do you like?
Colorful and bright, or some more muted colors?
Probably muted
The one I went with for a long time was default dark
I dunno then, I'm the kind of person who uses very colorful themes
I think Ocean Space is my favorite
im too lazy to change defaults on any software i use
my terminal is probably the only thing i've spent time customising a bit heh
I customize my terminal and vsc mostly
I prefer Horizon
this is probably my favorite terminal customization
ok, so quick question, what extension is this from
OhMyPosh + Powerline
I actually like the way this looks
Is there one where it allows you to customize the font or are they all hardcoded
Change it in VSCode settings
How would I go about that?
⚙️ > Search: "font"
best theme
I will have you know I only spent 2 hours on this!
The color coding bit lol the code was already there
I lightened up on the color saturation a bit
@nova ember Is there a way I can invest in a high tech Vesterbot?
2 things, 1) is there a reason you’re not using elifs? And 2) what’s with the getattrs?
I realize now you were talking about the theme lmao nvm
I can still tell you why. If I use elifs, there's the off chance Ill get more than one statement true (I know it isn't possible based on the conditions, but I'd rather be safe)- which I dont want.
As for the getattr()s, as far as I can tell, there's no difference between:
get_fish = getattr(CommonFish, "gl_name")
#and
get_fish = Commonfish.name
I think using getattr() is easier to look at, especially when I cant color code Commonfish or gl_name
Perhaps it's bad practice, it seems to be the common theme with my code, but she's functional lol
what's there "being safe"
It has to fulfill one of the conditions
There's no way for it not too
Using all ifs will only allow for the first true statement to be printed
And elif does the same
There's no reason not to use elif
elif would make it so that you don't even have to specify the first number that you have there
You could just do
if chance < 10:
# code
elif chance < 20
# code
elif chance < 70
# code
Because it only passes on to the next statement if the previous one wasn't executed
Its the other way around. Elifs return only the first true statement
Wdym?
Both of those snippets of code would do the exact same thing
with elif and with if
Wouldn't they?
x = 4
print("The following return true: \n")
if x >= 1 and x < 5:
print("First Statement")
elif x >= 3 and x < 7: #Replacing if with elif
print("Second Statement")
Elif returns First Statement and if returns both
yeah
but for your code specifically, it never overlaps
so there's no reason for you not to use elif
!e This ```py
import random
chance = random.randint(1, 100)
if chance < 10:
print("less than 10")
elif chance < 20:
print("less than 20")
elif chance < 70:
print("less than 70")
elif chance < 85:
print("less than 85")
elif chance < 95:
print("less than 95")
elif chance < 101:
print("less than 101")
does the same thing as this
```py
import random
chance = random.randint(1, 100)
if chance < 10:
print("less than 10")
if chance >= 10 and chance < 20:
print("less than 20")
if chance >= 20 and chance < 70:
print("less than 70")
if chance >= 70 and chance < 85:
print("less than 85")
if chance >= 85 and chance < 95:
print("less than 95")
if chance >= 95 and chance < 101:
print("less than 101")
@daring jay :white_check_mark: Your eval job has completed with return code 0.
001 | less than 70
002 | less than 85
(sorry for sticking all the if statements together, i didn't want to get muted for posting too many newlines)
Np I can still read it. Im well aware of the details between ifs and elifs.
Because I had it the other way around (thinking elifs posted all true statements), I thought ifs would be better regardless of overlap. I tested this once before because I noticed the output for the code was different when I swapped between them. I just stuck to using ifs and the only real difference (without overlapping conditions) are semantics really
ifs are a lot less readable (imo) because its harder to follow where a new "block" ends and begins
It also makes you write more conditions sometimes (if chance >= 95 and chance < 101: instead of just elif chance < 101:)
Are they the same statement?
No, but in this cases where there's no overlap, they do the same thing
Do you mean like this? (This is a separate file I was using to test other functions - why the numbers different)
yes, that works
It would only ever be possible I get rare or common because only the first true statement will print and ignore the rest
that's not how it works
You could get any of those values
If you run that code multiple times, you'll see that you can get all of them
although some will be harder to get than others
I have no clue. Here's the classes they're referencing:
All the fish get added to this Inventory
The classes they're referencing don't matter at all
the second part is correct, yes, but you could still get the Treasures or UniqueFish
Only one of those statements will ever evaluate to true
And that will be the one that runs
Selecting 16 marks the first one as true and selecting 98 only ever marks the second one as true
But the top one here would be correct
I misread the first block. I skimmed over it thinking the same conditions applied and didnt notice the < symbols
Hello
that's unsuall
Beep boop
🤖
Investments will be accepted for Vesterbot 10k. The current Vesterbot 9000 doesn’t have that option
Sefbot confirmed. Ban him.
Impossible
Looking forward to it :)
henlo off topic people
:incoming_envelope: :ok_hand: applied mute to @grave dagger until <t:1627782057:f> (9 minutes and 58 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
lol
damn
my code broke, i changed nothing, relaunched the script, and now everything works perfectly
what the fuck
Your hardware suffered a bout of bad RAM
Sometimes you just gotta turn it off and back on
@median blade wait what
what wait
you have been replaced by dhzdhd
what
oh well thanks
i mean
i see. zee got replaced.
okay good nickname. thanks for help @daring jay
i got uodated in versioning
lol
is a backyard nightclub a good business idea?
business idea != safe idea
i think it takes a certain kind of person to reach my level of dumbassery
which of your attributes are you referring to?
hey, a feeloow dumbass
Lmfao
Lmfao
@lyric linden hi
hi can someone help me with js code ?
i am trying to fetch an api and save it as a var but i dont know how to do this
btw i am using wix.com
https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
this seems like good to me.
where exactly are you stuck?
hmm
bob
poop @slender echo
um
@small depot I know but he just kept telling me to basically shut up.
Yeah I know it's annoying
And according to eivl telling someone is wrong is apparently againts the CoC now..
Trust me, you would get muted and you don't want that. You ave a good history here especially in discord-bots channel, unlike him. Even take the higher road(no idea what the phrase is) and maybe say sorry, even though I don't think there is a reason for it. It'll make him fill so small, and you will come out for everyonr as the good one.
I don't want to become the good one i just don't want anyone to argue there xD
Yeah, some people are stepping over the line, breaking the Code of Condact and get out rom it easily,but the mods are handling every case they can the way they seem suits the best. Just leave it for now, and the next time he annoys you, or anyone else, goes straight to @vapid maple and don't continue it.
You had the high ground first but you lost it by responding.
My recommendation is not to 'respond in kind' to trolls or to people who respond in an uncivil manner.
On the internet it's best to simply not respond unless you have the full force of the law behind you
In this case, are you responding to a Russian cyberattack? If no, then do you expect leeway to be given to you?
If you expect leeway to be given to you, then I'm sorry, I don't think the Internet works like that
can i talk about stuff other than python here?'
yeah
Yes, I suppose infrared radiation can be considered light
well it says visible light specifically
our eyes are too weak to see it tho
but imagine an animal that can see infared light seeing a 6ft tall giant approaching them
if it's only from blackboody radiation, apparently something at room temperature emits 1 visible photon per 40 seconds on average
that's... really low lol
Huh that is pretty neat, due to free radicals
https://en.wikipedia.org/wiki/Fluorophore
https://petapixel.com/2020/06/29/your-body-is-bioluminescent-and-can-be-photographed-in-darkness/
eyyyy
so whats everyone here's music taste
mine is
odd
as in
electroswing rock steampunk slow and fast bass heavy type odd
So Caravan Palace?
Maybe it isn't so odd
Oh, damn
Oh
i rember this event
it was about a discord bot
and this guy wanted some help and this other guy like hunted him down cross servers
i was like damn im lucky all the people who've helped me are nice
is subnautica better than abzu?
They're not really comparable
i like subnautica its a great atmosphere, and then suddenly you get plot and get reminded that its a videogame 
oof
lmao
I thought the subnautica story line was pretty good lol
I loved Subnautica, I just wish I could play with other people lol
there is a multiplayer mod in subnautica
i use joe btw
lmao
lmao
lol wtf
wtf
I use arch btw = joe is arch btw = I use joe btw 
aboo use joe btw
@joe#6000 do you approve of this
I don't exactly want to ping him....
so somebody else do it ig
I guess he will havee to scroll through the channels and see this ¯_(ツ)_/¯
@grim seal 
sure i'll
lmfao you did it
why not, i got nothing to lose
kik
and got banned because of the ping
lmao
movinng
no pings i am on holiday next ping gets IP banned from pythondiscord.com
okay sorry 
but it's me that pinged
weird that you're saying sorry and i'm not
That sounds like a fun time 
shut up
nah
O.o
Do it
YeS bUt HoW yOu GeT mY iP
by hacking your mainframe
joe is with the fbi
Ah yes, very good use of the unlimited credits lmao
Imagine Joe still not knowing mine at this point
and overriding the quantum CSS stabilisers
he can see all your ips
joe is the fbi
Joe 100% could figure out my IP if he wanted asap
😔
lo
also pixels event
400 lmao
and using nanotech machine learning to predict passwords
i have like 28 unread
I never actually placed a pixel haha
Lol
my gmail has 999+ unreads
I was at 1,200 recently until I added a cronjob to automatically archive github emails after a day haha
who was it that complained pythondiscord.com idnn't have dnssec
me neither
Cloudflare gives pydis unlimited now??
Damn
Ye
Ffs
share the credits
ah it was @jovial island
I need to start an organization and get it really popular then grow a community and then get sponsored
Well I have the organisation
Or become joe
~~sure @grim seal ~~
guess who wins rick
Markdown fail
I'm talking stuff that's possible
joe wins.
joe always wins
you can make people join it by threatening to doxx them if they dont using masterhacker skills
I only wrote tests for the first time today
the cool kids don't write tests
~~ I already have an organisation~~
why would u test flawless code
time to check am i ip-banned yet
DNSSEC is one of the messiet thing ever
cant write tests if it throws an exception upon simply importing the module 
Funny thing about said tests, I had already set up codecov but all of the coverage was reported as zero.
Some have numbers, not always the same
So legit, the repo says 0% coverage
lmfafo yeah okay true
It's fucking great
"lmfafo"
Some force you to use a certain algorithm, but you have to enable it somewhere on your registrar
i am loading a page
lmao
my internet in this residency is very bad
lol
Time to send pigeons?
!e ```py
joe = arch = ...
print(joe is arch)
@cedar turtle :white_check_mark: Your eval job has completed with return code 0.
True
Honestly you slap a hard drive on a pigeon and you can have some decent speed
Send a 100mb file uwu
Diagrams! 
Akarys!
ah it loaded for me now
!e print("joe always lose" > "joe always win")
@jade bolt :white_check_mark: Your eval job has completed with return code 0.
False
yep joe always win
!e print("joe losses" > "joe wins")
@cloud tiger :white_check_mark: Your eval job has completed with return code 0.
False
"losses" :<
!e from ctypes import *; print(cast(pointer(ARRAY(3, c_longlong)(5773663579361011016, 7585223331086365817, 36715300348787)), POINTER(ARRAY(24, c_char)))[0][:22].decode())
@keen burrow :white_check_mark: Your eval job has completed with return code 0.
Hello, Python Discord!
LMAFO the text record got includedd in DNSSEC
Lmao
I kinda expected a rickroll tbh
!e
if "joe always loses":
print("wait will this get me banned")
@jade bolt :white_check_mark: Your eval job has completed with return code 0.
wait will this get me banned
Also what do we use Google site verification for?
search console
!bam 611418694245154847 staff disrespect
Aah
wham bam thank you ma'am
if you had misclicked that letter...

i thought it's something like "Come back when you read our #code-of-conduct and #rules "
Can't link to the channels when you're not in the server lol
I could link to the website pages I guess (that's what I usually do)
ye
yeah i mean we load a lot of assets lol
site still loads pretty quickly
You might be able to link channels because of discovery but not sure (cc @grim seal)
yea
a lot of those are single images
👀
nvm i pinged him first
lol
Oh BTW, kind of related question, can you list every subdomain of a single domain or you have to guess them?
I don't think discovery works if you are banned
nah you can't
have to guess unless the DNS server accidentally has zone transfers on
Right, thought so. Thanks
Hmm
guess can sometimes have hints, through google indexing doing the guesswork for you or for people doing non-wildcard certs for subdoamins
you will almost never trigger a zone transfer
Context is I have a record for direct access to my node not going through CF
So I can't even add Access to it
okay so consider you use 2 DNS servers
Mhm
that aswer for the same zone
you have a primary and a secondary
and the secondary runs an AXFR (zone transfer) periodically on the primary to pull an updated copy of the zone to serve
yeah
andd they generally are
it's only misconfiguration by the DNS operator that can allow for that
like i did bbefore i realised it was uncool 😎
Right, bold of me to assume things are correctly configurated
ICANN run a couple of servers that allow you to AXFR a bunch of important zones for runnig your own resolver
Ay, stuff
Pydis running its own internet infra from the bottom up when
That'd be such a fun project
hell yeah
It would be even funnier if you actually build the infra
I have a full internet at home
TLDs, root nameservers, TLD nameservers
running your own network lab is good and cool
Oi, that's sick
Hmmmmmm
I wonder how far I can go with my rpi lol
Good thing is I have gigabytes internet now, so I can go crazy
DNS is a component of it, all devices that want to communicate use BGP to establish sessions, I allocate private blocks of IPv6 to them
I could get many of those tiny rpis
Got to hop now, I can talk about it in more detail, just ask when I'm around
Cya
Running an AS takes money though 
Not much though
Not bad tbh
28 is quite good
I had 0.6MBPS two days ago
Now I have spikes at 980 lol
I think I'm limited to 1GBPS though, quite sad
Well, it was downloading from a Netflix PoP, that isn't really representative lol
Orange
ASN 5511
Yeah, as French as it gets
hi
Hello
so whats a YAML formatter
oof
my dear 747
Its a formatter for yaml?
What's so curs- oh. oh..
lol
hey
i forgor 💀
lol
whats yaml?
It Ain't a Markup Language
yeh
(Literally YAML Ain't Markup Language)
oh
what is it supposed to be
not "what is it not supposed to be" lol
oh
ok i get it

so what is YAML used for
its a markup lang usually used for config purposes
githut actions uses yml, pre-commit uses yaml, docker-compose uses yaml, etc
thought it wasnt a markup language
it doesn't really do markup of a document, yeah
it's more of a data serialisation format designed to be human writable
yaml stands for yet another markup language
hmmmm
but well, the name isn't important
how do i make a pull request
on github?
yeh
to your own repo, or to a different one?
i think ill just make it and see what needs to be fixed after i screw up
a diff one
ill tell you which one
here specifically https://github.com/python-discord/branding/tree/main/events
oh wait, we totally have a guide somewhere for this
we do
ive read it
but
making a pr is the issue
well i sent the wrong link
edited it
huh
i thought it would be ez but im here just talking to myself lol
oh wow, I can see why we want to redo the contrib guides we have
they suck
you should see two buttons at the top
i do
on what branch did you put your changes?
main ig
did you push the changes to the repo?
do you have a fork?
no, do i need to fork it?
okay
i need to add an event to the existing list so i fork this isnt it https://github.com/python-discord/branding/tree/main/events
ye, fork the entire branding repo
yeah, that's how git works
do you have a cloned repository?
yeah the forked repo from pydis
alright, nice
I suggest you put your changes on a separate branch
so make one using git branch some-fitting-name
hmmm
is this a command?
yes
where do i use it? im sorry this is my first time doing this
do you know how to open a terminal?
wait so cmd prompt?
ye, that one
its not connected to my github account im sure
that's fine for now, leading you through ssh keys would be a pain. Do you remember your gh passwords, you can just use that
and do you know how to navigate to the directory where you cloned your fork
i do
i cloned it on github
i thought thats what i was supposed to do 😦
how did you clone it on github?
You probably didn't do anything wrong, git just has really bad names for things
alright, good
open the command prompt
then pick a directory where you want to do your work
i need to install git?
actually, lets do this the easier way
Git for windows, yes
https://desktop.github.com/ download this
oh ye
true
thats gonna be rly helpful for me
i was actually gonna download that today but i couldnt
what do these mean?
i clicked continue
now what?
yeah, that's fine
hmmmm
so, you have a fork downloaded locally with your changes on it?
or did you just install gh desktop
that's good
and i have a fork on my profile
a branch is basically a timeline of code changes
what is the event you are changing
alrighty
or just name it your-name-feature
ye
not really, you would create a branch from the old name and delete the old branch, keeping only the new branch created from the late previous one
i see
alright, what now?
now you make your changes
i will not be publishing anything or making any commits today
ill do it tomorrow tho
so am i done for today?
ye
okay one thing, i have this what am i supposed to do in order to access the files to make changes?
show in explorer will show the the folder of the repo
ye, now you can just make changes as you would normally
then you just make those changes into a commit and push it into your fork on github. Afterwards, I believe you should be able to click a button to create a PR, but it won't show up until you make those changes
i'm gonna miss pink pydis logo
It shall be forever immortalized on the branding github repo https://github.com/python-discord/branding/blob/main/jams/summer_code_jam_2021/logo.png

b
b
This document contains installation instructions for the Debian GNU/Linux 10 system (codename buster), for the 64-bit PC (amd64) architecture. It also contains pointers to more information and information on how to make the most of your new Debian system.
debian installation guide
pretty useful
why debian? 
what do you think is best?
honestly... i'd take windows over it lol
ew
the software repos aren't updated , you have to install snaps i think etc
just gimme one sec. ima set up the vm
bruhhh 🤢
the software is updated and ew snaps
*or flatpak
software updates happen?
apt randomly pulls out snaps too which weird
the repositories don't have the updated versions at all. I think debian was/is stuck on an 8 year old lua version, not-so-latest blender version etc
it's updates aren't exactly "updates" imo
they are both the same installer
yeah it's pretty simple
do you value having the latest and greatest programs and whatnot?
no
because cpython does have a point that they can be a few versions behind
in official repos
you cna leave it blank
can I just skip that
hold up... even python is behind?
ok
yes
will it publish or commit it or something on github
alr got eastern time working
no u have to commit and push the changes
how do i do that?
and then it will reflect on ur fork in github
no it looks like python is up to date
how would this work if im in a vm?
oh
then if u want to merge ur chagnes to the original repo
just the usual settings
u have to make a pull request
ok
gentoo, lfs, damn small linux
oh right forgot about gentoo lol
debian is pretty damn lightweight though
yeh a 300 meg iso 💀
oh you think that's small?
yeah.... that was stretching it even for debian lol
how can u even get smaller then 300 meg iso
they have a 50 meg iso on their website
LFS 
how can a modern day iso be smaller then a iso from like 20 years ago 🤦
windows 95 is bloated lmao
bro u really comparing windows 95 to a modern day os?
yeh
does the 48 mb installer use the internet
yep
does the window 95 installer use the internet

yep
duh
bruh
lol
if it uses the internet, it doesn't even need a DE or anything
However, to connect to the Internet on a Windows 95 VM in VBox, the TCP/IP protocol must be installed
what does that even mean
wait thats not what I meant to send lmao
hm
it just downloads them on installing the actual os
you don't need a de anyways
internet or not
even wm
imagine using a DE 💀 /j
i run emacs as my os
i mean... sure
i don't think someone who actually wants to use the OS will not want any of those tbh
oh
/s
lol
I mean...
seriously i think you guys thought I was serious this whole time
emacs is kind of crazy though
comes with window manager, file browser, email client, web browser, calculator, version management
not to mention it's an IDE
lol
🤢 my friend said he wanted ubuntu (He is new to linux)
ok then let him hgeet ubunut
honestly tho... windows is better than ubuntu
very very true
by a lot
no
try it 
hgeet
ok
you will regret it soon
damn
wdym i've used ubuntu before
i have used it and it was a mess tbh
i'd rather take windows over it (although no brtfs
)
my friend literally went into a live usb and started getting hyped. He been using windows 10 since 2016
mess how?
well... good for them ig
I mean most concerns about ubuntu are snap
never seen sombody get hyped over an os 🤣
yeah
software support in general
but snap is still miles ahead of windows package management
huh?
given that there's none
wait nvm the windows 11 fanboys cringe
tf
atleast the softwares are updated which is more than ubuntu without resorting to snaps 
💯
I love snap
lmao
winget !?
yeah there's winget and scoop
🤢 🤮 🤢
lol
apt works fine too
lmao winget isn't even a package manager
and choco
it just runs MSI files
choco is weird
well yes thats how thigns are installed here in windowsland
now choco is what i'd call a mess
half done the deb install
it installs softwares (and updated ones at that)
would be done if I had done a fixed disk
scoop is still the best "package manager" for windows but winget is catching up lol
yeah ofc they are updated it just downloads them from their websites lmao
yeah
Hey @elder path!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
bruh
yes what else does an installer do
idk...
bruh
bruh
it's meant for installing, updating, uninstalling softwares?
it is a murderer
it kills my damn brain cells 🧠
what
yeh
damn
i wonder how you manage to handle linux lol
like I ever had any 😢
cuz im build like that 🦾
lol
what time is it for yall?
windows 11 time
it uses a webview for it's UI lmao
web dev is literally taking over
interesting
doesent matter of you like windows or not we can all agree windows 11 sucks
lol
it's not fully released yet... but for now yeah
lmao emacs has discord integration
emac moment
i have a pending w11 update
@wide totem
i think this guy uses vscode
can't put my finger on why though
wanna bet?
idk man
bro
no it's the fact that your profile is vscode
lmao
💀
@median blade
ur not funny
yes?
ok
ok
lol
check out my status
do you want me to defend windows 11?
no
yes
why would u??????
perhaps
yes
has voice typing 
u need to use windows defender 💀
which is awesome
i never use bluetooth...
(which sucks)
neither do i
not my problem
voice typing is based
lol
white teeth guys amirite
brij
imagine having blue tooth
the entire UI + animations are more slick and neat
lol
💀
settings app 
oops wrong emote
wow i was so confused lmao
lol
just get a good linux DE 🤦
no
I think windows 11 is entertaining at best
it's funny to see windows users talk about it
yeah, it uses edge web views for everything 
fax
ofc I would never actually use it
were on a higher plane of existence :buda:
I've got windows 10 installed in a vm just for a few games
debatable
like rainbow
r6s does not run on linux?
I dual boot windows 7
windows 7?
I think it does but kinda hard

sus