#ot1-perplexing-regexing

1 messages · Page 14 of 1

heady hamlet
#

we must move a b c in order to make the as much turn as possible

#

may be alternately not sequencely

#

idk how to use the verb bc my english is terrible tremendously

rough sapphire
#

Hmm

small coral
#

provided answer code seems to work in A-B-C order

heady hamlet
#

i dont know if 2 words has the same meaning

small coral
rough sapphire
#

Regardless, what should be the given answer here, 0 or 1?

#

@heady hamlet

rough sapphire
#

Ah

heady hamlet
heady hamlet
rough sapphire
#

BxW did say at #python-discussion that the end scenario must be three letters next to each other

small coral
heady hamlet
#

may be i'll use google translate the homework

small coral
heady hamlet
#

615 / 5,000
Translation results
Translation result
The game is described as follows: on the number line representing integer points, place three pieces at integer positions A, B, C. Two players alternate. On each turn, the player picks up a piece outside the other two and places it in some integer position between the remaining two pieces (do not place the piece in the position where the piece already exists). The game ends when three pieces stand next to each other. People want to know how long the game can be maintained for as long as possible.

Requirements: Input the integers a, b, c and print out as many turns as possible.

Input: 3 integers A, B, C

Output: as many turns as possible

#

uhm google actually translate better than me

rough sapphire
#

A little bit weird that the problem statement didn't really specify what piece order, it only says "a piece"

#

But

heady hamlet
small coral
#

that makes no sense

heady hamlet
#

we will input the piece of a b c
and then python will show us what is the highest turn of the game

rough sapphire
#

I think it takes the most distance between two of the three "points"

heady hamlet
#

i want to understand how does the answer work in math

#

uhm how does the code give answer

rough sapphire
#

I think cereal might be typing an explanation

small coral
#

sum of distances of segment AB, BC, and AC
subtract maximum distance
subtract minimum distance
subtract 1 from the remaining distance (the middle one, neither the greatest nor the least)
that's the answer for some reason

#

‫so it just gets the middle distance

#

and subtracts 1 from it

heady hamlet
#

this homework will take a lot of time

#

i wish there is a youtube video explain about this clearly

rough sapphire
#

The subtraction of 1 is because in, for example, segment AB where A is 4 and B is 9, you only want to take "the amount of numbers in between", which is 4

#
        A         B
0 1 2 3 4 5 6 7 8 9
          ^ ^ ^ ^     <-- 4 numbers
#

But the absolute value of 4-9 (in alphabetical order) gives 5, 1 above the needed answer

small coral
#

so this is code that should output the same answer ```py
a = int(input())
b = int(input())
c = int(input())

dist_ab = abs(a - b)
dist_bc = abs(b - c)
dist_ac = abs(a - c)

if dist_ab <= dist_bc <= dist_ac:
middle_dist = dist_bc
middle_segm = "BC"
elif dist_bc <= dist_ab <= dist_ac:
middle_dist = dist_ab
middle_segm = "AB"
else:
middle_dist = dist_ac
middle_segm = "AC"

print(f"Segment with the middle distance is {middle_segm} with distance {middle_dist}; answer is {middle_dist - 1}")

heady hamlet
#

BRUIH

#

this is so huge

rough sapphire
#

I'm wondering why the middle-largest distance, though

#

Sorry, it's been a while since I've studied lines and line segments

small coral
#

same i don't do geometry

heady hamlet
#

UH, i didnt know that the abs stands for absolute

rough sapphire
#

I think I got the answer to my question lol

heady hamlet
#

i didn't know that we can use {} to put the numbers inside string

#

noice

#

thank you so much

rough sapphire
#

Yeah, they're called f-strings

#

!fstrings

royal lakeBOT
#

Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.

>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."

Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.

heady hamlet
#

this si cpp;

#

so cool

#

although i didnt understand how the homework work i learned manythings

#

absolutely not regret going here

small coral
#

why is this happening? ```

.\test.py
1
23
22
Segment with the middle distance is AC with distance 21; answer is 20

heady hamlet
#

uhm?

#

what happends?

rough sapphire
#

(22-1) - 1?

small coral
#

smaller example ```

.\test.py
1
7
6
Segment with the middle distance is AC with distance 5; answer is 4

rough sapphire
#

I think I figured out the explanation, but it may take a while to type

small coral
#

ok

#

oh wait ```
INIT
A C B
0 1 2 3 4 5 6 7
MOVE 1
A B C
0 1 2 3 4 5 6 7
MOVE 2
B A C
0 1 2 3 4 5 6 7
MOVE 3
A B C
0 1 2 3 4 5 6 7
MOVE 4
B A C
0 1 2 3 4 5 6 7

#

C doesn't move at all

heady hamlet
#

i want to go WC

rough sapphire
#

VC (voice chat)? I unfortunately don't have a microphone

small coral
rough sapphire
small coral
rough sapphire
#

Yeah

heady hamlet
rough sapphire
#

Sure

heady hamlet
#

WC means Water-closet

#

i finished going WC

#

now let's work

small coral
#

so for A B C 0 1 2 3 4 5 6 7 8 9 it goes like this i think ```
INIT
A B C
0 1 2 3 4 5 6 7 8 9
MOVE 1
B A C
0 1 2 3 4 5 6 7 8 9
MOVE 2

      A B C

0 1 2 3 4 5 6 7 8 9

crystal spruce
#

what are you guys getting confused about?

small coral
#

i think i understand why it has to specify "as long as possible" now

heady hamlet
#

why it gib answer

small coral
rough sapphire
#

Two people in chat typing an explanation 😄

crystal spruce
#

say the three points are ABC in that order
so you get three distances AB, BC, and AC in unsorted order because you don't know which is which
AC is AB+BC, which is always going to be the maximum of the three distances
once you pick a segment as the inner one, the optimum method to maximize turns would be to place it next to one of the boundaries and inch towards the other one, and that'll take segment_len-1 turns
so you want to pick out of AB and BC the maximum length to maximize the turns
to get max of AB and BC, you get rid of the maximum of the three distances, which will always be AC, and the minimum, which will be the shorter of the two segments, and you get your max segment, and you subtract one from that to get the answer

small coral
#

i completely got it

heady hamlet
#

uhm, my note says:

k = max(A,B,C)
P= min (A,B,C)
if A!= k and A!=P
print (max(abs(A-k), abs(A-P))
crystal spruce
rough sapphire
#

Hmm, my explanation is getting very long so I'll only mention that we get the middle distance instead of the smallest and largest ones because the largest one is the entire ABC line (which we don't need) and the shortest one is not the longest way to play the game (and so we also don't need it)

heady hamlet
#

me trying to understand 😵‍💫

#

i will work my brain as hard as possible to translate and understand your sentences

rough sapphire
heady hamlet
#

oh ye

#

ok

#

i think i understood

#

i really need your example like that because my brain will explode by dint of translating

rough sapphire
#

But yeah, quoting Stickie:

so you get three distances AB, BC, and AC in unsorted order because you don't know which is which

heady hamlet
#

Brain loading dramaticly

crystal spruce
#

this problem is pretty interesting in the 4 point case

heady hamlet
#

well, i need to study new words from your sentences first

#

let's use app quizlet to study vocabularies

small coral
# heady hamlet i will work my brain as hard as possible to translate and understand your senten...
A   B         C
0 1 2 3 4 5 6 7 8 9
``` so example this

