#voice-chat-text-0

1 messages Β· Page 810 of 1

whole bear
#

hey πŸ˜„

flat sentinel
#

bruh

jaunty pendant
#

very good cooling

#

yes?

flat sentinel
#

yes

jaunty pendant
#

BRUH

#

my god damn chemistry competition is delay'd AGIAN

#

for the 69420th time

stuck furnace
#

Oh right.

#

Yeah, I tend to avoid modifying any of the main mappings.

#

As far as possible, I try to modify vim as little as possible, so I'm not confused when I use vim on another computer πŸ˜…

#

Erm, want to move down to the other VC?

#

Ah right. I understand πŸ˜„

#

Oh yeah.

#

Erm, recently I gave in and installed CoC

#

For code completion.

flat sentinel
#

you are dobel

#

lx

stuck furnace
#

I tried to use a language server, but couldn't figure out how to get it set up properly, so CoC seemed like the easiest option.

severe pulsar
stuck furnace
#

It doesn't seem to slow it down too much.

#

Ah right

severe pulsar
#

im pretty sure thats how it works...

stuck furnace
flat sentinel
#

so an admin

#

lol

stuck furnace
#

It's been pretty handy so far.

#

Particularly real-time static type-checking.

#

Like for python annotations.

#

With PyRight.

#

Although I agree with the "do one thing well" principle.

jaunty pendant
#

@stuck furnace can i have le stream role?

stuck furnace
#

I don't even use Vim's window system, or the terminal's splitting system.

#

Nah, that's too fancy for me πŸ˜„

unborn storm
#

XD

#

ok

stuck furnace
jaunty pendant
#

for logisim, its about logic simulation and stuff

stuck furnace
#

This is what my vim looks like currently @unborn storm

unborn storm
#

wait a sec

stuck furnace
#

Moving down to VC1 πŸ‘‹

unborn storm
#

seding it also

#

ok

viral elm
#

hi guyz i m new on this server

#

i m a fresher(1st year student) at iit delhi

undone idol
#

Oh awesome

#

A IITian here

#

Woah

#

I am from India too

viral elm
#

can anyone suggest good source for C++

undone idol
#

Umm this should be offtopic I guess

#

@viral elm try asking in offtopic channel

#

!offtopic

wise cargoBOT
viral elm
undone idol
#

Umm 🧐 confusing??

stuck furnace
#

Erm, the most I've used my mic is saying "pasta" once 6 months ago @whole bear πŸ˜„

jaunty pendant
#

Sup

stuck furnace
#

I've got "phone fear" πŸ˜„

jaunty pendant
#

What

stuck furnace
# jaunty pendant What

Telephone phobia (telephonophobia, telephobia, phone phobia) is reluctance or fear of making or taking phone calls, literally, "fear of telephones". It is considered to be a type of social phobia or social anxiety. It may be compared to glossophobia, in that both arise from having to engage with an audience, and the associated fear of being crit...

jaunty pendant
#

Ok then.....

stuck furnace
#

Not great for a mod of a discord server, but whatever πŸ˜„

jaunty pendant
#

Lol

#

Didnt know that that was a thing

novel sleet
#

it doesnt allow

somber heath
#

numba

pastel plover
#
length = int(input())
numbers = list(map(int,input().split()))[:length]
count = 0
for i in numbers:
    numbers.count(i)
    print(numbers.count(i))
    if numbers.count(i) == 1:
        count += 1
print(count)
stuck furnace
#

Ah, this would be Ξ©(n^2) in the length of the list.

whole bear
#

What is the return key? πŸ˜…

stuck furnace
#

Yeah, KIX, that's because numbers.count(i) iterates through the entire length of the list.

#

And that happens for every number.

whole bear
stuck furnace
#

So the run-time grows with the square of the size of the list.

dense ibex
#

Good Morning πŸ™‚

stuck furnace
#

So, if you double the size of the list, you multiply the run-time by four.

whole bear
somber heath
#

Can't listen and think/code

pastel plover
#

np

stuck furnace
#

Sorry, I didn't catch that. I was distracted.

#

Yep

#

Hmm. I think you're on the right track with using a set.

#

But there's actually a fairly simple solution using a set.

#

The goal is to count the number of unique items, right?

#

Converting to a set removes the duplicates.

#

Ah, right.

#

That's a slightly different problem from what I thought.

charred lance
#

could i have some tkinter help? i don't want to interrupt you guys

stuck furnace
#

Erm, the key thing is to remove the loop within the loop, if you get what I mean.

#

numbers.count(i) has to look at all the numbers in the list.

#

So it contains a loop.

#

Right, the key is to keep track of the number of times you've seen each number as you go.

#

You could use a dictionary for this.

#

Yep, exactly.

#

Yep, that's the benefit of using a dictionary.

#

The keys can be arbitrary.

#

Brb, one sec...

somber heath
#
from collections import Counter
characters = 'aabc'
alpha = Counter(characters) #dictionary-like count of element:frequency of characters
beta = Counter(alpha.values()).get(1,0) #how many times were those a frequency of 1?```
dense ibex
#

Good Morning Hemlock!

whole bear
#

@rugged root Singer of @2021

stuck furnace
#

And using a counter on a counter's values is neat.

rugged root
#

Oooo

#

Never thought about that

#

That's clever

stuck furnace
#

The issue is the asymptotics.

#

Because the run-time grows with the square of the length of the list.

#

If an list of size 1000 take 1ms, then a list of size 1,000,000 will take about 1,000,000ms (one thousand seconds).

somber heath
#

I was going to do a sum comprehension with an if.

rugged root
#

!e

from collections import Counter
numbers = 77391441
spam = Counter(str(numbers))
total = sum([number == 1 for number in spam.values()])
print(total)
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

2
pastel plover
#

9
1 2 3 4 2 5 1 6 7

jaunty pendant
#

IT WORKS!!!!

somber heath
#

@stuck furnace Plus, if we're bringing Counter out of its box, we might as well use it twice, given its suitability to both cases.

#

Seems a bit rude, otherwise.

