#ot1-perplexing-regexing

1 messages · Page 263 of 1

carmine cliff
#

depends on what you do

#

I don't need the filesystem on them anyway

#

as I will migrate them to btrfs

stark prawn
#

Deleting files is near instant, it just deletes the entrythat says where the data is.

#

Writing zeros to all the data is very slow

carmine cliff
#

I know

vestal briar
#

rm -rf

#

👏

rough sapphire
#

I got catfished:<

carmine cliff
#

?

rough sapphire
#

someone told me they'd subscribe to my youtube if I solved their shell problem.. and they didn't:v

#

some people...

carmine cliff
#

sounds like you are too desperate

rough sapphire
#

hmmm more like don't want to put much work in to a youtube channel..

#

ironic now

carmine cliff
#

yes

#

I mean there are still ways you can get watched even if you put low effort into your videos

#

there are formats for that

rough sapphire
#

formats?

carmine cliff
#

Yes. Some video types just copy from the work of others. Like reading posts from reddit.

rough sapphire
#

lol

#

hmm maybe I should do tutorials instead.. like for gcp

vestal briar
#

Top 10 list

gusty tulip
rough sapphire
#
(lambda x, f: list((y[1] for y in f(x))))(lst, lambda x: (sorted(y) for y in x))
steel fox
#

@vapid bluff I don’t NEED 12tb but it’s there. And it’s full

queen grotto
#

is it possible to document.getElementById("store100") and get the second DIV on the same line?

vapid bluff
#

@steel fox how much of it can you off load to external drives?

steel fox
#

all of it

#

except like 2Tb

#

but i mean buying a nas vs another drive is kinda w/e

vapid bluff
#

buying a whole new motherboard just because of this seems excessive is all

steel fox
#

yeah

#

but mine is currently p barebones so getting 2 extra ram slots is ok too

vapid bluff
#

o nice

#

was it ddr4 or ddr3

steel fox
#

not that i think id want another 2 16g sticks

#

I have 2x 16g ddr4 rn

vapid bluff
#

cool cool

#

im stuck in dd3 hell lmao

steel fox
#

I have uh

#

I think 2x 4g sticks of ddr4 id you want them kinda cheap

vapid bluff
#

oh thanks dude, ill keep that in mind

#

dont think ill be upgrading any time soon though

#

maybe in like 2-3 years if ram prices really die down over all

steel fox
#

I went from 8gigs-32gigs and it was a yuge improvement

vapid bluff
#

i'd have to buy a new cpu as well. so it's gonna be a combined mb+cpu+ram cost when the time comes

sand goblet
#

I have 32 GiB as well

#

Definitely helps

vapid bluff
#

nice, yeah, am on 32g as well

#

300 chrome tabs at a time woo 😄

sand goblet
#

I mostly like it because it means I don't need swap

#

I don't even have a swapfile

#

But on Windows you are kinda stuck with a pagefile unless you know what you're doing

vapid bluff
#

it's a bit annoying that you cant move hiberfil

covert atlas
#

dont think ffmpeg will like a 3 hour vid to edit

vapid bluff
#

was working on some test ui and accidentally made art

#

watch out picasso

sinful copper
sand goblet
gentle moss
#

hahaha

#

good morning

sand goblet
#

Morning :P

gentle moss
#

sup

vestal briar
#

sip

sullen thorn
#

Interesting channels we have today

#

Very suggestive

lone otter
#

lol

lilac glade
#

@sand goblet I don't have the attention to learn HTML/CSS.

sand goblet
#

Not with that attitude!

#

But honestly they're like things you've worked with before

lilac glade
#

and the 5 different attempts

sand goblet
#

HTML is best learned through experience

lilac glade
#

Experience in webdev isn't something I'll get from my job, nor do I think I'd be able to get it from hobbying.

#

Not like Python, anyways, where I could pick it up through the help I give out.

sand goblet
#

Realistically HTML is itself not very complicated

#

But you need to do it without CSS first

plucky ridge
#

Okay in the context of web stuff, what exactly is bulma? Just a style template essentially?

sand goblet
#

Bulma is a CSS framework yeah

plucky ridge
#

Gotcha

sand goblet
#

You write the html and it styles it

rain spindle
#

How do CSS frameworks .... work?

#

Like, every web design is sooo different

#

How can you generalise it at all?

sand goblet
#

By providing a bunch of classes that work well together

#

Bulma can also be customised using sass/scss

plucky ridge
#

I looooooove sass

#

It's so clean

upper sierra
#

i don't know what's funnier

#

reading "I looooooove sass" in context or out of context

lone otter
#

lol

vestal briar
#

:o dudes

#

Nice

teal sky
#

this is late, but dont ever get rid of Windows' pagefile

#

its not a matter of knowing what you're doing. More a matter of if you know what you're doing, you won't do it

#

Even with absurd amounts of RAM, getting rid of the pagefile can result in nasty and unexpected behavior.

sand goblet
#

Nah, it can result in performance gains with the right environment

rough sapphire
#

I want to create a NN that would be able to read text from images. Is there anyone who's familiar with such things and is willing to spend their time teaching me how to do this?

#

I did a bit of research and it seems like a starter task when working with NN

#

soooo ocr..?

#

It's not accurate enough and NNs are more interesting

#

I can teach you..

#

if you can help me with this thing I'm doing right now.. it's related to lists..

#

else I can teach you later when I'm free anyway.. but i'm currently occupied with what I'm trying to do

#

I used Tesseract and it was like 90% correct. Maybe Google or ABBYY will yield better results, haven't tried them yet

#

What thing?

#

I have a list of list of lists..

#

token_verticals = [vertical_spec(item) for item in tok_list]

#

vertical_spec(item) basicaly returns a list of lists

#

I want to change it to a list of lists.. based on whether the inner lists contain the word auto..

#

but the word auto might occur as auto/something/something..

#

That's some heavily nested crap

#

yeah.. v.v

#

maybe I can check it as im calling the function

#

whether the list I get contains auto

#

not sure how

#

Show the example of data

#

the vertical_spec function returns the list: ['auto/automobiles/vehicles', 'organization/company', 'jewellery/jewels', 'artifact/musem/item']

#

I just want to have a bool value of whether the list contains auto or not

#

hmm I think I got it

#

rubberduck

#

does it again

