#ot1-perplexing-regexing

1 messages ยท Page 620 of 1

latent scaffold
#

microOS and Kubic are for containers

mild abyss
#

who cares ๐Ÿ˜‚

latent scaffold
#

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.

latent scaffold
latent scaffold
#

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

mild abyss
latent scaffold
mild abyss
#

workload can include desktop use

latent scaffold
mild abyss
latent scaffold
mild abyss
#

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

latent scaffold
#

I don't get it

mild abyss
#

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

latent scaffold
#

microOS would just have the same YaST installer

#

but with defaults tailored to hosting containers

mild abyss
#

nope

latent scaffold
#

I've seen the microOS section in the YaST installer

mild abyss
#

it has a yast installer but the core system is immutable

#

meaning it is read only

#

:)

mild abyss
latent scaffold
mild abyss
#

basically a modification of podman

mild abyss
latent scaffold
#

maybe, then

mild abyss
#

i have tried silverblue so i know :/

#

but microos has both kubic and toolbox, ๐Ÿค”

#

imma sleep now.

harsh tundra
#

@torpid saffron that's how it looks like

torpid saffron
jovial oriole
#

anyone have any advice on how to become rich on dankmemer?

latent scaffold
#

I wish this'd be fixed already lemon_angrysad

mild abyss
latent scaffold
#

what

mild abyss
#

ngl i hate the project xD

latent scaffold
#

why .-.

mild abyss
#

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)

latent scaffold
#

uh

viscid hemlock
#

BUt iTs RuST tHaT MeAnS iTs GoOd?!!

mild abyss
#

it is true though

mild abyss
#

also foot is made by a sweed. sweed stuff good

latent scaffold
#

I'll use kitty

#

because of the name

mild abyss
#

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

#

โค๏ธ

latent scaffold
#

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

mild abyss
#

it looks

#

gewd

mild abyss
#

his eyes are just biologically wrong

latent scaffold
#

lol

vernal lark
#

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

solemn leaf
#

thats why he stepped from the industry to live a normal life

graceful iris
#

.topic

median domeBOT
#
**How are you?**

Suggest more topics here!

graceful iris
#

not good coz of u

rough sapphire
#

.topic

graceful iris
#

hah

rough sapphire
#

!warn @exotic ridge Please don't post copypastas here. Especially inappropriate ones like those.

royal lakeBOT
#

:incoming_envelope: :ok_hand: applied warning to @exotic ridge.

exotic ridge
#

xd

#

i dont want my night to be spoiled

latent scaffold
#

oops, maybe that was out of turn \๐Ÿ˜ฉ but

rough sapphire
#

what happened?

#

thanks pycerealobject

exotic ridge
latent scaffold
#

\๐Ÿ˜“ this is a thing

round rose
#

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

latent scaffold
#

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

round rose
#

There's a lot of things that are either worded poorly or raise a lot of questions

latent scaffold
#
let `epic variable name`: int = 69
#

never knew that one

latent scaffold
round rose
#
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

latent scaffold
#

cause \n isn't the only line discriminator

#

there's also \r\n and \r

round rose
#

Python converts each of them to \n

latent scaffold
#

not always

round rose
#

And back to platform specific on output

latent scaffold
#

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")

round rose
#

That's fair for \r only line separators

#

crlf would still work correctly

latent scaffold
#

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

round rose
#

Fair point, though it still sticks out as fairly questionable to me, as in the general case count would be preferable

latent scaffold
#

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 ยฏ_(ใƒ„)_/ยฏ

round rose
#

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

latent scaffold
#

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

round rose
#

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

latent scaffold
#

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

round rose
#

I'd assume countLines doesn't split the string and goes the sane way of actually counting lines

latent scaffold
#

I would assume so, as well

round rose
#

There are some other slight imprecisions and simplifications that sound w3schools-ish to me, like comparing __init__ to make/newType

latent scaffold
#

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

odd sluice
#

....pm

round rose
#

!d textwrap.dedent