paper tendon
#

!e ```py
values = "1 2 3 4 2 5 1 6 7".split(" ")
small_set = set(values)
res = dict.fromkeys(small_set)

for k in small_set:
res[k] = values.count(k)

print(res)

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

{'5': 1, '2': 2, '7': 1, '3': 1, '6': 1, '1': 2, '4': 1}
cerulean moth
#

!e

values = "1 2 3 4 2 5 1 6 7".split(" ")
small_set = set(values)
res = dict.fromkeys(small_set)
print(res)
wise cargoBOT
#

@cerulean moth :white_check_mark: Your eval job has completed with return code 0.

{'1': None, '2': None, '7': None, '5': None, '4': None, '6': None, '3': None}
paper tendon
#

for v in values:
res[v] += 1

rugged root
#

The number of files I have to scan

somber heath
stuck furnace
#

!eval ```py
import random, timeit

def KIXs_code(numbers):
count = 0
for i in numbers:
numbers.count(i)
if numbers.count(i) == 1:
count += 1
return count

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "KIXs_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@stuck furnace :x: Your eval job timed out or ran out of memory.

001 |          1    1.9e-06 seconds
002 |         10    7.7e-06 seconds
003 |        100    0.00038 seconds
004 |       1000      0.036 seconds
stuck furnace
#

!eval ```py
import random, timeit
from collections import Counter

def Opals_code(numbers):
alpha = Counter(numbers)
return Counter(alpha.values()).get(1,0)

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "Opals_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 |          1      3e-05 seconds
002 |         10    1.6e-05 seconds
003 |        100    3.1e-05 seconds
004 |       1000    0.00015 seconds
005 |      10000     0.0012 seconds
006 |     100000      0.011 seconds
whole bear
#

1

#

10

#

100

#

1000

#

10000

#

how does it work

stuck furnace
#

Thanks Hemlock πŸ˜„ The formatting took the most time to figure out tbh.

#

Yeah, it's like a whole mini-language πŸ˜„

paper tendon
#

!e ```py
values = "1 2 3 4 2 5 1 6 7".split(" ")
small_set = set(values)
res = dict.fromkeys(small_set, 0)

for v in values:
res[v] += 1

print(res)

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

{'4': 1, '2': 2, '3': 1, '5': 1, '1': 2, '7': 1, '6': 1}
stuck furnace
#

Alright...

whole bear
stuck furnace
#

Marko, are you sure that's correct?

stuck furnace
somber heath
#

@stuck furnace Are you also doing Hemlock's?

whole bear
somber heath
#

Tkinter is American jelly.

pastel plover
#

@paper tendon urs didnt work

#

i fixed it a bit to give me the output that i need

#

but it didnt wor

#

work

stuck furnace
# somber heath <@476543547210858506> Are you also doing Hemlock's?

!eval ```py
import random, timeit
from collections import Counter

def Hemlocks_code(numbers):
spam = Counter(str(numbers))
return sum(number == 1 for number in spam.values())

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "Hemlocks_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 |          1    3.5e-05 seconds
002 |         10    2.9e-05 seconds
003 |        100    7.7e-05 seconds
004 |       1000    0.00066 seconds
005 |      10000     0.0073 seconds
006 |     100000      0.063 seconds
stuck furnace
#

Oh really. I didn't know that.

paper tendon
#

!e ```py
import random, timeit
from collections import Counter

def Opals_code(numbers):
alpha = Counter(numbers)
res = dict.fromkeys(set(numbers), 0)
for v in values:
res[v] += 1
return res

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "Opals_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@paper tendon :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 16, in <module>
003 |   File "<string>", line 17, in <genexpr>
004 |   File "/usr/local/lib/python3.9/timeit.py", line 233, in timeit
005 |     return Timer(stmt, setup, timer, globals).timeit(number)
006 |   File "/usr/local/lib/python3.9/timeit.py", line 177, in timeit
007 |     timing = self.inner(it, self.timer)
008 |   File "<timeit-src>", line 6, in inner
009 |   File "<string>", line 7, in Opals_code
010 | NameError: name 'values' is not defined
stuck furnace
#

!eval You might not be able to see the difference, due to random-error ```py
import random, timeit
from collections import Counter

def Hemlocks_code(numbers):
spam = Counter(str(numbers))
return sum([number == 1 for number in spam.values()])

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "Hemlocks_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

001 |          1    3.1e-05 seconds
002 |         10      2e-05 seconds
003 |        100    6.5e-05 seconds
004 |       1000    0.00054 seconds
005 |      10000     0.0063 seconds
006 |     100000      0.064 seconds
rugged root
#
from functools import partial
basetwo = partial(int, base=2)
basetwo.__doc__ = 'Convert base 2 string to an int.'
basetwo('10010')
18
paper tendon
#

!e ```py
import random, timeit

def markos_code(numbers):
res = dict.fromkeys(set(numbers), 0)
for v in set(numbers):
res[v] += 1
return res

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "markos_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

001 |          1      5e-06 seconds
002 |         10      1e-05 seconds
003 |        100    4.1e-05 seconds
004 |       1000    0.00023 seconds
005 |      10000    0.00096 seconds
006 |     100000     0.0078 seconds
somber heath
#

Zoomy.

vivid palm
#

gm~

frigid panther
#

o/

stuck furnace
#

Hey Mina πŸ‘‹

frigid panther
#

gratz on mod @stuck furnace

stuck furnace
paper tendon
#

