#ot1-perplexing-regexing

1 messages · Page 430 of 1

plucky ridge
#

Seems like a fair place to pin the blame

bleak rain
#

Speaking of typing speeds

#

anyone wanna race me?

#

I wonder how rusty I am

gentle moss
#

sure, i'll do a quick type racer

#

even got my sofa + laptop disadvantage

unique warren
#

I reached my target

#

70 wpm

cold current
#

I can hit a solid 80

unique warren
#

Without seeing the keyboard?

cold current
#

Wait, I just did one and was averaging 95 WPM

#

Nice.

#

And yes, of course.

unique warren
#

How?

cold current
#

Muscle memory ;]

gentle moss
#

on typeracer i'm usually 90 - 110 wpm

cold current
#

Yea you'd probably destroy me, bisk

gentle moss
#

that's at my desktop though

unique warren
cold current
#

I'm 90 on a good day

gentle moss
#

yeah i think that one is mediocre for testing real world typing speed

#

we don't write in gibberish words with no structure

cold current
#

I can hit like 100 on that @unique warren

#

But that's because it's much easier

#

Also I can hit 110 if I know what I'm typing beforehand

bleak rain
#

I'm probably around 85

#

but I could be a lot worse or a bit better

cold current
#

If bisk isn't around, I'll hop in

bleak rain
#

Sure

gentle moss
#

ouch

bleak rain
#

lol what cars raced just now?

gentle moss
#

79

cold current
#

God damn that was close

bleak rain
#

neato

cold current
#

I did really badly lol

gentle moss
#

i made a bunch of corrections

cold current
#

Wait bisk was I racing you? XD

#

I'm confused

bleak rain
#

yeah you were lmao

cold current
#

Lmao

#

GG

bleak rain
#

hop in again so we can go all three

cold current
#

Link?

bleak rain
#

Same as before

cold current
#

Destroyed

bleak rain
#

holy shit I choked the beginning hard

gentle moss
#

damn, choked on the apostrophes

bleak rain
#

You'd imagine that my endless shitposting would've trained me more

cold current
#

Another one?

gentle moss
#

set and setting makes a big difference.

cold current
#

I'm in

bleak rain
#

right

#

FUCK

#

SO CLSOE

cold current
#

Oh man, that was tough

gentle moss
#

99.2% accuracy

bleak rain
#

I started with like 40 WPM

unique warren
#

My hands hurt now

cold current
#

I choked hard, I wrote a battle instead of just battle.

bleak rain
#

oof

cold current
#

Took me like two seconds to correct

unique warren
#

I tried bruh couldn’t pass 60

gentle moss
#

you guys keeping an eye on your acc. too?

cold current
#

Nah 😄

#

Will this time, though ;]

bleak rain
#

Nope

gentle moss
#

last for me.

unique warren
#

@bleak rain nice gas mask

bleak rain
#

There we go

#

93

#

Back to my old self

cold current
#

Oh what the hell, I was so bad that time

bleak rain
#

Especially the last half felt good

gentle moss
#

joined late, whoops.

bleak rain
#

97.4 acc

#

this is surprisingly addictive

gentle moss
#

100% acc and 78wpm i think

#

yeah, it's a good way to do scan typing

bleak rain
#

I can't break 100 wpm goddamn

gentle moss
#

don't think i'll hit the 90's on this laptop keyboard

#

it's not what i'm used to

#

low travel keys feel weird.

bleak rain
#

I wish I hadn't bought this shitty keyboard for like 8 bucks

cold current
#

Good game, I'm out for now haha

bleak rain
#

o/

cold current
#

Mecha keyboards rule

#

Corsair K70 here

gentle moss
#

i use a rubber dome dell

bleak rain
#

I wonder how much faster I would bee with a 1337 keyboard with flashing lights

#

I'm using an uuuh "Deltaco"

#

™️

gentle moss
cold current
#

Large travel slows me down, to be honest

gentle moss
#

i don't find so

bleak rain
#

pithink is there something cool that you could bind your numlock to btw

gentle moss
#

i also find it prevents key slip

bleak rain
#

Always thought it was a shame that it's left unused

cold current
#

I have my scroll lock bound to global colorcycling

#

I hit it and it toggles between dark and light themes

#

Editor + system + terms cycle

bleak rain
#

🤔

rancid forge
coarse hearth
bleak rain
#

Oh hell yeah

#

If I was not a self concious person I would definitely wear geeky tees

inland snow
#

Hey everyone, any docker experts here?

#

My question is should I use docker-compose for a single container application?

#

I am thinking like this because it contains all the required info to run the container and I dont need to remember the whole long command to run the container

sand goblet
#

Yes, compose is still useful for that

lofty dirge
#

Yep, use compose

inland snow
#

okay. Thanks a lot.

#

I have one more question though.

#

I have been following the tutorial provided by docker desktop

#

and they have taught me about these two files

#

Dockerfile and docker-compose.yml

#
FROM node:12-alpine
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
COPY . .
CMD ["node", "src/index.js"]```
#
version: "3.8"

services:
    app:
        image: node:12-alpine
        command: sh -c "yarn install && yarn run dev"
        ports:
            - 3000:3000
        working_dir: /app
        volumes:
            - ./:/app
        environment:
            MYSQL_HOST: mysql
            MYSQL_USER: root
            MYSQL_PASSWORD: secret
            MYSQL_DB: todos
    mysql:
        image: mysql:5.7
        volumes:
            - todo-mysql-data:/var/lib/mysql
        environment:
            MYSQL_ROOT_PASSWORD: secret
            MYSQL_DATABASE: todos

volumes:
    todo-mysql-data:```
#

My question is..

#

does the compose depend on the dockerfile?

#

Because it looks like it doesnt

sand goblet
#

in this case, no

inland snow
#

but this compose is suitable only for development, right?

sand goblet
#

only because of the yarn run dev I guess

#

it depends how your application is supposed to be deployed

inland snow
#

I see

#

so in this case I would have to clone the repo and run docker-compose up

lofty dirge
#

Compose uses docker file

sand goblet
#

No it doesn't

lofty dirge
#

Sorry it can

inland snow
#

But if I would to build an image from dockerfile, then I wouldnt need to clone the repo

sand goblet
#

well you would still need the repo

#

since it relies on other files there

lofty dirge
#

You can tell compose how to build the docker image

inland snow
#

they arent included in the image?

#

I mean in the built container?

sand goblet
#

yeah but the dockerfile exists to build the container

#

you don't have the container if you just have the dockerfile

inland snow
#

I know

#

so if I built the container and uploaded it

#

then downloaded it on the other machine, I wouldnt need the repo

sand goblet
#

yeah, you'd just need the compose file

lofty dirge
#

yep

inland snow
#

yeah true

sand goblet
#

which will also handle the downloading if you have the correct image specified

inland snow
#

compose is needed

#

So I should actually use docker compose and tell it how to build the image, right?

lofty dirge
#

if you want

#

BTW, don't volume code

inland snow
#

it was in the tutorial