#
auto_lists = [list if 'auto' in ''.join(list) for list in lists]```
#

I keep forgetting whether conditions should go before for a in b part or after that

#

can I add or conditions to the if

#

like automobile or vehicle

#

should probably use if any() then to keep it readable

#

any(list) ?

#

what if I had /Autos

#

the code above doesnt work

#
auto_lists = [list if any('auto' in ''.join(list).lower(), 'vehicle' in ''.join(list).lower()) for list in lists]```
#

why do you do join here

#

To check if its elements contain auto

#

Otherwise it will only match if an element is exactly auto

sand goblet
#

This is really not something you should be trying to do in one line

rough sapphire
#

im on help4..

#

Wait, you can't move them outside easily

#

I mean 5

#

Jan Koum, the founder of WhatsApp, a messaging app acquired by Facebook in 2014, quit the company in April. He reportedly did not like how Facebook wanted to handle users' private data. @rough sapphire

#

ok... why are you tagging me in this.. what did I do:v

#

Don't know why it did that

rough sapphire
#

@rough sapphire are you here still.. wanna work on that ocr now

#

Only if not actively

#

Since I'm at work

#

ok.. I'll tell you how to get started.. and you can get back if you have questions

#

i'll be here.. most of the time

#

being a bot and all..

#

the ocr, is it for characters in english?

#

It returned 95% of names accurately + some spoiled pieces

#

If I got it right, I need to chop each name into characters and feed those to the NN, so the first problem is finding characters

#

do you have handlabelled data

#

No, but I can spend some time labeling the characters

#

that would help.. and you dont have to use tesseract.. make your own nn

#

That's what I was going to do, but idk how

#

I actually started coding about half a year ago

#

do you want to use tensorflow or pytorch

#

What's the difference between those?

#

well tensorflow is a pain in the ass to work with.. or it was before tf2.0.. supposedly

#

but i haven't learned tf2.0 yet

#

tf is from Google.. pytorch is very common.. it's up to people's preferences.. performance wise Idk..

#

I'll try pytorch then

#

alrighty.. so we now have handlabelled data, your NN framework..

#

next to initialize your NN with some base parameters so you can train and validate

#

About data, all I did is crop the screenshots so they look like this. From what I've read, I need either single words/lines or characters. How do I do that?

#

well you need to hand label them

#

your training set is your image.. which in this case, each line of your screenshot.. and a corresponding label (handwritten text)

#

So I'll need to cut this into lines too

#

Okay

#

That shouldn't be hard since they have the same width

#

What about those emblems and numbers on the right? I don't need them, but removing them from the image isn't that easy

#

I just ignored everything with length < 5 to drop those

#

right.. then you initialize a model with some base parameters.. pick a loss function and an optimization function.. run it for a certain number of epochs.. till you get some % of accuracy in your validation

#

so since this is user names.. it's better if you cut it into characters.. and label those..

#

but either way is fine..

#

Characters have different width and idk how to identify them

#

it's ok.. no worries..

#

if your accuracy is low on some characters later on.. you can always label extra data and train again

#

Okay, so the hardest part for now is installing pytorch on my work machine

#

do you have a gpu.. you could always run it online

#

oh wait.. they probably kill your instance if it uses too much resources lol

#

It probably doesn't lmao. I'll have to do it at home

#

I can't even check, no perms for that

#

But I can install stuff

#

you;ll probably need to run it on gpu.. training time is considerably less

#

so run a temporary instance on cloud then delete it after you get the model as output

rough sapphire
#

Or I could train it at home where I got a normal PC, yeah

#

depending on how much data you want to train on.. that might take hours

#

The clan has only 300 members, it's 16 screenshots 🤷

#

So I will probably need to ask other clans too lmao

#

you dont need a lot.. just enough to cover variations

#

Guess I'll feed the whole roster to it anyway 🤷

vestal briar
#

Pretty sad to think that the man that made C is dead

#

Dennis MacAlistair Ritchie (September 9, 1941 – c. October 12, 2011) was an American computer scientist. He created the C programming language and, with long-time colleague Ken Thompson, the Unix operating system. Ritchie and Thompson were awarded the Turing Award from the ...

#

He also co-founded UNIX

#

Imagine walking into a job as this dude

rough sapphire
#

lol

vestal briar
#

"Why should we pick you for systems programming"

#

"I made everything you use"

tired osprey
#

That is just exaggeration, that you created a lang does not mean that you know how to apply it for a certain use case

stark prawn
#

The man who invented the Hammer must be a legendary carpenter.

rough sapphire
#

prost 🍻

vestal briar
#

But if the man that invented the hammer also constructed it perfectly

#

🤔

#

And constructed the house that the hammer is used in

rough sapphire
#

Hey! do you know some chat/community apps like Discord but for learning, not gaming?
#glitter #spectrum.chat, others?
cc @tame terrace

wet steppe
#

Freenode IRC

#

check out the language channels there

vestal briar
#

Wow bandersnatch is good

#

I done all of the gone mad don't join team branch?

sand goblet
#

How about it, scOwez

vestal briar
#

🤔

#

Xubuntu allows alt+scroll to zoom in entire screen

#

Damn

proper dune
#

@rough sapphire Lots of learning communities on Discord anyway. Communities for maths, physics, engineering, etc

#

and obviously programming ones

sand goblet
rough sapphire
#

hey guys. With the following: https://imgur.com/a/rAgEHZG, where would be a good place to add options to delete or rename the workspaces?

tame pier
#

Right-click on the workspace

#

Have a hotkey for rename

#

Delete key to delete

rough sapphire
#

hmm

#

good idea!

#

anyone have any screen capture program recommendations? i'm currently using Lightshot and it's nice but i wanna be able to record gifs, and ive heard of better ones, just cant recall any names atm

#

linux?

#

win

#

oh

#

eww

tame pier
#

Greenshot maybe?

#

ksnip is pretty cool but that's for Linux 😉

quiet trellis
vapid bluff
#

sharex is another option

tame pier
#

Oh yeah ShareX is pretty good on Windows

vapid bluff
#

the screen recording is a bit finicky though in my experience. i never managed to get it to record audio properly, if that's something you need.

rough sapphire
#

ah ShareX, that was the one i had forgotten the name of

rough sapphire
#

any dutch speakers online

#

would you call a car.. a bus..

oak tangle
#

No

#

We call a car "auto" mostly

#

Short for automobiel

#

But no one uses that

stark prawn
#

We use the word bus to describe a bus

oak tangle
#

Yeah

rough sapphire
#

oki:)

#

working with dutch today.. feels similar to swedish..

stark prawn
#

All western European languages are pretty similar.

oak tangle
#

Jag taler inte Svenska