!e ```py
import random, timeit

def markos_code(numbers):
res = dict.fromkeys(set(numbers), 0)
for v in numbers:
res[v] += 1
return res

num_runs = 2
multiplier = 1

for i in range(6):
problem_size = 10 ** i
average_time = sum(
timeit.timeit(
stmt = "markos_code(numbers)",
setup = f"numbers = random.choices(range(1000), k={problem_size})",
number = multiplier,
globals = globals(),
)
for _ in range(num_runs)
) / (num_runs * multiplier)
print(f"{problem_size:>10} {average_time:>10.2} seconds")

wise cargoBOT
#

@paper tendon :white_check_mark: Your eval job has completed with return code 0.

001 |          1    3.9e-06 seconds
002 |         10    6.4e-06 seconds
003 |        100    3.2e-05 seconds
004 |       1000    0.00031 seconds
005 |      10000     0.0022 seconds
006 |     100000      0.022 seconds
dense ibex
frigid panther
#

sounds like spanish

dense ibex
#

lol

stuck furnace
#

oo et la bibliotech?

dense ibex
#

Yo is I and Tu is you el and ella he and she usted is you more formally nosotoros nostotras both mean we

#

that was a song

stuck furnace
#

Whatever you do, don't mistake "aΓ±os" for "anos".

#

"ΒΏCuΓ‘ntos anos tienes?" "Errr... uno?"

dense ibex
#

about 5

paper tendon
#

so why this runs faster?
because we are iterating only once over the given array of numbers. We are running once a set to get unique values of nums for keys and then creating dict with default values of 0 for numbers in set.
The main advantage is we are passing only once through the numbers so there are no multiple iterations.
That is why is faster.

somber heath
#

Sensible.

stuck furnace
#

Americans seem to love cinnamon πŸ˜„

#

The smell instantly reminds me of being in America.

somber heath
#

So do I, but at the same time, I have an aversion to snorting it.

stuck furnace
#

I think it's just all the Cinnabons πŸ˜„

#

Cinnamon is like "American airport smell" for me.

#

And coffee.

rugged root
#

For me it was the smell of filth and shame

dense ibex
#

There is a starbucks in every airport in america

#

Idk if thats true but most have one prob

frigid panther
#

where are you from @dense ibex ?

dense ibex
#

America more specifically East Coast.

stuck furnace
#

You sound like my older brother πŸ˜„

dense ibex
#

Haha

stuck furnace
#

Yeah, I found school got much better from 16-onwards, because everyone actually wanted to be there and learn (compulsory education ended at 16 in the UK when I was at school).

#

I was amazed at university when I actually enjoyed doing a group project for the first time πŸ˜„

frigid panther
#

group projects have never been good for me

stuck furnace
#

Who's our resident Swede? Vester?

frigid panther
#

ye

dense ibex
#

if you get a good group they are fine, but if you don't then good luck.

frigid panther
#

vester is in sweden

stuck furnace
#

We should ask him what he thinks πŸ˜„

rugged root
#

@icy axle Okay, question. Are you familiar with The Muppets?

frigid panther
icy axle
#

Ah, the Swedish chef

rugged root
#

HA

#

Yes

rugged root
#

I was wondering if you would consider him offensive

icy axle
#

Hahah

rugged root
#

Or any Swede would for that matter

stuck furnace
icy axle
#

I can’t speak for the entire country, but I’m not offended by it

rugged root
#

Okay good

#

Because he may be my favorite Muppet of all time

#

And I love singing songs in his voice

#

So

#

Yeah

icy axle
#

Hahaha yess he’s so weird

dense ibex
west cloak
#

hey anyone have experience in selenium?

stuck furnace
dense ibex
#

Devops prob

stuck furnace
dense ibex
#

any would be fine yeah

rugged root
#

So many possibilities

stuck furnace
#

Niceee

#

Yeah, it's an ongoing discussion tbh.

#

Discord may introduce a feature soon that might help with this.

dense ibex
#

What is the said feature? or do you not know yet.

stuck furnace
dense ibex
#

Gotcha

stuck furnace
#

Brb

somber heath
#

Scenario: Swedish Chef is cooking at a state function next to the Births Deaths & Marriages office. Calamity of calamities, the croquembouche catches fire, burning down three city blocks.

The Swedish Chef is rendered stateless, no longer able to be referred to as the Swedish Chef.

frigid panther
#

back o/

#

just had dinner

honest pier
#

πŸ‘€

vivid palm
#

lul

dense ibex
frigid panther
#

have you heard of paneer?

dense ibex
#

Yeah, my mom made it once its like that chicken in sauce right?

frigid panther
#

huh no

#

its veg

vivid palm
#

i thought it's cheese

frigid panther
#

its a type of cheese/milk product

dense ibex
#

oh then no lol

frigid panther
#

I eat non veg too

#

this @dense ibex

vivid palm
#

palak paneer is yum

frigid panther
#

it sure is

#

I like butter masala more

vivid palm
#

hmm now i want indian

dense ibex
frigid panther
#

today, we just made regular paneer curry, with tomato

frigid panther
dense ibex
frigid panther
#

πŸ‘

honest pier
#

y'all ever had milk

frigid panther
#

I used to as a kid

#

I still have it, but chocolate milk

honest pier
#

where does chocolate milk come from

frigid panther
#

.>

vivid palm
#

brown cows

frigid panther
#

definitely not brown cows

#

its oreo milk shake >.>

honest pier
#

where are the apple juice cows 🧐

stuck furnace
#

Jersey in the English channel?

#

Or Jersey next to New York?

honest pier
#

lul

frigid panther
#

have you watched start-up @vivid palm ?

vivid palm
#

nope

stuck furnace
#

My mum is obsessed with potatoes from Jersey πŸ˜„

frigid panther
#

hotel del luna?

vivid palm
#

nope, but that one i actually am considering watching one day bc iu and yeo jingu

gentle flint
gentle flint
vivid palm
#

lol

gentle flint
#

was bored

#

got to playing around with GIMP

vivid palm
#

^ make gif

jaunty pendant
gentle flint
#

mhm

jaunty pendant
#

well actualy i shouldnt complain. mine is probably worse.

frigid panther
#

I just commited a bunch of changes into 1 commit, hopefully I won't regret it πŸ‘€

gentle flint
rugged root
#

!voice @winter pilot If you're wondering why you can't talk, check this out

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

winter pilot
#

sure

gentle flint
#

My camera appears to have died momentarily

honest pier
#

pog

jaunty pendant
#

crab rave

winter pilot
#

i need help with files on android (pydroid)

gentle flint
#

not sure how the hell it managed that

winter pilot
#

i dont know what to put after --directory

rugged root
winter pilot
#

thanks!

rugged root
winter pilot
gentle flint
#

@jaunty pendant you probably play that FSX a lot more than I do, lol

jaunty pendant
#

ues

jaunty pendant
gentle flint
#

rip

rugged root
jaunty pendant
whole bear
#

I NEED HELP!!!

honest pier
whole bear
#

pls someone help me i cant access email

winter pilot
whole bear
winter pilot
#

termux supports python?

#

i dont know how to use linux stuff

rugged root
winter pilot
#

where are the files stored?

gentle flint
winter pilot
#

it doesn't work for some reason

gentle flint
#

I love how apt upgrade is actually faster on my phone, with wifi, than my desktop, with ethernet

winter pilot
#

i think its on the root folder

gentle flint
#

comes of having an HDD in my desktop

winter pilot
#

is there a way to access it through my pc?

#

data/data/pydroid3/?

gentle flint
#

there

winter pilot
#

i have termux installed on that phone but i have no idea how to work with linux

rugged root
winter pilot
#

that phone is on the way to the trash anyway is there a benefit to root it?

gentle flint
#

why not put lineageos on it

winter pilot
#

its a s8

somber heath
#

Decompressing.

gentle flint
rugged root
#

If you're having to reboot the bootloader, does it become a rebootloader?

frigid panther
#

you can talk @frail aurora

rugged root
#

I'll be back later, delivery run

frigid panther
gentle flint
#

reflash the bootloader

whole bear
#

can someone help me with complex math?

honest pier
#

potentially

whole bear
#

i need to make a python script to give me each x and y position between two points

honest pier
#

why though

whole bear
#

line drawing tool for my paint

honest pier
#

ok, just use point slope form to calculate the equaation for the line

#

then interpolate as many points as you need

whole bear
#

what?

honest pier
#

*equation

whole bear
#

i didnt understant andything you just said

honest pier
#

well

#

given two points you can determine a equation for a line that passes through both of them

#

right?

whole bear
#

yes

honest pier
#

that's the idea

whole bear
#

ys

honest pier
#

ys

whole bear
#

ys

honest pier
#

got it?

whole bear
#

no 😦

#

i dont know python

honest pier
#

it's not a python problem right now

whole bear
#

could you tell me the basic math of it so i can implement it in batch

honest pier
whole bear
#

wtf is point slope

honest pier
#

y - y1 = m(x - x1)

whole bear
#

i dont understant that

#

that is not basic math either

honest pier
#

then i don't know what basic math is

whole bear
#

is theresomething wrong with turtle??

honest pier
#

it says, given the slope and a point that is on the line, you can determine the equation of the line

#

you'd need a tuple

#

or as maybe

stuck furnace
#

πŸ‘€

#

Yeah πŸ˜„

whole bear
#
import math, turtle

def get_heading(xy_a,xy_b):
    x,y = xy_b[0]-xy_a[0], xy_b[1]-xy_a[1]
    return (math.atan2(x,y)*180/math.pi) % 360

def get_unit_vector(heading):
    r = math.radians(heading)
    return math.sin(r), math.cos(r)

start = (0,0)
end = (50,70)
unit_vector = get_unit_vector(get_heading(start,end))
dist = math.dist(start, end)
points = []
for i in range(int(dist)):
    new_point = int(start[0]+(unit_vector[0]*i)), int(start[1]+(unit_vector[1]*i))
    if new_point not in points:
        points.append(new_point)
points.append(end)

for point in points:
    turtle.goto(point)
gentle flint
stuck furnace
#

Here you go Batch: ```py
def dist(xs, ys):
return math.sqrt(sum((x - y) ** 2 for x, y in zip(xs, ys)))