#

what should I do then?

lofty dirge
#

code can sit in container all happy

#

volumes are for data that needs to be persisted, your code doesn't need to be persisted, there is nothing unique about it

inland snow
#

I mean

#

they used it to show how the webapp would update

lofty dirge
#

update what?

inland snow
#

live update

#

as I am writing the code

#

but I guess I shouldnt be using docker for that

lofty dirge
#

yea

inland snow
#

I should run yarn run dev normally

lofty dirge
#

you can use it for dev like that

#

but for prod, code into container

inland snow
#

why would I use it for dev though?

#

if I dont have to use it?

lofty dirge
#

🤷

inland snow
#

is there any reason?

lofty dirge
#

I'm not going to tell you how to dev

inland snow
#

any advantages?

lofty dirge
#

but for prod, volumes introduce complexity

inland snow
#

yeah

lofty dirge
#

jakub, it's easy to run multiple versions of Node?

#

since you could have node 10 and Node 12 container running the same?

#

I've never done node, not sure how complex it can be

inland snow
#

that would be one reason

#

but I dont see the point in making an app compatible with multiple node version when using a container

lofty dirge
#

if you were microservicing

#

like microserviceA was written in Node 10 but MicroserviceB was written in Node 12

#

if you were updating B but need A, you could use Docker so you could have both running

inland snow
#

yeah I get the point

#

so I should ommit the Dockerfile and only use docker-compose, right?

#

and tell it how to build th eimage

lofty dirge
#

no

#

you can tell docker-compose to use dockerfile

inland snow
#

oh I see