rough sapphire
#

isnt this Swedish :v

tame terrace
#

there's isn't a lot of mutual intelligability between dutch and swedish, but they do have a lot of similar words. as a scandinavian in the netherlands, I can guess what a lot of stuff means, but I can never be reasonably certain.

#

they're both germanic languages, though

#

so they're related.

stark prawn
rain spindle
#

Wow

worn kite
#

educational memeing okhandbutflipped

sand goblet
#

man, I'd like to see someone with arachnophobia slap you around a bit for that

elfin mist
#

Best part about the gif is that it doesn't loop well

sand goblet
#

This is like the 50th time I've seen it

#

Every time the person thinks they're being clever

#

It's just annoying :P

halcyon siren
#

same, its been around for years

#

like meme dog

#

but there is a better version where the gif lasts longer but I don't think the spider looks quite as real in that one

shell blade
#

What is there spiders on my screen

#

Gross

vestal briar
#

AHHHH

#

SPOODER

rough sapphire
#

@rough sapphire you successfully made my heart rate spike 10% for 1.5 sec

vestal briar
#

Only 10%

#

Pfft

#

Amatuar. To be a REAL ACCCCKTOR, you have to at least die..

vestal briar
#

Wow what was I doing at 4:40 ^

shadow lily
#

I have a Wifi issue, and as you're the best community I know for help I'll post it here

#

Tech guy came because it was 25Mbps guaranteed, I got usually 10-15 but one day i had 2Mbps all day and it was game day

#

Initially told me it was my Macbook. I got out my laptop from work (Dell), my Android and my iPhone. 4 different devices saying the same

#

then he blamed the router

#

He connected on Ethernet, and got really 25Mbps

#

Told me: you connect on Ethernet, or change the router. I'm on MBP 2016, there is no more Ethernet port.

stark prawn
#

Is this your own router or the isp's router?

shadow lily
#

and with this shitty ISP linked to my building, they are not responsible for routers...

sand goblet
#

Ethernet is the way to go.

shadow lily
#

Brazil things... own router

stark prawn
#

You can get usb to ethernet adapters

sand goblet
#

The problem with wifi is that it can get congested if there's a lot of wifi devices around

#

on game day, probably everyone was watching

shadow lily
#

I'm at top floor, disconnected all devices, it doesn't seem to be a congestion problem

stark prawn
#

Do you have any walls between you and the router?

shadow lily
#

a 5cm one, but being 20cm to the router doesn't solve the problem either

#

It seems like the antenna can't bare more than 15Mbps

#

idk if this is a setting issue or an hardware issue

sand goblet
#

Cheaper routers tend to be.. bad.

#

you often do get what you pay for

shadow lily
#

"Copyright © 2008-2011 D-Link Systems, Inc." I guess this says a lot

#

but come on, even in 2011 we had more than 15Mbps

#

Forced the 802.11n, didn't solved the problem. Tried to change to 20/40Mhz too

shadow lily
#

Updated the firmware to the most recent one (2012), got 1 more Mbps lol

tired osprey
#

That people had the technique to transmit more data at year X simply doesn't mean that they implemented in that year just like with WPA3 at the moment for example

shadow lily
#

ty. I guess I'll have to change my router anyway

spiral flame
#

anybody got a favorite resource for learning bootstrap front-end?

stark prawn
vestal briar
#

Problem with rust is that it looks a bit um.. alien