gentle flint
#

interesting

stuck furnace
#

Erm, just change math.dist to dist

#

Actually, you can use this vector class I wrote, if you like: ```py
from typing import NamedTuple
import math

class Vect(NamedTuple):
x: float
y: float

@classmethod
def from_polar(cls, magnitude, angle):
    return magnitude * cls(math.cos(angle), math.sin(angle))

@property
def norm(self):
    return (self.x ** 2 + self.y ** 2) ** 0.5

@property
def unit(self):
    return self / self.norm

def __mul__(self, scalar):
    if not isinstance(scalar, (int, float)):
        raise NotImplemented
    return Vect(self.x * scalar, self.y * scalar)

__rmul__ = __mul__

def __truediv__(self, scalar):
    if not isinstance(scalar, (int, float)):
        raise NotImplemented
    return Vect(self.x / scalar, self.y / scalar)

def __add__(self, other):
    if not isinstance(other, Vect):
        raise NotImplemented
    return Vect(self.x + other.x, self.y + other.y)

__radd__ = __add__

def __sub__(self, other):
    if not isinstance(other, Vect):
        raise NotImplemented
    return Vect(self.x - other.x, self.y - other.y)
#

I haven't tested it πŸ˜…

vivid palm
#

who needs to test when it's LX

whole bear
#

lol

#

^

honest pier
#

🀩

whole bear
#

do you know where in the code i sent it adds ( ) around the numbers?

stuck furnace
#

So, you would use it like this. py u = Vect(1, 2) v = Vect(3, 4) You can add/subtract vectors together, and multiply/divide vectors by scalars: py w = u + v w = u - v w = 10 * u w = u / 2 You can get the "norm" (length) of a vector: py u.norm The vector that points from one position vector to another is just the difference of those vectors: py w = v - u The distance between those points is the norm of the difference vector: ```py
distance = (v - u).norm

rugged root
#

If you do spam = ham, pork, it'll pack those values into a tuple for you

stuck furnace
#

You can get the unit vector: ```py
w = u.unit
assert math.isclose(w.norm, 1)

whole bear
#

yay got it work

stuck furnace
whole bear
#

how would i remove the brackets? ()

rugged root
#

x, y = *point

stuck furnace
#

You want to print them out like this? ```
32 45
33 46
...