lofty dirge
#
        context: .
        dockerfile: twitch_checker.dockerfile```
inland snow
#

but I cannot include the instructions directly in docker compose yml

lofty dirge
#

I think you might be able to, I've always found it easier to give it a docker file

inland snow
#

yeah true

lofty dirge
#

since you might want to build a container outside docker compose

inland snow
#

true

lofty dirge
#

so you do best of both worlds

inland snow
#

yeah

#

Okay, thanks a lot!

lofty dirge
#

BTW, you can tell Docker-compose to build during up

#

Start-Process 'docker-compose' -ArgumentList 'up -d --build' -NoNewWindow -Wait

#

up -d --build

#

if the containers are already built, it should take 5 seconds for docker to just pull from cache so it's not a big deal to build every time

rough sapphire
#

my body is xbox huge

sand goblet
#

Check it out, GH now has a public roadmap

rancid forge
#

neat orderly

#

well i have a thing that adds colored logs even though gd launcher doesn't give colored logs

#

taking advantage of ansi and python and things

rough sapphire
#

cc @heavy shoal je baise ta mere et je vais te violer

#

je vous violes tous

#

et cequestre des enfant de 10ans

#

je vous baise tous

#

j'enfonce des pinguins dans la chate de ta mere

#

va te faire ficeler par tes pinguins

gentle moss
#

this is an english speaking server, please speak english

rough sapphire
#

xDDDDDDDDDD

royal lakeBOT
#

:incoming_envelope: :ok_hand: applied mute to @barren glade until 2020-07-29 16:05 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

#

:incoming_envelope: :ok_hand: applied mute to @rough sapphire until 2020-07-29 16:05 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

gentle moss
#

<@&267629731250176001> it's getting worse.

#

ah you got it, cool.

terse sluice
#

oh nice

#

out the door both of them go

plucky ridge
#

Yeah sorry, split attention right now

round zenith
#

Can anyone help with vscode (please don't start an editor war). All my conda envs disappeared

plucky ridge
#

@round zenith #tools-and-devops might be able to help you out on that, since it's specifically about VSCode and Anaconda

round zenith
#

thanks

midnight sphinx
#

Broo I feel bad for the guy

feral yew
#

God i hope that's satire

round rose
#

It's funny how people ask questions with such simple answers

midnight sphinx
#

Lol

round rose
#

In this case, the answer is "It won't"

midnight sphinx
#

Facts

#

But she just changed that mans life

#

Imagine all that time spent loving her now all of a sudden she says I don't like you I just wanted you money

bleak rain
#

You go girl, get his phat stax

#

Men are pigs anyway

round rose
#

I mean, I don't think there's something inherently wrong with that, or rather there would be nothing wrong with that if they were clear from the start that they only want them for the money

#

The bad part is misleading people

bleak rain
#

I agree

round rose
#

It's sad how often it happens

#

I know a bunch of people that did similar things, and it's really upsetting

bleak rain
#

Ah, damn

#

Personally haven't encountered it luckily

round rose
#

One (fairly obvious, when you think about it) pattern I've found is that it's often people whose primary trigger is status

bleak rain
#

Right, makes sense

sand goblet
#

Communication is the foundation for every healthy relationshiop

#

although I would argue that "I want them for their money" is already a bad start

#

like how shallow do you gotta be

bleak rain
#

Shes a strong woman who knows what she want

round rose
#

It is shallow and I don't get that, but as long as they're open about it, I wouldn't really judge them

sand goblet
#

you bet your ass I'm gonna judge them

round rose
#

That's fair

bleak rain
#

If I knew someone liked me for my phat stax then I'd be glad, I only need to keep the bags rolling

sand goblet
#

I would be extremely uncomfortable

bleak rain
#

Fair

sand goblet
#

bear in mind here

#

there are gender roles at play when it comes to this kind of thing

bleak rain
#

Right

sand goblet
#

toxic masculinity says that the man is the money-maker and should provide for the rest of the unit

#

but it's pretty widely known that the entire system of roles is rather unhealthy

round rose
#

yeah

#

toxic masculinity says a lot of shit

sand goblet
#

toxic masculinity hurts everyone

round rose
#

When I started uni, we had a guy in our class who'd constantly complain about his girlfriend

#

It was pretty obvious that they don't have any real connection going on and the whole thing is extremely shallow

#

And although he was visibly dissatisfied, he'd do anything not to break things off, I assume it's because she fulfilled his needs for status, but I can't know for sure and I don't care that much

#

He got close to some other girl, kept showering her with affection, promised her he'll break up with his girlfriend (never did, obviously), the usual shebang

#

About a month later when the girl got sick of it and forced him to finally make up his mind, he predictably chose to stay with his girlfriend

bleak rain
#

Just yikes

round rose
#

It was sad to watch, really

bleak rain
#

He needs alone time

#

Not jacking off time but time to reflect on why is he so clingy

#

Or, well, he needed, since it's a lost cause now

round rose
#

Leading that girl on was a dick move

bleak rain
#

Definitely

rough condor
#

“He needs alone time
Not jacking off time but . . .”

🤣 😂

rough sapphire
crisp tangle
#

Hello!

#

im designing a logo, i want to know if you can see the animal

#

do you know what animal can this be?

ancient minnow
#

An elephant

#

But at first i thought this was some old videocamera

crisp tangle
#

@ancient minnow XD

#

okey

sand goblet
#

is that a chicken?

#

@crisp tangle

narrow pecan
#

I think it's a cyborg

soft violet
#

Impressionistic Dalek.

spiral ridge
#

minecraft cow

crisp tangle
#

@sand goblet no XD, i wont say it i want to know what do you guys see

narrow pecan
#

Or possibly a squid

spiral ridge
#

wait i know

sand goblet
#

It's hard to say much without an idea of which way up it is

spiral ridge
#

you thought you can trick me

crisp tangle
#

i ll say it if someone has the answer XD

rough sapphire
#

@crisp tangle Honestly, too much going on in the logo

crisp tangle
#

but i guess i will have to change it because 4 told me diferent things

#

@rough sapphire ik but its funny haha

rough sapphire
#

funny? I'm confused.

narrow pecan
#

I think it's a cool Squid, but it doesn't really work as a logo

spiral ridge
#

a few triangles and two squares?

crisp tangle
#

@narrow pecan not a squid hahaha

soft violet
#

Could be part of a train engine.

crisp tangle
#

@soft violet OMG IM DEAD

#

AHAHAH

narrow pecan
#

Maybe a spider then

spiral ridge
#

ZEBRA

#

sorry for caps

narrow pecan
#

True

#

it's black and white

soft violet
#

Well, rotate it 90 degrees clockwise and it kind of looks like it could be a train engine.

narrow pecan
#

So it must be a zebra

crisp tangle
#

the colors dont matter

#

😎

narrow pecan
#

It really does. You're 100% right Opal

spiral ridge
#

minecraft chicken

crisp tangle
#

@spiral ridge WAHAHA

narrow pecan
#

Minecraft creeper?

crisp tangle
#

nope

narrow pecan
#

A tomato?

sand goblet
#

it could be a slug

spiral ridge
#

a money gun

crisp tangle
#

@narrow pecan XDDDDDDDDD

#

im laughing rn omg

spiral ridge
#

it looks like those supreme money guns that shoots out money

sand goblet
#

I don't think it actually represents anything

narrow pecan
#

A tomato?
@narrow pecan Scrap that. It has to be a tomato

crisp tangle
#

well okey, i ll say it

#

its a giraffe 💀

#

LMAO

sand goblet
#

yeah okay, I see it, but that's so.. no

narrow pecan
#

Well, no

spiral ridge
#

that was the first thing that came to my mind when i saw this, no joke

crisp tangle
#

@spiral ridge oh you have to be kidding me

#

XD

narrow pecan
#

It's a zebra/tomato/slug/chicken/train engine/squid

soft violet
#

How the fuck is that a giraffe?

narrow pecan
#

Not a giraffe

crisp tangle
#

@soft violet well i tried to make one

spiral ridge
#

it also kkind of looks like a mosquito

crisp tangle
#

Oof

narrow pecan
#

Whatever it is, it's not a giraffe

soft violet
#

Well, points for trying, but I think your giraffe may need a vet.

narrow pecan
#

Yep

spiral ridge
#

not a vet, a surgeon

crisp tangle
#

okey, please be as rude as you want because im trying to make it so everyone can know

#

taking notes..

#

@soft violet OMG AHAHA

spiral ridge
#

so i can be as rude as i want

crisp tangle
#

@spiral ridge yes roast my logo hard

spiral ridge
#

i feel bad, you seem like a nice guy

narrow pecan
#

Nope, I'm not buying it

crisp tangle
#

your commentaries make me understand if you can really understand the logo

spiral ridge
#

giffrafe was the first thing i thought

crisp tangle
#

thats the point

soft violet
#

Ah...I actually kind of see it now.

spiral ridge
#

so i guess it was good enough

crisp tangle
#

so being rude doesnt matter

narrow pecan
#

Wanna explain?

soft violet
#

The two dots are the horns.

spiral ridge
#

it kindof looks like a mos quito

crisp tangle
#

@soft violet yes

narrow pecan
#

I SEE IT now

#

Dude

#

What is that

#

Wait, I know

spiral ridge
#

is this logo for GiraffeSimulator on roblox or something

crisp tangle
#

@spiral ridge LMAO 💀

#

well im making a bar for windows

#

idk if you know about

#

nexus bar

#

im gonna send a screen

spiral ridge
#

thats nice

narrow pecan
#

There we go

crisp tangle
#

this

narrow pecan
#

I got it

crisp tangle
#

i want to achieve this, but i had to make a logo

#

so yh i was starting to mess with geometry XD

spiral ridge
#

but overall, thats a good quality logo

narrow pecan
#

For what?

spiral ridge
#

looks professional

crisp tangle
#

@narrow pecan you mean the bar or the logo?

#

@spiral ridge thanks, but i have to change it. You guys couldnt get it at first so yh gg wp

narrow pecan
#

The logo

spiral ridge
#

why you say gg

#

oh ok

#

nvm

crisp tangle
#

because my product needs a logo to be represented and a giraffe was kind of what i had in mind because the bar can be something like a representation of their necks XD yes i have a big imagination

narrow pecan
#

Here we go

#

I hope you don't take that in a bad way

#

I just really felt like trying that

crisp tangle
#

@narrow pecan XD wtf

narrow pecan
#

Aahah idk

#

It's late and too many people abuse comic sans

spiral ridge
#

JIRRAFE

crisp tangle
#

yh i hate dat font

narrow pecan
#

Yeah

#

You can't imagine how many comic sans memes I've seen

#

And client memes

ancient minnow
#

Microsoft giraffe

narrow pecan
#

Hhaha yes

crisp tangle
spiral ridge
#

hippo

crisp tangle
#

@spiral ridge 💀

sand goblet
#

that's clearly a ninja

ancient minnow
#

Panda

crisp tangle
#

@sand goblet AHAHAHA

ancient minnow
#

Its a foot of a panda

#

Bear

crisp tangle
#

@ancient minnow oh well you are right wtf

ancient minnow
#

Lol

crisp tangle
#

but its an animal xd

spiral ridge
#

it looks like a square tank or car

#

or some dude wiht a mohawk

#

wearing a mask

crisp tangle
spiral ridge
#

bird?

#

chicken

crisp tangle
#

@spiral ridge wtf 💀

ancient minnow
#

Wait is it a panda or not?

crisp tangle
#

@ancient minnow nope

ancient minnow
#

Ohh

spiral ridge
#

zebra

ancient minnow
#

It looks like a tent

crisp tangle
#

@spiral ridge OMG kinda yes

spiral ridge
#

horse

crisp tangle
#

@spiral ridge this

narrow pecan
#

I now completed the windows branding

crisp tangle
#

it is a horse..

narrow pecan
#

I hope you'll like it

spiral ridge
#

LETS GO

narrow pecan
#

You're welcome

crisp tangle
#

@narrow pecan Thanks

spiral ridge
#

oops sorry for caps

ancient minnow
#

Woowww its fk beuatiful

narrow pecan
#

It has worrd, powerrpoint and vindovs

ancient minnow
#

I think you have to become Ceo of app design

spiral ridge
#

this looks like a JetBrains logo

narrow pecan
#

Wait, I need a finishing tough

#

Kind of true

ancient minnow
#

WTs the 3 one?

#

You have word ppt

#

And?

#

I cant read it lol

spiral ridge
#

VINDOVS

crisp tangle
#

@spiral ridge LMAO

ancient minnow
#

Oohhh

#

The vindovs logo looked like the logo from the language R

#

But backwards

spiral ridge
#

i can see that

ancient minnow
#

I like word the most

crisp tangle
narrow pecan
#

There we go

crisp tangle
#

@narrow pecan XD

narrow pecan
#

We needed a few watermarks as well

ancient minnow
#

Aww poor horse got his head chopped off

spiral ridge
#

yes, the abstract art of the wword logo is very unique and artistic

#

why does the horse have 5 legs

ancient minnow
#

We needed a few watermarks as well
@narrow pecan lmfao

narrow pecan
#

Thanks @spiral ridge

crisp tangle
#

@ancient minnow lmao

ancient minnow
#

why does the horse have 5 legs
@spiral ridge its the head

#

Its his hair

spiral ridge
#

oh yeah

ancient minnow
#

Those 5 thingies

spiral ridge
#

the mane

crisp tangle
ancient minnow
#

But now its decapitated

spiral ridge
#

what

#

wait

#

oh nvm

narrow pecan
#

Welp

crisp tangle
narrow pecan
#

Stop cutting up the horse

ancient minnow
#

Poor hors

#

Didn't deserve it

crisp tangle
#

why do you have such a gore imagination XD

#

its that thing yo put in their heads

narrow pecan
#

I have to do it....

ancient minnow
#

Stop cutting up the horse
@narrow pecan i think hes gonma eat it

spiral ridge
#

horse go sleep

#

snek eat horse

#

snek good

brazen leaf
spiral ridge
#

snek python

ancient minnow
#

Chop chop hors

crisp tangle
#

okey i think im gonna keep it as a zebra

spiral ridge
#

we like snek

#

be like snek

narrow pecan
#

Poor hors
@ancient minnow

crisp tangle
#

f

spiral ridge
#

how much does photoshop cost

ancient minnow
#

Lmao

#

Hors dead

spiral ridge
#

no

narrow pecan
#

Too much @spiral ridge

ancient minnow
#

how much does photoshop cost
@spiral ridge crack it

#

Or torrent

narrow pecan
#

Nah

spiral ridge
#

ok ill just use paint then

ancient minnow
#

Or use paint ner

#

Net

narrow pecan
#

You could get the Affinity suite instead

ancient minnow
#

Yea

narrow pecan
#

It costs $50 per program

#

One time charge

#

Affinity Designer, Photo and Publisher

ancient minnow
#

Adobe is like fking expensive and doesnt give you anything that great

spiral ridge
#

i like using pixel art

narrow pecan
#

Well, it's the industry standard

ancient minnow
#

i like using pixel art
@spiral ridge maybe use 16 by 16

narrow pecan
#

Everyone uses it

ancient minnow
#

Not 2 by 2 lol

spiral ridge
#

wdym not 2x2

ancient minnow
#

Everyone uses it
@narrow pecan yes but thats fkd up

#

Bcs adobe basically has monopoly

narrow pecan
#

Yeah, it's a strange monopoly-ish

ancient minnow
#

They dont even update their products that much

sand goblet
#

I love the affinity suite

#

I have all three of them

narrow pecan
#

Same @sand goblet

#

I do all my design work there

ancient minnow
#

They dont even update their products that much
@ancient minnow if you look at Photoshop 2 years back and now maybe only the ui and a few tools

#

No major updates

narrow pecan
#

Except for UI. That happens in Adobe XD

ancient minnow
#

Its too bad companies still request adobe skills

#

Except for UI. That happens in Adobe XD
@narrow pecan oh yeah well even the ui hasnt updated lol

narrow pecan
#

I meant that I do UI design in Adobe XD 😆

#

But sure

ancient minnow
#

Oh oops completely misunderstood lol

#

Im bit sleepy

narrow pecan
#

Same

#

'

ancient minnow
#

Its nearly 1 o clock in my country lol

narrow pecan
#

Where are you from?

ancient minnow
#

Netherlands

narrow pecan
#

Eyy nice

#

I'm swedish

ancient minnow
#

You too?

#

Oh lol

narrow pecan
#

UTC+02:00

#

Hhhaha

ancient minnow
#

Hahah

#

Im really weird when it comes to sleep

#

My whole schedule is fucked

narrow pecan
#

Sad

ancient minnow
#

I cant ever fall correctly asleep

#

Sad
@narrow pecan yeah im hoping its just a fase or smth

crisp tangle
#

i use affinity

#

dessigner

narrow pecan
#

Probably

#

Nice

crisp tangle
#

cracked obviusly

#

lmoa

#

lmao

narrow pecan
#

Cracked?

crisp tangle
#

yes i pirated it

ancient minnow
#

Fbi open up

crisp tangle
#

i think even the FBI downloads pirated stuff from internet

#

xd

narrow pecan
#

That's quite respectless to the developers really

ancient minnow
#

Yes it is but if i had money i really would pay

crisp tangle
#

@narrow pecan ik but well i dont work yet and im 18

#

and oh yes cuarentine

tame terrace
#

Yeah, we don't discuss piracy here.

ancient minnow
#

And a second thing the devs dont lose any money over it if you think about it. Because copying files doesnt require production moneym

#

Oh sirry

#

Sorry*

narrow pecan
#

I personally sold newspapers by knocking on peoples' doors for years when I was 13-15 to make money for things like that

#

What rule is that @tame terrace? I couldn't find it

rough sapphire
#

It'd be rule 5 1

#

!rule 5

royal lakeBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious/inappropriate or be for graded coursework/exams.

crisp tangle
#

@tame terrace yh sorry

narrow pecan
#

I was thinking of that at first, but he's not asking for help

tame terrace
#

it's not rule 5

rough sapphire
#

1?

tame terrace
#

yes, rule 1

#

specifically this part of the Discord Community Guidelines:

You may not promote, distribute, or provide access to content involving the hacking, cracking, or distribution of pirated software or stolen accounts. This includes sharing or selling cheats or hacks that may negatively affect others in multiplayer games.
#

and this

#

In general, you should not promote, encourage or engage in any illegal behavior.

#

so, put those together and we generally don't like discussions about piracy

narrow pecan
#

Perfect, thanks

ancient minnow
#

Okay change of topic

rough sapphire
#

Topic change: What's for dinner?

ancient minnow
#

Yea im about to hit the nap so im not going to eat anything for some time

narrow pecan
#

Welp, it's almost 1 AM

#

I'm gonna eat some oatgurt though

#

And then hit the sheets

ancient minnow
#

Whats oatgurt? Never heard of

narrow pecan
#

It's basically like yoghurt, but made of oats instead of cow's milk

ancient minnow
#

Ohh are you lactose intolerant or smth?

narrow pecan
#

Vegan

#

And it's just so much better tbh

ancient minnow
#

Oh i see

soft violet
#

Oatgurt. Never heard of it.

ancient minnow
#

Yea yogurts contain lots of sugar right?

narrow pecan
#

You should give it a try some time

#

Well, depends on the type/flavour

#

This one is free of sugar

ancient minnow
#

Yea but this one is not just yoghurt. Its oatgurt

narrow pecan
#

Yes

#

Have you tried oat milk?

ancient minnow
#

Nope never felt like it

#

Is it much different from normal milk?

#

I mean the taste

narrow pecan
#

It's different in some sense. I personally haven't drunk any cow's milk in ages, but in baked things, sauces and similar, I don't notice a difference

#

It feels quite fresh in some sense though

ancient minnow
#

Ohh well thats something im gonna try out pretty soon then

silver trail
#

hey speaking of vegans, is it for health reasons or moral reasons ?

rough sapphire
narrow pecan
#

I usually didn't drink cow's milk back in the days either. Just didn't like the taste. I like oat milk though, even though I don't drink it raw very often

rough sapphire
#

Haha that actually turned out well

silver trail
#

nice one

ancient minnow
#

I usually didn't drink cow's milk back in the days either. Just didn't like the taste. I like oat milk though, even though I don't drink it raw very often
@narrow pecan oh cool is it more expensive than normal milk?

#

Im pretty unhealthy tbh lol. Havent drinked any milk in months

narrow pecan
#

@silver trail I mostly don't see a reason to justify not being vegan. Animal agriculture is devastating for the environment and puts the world in risk of disease and other health issues from over use of antibiotics and such. On top of that, we have the health risks with eating meat and dairy products as well

ancient minnow
#

Yes but here you have the prisoners dilemma.

narrow pecan
#

Still, the most important reason to me is the ethical aspect. I really can't find a reason to systematically give birth to, feed and slaughter animals when we have great alternatives. What happens during the life of the animal really isn't pretty either

ancient minnow
#

I mean being vegan only is VERY effective when everyone does it

narrow pecan
#

The world could just be get so much better. More space would be freed up from growing plants to feed animals, we would be on our way to combat climate change and so many animals would be spared. On top of that, it just makes me feel better. My mind feels a lot clearer and I just feel all around better

ancient minnow
#

As long as the biggest part eats meat, the vegans will miss some things others arent missing.

silver trail
#

personally i just eat meat 1 day per week cuz its bad if its taken excessively

ancient minnow
#

That's why i see it as a prisoners dilemma. Maybe im wrong lol.

silver trail
#

but i cant see a reason to stop it for ever

#

it tastes so damn good lol

ancient minnow
#

Hamborgar

narrow pecan
#

It's awesome to hear that you're limiting the amount of meat that you eat, really :)

silver trail
#

yeah meat everyday also sucks tbh

narrow pecan
#

Still, do you think that your taste buds are worth more than the life of an animal?

silver trail
#

i like some veggies

ancient minnow
#

Still, do you think that your taste buds are worth more than the life of an animal?
I mean humans have killed and eaten animals as long as they exist

#

It isnt a very strange thing that suddenly came up

narrow pecan
#

Well, humans have been raping young girls for as long as they have existed

silver trail
#

i think the bad part is if you kill just for fun or in an inhuman way

#

i mean plants are living creatures too

narrow pecan
#

Killing for fun, is that equal to killing when it's unnecessary to you as well?

silver trail
#

so its kinda wierd

ancient minnow
#

Well, humans have been raping young girls for as long as they have existed
@narrow pecan for survival?

narrow pecan
#

@ancient minnow If it's to survive, I'd eat meat as much as you or anyone. However, we live in the 21st century. We have a choice

ancient minnow
#

But i think that as long as there wont come any laws which will forbid eating meat the overall of the population will keep doing it because of the prisoners dilemma.

rough sapphire
#

People just like meat and they will continue eating it as long as it's not illegal

silver trail
#

@ancient minnow If it's to survive, I'd eat meat as much as you or anyone. However, we live in the 21st century. We have a choice
@narrow pecan well i guess some people choose to eat meat i guess

rough sapphire
#

Some individuals can stop eating it, but the impact is probably not huge

silver trail
#

yeah exactly

ancient minnow
#

@ancient minnow If it's to survive, I'd eat meat as much as you or anyone. However, we live in the 21st century. We have a choice
Yes but what i meant was. We did it for ages for survival. Suddenly stopping these routines is very discomfortable for many humans.

narrow pecan
#

The impact per person is still as big. All change starts small and grows

rough sapphire
#

And it's a very important source of calories if you live in a poor country

silver trail
#

i think reducing the amount of meat taken is better than stopping it at one go as a first step

narrow pecan
#

Of course @rough sapphire. I’m not talking from a poor country perspective now. At least I, and probably most other here who have phones/computers, have options

ancient minnow
#

Yes the problem is we dont have 7 (forgot the name) like a cow, to digest all the plants we are eating all day

rough sapphire
#

And in the economic sense?

#

There are countries that have meat production as a huge portion of their economies

ancient minnow
#

This debate is probably a little unfair lol. One defending against 3.

rough sapphire
#

He got good arguments thought

narrow pecan
#

Animal agriculture is actually terrible for the economy. I suppose that you know about the huge funds that farmers receive from their states and things like the EU? That’s because of how unprofitable it is

silver trail
#

no no the guy has a point

#

there are people abusing animals

ancient minnow
#

Yes i also agree that his arguments are great

silver trail
#

that kinda sucks

rough sapphire
#

That's interesting i believe

ancient minnow
#

Just pojnting out

narrow pecan
#

The hard part is just typing fast enough at 1 am 😂

rough sapphire
#

Are you sure that this is not just money to mantain the EU meat production competitive with the global markets?

#

Because USA subside agriculture too

#

But agricuture inject lots of money in the economy

narrow pecan
#

The important part is how the money is spent. That exact money could’ve been spent on healthcare, sending help to poorer countries, reducing taxes and more

rough sapphire
#

The tendency is that most sectors need subside

narrow pecan
#

Growing plants doesn’t require those massive subsidies. It’s just much more profitable

rough sapphire
#

This money would probably go to agriculture

#

Or not

#

You don't know

ancient minnow
#

Growing plants requires the shit from different animals

rough sapphire
#

Are you sure about your point?

ancient minnow
#

I mean animal aggricultute is a lot more than just meat

narrow pecan
#

Probably not. If the demand for subsidies in agriculture decreases, they won’t keep throwing that much money to it. It’s a game of spending money where it’s needed

rough sapphire
#

How you know that the need for subside in agriculture will decrease even with the global consumption rising?

ancient minnow
#

@narrow pecan also if we would rely completely on plants then we could get into problems when having bad seasons

rough sapphire
#

bad seasons with plants would impact meat production too since animals need to eat plants

narrow pecan
#

Growing vegetables is a lot less costly than feeding animals vegetables and then eating the animals. If the costs rise so much in the future, they’d be drastically higher if we ate animals. That means cutting funds for things like healthcare, since meat tastes good

ancient minnow
#

Hmmm tbh im not very fond of healthcare too. It causes the human race to deevolve

rough sapphire
#

I don't think EU is cutting funds from other sectors to invest in the meat industry, they are subsiding the meat industry because is interesting for europe to compete in the market or because the economic consequences of not doing so can be devastating

silver trail
#

man i am 19 and i have no idea what all is this about but i am really liking it 😂

narrow pecan
#

Exactly @rough sapphire. Maybe I wasn’t clear enough with my point. I mean that the costs needed would still be lower if we substitute meat consumption for plants. And as a consequence, we don’t have to deal with a dilemma of “devastating consequences” or “improved healthcare”

ancient minnow
#

I think im really spitting shit here at 1 am

#

Gotta go to bed

#

Bye bye

narrow pecan
#

Night. Nice chatting with you 👋

rough sapphire
#

The devastating consequences are inevitable if you want to replace one sector with another

#

Unless you plan it very well

narrow pecan
#

Planning is crucial and this won’t be some over night change. It’ll take time

ancient minnow
#

Night. Nice chatting with you 👋
@narrow pecan thanks was nice chatting with you too

rough sapphire
#

And european healthcare is very good

#

Governments have money to invest more in it if they want

narrow pecan
#

Yep. Very true

rough sapphire
#

That is the same thing as saying that exploring space removes money from exploring the earth

#

They are two completely separated sectors, investiment in one do not deprive investiment in the another

narrow pecan
#

Still, that applies to whatever area is important. It’s just about not having to spend that money on animal agriculture

rough sapphire
#

Your point can be used to justify the underfounding of every area of the economy

silver trail
#

i am too young for this , i have games waiting for me 😆 it was a nice chat !

narrow pecan
#

Well, it does. If we consider that we have $100 and $30 goes to food. If we spend $20 on food, we now have $10 extra to spare

rough sapphire
#

That's not how economy works

narrow pecan
#

Well, Economy 101 works kind of like that

#

Everything is intertwined, but the broad strokes remain the same

rough sapphire
#

The subsides in one industry can be important for the economy because it create people jobs and movement the economy

narrow pecan
#

That money will create other jobs and movement in the economy in other areas. It’s like the industrial revolution, but not as dramatic

rough sapphire
#

I think we both have an actual not very deep level of how economy works thb

#

That is the point, you need to balance how much of the investiment go to each sector

narrow pecan
#

Yep

rough sapphire
#

And people will continue eating meat, if you underfound one sector of the economy you're destroying the jobs and opening space for other country to destroy the part that you didn't

narrow pecan
#

Well, the transition will come gradually as people adapt a different mindset

rough sapphire
#

Because the other country will continue being competitive in the sector, and without the subsides the sector can't compete with external agents

#

I see, but i don't think people will

narrow pecan
#

Again, gradual transition is key here

#

Only time will tell

rough sapphire
#

If you consider global warming, gradual is not a good word

#

Remember that you're talking about changing people, and for that you need a lot of money

narrow pecan
#

Well, people won’t change their habits over night and that’s just a fact. Whatever one can do to help is a step in the right direction

rough sapphire
#

I think we should just go to mars and be happy

narrow pecan
#

Either way, I need to go to sleep soon. It was really interesting discussing this with you. Feels like you have a willingness to ask questions and improve. I admire that

rough sapphire
#

Thank you, you too

#

bye

narrow pecan
#

See you

silk frost
#

‫thing. ‫I moved the

narrow pecan
#

thing. ‫I moved the

#

How?

#

@silk frost

#

. ‫I moved the

#

I got it now

#

‫thing. ‫I moved the

#

Noce

silk frost
#

Nice

#

‫Test ‫

narrow pecan
#

Dope

silk frost
#

I saw it on Reddit

narrow pecan
#

Cool

#

‫thing ‫I moved the

trail hollow
#

Noice

tulip palm
sullen thorn
#

Are you supposed to wash off face moisturiser before you sleep? (Idk how this stuff works)

sand goblet
#

No

#

massage it into your face until it's gone

sullen thorn
#

No as in I applied it several hours ago - it’s 99% gone

#

So do I just sleep now?

sand goblet
#

that's all there is to it yep

sullen thorn
#

Ok sick, thnx 🙂

#

And Gn 🙂

sand goblet
#

o/

trail hollow
#

I've been trying to updating apps tru play store since yesterday, but its error

#

Error while checking updates

cosmic hatch
#

@narrow pecan how do you do that?

narrow pecan
#

Using right to left text

#

Kind of like typing in Arabic

cosmic hatch
#

.that's weird

#

hmmm

tropic apex
#

Hi

#

I'm searching an alternative to vscode

#

There is someone that have tried emacs?

cosmic hatch
#

I haven't

#

although I've had it on my system once and I just didn't understand it

shell vapor
#

Me either. Only vim

tropic apex
#

@shell vapor can u make something like panels in vim? I mean, on the right side the code editor and left a terminal emulator

shell vapor
#

Yup. :vsplit or :hsplit to edit multiple files in panels. :terminal to open a terminal.

cosmic hatch
#

that's nice

#

the more you know...

tropic apex
#

I know that I can just open two terminal window but isn't comfortable to have 2 separated windows opened in a 14"

shell vapor
#

you can also use tmux.... then all your apps support panels.

tropic apex
#

Oooh cool! I will surely use vim then!

#

Ty

cosmic hatch
#

ah yes, the negotiator

undone berry
#

Over the last 4/5 weeks I've gone from being pretty neutral about Skype/Zoom/Webex/Whatever calls - to now just absolutely dreading them

#

I hate them with a burning passion right now - whenever I have one coming up, it's almost a physical dislike towards the thought of having to sit through it

molten oak
#

stop having them

#

ez gg wp

undone berry
#

I get paid to

#

and I like money

sand goblet
#

Apparently teachers over here hate remote learning, according to the news

#

Probably because they hate the calling I guess

undone berry
#

video calls are just shit - it's so easy to get distracted

#

The only way they work wells is if it's actually one person showing someone else something

#

so you're both engaged on the same screen

lofty dirge
#

I have them multiple times a day

#

Welcome to work COVID era

undone berry
#

just learn to send text messages god dammit

#

write a decent readme/git-issue/confluence page - or send a message on teams/Slack

#

and the world would be so much bloody better

#

I just had a 90m chunk of them - and in 20m I have another 60m chunk of them

#

just kill me

tulip palm
#

i get massive amounts of anxiety in video calls (and calls in general). so usually i need to let my mind settle down for like an hour after any online classes. luckily, i only had three classes in the 4 months that school was still "open" so it wasn't so bad.

undone berry
#

I never used to have a problem with them, now I just despise them

cold current
#

I don't really get the point of video calls

undone berry
#

For some things they can be nice - but for the most part, they're just terrible

cold current
#

I'm talking about face to face video calls, not screensharing

undone berry
#

like - if you know the person and it's a casual two way chat, it can be an improvement (over just normal voice chat)

cold current
#

Yea, I can see that, but for things like classes it just doesn't make sense

undone berry
#

Yeah - I agree

#

Classes being live just doesn't make any sense - record the damn things

cold current
#

Eh, I understand live classes - you can interact with the prof, but why do you need to show your face? Doesn't really make sense

#

It should be optional, at the least

tulip palm
#

my teacher told me that he doesn't feel like anybody is paying attention when they haven't got a camera on, but at least he didn't make it required.

undone berry
#

literally no one does it though

#

ask questions that is

cold current
#

Really? Guess I'm an outlier, than

tulip palm
#

to be fair, i find that it does help to have somebody talking to me directly, since i find it a little easier to pay attention than if i was just being talked at by somebody in a pre-recorded video

#

because i can't pause a live chat

#

"oh hang on, i need to do <some unrelated, procrastination-y thing> since my attention span is too shallow for you"

#

just doesn't happen. :D

undone berry
#

I think that's more of a problem with the nature of the videos though. Very few lectures/lessons have 1 hour on 1 topic. Most things could be broken down into more digestible 3-20 minute chunks

#

and those are very consumable in video form

#

then you can facillitate the question asking by having more smaller live calls

tulip palm
#

sure, my computer science teacher spends most of the lessons talking about unrelated shit. "does anybody here play an instrument?" no fuck off we're not playing for you.

undone berry
tulip palm
#

but my teacher is definitely unable to make something short and concise

#

he literally rambled about the queen when we were supposed to be learning about protocols

cold current
#

That sucks

undone berry
#

I think there's a rule that says Computer Science teachers in the UK just have to be utter shit

tulip palm
#

one of mine is actually decent

undone berry
#

Genuinely, there's so much stuff my A-Level CS teacher taught me that's just wrong

#

e.g that O notation isn't important

#

despite the fact

cold current
#

Ha

undone berry
#

it's on the fucking exam

#

what a twat

#

hate him

#

(that's an aside though, carry on)

tulip palm
#

the other two teachers of mine are.. interesting. one literally doesn't know anything beyond the textbook (and even then, i've had to correct her on something as simple as the difference between compilers and interpreters). the other is the one i mentioned, who spends most of the time talking about unrelated stuff and knows he's doing it.

cold current
#

i've had to correct her on something as simple as the difference between compilers and interpreters
Ooh, that's bad

tulip palm
#

yup, she got them the wrong way round and then consulted the textbook when i mentioned it to her.

#

she took it well though, so i'm not too bothered haha

cold current
#

How does one get hired knowing that little? Quite confusing

tulip palm
#

because the people hiring know even less

#

simple :D

sand goblet
#

Something I found misleading

#

Was that people used to tell me how important endianness was

undone berry
#

There's a massive lack of qualified CS teachers in the UK - my old school couldn't find anyone remotely suitable. And the shitty one I had who was qualified because he'd been a software dev for 10 years, was incompetent as shit

sand goblet
#

In the last 15 years I've had to care so little about endianness that I hardly remember what the difference is

tulip palm
#

haha

#

my school has 6 computer science teachers. one is exceptional but i don't have him for my A-levels, two at least know what they're doing, and the other three haven't a fucking clue about anything.

undone berry
#

6? Why so many?

tulip palm
#

idk there's like 200 members of staff

undone berry
#

My middle sized school, ~1200 students total, had 2

tulip palm
#

it's a bit silly haha

undone berry
#

For my time there, it was always a different 2

#

but they were also always shit

tulip palm
#

i see

undone berry
#

In fairness, the PE, Business, and IT departments all had one head

#

so

#

they didn't exactly care about IT

tulip palm
#

haha yikes

undone berry
#

if they lumped it in with PE and business

tulip palm
#

meanwhile my school's "head teacher" isn't the top of the staff hierarchy

#

because there's an executive head teacher who is the top staff of like 15 schools round here.

#

not sure how the hell that works but sure.

#

to be fair, some of the teachers in my school really are outstanding.

#

so i can't really complain that there's a few useless ones in there

mild abyss
#

@undone berry> There's a massive lack of qualified CS teachers in the UK - my old school couldn't find anyone remotely suitable. And the shitty one I had who was qualified because he'd been a software dev for 10 years, was incompetent as shit
@undone berry same :))

#

but mine is on a different location in the world

shell raptor
#

-- Hm, there's a feature that's not implemented yet, what should we do?
-- Create a giant red popup every time you type something!
-- Sounds promising

topaz aurora
#

Atom being Atom?

twilit hull
#

wait this seems nice

sullen thorn
#

Huh atom seems good for haskell

twilit hull
#

i want this GUI lol

shell raptor
#

It literally shows a few popups every time you step

#

I love the general interface of Atom, but this one thing just freaks me out a little bit

#

I guess atom is a good replacement for, like, sublime text

#

Or maybe I could use the Telegraph feature one day

velvet garden
#

i used Atom for like, idk, 5 days until it OOMd my box, so I opted out lol

shell raptor
#

I reserved 12 GB of swap for compiling some haskell tools (because I only have 4 GB of RAM)

#

and then I accidentally did

with open("/dev/urandom", "rb") as file:
    print(file.readlines())
velvet garden
#

oh boy lol

shell raptor
#

and when in got to the SSD part of the memory, it became... a little frozen

#

Well, at least it didn't give me a god damn popup

topaz aurora
#

HLS distributes binaries now duckyparty

shell raptor
#

took so long to compile they're just done 🙂

#

Idris just has a little extension for Atom and VSCode, it seems

topaz aurora
#

I wonder if HLS is gonna be as stable as HIE in the near future, with near future as in 2 or 3 months

#

Also GHC 8.8.4 has been released so I think that may solve some compilation problems

shell raptor
#

I'm actually just procrastinating from learning urwid

scenic blaze
#

I'm just procrastinating, period

shell raptor
#

Well, I didn't say that learning urwid wasn't procrastination in itself.

#

It's like a linked list.

#

it's something like Discord -> Idris -> urwid -> Haskell -> my actual project

plucky ridge
#

Um, actually, UR a wid

#

So there

#

Yeah that was weak, sorry

shell raptor
#

Only now did I get the joke

#

it's not as bad as you thought

plucky ridge
#

Works for me

plucky ridge
undone trellis
#

thanks

plucky ridge
#

A lot of tutorials focus on older styles but this one takes into account all the modern functionality and sensibilities

#

And is updated nearly daily in attempts to finetune it to be the best it can be

scenic blaze
#

Good idea to learn JS, web dev is huge these days

#

I'd learn it if my plate wasn't so full

plucky ridge
#

Plus there's something incredibly satisfying about developing something that you can so easily see the results of your work

undone trellis
#

Python is great but I kinda want to learn some new stuff
Some people said Python is slow
Tbh not that slow, doesn't really bother me

#

Thank you, I'll look into it tomorrow

plucky ridge
#

Yeah Python is slow in some aspects, but fast in others. Just like anything, there's tradeoffs

quick ledge
#

Thanks for the link hem

#

I'm gonna bookmark it

plucky ridge
#

👍 I'm actually going through it again myself

#

I try to go through tutorials of languages periodically so I can try to retain some knowledge from them

#

I do the same with Python from time to time as well, although I don't need to nearly as often

scenic blaze
#

There's a lot we can do to speed up Python algorithms, but they involve external libraries and deep understanding of algorithms and vectorization

plucky ridge
#

Or writing all the heavy lifting bits in other languages while using Python to call those optimized bits

#

(which is what those other libraries have done for us, in most cases)

rancid forge
#

i finally figured out why my minecraft was failing miserably: it was because of 'Slight' GUI Modifications

red willow
#

I need to learn about some new libraries

#

I am sure there are some great ones out there I am not leveraging yet

rough sapphire
#

Hi. I was looking for some help regarding powerlevel10k. Could you please help me with this error in my terminal?

Last login: Thu Jul 30 on ttys002
/Users/useruser/.cache/p10k-instant-prompt-useruser.zsh:local:28: key: inconsistent type for assignment

_p9k_dump_instant_prompt:217: parse error near }' _p9k_dump_instant_prompt:zcompile:331: can't read file: /Users/useruser/.cache/p10k-instant-prompt-useruser.zsh _p9k_dump_state:53: parse error near )'
_p9k_dump_state:zcompile:23: can't read file: /Users/useruser/.cache/p10k-dump-useruser.zsh

??

errant wyvern
#

Did this dude really spam his question on all channels

blazing spoke
#

@rough sapphire Don't post a question in all channels, especially offtopic

#

lol

red willow
#

I think he did @errant wyvern

blazing spoke
#

Or just ask in a relevant channel from the Topical Chat area

errant wyvern
#

w h a t

sand goblet
#

oh hey

#

google's launched their new social network

red willow
#

oh wow

#

so now we can stalk the people we follow

ancient minnow
#

Wasnt that already possible with Snapchat?

rough sapphire
#

what's a snapchat

#

lol

#

Google Maps is pretty much the go-to app for navigation these days
That's a weird way of spelling OsmAnd, which offers offline maps and uses OpenStreetMap: https://osmand.net/ / https://en.wikipedia.org/wiki/OpenStreetMap

OpenStreetMap (OSM) is a collaborative project to create a free editable map of the world. The geodata underlying the map is considered the primary output of the project. The creation and growth of OSM has been motivated by restrictions on use or availability of map data acros...

rough sapphire
#

I can't stand using Google for navigation. They've moved towards this thing where their interface doesn't want to teach me where I'm going, but rather would prefer to lead me around by the nose. It's hard to articulate how its changed over time but I no logner enjoy it.

Also, its objectively bad design. There should be minimal interface the moment I start driving, but instead, it constantly wants to think that every touch of the screen is the desire to reroute or something.

And then I can't escape feeling like its trying to lead me to go shopping rather than getting me where I'm trying to go.

And yeah. TLDR, I just dont use GPS anymore. I would have to be desperately lost to even consider it. Instead, I study maps before I leave, and then go.

#

To be honest, all these types of tools are more and more becoming the sorts of things that suckers use.

#

And it will only get worse.

twilit hull
#

k..kool!

rough sapphire
#

hi

#

anyone here

scenic blaze
#

No

rough sapphire
#

it is closed

#

can u say
if my spotify is synced
i wanna see if it is
just say the name of the song

rough sapphire
#

I need serious input on something.
Should I use twitter?
There are many different pros and cons to using Twitter.
Twitter provides a good platform to build a community, and connect with people.
But at the same time, twitter is can be very toxic, especially twitter replies.
I'd like informed opinions on this topic.

#

is this a homework essay?

remote socket
#

@rough sapphire After being on Twitter for not that long, I'd say you probably shouldn't do it. The platform just seems to get more toxic every day. Maybe I'm just looking in the wrong places, but it's been a bad experience for me overall and I'm not even following drama users.

surreal tusk
#

I end up getting linked to a lot of twitter threads by co workers and have gotten the same sense, but I would add that there are specific niches where twitter is a huge part of the community and might make it worth joining. Science twitter, for example, is a weirdly big deal

rough sapphire
#

Yes, this is one of the biggest cons I've noticed

#

@surreal tusk can you elaborate on specific niches, what does that look like?

surreal tusk
#

Admittedly, I really only have experience with science twitter and am extrapolating the existence of that community to assume that other, similar, communities exist. For science twitter, twitter has become a forum for live discussion about papers. PIs or their lab members will tweet out a new publication/preprint and several threads will grow discussing the paper or it's connection to other work in the field. It's a pretty good way of understanding how knowledge within a field is being built and connected. You can find essentially the same information in various review papers that come out a few times a year but I find that much less intuitive or organic compared to twitter threads. The 'go down the rabbit hole' tendency of twitter, which can make drama end up in just a cacophany of horror, moslty works to the advantage of the discussion in this case and only occassionally leads to a cacophany of horror

rough sapphire
#

I see, thank you! This is super informative

#

@rough sapphire no, it's not a homework essay

rough sapphire
#

Hey, Which spotify playlists do you think is amazing?

bleak rain
#

My own

#

Lemme share it

rough sapphire
#

Yeah! @bleak rain Thanks

bleak rain
#

This is my sadboy list

rough sapphire
#

And for reading times?

#

Like background sounds to make you not bored while reading some long documentations

bleak rain
#

I never use actual Playlist functionality

#

It's just a library of my music

#

I am extremely picky with what songs to play when

rough sapphire
#

So do I

bleak rain
#

So I am unable for the music to run its course

rough sapphire
#

Now listening Brain food and kinda bored

bleak rain
#

What genres are you into?

#

Maybe I can give you recommendations

rough sapphire
#

Not much lyrics, soothing, raining, coffee times

bleak rain
#

Ah I know just the artist

rough sapphire
#

Like cool breeze blowing, not letting you sleep, lol

bleak rain
#

Well, first of all, chet bakers stuff

#

His slow songs are real smooth

#

But for my favourite artist of all time..

rough sapphire
#

Ight! Who is it?

bleak rain
ancient minnow
#

Lol i like that name, sleepy fish

bleak rain
#

Especially beneath the waves and my room becomes the sea

rough sapphire
#

Started Ched bakers

#

Its soothing

#

I fall in love too easily

bleak rain
#

It is isn't it

rough sapphire
#

Yeahhhh

bleak rain
#

I fall in love, too easily~~

#

I fall in love, too fast..

#

I fall in love, so terribly hard

#

For love to ever last

rough sapphire
#

Lol, Don't fall for love

#

you will get hurt

bleak rain
#

My heart should be well schooled

rough sapphire
#

Stand against love

bleak rain
#

Because Ive been fooled in the past

rough sapphire
#

Be a programmer... make your pc, your gf

#

The lyrics..amazing

#

Lol, I was just playing around

bleak rain
#

But still I fall in love too easily