#ot1-perplexing-regexing

1 messages · Page 548 of 1

last mantle
#

@clever axle dont listen to this guy :D. Try it and then switch if you want

inland wolf
#

lmfao

latent scaffold
#

I'm hurt

#

I would just like to say that neither Pop!_OS nor Linux Mint will offer anything over Ubuntu and any of its flavors

sterile sapphire
#

!resources

royal lakeBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

scenic blaze
#

Ugh. I really fucking hate when I try to look up how to convert X to Y and get calculators instead of formulas 😦

#

Come on search engine, I specified "formula" not "calculator"

rich rover
#

Calculators usually have a formula

last mantle
#

Damn

latent scaffold
scenic blaze
latent scaffold
#

like if you need to calculate mortgage, there will always be results for calculators

scenic blaze
#

Oh, I bet

rich rover
#

They might have PDFs that show the formula

#

I come across those all the time

#

And by PDFs, I mean websites with a whole thesis on the formula/topic

latent scaffold
#

tbh the mortgage formula is kind of annoyingly long to remember

#

so can't blame people for not knowing it

rich rover
#

Calculators are pretty much there for the convenience of users; they don't account for coders but they do provide an api at least

plucky grotto
#

omfg, this is absolutely infuriating

#

Can't believe I need to use a VPS just to view the English page

#

and so many websites do this

inland wolf
#

cant u set the langiage on the website?

plucky grotto
#

No, not unless I didn't look long enough

acoustic moss
#

did you look long enough

plucky grotto
#

We'll never know until someone finds it

latent scaffold
#

too bad there aren't extensions for translating websites or something

plucky grotto
#

Well, that's built-in feature
but english -> danish -> english, that's just dumb

latent scaffold
#

What does it base translations on?

plucky grotto
#

idk, I'm from Denmark

latent scaffold
#

Might want to try turning off your location

plucky grotto
#

lol, how?
pretty sure it's an IP thing

latent scaffold
#

Idk, block its access to your location

#

see if that does anything

#

If you're on Windows, there's a thing for it

vapid nymph
plucky grotto
#

nvidia

#

.com

vapid nymph
#

@plucky grotto

plucky grotto
#

Ooooooo, it was down there

#

ty ty

rough sapphire
#

Anyone here know any good books for learning JS?

vapid nymph
#

@rough sapphire

#

when it restarts it sends an easter fact

rough sapphire
#

Ohh

austere forum
hexed ridge
#

test

#

Less goooo

clever axle
#

How is it watered down?

#

I'm looking for a few things when it comes to picking my OS:

Video game compatibility
Video game modding compatibility
Multiple desktops (with different desktop icons

#

It's a plus if I vaguely know where to look for things but I hear that's based on which"desktop environment" i can use and that's not OS dependent

latent scaffold
#

If you want video games, Ubuntu is the most tested on Proton

#

So Ubuntu/Kubuntu/Xubuntu/Lubuntu/Ubuntu MATE are all decent picks

#

Ubuntu having GNOME, Kubuntu having KDE Plasma, Xubuntu having XFCE4, Lubuntu having LXqt, Ubuntu MATE having.. MATE

#

Pop!_OS and Linux Mint are comparatively useless

#

You'd get the same if not a better experience using any Ubuntu flavor

#

Maybe they don't look as good ootb, but that's easily changed

clever axle
#

What sort of features does ubuntu have that mint's missing?

latent scaffold
#

Mint has been known to create... Frankendebians

clever axle
#

That sounds pretty spooky

latent scaffold
#

iirc it's a weird mix of Ubuntu and Debian packages

#

If you're on the fence, allow me to push you over to the Ubuntu side

#

Xubuntu and Kubuntu are what I'd recommend

#

and as a wise man once said... "Stay away from Arch derivatives"

clever axle
#

Thanks for the input im gonna keep that in mind while i do the rest of my research for picking an os

low chasm
#

.topic :D

median domeBOT
#
**What is your favourite Easter candy or treat?**

Suggest more topics here!

latent scaffold
#

._.

sterile sapphire
#

this is my fault ig

wraith hound
#

That font

#

Burns my eyes

#

I hate Arial

#

or whatever that is.

#

Sorry not sorry

sterile sapphire
#

let me show you the class selection thing

#

it's somehow worse

wraith hound
#

Not the actual planning thing.

#

But it could use a better UI.

#

Some css

sterile sapphire
#

it's terrible

#

it's actually terrible

#

I feel depressed to look at it

last rivet
#

Anyone else who likes typing random names and .com in the end to see if it's an existing website?

versed saffron
#

is there a way to open files in their associated editors using cmd? I tried using start/open but both seem to just open the file in a python shell rather than in pycharm, ik assoc is a thing but I'd still have to manually map that output to the binary or parse it myself and use the alias

rich moon
#

quite sure there was a setting in pycharm that was associate .py files with pycharm

versed saffron
#

it is tho? if I do assoc .py the output is pycharm

#

but start just opens a shell

rich moon
#

huh

proper dune
#

@versed saffron was it a recent change you made? Restart might fix that

versed saffron
#

nope and I had restarted a couple times, that was weird tho I change the opens with to something else, changed it back and now it works

#

god I lOve windows wmi.x_wmi: <x_wmi: Unexpected COM Error (-2147352567, 'Exception occurred.', (0, 'SWbemProperty', 'Type mismatch ', None, 0, -2147217403), None)> like ok thanks I too understand what this means as a fellow programmer

vapid nymph
#

Is that, Integer overflow?

versed saffron
#

no it's windows being cryptic

import win32api
win32api.FormatMessage(-2147352567)
>>> 'Exception occurred.\r\n'```
#

the second number isn't even an error code?

win32api.FormatMessage(-2147217403) 
"Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
 pywintypes.error: (15100, 'FormatMessageW', 'The resource loader failed to find MUI file.')"
rough sapphire
#

What are some interfaces i can use to make a cross-platform gui with C?

#

And where can i find resources about it?

#

I am looking for something thing like gtk, but i wanna know my other options

tribal aurora
#

@remote socket how's emacs

remote socket
#

still trying to get pipenv to work in my different projects

tribal aurora
#

lol

remote socket
#

there's like no documentation

tribal aurora
#

cuz emacs

sour forge
#

How can I add a custom method to a predefined struct? Here is what I need: I am trying to add a custom method to std::collections::HashSet called some_custom_method which will do something.

let mut x = HashSet::new();
x.some_custom_method();

I am aware that I could create a normal function that does this but that is not what I am looking for.

inland wolf
#

u need to make a trait

#

and them implement tht trait for HashMap

#

then u can make ur custom method

lunar shore
#

Any project ideas?

proper dune
#

Robots

lunar shore
#

Um

#

What about just software projects

proper dune
#

Software for robots

lunar shore
#

Well

#

I don't have the hardware

#

So I can't

#

(I have an arduino , but that's about it)

lunar shore
#

nvm making an SVG library

lunar shore
#

@rough sapphire Come in here

rough sapphire
#

oh ok

lunar shore
#

So yeah

rough sapphire
#

so

lunar shore
#

iran

rough sapphire
#

you ran?

lunar shore
#

Yeah LMAOO

#

I ran , indeed

rough sapphire
#

lmao

#

hmmmm

lunar shore
#

(it's not pronounced Ai Ran btw , it's Ee ran)

rough sapphire
#

isn't iran dying from us

lunar shore
#

Lmao , yes . And our "leaders" sold it to china

#

for 25 years

#

Anyway , yeah I live in Iran

rough sapphire
#

IRAN

lunar shore
#

XD , welp . Also , since Iran != China , we're gonna get F***ed

#

most likely local internet

#

And um ... They will kill any protesters

#

Bcuz it's not their country

#

idk what the future holds , but whatever it is , it's not good for Iranians

lunar shore
#

XD

last rivet
#

I'm trying to see the context, hold on

#

(not into politics)

#

sad, I guess.

drifting sage
#

WHY ARE THERE SO MANY TRYHARDS AND HACKERS IN HYPIXEL WHAT IS THIS FORTNITE PLAY NORMALLY

#

I HATE IT SO MUCH

latent scaffold
#

uh

last rivet
#

hmm

last rivet
drifting sage
#

every skywars game everyone is using the fishing rods which basically removes your ability to hit for a second or two

#

and they just spam it non stop

last rivet
#

but every multiplayer game suffers from that, not just hypixel and fortnite.

drifting sage
#

I know but it's just asking for it to be used cause 1.8 pvp is broken

last rivet
#

Also hypixel didn't ban the rod, so, just use it?

drifting sage
#

How to switch between the rod and the sword?

last rivet
#

Tip: place it in a hotkey you can reach easily

#

change it in the controls

drifting sage
#

that's really tryhardy...

last rivet
#

It may hurt even more to have to make your fingers reach the fishing rod though. (depending on where you place them)

#

Could also learn to dodge the rods. (takes some time)

#

most of them use snowballs

#

because they're faster but limited.

#

[I guess this conversation ended here, so you can bring on another topic]

naive reef
#

lol

hearty fog
#

how do I become voice verified ?

wraith hound
#

Does anyone know what VSCode theme this is?

latent scaffold
#

reminds me of the terminal theme "cyber punk neon"

rough sapphire
#

looks like cyberpunk

latent scaffold
#

lmao

rough sapphire
latent scaffold
#

huh?

latent scaffold
rough sapphire
latent scaffold
#

lol

rough sapphire
#

lol

hearty fog
harsh tundra
# wraith hound Does anyone know what VSCode theme this is?

googled vsc dark themes, found it first on this list - https://www.amitmerchant.com/vscode-dark-themes-2020/ and it's called 2077, so cyberpunk guess was on point

Amit Merchant

Another year. Another run down of all the (Dark) themes for VS Code that I’m using in 2020. This time around, I’ve experimented with themes which are quite unusual but have vibrant aesthetics. I’m listing down all the themes down below for you to check out. Sit back and enjoy!

wraith hound
#

Thank you!

sterile sapphire
#

wot I'm pissed

#

my prof said NYT comes for free w being a student at Hofstra

#

so I tried making an account w NYT and they asked for a hofstra associated email

wraith hound
#

Whaaaaat.

sterile sapphire
#

so I gave them my Hofstra associated email and all of a sudden they say it's not it

wraith hound
#

What voodoo is this.

sterile sapphire
#

that it's wrong

#

it actually is a thing

#

no it's not

#

now I can't find it

#

nope now I can

#

god knows

tardy rain
#

What, its in there

sterile sapphire
tardy rain
#

Just talk to your it dept, this is why they exist

sterile sapphire
sterile sapphire
#

hell yeah dude

#

one page in already

wraith hound
sterile sapphire
#

these aren't necessarily new

#

I just decided it would be good to ask

wraith hound
#

Yeah, I do know you.

sterile sapphire
#

Python and ds/algos courses don't seem to mesh

#

they don't really like using python for ds/algos

#

more Java

#

or C++

#

or C

#

there's a good Java course in ds/algos

wraith hound
#

I see.

sterile sapphire
#

but I wanted to learn it in Python so

#

wot

#

WSJ has a near impenetrable pay wall

#

how does my prof expect me to get past the pay wall

surreal otter
#

!rule 5 probably

royal lakeBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.

sterile sapphire
#

no

#

I'm not asking how to get past it

#

I'm just saying how stupid my prof is

vapid nymph
#

wut

surreal otter
#

Complain to the professor that you don't have access

vapid nymph
#

ur prof wants you to get past it?

sterile sapphire
#

why would he make me write an article when the site is paywalled 🥴

vapid nymph
#

uh

#

gimme a paywalled link

sterile sapphire
#

idk what he wants

#

he's 85

#

I don't even think he knows how the internet works

surreal otter
#

Tell him you cannot access the article

sterile sapphire
#

yeah that's done

#

they're smart

#

so I can't use them

#

oh wait

#

I misinterpeted the paper

#

🥴

#

I don't need a WSJ article if I already wrote about NYT

rough sapphire
#

Ayo

sterile sapphire
#

What

#

Is saving private Ryan a good movie

rich moon
#

its old

#

graphics may not be as good as recent movies

carmine niche
#

damn mfw 6! is a recursion error

#

imagine intentionally not optimizing tail recursion 🤡

#

a whole fucking joke

rich moon
#

isnt that python

#

not optimizing tial recursion cuz nicer traceback

carmine niche
#

yes

#

but you'll notice

#

they don't use the same logic to justify not allowing loops in python

#

it is just because they're lazy

#

that or they have something against fp

rich moon
#

guido does what guido want

carmine niche
#

lmao

rich moon
#

well now yeah

carmine niche
#

tru

rich moon
#

prob y they bringing in pattern matching

carmine niche
#

no

rich moon
#

cuz he gone

carmine niche
#

oh

#

i misread

young shoal
#

guido's not gone lol

urban tangle
carmine niche
urban tangle
#

¯_(ツ)_/¯

#

maybe just thinking of java

carmine niche
#

does java not? are we sure?

#

let me test

urban tangle
#

i mean it definitely doesn't turn them into the iterative version... u get stackoverflow ezpz

#

in jvm extensions u have to use tailrec modifier on functions too to force them to be optimized

#

so like 99% sure java is bad (probably cause like python wants to preserve stacktrace)

carmine niche
#

big oof

#

it does not optimize tail recursion

#

that's a huge oof

#

just another reason to use C# instead of Java i guess

sterile sapphire
#

@rich moon you mean like the special effects?

young shoal
#

c# does tco?

carmine niche
# young shoal c# does tco?

i don't know if it is tail call optimization or if it is tail recursion optimization but i know that tail recursive calls are optimized

#

hmmm

young shoal
#

aren't those equivalent

carmine niche
#

no

#

tro is a subset of tco

#

a tail call is just the... tail call

#

e.g. x() in x(g(f()))

#

tail recursion is when all recursive calls are tail calls

sterile sapphire
#

I’ve never used a tail call

carmine niche
#

have you ever called a function within a function

#

e.g. print(some_function(some_args))

#

actually

#

scratch that

#

ave you ever used a function at all

#

if you have, then you have used a tail call

carmine niche
#

yes you have

#

huh

#

nevermind

#

i guess C# doesn't optimize tail recursion

#

fucking weird

#

i could have SWORN that when i tried it like 6mo ago in visual studio to prove a point about python not having it it worked

#

:/

#

well

#

in any case

#

if you're really dying for tail recursion

#

literally just use F#

#

and import it into C# if you must

#

🙃

last mantle
#

Rei the second

latent scaffold
#

lol

last mantle
#

so

#

Linux mint is the best

wise schooner
acoustic moss
wise schooner
#

they just didn't want to add tco without the user acknowledging it

last mantle
#

gentoo is amazing, way better than arch

#

xubuntu sucks ass

wise schooner
#

i want to try gentoo someday

latent scaffold
#

:/

wise schooner
#

max performance 😎

#

i'll try it on a vm first

last mantle
#

hey @wise schooner

#

how good is the zephyrus battery (if you know)

#

the 4800H + 1650

wise schooner
#

👀 i dunno zephyrus battery but a 4800H is not the best CPU...

last mantle
#

what else then

wise schooner
#

i mean.. you can get i5-9th gen or smth in 1000$s

#

with 1650 too

last mantle
#

bruh how do those even compare

#

also, this is like 70k or so rupees

wise schooner
#

OH mb

#

i thought you were talking abt a 4th gen intel lmao

wise schooner
last mantle
#

eh i have an amazon business account heh

#

ahh TUF laptops have heating issues

wise schooner
#

Asus has cheap laptops

#

yeah, that would prolly be the catch

wise schooner
#

Ryzen 5 4600H?

brittle mirage
#

r we talking about laptops?

last mantle
#

4800H

#

yeah

wise schooner
#

oh

brittle mirage
#

should i pop mine in lol

last mantle
#

i just want it to not drain the battery a lot

wise schooner
#

i have a laptop which is overpriced everywhere lemon_angrysad

last mantle
#

gaming laptops are notorious for battery drain

wise schooner
#

(but i got it for cheap somehow)

brittle mirage
#

lol mine is a gaming one

#

i dont game too often doe

wise schooner
brittle mirage
#

loool

#

i use:
Intel(R) Core(TM) i7-10750H CPU
Nvidea GTX 1650ti
16 gigs of juicy ram
i think 256 nvme raid ssd

wise schooner
#

well... mine stays for 2.5 hour after continuous gaming

#

then i need to plug it in

brittle mirage
#

i always plug during gaming

wise schooner
#

it will prolly be like 6-7 hours under normal conditions tho

brittle mirage
#

to achieve best quality

last mantle
#

hmm

wise schooner
#

i mean... just force it to high performance lol

#

even if you are not plugged in

brittle mirage
#

but dont prefer

wise schooner
#

might drain battery quickly but the performance is same

#

yeah

#

how does R5-4800H compare to i5 10th gen?

last mantle
#

R7

#

doesnt compare

wise schooner
#

ah yes

#

well 70k is a fair then imo

#

poggies

wise schooner
brittle mirage
#

i bought my gaming laptop for i think 700 bucks

wise schooner
#

mine was of 1500 i think

brittle mirage
#

whats ur cpu man

wise schooner
#

but well... rtx 2070, i am fine lol

brittle mirage
#

u probably have better gpu doe

brittle mirage
wise schooner
brittle mirage
#

gg

#

same

#

i cant go back to my crappy laptop now,

#

the 5 ghz compared to 3ghz

wise schooner
#

yeah

#

but i do use it sometimes lol

#

i am planning to switch to linux on that one

brittle mirage
#

hm

brittle mirage
#

windows feature which lets u run linux bash

wise schooner
#

but well... since i don't game on that laptop anyways

#

¯_(ツ)_/¯

brittle mirage
#

i mean

#

u could use

#

a linux vm

wise schooner
#

no, i just want low resource usage on that laptop now

#

linux is nice with that

brittle mirage
#

mhm

last mantle
wise schooner
#

ofc

brittle mirage
wise schooner
#

imagine using anything else as terminal on windows

brittle mirage
#

wsl is a feature

#

me: uses bash on windows

last mantle
#

yes, but do you use it

#

windows terminal

brittle mirage
#

i use both

wise schooner
#

windows terminal is sooo nice

brittle mirage
#

thats my bash terminal

wise schooner
#

bruh

brittle mirage
#

i originally installed it to use redis

last mantle
#

oh no

wise schooner
brittle mirage
#

i thought that was beta

last mantle
#

nop

brittle mirage
#

they completed it?

#

NICE

wise schooner
#

lolol

latent scaffold
#

Windows :c

edgy crest
#

:c

wise schooner
#

windows terminal da best

latent scaffold
#

Alacrtty best

wise schooner
#

nah i tried alacritty

#

windows terminal >

latent scaffold
wise schooner
#

yeah, on linux vm and windows both

#

i will use it when i switch to linux tho

latent scaffold
#

:c love Alacritty

wise schooner
#

i need a linux port of the windows terminal :((

#

someone do it already

#

it's open source

#

(and i don't have enough knowledge to do it myself lol)

latent scaffold
#

VMs :>

last mantle
#

yeah windows terminal is the best i have seen

#

tbh i liked konsole more than alacritty heh

latent scaffold
#

I just realized I don't even have Konsole installed

brittle mirage
#

omg just installed windows terminal

#

i used the beta ages ago

#

they did it 🙂

#

a good terminal

last mantle
#

the best

#

customise it now

#

see microsoft docs

#

this is the final form

#

does anyone have good oh my zsh themes? 😔

latent scaffold
#

why's there a Debian background, though...

last mantle
#

eh thats arch

#

ah the whirl

#

idk lol

latent scaffold
#

lmao

last mantle
#

its not meant to be debian imo

latent scaffold
#

also tbh I don't like oh-my-zsh

#

vanilla zsh so much better

edgy crest
latent scaffold
#

:(

edgy crest
last mantle
#

heh

latent scaffold
#

yes

last mantle
latent scaffold
#

no

last mantle
#

lol

#

it works surprisingly well

#

better than VirtualBox imo

latent scaffold
#

do DEs even work in WSL

last mantle
#

you need GWSL for that

#

or something that can support it

#

i will try to install i3 gaps in it some day

wise schooner
rough sapphire
#

I need help with batch i made a multi tool and im trying to add a 2nd page and im not sure how to make it

dark verge
#

How do you guys even study how python works

#

I want to understand py for better code

last mantle
#

LMAOO WHAT

acoustic moss
#

?

last mantle
#

@solemn leaf your exams are cancelled mate

#

10th exams cancelled

#

12th exams to be reviewed on june

#

may be in july - august

#

what the fuck

inland wolf
#

YOO

#

MY EXAMS ARE GONE

#

cancelled*

rough sapphire
#

Can anyone help me?

acoustic moss
#

da fuq de doing ova dere

twin charm
#

bruh.

#

also 180k daily new cases in the country... highest ever.

#

the graph scale has been changed to let numbers higher than 150k show up haha.

gritty zinc
#

oh lol, it even happened in this very channel

edgy crest
#

eh

last mantle
#

10th graders damn

clever axle
#

I wonder if I can use my laptop as a wifi adapter

last mantle
#

so fucking lucky

last mantle
latent scaffold
#

is it bad I confused 10th graders with 10 year olds

last mantle
#

or bluetooth wifi

clever axle
#

Currently sitting here like a dingus because I forgot to buy a wifi adapter for my new computer

last mantle
#

happens

#

get one now

latent scaffold
#

I almost suggested that you can tether wirelessly

edgy crest
acoustic moss
#

me when 11th grade:

last mantle
#

me when 12th grade

edgy crest
#

i wanted to be born 1 year earlier

inland wolf
#

lol

sharp oak
#

can anyone help me ?

#

someone with 64 bit python

#

on windows

#

?

versed saffron
#

what problem

#

are you having

#

?

sharp oak
#

need to test if my package is installable or not

versed saffron
#

wdym installable

sharp oak
#

i mean i marked it as win32

#

so i need to test if it will also work on 64 bit python

#

pip install toastify==1.1.4

#

no one ?

#

its just 20kb

solemn leaf
#

endless calls

#

everyone's gone mad here

#

🤣

#

@inland wolf ggs

#

we are #11thgeng

#

lmfao

odd sluice
#

Code Form:

import problemc
import life
problem = problemc.create(diificulty=5)

def problemSolve(problem):
  for x in list(problem):
    try:
      problem.try()
      life.showOff(duration="1y")
    except TooHardError:
      life.cry(duration="1h")
      problem = problem.divide(datatype=list)
      problemSolve(problem)
inland wolf
rough sapphire
#

How to turn on push to talk mode by keybind on discord?

gritty zinc
rough sapphire
odd sluice
#

ok idk java very well so don't kill me for syntax

wise schooner
#

that's a first for me

#

how will they even be graded?

#

school tests?

inland wolf
wise schooner
inland wolf
#

idk but its their circular

last mantle
#

official

#

12th is postponed

solemn leaf
# inland wolf

our marksheet will be decided on the basis of internals

inland wolf
#

yes

solemn leaf
#

@wise schooner 👀 also your boards are not sure , there will be a discussion on 1 june

#

lmfao

solemn leaf
inland wolf
#

i didnt do well

#

but we didnt get our marks

solemn leaf
#

oh

inland wolf
#

yes

solemn leaf
#

12th boards would be discussed

#

if they should take place or not

cobalt halo
#

What are the CBSE's?

quick ledge
#

Central Board of Secondary Education

#

It's the Indian education board

acoustic moss
#

*one of the Indian education boards >:)

quick ledge
#

*the only board that matters

last mantle
#

indeed

quick ledge
#

>:)

last mantle
#

>:)

#

lol

solemn leaf
#

@quick ledge 👀 oh yes you are also in 12th

#

brainmon how r u feeling sar

#

after the announcement

quick ledge
#

I don't know
This means that I'm going to get more time to prepare

last mantle
#

ᓚᘏᗢ | e

quick ledge
#

But it's not like I'm preparing jackshit right now anyway

last mantle
#

lol

quick ledge
#

like.. yeah
I've mixed feelings

last mantle
#

which college do you want

quick ledge
#

tbh, I just want this shit to get over

last mantle
#

same

quick ledge
last mantle
#

alright

wise schooner
carmine niche
# odd sluice Java Port 🤣 ```java import life.irritating.problem; import life.actions.*; p...
import life.irritating.problem;
import life.actions.*;

public class ProblemSolver {
    public void solveProblems(problem[] probs) {
        for (int i = 0; i < probs.length; i++) {
            boolean res = probs[i].solve();
            if (result) {
                showOff("1y");
            } else {
                cry("1h");
                solveProblems(problem.divide());
            }
        }
    }
}

i don't know how accurate that is to the original python i just fixed up your java version
i'll do a rewrite of the original python next OwO

solemn leaf
wise schooner
#

use the enhanced for loop lemon_sentimental

solemn leaf
#

oh its hindi

#

lmfao

quick ledge
#

yeah, lol

solemn leaf
#

read and delete

quick ledge
#

rule... 4?

solemn leaf
#

🥴

#

ty

quick ledge
#

banned.

solemn leaf
#

haha

wise schooner
#

nice

solemn leaf
#

12th students 🥴

wise schooner
#

fr i hate that it's postponed

#

just be done with it

solemn leaf
#

yea

edgy crest
#

@quick ledge i was wondering how does onam have CBSE and JEE?

acoustic moss
last mantle
#

oman

acoustic moss
#

o man

edgy crest
#

vi man

carmine niche
edgy crest
#

you not nekoboi anymore thonkdead

wise schooner
#

i wish i was in IB :((

last mantle
#

yeah 😔

last mantle
wise schooner
#

board

carmine niche
edgy crest
carmine niche
#

nekoboi

last mantle
#

anime 😩

carmine niche
wise schooner
carmine niche
#

proof

edgy crest
#

thats a girl

carmine niche
#

is not

#

it is whatever i say it is,,

last mantle
last mantle
edgy crest
wise schooner
last mantle
#

damn

edgy crest
#

pretty active sub

last mantle
#

how

acoustic moss
#

i'm fairly sure just being in IB doesn't get you to MIT/Harvard lol

carmine niche
#

he is canonically male

#
Kou

This boy, so connected to the distant past, could never have imagined the trials waiting at the end of his journey of atonement. The love and kindness...

acoustic moss
#

ok

wise schooner
#

yeah, you have to give exams ofc

carmine niche
last mantle
#

the english part is tough tho

wise schooner
#

yes

#

well... kinda

#

some questions are easy too ofc

last mantle
#

well, for harvard etc, you need a ton of false recommendations, (community service?)

wise schooner
#

lmao

last mantle
#

like merit matters but this is given more importance

#

which is shitty

#

what does community service have to do with how good you are at somethin

#

yeah

quick ledge
#

it shows that you are an all-rounded person

#

and not just a book worm

last mantle
#

bs

wise schooner
#

lol

quick ledge
#

or atleast that's the idea

#

ig

last mantle
#

hmm

carmine niche
#

i could do more but like do i really want to

last mantle
#

ok

acoustic moss
#

ok

sterile sapphire
#

The one who murdered Daunte Wright had 25 years of experience

#

and she confused a gun and a taser when they’re both weighted differently

wise schooner
#

ok

sterile sapphire
#

🥴

#

that was no “accident”

wise schooner
#

i mean... mistakes do happen

sterile sapphire
#

Hahaha

#

25 years of experience

#

“Mistakes happen”

#

🥴

#

Some mistake there

wise schooner
#

what? you have never committed a mistake on something you know extremely well?

sterile sapphire
#

She has a gun and a badge

#

She has no excuse

#

along w 25 years of experience

#

She killed a man dude

#

Bc of her own incompetence

wise schooner
#

25 years of experience =/= cannot make mistakes ever

#

you know python nicely, right? don't you make a single mistake in python while coding any program on the first attempt?

sterile sapphire
#

Funny

#

Does python kill people?

#

If a doctor gave a patient the wrong medicine

#

And then later that patient dies

#

does that doctor get to say oops my bad?

#

No

wise schooner
#

no, i was just saying that however experienced you might be, you can still make mistakes

sterile sapphire
#

They get arrested for second degree manslaughter

#

no

last mantle
#

arrested huh lol

sterile sapphire
#

Your metaphor doesn’t convey the seriousness of the situation

#

mine does

acoustic moss
acoustic moss
#

snek choke kill

sterile sapphire
#

funny

acoustic moss
#

ok

last mantle
#

ok

wise schooner
#

ok

sterile sapphire
#

basically

last mantle
#

poggies

rough sapphire
# sterile sapphire

it works if the black dude is holding the yellow one, and it works for the white dude holding the black one

sterile sapphire
#

is this a reference to black and yellow

rough sapphire
# sterile sapphire what

no remember that black-skinned kid that was like arrested or shit for having this random toy gun

sterile sapphire
#

ohhh

#

ok

#

yeah

#

cops are something else in general

#

what I don't understand is aren't there like fitness requirements to be a cop

#

why are so many of them rocking dad bods

rough sapphire
#

like they take the test at 20

#

and they are now like idk 40

sterile sapphire
#

oh yeah I'm reading rn

#

they have to eat out at restaurants

#

high caloric consumption

#

excessive sodium intake

rough sapphire
#

oh

sterile sapphire
#

there should be fitness requirements

#

like

#

regular fitness requirements

rough sapphire
rough sapphire
acoustic moss
#

like
fr

rough sapphire
#

lmao

sterile sapphire
#

what

#

there's a subway surfers tv show????

#

wot

acoustic moss
#

i mean i thought of subway surfers

#

not any tv show lol

sterile sapphire
#

it got recommended to me

#

overweight cops went to a fat camp in Thailand

#

apparently

rough sapphire
#

lol

#

do you know the backstory of subway surfers

#

like the creator's son died of ligma

sterile sapphire
#

nice try

rough sapphire
#

and this is why school is important

sterile sapphire
#

🥴

last mantle
#

amber heard lmao

sterile sapphire
#

Amber Heard is a terrible person

last mantle
#

yeah lol

sterile sapphire
#

the shit she did to Johnny Depp

#

god

#

awful

#

she was going to send Depp to jail for abuse

#

when he didn't even touch her

rough sapphire
#

she was the offenser lmao

sterile sapphire
#

she ruined his acting career too

rough sapphire
#

thats why school is important, kids

last mantle
#

she abused him yeah

sterile sapphire
#

the second he married Heard

rough sapphire
#

to not become like amber heard

sterile sapphire
#

he started taking more and more bizzare roles

#

like he used to be about as famous as RDJ

#

or Chris Evans

sterile sapphire
#

and now he's basically irrelevant

rough sapphire
#

johnny depp saying what he has found that is better than amber turd

sterile sapphire
#

he was so drunk or high he couldn't remember his lines

#

so he had an earpiece during scenes

rough sapphire
#

lmao

sterile sapphire
#

it's a shame

#

he got knocked off the Fantastic Beasts thing

#

but that movie was terrible

#

so if you ask me that's a win for him

rough sapphire
#

and now amber heard has lead roles wtf

#

EVEN AFTER THE HEARING SAID THAT SHE WAS GUILTY

sterile sapphire
#

she has the audacity

rough sapphire
#

i mean johnny depp isn't the best guy we have

sterile sapphire
#

the audacity to ask WB for more scenes in Aquaman 2

rough sapphire
#

but he deserves much better

sterile sapphire
#

even after all the controversy of what she did to Depp

#

thank god Depp was smart enough to record shit

rough sapphire
sterile sapphire
#

otherwise he would have been long gone by now

#

It's a shame

#

idk why Heard is allowed to still act

#

she should be canceled everywhere

rough sapphire
#

and the truth will never be revealed to the world

sterile sapphire
#

his ex wife backed him up

rough sapphire
sterile sapphire
#

oh

#

well if even his ex wife is saying Depp doesn't abuse

#

then Heard's claim makes no sense

rough sapphire
#

yeah

#

and then she also cheated on him with Elon Musk and other celebs

solemn leaf
#

brainmon today i am officially in 11th grade

sterile sapphire
#

I'm looking at the Twitter responses to her posts

#

and they all say you go queen

#

like what

rough sapphire
sterile sapphire
#

do women just not get cancelled

#

that's not true

#

bc Ellen got cancelled

last mantle
#

apparently not

rough sapphire
sterile sapphire
#

Ellen is not a good woman 🥴

#

you read the things the staff accused her of

#

lmao

rough sapphire
sterile sapphire
#

oh

#

hm

#

ig

rough sapphire
#

brazen ingot
last mantle
#

ok

solemn leaf
#

xd

brazen ingot
#

LOL

#

@solemn leaf Do you know that?

rough sapphire
#

hows it like in india

solemn leaf
brazen ingot
#

Yes lol

last mantle
#

shit

solemn leaf
#

lockdown + curfew + cases * 69

brazen ingot
#

Corona ismaking our exams cancelled

last mantle
#

poggers

rough sapphire
brazen ingot
#

Pogggers are enjoying it tho

solemn leaf
#

lmfao

sterile sapphire
#

this makes no sense

#

"one article.... from the mainstream press"

#

"and one article from alternative sources"

#

but he wants 3 articles

#

like am I missing something here or what

#

I'm not so sure

#

I emailed him

#

but like

#

if he wants 3 articles

#

why not clearly write that you want 3 articles

#

sigh

last mantle
#

may 10th damn

#

a lot of time

#

wish we had such deadlines

gray laurel
#

Wouldn't it be cool if Discord had built in line-numbers displayed for code?

rough sapphire
#

yeah

sterile sapphire
#

yeah but like

#

I'd rather get this shit done

#

so I can have fun

#

and not have this looming over my head

rough sapphire
#

I don't like abuse if its physical mentally or emotional.

sterile sapphire
#

lol I haven't even found the right job to actually make money

#

no relationships until I can provide for myself

rough sapphire
#

I come from a small town where there aren't a lot of jobs left. most of the industry's died off.

sterile sapphire
#

oh

#

I don't know how the job scenario is in Long Island

winter oriole
#

US ?

sterile sapphire
#

I just found this song from a tik tok

#

and it's a jam

last mantle
#

ok

strange musk
#

tiktok eww

rough sapphire
#

some custom clients do that

#

The problem with that is that using custom clients come with the risk of violating Terms of Service

gritty zinc
#

I mean, they don't "come with the risk", they violate ToS always, I believe

#

though no idea how often people are actually banned for that

acoustic moss
#

someone got warned for it today here

gritty zinc
#

I meant by Discord.

acoustic moss
#

o

low chasm
#

Guys, for some reason, in my language, if I do ```
func test():
print("HI")

test()
print("After Function")
``` It prints After Function twice

#

But, if I put it before I call the function, it only prints it once

#

Any idea why?

inland wolf
#

yes

low chasm
#

I fixed it :D

inland wolf
#

nice

safe flume
low chasm
#

I fixed it, the problem was how I handle my CALL_FUNCTION opcode, I increase my program counter and reset my stack twice

lilac phoenix
#

Hi one question. I cant edit this file. I'm in my ESXI-ARM via SSH so i dont have sudo su. Any one knows how to save it?

stark prawn
#

I found this list of thing that may be going on.

you have a filesystem does not lets you eg. uid:gid, eg: FAT
the drive has been mounted read-only
SELinux or other security enforcers apply
filesystem is set to read-only mode (xfs_freeze, for example)
file has the immutable flag set (man chattr)
lilac phoenix
#

I can edit other system documents but exactly this no

#

😦

stark prawn
#

which file is it, can't really tell from the screenshot

lilac phoenix
#

/var/spool/cron/crontabs

#

the file name is root

stark prawn
#

Why do you want to manually edit the crontab?

lilac phoenix
#

to run a bash script every 5 minutes

#

and take the temperature of my RaspBerry ESXI-ARM, send it to one server and then make some graphics

stark prawn
#

I have no clue what is causing you to be unable to save

lilac phoenix
#

np thank you!. I will think other way to run the script maybe with python

stark prawn
#

Who is the owner of crontabs?

lilac phoenix
#

root I suppose

stark prawn
#

It said somewhere they had some problems because it wasn't root

lilac phoenix
#

Yes I need root to edit the file but in ESXI-ARM i havent got sudo su, su or things like that

sterile sapphire
#

management is a joke of a class

#

no one can change my opinion

#

they asked me a question on the test that was like

#

_____ing and __s are examples of ____

#

and there was no word bank

lyric sable
#

imagine doing recursion in recursion on recursion

vestal briar
#

whole album is nice

plucky ridge
#

!pban 500015995423817739 Posting an image that you know breaks user's clients is unacceptable. You're free to never come back

royal lakeBOT
#

:x: User is already permanently banned (#31895).

low chasm
#

F

dark verge
#

I wonder what the world looks like if there was no bugs

tardy rain
#

Probably way uglier, bugs do pretty much all of pollinating

vapid nymph
latent scaffold
#

Most of the images won't break things on Linux or Android sometimes

#

apparently thanks to... "OOM Killer"

indigo ferry
#

i feel sick

rich rover
#

I swear, Hemlock has darkness in his heart, waiting to unleash hell on any of us at his request

dark verge
sterile sapphire
#

no bees = no fruit

rich rover
#

what would happen if we had no fruit?

#

I mean, by 2050, cocoa plants will go extinct

#

But i'm sure, we'll find out a way to create a replacement

latent scaffold
#

everyone would be fat

#

and so many animals would be dead

#

so maybe not everyone is fat

rich rover
#

I have seen the effects of disappearance of animals

#

just one can change everything

#

We'd live by 2050 of course

#

but I doubt there'll be any flying space ships or anything

#

but we may have life on Mars

#

like a team of researchers spending a year or two in Mars

last mantle
#

We will have life on mars

rich rover
#

what do you think of when I say aliens?

latent scaffold
#

where I live

plucky ridge
#

Have for quite a while

vapid nymph
#

right u use discord at work

plucky ridge
#

Too busy to actually slack off

sterile sapphire
wraith hound
#

I think these two

sterile sapphire
#

Oh

plucky ridge
#

Yep, those are the ones

sterile sapphire
#

So like previews

plucky ridge
#

I have them- yep

sterile sapphire
#

ok I see

plucky ridge
#

And since Discord doesn't try to render them, it doesn't hit me

plucky ridge
wraith hound
#

Temporarily, yeah

plucky ridge
#

Fair enough. I was curious what it was all about

wraith hound
#

It's my portfolio that I'm working on, but I haven't deployed it yet.

plucky ridge
#

Fair enough

latent scaffold
#

Man, I needa start getting a portfolio

vapid nymph
plucky ridge
#

Yep. Just not images in them

vapid nymph
royal lakeBOT
vapid nymph
#

send a screenshot of that msg if you would pleasE?

lilac badge
#

That fixes people from being able to crash you client with a GIF correct?

plucky ridge
lilac badge
#

Got it, might turn it on because when it does happen it's a pain

vapid nymph
wraith hound
vapid nymph
#

sorRy!

wraith hound
wraith hound
median domeBOT
#

rAnDomCase Is BetTEr ThaN THaT

plucky ridge
#

.spookily

vapid nymph
#

@plucky ridge if you wouldn't mind sending your image settings?

latent scaffold
#

Gotta love being on Linux, can't crash because of videos or gifs or pictures

plucky ridge
#

God damn it

vapid nymph
#

.8bitify

wraith hound
#

.spookify

median domeBOT
#
DawnOfMidnight
Is this you or am I just really paranoid?
wraith hound
#

Dang

#

That's cool

plucky ridge
vapid nymph
#

ah

#

yeah

#

can you

#

if you wouldn't mind sending your image settings?

plucky ridge
#

I think the icon in the other one was a favicon

vapid nymph
plucky ridge
#

Those are treated differently

#

Ah right

wraith hound
#

Now my pfp is kinda creepy

vapid nymph
wraith hound
#

I think he knows