whole bear
#

yes

rugged root
#

That will unpack the tuple - or no wait, LX knows what's going on

#

I'm gonna do the shush thing and actually do my run

whole bear
#

LOL

#

you got a fam to feed hemlock DO IT NOW

frigid panther
rugged root
#

Oh do you not? It implicitly unpacks in that case?

#

Didn't know that, actually

frigid panther
#

ye

rugged root
#

Very cool

stuck furnace
honest pier
#

you only need the star where it is ambiguous

frigid panther
#

the star can be used on the left side

#

like

whole bear
#

k ill try

rugged root
#

Now I getcha

frigid panther
#

!eval

a, *b, c = (1, 2, 3, 4, 5, 6, 7)
print(a)
print(b)
print(c)```
wise cargoBOT
#

@frigid panther :white_check_mark: Your eval job has completed with return code 0.

001 | 1
002 | [2, 3, 4, 5, 6]
003 | 7
frigid panther
#

@rugged root

honest pier
#

weird it doesn't pack it into a tuple though?

frigid panther
#

way to use star while unpacking πŸ‘†

frigid panther
rugged root
#

I wonder if it's appending as it goes along, checking to see if it's the last entry in the container

frigid panther
#

maybe they expect us to mutate it

rugged root
#

Or they mutate it in the implementation

#

Who knows

#

Okay, ACTUALLY going now

frigid panther
#

cya o/

rugged root
#

(I always do this)

dense ibex
#

I have an API the returns an image, how do I retrieve the image with AIOHTTP? Since it's not a JSON.

#

Can I not do it with aiohttp?

frigid panther
#

are you geting the image url?

dense ibex
#

no it's an actual image that's the problem.

#

I am trying to get the URL. I was thinking a webscrape but I was hoping there was a different solution.

honest pier
#

that sounds terrible

amber raptor
#

API returning images is weird

dense ibex
#

Yeah I know its Wolfram

frigid panther
#

which api

amber raptor
#

Anyways, AIOHTTP should be able to read the response

honest pier
#

lancebot uses the wolfram api also, you could check that out

dense ibex
#

I did but it's not the same API

#

I am using the Short Answers API

frigid panther
#

can you send the api endpoint

dense ibex
#

Can I send you the demo one?

frail aurora
#

NYEWM

gentle flint
#

@frail aurora ah, you're back

honest pier
#

.wa short point slope form

dense ibex
#

Oh ok

viscid lagoonBOT
#

The point‐slope form of a line through the point (x_1,y_1) with slope m in the Cartesian plane is given by y-y_1 equals m(x-x_1)

stuck furnace
#

.source wa

viscid lagoonBOT
#
Command: wolfram

Requests all answers on a single image, sends an image of all related pods.

Source Code
dense ibex
#

Thank you @frigid panther and @honest pier !

#

I figured it out.

honest pier
#

cute πŸ₯Ί

gentle flint
#

@rugged root charlie yankee alfa lima alfa tango echo romeo

whole bear
#

@molten pewter as a 13 year old shiter i would recommend not beeting the sh*t out of us

faint ermine
honest pier
#

they were tho.

faint ermine
#

yes? he was talking about how kindergarten kids havent learned not to attack each other yet?

faint ermine
#

i was saying that most , but not all, adults have learned that lesson

whole bear
#

how would i turn this into a int and not a string?

faint ermine
honest pier
whole bear
#

its devending or how its called in eng i am german sorry for spell

#

ok

whole bear
#

you*

#

just atacking isnt good

faint ermine
whole bear
#

@whole bear haha i thought u meant me

honest pier
#

same with any language though

whole bear
#

laundmo is a helper he is trusted

whole bear
faint ermine
whole bear
#

ok

#

if he wanted your ip he'd allready have it

whole bear
true lichen
#

hi

faint ermine
#

ultimately IPs are quite useless, since any home ip will change after a while

whole bear
true lichen
#

same

whole bear
#

a bad vpn...

whole bear
#

no

#

i heard hhe was testing people

#

i heard that from someone

stuck furnace
#

Shush psvm πŸ˜„

whole bear
#

but i dont remember the name

dense ibex
#

that never has happened

whole bear
#

we where like 5 people or 4

stuck furnace
whole bear
#

no they said mr hemlock would test the pople to see if they click on links

#

that they dont know

dense ibex
#

No that has never nor will ever happen

stuck furnace
#

You mean rickrolls? πŸ˜„

whole bear
#

i am voiceverified

#

i dont wanna talk

honest pier
#

lmfao, nice one rabbit

dense ibex
#

lol

#

I saw that rabbit

true lichen
whole bear
#

someone talked in the channel 2 days ago

#

i dont wanna cause problems but i just heard that

faint ermine
#

if anyone claims that, they were lying

whole bear
amber raptor
#

as always, file your complaints about admin abuse with modmail so they can be investigated

whole bear
#

entschuldigung

stuck furnace
#

Don't worry about it @whole bear πŸ˜„

whole bear
#

how do i make the sys.argv lines into tuples

honest pier
#

that is a tuple

dense ibex
#

Yeah you're fine lol @whole bear

whole bear
#

it says it is a string

amber raptor
#

I file all my complaints about Joe there so they can be properly shredded

whole bear
#

okay huhhπŸ˜…

faint ermine
#

basically, i confused hemlock. thats all that happened.

whole bear
honest pier
#

you want them to be ints

whole bear
faint ermine
whole bear
#

how do i change this????

whole bear
#

me too

faint ermine
#

for example float(sys.argv[1])
or int(xy_b[0])

whole bear
#

ohhh

whole bear
#

no?

#

that was youre name when i joined the server

#

nope 😐

#

i only know batch``

faint ermine
#

i mean, it was, but if you want to distance yourself from that statement thats okay

stuck furnace
honest pier
#

it's a reasonable thing to do

#

i wouldn't want to know batch either

whole bear
#

thanks for everything guys!

whole bear
honest pier
#

ok?

stuck furnace
whole bear
whole bear
#

@molten pewter i have wireshark but i dont accutaly know the definiton

whole bear
#

jk

#

hehe

whole bear
#

@faint ermine diskoteke you thought ha?

stuck furnace
#

"man in a discotheque" πŸ˜„

whole bear
#

dance. dance .danece ...

faint ermine
vivid palm
#

hi @hoary inlet bongowave

hollow haven
faint ermine
#

!e ```py
a, b = (1, 2)
print(a)
print(b)

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