longest (AB)
v-------------v
A C B
0 1 2 3 4 5 6 7 8 9
^---^~~~~~~~~~^
| | middle (CB)
shortest (AC)
so we get the points with the shorter distance between, that is `A` and `C` in this example `A` is "outer", which means it's *not* in between `C` and `B` as you can see let's say we move `A` to the number *right after* `C`
C A B
0 1 2 3 4 5 6 7 8 9
great! `A` is now in the middle let's take the points with the shorter distance again, which is `C` and `A` `C` is "outer", so it's *not* in between `A` and `B` as you can see so let's move `C` to the number *right after* `A`
A C B
0 1 2 3 4 5 6 7 8 9
and we keep repeating this until we get the desired output:
A C B
0 1 2 3 4 5 6 7 8 9

rough sapphire
#

In this example: ```
A B C
0 1 2 3 4 5 6 7 8 9

It is in "sorted order" because the letters from left to right read A-B-C, but it's possible (because of the problem statement) that it's not in A-B-C (that it's in "unsorted order"), like this: ```
    B   C     A
0 1 2 3 4 5 6 7 8 9

This, from left-to-right, reads B-C-A

heady hamlet
#

your long messages are so cool

#

however i need to study new words first

rough sapphire
#

Sure

rough sapphire
heady hamlet
#

now reading your messages will be easier

#

i think i've understand for about 10%

#

i'll read more

#

i hope today i'll understand everything

heady hamlet
heady hamlet
small coral
heady hamlet
#

i think i've understoood

#

thank you so much

#

i've learned a lot from you today

small coral
rough sapphire
heady hamlet
#

now i'll try to do the code myself. if i have anything dont understand i'll come back

rough sapphire
crystal spruce
#

adding more points because I'm a math guy and we like generalizing

A       B           C                       D
0 1 2 3 4 5 6 7 8 9 10 11 12 13
A: 0
B: 3
C: 7
D: 13

I believe the optimal move count there is 8, where you go A->12, then leapfrog AD all the way to C and then to B

so I think an algorithm for the general case would go

points = []
points.sort()
a, b, *_ = *_, y, z = points
print(z-a-min(b-a, z-y)-len(points)+2)
#

wow that does not format well on mobile lmao

#

that should work as long as the best algorithm is always removing the shortest segment on the sides and then leapfrogging all the way to the other end

rough sapphire
#

I think Cereal found a way where you might not even touch D

crystal spruce
#

well you can start from B if you want

#

it's the same both sides

rough sapphire
#

Oh, I mean like this

#