#
($($n:ident),+ => move |$($p:tt),+| $body:expr) => (
        {
            $( let $n = $n.clone(); )+
            move |$(clone!(@param $p),)+| $body
        }
);```
amber briar
#

and this is why I chose python as my first language

#

I don't want to deal with that monstrous clusterfuck of random jibberish from the get-go

stark prawn
#

(You(would(love(LISP()))))

vestal briar
#

I am doing go from now on

#

I can actually read it

#

I know Rust is better but I just don't want to be reading that all day

#

Go's job is basically a speedy and stable replacement for python

wet steppe
#

why do you say that Rust is better ?

#

do you mean faster ?

vestal briar
#

If you had 2

#

You would pick rust

#

And you would pick c++ over that

#

And C over that

sand goblet
#

it's really unclear what Go targets

vestal briar
#

and asm over that

#

(yeah, so speed)

sand goblet
#

I mean Google did replace a lot of their Python with it

#

but it's really a language that treats the developer as incompetent

vestal briar
#

I will just be using it as a compiled python

#

I think that is kindof the goal of it

sand goblet
#

it has a lot of problems

#

the community is.. eh

vestal briar
#

Oh well

sand goblet
#

some of the mids behind it are just, like, what even

vestal briar
#

It is hip and it is readable

wet steppe
#

Error handling

sand goblet
#

it's far from hip

#

rust is hip

vestal briar
#

Is it?

sand goblet
#

yeah the error handling is pretty terrible

vestal briar
#

I thought go was the hip one and rust was a smaller but still pretty hip one

wet steppe
#

Go is pretty big now
probably bigger than "hip"

vestal briar
#

Yeah

wet steppe
#

for better or for worse there's a lot of random web stuff in Go now

sand goblet
vestal briar
#

I am just going with go for readability reasons and the fact that I have a long time ahead of me to learn other stuff

sand goblet
#

there are some really striking issues

stark prawn
#

It's no erlang for sure

sand goblet
#

erlang is one of those languages I never see anyone complain about

#

which is amusing

vestal briar
#

The logo looks like it should be asm from the 60's

#

There, done

stark prawn
#

I've never seen any Erlang.

vestal briar
#

Website doesn't have anything about erlang on

#

Like syntax

wet steppe
#

you may have seen some Elixir

#

which is on the Erlang VM

vestal briar
#

Yeah, in clash of clans

#

Well I have 2 books on R

#

And a book on ECMASCRIPT 6

#

No erlang

sand goblet
#

aha

#

here we go

#

this is what I was looking for

#

the very fisrt thing it brings up is how hostile Rob Pike is towards the idea of syntax highlighting

wet steppe
#

Rob Pike is still at the head of Go ?

sand goblet
#

I think this is symptomatic of the brains behind Go's core decisions at large

vestal briar
#

Haha what go doesnt have immuable variables?

#

Well go needs some maturing to do

sand goblet
#

go is not a new language

#

:P

vestal briar
#

¯_(ツ)_/¯

sand goblet
#

it's like 10 years old now

vestal briar
#

I will still use it

sand goblet
#
Gofmt was written to reduce the number of pointless discussions about code formatting. It succeeded admirably. I'm sad to say it had no effect whatsoever on the number of pointless discussions about syntax highlighting, or as I prefer to call it, spitzensparken blinkelichtzen.
#
Syntax highlighting is juvenile. When I was a child, I was taught arithmetic using colored rods (http://en.wikipedia.org/wiki/Cuisenaire_rods). I grew up and today I use monochromatic numerals.
wet steppe
#

10 years old wow

#

it still "feels" new

vestal briar
#

I am going to use it to basically make speedy, compiled apps that could be made in python

sand goblet
#

Just make them with Python

#

and compile them with nuitka

vestal briar
#

Tbh I just want to contribute to some open source and learn something more suited to cli development

sand goblet
#
#

it performs about 312% of the speed of regular cpython according to pystone

vestal briar
#

Oh well

#

Or I could do js

sand goblet
#

JS is excessively fast

#

I don't think you'll enjoy it compared to python though

#

the weak typing can cause all kinds of issues, and the scoping is.. weird at best

vestal briar
#

Either go or js

sand goblet
#
function MyObject() {
    var self = this;

    // ...
}
#

this is still relatively common

vestal briar
#

I know a little bit of js

#

Haha what

sand goblet
#

there's actually a good reason for doing that

vestal briar
#

¯_(ツ)_/¯

stark prawn
#

Prototypical inheritance is a pain.

sand goblet
#

it's a bit worse than that

#

this can mean different things depending on where you call a function from and how you call it

stark prawn
#

Luckily they have syntactic suger for class like inheritance with the class keyword

sand goblet
#

Yeah, although that's still relatively new

stark prawn
#

There's also a massive community and a huge amount of packages

vestal briar
#

Node and Go are the same age

sand goblet
#

too huge, I would say

vestal briar
#

That's a downside

sand goblet
#

ah, but JS is much older than node

vestal briar
#

Like a billion dependancies

#

Yup

sand goblet
#

Go's dependency management is also pretty bad

vestal briar
#

Hmm, js does seem intreguing

#

Seeing as I am doing webdev

sand goblet
vestal briar
#

So it could be useful in both js and node.js

sand goblet
#

yeah, but you now need to decide what standard you're coding to

#

do you adhere to the latest standard? then either you're locking some browsers out, or you have to transpile your JS to older standards for them

vestal briar
#

Yup

sand goblet
#

on the other hand you could stick with an older standard, but then you're missing out on nice stuff like ES6 classes and the new async/await syntax

vestal briar
#

But what alternitive do I have

#

If I am doing web

stark prawn
#

Just use babel

vestal briar
#

Actually, just kotlin

sand goblet
#

I actually think babel is a waste of time.

#

It has some uses, but when you think about it

#

babel targets some really, really old browsers

#

most of which you'll never have to care about

vestal briar
#

Covers all bases

#

If you had 10 million users

stark prawn
#

Almost all recent features are avaiable on the modern evergreen browsers.

#

Safari mobile being the exception.

sand goblet
#

then almost none of them will be running windows 95, scowez

vestal briar
#

Huh

stark prawn
#

iPhones will be your biggest pain

sand goblet
#

yes, safari mobile is so fucking disappointing

#

safari mobile is why you can't use vh units

#

because that unit is not a constant

vestal briar
#

So I shall learn Go

sand goblet
#

You should learn Kotlin

vestal briar
#

Then probably do JS

sand goblet
#

if you need a language to learn, kotlin is a great option

#

it does native

#

it does java

#

it does javascript

stark prawn
#

Do something functional.

vestal briar
#

Hmm

#

Kotlin does look intresting now

sand goblet
#

Kotlin looks excellent

#

if I had the time and an excuse, I'd learn it

vestal briar
#

Well isn't that wonderful

sand goblet
#

oh, and kotlin is a jetbrains language

vestal briar
#

The dream syntax I made is just slightly modified kotlin

sand goblet
#

which means that IDEA will have full support for it out of the box

vestal briar
#

What about vsc?

sand goblet
#

I'm sure you'll find something.

vestal briar
#

Let's see

sand goblet
#

No idea why you'd use that though

#

you should just use IDEA

#

it's literally designed for kotlin

vestal briar
#

Isn't it designed for java?

sand goblet
#

it's designed for both

#

kotlin was originally java-based however

vestal briar
#

How bulky is it?

sand goblet
#

relatively

vestal briar
#

:/

#

Downloadinh

#

I shall do kotlin then

sand goblet
#

Sounds like a plan, I'm sure you'll do fine

vestal briar
#

Oh, what is the ui support like?

#

I assume it's good even if there are no good ones for kotlin directly

sand goblet
#

I think there are some toolkits

frozen current
rough sapphire
sand goblet
#

That is beautiful

#

ot1-wolves-inside-you

glass gorge
#

I use Arch ...(based Majaro)

tired osprey
#

I use Fedora

stark prawn
#

wolves inside you seems a bit inappropiate given that it's discord.

sand goblet
#

Hahaha

#

Well played

fervent dock
rough sapphire
shut lagoon
#

wolves inside you means a whole other thing when you're lewd

stark prawn
#

zfs saves the mountpoints inside the filesystem. cool

#

Installed different os and everything just mounted automatically to the right place

stark prawn
oak tangle
#

That looks like a furnace

stark prawn
#

Yeah, the place where the dwarfes forge their legendary weapons.

sand goblet
#

Huh, whose coverage is that?

stark prawn
#

It's a drone shot that was shared on the n ews here

sand goblet
#

got it

gusty tulip
#

Poor old church... man how did that happen

sand goblet
#

They think it was an accident during rennovations

gusty tulip
#

I mean as far as I read the cathedral is savable... But this looks bad god damn

sand goblet
gusty tulip
#

I just've seen some footage and the smoke clouds were big

bleak lintel
#

nix that's nsfw

tired osprey
#

WELL THEN DONT SEND IT TO ME

bleak lintel
#

LMFAO

tired osprey
#

that does not fucking explain the why

bleak lintel
#

curse you perry the platypus

tired osprey
#

no u

#

also why are you watching disney channel joseph

bleak lintel
#

whatt

#

where

rough sapphire
#

Perryyyy

thorny arch
#

sleeping, do not disturb: || forsenPosture forsenPosture1 forsenPosture2 ||

stark prawn
#

Does anyone know of a tool to install old version of python?

#

I need to get 3.6 for a project I tried to install

oak tangle
#

You don't want to download it from the website?

#

Which OS are you on? You could look into PyEnv

stark prawn
#

I was just thinking there might be a way to manage that

#

I'm on linux

#

I'll check that one out

rough sapphire
#

guys.. you have to see this new song from PewDiePie.. its so cool

oak tangle
#

Wasn't PewDiePie some kind of game streamer?

#

Didn't know he made songs as well

stark prawn
#

Has was a screaming minecraft youtuber way back.

#

He changed a lot

rough sapphire
#

oh there's a long history to this song

#

he was a game streamer.. still is I think..

#

was featured on southpark.. that's how I knew about him..

#

he struggled with alcoholism.. you know how that's a hard thing in scandinavia and everything..

#

but he overcame that..

#

The song is about him vs T-series (a bollywood music label).. and how there was a competition between him being the top subscribed youtuber and the company..

#

the company has mafia roots and shady dealings, it had its start from selling pirated music and movies..

#

they have click farms too.. that's how they now have more subscribers than pewdiepie..

#

he put out a song called Congratulations.. to troll TSeries.. and it's now banned in India.. because Tseries is cushy with the indian government

tame terrace
#

please don't link this song.

rough sapphire
#

I didn't.. lol

tame terrace
#

yeah. don't.

rough sapphire
#

whyyy:o

#

you don't like pewdiepie?

#

I think it's nice that he's finally said something about major issues in my country.. hoping maybe some day if things change I can go back home v.v

#

um

#

just heard these Finnish band yesterday.. they're so cool

#

who doesnt like pewdiepie?

#

Ence is a CS go team.. people used to be so mean to them.. but they beat all odds to become champions.. turning the troll chant 'EZ4Ence' into a cheer..

#

warning: very catchy song

tame terrace
#

not sure what I was expecting clicking a song for a cs go team

rough sapphire
#

lemonpeek lemon is hard to impress..

#

😛

#

playing csgo after a long day always takes the edge off.. have yet to find something better

sand goblet
#

lemon is the ultimate music critic, given that he is a musician :P

tame terrace
#

naw, it's not because I'm a musician, I'd be a music snob even if I couldn't play an instrument.

#

it's just because I'm a big nerd with a list of favorite albums and genres that's longer than a bad year.

sand goblet
#

Haha, well, that's fair too

rough sapphire
#

wow.. cool.. what do you play

#

I met a musician today.. a drummer.. something about musicians..

#

seems to be the theme of the day for me

oak tangle
#

What doesn't lemon play?

tame terrace
#

I mostly sing. but I play bass and guitar and I'm okay at anything with keys

#

I have a banjo, and a bunch of weird instruments that I've used but I wouldnt' say I play them.

#

check out Beardfist on spotify if you wanna hear some of the music I've written.

lone otter
#

dinoman, such tiny hands

tame terrace
sand goblet
#

I would say that piano was my favourite instrument

#

But it's literally all I can play

summer rampart
#

was?

sand goblet
#

:P

#

That's not paste tense

summer rampart
#

oh okay

tame terrace
#

it's copy tense

upper sierra
#

What about cut tense?

#

The three tenses. Cut, Copy and Paste

summer rampart
#

undo tense

upper sierra
#

Ah yes

#

The undo and redo tense are part of the indicative import mood and cut copy and paste are subj||unctive||ect mood

vestal briar
#

Ok

shell blade
#

Whattt they used Python for the black hole image sooo cool

#

They used scipi matplotlib numpy pandas

wet steppe
#

nice

vestal briar
#

Cool

#

Also why is python used so much in maths?

#

Because numpy/pandas makes algos fast whilst being able to write fast?

rough sapphire
#

wait what

#

they used python for the black whole image

#

thats announcement worthy

bleak lintel
fervent dock
#

Python's popular for non-CS scientific fields because it's easy to pick up, write and read for people from other backgrounds

#

The scientific / math packages are essentially APIs to internal functionality written in lower level languages

tired osprey
#

@rough sapphire hows that announcement worthy, its not something the vast majority of people (and I am just going to assume nobody on this server) is going to use or want to understand

wet steppe
#

its got a GNU license

#

someone fork it 😄

tired osprey
#

why

rough sapphire
#

sorry... guess I just thought it was more cool that other people

#

im very boring so I guess thats why

wet steppe
#

it is cool

tired osprey
#

yeah its cool but not really announcement worthy

#

anyways, why should we fork it because it has a GNU license whats so funny about that?

tame terrace
#

nix with the hard hits tonight

#

don't fuck with nix, guys

rough sapphire
#

because forks are better than spoons

tired osprey
#

definitely

rough sapphire
#

ill show myself out

tired osprey
#

on both of that

wet steppe
#

Nix will destroy us

tired osprey
#

has already

#

you just didnt notice yet

wet steppe
#

the timeline hasn't caught up yet

tame terrace
#

nix is the single most powerful dinner boy in the entire community, guys.

tired osprey
#

exactly

tame terrace
#

his bib is made of steel

#

his fork is made from TOWEL

tired osprey
#

I am not sure what a dinner boy or a bib is so I am not going to comment on that

tame terrace
#

you don't fuck with that.

#

you just hand him a meat loaf and continue on your way.

tired osprey
#

hey a towel fork would be pretty damn cool

wet steppe
#

I have never had meat loaf 😦

tame terrace
#

and you never will

#

because in the future if you get your hands on one

tired osprey
#

i take it

tame terrace
#

you will proceed straight to germany

#

and hand it to nix

tired osprey
#

yeah

tame terrace
#

put it in his mailbox

tired osprey
#

meat loaf tax

#

yeah no dont do that

tame terrace
#

there may be two or three meat loaves there already

#

but that's okay

wet steppe
rough sapphire
#

😋

tame terrace
#

he's a serious dinner boy @wet steppe don't question his methods.

wet steppe
#

dinner boys are serious yes

tame terrace
#

a meat loaf is the most concentrated form of loaf.

#

and also of meat.

#

to create one, simply put an assortment of meat into a high pressure chamber.

tired osprey
#

cítation neeeded

tame terrace
#

I just gave you a citation

#

now wikipedia can refer to this discord message

#

here's the citation

#

you're welcome

tired osprey
#

hmmmmmmmmm

#

should I try to add that to the wikipedia meat loaf article

rough sapphire
#

this article has many errors

tired osprey
#

by the way lemon did you see josephs erotic literature masterpiece yet

#

@tame terrace

worn kite
#
tame terrace
#

@tired osprey no, joseph and I do not speak.

tired osprey
#

Ill have to censor it slightly for here

tame terrace
#

if I have something to say to him, I ping @worn kite and then @worn kite sends an email to @dusky orchid who sends a letter to @bleak lintel for me.

#

you censored the part about the children of 🇧 anos?

#

wtf.

tired osprey
#

why do you hate joseph so much

bleak lintel
#

curse you perry . the platypus

tame terrace
#

hey joseph

#

what's up my dude

tired osprey
#

fuck off i am not perry the platypus

bleak lintel
#

nix i sung you the entire of wonderwalll last night

#

???

#

and this is how you repay me???

#

rude.

tame terrace
#

nix is such a dinner boy that this is the bib he uses when he eats in front of the mirror:

wet steppe
#

what is happening

tired osprey
#

meming

#

with joseph lemon and me

#

@bleak lintel you are perry the platypus

bleak lintel
#

spitzensparken
blinkelichtzen.

#

nix you remind me of doofenzhmirtz

tame terrace
#

yeah I can see that

#

he looks a bit like if doofenzhmirtz and matt damon had a baby

#

a manbaby

#

a dinner boy

wet steppe
#

that's an epic bib

tame terrace
#

yes.

#

and nothing smaller will do for @tired osprey

tired osprey
#

that is rude

#

i think

tame terrace
#

when @tired osprey opens his meatloaf hole it's mouths all the way down to the god damn floor

#

when Nix wears a bib hes like 80% mouths and 35% bib.

#

just saying.

tired osprey
#

that sounds interesting

tame terrace
#

don't even sweat it.

tired osprey
#

where am i getting my extra 15 percent from

tame terrace
#

probably from all those meatloafs

#

or is it meatloaves?

#

I'm gonna go with yes.

tired osprey
#

joseph is reworking my stephen hawking image

vestal briar
#

Ok

#

Nix, you pfp is cool and looks like a graduation photo from a german/french student graduating from mit

#

Mine is just a square

bleak lintel
#

mine is awesome

vestal briar
#

Yours is a Rusty Gopher

#

And lemons look like he just got out of a barbers, very nomadic

bleak lintel
vestal briar
#

Ok

bleak lintel
#

if you look really cllosey

#

you wil notice

vestal briar
#

This is a funeral of my feelings sir, please respecfully leave

bleak lintel
#

it's lava

vestal briar
#

Exit is behind you

bleak lintel
#

and if you look closer

#

you will see it's a gopher

vestal briar
#

No it's a dorito tictac

#

With tiny googly eyes

bleak lintel
#

i spent . an hour modelling this

vestal briar
#

I agree

#

Wholeheartedly

#

I remember a little snippet of rick and morty with a security guard being annoyed about someone cutting power to some electrics

#

Really, really familiar voice but I can't find it

bleak lintel
#

fuck i know what you mean

#

oh that pisses me off

vestal briar
#

It was like a parking area security room and it was a black dude, avg build

#

Yup

#

It isnt the mailman on the scamming episode in season one fyi

tired osprey
#

@vestal briar thats not what I meant, joseph photoshopped an image of my face on stephen hawking a year ago or so but he lost it and so he made something I am just not going to share here now

vestal briar
#

I know

#

But it's vaugely related and I am sleep deprived on the tailend of a sugarhigh now

#

I can see the pixels in my screen

#

Gray makes the edges go white

tired osprey
#

unliekly

vestal briar
#

1336x768

#

14"

#

I can see the backdoor and chroma affect at the same time

tired osprey
#

👍

vestal briar
#

I am currently stearing into my screen and it hurtd

#

That's better

#

Had it on 70% brightness in pitch black

tired osprey
#

So I actually wanted to learn for maths tomorrow / today checks clock yeah no Im not gonna sit down for 4 hours after the amount of sleep im gonna get

vestal briar
#

👍

#

Also what is CJ Stream

#

Last thing in the VOICE catagory

tired osprey
#

ask joseph or somebody

#

sounds like a joseph hting

#

why on earth am I getting commercials for universities I never checked before for subjects I never googled or was interested before

vestal briar
#

Because they are again doing vague stuff to hit a thing

#

Then use that thing to attempt (and fail) to make a convosation

tired osprey
#

yeah no not gonna catch me with psychology

vestal briar
#

Tut

tired osprey
#

if I wanted to study psychology i would have to have an average grade better than 1.2 aka cared about studying psychology 2 years ago

vestal briar
#

Alrighty then

#

Wait are you reverse reverse reverse thinging me :o

tired osprey
#

i dont think so

#

that 1.2 rules is just for germany

#

well

#

bavaria its easier / harder in other states

vestal briar
#

Why did I buy a £200 3d printer if I am not going to use it

#

(╯°□°)╯︵ ┻━┻

tired osprey
#

a question my mom also asked my father

vestal briar
#

Also I was gifted a £60 projector because I am the only one with a clear, white wall and I never use it

#

1st world problems

tired osprey
#

definitely

vestal briar
#

:(

#

But I cannot sell it

tired osprey
#

I dont need it anyway ¯_(ツ)_/¯

vestal briar
#

Things I don't need:

  • Rackmount server (free)
  • Lockpicking set (£15, present)
  • 3d printer (£200)
  • Projector (£60, no sell, present)
  • Xbox one (£120, no sell, present)
  • Half a gaming pc (£200, selling atm)
tired osprey
#

I can get a server for free

vestal briar
#

I brought for £120 using spare money but wanted a replacement because one of the psus died before it was even shipped

#

They just refunded the entire thing for some reason, probably it was selling with tiny profit margins and it costs more to replace

#

So free, slightly unstable server

tired osprey
#

so

#

i have run out of good or non good stuff to do

#

guess im gonna go sleep

vestal briar
#

Night 👋

#

Sugar rush has turned into a crash

tulip palm
#

my sugar rushes are usually sugar crashes at the same time. i remember once in a physics lesson my friend gave me loads of sweets and we were hyper as fuck. then i grabbed my water bottle to get a drink and to my dispair i noticed that it was empty. i cried so hard over it for about 5 minutes, then got hyper again afterwards. :D

vestal briar
#

Ok I think thats more than just sugar

#

I had 10 jaffa cakes, half a sharing bag of star bursts, like 3 crisp packs and 1/3 can of pringles

#

Also a can of irn bru

tulip palm
#

god i can't stand starbursts. my friend is scared of the red ones because a red one caused her to lose a tooth. not because she was chewing it, but because it had been in the fridge and thrown off her face. don't ask me why, i don't know either.

#

though the 10 jaffa cakes sounds absolutely spot on 👌

vestal briar
#

Not so nice and nice :P

#

I am going to sleep now

#

I have really crashed and it's like 20 to 4

tame pier
#

sugar rash

robust fable
#

His hot pockets are done

robust sierra
#

hot pythets

vestal briar
#

Ok thn

#

Well I have done backend for postgresql

#

Now time it figure out how to do postgresql with ubuntu (setting it up with user accounts etc)

#

Will to later/tomorrow

rough sapphire
#

does anyone here speak dutch?

oak tangle
#

Yes, a couple of people here speak Dutch (including me), but this is an English speaking server

rough sapphire
#

:) im aware, i need some help with translations

#

@oak tangle u dont mind me dming u?

oak tangle
#

Uhm, depends on how long it takes

#

I need to get back to work in a couple of minutes

rough sapphire
#

2 mins

oak tangle
#

Sure

rough sapphire
#

:)

shell blade
#

What's going on peeps

#

Oh I see nix was shitting all over people after my black hole post that's nice good way to keep the new people here ffs

oak tangle
#

Did he?

shell blade
#

Yeah appears that way

wet steppe
#

we can't mess with Nix

#

nothing we can do

shell blade
#

I dunno get me on a bad day ill make that school boy cry back to his mommy

#

Anyways as for forking that black hole image repo , I know they made their own frameworks for the Image processing it may be useful in other use cases but it's hard to say sop..

wet steppe
#

I was suprised they used an open source license for it

shell blade
#

Oh yeah academia always will

vestal briar
#

So what did they use apart from python?

shell blade
#

That way people can use their project for other things

wet steppe
#

looks like Python is taking over ground that R once had

shell blade
#

Yes and matlab too since python is free

wet steppe
#

oh yeah those matlab licenses are like 1k each

shell blade
#

Yepp super expensive

wet steppe
#

Javascript has pretty good plotting and stats libs now too

shell blade
#

Their is a really cool talk python to me podcast on that actually

wet steppe
#

I don't have the attention span for podcasts 😦

shell blade
#

That's too bad I love podcasts I listen to them all day

vestal briar
#

I never got into any

#

What is a good websitre

shell blade
#

A good website for?

vestal briar
#

Podcasts

shell blade
#

Ohh yeah what are you looking for?

vestal briar
#

Programming

#

Probably

#

I think there is a gnome-made thingy I seen when browsing gitlab

shell blade
#

Well talk python is good for sure then I like code newbie base.cs command line hero's security weekly and developer tea

vestal briar
#

Nice

#

Oh also I will probably listen to a pentesting one

shell blade
#

Hmm maybe ask known or Scott to see if they know any good ones like that

vestal briar
#

And nice, the gnome podcast app is like 98% Rust

pine vector
#

Python Bytes is good too

vestal briar
#

Just installing it now

#

500kbps-1.8mbps

shell blade
#

Oh yeah ill have to check that out Sommer

#

Anyways guys I gtg take care

vestal briar
#

Cya 👋

#

Ah

#

I accidently gone on a mormon website

#

I was searching websites to get feeds and it is the LDS

#

Ooh this is fancy

rough sapphire
#

sometimes jehovah's witnesses show up at my door..

tulip palm
#

there is one street between my house and a jehovahs witnesses center and 4 churches

#

one street

rough sapphire
#

im not really religious.. but one of the girls is cute.. Im weighing whether to go or not :v

#

like.. not a jehovah's witness.. but they show up and pass flyers asking you to come to meet ups and stuff

#

every sunday.. lol.. people in my apartment building dont even open their doors because they know

rough sapphire
#

@rough sapphire They do that with literally everyone. When I was younger I worked at a carpet-cleaning company that was entirely staffed by JW followers, and they tried to get me to join as well.

#

They are 1-2 notches below a cult, whatever you want to call that particular level lol

#

You aren't allowed to accept blood transfusions if you follow it, can't celebrate any of the major holidays, including your birthday.

#

since that's worshipping yourself (or someone else) as a false idol

#

wut.. my birthday is the greatest good you're ever gonna get

#

just coopted a line from the incredibles..lol..

#

but I knew about the blood transfusion thing.. scary stuff

#

yeah, so if you were in a traumatic accident, you're SOL

#

stupid stuff...

#

sol?

#

poop outta luck

#

ahh lol

#

well I've seen people in cults.. think it all comes down to will power.. some people are easily susceptible to that sorta stuff..

#

makes you wonder, the lengths people go to feel like they belong

#

I don't fully understand it, but I suppose to fill whatever void you have, there is no limits

#

the same goes with politics.. how people dont oppose ideas if 'their group' tells them whats what..

#

yeah..

#

most people just want to be accepted at the end of the day

#

not many people don't want to risk getting ostracized over their opinions or thoughts

#

its safer to just fit in, at the expense of many other things

#

it's because they dont feel comfortable in their own skin.. they need a group to dictate them their identity.. they need to realize that it's ok to be uncomfortable and thats when you grow

#

yep

#

I think we're both on the same page here lol

#

IMO, that's just part of growing up

#

and becoming who you are

pine vector
#

second time i've mentioned it here, but the above is exactly why the Desiderata is one of my favorite texts.

rough sapphire
#

it's a poem?

pine vector
#

yeah

rough sapphire
#

I remember when my grandpa died, a few days before it happened we visited him in the hospital. He knew it was coming, as did we. He wasn't sad at all, he just looked very angry. He spent a lot of his time watching TV and not doing much with this life, and we witnessed him realizing his life was ending and his opportunity to live his life to the fullest was gone.

#

so for my sister and I, it was like yeah.... you just have to go for it, and not care about the beaten path in life. do what you were meant to do.

#

they too have a story that's pretty cool.. I say that every day to people.. lol.. but something like "everyone you meet knows something that you don't"

#

regret is poison..yeah..

#

I'd rather be dead than a 80yr old man full of regret, I saw it with my own eyes

#

with that said, I'm getting some exercise, ttyl

#

Nurture strength of spirit to shield you in sudden misfortune hey pretty powerful stuff there.. for me this is what gym was about..

#

cya later man!

#

yeah same man, it feels good to take care of yourself. I do this jogging/pushup/sit-up routine, and it looks like its about to rain, so I want to beat the storms lol. cya

pine vector
#

yeah, the Desi (as i call it for short) is pretty spot on, especially for how few words it has. speaking of Grandfathers, that's where I learned of it. He had made a plaque with a copy of it (paper-laquered-to-wood, and singed with fire).

#

it hangs in my bathroom, so i see it every morning.

rough sapphire
#

cool.. you know it's a domino effect.. how values like this are things that get passed over and perhaps there's some solace in that..

rough sapphire
#

@rough sapphire depends

#

all religions start as cults except one of them maybe

#

Between Christianity and Islam, one is a cult, for sure, or maybe both

#

because someone is lying

#

Who's to say the Jehova's aren't correct?

#

correct in what sense?

#

But yeah jehova's bring cute girls to get people to join their religion

#

well

#

Islam and Christianity cannot be simultaneously true

#

someone is lying

#

Same for hinduism, buddhism, etc.

#

is it lying if you don't know its a lie?

#

It's still a cult

#
a relatively small group of people having religious beliefs or practices regarded by others as strange or sinister.
#

every religion at one point fit this definition

#

every religion has its extremists..

#

it's not about extremists

#

every religion was a cult

#

doesn't matter if they were extremists or totally peaceful

#

nearly everything can apply as a cult then, since you just need a small handful of "others" to regard it as strange or sinister

#

If I started a religion rn

#

and I was the nicest lad

#

and all my cult followers were super nice

#

we'd still be a cult

#

nah cult has a religious veneration or devotion aspect

#

does the definition rely on someone else to consider it strange?

#

yes

#

like

#

romans thought christians were just crazy jews

#

and they were kinda right

#

from an objective point of view

#

my point is that

#

the Jehova's are from an empirical point of view just as valid as any religion regardless of strange practices

#

because we cannot prove Islam is true, nor that Lutheranism is the correct form of Christianity

#

you are simply guessing

#

I guess its all relative to your own experiences and culture, that measure to what degree something is more strange than something else

#

relative yes..

#

for one, cults won't admit they are one..

dusky orchid
#

Yeah, let's not get into discussions on religion here.

rough sapphire
#

Abrahamic religions that came to Europe regarded European paganism as false and killed people for practicing it

dusky orchid
#

I'm going to have to ask for the subject to be changed

rough sapphire
#

Such as Judaism and Christianity

#

but regardless

#

my point here

#

eevee says we can't talk about religion..

#

is that if we remove your subjective preferences

#

the Jehova's are just as valid for now

dusky orchid
#

!warn 551207643092353026 Don't just continue when I asked not to continue.

royal lakeBOT
#

:incoming_envelope: :ok_hand: warned @rough sapphire (Don't just continue when I asked not to continue.).

rough sapphire
#

I was finishing my sentence

dusky orchid
#

I don't care

rough sapphire
#

I didn't even bring them up

dusky orchid
#

I don't care

rough sapphire
#

🤡 🌎

#

you know they completely changed eevee in the new pokemon series..

#

in the Japanese version, they make it look all timid.. but the American one just makes it look annoying.. very strange

dusky orchid
#

annoying

#

?

rough sapphire
#

yeah.. have you seen the new episodes..

#

let me see which series..it's the one where he travels with Serena..I think

dusky orchid
#

Nope, I haven't watched the Pokemon series since I was a kid.

rough sapphire
#

yeah.. you're not missing much

#

he still hasn't won a league tournament -

#

_-_

dusky orchid
#

well that wouldn't be good for the series, I expect

#

since that's ash's aim, and it would end

#

lol

rough sapphire
#

lol.. well it upsets the fans.. you know.. like we're rooting for him as he goes through the league table.. and he's almost in the finals or semis..

#

and boom

#

beaten by some side character we'll never remember

dusky orchid
#

lol

oak tangle
#

Sounds like an apt description of life

dusky orchid
#

At any rate, I only play the games. So I beat the league every generation 😛

rough sapphire
#

I think that's the reason they keep the series going.. to sell the games and merch..

#

but heroes need a happy ending :v hope they at least let him settle down with a gf

dusky orchid
#

lol

rough sapphire
#

pokemon s1/2 was pretty metal

rough sapphire
#

I didn't notice that many metal types..

#

🥁

heavy jackal
#

What are you talking about? The best Pokemon trainer, James, gets happily married

rough sapphire
#

lol

vestal briar
#

Ok

vestal briar
#

Anyone know how to fix little popping/crackeling coming through the left speaker?

#

I am on ubuntu 18.04 and it is all digital

#

If I turn the digital input off on pc, it stops

heavy jackal
#

Any possibility of electromagnetic interference from something else nearby to the speaker or speaker cable?

vestal briar
#

Nope

runic vine
#

(╯°□°)╯︵ ┻━┻

crisp sierra
#

Is it just me or is this an unusual way of getting an auth token https://vendor.net/json/GetAuthToken?username=username&password=password

#

like I know it's https but what about my browser history and their server logs?

sand goblet
#

If it's a GET then it could be a problem

#

A POST should be okay

crisp sierra
#

it is a get

#

this is for a major U.S. based industrial monitoring vendor

sand goblet
#

I've seen it before

#

Don't do it with your browser I guess

#

XHR doesn't tend to write browser history

crisp sierra
#

I actually did test it with my browser, but in incognito

ashen socket
#

Does anyone know a good website with challenges to train my python? Or maybe another way to exercise.

crisp sierra
#

CheckIO and hackerrank come to mind, as does Project Euler for those more mathematically minded

wet steppe
#

best way is to repeatedly make small projects

#

I think this works a lot better than things like Project Euler

ashen socket
#

I also like making small projects more but I fear my creativity is kinda 0

wet steppe
#

there's a big list of projects somewhere on here

fervent dock
#

You can do advent of code all the way back to 2015, they have some really fun problems

#

They also have a little bit of lore to motivate you

ashen socket
#

Thanks I will look into it

wet steppe
#

you could do the early project euler ones and then quit when it becomes super hard

fervent dock
#

I should look into Project Euler too, I was browsing their website yesterday and it turns out some of the harder problems were only solved by roughly a 100 people

#

So I'm tempted to give it a try and fail horribly

wet steppe
#

its okay if you like number theory

#

but that's all its good for really

#

it's bit too mathsy to be an effective language learning tool

sullen thorn
#

Make a bot, and add features to it - easy way 😃 if u see something u like on another bot, try adding it to yours

#

Maybe even try adding call stuff

wet steppe
#

discord bot is a good way to learn yes

tame terrace
#

oh hi let me just go ahead and insert myself into this conversation.

wet steppe
#

or make a flask or django server

#

okay lemon

tame terrace
#

okay