001 | 1
002 | 2
stuck furnace
#

tΓΌple

whole bear
#

how would i do that because this is what it looks like:

(10, 10)
(11, 11)
(12, 12)
(13, 13)
(14, 14)
(15, 15)
(16, 16)
(17, 17)
(18, 18)
(19, 19)
(10, 10)
(11, 11)
(12, 12)
(13, 13)
(14, 14)
(15, 15)
(16, 16)
(17, 17)
(18, 18)
(19, 19)
(20, 20)
faint ermine
wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

001 | 1 2
002 | 3 4
whole bear
#

im just gonna google it

#

ohh

cerulean moth
#

!e ```py
for x, y in range(1, 21):
print(x, y)

wise cargoBOT
#

@cerulean moth :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | TypeError: cannot unpack non-iterable int object
cerulean moth
#

πŸ€”

whole bear
#

I DID IT

faint ermine
#

!e print(list(range(1, 21)))

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
cerulean moth
#

It would take them in pairs

faint ermine
#

nah, its just tuple unpacking in a loop var, not specifying how many it gets.

whole bear
#

@faint ermine i have the question is there any secret government in germany?

cerulean moth
#

!e ```py
for x in range(1, 21, 2):
print(x, x+1)

wise cargoBOT
#

@cerulean moth :white_check_mark: Your eval job has completed with return code 0.

001 | 1 2
002 | 3 4
003 | 5 6
004 | 7 8
005 | 9 10
006 | 11 12
007 | 13 14
008 | 15 16
009 | 17 18
010 | 19 20
honest pier
#

if you want to take things in pairs you can

faint ermine
#
a = [(1, 2), (3, 4)]
for x, y in a:
    print(x, y)

is the same as

a = [(1, 2), (3, 4)]
for _ in a:
    x, y = _
    print(x, y)
whole bear
#

isnt it called bundesnachrichtendienst

honest pier
#
for x, y in zip(L, L[1:]):
  print(x, y)
hoary inlet
#

Me ?

cerulean moth
#

Yeah, zip is really helpful when it comes for grouping things in pairs

hoary inlet
#

been a while

whole bear
#

√

#

βˆ†

#

@rugged root why do i hear you like this

hoary inlet
#

okay guys, I need some help in selecting my college courses

#

Anyone ?

whole bear
#

mac os best

whole bear
faint ermine
whole bear
faint ermine
#

and yes, there is college in germany

whole bear
whole bear
cerulean moth
#

Batch paint ig

whole bear
#

is it legal to code a art bot for skribble?

#

nope

#

lol

#

ill brb

#

i am back

#

what is gohst pinging?

cerulean moth
#

When you ping a person and delete it

whole bear
#

@severe pulsar what theme on vscode?

severe pulsar
#

material theme palenight high contrast

whole bear
#

thanks

severe pulsar
whole bear
#

WOWWW

whole bear
severe pulsar
#

win + shift + s

#

on windows

whole bear
#

and on mac?

severe pulsar
#

oh i dont know about that πŸ˜…

whole bear
#

i know the screenshot

whole bear
vivid palm
#

use 4 instead of 3

stuck furnace
#

It's very quiet πŸ‘€

whole bear
#

lol

#

u got me

vivid palm
whole bear
#

GUys dont talk about any malicios THE FBI is in the channel

whole bear
#

ok works

wise glade
whole bear
#

i am in why you not starting

stuck furnace
#

I love ranch.

#

The UK needs ranch lemon_pensive

whole bear
#

smoky barbeque sause

honest pier
#

yikes

stuck furnace
#

The closest we have is Ceasar dressing (horrible spelling, I know)

honest pier
#

caeser i think

#

but how do you not have ranch bruh

#

not even at like, mcdonalds?

stuck furnace
honest pier
#

oh i think it's caesar

#

whatever

stuck furnace
#

I think I might have tried the same spelling three of those times.

honest pier
#

Β―_(ツ)_/Β―

stuck furnace
honest pier
#

i can eat some from my fridge and describe it for you if you want

stuck furnace
#

Cool ranch Doritos are called "Cool Original"

#

Erm, pretty much Jake

severe pulsar
#

erm

stuck furnace
#

Pizza Hut, Dominoes, Papa Johns, and then the sketchy local place that gives you food poisoning every time πŸ˜„

honest pier
#

cool original sounds so tepid lul

gentle flint
honest pier
#

Β―_(ツ)_/Β―

whole bear
#

this is very good

#

cool?

stuck furnace
#

No offence Batch, but I wouldn't be running anything you sent me πŸ˜„

severe pulsar
#

i want some mr.hemlock pizza commentary though

#

not gonna lie

rugged root
#

Doing work things

#

One sec

whole bear
#

what happens if you play a virtual box in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox

honest pier
#

run out of resources

whole bear
#

"when life gives you lemons, squirt them into someones eyes."

severe pulsar
#

sad

whole bear
#

but if you play? a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualboxin a virtualbox in a virtualbox

#

it would still work

#

in a virtualbox ok in a in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a virtualbox in a in a virtualbox in a virtualbox in a virtualboxvirtualboxin a virtualbox

#

idk

#

i jsut wanna know what happens

rugged root
#

Your computer will slow down to a crawl

whole bear
#

to a ...*

whole bear
rugged root
#

I mean this is the infinity + 1 argument at this point

#

Eventually you're going to hit a wall

whole bear
#

yeah\

stuck furnace
#

Hmm, well a Docker container is just a process, right?

rugged root
#

It is

whole bear
#

F*** i just wanted to take a cup of milk and hit my llittle finger of the foot 😭

