#ot1-perplexing-regexing
1 messages ยท Page 573 of 1
thats ur default distro
u can change it by doing wsl -s opensuse-tumbleweed
then the next time u run wsl it will open ur default
sudo zypper install gcc automake bzip2 libbz2-devel xz xz-devel openssl-devel ncurses-devel readline-devel zlib-devel tk-devel libffi-devel sqlite3-devel pyenv
do this once u get into opensuse
wsl works nicely? im thinking about using it too for first time, currently i dual boot.
thta will get all the dependencies u need
ok i got to opensuse
^^
it will take some time
so get some popcorn
thats in the end of the statement
ok
from source!?
pro
Orz
throw out the hdd and put in a new one is my go to normally
When I open up a new terminal window,
wsl --unregister?
idk
try running wsl -d opensuse-tumbleweed
ok deps installed
ok
now
@wraith hound ^
Done, ty
did it work
Uh, no
bruh
lol
I just unregistered it
That's what I thought
but u might want to delete the folder and reextract the new folder
since the contents will change
Okay good sir, thank you for the info
oh u need make
do i sudo zypper install make or what
yes yes
aight
i forgive you
thanks ๐
np
any other wsl wanting fellows?
i am here to assist in ur wsl endeavours
up until the install process
which is very easy
noted for future references
understood sire