royal lakeBOT
#

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:
round rose
#

Oh, varying

latent scaffold
#
>>> 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 \๐Ÿ˜ฉ

round rose
#

!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

royal lakeBOT
#

@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
latent scaffold
#

lol

round rose
#

fixed

#

That would be my intuitive solution

latent scaffold
#

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

royal lakeBOT
#

@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
round rose
#

!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(

royal lakeBOT
#

@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
round rose
#

fuckkkkk

#

yeah ik, I'm on phone

#

that's why I'm frustrated

#

passing globals is going to be pain kekw

latent scaffold
#

This is why we wish that !e was an IPython kernel

round rose
#

!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()))```
royal lakeBOT
#

@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
round rose
#

Fuck off, I'm not fixing that

latent scaffold
#

lol

round rose
#

regex slow

#

end of story

#

oh right it's strip

#

i keep forgetting

latent scaffold
#

too much Rust

round rose
#

and it's also the fact that I didn't pass globals as kwargs

round rose
#

C# also calls it trim, which is why I keep defaulting to that

latent scaffold
#

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 ๐Ÿ˜ค

dire siren
#

๐Ÿ˜ฉ

#

but i barely studies

latent scaffold
#

uh oh

dire siren
#

i wonder if i can participate in aoc

latent scaffold
#
let epicVariable = 69

echo epic_variable

epic Nim moment

#

I wonder why echo isn't highlighted here

dire siren
#

haven't touched it yet

#

nim

dire siren
latent scaffold
#

lol

mild abyss
#

.bm nim < rust

median domeBOT
#
Noooooo!!

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):

  1. Lookup by '{channel ID}-{message ID}' (retrieved by shift-clicking on 'Copy ID')
  2. Lookup by message ID (the message must have been sent after the bot last started)
  3. Lookup by message URL

Usage:```
.bookmark [target_message] [title=Bookmark]

mild abyss
dire siren
#

@dire siren > @mild abyss

runic wigeon
#

.bookmark this is how you bookmark

median domeBOT
#
Please don't do that.

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):

  1. Lookup by '{channel ID}-{message ID}' (retrieved by shift-clicking on 'Copy ID')
  2. Lookup by message ID (the message must have been sent after the bot last started)
  3. Lookup by message URL