rugged root
#

More or less a single process

#

But it's much less overhead

amber raptor
#

It's weird hybrid between virtualization/single process

whole bear
#

i am bored

amber raptor
#

risky click

rugged root
#

What is it and should I be annoyed that it's here

amber raptor
#

I didn't click on it

#

it's serverless so you can't trust it

whole bear
#

you can make websites

#

you can make websites

rugged root
#

Right, but I'm not keen on dropping a random mysterious link that our users could stumble upon

whole bear
#

ok?

#

i use chrome

rugged root
#

I'm aware what it is, that's not my concern. It's still a sketchy as shit link

whole bear
#

lol i cant delete

rugged root
#

Apparently it's already gone

rugged root
#

It's gone, apparently it's a client bug

#

Reloading my client shows it's gone

whole bear
#

lemme mute the voice chat real quick i gotta listen to spotify premium😏 \

whole bear
rugged root
#

Eh, kind of. But yeah, it's just a glitch. It happens

amber raptor
rugged root
#

Docker is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software, libraries and configuration files; they can communicate with each other through well-defined channels. Because all of the containers s...

whole bear
#

!spookify 113304266269003776

#

😦 got removed 😒

#

anyone wanna hear?

faint ermine
#

@strange maple

rugged root
#

!user

wise cargoBOT
#
Mr. Hemlock#2740

hypesquad_balance early_supporter

User information

Created: 5 years, 6 months and 17 days ago
Profile: @rugged root
ID: 98195144192331776

Member information

Joined: 2 years, 11 months and 12 days ago
Roles: <@&542431903886606399>, <@&463658397560995840>, <@&764802720779337729>, <@&295488872404484098>, <@&585529568383860737>, <@&267630620367257601>, <@&797891034906099752>, <@&587606783669829632>, <@&277914926603829249>, <@&831776746206265384>, <@&267629731250176001>, <@&807415650778742785>, <@&267628507062992896>

Infractions

Total: 18
Active: 2

strange maple
rugged root
faint ermine
#

Virtual Desktop Infrastructure site:https://irclogs.ubuntu.com/2009/

stuck furnace
#

Yeah, when laundmo wants to win an argument, he will go to extraordinary lengths πŸ˜„

whole bear
#

@unborn storm u use vim?

unborn storm
whole bear
#

@strange maple what logs?

whole bear
faint ermine
whole bear
#

someone tryed to run windows 95 on virtualbox?

stuck furnace
#

Gtg. Chinese food has arrived...

rugged root
#

Vastly different use cases

#

For books, magazines, periodicals, etc., that kind of scanner would be good.

#

For bulk document scanning, you need something with a hopper

vivid palm
#

i'm guessing you need duplex scanning?

rugged root
#

Otherwise you will suffer

#

Also yes

vivid palm
#

do you use scansnap manager

rugged root
#

Nope

#

I let DMS handle what to do with it

vivid palm
#

oh right

rugged root
#

But yeah, if I had to do each page individually like that, I would be 5% as fast as I am now, and that's being incredibly generous

vivid palm
#

lol

plush willow
#

Anyone here good with RegEx?

faint ermine
#

decent, why?

plush willow
#

yeah

#

its a text file and from that i need to filter out numbers

#

can I Dm that file?

#

@faint ermine

#

yeah

#

grep "^[0-9]*$"

#

This is an example

#

The output should be -
Number of lines having one or more digits are: 4
Digits found:
29809
165
23673
221965
065
1975
123

#

sorry can you repeat that?
or maybe write the what could the command would be.

#

yeah

#

like see for example the first number in the output is 29809

#

its between or after the commas

#

so how do i specify that

faint ermine
plush willow
#

is there anything as a regex reverse tool?

#

you put in the text and then it shows that regex command πŸ˜›

#

like i would highlight the text in the file or strings and accordingly the regex is made

runic forum
#

hello nerds

whole bear
#

can someone help me please

whole bear
#

best chrome wallpaper

#

@pastel plover YAH I GOT BANNED FROM PYTHON

#

LOl

#

HOLD ON

#

@pastel plover i will

pastel plover
#
length = int(input())
my_list = []
new = []
k = 0
for i in range(1,length+1):
    num = int(input())
    my_list.append(num)
print(my_list)
while k != length-1:
    new.append(my_list[k])
    print(sorted(new))
    k += 1
#

5
3
4
2
8
7

whole bear
#

it says no such file or directory

strange maple
whole bear
#

no one talking

#

@dense ibex hello jake

#

@noble tartan

#

put on usb!!!

#

@lone cedar

runic forum
#

hello

whole bear
#

@dense ibex

#

u downloaded malware?!?!

#

bro playing valorant πŸ˜‰

#

@dense ibex u have a USB???

#

to save youre data lol

#

oh

#

What lol

#

i got an 128 gb sd card

#

theres an 2 tb flash drive for 38 dollars very good actulay

whole bear
whole bear
#

Ok

#

Lol

#

OK*

#

LOL*

#

@runic forum stop or i am reporting you

#

thats spa,

#

spam

runic forum
#

aight

#

you seem annoyed

whole bear
#

no but i hate when people do something like that

#

ok?

runic forum
#

ok

whole bear
#

fine.

runic forum
#

yes

#

hello

#

how are you?

whole bear
runic forum
#

ok

#

and i am blue

whole bear
#

@wispy idol german/

#

@wispy idol whats a caos monkey?

#

like a rootkit?

#

imagine on the server theres like bananas

wispy idol
#

Vue-Js

#

Default recursion example

def factorial(num):
  if num == 0: return 0
  return num * factorial(num - 1)
strange maple
#

@plush craterr voice is choppy

#

@wispy idol your voice is choppy

timber nexus
#

hi, can any one help me with a django project?

#

i cant talk cause i havent send 30 messages

#

i need to create a DB for users

wispy idol
#

Is it? Something is probably wrong with my internet today. Anyway, I said, starting with Python is not a bad idea and it is a transferable skill. So, should you find out along the way that python wasn't the right decision, then learning another language just became a lot easier

