#ot1-perplexing-regexing
1 messages ยท Page 620 of 1
who cares ๐
Designed to host container workloads with automated administration & patching. Installing openSUSE MicroOS you get a quick, small environment for deploying Containers, or any other workload that benefits from Transactional Updates. As rolling release distribution the software is always up-to-date.
see the revamped wiki
because microOS would be pretty useless for you, you'll regret doing it
nope
I mean
you know how the YaST installer works
microOS would provide absolutely no benefit to you
you can just do a minimum install from the YaST installer
maybe maybe not. but it can be used as a desktop :3
That doesn't mean it should be
see the phrase after "or"
workload can include desktop use
I mean... are you gonna be working with containers a lot?
you mean toolbox?
huh?
i do
like i said it uses toolbox
if i want to declutter my system, i might as well use toolbox
avoids poisoning more of the core system
fedora silverblue is microos but desktop ready
I don't get it
i wanna see if i can do it with microos because it seems to have improved and some people do use it as a desktop because of toolbox and immutability
microOS would just have the same YaST installer
but with defaults tailored to hosting containers
nope
I've seen the microOS section in the YaST installer
it has a yast installer but the core system is immutable
meaning it is read only
:)
and containers i think they mean toolbox
uh... no
basically a modification of podman
yes ;)
maybe, then
i have tried silverblue so i know :/
but microos has both kubic and toolbox, ๐ค
imma sleep now.
@torpid saffron that's how it looks like
tyty
anyone have any advice on how to become rich on dankmemer?
I wish this'd be fixed already 
ew alacritty
what
ngl i hate the project xD
why .-.
i just dislike the project. when other terminals are way better. even supporting ligature support which alacritty lacks
i use foot for wayland, way faster than alacritty uwu
alacritty cant even support font fallback (it does but not perfect since you cant configure it explicitly)
uh
BUt iTs RuST tHaT MeAnS iTs GoOd?!!
haha good u understand what i mean
also foot is made by a sweed. sweed stuff good
kitty is my fav
i use it with the flag --single-instance --instance-group meow all the time
saves a lot of memory in expense of cpu usage
but foot is better
it has foot --server uwu
it does the same thing but better
โค๏ธ
How do y'all feel... about this size of this terminal
I don't get it
um
it's like the same size as the Windows 10 bar
.-.
wait... the icons on the taskbar look large?
I'd have thought they might be smaller than Windows
oooh
it looks
gewd
theyre smaller
his eyes are just biologically wrong
lol
does anyone here use twitch? i'm trying to figure out if it's possible to stream my own footage to a personal server for easy viewing after the stream is complete viewing
thats why he stepped from the industry to live a normal life
.topic
not good coz of u
.topic
hah
!warn @exotic ridge Please don't post copypastas here. Especially inappropriate ones like those.
:incoming_envelope: :ok_hand: applied warning to @exotic ridge.
i know it wasnt right BUT I HAD TO
xd
i dont want my night to be spoiled
You really did not, hence your warning
oops, maybe that was out of turn \๐ฉ but
Hmm maybe
\๐ this is a thing
I'd come across https://github.com/nim-lang/Nim/wiki/Nim-for-Python-Programmers and found the "REPL" section
I have a strong feeling that this article either is written by someone who isn't very familiar with python, or geared towards "python programmers" that are very new to it
Why so?
Python's one of languages that Nim inherits a good bunch from
o_o you can use spaces in variable names in Nim
There's a lot of things that are either worded poorly or raise a lot of questions
Anything in specific? ยฏ_(ใ)_/ยฏ
len("1\n2\n3".splitlines())
"1\n2\n3".countLines()```
One of the bright examples
Who counts lines by running len on the result of splitlines when str.count("\n") exists
Python converts each of them to \n
not always
And back to platform specific on output
Like for HTTP requests
HTTP requires you use \r\n
I'm sure there are other cases, as well
This is why we have .splitlines() in the first place
and why we don't just do .split("\n")
Meh, a lot of it might be a bit weird but at the end of the day it's just another tiny abstraction that ends up being decently handy
You wouldn't want to work on the assumption that people know the difference between \r\n, \r, and \n
Fair point, though it still sticks out as fairly questionable to me, as in the general case count would be preferable
I feel it mostly depends, but if I wanted to be on the super safe side I'd probably still just len() the splitlines too ยฏ_(ใ)_/ยฏ
You have to account for different line separators in edge cases, most common operations would be fine with count since both input and file io are converted from platform native to \n
I mean there's not really a downside to it existing like this
maybe like the tiniest amount of microseconds worth of time
that's one less edge case that people have to account for, without really being a con in any other regard
For a chonky string it would take a bunch of memory and time since it'd split the string into a temporary list just to get the len
well, it'd depend on the implementation of .countlines()
it's worth noting that this is Nim, so it's not going to be anywhere near as slow as Python would be
I'd assume countLines doesn't split the string and goes the sane way of actually counting lines
I would assume so, as well
There are some other slight imprecisions and simplifications that sound w3schools-ish to me, like comparing __init__ to make/newType
I guess one solution might be to .split(), and then join each line that isn't ""
"\n".join([line for line in s.split() if line])
I'm probably about to
it's 12 AM
!d textwrap.dedent
textwrap.dedent(text)```
Remove any common leading whitespace from every line in *text*.
This can be used to make triple-quoted strings line up with the left edge of the display, while still presenting them in the source code in indented form.
Note that tabs and spaces are both treated as whitespace, but they are not equal: the lines `" hello"` and `"thello"` are considered to have no common leading whitespace.
Lines containing only whitespace are ignored in the input and normalized to a single newline character in the output.
For example:
Oh, varying
>>> s = "foo\n\t\tbar\tbaz\t\t\tmeow"
>>> "\n".join(line for line in s.split() if line)
'foo\nbar\nbaz\nmeow'
idk if there's a better solution there, but \๐ฉ
!e py import re print(re.sub(r'\n[ \t]*','\n', '''This Is a multiline string with varying levels of indentation \t of mixed tabs and spaces''' ))
fuck
@round rose :white_check_mark: Your eval job has completed with return code 0.
001 | This
002 | Is a multiline string
003 | with varying levels of indentation
004 | of mixed tabs and spaces
lol
I wonder who's is faster, though ๐
well, you should use the same string for both
import std/strutils
proc `$`(s: string): int =
return s.strip().parse_int()
echo $" 69"
Having too much fun with things like this lol
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
001 | 500000 loops, best of 5: 912 nsec per loop
002 | 100000 loops, best of 5: 2.11 usec per loop
!e Yeah, regex is generally not very fast ```py
from timeit import timeit
string = """very long
multiline string
\twith mixed tabs and spaces
"""
long = string * 10_000
import re
def strip_re(string):
re.sub(r'\n[\t ]*', r'\n', string)
def strip_join(string):
'\n'.join([s.trim() for s in string.splitlines()])
print(timeit('strip_re(string)'))
print(timeit('strip_join(string)'))
print(timeit('strip_re(long)'))
print(timeit('strip_split(long)')) ```
print(timeit(
@round rose :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 17, in <module>
003 | File "/usr/local/lib/python3.10/timeit.py", line 234, in timeit
004 | return Timer(stmt, setup, timer, globals).timeit(number)
005 | File "/usr/local/lib/python3.10/timeit.py", line 178, in timeit
006 | timing = self.inner(it, self.timer)
007 | File "<timeit-src>", line 6, in inner
008 | NameError: name 'strip_re' is not defined
fuckkkkk
yeah ik, I'm on phone
that's why I'm frustrated
passing globals is going to be pain kekw
This is why we wish that !e was an IPython kernel
!e Yeah, regex is generally not very fast
from timeit import timeit
string = """very long
multiline string
\twith mixed tabs and spaces
"""
long = string * 10_000
import re
def strip_re(string):
re.sub(r'\n[\t ]*', r'\n', string)
def strip_join(string):
'\n'.join([s.trim() for s in string.splitlines()])
print(timeit('strip_re(string)', globals() ))
print(timeit('strip_join(string)', globals () ))
print(timeit('strip_re(long)', globals() ))
print(timeit('strip_split(long)', globals()))```
@round rose :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 17, in <module>
003 | File "/usr/local/lib/python3.10/timeit.py", line 234, in timeit
004 | return Timer(stmt, setup, timer, globals).timeit(number)
005 | File "/usr/local/lib/python3.10/timeit.py", line 120, in __init__
006 | raise ValueError("setup is neither a string nor callable")
007 | ValueError: setup is neither a string nor callable
Fuck off, I'm not fixing that
lol
too much Rust
and it's also the fact that I didn't pass globals as kwargs
multilingual problems ๐
C# also calls it trim, which is why I keep defaulting to that
oh god. I tried the js backend for Nim
and I thought human written JS was esoteric
and yes I plan on using this folder later for actual AoC things, but I'm busy testing ๐ค
december is exam week
๐ฉ
but i barely studies
uh oh
i wonder if i can participate in aoc
let epicVariable = 69
echo epic_variable
epic Nim moment
I wonder why echo isn't highlighted here
ooo nim
haven't touched it yet
nim
.bm nim > rust
lol
.bm nim < rust
Your input was invalid: You must either provide a valid message to bookmark, or reply to one.
The lookup strategy for a message is as follows (in order):
- Lookup by '{channel ID}-{message ID}' (retrieved by shift-clicking on 'Copy ID')
- Lookup by message ID (the message must have been sent after the bot last started)
- Lookup by message URL
Usage:```
.bookmark [target_message] [title=Bookmark]
.bm
@dire siren > @mild abyss
.bm
.bookmark this is how you bookmark
Your input was invalid: You must either provide a valid message to bookmark, or reply to one.
The lookup strategy for a message is as follows (in order):
- Lookup by '{channel ID}-{message ID}' (retrieved by shift-clicking on 'Copy ID')
- Lookup by message ID (the message must have been sent after the bot last started)
- Lookup by message URL
Usage:```
.bookmark [target_message] [title=Bookmark]
There's worse out there
*cough* PureScript, Idris, Agda
But yeah, wtf is that codegen
wtf
tbh, not that anyone is going to read this
That looks like a virtual-machine-in-JS sort of deal versus declarative-to-imperative
ReScript does generate nice JS, and elm output isn't all too bad either, though it does just stick it's entire stdlib on top
Granted that they're much simpler languages, yeah
well tbh the part I screenshotted was just the part with with the hello world
the beginning has a lot of... numbers
the point is to be the first to develop it
what counts is how quickly can you go from problem to solution
regardless of the means
short of copying the solution
First solve the puzzle, then you can think about speed
ok
so you're trying to tell me that this is a feature?
Madly annoying is what it is
kitty breaking pkcon 
use alacritty
or foot
the clear there clears
alacritty is broken on wayland
how so?
works fine for me but i dont frequently use it
well u can use that to clear everything
it's too small
??? what is smol?
... Alacritty
??? what
make it big
that's annoying
i mean a screenshot is fine so i can understand
wot
i dont get how alacritty on wayland is borken
ah thats not alacritty's fault
it's not
well... it is and it isn't
no other app is broken
thats from KDE Plasma's. it remembered the size the last time it opened
just make it big and then close it
that won't do anything
it will
Alacritty sets the size every time
it's too annoying to resize it every single time
u can check alacritty.yml
u can set the size when it opens
hmmm where did u install alacritty?
First by PPA
maybe try the master branch
then I manually compiled it myself
yuck
I already tried that
yes
๐ค maybe i should try KDE Flasma
and reproduce it
pretty sure it is just KDE Plasma being bonkers
only Alacritty has this problem
imma check on mah side. going to install KDE Plasma pattern
pain
i really hate openSUSE when it installs a pattern. they say it is for stability. sure. okiee
I have a feeling you'll come to regret mixing DEs
already been there, done that.
i regret using DEs at all ๐ฉ

my headless pi is perfection why ruin it with silly graphics
add a lil bit of your entrails
i mean graphics
kitty >> alacrity anyday imo
wrong
u
what
shots fired 40 minutes ago
@latent scaffold yep you are right
alacritty is buggy on KDE Plasma
it opens with shitty idk what it is
however in Plasma X11, it works fine
Plasma Wayland seems to be the problem
GNOME supremacy
gnome is pretty unusable tbh and i cba to get it fixed, the most useable DE i've found is xfce lol
as in "wow it actually has toggles to turn off all the crap that ruins my gaming experience instead of making me go into some cryptic x11 config files"
ยฏ_(ใ)_/ยฏ
xfce looks nice
ยฏ_(ใ)_/ยฏ
me who just works with it just fine
I hate GNOME for many reasons, mainly as you can no longer theme it. This is why I use KDE.
I use Debian Sid and KDE seems to be very stable for being on Sid ngl.
Bruh these standups are fucking murder
Whoever invented the standup i hope theyre dead already otherwise i might do something drastic to their bodily integrity
What is a standup?
Its supposed to be a quick 10min max first-thing-in-the-day give-coworkers-update-on-your-work kinda thing
Took 40min today
More like a sitdown than a standup
One thing I think is fucking murder is mint toothpaste, I hate mint SOOO much I wish I could punch the creator, too bad the creator is long dead.
Mint is awesome wtf
it BUUURNS
Burns so good*
But if mint burns to the point that it hurts you should go see a dentist
Probably a sign of gum disease
i just hate the flavour
nah, it's not THAT bad
Why can't they have any other toothpaste flavour for fucks sake ;-;
I know, but it's for kids
I can't even eat mint ice cream without suffering
to the taste
What in the hell?
lol
I love meat, but not THAT kind of meat
You don't want to brush your teeth with meat paste first thing in the morning?
Now your just going to make me sick ๐คฎ
Finally seeing you as a helper!! Cheers mate!!
Helping find the highest quality meat-based personal hygiene products. Next on the list, Smokey BBQ Moisturiser
uhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
Person eats moisturizer, ends up in ICU. Barbecue ban up to blame
do you wanna get ants, cause thats how you get ants
uhhh so?
were you just spamming google keyboard suggestions lmao
lmao
Nothing so fancy! Just think of something weird and make it a part of a product you use on yourself.
Southern Fried Chicken Talc
or
Beef Stock Cologne ๐
lol
.topic
e
๐ค more like a year if we include those months and days i havent coded
I feel so powerful
hmmmm
12
@viscid hemlock i think you forgot to handle RejectConnection.has_body ๐
i mean its not necessary but /shrug
.topic
There's nothing to handle there really, but you're right that I should probably pass that over to the Exception so that if someone wishes to debug a problem they can get the body as well yeah.
๐
.topic
tomato
.topic
Lol
Dubai maybe, depends on many things
Graphic designing and repairing household things such that it can used more ๐
@distant hazel this was your pfp lol
same, but green lemon == lime
Citrus taxonomy refers to the botanical classification of the species, varieties, cultivars, and graft hybrids within the genus Citrus and related genera, found in cultivation and in the wild.
Citrus taxonomy is complex and controversial. Cultivated citrus are derived from various citrus species found in the wild. Some are only selections of the...
if u want vitamin c why not drink concentrated vitamin c
Only top 7%? Huh
hehe
It seems that I do listen to music quite often
I think it doesn't
lemme check
your current year doesn't get updated
so either ghost month, or counts for the next
No. Lime can also be yellow but we mostly use unripe limes, hence we associate them with green-looking citrus. Ripe limes are bitter instead of acidic
how you know about limes and lemons so much lool
green lemon == lime, yellow lemon == normal lemon
lol
I knew lemons could be green but I also just googled it
doodoo
I dont even know the difference in lime and lemon, arent they the same
Green lemon == unripe lemon
Lime == green lime
Yellow lemon == lemon
Yellow lime == ripe (bitter) lime
Mina literally posted several diagrams and whole Wikipedia article on how citruses were crossed XD
Yeah I wont understand from that xD
Again. See where is Lemon and where are two Limes. And that those are different pictures
They are different species, although both are kinds of citrus fruit
there's cold earl grey?
its a star trek joke heh
A montage of all the times Captain Jean-Luc Picard references to Earl Grey tea.
i think that was a guest star, i dont remember that episode. im a wannabe trekkie
Hi
@tulip cedar why arent you allowed to use discord xD
Are you gaming? 91% RAM lol
Eh its a long story I have had a few problems in the past year and my parents have banned discord now
Just VSCode and Chrome
Wha......you ok?
8 gigs is enough for gaming they said.
Yea they got sorted in March this year
I got 4 tho
Impressive.
I Feel sorry for you
8 year old lappy what do u expect
Grenade
Eh I don't really care haha. Learnt a dozen things from those problems
Just my bare windows uses 5 gb on clean install lol
๐คฃ this grenade once overheated and shut down
Now am curious xDD
I am using Windows 10 on this
Processor?
Idk most probably cz I was using it when I was in a blanket and the fans were blocked
tho I am still doing the same
You dont even know the processor

๐คทโโ๏ธ
Why not use linux?
Idk
Runs way smoother on those specs.
BTW have u heard about coffeescript?
Those specs are really nice ngl
switch day
when "Mon" then go work
when "Tue" then go relax
when "Thu" then go iceFishing
when "Fri", "Sat"
if day is bingoDay
go bingo
go dancing
when "Sun" then go church
else go work
This is switch case in it haha
Facts
Mine are the same but 8 gigs ram
O
And 650 Gtx
Ohh PC specs
Well I was gonna increase this laptop's RAM but both the ram slots are full with 2 GB each
I'm not even gonna start on my specs lol
Yea just talking about my super computer
Sad....
Yea but cannot really help it haha
PC Specs
||CPU: AMD Ryzen 5 3600
GPU: EVGA RTX 3070 FTW3
RAM: Teamgroup T-Force Vulcan Z (4x16) 64Gb DDR4 3600
PSU: Corsair RM850
MOBO: MSI MAG X570 Tomahawk
Storage: 1 Tb Samsung 970 Evo & 1 Tb Samsung 980
CPU Cooler: Cooler Master Hyper 212
Case: Fractal Meshify C
Monitor: Asus VG27AQ 2560x1440 165Hz
Keyboard: Rosewill RK-9000V2
Mouse: Corsair Harpoon RGB
Speakers: Creative Pebble 4.5"||
Just give a heads up ill leave
O
๐คฃ why tho
He has been preparing is whole life for this moment.
LMAO
You know why
Facts
Exactly
U got a good lappy
At least a year since I built the PC
I kinda got these specs but 32 gigs and then a 2600x and x470 with 2.5tb nvme
i3 5th gen, 8gb ram, 650 gtx, 1tb hdd
And my poor lappy runs VALORANT at 110 fps nm
idk where you use 64gb of ram for lmao
yes
And here is my lappy, that cannot even run GTA: San Andreas on Medium-High graphics ;-;
That game is good though
Gotta let the RAM have some breathing room
Vice city!
32 is more than enough breathing room lol
I sometimes hit 17 but that's it.
Haha true... Old is gold
Thats universally false
Well... that is a saying here but okay
a = 1
if a == 1
console.log(a)
this coffeescript code generated
// Generated by CoffeeScript 2.6.1
(function() {
var a;
a = 1;
if (a === 1) {
console.log(a);
}
}).call(this);
I'm expecting no change since the new generation isnt what it was supposed to be xD
Lmao true tho
991 of the top 1000 time to upgrade
Gotta upgrade the graphics card
Anyone here who happens to know a GUI library for JS? Like Tkinter in Python
If you can find one that is.
Build cross-platform desktop apps with JavaScript, HTML, and CSS.
This is basic javascript as of now, leaving the var/let/const
I started it just now
Yea but I thought it would have compiled to a much... easier code
You tried more than me i stopped when i needed to add ; after every line.
Me who didnt even know discord was writen in node
Yeah it is, that's why the website looks almost identical.
That is why I am using cofffeescript
Am I the only one using intellisense for semicolons
Do CTRL+SHIFT+I inside discord.
Inspect
It's just a website.
I know
Me who uses them in Python too: ๐
Semicolons?
@tulip cedar :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
Hillarious.
,-,
Y saying you don't like panda's?
Hold shift and the red dustbin is one click away
I love 'em
Hmmmmm and that is the only dustbin around me ngl

I-

Nitro 
I like to throw wrappers in my room balcony (no judging please I am sleep drunk)
Whats the time?
Discord gave it to me for free for 1 month aint gonna say no to that.
12:44 AM
H O W
Christmas Gift?
Yeah :)
Me whose credit card doesnt even work for free nitro
O
I used Paypal.
And worked for free spotify
Me who used a fake one: 
Rich people
Bade bhaiya
I don't have a credit card.
๐คฃ
Me who uses my father's
Didn't expect u being from India ngl
Interesting, forget about it then xD
insert tech support joke here:
Hmmmmmmmmmmmmmm I don't tend to forget things easily cz I map everything including names and other information to your profile pic. PFP changed --> everything gone from my mind ๐คฃ
Noted are still a thing
Notes*
Why making notes. I don't make them in school why make here ;-;
I make too many typos on phone ,-,
Relatable
Hmmmmmmmmmmmmmmmmmmmmmmmmmm I am on phone most of the time tho
But your phone has discord
Yea...?
Hidden Apps are a thing in modern phones grandma
Me using andriod 6-
Me using Android 11 iirc
Flex
Ok so
I got a new MIUI Update
But a downside
IT IS OF FUCKING 2.2 GBBBBBBBBBBBBBBBB
Wao
Looool
How tf my phone is even 75 GB full ๐
Your phone, how would I know
There are only 12.8k photos on my phone and well... they all are games screenshots or discord screenshots lmao
So yea I guess........ I should start cleaning up a bit
Only 13k photos nothing much
Like wao
time to calculate
And 1.5 gb memory
26 gb approx.
31 GB photos
"Only"
Nothing can be more waoer
Hahahaha the storage graph kinda fucked up
Wao
Thats allot of p**n
Parents check phone so cannot keep it ;-;
Just encrypt it
Nahhh I got mobile data for those things haha
Rip bundle
???
Sad.....mine too
LMAO
Parents shouldn't do that imo..
Still
Well they haven't checked it since an year now
Thats why I paused my yt history and need to sign out of discord everytime I leave my phone
So ig it is calm
Okay if you are like under 12 or smth but if you are older let your kid be.
๐คฃ My google search history is paused all the time
Discord doesnt allow 12 year olds
Yea
I would reset my phone everytime they wanted to look
Me who uses brave and told my parents brave is a game
Lmao I also delete discord
LMAOOOOOOOOOOOOOOOO
I don't download browsers tbh
My google crashes everytime i make a search
Rich people
Nahhhhh
I got it last year and I don't get a new phone before I go to college
๐คทโโ๏ธ
Everything doesnt end here, i have to delete my "private" whatsapp chats too lmao
O
Understandable
My parents doesn't check my WhatsApp
My dad says u can keep your wa chats private
๐
Lucky
But recently I found a new way to do the things, change the password every night cz they check it without me knowing while I am asleep thinking like I dont know theyre checking it
I've just got one "friend"
Ye
Just archive the chat
Hold the chat and click archive
It will hide the chat
Like not hide
Uhhh lemme show
I'll see for myself
Ah
Had my ex archived and she messages out of nowhere a few days ago ;-;
Good thing archived chats don't show notifications
Waooo
They just show a number at the side that u got a message
I was literally saved ngl
I noticed the message literally after 1 day
What lol, your parents dont know you had a gf?
Lucky
That was one of the "problems" that happened last year ๐คฃ
My parents never knew the whole thing, neither I bothered myself to tell them
I was curious about knowing those thingss xD
Any normal person would do that
Woah
Breaking someone's heart isnt a joke lmao
Uhhhh won't really say much on this but she was the one who lied about everything ๐คทโโ๏ธ
I pity you sm
Haha I am glad its over ngl
And after messaging me last week, she has ghosted me again lmao
Weird girl tbh
mm...Interesting, good luck with your life matters, thats all I can say
Eh its over and seems like my life is back to normal for a few days
Haha my life is the most craziest one
Mine is the same as yours ngl
Deal with it, Life awakens xD
Hehe I am dealing with them since last year lockdown
Bruh npm doesn't want to install a module
Even more interesting
Why lol
is everything interesting for you
stuck on here since the last 5 min
I-
Try running it again, happens with me too sometimes
the same problem is there in pip too
I'll just stop texting Interesting and make some cringe jokes then
Idk, never faced it
Nahhhhh Interesting is better than being in an........... awkward situation
I'm super weird ngl xD
Cannot be weirder than me
Maybe
This is the first time in 1 year of me having a wholesome conversation with someone lol
Haha good to hear
Have some of my insomnia, best
Eh I already got other health problems
Everybody does
๐คทโโ๏ธ I suspect not as bad as mine but don't really wanna talk about it, recovered last week only
Better not bring up the negativity
I'm not making any comments, may seem like simping xD
๐คฃ my simple answer if someone says simp is No, Hunter. Ezzz
Me who didnt even understand your joke
SO I JUST WAITED FOR 10 MIN TO LET NPM COMPILE A MODULE BUT IT SENDS ME AN ERROR WOW
they say I am simp but I just say that no, I am Hunter
Ezzz
Your life's a joke ||like mine||
Idk about yours but mine surely is
Interesting
Hmmmm
According to me, you have everything
Other than happiness
npmjs website do be better than pypi's
one of those things but yea
Yeah, me too was surprised
Well it is understood since JS is mostly used for website dev
You're living a poor quality life
Won't really say poor but yea something like that
Lets hope its installed from the website else I'mma kms now
Depressed?
Install cmake?
Haha, install node again lmao
Yea I am doing that
Why tho
No one understands my complicated cringe jokes
Npm issue tops
Wao
Hehe time to wash my face
Cant argue
Redbull XD
None at home and if I get one, my brother gonna drink it ;-;
Even more sedder, I see youre listening to spotify?
That's me like 99% of the time I am online on Discord
Same lol, try searching starwars and play the first track, theres an easter egg
What lol
ISP lowers the internet speed at night
Sue them
Wao
Cannot really help it tbh
I am damn sure I am gonna sleep with this laptop on my lap
Anyways time to hangout in a VC doing....... nothing
O good ping
Like casually at 2 at night
Damn didn't see its already 2
277 is good?
Im ancient ig
Or I am a bit too advanced for my age? Who knows
You really seem like a 15 year old ngl
Ah 16, I see
Mhm
Is it just me or it is weird that everyone I know online on discord knows my birthday
Well 99% of those
Idk ,-, youre special
Lol idek when is it
Everyone is
DUDE ANOTHER ERROR IN NPM
Interesting
You didnt install it properly ig
Interesting, me who doesnt even know anyone having their birthday in the month as of mine
Which month
Wao
January
Wao
Good luck
Else fuck npm I will see it after my exam is finished
Boards?
I am in 11th
My bad
Term 1
I'm drunk ig
Mauj karlo bhaiya, agle saal aur bhi mazey karna
๐คฃ not in Commerce tho
No lol, I really cant sleep
Wth, commerce
When do u even sleep then
Yea. Science would have killed me
At 7 or 8 am
Thats when I start feeling sleepy
Then don't waste your time and go and study ๐คฃ
And wake up at around 12 doesnt matter
4 hour sleep?
My parents dont understand, they want me to sleep at night ,-,
Guess so
Weird my laptop shut down automatically again
All of a sudden
;-;
Anyways I was gonna turn it off so id
C
Less
Your life's sad
๐คทโโ๏ธ
What can I dooo
I don't get to complain
You shouldnt
Start doing your work at night and complete sleeping during the day
Ik
wait, what's your age ๐คจ
That tells u r still a minor?
That seemed obvious ig
Lmao my parents know I am up till late at nights, but they don't care since I have my own room ๐คฃ
I have a few online friends who are in college but still gotta listen to their parents
Rich people
You wish
Sad
And yea all are Indian
No comments then
Lmao
I got many Indian friends like half my friends list ate Indians
Hi there human
ngl, when people refuse to tell their age, I usually assume they're under the age of 13
Wao, more than half of my friends list are guys, and thats why I keep my account out of reach
That's the same for me but I don't think like that in this case
Opposite for me. Most my DMs are girls ๐คทโโ๏ธ
i refuse to tell my age because it's funny lol
Meanwhile 11 year olds using insta
I have a feeling you're 20+
Looool
That's... concerning and illegal but whatever
Me who's 16 but has sent wrong age to discord: ๐
I mean, if you arent even 18, no google account
I don't really use any other account except discord
Google is 13+
Friends made my insta account but hell with it
Same
before 13, you need a parent's permission
Meanwhile me using reddit
Wao
Took phone to school, my friend took my phone and made an account with my phone number and email ffs
Phone to school, wao
Rich people rich schools
So?
Large majority of schools will not allow phones
So I am allowed, if I keep it on airplane and in the bag most of the times
Mine also doesn't
but so many people break the rule, that they just don't enforce it
Lol
Since I go alone, I am allowed
Wao
I mean, literally each student brings phone and the teachers don't care
Oh thats why
Even if they go in a bus
No one cares
the kinda school i went to at like high school worked pretty much the same as college 
If my school allowed phones, it would be a disaster
That's why you are Chad
I mean it's not a big deal, only the really angy teachers enforce the rule usually
Eh nothing happens tbh. We can use phones in absense of teachers but if they see us using phones, they can take those and our parents will have to go to school
Not unless your school is a middle school
oof
High school
And we.... well we still use them lmao
Then I have my doubts that it'd be any big deal ยฏ_(ใ)_/ยฏ
Rich people
More of careless ones
wdym rich people .-.
rich ppl is when phones
oh yes. I'm rich because I have a phone
Not when you see every one of my classmates taking selfies with a dustbin which they love
._.
Lol
๐คท
Good morning for me 
Believe it or not, not everyone lives in India ๐
Your bad, i do
huh?
Huh huh?
๐คฃ
Good morning then (:
Gud evening/afternoon to you too!
I went through the Spotify "Wrapped" thing... apparently I'm the top 0.01% of listeners for Chase Atlantic \๐ฉ
damn
I was 0.5 of twenty one pilots
Though I expected it to show my percentage at AJR listeners
amateur numbers
Artists:
- Twenty One Pilots
- AJR
- Queen
- Mashina
- Alec Bejamin
Songs:
- Somebody To Love
- Drama
- I'm Not Famous
- Stressed Out
- Faded
Even though these statistics are very weird
brooo
17k minutes on Chase Atlantic ๐
what
Damn I really didnโt listen to much this year, only like 10k
my top artists and songs were hella predictable lmao
I knew exactly what would be there
All my top songs are from one band, and I knew theyโd be my top artist
I wish youtube music did a thing like that
I used to use spotify but they've done a Discord and did everything they possibly can to make their service and apps worse over the past few years
Somebody to love๐
Wym done a discord?
Discord has done everything they possibly can to make their service worse over the past few years
Shining example of how to absolutely ruin something with a massive, growing userbase and serious potential
Yeah but what did spotify do?๐
Screwed the radio mode up, made it a static playlist that never changes instead of a dynamically generated station
basically after about an hour of starting a song radio, it just repeats
you get like ~10 songs on loop constantly
liking songs doesn't change the playlist
disliking songs doesn't either, just removes from them it
they absolutely bollocksed shuffle play
shuffle play a playlist and it'll do the same "Shuffle" every time
then they moved the radio functionality to a separate app - spotify stations
And it works as you'd expect dynamically...except you can only start stations based on artists, not specific songs
which is really annoying when there are loads of artists that I like one or two songs from but not most of their music
I use YouTube Music these days, it does all of this very well
And good morning to you too ^^
@marsh vine couldn't post picture in other chat
it will crop for you too, when i did this one it was trying to just do the little selection menus
screenshot tool? which one?
sharex
last i checked it is only available on windows
yeah yeh. i tried once but got overwhelmed with all the settings lol
yeah that can happen, i only have 2 shortcuts set up with it. copy and save
which is just hotkey settings. and then application settings > paths to pick a folder for saves
heres my hotkey settings
:incoming_envelope: :ok_hand: applied mute to @velvet shale until <t:1638429671:f> (9 minutes and 59 seconds) (reason: chars rule: sent 6000 characters in 5s).
who remembers this
That's...... Quite a lot
I'm guessing he lost his account and it sent a scam message to all channels at the same time and it piled up to 6000 characters...
Or he just spammed
it was this lol
lmao
it goes off the screen quite a bit ๐
That's quite nice