~~```
A B C D
0 1 2 3 4 5 6 7 8 9 10 11 12 13

  B       C A            D

0 1 2 3 4 5 6 7 8 9 10 11 12 13

          C A B          D

0 1 2 3 4 5 6 7 8 9 10 11 12 13

            A B C        D

0 1 2 3 4 5 6 7 8 9 10 11 12 13

              B C  A     D

0 1 2 3 4 5 6 7 8 9 10 11 12 13

                C  A  B  D

0 1 2 3 4 5 6 7 8 9 10 11 12 13

#

I just realized that we were assuming that the distance between points as we go from left to right increases

#

You're right

small coral
hallow minnow
#

kill me 💀 this is why i hate clean install

#

cos everything looks

#

w i d e

rough sapphire
#

what's this "whitespace" thing

primal herald
heady hamlet
hallow minnow
ionic bane
uneven pine
#

Wait, really?

#

They're that much of hypocrites about it?

#

Because there used to be discord staff just chilling in the WorserShitcord server

rough sapphire
#

Seems like a play on BetterDiscord, which she thinks is bad

uneven pine
#

Shitcord = discord

#

WorserShitcord= BetterDiscord

uneven pine
#

Oh my God

#

I love it

#

I'm so glad that my meme has taken and someone actually got the domain

#

Well half meme half serious

spark cosmos
#

they're against TOS

frozen crane
#

tbf, all they did was copy Discord's homepage and modify the content slightly

hallow minnow
ionic bane
#

I wouldnt say that

hallow minnow
#

i would ..

heady hamlet
small coral
small coral
heady hamlet
#

Uhm i think ill add them

rough sapphire
#

imagine using an IDE/text editor
i change my stuff only with pure brain power

rough sapphire
#

caught in 4k

small coral
#

your brain power is a little unreliable here

rough sapphire
small coral
small coral
#

like can you paste it here or something

rough sapphire
#

idk what this thing means...

#

hold on i am figuring it out i think

#

Paste it here, perchance

cobalt ridge
#

shitcord lmao 😂

#

first time I see this

grave cove
#

@hexed sierra

#

What is your opinion on the Rust language

hexed sierra
#

i prefer c++

spark cosmos
#

💀

crystal spruce
#

quick change the channel name

grave cove
crystal spruce
spark cosmos
hexed sierra
#

oof

crystal spruce
#

you have until the channel name changes because then it's no longer facts

grave cove
#

I'm not seeing Rust in the god tier

ionic bane
gritty zinc
flint basin
#

the ecosystem is pretty massive already though

#

although some parts are still in development

#

but most of the things that you might need or want to use are present in rust

young shoal
#

which is rust missing? the only one i don't have xp with is websockets

#

ah, you said "not in beta". tbh pretty much nothing is >1.0 lol

#

i never said anything was mature 😔

#

although, serde is pretty mature, it's on like 1.0.100 or something

flint basin
#

Rust pretty much as all of these

#

It’s not. It’s very mature

#

For xml there are a few like xml-rs and validate-xml-rust. I have no idea what XSD is

frozen crane
#

@distant hazel should I sign that NDA

gleaming walrus
#

I need legal advice

frozen crane
gleaming walrus
#

How do I sue top.Gg for not accepting my bot?

#

(This isn’t serious)

frozen crane
gleaming walrus
#

lol

#

Can I sue them for not accepting?

grave cove
gleaming walrus
#

I don’t think I have a case

grave cove
#

here's your case: 💼

gleaming walrus
grave cove
#

you have a case now

gleaming walrus
#

💼

#

I’ll be back next week, for more stupid off topic things!

frozen crane
# grave cove at least it's not ohio

you might be interested to know (or you might not) that Delaware's only claim to fame is being "the first state". but this is a misleading statement, because what they really mean is "the first state to accept the current constitution". There was a first constitution that lasted for like ten years.

grave cove
grave cove
#

look like it wasn't good enough :P

frozen crane
# grave cove look like it wasn't good enough :P

under the articles of confederation, each state was as independent as they were when they were colonies, and then there was a legislature for the confederation that basically replaced the british parliament. "let's continue operating as we were, but we'll create a local entity to replace an entity that we could only interact with by boat."

grave cove
#

i'm guessing that has to do with the whole "why would the earth revolve around the moon" deal

frozen crane
#

idk what that is

grave cove
#

some guy wrote that as an analogy to the US being under the control of Britain, by size

#

the impersonal government, as it were

frozen crane
wraith hound
#

they thought it wasn't good enough, figure they'd improve it, and then decided they just needed to redo the whole thing

grave cove
frozen crane
#

I'm pretty sure Equitorial Guinea is the only country with both continental and island territory, where the capital is on an island. now I have to check.

#

Nope, there's also the UAE

dapper dew
#

Actually the OT name is appropriate too

drowsy rose
#

anyway are we moving here?

stoic vale
#

So Trojans

dapper dew
#

If people wish to continue the conversation

drowsy rose
#

i assume thats a yes

#

honestly

stoic vale
#

XD

dapper dew
#

It all started with someone asking about the legality of making a program to automatically turn off a computer

drowsy rose
#

software seems hard to regulate

what counts as "malicious" or "harming"?

#

where would you draw the line?

crystal spruce
#

the name is such a perfect coincidence that I'm suspecting someone rigged it except I don't think you can rig it

stoic vale
#

Depends if the person(s) affected is the person who paid you or not

dapper dew
#

I initially responded it would be fine if they used it on their own computer, but it could easily be modified to become malicious and deceiving to the end user

drowsy rose
#

does some friend making a "virus" and installing it on their friend's computer without permission "malicious"?

stoic vale
#

Yep

#

I’d say even making a bot that prints “A” once and deletes itself is malicious

dapper dew
sharp jasper
#

@lament frost said they were leaving, but anyway:
A jury is supposed to find guilt and innocence according to the law, not according to morality. If you ever serve on a jury, the court will go to great lengths to make sure you know this.
Whether the law was originally meant to enforce moral behavior or not is largely a question of perspective. Many laws are not about morals at all, but about the regulation of society, the economy, or protecting the interests of people who wrote them.

stoic vale
# drowsy rose a very interesting stance

Question:
I drop a watermelon from a tower
I check that there are no people underneath and then release it, a passer-by then walks underneath and dies.
The law would count that as manslaughter which (although much lower than murder) is still a sentence.
That’s cause questions like “why did you need to drop the watermelon” “why didn’t you secure the drop site” occur

#

My plan wasn’t malicious but through negligence I cost a life

drowsy rose
stoic vale
#

Or someone printing paper with your printer saying “secure your printer wifi”

drowsy rose
#

where would you draw the line between malicious/harmful?

drowsy rose
young shoal
#

@keen ibex what have you tried so far?

tranquil iron
#

draw even

young shoal
#

i don't think "harm done" is the line

drowsy rose
tranquil iron
#

it does if it causes harm

#

it doesn't if it doesn't

drowsy rose
#

what does causing harm mean?

#

causing harm is pretty broad

tranquil iron
#

it means exactly what it says

#

yes, it is very broad

drowsy rose
#

um ok

does wasting a user's time cause harm?

tranquil iron
#

it could, if it causes harm

#

there is no strict definition for these sort of things in law. when the lawsuit happens, one side tries to show that there's no substantive harm. the other tries to show that there is.

#

the jury then decides

#

btw, motive will also matter. if someone meant to cause harm, i.e. if it was malicious, it will matter

thick osprey
#

@vale raven The issue I think is the interpolation rules. I think you will need to do a little bit of dynamic generation for your prepared sql statement.

SELECT * FROM tablename WHERE columnname IN (?, ?, ?, ...)

Obviously you don't know how many ?s there are (or maybe you do!)

if you have that sequence of values you're checking membership for you could:

placeholders = ",".join(["?" for _ in len(args)]
sql = f"SELECT * FROM tablename WHERE columnname IN ({placeholders})"
cursor.execute(sql, args)
#

If you wanted to even avoid that you could just create a temp table in the DB with single column, each row a value you are checking membership for. Then you could query that table in your sql. ... IN (SELECT * FROM temptable)

#

but the former is likely easier.

vale raven
#

oh my dog

#
>>> query = "SELECT Orders.ID_Order FROM Orders JOIN OrderDes ON Orders.ID_Order = OrderDes.id_Order WHERE OrderDes.id_Design IN (?, ?)  AND Orders.cn_Display_Status_06 IN (0, 0.5);"
>>> parameters = (103456, 103457)
>>> _make_query(query, parameters)
Traceback (most recent call last):
  File "com.filemaker.jdbc2.CommonJ2Connection.java", line -1, in com.filemaker.jdbc2.CommonJ2Connection.prepareStatement
Exception: Java Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in _make_query
  File "/tmp/venv/lib/python3.10/site-packages/darbiadev_onsite/__init__.py", line 41, in make_query
    cursor.execute(sql, parameters)
  File "/tmp/venv/lib/python3.10/site-packages/jaydebeapi/__init__.py", line 531, in execute
    self._prep = self._connection.jconn.prepareStatement(operation)
com.filemaker.jdbc.com.filemaker.jdbc.FMSQLException: com.filemaker.jdbc.FMSQLException: [FileMaker][FileMaker JDBC] FQL0001/(1:168): There is an error in the syntax of the query.
>>>
#
>>> query = "SELECT Orders.ID_Order FROM Orders JOIN OrderDes ON Orders.ID_Order = OrderDes.id_Order WHERE OrderDes.id_Design IN (?, ?)  AND Orders.cn_Display_Status_06 IN (0, 0.5)"
>>> _make_query(query, parameters)
[{'ID_Order': 322572.0}, {'ID_Order': 322573.0}, {'ID_Order': 322574.0}, {'ID_Order': 322577.0}, {'ID_Order': 322578.0}, {'ID_Order': 322579.0}, {'ID_Order': 322580.0}, {'ID_Order': 322581.0}, {'ID_Order': 322587.0}, {'ID_Order': 322590.0}, {'ID_Order': 322594.0}, {'ID_Order': 322596.0}, {'ID_Order': 322608.0}, {'ID_Order': 322610.0}, {'ID_Order': 322611.0}, {'ID_Order': 322612.0}, {'ID_Order': 322613.0}, {'ID_Order': 322614.0}, {'ID_Order': 322615.0}, {'ID_Order': 322616.0}]
>>>
vale raven
grave cove
#

No ORM?

vale raven
#

Though I do have to generate SQL now
I don't particularly like that.... But at least I'm generating a parametrized query, and not directly injecting the input

thin cloak
#

Filemaker

#

Yeah non standard why that ?

vale raven
#

I'd be perfectly fine if the Data API was enabled
I use requests to get JSON all day long

#

But <vendor> refuses to enable it because it's "too hard"

tranquil iron
#

create a competitor and put them out of business

jovial oriole
#

Life hack

stray sage
#

why does people keep confusing dynamic typing with weak typing 😭

thick osprey
#

Dear GitHub, can we remove the activity tracker and just default it to dancing octcats?

#

This is a quality of life improvement.

acoustic moss
#

catcatcatcat
catcatcatcat

hidden pebble
thick ore
#

should I dockerize a Minecraft server

rough sapphire
#

someone strange send a message to me in discord, and I accept the message and replied ho his message, but the bot is saying I cannot send message to him!, so why he can send messages to others and I cannot reply?

#

Your message could not be delivered. This is usually because you don't share a server with the recipient or the recipient is only accepting direct messages from friends. You can see the full list of reasons here:

tardy rain
#

Because you have your dms open and they dont

rough sapphire
#

we need more cats

jovial oriole
#

trying to load up 10k image files, im using threading as well but i think the thing that is slowing my down is that they are all on my onedrive, should i download them to my desktop?

jovial oriole
#

oh and also, does a list with 10k numpy array with shape 1024,1024 take up more ram than a numpy array storing numpy arrays?

nova wyvern
#

And yes, typescript does compile to JS

jovial oriole
mystic isle
tardy rain
#

What do people think of the TLOU show?

#

I've seen people call it perfect
I've also seen people bitch about Ellie's casting

young shoal
tardy rain
#

I havent watched the show yet, dont have hbo

young shoal
#

the first one

sterile sapphire
#

i like it so far

#

but i haven’t seen the second episode

grave cove
#

Who turned safe search off

heavy pawn
#

Me

prime lagoon
#

do i want to ask why the title of this channel?

#

**scroll up. Hmm, oh nothing of that sort.

tranquil iron
#

I thought the titles of the off-topic channels were random

uneven pine
#

They are random from a set list

zealous comet
#

I mounted those things on the window today what do you all think

#

I like it a lot more than the garbage bag and cardboard in front of the windows

grave cove
#

can i have it?

zealous comet
grave cove
#

but i don't want that one

#

i want yours

ionic bane
zealous comet
#

Sure for €300 (that already includes shipping)

grave cove
#

i have sent it via snail mail

#

approximate delivery is Jan 27 2522

zealous comet
#

In that case will the chair arrive 5days after the money has been received

grave cove
#

pleasure doin business with ya

#

🤝

zealous comet
#

I would recommend giving a shipping address with the money

grave cove
ionic bane
grave cove
ionic bane
zealous comet
#

You can send the money to Wijk 3 80, 8321 GA Urk

#

||(also that isn't actually close to where I live)||

young shoal
#

is that a real address

ionic bane
zealous comet
#

It is a normal place in hell

blissful moth
#

@sterile warren so, uwm came out

strange wren
#

I'm desperate need of some new music

#

I like electronic music, but youtube keeps feeding me this awful club music that's all about getting wasted, partying, or otherwise being a baller

#

I like me some Pumped Up Kicks or Down by the River remixed — stuff with actual soul

stable fulcrum
tranquil iron
#

people who want to be safe?

grave cove
deft spade
#

Join us now and share the software;
You'll be free, hackers, you'll be free.

Hoarders can get piles of money,
That is true, hackers, that is true.
But they cannot help their neighbors;
That's not good, hackers, that's not good.

When we have enough free software
At our call, hackers, at our call,
We'll kick out those dirty licenses
Ever more, hackers, ever more.

Join us now and share the software;
You'll be free, hackers, you'll be free.
Join us now and share the software;
You'll be free, hackers, you'll be free.


#

I was bored so I singed free software song.

rough sapphire
#

how do augmented matrices work again

young shoal
#

you have a matrix, then you put a line, then you just put another matrix

cobalt remnant
#

I found another reason to be afraid of the French.

#

Instead of WASD for games, they use ZSDQ

#

They use a different keyboard layout, so those keys are where wasd are

gritty zinc
#

that's a myth, they use the same keyboard layout, their hands and fingers are just shaped like that

grave cove
#

this is what we call "built different"

young shoal
#

in colemak it's wars

zealous comet
stoic vale
cobalt remnant
#

You can tweak the french flag to be the pride flag

#

🇫🇷 🏳️‍🌈

wraith hound
#

@sand inlet is that size with opts?

sand inlet
#

it's the size with a default release build

wraith hound
#

i know I've gotten a 14kb hello world with a little bit of #![no_std]

sand inlet
#

i'm currently googling config options that make the binary smaller

wraith hound
sand inlet
#

ok i got 136 KB

#

132 KB

wraith hound
#

RUSTFLAGS="-C target-cpu=native"

#

that env var might help too

sand inlet
#

that made it 7 KB larger

wraith hound
#

huh, fun

sand inlet
#

and if i tell it to optimise for size then that variable changes nothing

#

(and also it goes down to 131 KB)

wraith hound
#

are you using build-std?

sand inlet
#

i am using normal std with whatever stable rust version i happen to have installed and just setting config values in cargo.toml

acoustic moss
#

babe wake up new code golf just dropped

sand inlet
#

i know i could probably make it way smaller by making it no_std and various weird tricks but idk how to do any of that

wraith hound
#

if you have nightly then compiling the standard library yourself can do a lot

#

since you can optimize that for size and also remove the panicking machinery

mystic isle
tranquil orchid
#

!otn a babe wake up new code golf dropped

royal lakeBOT
#

:ok_hand: Added babe-wake-up-new-code-golf-dropped to the names list.

mystic isle
#

also

#
bash -i truncate 23bt 'the-kids.dna'
rough sapphire
#

kernels are bloated

stable fulcrum
rough sapphire
#

fr

stable fulcrum
# rough sapphire fr

No because thats not possible without kernel, so you can just manually send signals to cpu with wires

tranquil iron
rough sapphire
#

ngl

#

more than 1 LOC is bloated

tranquil iron
#

ok

young shoal
#

my font D:

soft stump
#

Is it a good idea to factory reset a pc to clear it of any problems and maybe make it a bit faster

steady loom
#

If you really want to start fresh, wipe the drive and reinstall windows

soft stump
steady loom
#

Even custom built, windows has a mind of its own. It tends to slow itself down and fill up with garbage

#

Full refresh is what I would do for myself

steady loom
soft stump
#

But i remember most of my passwords

#

I dont got any important files on it

soft stump
steady loom
#

Assuming you still have your windows product key, keep that handy. If you don't, download ProduKey, it can grab it from the registry so you can write it down for later. You'll need it later to activate the fresh copy of Windows.

Then grab a flash drive, and download windows media creation tool. Use the tool to load your preferred version of windows onto the drive.

Turn off your PC, plug in the flash drive, and turn it back on. It should then automatically boot into the flash drive, where you can go through the setup wizard, and most crucially, delete all partitions on your current drive before installing windows nice and fresh

#

If it doesn't want to automatically boot into the flash drive, start by just trying different USB ports. If that doesn't work, I think you can just unplug your existing Drive and then plug it back in once it's booted into the flash drive

#

But don't quote me on that

#

@soft stump i am going to bed soon tho, but I think this is everything you'll need

#

Good luck

#

This process is generally pretty hard to fuck up, but the great thing is that if it somehow does get fucked up and you can just wipe the drive again and keep trying

#

The more you delete and reset and reformat everything the better

young shoal
#

in the past, there was CSA, and CSB, but they removed the latter

#

You’re contradicting someone in high school? Damn
I was in high school just a few months ago :P

tardy rain
#

I hate tornado and this shit legacy app so much

tranquil iron
gritty zinc
#

yeah, highschoolers are famously good at reasoning about stuff important to their lives

tranquil iron
#

indeed

rough sapphire
#

What's the average age like in this server?

tranquil iron
#

38?

rough sapphire
#

I imagined most here would be teens and uni students

tranquil iron
#

too young?

rough sapphire
#

Ok that's pretty vague actually

#

< 23 50% maybe?

young shoal
tranquil iron
#

that's scary

young shoal
#

i suspect it's much lower, but they only asked for "below 18" or something like that

rough sapphire
#

Yeah that makes more sense to me actually

tranquil iron
#

is discord accessibly by phone? that might explain it

rough sapphire
#

How is 20 average scary

young shoal
#

because it doesn't seem to be the case

#

especially that guy in careers 🥴 @tranquil iron

tranquil iron
#

that means young and inexperienced folks are even younger and less experienced folks

#

erm, are guiding

young shoal
#

depending on what you mean by "guiding" it's not necessarily an issue ¯_(ツ)_/¯

#

though the server tries to make sure channels like #career-advice stay factual and helpful

rough sapphire
#

Yeah guiding what

tranquil iron
#

it's like when I was listening to my 15 yr old niece and her friends giving each other relationship advice. it was just lol.

#

but I agree with public_static_void that it doesn't seem like the avg age is only 20

rough sapphire
#

Guiding in terms of sharing technical advice?

young shoal
#

i suspect it's much lower, only they didn't collect exact age for under 18yo

tranquil iron
#

oh my

grave cove
young shoal
#

way lower

grave cove
#

Figured as much

#

Python server, after all

rough sapphire
#

Yeah why would anybody come to discord expecting any real guidance

young shoal
#

yeah, it's filled with python-year olds

rough sapphire
#

Lol

grave cove
tranquil iron
#

my impression is that the avg age of those asking questions is very young but the avg age of those answering questions is older. but that may be my built-in biases.

young shoal
gritty zinc
#

A ball python will live anywhere between 20 and 30 years provided that the care is good.
this explains so much; I'm just going senile

young shoal
#

that's also my impression

grave cove
young shoal
#

actually rhymes

#

🤨

tranquil iron
#

I wonder if reptiles suffer from dementia and

#

alheizmers. 🙂

thin cloak
prime lagoon
#

if we want to define dementia as the degradation of brain function

tranquil iron
#

what were we talking about, again?

thin cloak
#

So the study is if environmental predation, stress cause brain function degradation in prey

acoustic moss
#

youd think theyd get used it by now

ancient dune
#

I'm turning 20 in a couple of months 👴

ionic bane
ancient dune
#

Unfortunately the list of people I know IRL that can code in Python are either colleagues or teachers lol

ionic bane
#

I have no one that knows python IRLjoenoeyebrow

#

For some reason i havent seen another programmer that uses textbased languages before, ive only seen programmers in my HS that use UIs to program but they dont really like programming

ancient dune
#

Dragging elements isn't programming.

small coral
#

stuff like scratch

ancient dune
#

That I can agree on.

thin cloak
young shoal
#

As a Systems Developer Intern, you will assist the IS organization in the development of a software application that will be utilized as an informational chat tool. The developed chat tool will help streamline System Access Management (SAM) application. You will also help in developing and testing of chat bot using Open.Ai ChatGPT.
😬

stoic vale
#

Yikes

thick osprey
#

But if they have ChatGPT why do they need to hire a developer? pithink

young shoal
#

yes I'm a developer, I manage 1000 chatgpt instances

crystal spruce
#

I would be too distracted messing around with chatgpt to get code from it even if it was good

dapper dew
#

e

grave cove
carmine apex
#

was gonna pick a unused ot channel, but since you're already here: @grave cove what server does your :birdwave2: emoji from?

#

i really wish discord would let you tell like they do when they're by themselves

grave cove
#

Private server it seems like

#

@carmine apex found another of the same emote from a different server : birdwave2

#

This one is public

carmine apex
#

well that's another emoji server i'm in, along with fir's. dumb discord trying very hard to make me buy nitro so i can use them here

#

it's certainly better than shenanigans's terrible dogwave emoji

grave cove
#

Me personally

#

if i was you

#

i wouldn't let that one slide

carmine apex
#

je ne regrette rien ||(I regret nothing)||

carmine apex
#

yup

grave cove
#

Pretty cool emojis they have there 🙂

acoustic moss
grave cove
acoustic moss
#

no way

crystal spruce
#

how many dog programmers do we have

grave cove
#

2

grave cove
#

I am Plato

crystal spruce
#

replace dog with doggo for iambic pentameter

stiff galleon
#

sup

crystal spruce
#

first episode of the anime

#

here's the full image if you're curious

mild abyss
#

a g l e t dont forget it

stiff galleon
#

@crystal spruce have u seen demon slayer?

#

best anime by far

odd moon
#

or quite frankly, anyone who even is remotely interested in finishing school

#

kinda common

stiff galleon
#

my hs didn't teach programming

#

it taught me poetry

#

and williamshakespear ahh

#

quality education 🙄

#

oh and can't forget about learning ww2 for the 100th time!!

crystal spruce
stiff galleon
#

big time

#

for anime it's revolutionary

#

but comparing to nonanime, I agree

#

mid

odd moon
#

its all schools rage about

#

like some fancy words together??? i dont get it

stiff galleon
#

learning about poetry / art and history is more important to the economy than a scientist, engineer, doctor, etc

odd moon
#

frfr

crystal spruce
#

there are better animes imo

stiff galleon
#

complete /s

odd moon
#

frfrr

stiff galleon
#

they need to stop feeding that garbage

#

English is important but 4 years is arguably overkill

#

it actually is if it's ur primary language

#

but what's worse isn't that but the fact that we learn poetry

#

I rather write technical reports

#

or make it based on ur interests. someone interested in mathematics will gain nothing learning poetry

odd moon
#

yeah fr

#

all i really care about is english in how to write quality essays, convincing skills, real life actual shit

#

no poetry or shakespeare or whatnot history events

#

bu

#

but

#

we need to start focusing on technology and math more

stiff galleon
#

^

#

dude right now

#

it's literally tech + medical

odd moon
#

its like the school is trying to deliberately push you down to force you into shit that you hate

stiff galleon
#

yeah

#

it's not even enjoyable

#

poetry and art is so subjective

#

and specializing in something subjective is quite not what this world needs right now

odd moon
#

yeah

stiff galleon
#

need more doctors and scientists

odd moon
#

chatGPT exists bruh

#

we need people who make AI

stiff galleon
#

fr

#

^

odd moon
#

who dominate tech

stiff galleon
#

if we focus on AI and shape it to a really great potential ->
trusting AI to build our infrastructure will be far more safe and reliable than any human

#

chatgpt is just the beginning

odd moon
#

yea

#

and tbh language too

#

i hate taking language

#

like its fine if u wanna learn it but

#

dont force it

stiff galleon
#

only really need to know one

#

unless it's obscure

#

but English isn't

#

English is literally the universal standard

odd moon
#

ya

vale raven
vale raven
ionic bane
#

Most students in my HS dont really care about their education from what I've seen

primal herald
#

@ashen ridge this is what it looks like for me when someone makes a new post btw

ashen ridge
#

Weird. I don't get that on my end sometimes

low chasm
#

It's sort of been the opposite where I'm at

#

People being fairly invested in their education

stable fulcrum
deft spade
#

Hi

#

Hi

rough sapphire
#

hi

deft spade
#

This server's picture and valentines

rough sapphire
#

pink is such a beautiful color

deft spade
#

Yes

#

It is

#

But valentines and love is DISGUSTING (to me)

rough sapphire
#

mhm

#

(i am pretty sure that will change in a year or two for you)

deft spade
#

mhm
No

rough sapphire
#

just wait

deft spade
#

That hormone is disgusting

#

That's like a poison

rough sapphire
#

just wait a few years feniks

deft spade
#

What if I don't wait?

rough sapphire
deft spade
#

Cat

#

On github

deft spade
deft spade
#

Because
You can't survive alone

#

People need to know how to survive

rough sapphire
#

🧌

deft spade
#

Without that unhealthy hormone

rough sapphire
#

wtf

deft spade
#

Andrew Tate is in prison

rough sapphire
#

and*^w t&t3

rough sapphire
deft spade
rough sapphire
#

maybe you wanna share some things with a grown-up veliki

#

it helps

deft spade
#

I am not grown up
Also Veliki is not a name

#

Veliki means great

carmine apex
rough sapphire
#

no, i mean maybe u need to talk to someone about your feelings.

#

and why you think you're crazy.

rough sapphire
#

no joy?

deft spade
rough sapphire
#

mhm
maybe you should change your mindset

#

because u look like you can do a lot of stuff if you try ngl.

deft spade
#

I told everyone here
Because everyone asked me about my mind.
Teachers, parents, psychologists etc.

rough sapphire
#

and ignore people who call you those words

#

they are maybe jealous

deft spade
#

My parents are calling me like that

rough sapphire
#

oh shit

deft spade
#

And therapists

rough sapphire
#

???

deft spade
#

Yes

rough sapphire
#

(this sucks)

deft spade
#

Teachers don't count
I bet that every teacher calls their students like that

#

Almost every

#

Today my friend beated me up in school because I said that love is disgusting to me

deft spade
rough sapphire
#

in what kind of a toxic community do you live 💀

deft spade
#

He asked me
Then I told him
I need to be honest

rough sapphire
#

trick people

deft spade
#

Croatia

#

Well
I am weird
And I am crazy
I agree with that

rough sapphire
#

why don't you ever lie feniks

#

i mean in those situations.

deft spade
#

Lying is a bad option

#

Also that is my 4th rule
NEVER LIE

#

I made my own rules

rough sapphire
#

your rules are bad

#

you can't live without lying

deft spade
#

I can

rough sapphire
#

and also humans are social creatures... you'll eventually like someone

deft spade
#

My mom taught me to not lie

#

EW

#

My rules:

  1. (I won't say this again because it includes self harm)
  2. I will live alone and I will die alone
  3. I need to be thankful
  4. Always be honest, DON'T LIE
  5. I need to apologize for my every mistake
  6. Never go to school trips
#

These rules are just for me

#

No one else

hexed ibex
rough sapphire
deft spade
#

Yes

rough sapphire
#

greek is a funny language

deft spade
rough sapphire
#

no lol

deft spade
#

Oof
Don't ask
Trust me

#

Also
Our teacher gave us the worst homework EVER

deft spade
#

We NEED to WRITE A LOVE SONG FOR OUR CRUSH/SIMPATHY WHAT THE FU__
I don't like anyone

grave cove
#

i hated it

#

even in high school

#

the teachers generally hate it too so just half ass it

deft spade
#

Our teacher likes that for some reason 😐

deft spade
grave cove
#

people in high school relationships, probably

deft spade
#

Oh

#

Schools are weird

rough sapphire
#

like if i like someone i don't want the whole darn universe to find out

#

or if i like no one

deft spade
#

Yeah, that's weird
Why schools are doing that???

rough sapphire
#

some schools i guess

deft spade
#

Also
IF I DON'T WRITE A SONG
I WILL GET F

rough sapphire
#

probably some old dude's idea

deft spade
#

That's like school is forcing you to do what they say in your private life

#

That's sick
But really sick
That homework is a disease

#

Also
If I like someone, then I would tell everyone about it.
That's my 7th rule
Don't have secrets

#

And I don't have secrets

#

I respect my rules

rough sapphire
#

make it also extra juicy for a free A+
write it in a way that the no one's name would be there

deft spade
#

My idea is to write something like love is toxic etc.

grave cove
#

eh just do what they ask and take the free A

rough sapphire
#

ye

grave cove
#

not worth actually putting in effort or trying to put in what you think about it

#

chat gpt is your friend

#

albeit i'm sort of biased because i have a severe case of senioritis

#

i'm still looking for fucks to give

deft spade
deft spade
rough sapphire
deft spade
#

Also my 8th rule is NEVER CHEAT

rough sapphire
#

wtf

#

bro's limiting life so much he technically isn't living anymore

deft spade
#

I never cheated in anything

rough sapphire
#

cheating is such an important skill imo

#

not on people though lol

deft spade
#

Lol

grave cove
#

I prefer to call it "using the resources at my disposal wisely"

deft spade
#

I never cheated in tests, games etc.

rough sapphire
#

robin can make you believe that white is black with his words 💀 (just kidding)

deft spade
#

White is actually black

#

And black is white

#

Because white has particles of black
And black has particles of white
As same as everyone's life
You have white black and black white

#

That actually means something very important

rough sapphire
#

⁉️

deft spade
#

Your soul can be shiny
And your life can be dark
Also your soul can be dark
And your life shiny
Your soul and life can be shiny and dark too

rough sapphire
#

i suggest you read a logic textbook

deft spade
rough sapphire
#

it's interesting

deft spade
#

What even is logic textbook

rough sapphire
#

a book abuot logic

deft spade
#

Ok

#

I don't read anything

#

Wait I read just my life

#

@rough sapphire

rough sapphire
#

h

deft spade
#

h

#

Ok, now be honest
Am I weird and crazy? (In your opinion)

rough sapphire
#

i'd say you're a bit edgy and not crazy.

deft spade
#

What does edgy mean?

#

@rough sapphire

grave cove
#

... No offense

deft spade
#

Ok

#

Nervous

#

It says nervous

grave cove
#

not really the modern definition anymore

deft spade
#

Oh

#

Well I am crazy
Trust me

#

Today I was talking to school locker

deft spade
#

Actually like this

#

I was knocking at someone's locker

#

And saying this stuff:

#

HeLllLLoooo
AnYOnE THere?

#

You are niceeee

#

Knock knock

#

NICEEEE

#

WOOOHOOO

#

OMG THIS IS AMAZING!!!

#

SO COOL
HRUUU

#

NICE NICE
NICE NICE
WOOO

#

Any comments @grave cove?

grave cove
#

Bit strange but ok

#

To each his own

deft spade
#

That is ok to you????

#

Yesterday when I was alone at home
I was shirtless dancing and saying POTATO PUDDING!!!
YUM YUM

rough sapphire
#

ahhah.

deft spade
rough sapphire
#

you can do better.

deft spade
#

Three days ago I was looking at myself on the mirror
And started barking

#

Is that weird and crazy enough?

#

Now you know that I am not just "edgy"

#

Something's wrong with me and I don't know what

#

@grave cove @rough sapphire
Sorry for pings

grave cove
deft spade
#

Oh wow

grave cove
#

So no, I really don't mind
Do what makes you happy :P

dapper dew
grave cove
#

If you were worried about other's perception or opinion of you

tranquil iron
#

it's nice to be happy

grave cove
#

indeed it is

deft spade
#

Because I am too weird

#

Who barks at themselves?
Who is shirtless dancing and saying "POTATO PUDDING YUM YUM"
Who is talking to school locker in that way?

dapper dew
#

Again, I don't think we are equipped to answer for you

deft spade
#

I know

dapper dew
#

Then can you please discuss it somewhere that can handle it appropriately?

deft spade
#

I just want to introduce myself properly
So people won't say wrong stuff about me

tranquil iron
#

being aware of something is not approval

deft spade
#

People don't believe me that I am very weird
So I need to prove them

#

Many many people tell false stuff about me

tranquil iron
#

that seems like a separate issue to me

deft spade
#

Oof

grave cove
#

Like brad mentioned we're not equipped or qualified to deal with issues such as these

deft spade
#

Oh these are not issues

#

I think that's pretty funny
I am happy
But I am not happy because I am different

#

With my weird behaviour I am happier
Because I do lots of weird stuff

grave cove
#

You do you buddy

rough sapphire
#

mhm.

#

i feel like the tiktok zombie virus is spreading.

#

covid isn't the only virus.

#

i never liked the idea of tiktok
or even youtube seems corrupt

deft spade
grave cove
#

W king

tranquil iron
#

I've never used tiktok

grave cove
#

me neither

#

L app fr

tranquil iron
#

?

deft spade
#

Toktik is dangerous

#

From it's plans
To challenges

#

Did I say toktik?

stiff galleon
#

is this bad?

deft spade
#

Nah

stiff galleon
#

👍

deft spade
#

It's not -11 hh
It's ∆11

stiff galleon
#

average

#

yea

deft spade
#

AGH
I AM WEIRD AGAIN

grave cove
#

that's most of your day spent on your phone

deft spade
#

I usually spend like 3 h on my phone whole day

#

On discord I spend like a hour or two

#

And then I put it on charger for rest of the day
When applications are still opened 💀

#

So technically more time is spent

stiff galleon
#

mostly it be 14+

deft spade
#

Wow
Still a lot

stiff galleon
#

well I improved at least

#

I used to lose sleep and be on my phone not exercise

#

eat junk

#

i still do but less

eternal depot
#

I did a thing!

gritty kernel
young shoal
#

how is that even possible bruh

tardy rain
#

Mfw on a Monday

carmine apex
tardy rain
#

11h daily average

carmine apex
#

oh criminey. i do see they got almost 15 on friday, though

young shoal
tardy rain
#

i sleep with youtube on, thats probably why

stiff galleon
#

I don't

#

I am always on my phone

young shoal
#

that's unhealthy

stiff galleon
#

Even when I'm taking a shower

#

dude then ur a fake tech major 🙄

young shoal
#

my bad

odd moon
#

bro watches yt shorts iphoneskull

#

i spend less than 1 hour on my phone in a whole week

#

i only use it for phone, apple pay, text, photo and ride share bruh

#

real programmers carry around a computer

odd moon
#

im trying to say that no matter YT shorts, tiktok, insta reels

#

it all fucks you up at the end of the day

young shoal
#

huh?

odd moon
#

delete the stupid scroll shit and pickup a mechanical keyboard

young shoal
#

let me know when you can fit your mechanical keyboard in your pocket

#

and has a screen

#

and weighs less than a pound

tardy rain
odd moon
#

Trying to say that, instead of being addicted to social media for it to fuck you up, stop using your phone for social media and start using your computer more believe me you wont regret it

tardy rain
#

I dont do much yt shorts anyway
They always seem to devolve to either andy tate shit or minecraft vid reddit stories

young shoal
#

and what would you use it for lol. watching youtube?

tardy rain
#

I like social media

young shoal
#

i don't like social media. unless you consider discord one

tardy rain
#

I get to escape from the reality of living in london

stiff galleon
#

tbf without my phone I'm dead

#

even 2 hours + without my phone I start getting withdrawal shit

young shoal
#

that's definitely unhealthy

stiff galleon
#

not really

#

I need to be on my phone to improve programming anyways

grave cove
#

Being good at programming won't matter when you end up with severe health problems

young shoal
#

well idk about severe health problems

rapid hemlock
#

new book came today 🥳

young shoal
#

interesting

#

hand reveal

rapid hemlock
#

i've noticed myself doom scrolling a lot lately

#

less attention span

rapid hemlock
young shoal
#

your hand?

rapid hemlock
#

i'm just messing hahaha

young shoal
#

hitchhiker's thumb 👎

#

left side of laptop: 2/10

#

teal thing in background: 4/10

#

wooden thing on the left, great taste

rapid hemlock
#

lol

#

haven't heard the term hitchhiker's thumb in my life LOL

#

had to look that up

#

i don't even have it according to google!

#

i guess i do, idk

#

lol

young shoal
#

if you stick your thumb up and it isn't pointing up, then you have it

rapid hemlock
#

yeah my thumb nail is leaning back to a degree

hallow minnow
#

mind blown:

#

dats me lol

#

in da other server

odd moon
#

And I still own a iphone 7 just because I barely use it

fiery rose
stiff galleon
#

there's nothing wrong with spending all day on ur phone

stiff galleon
#

YouTube is better than Twitter and knstagram for sure though

#

especially if u watch tutorials

#

or documentaries

#

educational stuff

#

even sports is chill

odd moon
#

WHAT IM SAYING IS THAT TIKTOK IS A BRAIN EATING PLATFORM

stiff galleon
#

^

#

tiktok + Twitter

rapid hemlock
#

@stiff galleon how far along are you in your Python journey

stiff galleon
#

I already got a job

#

that requires extensive experience in python

#

I started doing contests and such

dreamy cypress
#

I only cry a few times a day

stiff galleon
#

I'm up $1k today because market is doing better..

dreamy cypress
#

cool that you are doing good

stiff galleon
#

not good

#

better but not good

#

I am very sad

#

I got job offer, market doing better but I want more yk

junior thunder
#

Hey

#

Never mind 💀

odd moon
#

ah im just trying to make it through high school

#

RAHHH

mystic isle
clear plume
grave cove
#

3 more months to go

harsh tundra
#

Yay for my future home office space. ❤️ Plastering done so smooth it could fool one for a painted wall

#

My FIL-electrician is on the phone, I want to show him the photo and tell him how the electric boxes half full of plaster XD

stable fulcrum
young shoal
grave cove
#

more like 3 and a half

young shoal
grave cove
#

most of my colleges still haven't gotten back yet :(

young shoal
grave cove
#

EA for Georgia Tech but didn't get in there unfortunately
That's the only college that's gotten back

young shoal
#

¯_(ツ)_/¯ that's what happens when you don't EA lol

grave cove
#

fair enough

dreamy cypress
stiff galleon
#

yeah yall are still young and have a lot to learn

#

real stuff begins in college

#

and real real stuff begins after college

uneven pine
#

Yeah, wait til you learn that life pretty much only gets worse 😂

stiff galleon
#

fr

tardy rain
#

But youre ✨independent✨

stiff galleon
#

it's only fun being independent if you aren't broke 🥲

tardy rain
#

Im guessing most working professionals in the server are not in fact broke

stiff galleon
#

keyword.... professionals

#

most people aren't "professionals"

young shoal
stiff galleon
young shoal
#

bruh

#

you are still young and have a lot to learn

tardy rain
#

Most people who are independent are professionals are they not?

slate marten
deft spade
#

YESSS
I FINALLY WROTE A "LOVE" SONG FOR HOMEWORK!!!

harsh tundra
deft spade
#

Warning
You all probably going to hate me after reading it

stiff galleon
deft spade
young shoal
deft spade
#

Here is my "love song"

I want to destroy love
Because at the end I will die alone

I think that is poison
And I want to end it

For me that's disgusting
And so boring

#

Sounds better on my language

#

Rate it please

clear plume
#

Sounds like someone got broken up with

deft spade
#

LOL

#

I didn't even like anyone in my life

young shoal
#

very edge