#ot2-the-original-pubsta
652 messages · Page 18 of 1
Ahh thanks
also learn the important bits of standard library
Assert, yield are the onlu one idk know
I kinda know random already
pathlib, contextlib, dataclasses, sys, asyncio
And os

does one really need to learn all that at once
and, if you want to become a python master, you have to do the impossible, master every inbuilt modules
I guess I usually learn the concepts while searching things up slowly
haven't needed the as keyword yet
def study(python):
for lesson in python:
...```
it's quite useful in some cases
has anyone mentioned itertools yet
oh wait
such as import ujson as json for using a faster json parser in place of the standard library
import something as something?
Wtf
yeah I used as before then
that's plain not true
I confused it with C# as, wew.
it's true
No, it's not.
he's kidding.... I hope?
No python developer knows the ENTIRE standard library.
I just realized we are in an OT channel
mhm
oh, guess they're automatically kidding then /s
There's loads of things in the stdlib, and most of it is irrelevant to any given project
that's why, they are weak at some where
wot
I guess i won't need data structure and algo for now
I mean you're not wrong
nothing is irrelevant
No offense, but so far every other thing you've said has been bad advice, especially for someone trying to learn
do u work in industry?
I learned that way, my way
perhaps it's time to step back and evaluate what actually matters to yourself, let alone any given developer, so you can understand things better before trying to give advice
oh so you are a python developer? name every module then.
I'm a coder for fun
oh ok
Is this that one meme

it better be
yes
I love POOP
does
know every built in modules?
thinking about it
name every wheel* /s
What is a python developer
A developer who develops python or a developer that uses python
Web developer 
true
is there something specific about OOP in Python that's special enough to give it that acronym?
it becomes POOP
HSNC
Probably just children being children
Bye guys 
Code review please
🤓
use pickle, Json is very readable
man windows command line file management is annoying
this command works through powershell but not through cmd
so not through the standard build system
copy env\Lib\site-packages\Python.Runetime.dll main.dist\
why doesnt that work on cmd though
dunno, says it can't find the file
I'm guessing there's some minor difference in the copy command between cmd and pwsh
oh
heyo!
powershell uses linux terminal syntax also
no it doesn't...
huh
powershell (on windows) doesn't even use CLOSE to posix syntax
it also uses
also linux terminal syntax is not a valid term as there is not a single shell 🤔
oh posix
you can run standard posix bash syntax through powershell on another os, assuming you're running the proper backing shell
but not on windows
you can use ls in only powershell and not in cmd
wdym, have you ever used linux systems?
...Yes, daily, for around 12 years
then wdym by 'ls' is a program name
because its a command
ls...is a program
ls is a command
which is a program
lol
it is not part of the syntax of the shell's scripting language.
okay then find the ls file and tell me
in most posix systems it will be /usr/bin/ls
which will be a symlink to the system install location
darn, how do I know where it's symlink'd to
I never looked that much into it
check the symlink
and it would probably a symlink to the binary or would it be the shell script file, i have never checked actually
ls is a built-in module of powershell
wait no I think in my case it's an actual program nvm
/usr/bin/ls: ELF 64-bit LSB shared object
yeah, i mean by, powershell uses linux terminal syntax
but it doesn't use linux terminal syntax
It uses Powershell Script syntax
'ActiveDirectory', 'SQLServer' |
ForEach-Object {Get-Command -Module $_} |
Group-Object -Property ModuleName -NoElement |
Sort-Object -Property Count -Descending
this is not standard bash scripting :)
That is the syntax of powershell
yeah, powershell has some commands that are the same, but other than that, it gets very different
like the time I realized rm -rf became rm -recurse -Force >:C
or the fact that both cls and clear are just aliases set by default to Clear-Host
well, at least that's somewhat consistent
I guess that means rm is also an alias?
powershell has an equivalent of curl too right? something like Invoke-Request
i dont like its pascal case oof
Pascal-Kebab-Case
relatively cursed
NOTaScURSEDaStHISiSiT
no its not
I really can't figure this out hm
figure what out
n🧊
lol
What's the difference between multiprocessing and threading
multiprocessing will have 2 or more therds
Wrong again
Multiprocessing uses multiple processes threading uses multiple threads within the same process
threading will have many processes in single therd
that's literally the opposite
No... You cannot have multipe processes in the same thread, processes are a different thing than threads.
we can have
func1 is a process and func2 is a another process
I really don't have time to explain basic low level processing and threading principals to you
threading, will do one process at a time, but at intervals it will change between processes
@serene oar
multiple threads work by allowing execution of code while a blocking function is happening
multiple processes?
a process is an executable running, in the case of python, it's the python.exe interpreter
Say you have something that waits for a disk read or network response, you can use a thread to run that code while your program executes other things in the mean time
This all happens within the same process
Could you give me a usecase? Of both
In running a pygame game you need to save data to the json file or your database what would you use
however, say you have something like a complex algorithm that's CPU-itensive, threads will not work for this since it;s within the same process, and it would be blocking
Ohh like discord bots?
so you would use multiprocessing to create a whole new process, and continue your execution while you wait for that process to finish

yes exactly, asyncio is thread-based, the coroutines all happen within one thread, but they're used to wait on things such as network responses
.
.
can u use asyncio to run things concurrently?
or is that not what its meant to be used for?
asyncio, threading, multiprocessing, etc
that's all for concurrency
it's just different types of concurrency
yes
and asyncio one thread?
asyncio uses coroutines
i see
which are very similar to threads
Years of learning and practice
with async I don't think u need to worry bout how many threads are actually being used
Coroutines basically pass execution off to one another
cuz isn't it supposed to abstract over that
whereas multiple threads can execute at the same time
yes asyncio is a very high level module
it does its magic all internally
Threading executes at the same time?
nobody has less than 2 cores these days
Multiprocessing = uses multiple cpu or smth
multiprocessing uses multiple processes
Wait define processes
A process is an executable that is running on your system
as I said before
in this case it's the python.exe interpreter on windows
or the python binary on other systems
its all down to your operating system whether it schedules that process to another cpu thread/core or not.
I think i get it atleast a bit
you can get down to really low level specifics, such as the difference between physical/logical processes
darn, idk the diff betw those
but in general, so long as you understand the basic principal that's not important
Many modern processors are hyperthreaded, that is they have a certain number of actual physical cores
but for every core they have two execution threads
(hyperthreading is the intel branding for this, but it's sort of become a colloquial term)
For example, my i7-8700k has 6 physical cores, but 12 logical cores (Threads) https://i.vgy.me/FGcrIH.png
AMD CPUs do a similar thing on a bit more of a hardware level, their execution units share data so for each group of 2-4 cores
so its two logical cores per physical core?
which is why until recently AMD CPUs have struggles very badly with single-core performance
does single core mean physical or logical?
It can main either
i see
generally these days it means logical, as there haven't been single physical-core CPUs for quite a long time
except in embedded platforms
interesting
hm, I'd have to look more into why hyperthreading is a thing
not familiar with hardware much ig
@steel eagle multiprocess = uses different memory
Threading = 1 memory

Suppose I'm coding a pygame game that saves data (in a json file) while you are playing i would use threading
yes that is technicaly true

yeah saving data would just be threading
I've spent two hours tweaking a build script
heyhey sebastiaan changed his pfp again
@viral mirage I know that was largely a language barrier thing, but still: wat
I still have no clue what he originally wanted
it was a bit..., yea. But those things happen. wouldn't know what I would've done if simply importing wouldn't do it there (e.g. if that other file had some blocking call)
I imagine it was a case of multiple people misunderstanding their question
So when they originally said compare, they were given the answer of: difflib
yep
How do I read a .png file?
Or a PDF for that matter?
like how does PIL etc convert it into an array of pixels?
because I just see some random stuff when I try to open a .png file or a similar file
like unreadable characters
by open I mean read the literal content
png is a specific format
you can find the description here http://www.libpng.org/pub/png/spec/1.2/PNG-Contents.html
Aha thank you!
thats numpy's job, you can get an array of pixels by converting a PIL.Image object to a numpy array
its gives you a 3x3 matrix
with each pixel as an array of rgb
That's not what I mean, I meant how does PIL read the image? how does it get, or rather understand the image data?
(then what does libpng do)
If you wanna get into the nitty gritty details of image encoding the wikipedia article for the jpeg format has a pretty good explanation of how raster-type images are represented and stored in the computer:
https://en.wikipedia.org/wiki/JPEG#JPEG_codec_example
JPEG ( JAY-peg) is a commonly used method of lossy compression for digital images, particularly for those images produced by digital photography. The degree of compression can be adjusted, allowing a selectable trade-off between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss in image quality...
Fun fact: JPEG is almost entirely lossless up until the quantization step in the encoding. That is what really destroy the lossless property
with little perceptible loss in image quality
questionable assertion
Read the article mate, the loss is dependent on the quantization matrix and that one varies a lot depending on what quality settings you chose
isn't there some new non-popular but pretty amazing JPEG subtype that uses wavelet transforms and manages a much better quality for the same size
How new?
Back when I learned all this about 5 years ago I heard nothing about any new standard
JPEG-2000?
https://tools.ietf.org/html/rfc3745 about all I could find mentioning jpeg and wavelets
2.2. JPEG 2000 Features
...
- state of the art lossless and lossy compression, based on wavelet
technology, within a single codestream
...
this was in 2004 though
Afaik jpeg2000 never really caught on
as with a lot of formats that had really good tech but never got adopted broadly
https://www.iso.org/standard/75845.html https://www.iso.org/standard/78321.html they charge more than double for the fancy jp2
they don't even take freedom units in exchange for knowledge
Why the pdfs aren't public though, can I really not encode with the standard unless I pay their fee?
I'm still a little grumpy that aPNG didn't take off.
PNGs? Awesome. Animated PNGs? Hell, yeah. Yes, please.
Internet: You get GIFs and you'll like them.
Proprietry formats work like that. Gotta pay to use em.
the jpeg format?
afaik jpeg is not proprietary so the standard should be freely available (I mean the encoding and decoding steps are listen on wikipedia). But for proprietary formats you usually have to pay to get access to the standards
no officer, i would never commit a crime, because committing crime is illegal
as far as I know reddit uses apngs - but saves them as .png so that browsers that dont support apngs still display it as standard png without animation.
Didn't fact check that tho, was a yt comment with 200+ likes
fart
🌬️
hm
pip install --upgrade --force-reinstall pure
!e pip3 install forall pure. pure -> pure
You are not allowed to use that command here. Please use the #bot-commands channel instead.
ah lemme try in that
.
Here's an obscure not-really-python-related question. I want to put together a json or something of discord emojis, specifically pairing each emoji (as unicode, html entity etc) with the shortcodes used by that emoji. seems from my investigation that discord has unique shortcodes (or at least, I can't find any other platform with identical shortcodes). Any ways I should look at tackling this besides... well, manually doing it?
if anyone wants repl.it codes or balsamiq codes pls dm me i won quite a few in a hackathon and i have no use of it
Uh
I got gifted a Jetbrains IDE product license by my instructor today! WoohOo!
Finally I get to use PyCharm and IntelliJ! This be a wetdream :X
:+1:
Also the first gift I've ever received from a professor, feels good ^^
Sounds great
What's different between this and the community version of PyCharm?
I have no idea, I've never used it.
I stuck with Spyder and then with VsCode for Python up until now. Eclipse for Java
I know Ves uses PyCharm a lot, probably he'll be able to answer that better
pip install friends
school be like:
interesting
what happens when you replace the system 32 from windows 10 with the system 32 from windows xp
possibly not that much, kernel hasn't changed a lot
im going out of my way and try it
don't try tho
in a vm
do it in a VM
You cannot delete system32 at runtime
seeing the words delete and system in the same sentence gives me anxiety
OwO
he can replace it
you can do it at the automated recovery thing
no
i expect a bluescreen
Was this caused by those "System32 is a virus" memes
XD probably
Oh my god, I just realized
Actually, that idea seems very questionable
*zips mouth*
i hate installing windows
the windows installer has a blue screen
ok
@jovial island because they are distracting
it will make your computer faster for real... if you install linux afterwards
Damn
XD truth
Linux comes in many shapes and sizes.
Not all would be necessarily faster than whatever Windows you previously had.
That being said...
Linux is awesome and everyone should use it.
sure
frick gui, just download shell
Which browser do you guys use
I'd use chrome
MS-DOS for example?
No
Its because windows can't delete files it is using
Ah, fair
But maybe deleting the files not being used would prevent restarting
I don't know though
Can we get someone here to try and do that 😄
looks nice
hey thats not nice
@distant raven That sort of language/behavior is not tolerated here. Please do not do something like this again.
Brave
🤔 i didn't say it to anyone.....
now it just looks like root was being a jerk lol
@alpine lark
LOL
hello
lmao
What did he do?
he rude
im sorry
haha, stinkypoop
V, thechamp
Anyone else on the doge train?
i am not joking you
i was gonna buy 2000 shares but i procrastinated and then the reddit thing happened
the next day
not shares
2000 dogecoin
I placed a bet against it but then it started rising so I placed a long bet. Either way ima make my money lama.
I currently have 13k dogecoins.
Either way ima make money.
people are predicting that dogecoin will be a dollar by the ned of the year
how far up is dogecoin going
lol
Currently sitting at 4 cents.
I think I saw one of the staff members mention they had 100k of them lol
not to sure
1 hour: up 8 percent
1 day:51 percent
1 week: 366 percent.
1 month: 486
1 year: 1558
All time:1852
AnchorUSD
Ngl it’s was a quick 180 gain.
I started at 700.
@thorn dragon the good thing about AnchorUSD is you can set up rules. So say you want to pull out of a crypto currency or stock after it doubles, you can have the app track that for you and automatically sell everything or a portion.
Yep. My short bet is set to 0.045 per doge and it’ll pull out for me. Helpful if something like yesterday happens. I was sleep when it spiked. Kinda wish I was up to pull out then but I still made a profit. Still have like 1k to go after the government screwed me over.
@jovial island you can see #❓|how-to-get-help to learn how to use our help system
You read through this, then you can type in an available help channel to claim it
@lone folio recvfrom returns a tuple btw
Receive data from the socket. The return value is a pair (bytes, address)
this is what happens when you replace windows 10 system 32 with windows xp system 32
its in dutch, and its for automated repair
but what about the other way around?
if i were to replace system32, then it would malfunction 100% of the time
i basically just did a hypothesis XD
yes
Do you guys code like how would you draw?
From
Sketch -> other -> other -> final product -> clean things up
Bad code -> good code -> best code -> final product -> debug
im usually:
bad code -> bad code -> bad code -> final product

oofness
How do we know that ‘To Autumn’ is an ode?
Can you please not post your question in every channel
Sounds like an English assignment too, violation of rule 5
!warn @topaz delta do not spam your question, be it across multiple channels or in the same channel.
:incoming_envelope: :ok_hand: applied warning to @topaz delta.
Hey guys I need help to have one display at 144hz and another one to 60hz
What do you need help with?
It should just work fine out of the box
Display settings -> advanced -> refresh rate on the 144 to make sure it's actually at the right setting
It doesnt let me put my 144hz more than 60
What OS?
And are you using a cable that supports 144hz?
I know only dual link DVI, display port, and a certain version of hdmi support it
But I do my best to avoid hdmi
So I'm not sure which version it is
Im sorry
I express myself poorly
I got 2 monitors 1 is 144hz and the other one is 60 hz
.
yes the cable supports
.
why pink now
What is os?
Operating system
Is your graphics driver updated?
yes I just did that
Then you're likely using a bad cable
Im using the one that came with the monitor
Tru unplugging the other monitor and only having the 144 monitor plugged in
If it lets you do 144hz then, something is really messed up on your system
k ill try that
Otherwise it's likely a cable issue
And I have heard of manufactures putting cables that don't support 144hz in the box with monitors like that
So it can happen
Yes it functions at 144hz
Thank you for the help
I manage to solve it
I put the 60 hz by dp and the 144hz by hdmi
!mute @fresh carbon 12h do not spam copypastas
:incoming_envelope: :ok_hand: applied mute to @fresh carbon until 2021-02-02 05:55 (11 hours and 59 minutes).
nice
pretty
better than i'll ever be able to
lelellelelee
Anyone use bootstrap templates?
lots of people do
at a certain point css templates are just copy and paste it in
I gave up trying to use css frameworks, could never get them to work right
now I just write my own CSS, and never get that to work right
Well i downloaded the template package. Pretty easy to use but i feel like im cheating lmao
Is there an easy way to mix html and markup?
html is markup? how do you mean
Markdown my bad.
https://markdowntohtml.com/ that appears to work, though I'm not very experienced with Markdown
Convert your markdown to HTML in one easy step - for free!
Meh. I’ll have to find another way then. I want to make a blog site so the post use markdown. But the rest of the site use html. That way it’s easier client side to update.
I like it
hello
hi
Why are you terror ??
@upper torrent
#4642 so just follow the steps
if that doesnt work you might need to reinstall your Windows 10
I have said it works 😀
🤷 , got Jason from .halloweenify command, and terror from halloween nickname which sounded good
so kept it
.halloweenify
lol ok Chatterer
.halloweenify
.halloweenify
#sir-lancebot-playground please, thanks
forall pure. pure -> pure . this server bot could prevent bot commands from being run by users in other text channels right
yes, but the commands are allowed in ot
because the python bot shows that "you cant use this command here" why not use this in
sir lancebot
ohh
is there a channel where i am allowed to spam the tragedy of darth plagueis the wise
?
We have no channels for spam on this server
No
lol
is there anyone here who will let me dm them the tragedy of darth plagueis the wise
Please do not send copy pastas here, or to someone’s DMs without their approval
@fresh carbon Can I dm you the tragedy of Darth Plagueis the Wise?
yes
bruh
moment
desuka
.halloweenify
.halloweenify
no
.halloweenify
my god
damn
Pale man sounds like somethn from tokyo ghoul or some sh
I am studying 3 langs and i have a script repo should i make a folder in that repo separate python from rust and cpp or create a new repo?

If they are different components of the same project then they should be in the same repo
if they are unrelated they should be in separate repos ig
they are just basically my notes for learning languages
@dusky cliff

whatever you'll find easier to manage
hmmm thonk
i cant decide lol
i guess ill just create a folder within it
thanks your advice was helpful
seems believable, 1 image per character per font
it's not that much
¯_(ツ)_/¯
7gb is negligible space these days
|--------------------|
| L |
| B |
| S |
|---|
?
ye
you got movies now that are 14gb
tru
cause its the 3rd ot channel, its meant to be left dead
lol 377kbps
I got similar
like 400-600 kbps at most (kilo bytes, not kilo bits)
hmm
ok so has it reached 239% of 239 mb?
downloadedd?
https://www.google.com
thank me later
hahaha
watch scam 1992 tv series
leoo!!
haha good one
yes
well by scam 1992 that atleast know what shorting is
shorting?
in ep 3
joe your history class is over?
he told about it @lucid osprey
borrow stock, sell stock at high price, wait for price to go down, buy stock back, return stock to who you borrowed it from ez profit
yea I didnt understand anything
ok guys ima go now, lots of homework
b a n a n a
And I got some of upto 30gb ;)
Maybe more
Hmm
borrow bro
0 cost
have to return it later
Borrow $0
Sell +$10
Buy back -$5
Profit +$5
yeah
u made profit out of thing that's not even yours from the start
I became interested long be4 all this GME thing
I watched this series called SCAM 1992 which is really good
do any of you eat the brown parts on the banana
disgusting
banana bread is where it's at when it starts to turn brown
🙏
Who’s Joe?
Not sure
lol
@grim seal Iiiiit's graph time!
lolololololololololol
so if @grim seal is made of graphs, what's the shortest path to his heart?
nah jk, you dont have to answer that
is the graph disjointed?
@karmic dagger What can I say, I'm the sheep of the server
Yea. I'll have to follow you haha. Are all the helpers on the discord working as devs?
Not necessarily. I don't at least
I do personal objects, but I don't work in the cs field yet
Oh. But then even with personal projects I can see that you're still good in python. I'm a beginner and would like to improve. What would you say is the way forward and how can I get ideas for projects (😅 ) Can't seem to do haha.
Uhhhh I'm not good at making suggestions
If you want to go into cs tho I'd suggest to first try things out and see what area interest you most
Like, actually doing something in that field
Interested in AI? Read/do some prediction algorithms. Interested in security? Do some CTF. Interested in web? Maybe start planning your own website?
These projects can be big, and I think it's a good idea to start slow
Of course, different people learn differently. I'm the kind of sheep that learns well by doing things
Maybe you like reading books/videos? Maybe you prefer examples over documentation? It's also good to know about yourself so that you have an idea what resource you want to look for and which direction you want to go
(Sorry these probably aren't specific answers to your question, because I don't know what fits you well :P)
Thanks. This was great. Especially the part about learning by doing things. That's me
you could do codewars to get more comfortable with using the language
That's why I asked about projects. Luckily I know what method of using to learn. Unlikely I don't know which field I want to go into.
We also have !resources and !projects if you want to check them out in #bot-commands
Awesome guys. I guess my main problem is still finding my interest in python. So I'll work on that and also check out all the resources given.
@thin terrace this one 😅
Ohh k😅
that was absolutely gold
you've made my day
Ah so the shortest path to your heart was asking what's the shortest path to your heart
interesting
lmao
...except, he drives away everyone he knows and loves with his constant rick rolls
The path is probably full of rickrolls
Hey
guys is making a self bot that deletes nsfw images in non-nsfw channels still against discord tos
If they are admins on the server, they can just invite a bot
lmfao
man if discord api gave us more abilities it would be insane
not / commands, but something like open a custom discord window when using a command, or making an in-discord panel for bots. Making the bot icon able to be a button that directs you to the control panel of the server you clicked the icon in
i think its already giving us a lot
so i think i’ve talked about this before but bagels are so good
yes
never had one so dunno
i think messages that only a specific person can see are planned
and also, buttons in embeds
or something along those lines
Heyo
glad to have made your day 😄
hahahaah
honestly don't know what would be worse: if my parents found porn on my computer
or if they found this
Plot of error vs number of points, when approximating pi by measuring a circle's circumference. This is what happens when floating point errors start being involved.
never trust floats to be exact
Better plot

the welcome video was a vibe
c o m p l e t e l y a n n i h i l a t e d
poor dave getting bullied

Luckily the huge team of moderators completely annihilated XxRazorFace27xX, with their whole suite of tools!
what happened?
He had to go almost a day without proper internet
sad
I respect that
@neat light congratsss 🎉
Thanks! 
Not any more 😛
ok someone added it
I did haha
he himself did it ig
nice
unlimited power
It was yesterday, but I've only just woken up today so you might not have seen it when I wasn't online
but why are you still wearing a christmas hat
still more like already 😎

"Christmas is in 364 days yet I already have the tree up like a fool"
nice u got admin!
add a chinese new year hat 
what about it?
leads!!
Lead (82Pb) has four stable isotopes: 204Pb, 206Pb, 207Pb, 208Pb. Lead-204 is entirely a primordial nuclide and is not a radiogenic nuclide. The three isotopes lead-206, lead-207, and lead-208 represent the ends of three decay chains: the uranium series (or radium series), the actinium series, and the thorium series, respectively; a fourth decay...
aahahhaa
Any plan on when you’re gonna remove the tree?
What tree????
¯_(ツ)_/¯
Hmmm
👀
It seems like wookie must’ve thrown the tree over at me
You took a tree in the face
How come the tree lights up when it's with you but it didn't when it was with me, does it not like me or something 
ouch
I guess I'm electric
shocking
So negative
electrifying
off topic word of the day: frypurism, noun
def: the ideology that fries should be eaten without any condiments, and that if everyone in the world ate fries this way the world's problems will be miraculously solved and society would become perfect
@pastel nest why did you post that in more than one channel?
bc it's an ot thing for all channels... is that not allowed?
No, we don't want to hold conversations about the same thing in all three ot channels.
Lmao
do a face reveal
bruh doxxing!
sorry for the doxx, akarys 😔
Oh no
akarys bruh your identity
Secret tip no one wants you to know
# main.py
with open("main.py") as file:
while True:
try:
eval(file.readline())
except:
pass
whot
I'm not kidding
that just seems like trying to run a python file through a python file
the same file
I didn't think of the while True
But I was thinking about making a file that reads and evals itself
what is a great bot for leveling system
i dont think u can open a file twice at the same time
wdym
you can
Okay but maybe you can run other python files this way
I don't recommend trying that btw
It was a funny train of thought
oh really 😆 😆
hey guys i am getting a file write error while downloading a file should i keep downloading it ??
will the file work when i download it ??
@short cliff where is the enormous roasting?
You'd be better off restarting
its a big file
Still preparing. These things take time
Please don't ask in many off-topic channels though
my bad sorry
Good, good
You can finish the download, but there's an high chance that the file will be corrupted
can i fix it
If your downloader is extra smart, it may be trying to fix it, but it is pretty unlikely
its free download manager
If it is a specialized manager, it could fix it
I am not sure
well i hope the file works
What roast are we waiting for?
👀
How life going guys
Same as always
Which is?
The usual
some food
Roasted food?
Huh, poetry seems to do weird stuff if the VIRTUAL_ENV env var is set outside a venv
me too
.topic
oo nais man!
epic
hmm
nice
but i dont think im that speed anymore now cus like i have cubed for a LOONG TIME
yea thats a long with 2 o's
I learnt beginner's like 2 years back
then I forgot all about it
then covid happened
so I picked it up again
it takes me a minute to solve the rubix cube ;-;
🙃
i just learned the beginner method for fun and i dont have the energy to learn the advanced one
advanced metheod made me do cubing more lol
now days i just got to some random online comps in discord and sometimes they give good prize
but im not tha good to beat everyone lol
lol
this was the scramble for my pb
B U2 F' L2 B' L2 F L2 D2 R2 F D' F' D2 L' B' U2 L' R2
give it a shot
k lemme try
btw what's ur main?
YuXin little magic
oo that was old amin
got my first sub 20 on it!
v cool
lol there are some for even 100$
good cubes really help lol
magnets
enter: m a g n e t i c c u b e s
most are oiled
*lubed
yup
yes
ok?
wait lemme try ur scrmble and come
sure
: ( got a GC perm at the end
but my cross was fast ngl and there were a ton of free pairs!
its the 3rd variation of a g perm
O
which you need to do left handed
so
...
but i also did a lotta rotations
thas why it was slow
i can't even find my cube dammit
lol
but ur still faster lol
oh no this was a different scramble
wow nice
3 mins on 4x4 😎
noice
it's not noice lol its horrible
It'd be infinity for me if I didn't look up algorithms lmao
4x4 surprisingly doesn't have too many more algs than 3x3
two or three more at best
beginner's method anyway
yes
is it possible to learn this power?
, its only possible by me
I can solve 0x0 in no time!
But can you solve a -1x-1
look at the big brains here solving 2d cubes
3d* innit
I've only ever solved a 3d 3x3x3 one.
>>> cube.shape
(3, 3, 3)
no idea what you're talking about
tf

hey bro I have a fun tip for getting avg5 pb. delete all the slow times and keep the best
<- this emoji is new?
nope
it is an old one

It is reaaaallly old
hm
it is from the DYEP and PyDis merge

What was dyep
"do you even python" he said
It was, yeah
It's the community that made me create a Discord account
It technically still exists, but all the channels are set to "read only"
And that's how I ended up here

still exists meaning it is still a server?
I wonder if you can still find the invite