Usage:```
.bookmark [target_message] [title=Bookmark]

runic wigeon
#

sad

#

oh u need to reply

#

thats sad

strange geode
#

hi

#

i need a help

#

in my code

topaz aurora
#

*cough* PureScript, Idris, Agda

#

But yeah, wtf is that codegen

acoustic moss
#

wtf

graceful basin
#

tbh, not that anyone is going to read this

topaz aurora
graceful basin
#

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

topaz aurora
#

Granted that they're much simpler languages, yeah

latent scaffold
#

well tbh the part I screenshotted was just the part with with the hello world

#

the beginning has a lot of... numbers

tribal aurora
#

is the point of aoc codes being clear ?

#

or faster

graceful basin
#

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

tribal aurora
#

alr

#

thanks man

tardy rain
#

First solve the puzzle, then you can think about speed

tribal aurora
#

ok

latent scaffold
#

so you're trying to tell me that this is a feature?

#

Madly annoying is what it is

#

kitty breaking pkcon lemon_angrysad

mild abyss
#

or foot

#

the clear there clears

latent scaffold
#

alacritty is broken on wayland

mild abyss
#

works fine for me but i dont frequently use it

#

well u can use that to clear everything

latent scaffold
mild abyss
latent scaffold
mild abyss
#

??? what

latent scaffold
#

it's 1x2 pixels big

#

wdym what

#

it's small

#

idk what to tell you

mild abyss
#

make it big

latent scaffold
#

that's annoying

mild abyss
#

i mean a screenshot is fine so i can understand

latent scaffold
#

wot

mild abyss
#

i dont get how alacritty on wayland is borken

latent scaffold
mild abyss
latent scaffold
#

well... it is and it isn't

#

no other app is broken

mild abyss
#

thats from KDE Plasma's. it remembered the size the last time it opened

#

just make it big and then close it

latent scaffold
#

that won't do anything

mild abyss
#

it will

latent scaffold
#

Alacritty sets the size every time

#

it's too annoying to resize it every single time

mild abyss
#

u can check alacritty.yml

latent scaffold
#

I set the size

#

but it's ignored

mild abyss
#

u can set the size when it opens

latent scaffold
#

I know that

#

and it ignores it

mild abyss
latent scaffold
#

First by PPA

mild abyss
#

maybe try the master branch

latent scaffold
#

then I manually compiled it myself

mild abyss
latent scaffold
#

I already tried that

mild abyss
#

weird

latent scaffold
#

yes

mild abyss
#

๐Ÿค” maybe i should try KDE Flasma

#

and reproduce it

#

pretty sure it is just KDE Plasma being bonkers

latent scaffold
#

only Alacritty has this problem

mild abyss
latent scaffold
#

rip

#

good luck

#

I don't think I wanna use Kitty anymore

mild abyss
#

pain

#

i really hate openSUSE when it installs a pattern. they say it is for stability. sure. okiee

latent scaffold
#

I have a feeling you'll come to regret mixing DEs

mild abyss
shut ermine
#

i regret using DEs at all ๐Ÿ˜ฉ

latent scaffold
shut ermine
#

my headless pi is perfection why ruin it with silly graphics

mild abyss
#

i mean graphics

mild abyss
#

kitty is good though

latent scaffold
#

no

#

It breaks things

#

namely pkcon

#

and the config sucks

mild abyss
#

it is not kitty's fault if your config sucks

mild abyss
last mantle
#

kitty >> alacrity anyday imo

young shoal
#

wrong

distant hazel
young shoal
#

what

eternal wing
#

shots fired 40 minutes ago

mild abyss
#

@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

mild abyss
#

GNOME supremacy

shut ermine
#

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"

#

ยฏ_(ใƒ„)_/ยฏ

last mantle
#

xfce looks nice

mild abyss
#

me who just works with it just fine

smoky haven
#

I use Debian Sid and KDE seems to be very stable for being on Sid ngl.

tardy rain
#

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

smoky haven
tardy rain
#

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

smoky haven
#

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.

tardy rain
#

Mint is awesome wtf

smoky haven
#

it BUUURNS

tardy rain
#

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

smoky haven
#

i just hate the flavour

smoky haven
tardy rain
#

Ok so you just have bad taste

#

Lmaoooo

smoky haven
#

Why can't they have any other toothpaste flavour for fucks sake ;-;

tardy rain
#

I think kids toothpaste has more flavours

#

Like strawberry and stuf

smoky haven
#

I know, but it's for kids

#

I can't even eat mint ice cream without suffering

#

to the taste

smoky haven
#

What in the hell?

tidal bluff
#

lol

smoky haven
tidal bluff
#

You don't want to brush your teeth with meat paste first thing in the morning?

smoky haven
rough sapphire
tidal bluff
#

Helping find the highest quality meat-based personal hygiene products. Next on the list, Smokey BBQ Moisturiser

odd sluice
#

uhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh

#

Person eats moisturizer, ends up in ICU. Barbecue ban up to blame

tardy rain
#

do you wanna get ants, cause thats how you get ants

shut ermine
solemn leaf
mild abyss
#

lmao

tidal bluff
tribal aurora
#

lol

cursive temple
#

.topic

median domeBOT
#
**How many years have you spent coding?**

Suggest more topics here!

odd sluice
#

e

mild abyss
# median dome

๐Ÿค” more like a year if we include those months and days i havent coded

latent scaffold
#

I feel so powerful

odd sluice
#

hmmmm

uneven pine
gentle sun
#

@viscid hemlock i think you forgot to handle RejectConnection.has_body ๐Ÿ’€

#

i mean its not necessary but /shrug

cursive temple
#

.topic

median domeBOT
#
**What are your hobbies other than programming?**

Suggest more topics here!

cursive temple
#

speaking backwards

#

sdrawkcab gnikaeps

#

nice

viscid hemlock
gentle sun
#

๐Ÿ‘

rugged jewel
#

.topic

median domeBOT
#
**What artistic talents do you have?**

Suggest more topics here!

rugged jewel
#

tomato

#

.topic

#

Lol

#

Dubai maybe, depends on many things

#

Graphic designing and repairing household things such that it can used more ๐Ÿ˜†

rough sapphire
#

@distant hazel this was your pfp lol

distant hazel
#

to be clear, idk what any of this means

rough sapphire
#

same, but green lemon == lime

distant hazel
#

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...

odd sluice
#

if u want vitamin c why not drink concentrated vitamin c

broken dew
#

Only top 7%? Huh

round rose
#

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

harsh tundra
rough sapphire
#

green lemon == lime, yellow lemon == normal lemon

#

lol

harsh tundra
round rose
#

doodoo

rough sapphire
harsh tundra
harsh tundra
rough sapphire
#

Yeah I wont understand from that xD

harsh tundra
#

Again. See where is Lemon and where are two Limes. And that those are different pictures

broken dew
wet onyx
#

this graph makes me feelsgood

#

bergamot is a citrus?!?!

#

no wonder i love earl grey (hot)

distant hazel
#

there's cold earl grey?

wet onyx
#

its a star trek joke heh

distant hazel
#

ah

#

who the guy at the end he's handsome

wet onyx
#

i think that was a guest star, i dont remember that episode. im a wannabe trekkie

tulip cedar
#

Hi

viscid wing
#

@tulip cedar why arent you allowed to use discord xD

ancient dune
tulip cedar
#

Eh its a long story I have had a few problems in the past year and my parents have banned discord now

tulip cedar
ancient dune
tulip cedar
tulip cedar
ancient dune
viscid wing
tulip cedar
viscid wing
tulip cedar
ancient dune
tulip cedar
tulip cedar
tulip cedar
#

tho I am still doing the same

viscid wing
tulip cedar
#

i3 3217U

#

1.7 GHz

#

Intel HD 4000 Graphics

ancient dune
tulip cedar
#

๐Ÿคทโ€โ™‚๏ธ

ancient dune
#

Why not use linux?

tulip cedar
ancient dune
#

Runs way smoother on those specs.

tulip cedar
#

BTW have u heard about coffeescript?

viscid wing
tulip cedar
#
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

tulip cedar
viscid wing
tulip cedar
#

O

viscid wing
#

And 650 Gtx

dapper dew
#

Ohh PC specs

tulip cedar
#

Well I was gonna increase this laptop's RAM but both the ram slots are full with 2 GB each

ancient dune
#

I'm not even gonna start on my specs lol

tulip cedar
tulip cedar
dapper dew
#

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"||

viscid wing
tulip cedar
#

O

tulip cedar
ancient dune
tulip cedar
#

LMAO

viscid wing
tulip cedar
#

Facts

viscid wing
#

Exactly

tulip cedar
dapper dew
tulip cedar
#

LMAO

#

wtf is this icon lmao

ancient dune
viscid wing
ancient dune
#

idk where you use 64gb of ram for lmao

dapper dew
tulip cedar
dapper dew
#

Gotta let the RAM have some breathing room

ancient dune
#

I sometimes hit 17 but that's it.

tulip cedar
viscid wing
tulip cedar
#

Well... that is a saying here but okay

tulip cedar
#
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);
viscid wing
ancient dune
dapper dew
#

Gotta upgrade the graphics card

tulip cedar
#

Anyone here who happens to know a GUI library for JS? Like Tkinter in Python

ancient dune
#

If you can find one that is.

viscid wing
tulip cedar
tulip cedar
ancient dune
#

You tried more than me i stopped when i needed to add ; after every line.

viscid wing
ancient dune
tulip cedar
viscid wing
ancient dune
viscid wing
ancient dune
#

It's just a website.

viscid wing
#

I know

tulip cedar
viscid wing
tulip cedar
#

!e print(1); print(2)

royal lakeBOT
#

@tulip cedar :white_check_mark: Your eval job has completed with return code 0.

001 | 1
002 | 2
ancient dune
#

Hillarious.

tulip cedar
#

Lmao

#

Eevee fast at deleting messages ngl

viscid wing
ancient dune
viscid wing
viscid wing
tulip cedar
ancient dune
ancient dune
viscid wing
tulip cedar
# viscid wing I-

I like to throw wrappers in my room balcony (no judging please I am sleep drunk)

ancient dune
tulip cedar
ancient dune
viscid wing
tulip cedar
#

O

ancient dune
viscid wing
#

And worked for free spotify

tulip cedar
viscid wing
tulip cedar
#

I don't have a cc

#

๐Ÿคทโ€โ™‚๏ธ

viscid wing
ancient dune
#

I don't have a credit card.

tulip cedar
viscid wing
tulip cedar
#

Didn't expect u being from India ngl

viscid wing
ancient dune
#

insert tech support joke here:

tulip cedar
#

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 ๐Ÿคฃ

viscid wing
#

Notes*

tulip cedar
#

Why making notes. I don't make them in school why make here ;-;

viscid wing
#

I make too many typos on phone ,-,

tulip cedar
viscid wing
tulip cedar
viscid wing
#

And you are forbidden to use discord

#

Thats a huge letdown xD

tulip cedar
#

Hidden Apps are a thing in modern phones grandma

viscid wing
tulip cedar
#

Me using Android 11 iirc

viscid wing
#

Flex

tulip cedar
#

Ok so

#

I got a new MIUI Update

#

But a downside

#

IT IS OF FUCKING 2.2 GBBBBBBBBBBBBBBBB

viscid wing
#

Wao

tulip cedar
#

And I got Android 10***

#

not 11

#

Time to put the update on installing

viscid wing
#

Looool

tulip cedar
#

How tf my phone is even 75 GB full ๐Ÿ˜

viscid wing
tulip cedar
#

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

viscid wing
#

Like wao

tulip cedar
#

And all are screenshots

#

One pic of about 2-2.5 MB

#

๐Ÿ˜

viscid wing
#

Me whose just got 16gb storage

tulip cedar
#

time to calculate

viscid wing
#

And 1.5 gb memory

viscid wing
tulip cedar
#

31 GB photos

viscid wing
tulip cedar
#

Nvm it is 12 GB pics and 11 GB vids

#

Hmmmmmm

#

All screen pics/vids

viscid wing
tulip cedar
#

Hahahaha the storage graph kinda fucked up

viscid wing
#

Wao

tulip cedar
ancient dune
#

Thats allot of p**n

tulip cedar
ancient dune
#

Just encrypt it

tulip cedar
#

Nahhh I got mobile data for those things haha

ancient dune
#

Rip bundle

tulip cedar
#

???

viscid wing
tulip cedar
ancient dune
#

Parents shouldn't do that imo..

tulip cedar
#

We minors (at least I am one)

#

Soooooo

ancient dune
#

Still

tulip cedar
#

Well they haven't checked it since an year now

viscid wing
#

Thats why I paused my yt history and need to sign out of discord everytime I leave my phone

tulip cedar
#

So ig it is calm

ancient dune
#

Okay if you are like under 12 or smth but if you are older let your kid be.

tulip cedar
viscid wing
tulip cedar
#

Yea

ancient dune
#

I would reset my phone everytime they wanted to look

viscid wing
tulip cedar
#

Lmao I also delete discord

tulip cedar
#

I don't download browsers tbh

viscid wing
#

My google crashes everytime i make a search

tulip cedar
#

Hahaha

#

Well my phone got 6 GB RAM

#

Still it lags cz MIUI sucks

viscid wing
#

Rich people

tulip cedar
#

Nahhhhh

#

I got it last year and I don't get a new phone before I go to college

#

๐Ÿคทโ€โ™‚๏ธ

viscid wing
tulip cedar
#

O

tulip cedar
#

My parents doesn't check my WhatsApp

#

My dad says u can keep your wa chats private

#

๐Ÿ˜„

viscid wing
tulip cedar
#

Well I don't have anything on whatsapp except classes chats

#

๐Ÿคทโ€โ™‚๏ธ

viscid wing
tulip cedar
#

๐Ÿคฃ aw

#

That do be a pain

#

Changing passes everyday

viscid wing
tulip cedar
#

O

#

RIP

viscid wing
tulip cedar
#

Just archive the chat

viscid wing
#

What does archiving do

tulip cedar
#

Hold the chat and click archive

#

It will hide the chat

#

Like not hide

#

Uhhh lemme show

viscid wing
#

I'll see for myself

tulip cedar
#

Third button

viscid wing
#

Ah

tulip cedar
#

Had my ex archived and she messages out of nowhere a few days ago ;-;

#

Good thing archived chats don't show notifications

viscid wing
#

Waooo

tulip cedar
#

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

viscid wing
viscid wing
tulip cedar
#

That was one of the "problems" that happened last year ๐Ÿคฃ

#

My parents never knew the whole thing, neither I bothered myself to tell them

viscid wing
viscid wing
tulip cedar
#

GF in September -> Breakup in January

#

Ezzz

viscid wing
viscid wing
tulip cedar
tulip cedar
#

Haha I am glad its over ngl

#

And after messaging me last week, she has ghosted me again lmao

#

Weird girl tbh

viscid wing
tulip cedar
#

Eh its over and seems like my life is back to normal for a few days

#

Haha my life is the most craziest one

viscid wing
tulip cedar
#

Hmmm

#

Well for me, one problem solved, another rises

viscid wing
tulip cedar
#

Hehe I am dealing with them since last year lockdown

#

Bruh npm doesn't want to install a module

viscid wing
viscid wing
tulip cedar
tulip cedar
viscid wing
tulip cedar
#

Hahaha

#

Not the cmd freezes great

viscid wing
tulip cedar
#

the same problem is there in pip too

viscid wing
viscid wing
tulip cedar
#

Nahhhhh Interesting is better than being in an........... awkward situation

tulip cedar
#

Cannot be weirder than me

viscid wing
tulip cedar
#

Mhm

#

I should seriously fix my sleep cycle ;-;

viscid wing
#

This is the first time in 1 year of me having a wholesome conversation with someone lol

tulip cedar
#

Haha good to hear

viscid wing
tulip cedar
#

Eh I already got other health problems

viscid wing
tulip cedar
#

๐Ÿคทโ€โ™‚๏ธ I suspect not as bad as mine but don't really wanna talk about it, recovered last week only

tulip cedar
#

Facts

#

Tho I am nothing but negativity

viscid wing
tulip cedar
#

๐Ÿคฃ my simple answer if someone says simp is No, Hunter. Ezzz

viscid wing
tulip cedar
#

SO I JUST WAITED FOR 10 MIN TO LET NPM COMPILE A MODULE BUT IT SENDS ME AN ERROR WOW

tulip cedar
#

Ezzz

viscid wing
tulip cedar
#

Idk about yours but mine surely is

viscid wing
tulip cedar
#

Hmmmm

viscid wing
#

Other than happiness

tulip cedar
#

npmjs website do be better than pypi's

tulip cedar
viscid wing
tulip cedar
#

Well it is understood since JS is mostly used for website dev

viscid wing
tulip cedar
#

Lets hope its installed from the website else I'mma kms now

viscid wing
tulip cedar
#

What the fuck is the error message lmao

viscid wing
#

Its cleaner than pip's ngl

tulip cedar
#

Yea

#

Pip is all red ;-;

tardy rain
#

Install cmake?

viscid wing
tulip cedar
tulip cedar
viscid wing
tulip cedar
#

O

#

But seems like its not a Nodejs issue

viscid wing
#

Npm issue tops

tulip cedar
#

NPM weird ngl

#

Welp I am sleepy now but don't wanna sleep rn ;-;

tulip cedar
#

Hehe time to wash my face

viscid wing
viscid wing
tulip cedar
#

None at home and if I get one, my brother gonna drink it ;-;

viscid wing
tulip cedar
#

That's me like 99% of the time I am online on Discord

viscid wing
tulip cedar
#

O lemme see

#

welp speed throttling

viscid wing
tulip cedar
#

ISP lowers the internet speed at night

viscid wing
tulip cedar
#

๐Ÿคทโ€โ™‚๏ธ idc

#

Also I am sure no one knows what it is here

viscid wing
tulip cedar
#

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

viscid wing
tulip cedar
viscid wing
tulip cedar
#

Nah

#

It was sarcasm

viscid wing
#

Im ancient ig

tulip cedar
#

Or I am a bit too advanced for my age? Who knows

viscid wing
tulip cedar
#

u r close

#

I was 15 when I was in a relationship lol

viscid wing
tulip cedar
#

Mhm

viscid wing
#

If you had your birthday....

#

Otherwise still 15

tulip cedar
#

pithink Is it just me or it is weird that everyone I know online on discord knows my birthday

#

Well 99% of those

viscid wing
tulip cedar
#

Why do u think like that lemon_thinking

#

๐Ÿคฃ that is why I said 99%

tulip cedar
#

DUDE ANOTHER ERROR IN NPM

viscid wing
tulip cedar
#

Mhm

#

Eh it is in September

viscid wing
tulip cedar
#

Well it is another dependency error

#

rimraf

viscid wing
tulip cedar
#

Which month

viscid wing
viscid wing
tulip cedar
#

O

#

A few people I know irl have their bday in Jan lol

tulip cedar
#

Mhm

#

So 5th and the last time tryna install the module

viscid wing
tulip cedar
#

Else fuck npm I will see it after my exam is finished

tulip cedar
#

I am in 11th

viscid wing
#

My bad

tulip cedar
#

Term 1

viscid wing
#

I'm drunk ig

tulip cedar
#

Sleep Drunk

#

You insomnia failed and u r sleepy lol

viscid wing
tulip cedar
#

๐Ÿคฃ not in Commerce tho

viscid wing
viscid wing
tulip cedar
#

When do u even sleep then

tulip cedar
viscid wing
tulip cedar
#

Tf?

#

That is my wake up time ;-;

viscid wing
#

Thats when I start feeling sleepy

tulip cedar
#

Then don't waste your time and go and study ๐Ÿคฃ

viscid wing
#

And wake up at around 12 doesnt matter

tulip cedar
#

4 hour sleep?

viscid wing
viscid wing
tulip cedar
#

Weird my laptop shut down automatically again

#

All of a sudden

#

;-;

#

Anyways I was gonna turn it off so id

#

C

tulip cedar
viscid wing
tulip cedar
#

๐Ÿคทโ€โ™‚๏ธ

viscid wing
tulip cedar
#

I don't get to complain

viscid wing
tulip cedar
tulip cedar
tulip cedar
#

wait, what's your age ๐Ÿคจ

viscid wing
#

Fr

tulip cedar
#

๐Ÿ˜

#

So funny

viscid wing
#

However old i am, no control on my own life

#

Like heck

tulip cedar
#

That tells u r still a minor?

viscid wing
tulip cedar
#

Lmao my parents know I am up till late at nights, but they don't care since I have my own room ๐Ÿคฃ

tulip cedar
tulip cedar
tulip cedar
#

And yea all are Indian

viscid wing
#

No comments then

tulip cedar
#

Lmao

#

I got many Indian friends like half my friends list ate Indians

#

Hi there human

latent scaffold
#

ngl, when people refuse to tell their age, I usually assume they're under the age of 13

viscid wing
tulip cedar
tulip cedar
shut ermine
viscid wing
latent scaffold
latent scaffold
tulip cedar
viscid wing
tulip cedar
#

I don't really use any other account except discord

latent scaffold
tulip cedar
#

Friends made my insta account but hell with it

viscid wing
#

Same

latent scaffold
#

before 13, you need a parent's permission

viscid wing
viscid wing
tulip cedar
#

Took phone to school, my friend took my phone and made an account with my phone number and email ffs

tulip cedar
#

Yea

#

We are allowed

viscid wing
#

Rich people rich schools

tulip cedar
#

Nah

#

I go by myself alone

viscid wing
#

So?

latent scaffold
#

Large majority of schools will not allow phones

tulip cedar
#

So I am allowed, if I keep it on airplane and in the bag most of the times

tulip cedar
latent scaffold
#

but so many people break the rule, that they just don't enforce it

tulip cedar
#

Since I go alone, I am allowed

viscid wing
tulip cedar
#

I mean, literally each student brings phone and the teachers don't care

viscid wing
tulip cedar
#

No one cares

shut ermine
viscid wing
latent scaffold
tulip cedar
latent scaffold
viscid wing
tulip cedar
#

And we.... well we still use them lmao

latent scaffold
viscid wing
tulip cedar
latent scaffold
shut ermine
#

rich ppl is when phones

latent scaffold
#

oh yes. I'm rich because I have a phone

viscid wing
latent scaffold
#

._.

viscid wing
tulip cedar
#

๐Ÿคท

viscid wing
#

I'll go now hunter and i've beeing hording this channel from 2 hours

#

Take careeee

tulip cedar
#

๐Ÿคฃ

#

You too! Gn

viscid wing
latent scaffold
latent scaffold
#

huh?

viscid wing
#

Huh huh?

tulip cedar
#

๐Ÿคฃ

tulip cedar
tulip cedar
latent scaffold
#

I went through the Spotify "Wrapped" thing... apparently I'm the top 0.01% of listeners for Chase Atlantic \๐Ÿ˜ฉ

tardy rain
#

Nice

drifting sage
#

I was 0.5 of twenty one pilots

#

Though I expected it to show my percentage at AJR listeners

tardy rain
#

9.9k minutes dumped on bonobo

#

Worth it

drifting sage
#

broo

#

That's wild

#

I have overall 22,224 minutes

latent scaffold
drifting sage
#

Artists:

  1. Twenty One Pilots
  2. AJR
  3. Queen
  4. Mashina
  5. Alec Bejamin
#

Songs:

  1. Somebody To Love
  2. Drama
  3. I'm Not Famous
  4. Stressed Out
  5. Faded
latent scaffold
drifting sage
#

Even though these statistics are very weird

drifting sage
latent scaffold
odd sluice
#

what

young shoal
#

i only got 98k

tranquil orchid
#

Damn I really didnโ€™t listen to much this year, only like 10k

young shoal
#

my top artists and songs were hella predictable lmao

tranquil orchid
#

I knew exactly what would be there

#

All my top songs are from one band, and I knew theyโ€™d be my top artist

uneven pine
#

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

uneven pine
#

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

rough sapphire
uneven pine
#

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

viscid wing
wet onyx
#

@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

marsh vine
#

Oh wow

#

All automatic?

#

Iโ€™m just gonna install and find out myself ๐Ÿ˜„ thank you

distant hazel
wet onyx
#

last i checked it is only available on windows

distant hazel
#

yeah yeh. i tried once but got overwhelmed with all the settings lol

wet onyx
#

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

royal lakeBOT
#

: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).

fading citrus
#

who remembers this

drifting sage
#

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

frozen coral
drifting sage
#

lmao

frozen coral
#

it goes off the screen quite a bit ๐Ÿ˜„

drifting sage
#

Was overthinking

#

lol

frozen coral
#

Yea, we autoban scam links

#

so at most they can get 2 messages in

drifting sage