how do enter a repl of a particular python version aaaa
yes
oh thats cool
nvm is luv
mhm
what do you like?
nvm.
....
shakya@LAPTOP-04GJNCT8:/mnt/d/WSL/openSUSE-Tumbleweed-x64-Snapshot20210515.7.81> pyenv global 3.9.5
shakya@LAPTOP-04GJNCT8:/mnt/d/WSL/openSUSE-Tumbleweed-x64-Snapshot20210515.7.81> python
If 'python' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf python
ok
please wait a maximum of 15 minutes
time to gogole
your time starts now
is there reminder system?
yes
Sorry, you can't do that here!
!remind 15m help hahasitknypoopo
Sorry, you can't do that here!
ok
oh
๐
missing the py launcher ๐
lol
Yeah sometimes happens with me
i dont
since i only use 3.9
u can use alias
in ur bashrc
so yea
ok
i will go now
my help will be missed i am sure
fear not mortals!
for i have returned
@acoustic moss while i was taking a shit i rememberd what i did to fix ur python not found issue
taking shit
and that is
oh ok
taking a shit*
weirdly enough, my brain seems to solve a lot of problems while i taking a shit
hm
back to opensus
vivek was writing
for it to work i think
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"```
add this to ur bashrc
and restart opensus
it will work
i am sure!!
where the fuck is .bashrc
stop testing
vim ~/.bashrc
~ will go to ur home directory
use nano
ok press o
nano is eww
for simplicity purposes
and paste this export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init --path)"
just
sudo zypper in neovim
nvim ~/.bashrc
lmao
id rather have an eww then get stuck in vim forever
at least i can exit my editor and do something else 
reboot
don't i have to save and shit
:q! >:(
how
Open source among us?
what, am i supposed to have a sticky note to know this? i cant google when im in vim
bruh
and type :wq
do you live in the terminal
lmao this dhz wants to hate on nano but he dont even live in a terminal

hah
no GUI
*how GUI
only terminal
thats going to come in the next update
interesting
ye
Im No super the scrubs theme with all the lyrics
can i use stuff like bash and zsh and fish and what not in wsl
You can definitely use zsh cause i use it too
which zsh
where?
idk
hmm
on Leap? I think you have to install it manually... so you can install pyenv manually
/usr/bin/zsh
oops. wrong reply
sudo chsh -s /usr/bin/zsh and then relogin
:[
huh?
In my experience it has been
lol arnav
shh
Discord blocked today 0.99 USD on the card, they probably got too many fake promo nitros and decided to check if there's at least something there.
(it's unblocked already for me, i just saw a notification from my bank app about it but didn't check its time)
Wut really?
how do i start copying from file A from the 45th character to the end to file B?
read the full file in a string, take a [45:] slice and write it to the second file
BYTE buffer;
while (fread(&buffer, sizeof(BYTE), 1, source))
{
fwrite(&buffer, sizeof(BYTE), 1, destination);
}```
(this is to copy the whole file)
ya it's in C
while (fread(...) && !(count < 45))
wait no
put an if statement inside
and track the number of bytes youve read
That's what I've seen as notification from my bank app. The blockade was temporary, as I said it was already lifted by the time I woke up and checked it (ie: I could see stuff when I clicked the notif but it didn't show as my current blocked amounts)
Ugh, 1.5h of zoom call
Debugging connection weirdness of some routers
oh okk thanks

small basic?
this
Goto ๐ฑ
goto is dope when properly used
when I run it it doesn't do what I expected it to do
after asking me to enter the temprature and the unit it stops at that
I edited it to look like this
idk the language but is = used for comparisons?
yes
or should it be ==
but now it does this
you need goto End of sorts after each of the sorta subroutines
what happens after line 7 once the if has run?
@graceful basin
yes, describe what actually happens using english
keep in mind you aren't using functions
how will it distinguish between which is in celcius and which is fahr then?
nvm
I will try that
You mean something like this, right?
Anybody has tailwind components to make cards containing a small picture in a circle, and text beside that with a title?
Ok that was too much, any card would do, with picture and text
I know the perfect person for this, @wraith hound
I am making a nomination/school election site which contains a picture about the nominee, some text about it and their name.
Any design would work but I was looking for something like this:
gimme a second, i will make one quick
there @wraith hound
and the circle would also be a pic
Uh, one sec
k
I can't find one rn, but I could probably whip one up if you want.
that would be awesome, I don't really do frontend stuff so dunno

Ok thanks @quick ledge
no problem
fread(header, sizeof(uint8_t), 1, input);
fwrite(header, sizeof(uint8_t), 1, output);```
while (fread(&buffer, sizeof(int16_t), 1, input))
{
buffer = buffer * factor;
fwrite(&buffer, sizeof(int16_t), 1, output);
}```
why is it sometimes i see fread comes with an address like &buffer but sometimes it does not need &
when do we use &
also, would
fread(header, sizeof(uint8_t), 1, input);
fwrite(header, sizeof(uint8_t), 1, output);```
and
```c
while (fread(&header, sizeof(uint8_t), 1, input))
{
fwrite(&header, sizeof(uint8_t), 1, output);
}```
do the same thing?
& means you pass the variable's address. That means, pointer to it.
If the variable is already of pointer type, you'd pass it without & if you want to overwrite space you're pointing to, not the current variable
ohh i see
but for fread when im reading a file and copying it to another, is it optional to put &header, but put it as header instead
cuz i tried both ways, both work
I have no idea what is fread and how it works underneath. I was just referring to the syntax itself
does anyone have any good ideas for a website?
Hm, what is your header, tho? Because arrays are pointers, list[i] is basically *(list+I)
i have a file called input.wav, header is the first 44 characters in that file
aye
NOICE
help me think of a writing pseudo code for a query
I basically have to calcualte average number of days between start and end date, for n events
but some events haven't ended yet.. so what do I do to include those days
@thin swallow tl;dr is that most Emacs packages are able to interact with each other through the use of "hooks"
that sounds amazing..
aye dont I know you from somewhere
but cant think of any uses for that... could you enlighten me?
Emacs are for noobs, real power users use Nano
Emacs comes with its own variant of LISP, appropriately called Emacs Lisp
so thats its package lang?
For example, I have a plugin that runs tools like mypy and flake8 on the current buffer, but those only work if I have said tools on the PATH or I have a virtual environment activated.
Another plugin that allows me to activate virtual environments from within Emacs can notify that linting plugin: "hey, check if you can see these tools now!" and then stuff can work
oooh
It's really a general purpose language, but most of it is Emacs-specific
and whats the whole learning curve aboot?
Configuring Emacs essentially requires you to learn a new language
ah lmao
Keymaps are weird
You get strings like:
Ctrl-u Ctrl-c ! x
or to run some shell command:
Ctrl-c Ctrl-p u
weird
You can always reconfigure, but even that's a mess
My configuration file alone has like, 400 lines of ELisp code
Is it possible to make a Linux desktop environment with just python?
If you're brave, but most likely no since you're gonna work with X, but who knows, there are Python wrappers around non-Py things
Well... GNOME is written in JavaScript so I doubt it's impossible
looking around https://gitlab.gnome.org/GNOME/gnome-shell, well, yea, it's written in JS. Thing is, it compiles down to binary from the looks of it, and Py afaict doesn't have anything to compile down to binary
...PyInstaller exists yes but it feels dubious
.pyc?
Isn't that just Python-specific bytecode rather than straight x86(_64)?
ยฏ_(ใ)_/ยฏ
Inb4 Cypher writes a Py-x86_64 compiler outta spite
D:
I don't think JavaScript can compile to binary unless I'm incredibly high
.bm #ot1-perplexing-regexing message Build on 21.04
You all are so smart, thanks for the answer
@dapper shell how's the python IRC doing now? Does it still exist?
It's alive and well on Libera: 1123 users in the channel
Oh nice
we occasionally get reports about how the freenode #python channel is going: not well.
"it works
trust me"
- Josh for "Microsoft Tech support"
you can do negative right?
You can only use one transform CSS attribute
You can use multiple transformations together
Also, you didn't put a semicolon after the first transform rule
https://www.youtube.com/watch?v=GzeBHIto4Ps
Time to code like there is no tomorrow
Official upload for the Helltaker soundtrack.
Purchase the OST: https://tinyurl.com/y9qowumh
Equilibrium Album:
Spotify: https://open.spotify.com/album/3EVXt4p4YyNMMsFZgds6QW
Bandcamp: https://mittsies.bandcamp.com/album/equilibrium
Amazon: https://www.amazon.com/dp/B089G8N28S/
Deezer: https://www.deezer.com/us/album/151936542
Apple Music: http...
I saw $1400 for a sec and got confused
lol
brug
.snake draw draw
nice
You can do just translate(...) for both x and y, or you can specify the transforms either separated with spaces or commas, I don't remember exactly

yes, because you're overriding the first property. separate your transforms with commas, like transform: translateY(50%), translateX(50%)
yeah, commas for multiple values in a property
u shouldnt
but it's too late, no?
you already released your info? if not then no its not too late
not at all, it's time to get progressively safe then
they go to google.com yeah
why lol
they are not 4.7
wot
๐
why google.com it's not adequate to research
lol it's just a layout
so if I use it with the right mechanism still a huge database?
ur dad
lol
sad
mkv
ye
lemme make it mp4
remux to mp4
ok
o alr
aight
lol
ull do it or should I convert?
Hey idk if this is the right channel but does anyone use coursera ? I have a doubt regarding itโs subscriptions
I did use coursera, but I never paid for it
okay wait
(because it allows doing even paid courses in "audit mode", which only locks quizzes - everything else, even programming assignments, is accessible)
If I paid for a course using my apple id in the ios app, will I be able to access the course on desktop as well ?
Coz the prices desktop site and the ios app seem to be different for the same course
uhh, sounds like something you want to ask their support
nvm i did it
ah
gotta set a fixed framerate lol
Idk how to contact customer support
Ok Iโll look around, thanks
Ok it turns out I can access it anyway
I paid for it and found out xD. But I took a gamble lmao. Coz if it wasnโt accessible through desktop it would have been a waste since coding assignments can be submitted only through desktop lol
Yeah thatโs what I did
anyone here know much about audio equipment?
me and my office have a podcast running thats gaining traction and we wanna get some clip mics, but Im not too sure of the ยฃ10 ones from amazon
bruh this is amazing
cuz normal names are for normal peaple
llol I was there when that ping happened
is this the anime channel?
uh sure i guess
eren yeager
what have u watched
whyyyyy
Cuz I don't have time
when will you have time?
Bruh u trying to sell anime??
cuz people don't have to like the same things?
its just showsss
like movies
everyone have at least watchd one movie
reject weeb return to human
salut
yes bonjour
u french?
๐ฅ
im not from france
canada?
Yes
yeah
doxx?
reveal personal info
oh
expose my true identy on the wide internet
is it against the rules
erm, kinda
although basically everybody knows what the owners look like
well i guess theres a bunch of python hackers
its still a python server
can i send tik toks here?
i dont speak on this server usually
welp ur not supposed to spam
so i can
as some ppl just spam
ppl send yt vids quite often
so i would assume tiktok is a video medium
Iโd simp for eren if I was gay
u know its attack on titan when there is that weird skinless giant
Micheal Jackson
except that micheal jackson had a weird thing for kids
He does too
Nezuko is 14
You watched jojo ?
You know Dio
Well your everyday life is a jojo reference
Cause every second you breath DIOxygene
and also the omai wa mou shinderio
other anime meme
thats about all anime memes i know
whot
Rent a girlfriend
why
someone who rejected humanity and returned to weeb
and.. why are humans on rent
Mizuhara chizuru
Ily
My waifu
im sorry but anime characters are kinda not real
um
Stop reminding us ๐ฅฒ it hurts
that's weird
ikr
but if u use ur imagination....
insert spongebob meme here
๐งฝ
weirdly the organs reminded me of cells at work
apparently the content was pretty real
hate TikTok
that bts meal sht
kinda funny tbh
to see the amogus bts chicken nugget go for 2000 dollars
I donโt like bts
Anime openings and Japanese songs
Korean pop is ๐ฌ
Fine
only anime intro that was decent was full metal alchemist
You havenโt watched a lot of openings didnt you
no im not weeb
as ive said before
i choose to accept humanity and not return to weeb
Full metal alchemist doesnโt even count
lmao wut
Dream - Mask (Official Animated Music Video)
Stream Mask: https://dream.lsnto.me/Mask
Follow Dream:
Instagram: @DreamโWasTaken
Twitter: @Dream
Animation Produced By:
Phyre Productions -@Phyre Productions
Screenplay:
Dream
Xoriak - @Xoriak
2D Artists:
Alex Ulrick
DairyPanda
Phyre Productions
SolScribbles
Xoriak
Layout Artists:
Phyre Prod...
There
i just saw bts chicken tendy
um
I copied the wrong thing
Ratatouille
also a furry
im low
can you stop posting the cringe videos 
lmao
I have like a thousand tiktok but 9/10 of them are explicit ๐ถโ๐ซ๏ธ
C mon
Itโs because of the tiktok logo
no like, they are super random and not even funny
I don't see how it's pertinent to the discussion, if there even is one
Iโm scared of sending something that will get me banned
That said, we have an off-topic etiquette that says:
AH ITS HIM
dont then
See what I meant when I said Iโm scared
They are always there in the dark watching us from the shadows

big brother
Big sister
no rats plz
Whatโs rats
orwell go brrrr
there's a lotta shitposting goin on here
Animal farm ?
animal farm has some intreting topics
that it toches
most ppl initally make the connection between it and the ussr
hmm
and i think it was initally satire for communism or sth
cant remember
bc i read it like 5 yrs ago
does anyone know how to load in multiple sprite animation sheets in godot for one node/class
No
from Python?
what do you mean by load? you can just open it from the file manager
It's a feature that it is unstable!
#include <stdio.h>
int main(void)
{
int n;
scanf("%i", &n);
char arr[n];
for (int i = 0; i < n; i++)
{
scanf("%c", &arr[i]);
printf("%i\n", arr[i]);
}
}```
Some compilers have VLAs
It's in the C standard, and certain C++ compilers also support that, but like
malloc should be the go-to
which compilers support it
MinGW and cygwin certainly do, and I assume so does GCC
oh ya i thought so but idk why i tried it in the past it worked
im not sure why tho
MSVC doesn't though
maybe u were using a vla enabled compiler
u might
The C++ standard doesn't require it, C99 requires that, C11 makes it an optional feature, some compilers support VLAs, some don't
isnt c99 older than c11?
Yeah
so i do this instead
char* a = malloc(sizeof(char) * n);```
is this now allowed?
VLAs aren't considered good practice though for performance reasons
wait arent u making a char array
IIRC that's why they were lifted from being required to optional in C11
#help-lollipop plz help me guys
but like assuming that we can do char arr[n], idk why the output is so weird
when my input is
5
a
b
C
d
e
it shd give the ascii value but it gives out
97
10
98
10```
oh ye it works now
#include <stdio.h>
int main(void)
{
int n;
scanf("%i", &n);
char arr[n];
for (int i = 0; i < n+1; i++)
{
scanf("%c\n", &arr[i]);
printf("%i\n", arr[i]);
}
}
input
5
a
b
C
d
e```
output
10
97
98
67
100
101```
could i ask wheres the 10 from
yeah uh how shd i get rid of it
10 is the newline that came from the line where you entered array length
@vestal matrix @polar knoll
If you scan both the length and the newline, it shouldn't pop in anymore
ah okay got it thankiew!
This is mac ^
@graceful basin hes here too

@latent scaffold looks like I really messed up manjaro this time lol
I have so much lib32 stuff which when I try to remove
it was bound to happen
sudo pacman -Rns lib32-alsa-plugins lib32-fontconfig lib32-gstreamer lib32-libcanberra lib32-libpulse lib32-libva-mesa-driver lib32-mesa lib32-mesa-vdpau lib32-polkit lib32-systemd lib32-vulkan-radeon lib32-wayland
[sudo] password for arnav:
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: removing lib32-systemd breaks dependency 'lib32-systemd' required by lib32-dbus
:: removing lib32-libcanberra breaks dependency 'lib32-libcanberra=0.30+2+gc0620e4-3' required by lib32-libcanberra-gstreamer
:: removing lib32-gstreamer breaks dependency 'lib32-gstreamer' required by lib32-libcanberra-gstreamer
:: removing lib32-libcanberra breaks dependency 'lib32-libcanberra=0.30+2+gc0620e4-3' required by lib32-libcanberra-pulse
:: removing lib32-libpulse breaks dependency 'lib32-libpulse' required by lib32-libcanberra-pulse
:: removing lib32-mesa breaks dependency 'lib32-mesa' required by lib32-libglvnd
:: removing lib32-mesa breaks dependency 'lib32-opengl-driver' required by lib32-libglvnd
:: removing lib32-wayland breaks dependency 'lib32-wayland' required by lib32-libva
:: removing lib32-wayland breaks dependency 'lib32-wayland' required by lib32-vulkan-intel
:: removing lib32-alsa-plugins breaks dependency 'lib32-alsa-plugins' required by steam-manjaro
:: removing lib32-fontconfig breaks dependency 'lib32-fontconfig' required by wine
so much
lmao bruh
fine. go Tumbleweed
I would need to try it out first
does it still has small fonts on first install and flashing screen @latent scaffold cuz I saw someones first impression to it?
it was only 1 month ago
what
Since I checked out openSUSE 15.3 recently, I thought it was only fair that I also check out Tumbleweed as well. Tumbleweed is a rolling distribution that's always updated, and is a great fit for people that prefer the "install once, update forever" mentality. In this video, I'll give you guys my thoughts after checking out openSUSE Tumbleweed f...
Why are you on YouTube
the Linux scene on YouTube is God-awful
they really did call an RL algorithm GAE huh
pamac update
Known issues and solutions This is a wiki post; please edit as necessary. Please, consider subscribing to the Stable Updates Announcements RSS feed New issues: You might be blocked updating when using pacman due to some libcanberra packages. Simply remove those packages: sudo pacman -Rdd lib32-libcanberra-pulse lib32-libcanberra-gstreamer...
lol "easy to use", huh?
Can we not with the Manjaro hate today
It gets tiring
:L
lmao
the manjaro hate is just from groupthink
From what?
"Groupthink is a psychological phenomenon that occurs within a group of people in which the desire for harmony or conformity in the group results in an irrational or dysfunctional decision-making outcome."
D:
Maybe that's true for other people but like
I hate it from experience
yes group think
wot
I honestly couldn't care less
hey, what is the code to turn something like this into colored python goodness?
!code this?
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
But snarky comments are a moodkiller especially when you're genuinely interested in trying to help
thank you ๐
np
Alright, I'll stop
But manjaro is horrible and shitty and that's all I've ever heard about it. I have no basis for it to be better since there's a very vocal voice of manjaro hate
Afk gonna look up manjaro
that is why im saying its just groupthink
.topic
i'll pretend that the bot asked me which kind of chocolate i like
now the meme is relevant to the conversation
๐
Tried that but that gives all these lib32 things and askes for applying transactions. If I press y it fails and when I press e to edit build files it just makes me edit the build files like treams, zoom, vsc etc
honestly dark chocolate is just better than all other forms of cocoa
Do you have AUR for Pamac enabled?
white chocolate... YES ๐
Hi I am from India joined this sever so that I can learn much more and I am new to programming and I started with Python
So that even though hard it might be fun
Nice to meet you guys
hello, welcome
Hello ๐
...
yes
@stiff dagger I think you can't refund nitro
damn
NOTE: You will need to reply to this email if you would like to forward this ticket to our support team!
This is an automated response to your ticket (14611599)!
Hey Skeletronboss666,
Clyde, Discord Support Bot here, sending you an automated message here first before I escalate you to one of our support specialists since I noticed you were writing in about a Google Play Purchase!
I'm so sorry to hear that your subscription didn't work out for you! We can help refund the purchase if the request was made within 5 days from your initial purchase date. (For more details on our refund policy, check out this link here: https://support.discordapp.com/hc/articles/360012668071)
How to Request a Refund?
Just to follow protocol, if your purchase meets our refund policy (linked above), could you confirm and explicitly tell us 1) the registered email address tied to the Discord account and 2) the order number that you would like canceled/refunded and we'll be more than happy to get the process started for you.
For example, you could respond by writing, "I confirm that I would like to cancel my subscription and receive a refund for Order Number GPA.XXXX-XXXX-XXXX-XXXXX my account associated with [your email address@email.com]."
Please keep in mind we need to receive the request from the email address associated with the Discord account to protect our users' privacy and security.
Note:
- Unfortunately, for purchases through the Google Play Store, we are unable to downgrade/modify your subscription or manually change the number of Server Boosts for your subscription if you have any.
- In order for us to process your refund request, the subscription will be fully cancelled and a partial refund will be issued for any previous subscription purchases that haven't run their full course yet.*
After we receive this confirmation, we can get that process started for you!
If you have any other questions or need further clarification, donโt hesitate to respond back here so one of our team members can help!
Cheers,
Clyde, Discord Support Bot
thats the email theu send me
@lunar crescent they send me a email and it says this and i dont get what he means "a refund for order number"
idk how to get a refund, i haven't ever gotten nitro anyways
do you know paysafe
?
no.
nvm
if the first number is the height and second number is the width, and this is the input i put in
5 5
x***x
xxx*x
x*xxx
xxx*x
*xxxx```
int h;
int w;
scanf("%i %i", &h, &w);
char arr[h][w];
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
scanf("%c", &arr[i][j]);
}
scanf("\n");
}```
do i do it like that (assuming i can declare the array dynamically without malloc like that)
im confused abt the scanf("\n") part for each row
I am having some confusion in installing JetBrains Mono Font, where should I unzip all the .ttf files?
What OS are you on? You should just be able to double click them
double click the TTF
uh... your system
ohk
@latent scaffold
facing this ๐
Well, this is image from google ofc, I have uppercased B not b in the Brains so yea?
any idea?
u installed the font?
not zipped the file? idunno which one to?
did u click install
nah, using that font in my terminal
windows terminal?
Trying to configure JetBrains Mono as my default font to be used across all shells.
did u click install
Oh can i do all in one time?
yes
how?
select all of them and right click
there is not install thing coming up!
u dont get an install button?
no
.
drag and drop the fonts into the drop zone
all right?
.
did it work?
dope
but... Firacode
lol
never used linux but using wsl ๐
i think its a good way to start linux
ye
basically all the good things abt a vm
I have a nice idea using windows terminal not linux lol
lol
trying to learn ๐
hope for the best
will surely try bud.
it got me in recommendatioons lol
i told him will do later i have more to do now
lol
lol
i like material ocean
Oh what's the name like what Should I put in that string?
no u have to add the themes colours to ur settings.json
I know buddie!, Thanks!
ight
"colorScheme": "One Half Dark" tried this looks fine
lol
yes
ok lil
provided that One Half Dark is in the default list of themes
mhm
ye
goodamn this looks good @inland wolf
lol
learned a new command nano lmao
nice
will be enjoying editing py files in the cute terminal
nano is the closest I'll ever get to using vim
yeah
exactly
That's what I felt lol
๐
Now, will be savage sharing terminal pics lmao
thats cool af
make nice terminal, then do flex!
oh never heard of it?
sudo apt install neofetch
did someone say terminal pics?
vrug moment
lmfao
smhh, i can't do that