timber nexus
whole bear
strange maple
#

im trying to find a programming language to be able to handle 4 to 10 people concurrent connections as part of a SD-WAN.

timber nexus
whole bear
wispy idol
#

@strange maple 4 to 10 concurrent connections.. Pretty much any language

timber nexus
#

can anyone verify me so i can talk?

whole bear
#

@unborn storm Yes bro, how is it going?

unborn storm
#

hi

strange maple
whole bear
#

Hey

digital vine
unborn storm
#

i want to learn doom emacs

whole bear
#

Oh, why?

strange maple
wispy idol
strange maple
#

oh... ok

strange maple
whole bear
#

SD-WAN is something amazing that we human-created

wispy idol
#

I don't understand your question

timber nexus
wispy idol
#

Are you talking about which kind of hard ware?

#

Or which kind of processing power?

strange maple
wispy idol
# strange maple mix environment, arm64 and x86_64

I don't think I can give you an answer to that. Not which out research. I mean, I don't think that the processor architecture matters, because you will be only dealing with network communication. But I cannot answer that

strange maple
#

Its running in a docker image, that s controlled by kuberneties

wispy idol
strange maple
#

Well I want to make mentioning of it, so there is a context within my ideal end game.

unborn storm
#

sc-im

unborn storm
#

vim

#

gvim

#

vimtutor

#

@whole bear vimtutor

#

vimtutor en

whole bear
#

i think he wont let me speak today

worthy lance
#

Hi

#

bye

fast umbra
whole bear
#

my family is around

olive hedge
#

waht

winged fjord
#

@paper tendon my grandpa used unix

fleet ferry
#

i was just wondering has anyone did the pcep exam

paper tendon
winged fjord
#

how good is leet code?

paper tendon
#

nice explanation πŸ™‚

#

no

cerulean moth
icy axle
#

th

frigid panther
#

o/

rugged root
#

How goes it

frigid panther
#

happy friday

#

ye, I wrote everything from scratch except the OTConverter

#

Oooh new embed img

#

random.choices*

#

oof windows keeping yelling that my license is gonna expire

#

I'm gonna commit that algo rn @icy axle

icy axle
#

Perfect

#

OSaaS

honest pier
#

isn't that what windows is

#
  • stadia
#

lmfao

#

yeah that's like stadia

frigid panther
#

windows is expensive oof

#

125$

rugged root
#

See if you can get a student license or student prices

#

Usually can get a better deal

frigid panther
#

lemme see

rugged root
#

If you're in Uni you might be able to go through their bookstore or something. Your school might have a place for deals

honest pier
#

hemlock did you buy sublime 🧐

frigid panther
#

my uni already gives me free office account

#

I'm not sure with windows

#

I need only license not an entire laptop

#

btw, has anyone here tried to expand their linux storage?

#

I have 250gb of ext4, I wanna convert 250gb NTFS to ext4 and merge it

#

I cannot backup the ext4

#

it has OS

#

I don't care about whats in 250gb NTFS

#

kinda intimidating to try

#

but will try

#

oh no, no no to konsole

stuck furnace
#

Heyo πŸ‘‹

frigid panther
#

o/

stuck furnace
#

I too stole Mina's cat...

frigid panther
#

btw in manjaro, they call console as konsole

#

ye

somber heath
#

Gparted has a nice gui interface.

icy axle
#

konsol

somber heath
#

A livecd/usb with it may be an asset

frigid panther
stuck furnace
#

Unfortunately there's no way to work it into my username in a punny way lemon_pensive

icy axle
#

codak

#

kodak

#

Centucky

#

Kentucky

swift valley
#

Good evening

#

I have a mechanical keyboard now πŸŽ‰

frigid panther
#

o/

#

cool

stuck furnace
#

Don't get me started on 'w' lemon_enraged

frigid panther
#

which switches

stuck furnace
#

The worst letter.

swift valley
#

Outemu Reds

icy axle
#

white

frigid panther
#

ah

icy axle
#

vhite

honest pier
#

hwite

icy axle
#

winter

frigid panther
#

I have blue switches, wanna hear them?

icy axle
#

vinter

swift valley
#

hwite

icy axle
#

vinter

swift valley
#

I was gonna go for blues but I figured I couldn't afford the noise

honest pier
#

lul

stuck furnace
#

Yeah they are Swedish

icy axle
#

Vintergatan

swift valley
#

Also I'm not used to my spacebar being this light

frigid panther
icy axle
#

Wintergatan

swift valley
#

My old membrane one took twice as much effort

somber heath
#

Just don't move any boot partitions.

frigid panther
#

I already have linux

honest pier
#

@stuck furnace πŸ‘€ say i have to try 2 things that may cause value errors, but i only need one of them to succeed. what do i do πŸ‘€

icy axle
somber heath
#

Any boot partitions that have their starting positions shifted get cranky.

honest pier
#

huh

icy axle
#

Stop the steal spam

honest pier
#

how and why would that work?

frigid panther
#

I think I have a live bootable usb lying around

stuck furnace
frigid panther
#

I think they have to be unmounted

stuck furnace
honest pier
#

cry because input is invalid

#

actually no

#

just ignore it

#

oh i can just give default values then check

frigid panther
#

alright, I will try that @somber heath

#

ty

swift valley
honest pier
#

not everyone wears a headset 24/7 though lol

frigid panther
frigid panther
#

I don't have speakers

vivid palm
honest pier
#

πŸ‘€

stuck furnace
#

πŸ‘€

swift valley
#

I might buy some keycaps soonβ„’

honest pier
#

πŸ‘€

icy axle
#

I might buy some kneecaps soonβ„’

honest pier
#

nico nico kneecaps

swift valley
#

It's a risk I'm willing to take lemon_pensive

swift valley
somber heath
#

Subtract kneecaps. Add icecaps. Slide.

swift valley
#

I really should grab some dinner first

#

Got too enthusiastic with school stuff

rugged root
#

God damn it, DuckDuckGo. That's not what I meant and you know it.