#ot1-perplexing-regexing

1 messages · Page 421 of 1

lost frigate
#

I am self conscious in dreams?

meager ledge
#

U could be wrong
@lost frigate im not saying were living in a simulation, but its possible

lost frigate
#

Not that part

#

Nvm

meager ledge
#

I am self conscious in dreams?
@lost frigate thats lucid dreaming, but dreams are the brain doing random things

#

its like a bubble in a simulation in which another simulation is happening

lost frigate
#

How have I started lucid dreaming sometimes but when I actually learnt how it didn’t work

#

Tf

plucky ridge
#

You wanted it too badly

lost frigate
#

True

#

That would make sense

meager ledge
#

yes i read that over excitement might make you wake up

lost frigate
#

It was fun tho

plucky ridge
#

Any strong overriding thing.

plucky ridge
#

Caffeine, anxiety, etc.

lost frigate
#

I got to melt someone’s face off using some sort off spray

gentle moss
#

¬_¬

plucky ridge
#

@gentle moss Well played

meager ledge
#

ofcourse its fun its free drugs

#

xD

lost frigate
#

Lol

gentle moss
#

it's the ability to experience, live through, create, whatever an entire universe in your own consciousness

#

"free drugs" undersells it

sand goblet
#

I can do that without sleeping

meager ledge
#

not as realistic tho

gentle moss
#

check out a short movie called "Waking Life"

sand goblet
#

It's pretty realistic

#

I learned how to do it when I was messing around with the tulpa stuff a while back

lost frigate
#

I was kinda there but I could control myself and what I did but not the environment

meager ledge
#

like irl

lost frigate
#

No in the dream😂

gentle moss
#

i've had a couple of dozen lucid dreams in my life

sand goblet
#

my "wonderland" has remained a bigass desert beach for years though

gentle moss
#

the moment you realise you're "awake" everything becomes strange.

lost frigate
#

Lmao

plucky ridge
#

I'm not overly creative, so I'm usually content letting the dreams go naturally

meager ledge
#

No in the dream😂
@lost frigate i meant the dream was like real life because you cant control the enviroment

lost frigate
#

No it wasn’t real life

#

Cuz me and my friends were different if u know what I mean

#

They had the same personalities as my friends but they had different names and body types you know?

#

But

#

I whooped this crazy ladies ass in the dream so I’m happy😂

sand goblet
#

karen'n't?

#

Dreams are weird

lost frigate
#

Not rlly

#

Yah

#

Likes she had this spray that “melted ur skin” but that shit don’t even hurt me

#

Then I spray her less than a second and she falls over and starts crying

#

She said” someone sprayed me when I was a kid@

#

Like tf

#

Did I ask?

eager trout
#

government: *plans on banning tiktok*
the whole of reddit: well boys, we finally did it

rough sapphire
#

we did it, reddit!

unreal gale
#

ooooh yes! reddit wholesome 100 keanu breathtaking big chungus! fortnite bad, minecraft good, tik tok bad reddit good! reddit made ALL the best memes you guys! oof epic bruh moment band kid

rough sapphire
#

EDIT: Thanks for the gold, kind stranger!

gentle moss
#

this is totally just dick waving from the administration because a bunch of K-Pop fans made them look like idiots on their campaign relaunch

#

guess they'll have to shut down CHX, AMC, Legendary Entertainment, etc, etc too

#

since they're chinese owned.

#

oh yeah and General Electric

#

awww shit even Riot Games is majority chinese owned.

unreal gale
#

Im not informed on the whole thing but its because of kpop fans? Do they not realise South Korea is not China lmao

gentle moss
#

long and short: they tried to hold a rally and it seemed like there was loads of interest (some people in the campaign said up to a million) then claimed they sold out the venue (19,000 people) but only 6,000 people showed up.

#

apparently kids on tiktok and kpop fans had been using zipcodes to register tickets with no intention of showing up

undone berry
#

I mean. They also went after Huawei, I think it is pretty indicative of a genuine anti-Chinese sentiment from them

gentle moss
#

yeah and the FCC is getting shit for that too because

#

"WHO THE FUCK ELSE IS MAKING 5G EQUIPMENT ON THAT SCALE!?!"

plucky ridge
#

Your mom

gentle moss
#

that explains the first 27 years of thought control

#

🤔

shut knoll
#

Hi

surreal otter
#

hi

halcyon mantle
#

My real name is Rob

#

Rob Banks

rough sapphire
#

hello rob

rough sapphire
#

My real name is Scott.

#

im actually shocked

soft violet
#

@unreal gale Pretty sure South Korea is in a manufacturing real estate deal with China.

#

Everyone's in bed with everyone, so it would seem.

#

Not that we should let that discourage efforts to buy with thought to whose death and misery we're subsidising with our purchases.

#

Or what decimations of ecology we're encouraging.

#

There are costs greater than the financial and they come due.

#

Think on that the next time you think "Yeah, but it's cheap. I can't afford the more expensive option."

#

Because you make up for it with the blood and freedom of yourself and others and the health of the ecology, which is our life support system. We fuck with that at our peril.

summer rampart
#

@wispy garnet vimium is an extension that gives you vim shortcuts for navigating the browser (like switching tabs, etc)

wispy garnet
#

Yeah I use vimium and love it

rough sapphire
#

oh wow

summer rampart
#

firenvim embeds a neovim instance in any text fields you select in your browser

rough sapphire
#

so this is why people buy keyboards that don't have the arrow keys or numpad

wispy garnet
#

I also use a tiling window manager

#

I think it makes me more efficient

summer rampart
#

firenvim embeds a neovim instance in any text fields you select in your browser
which means you can use your own customized editor to write text in text fields

rough sapphire
#

if it's useless, why even have the option at all

soft violet
#

A minor excersise in paradox. Such uselessness provides a subject of mockery, which, if that is considered a use, causes it to not be useless.

#

So you could, at best, mock it for being mostly useless and for it being described useless when it is, in fact, not.

#

For the aforementioned reason.

graceful basin
#

oh wow, windows terminal supports ANSI escape codes

topaz aurora
#

I've outputed RGB colors in there as well I believe

dapper jasper
#

does anyone know any number generators or statistics generator i can run in the background to look like im monitoring a server

#

could just use print(random.randint(0,100000000)) but thatll be one line and theres no graphics like graphs

gentle moss
#

you on linux?

#

hexdump -C < /dev/urandom | grep "ca fe"

dapper jasper
#

nope

#

windows

#

i was thinking one of those hacker looking things

#

made a simple unoptimized one tho

import random
import time
datrange = 9999999999
fps = 0

while True:
    time.sleep(0.05)
    fps += 1
    if fps >60:
        fps = 0
    a = random.randint(0,datrange)
    b = random.randint(0,datrange)
    c = random.randint(0,datrange)
    d = random.randint(0,datrange)
    e = random.randint(0,datrange)
    f = random.randint(0,datrange)
    g = random.randint(0,datrange)
    print(str(a).zfill(10)+ " KB ",str(b).zfill(10)+ " KB ",str(c).zfill(10)+ " KB ",str(d).zfill(10)+ " KB ",str(e).zfill(10)+ " KB ",str(f).zfill(10)+ " KB ",str(g).zfill(10)+ " KB "," ",str((a+b+c+d+e+f+g)/1000).zfill(13)+" MB","  ",str(round(((fps/60)*1048576)+17476,1)).zfill(9)+" RUNTIME")
#

yea the kb mb runtime thing is pure garbage

polar vigil
#

I downloaded skype because my client wanted to use it. Now when I open my computer it pops up and runs in the background. I turned it off from start up and somehow it stills comes back after every time. When I try to force it to close from task manager it just appears back. Is it like a virus??

dapper jasper
#

im not 100% sure how to close skype but im assuming its like discord

#

theres a little arrow thing in the task bar at the left

#

click it and right click skype

polar vigil
#

No it's not like discord

plucky ridge
#

Tera you might have to tell it to not load on startup within Skype itself

sand goblet
#

Skype is a little virus-like unfortunately

polar vigil
#

Fuck skype

plucky ridge
#

Rather than just in the Startup stuff

polar vigil
#

oh

sand goblet
#

This is a well known problem with Skype on windows 10

polar vigil
#

Yeah

dapper jasper
#

well what the heck

sand goblet
#

Especially now that they've discontinued the standalone version

dapper jasper
#

fuck skype

sand goblet
#

You're basically stuck with the UWP one

polar vigil
#

Why would they make it that way, they make people hate it

sand goblet
#

No idea

#

I assume it'll die when they're done adding stuff to Teams

dapper jasper
#

have you heard of apple and their redicilious os design

sand goblet
#

OSX is fine tbh

plucky ridge
#

It honestly feels like there's two teams at Microsoft, one side doing actually useful and neat stuff and the other is just kicking the side of the box until it fits

sand goblet
#

Yup!

dapper jasper
#

yea sounds about right

plucky ridge
#

It makes 0 sense

polar vigil
#

Web version of teams is kind of shitty

#

App is fine in my opinion

#

Web version doesn't always mute you

dapper jasper
#

i guess but website ones are good if you dont wanna wait 10 mins to watch netflix on a potato

#

i cant even start todolist reliably on my i3 potato

#

so i made my own in python using pickle

polar vigil
#

I don't hate website versions of apps, but if they make it shit that is different thing

dapper jasper
#

is there a youtube app for desktop?

polar vigil
#

Maybe, but website is good so why should they

#

On phones there are youtube

dapper jasper
#

yea exactly why an app version of netflix if the web is faster and theres more options

#

but mobile too

polar vigil
#

Apps are good for phones

dapper jasper
#

yea i got wierded out when my friend used reddit web instead of the app on mobile

soft violet
#

There was a YouTube thing for linux, but I don't think it's worked for a long time.

polar vigil
#

I use reddit on web because I don't use it that often

dapper jasper
#

my friend uses it often

#

god i feel wierded out seeing him on that 5 hours a day

polar vigil
#

Reddit is 100% based on web so it's still very good

dapper jasper
#

i guess

polar vigil
#

5 hours a day on reddit is some hardcore shit

dapper jasper
#

i would do that but i have a shit ton of school work to do

#

schools starting on wednesday next week in my country

polar vigil
#

I have month left, but it rains all the time here in Finland

#

Like 1 - 2 hour break and starts to rain again

dapper jasper
#

here in malaysia 27C is cold for how ridiculously hot it is

polar vigil
#

June was fine tho

dapper jasper
#

37C is normal here

#

damn must be nice there in finland

polar vigil
#

20C is hot

dapper jasper
#

would suck if we suddenly somehow change locations

polar vigil
#

it's like -25C to -15C on winter

#

Some good shit

dapper jasper
#

we dont get winter here

#

just hot,hot,hot and more hot

#

occasionally more hot

polar vigil
#

I feel like I enjoy summer much more because it's like 2-3 months here

#

maybe 4

dapper jasper
#

how hot is it then?

polar vigil
#

20C normally

#

26C

dapper jasper
#

wait what

#

god that sounds nice if i got used to it

polar vigil
#

But...

#

There are TONS of mosquitoes

dapper jasper
#

oh fuck that shit im out

polar vigil
#

When you go outside like 100 attacks at you

dapper jasper
#

damn

#

ah well i got work to do

polar vigil
#

I like swimming and biking because they don't bother

dapper jasper
#

oh youre right

#

i kinda feel bad for my classmates who havent done any work this past month

polar vigil
#

Where do you live?

dapper jasper
#

we got around 230 assignments

polar vigil
#

which country

dapper jasper
#

um somewhere

#

i rather not disclose it

polar vigil
#

ok

#

asia at least?

dapper jasper
#

yep

polar vigil
#

cool

dapper jasper
#

imma head out

#

enjoy finland my dude

polar vigil
#

alright

graceful basin
#

Right?

sand goblet
#

Wrong

#

You own all dotted versions of an address

graceful basin
#

Interesting

undone berry
#

I thought that was a gmail specific thing?

#

or is it universal?

graceful basin
#

It is from what I can tell

#

Otherwise someone would not be able to create a twitch account under my email address

sand goblet
#

It's a gmail thing

#

afaik

graceful basin
#

I already have a twitch account, after all.

rough sapphire
#

I need a crash course in data structures and algorithms

#

exams are next month

#

any suggestions on resources?

rough sapphire
#

My lecture is horrible

sand goblet
#

7 years old post though

undone berry
#

the MIT one is great

#

you can figure out the relevant lectures

#

and just play them at 1.5x speed

rough sapphire
#

thanks that looks helpful

#

opinion on sending this as an easter egg in an api xd

#

also - if i had an api that served profiles, and they had their profile private, would 401 or 403 be better

#

🤔

sand goblet
#

it's a common easter egg

#

HTTP 732: Fucking Unic💩de

undone berry
#

the whole of 2.4 is great

sand goblet
#

it is, haha

#

I also appreciate 759 from my PHP days

rough sapphire
#

xd

#

also - if i had an api that served profiles, and they had their profile private, would 401 or 403 be better
serious question here tho D:

sand goblet
#

surely 404 would be more appropriate

rough sapphire
#

thats not found

sand goblet
#

exactly

rough sapphire
#

the case im asking about is if they HAVE a profile but it's private

sand goblet
#

you're missing the point

#

this is just what you tell the client

rough sapphire
#

well yea

sand goblet
#

if a user has a private profile, they may not want people to know they have a profile at all

rough sapphire
#

hm

#

true

sand goblet
#

roughly half of dealing with status codes is thinking about considerations like this

rough sapphire
#

so

#

no error message either?

sand goblet
#

you'd return the same error you would for not found

rough sapphire
#

hm oki

#

so then i should at least let the client know "User not found or profile is private" should i not?

sand goblet
#

Depends on the context really

rough sapphire
#

what things would imply it? or not?

sand goblet
#

I guess it can't hurt

rough sapphire
#

alrighty

tight meadow
#

So here's the situation: I am running a 5e pre written book for 3 players that are currently 3rd level. They are about to go to a "dungeon," but on their way to the "dungeon" there is an abandoned village. Three miles south of the village is a shrine that contains 10 orcs and 2 ogres. One of the orcs is on a tower and can spot any characters that approach the shrine at day. If the characters aproach at night, they won't get spotted. How am I supposed to balance this encounter? While the players are meant to play strategically, they are new to d&d and I'm afraid they will bum rush the shrine unless if I tell them the dangers of doing so.

small fossil
#

what level are they?

tight meadow
#

3

#

the party consists of a bard, a wizard, and a fighter

small fossil
#

Fudge dice aha

#

I think in order to not make it obvious that you're turning it down Is to hurt them but balance the damage

#

If it's too easy they won't get stratigic but if you hit them hard at the start they might re consider their attack strategy

tight meadow
#

makes sense

#

thanks

rough sapphire
#

so ..

#

um

#

my cpu speed i um

#

my cpu is all out of wack

#

is that um.... windows 7

#

yes

#

why cant i use windows 7

#

idk xd

#

ngl tho

#

this seems .. odd

#

it gets work done

#

tru

#

my cpu is even worse

#

but like, blender has one of my 2 cores completely maxed out, so blender is frozen, and my laptop's fans are going crazy, yet i can do other stuff and be fine

#

oh

#

rip

#

i think resource monitor is broken

#

well i say mine is broken cuz it wasnt showing one core maxed, which is clearly whats happening

#

cuz it hasnt dropped below 50% in a bit, and blender is singlethreaded,

#

btw wtf is python one of my friends dragged me in here

#

a programming language?

#

oh

#

thats plasma

#

cant fool me

#

:D

#

@rough sapphire that looks good as f

#

Welcome to linux

#

ok so like

#

is this saying it's doing cpu render

#

or its using the iGPU

#

cuz i swear intel integrated supports opencl

#

Probabvly CPU

#

Start a render and see how many squares you see

#

4

#

If it's more than one, it's CPU

#

oh

#

so like

#

(Unless you have multiple GPU's)

#

well i just have an integrated gpu

#

and so blender isnt even using that?

#

It's likely not a big difference between your CPU and integrated GPU

#

Cycles runs surprisingly great on CPU's

#

well i mean if blender is trying to render (gpu) and animate (cpu) at the same time there is

#

and ye

#

i miss the blender game engine tho.. like

#

can you imagine eevee's realtime rendering with the old blender game engine :o

#

Yeah, RIP that

#

Maybe it'll come back, likely not though

#

sads

#

Other open source projects like Godot do the job just fine though :)

#

wait

#

my gpu supports opencl

#

i just looked

#

Did you install OpenCL?

#

i didnt realize it didnt come with

#

I think you need to install it

#

wonder if being on the dev channel of windows will break if i install the beta intel graphics drivers

#

that minor moment of panic when both your screens go black

#

what the darn does dev options do

#

wh

#

what that do

#

idk

#

i dont have it

#

and i have ptb

#

i thought that was ahead of canary

#

wth is dat

#

am i suppost to have that?

#

or am i not support so have those options

#

¯_(ツ)_/¯

#

dunno

open flame
#

I loathe the syntactic sugar in Rails.

#

Main monolith is in rails and the data processing (me) is in Python. I get so annoyed when I have to do rails stuff.

sand goblet
#

@rough sapphire you're not supposed to have those

#

did you run some javascript someone gave you or something?

rough sapphire
#

no

#

i just woke up with it

#

how do i get rid of it

#

i dont wanna get deactivated

#

or banned

#

uninstall and reinstall?

#

actually..

#

wait

#

@rough sapphire

#

you have bandaged bd

#

a client mod

#

that explains why you deleted the original ss and cropped it

#

yea i have bd does that why i have it

#

probably.

#

i use 1 plugin and its msg logger

#

bd is also against tos.

#

so

#

oh

#

i didn;t know that

#

well shoot

sand goblet
#

yeah, betterdiscord is both unsafe and breaks the ToS

#

all client mods break the ToS

#

also, it's theorised that discord knows when you try the experiments

#

they're basically just there for discord's own staff to do live-fire testing

rough sapphire
#

i mean i wouldnt call bd itself unsafe

#

plugins yea

#

but still against tos

sand goblet
#

BD doesn't vet its plugins, and the original devs were known for doing all kinds of shitty things to users

#

eg, automatically joining them to servers

rough sapphire
#

ah

#

i tried it once, but just for themes, but discord uninjected it and so i just never reinstalled

#

off topic, but does anyone know an efficient way to make fractals in blender?

#

i tried sverchok's node-based geometry but blender kinda just died

#

and blender has no ray marching

violet sedge
#

@rough sapphire ni

rough sapphire
#

wtf how u here

sand inlet
azure hedge
#

so for the code jam you need to fork the repo and make the changes, then make a PR?

oak tangle
#

For the qualifier or for the actual code jam?

azure hedge
#

for the qualifier

oak tangle
#

You don't have to fork/clone the repository for the qualifier; you just have to download the relevant file (by any means) and submit your solution using the sign-up form linked in the README

azure hedge
#

ah, okay

quick ledge
#

guys is %s placeholder things called c-strings?

bleak rain
#

Never heard of that term though

#

How come you are not using f-strings?

quick ledge
#

i use f strings dw

bleak rain
#

phew

round rose
#

I think %s is referred to as C-style formatting or something along those lines

bleak rain
#

(there are times when you want to use %s and the like, but rare)

quick ledge
#

yeah i was wondering how to turn a particular use of %s into f strings

round rose
#

It seems like the word c-string only refers to a type of underwear

quick ledge
#
rec = [(105,15,'EE'),(106,16,'FF')]
cursorbro.executemany("INSERT INTO ITEM VALUES(%s,%s,%s)",rec)```
#

i was wondering how to change this into fstrings

#

i know how to do it with .format() but could not figure out using f-strings

#
rec = [(105,15,'EE'),(106,16,'FF')]
cursorbro.executemany("INSERT INTO ITEM VALUES(%s,%s,%s)",rec)```

this is an example from mySQL connectivty done in my CS class

round rose
#

tuple unpacking seems to be a good use case for % formatting

quick ledge
#

dang, i thought i could say good bye to %

lofty dirge
#

noooooo

#

do you want little bobby tables? Because that's how you get little bobby tables

plucky ridge
#

Yeah you really really don't want to change the formatting they suggest you use

#

It's for sanitizing the inputs and it's for safety

quick ledge
#

do you want little bobby tables? Because that's how you get little bobby tables
@lofty dirge what are bobby tables?😂

plucky ridge
#

Specifically for SQL stuff, I mean

lofty dirge
quick ledge
#

therees an xkcd on that right

#

right as i was typing

round rose
#

there's an xkcd on everything

quick ledge
#

yes

lofty dirge
undone berry
#

Her daughter is named Help I'm trapped in a driver's license factory.
I'd not seen that part before

lofty dirge
#

it's alt text

undone berry
#

yeah, I know - I just hadn't seen it for this XKCD

round rose
#

I guess if you really want to use f-strings you could wrap the info into a class that overloads __format__

lofty dirge
#

No, bad developer, use safe method

quick ledge
gentle moss
#

it pleases me someone made that.

quick ledge
#

the website or the xkcd?

gentle moss
#

the website

quick ledge
#

same

plucky ridge
#

Yeah that's really handy information, honestly

#

Jesus, I don't think I ever truly realized how small Sublime's footprint really is

gentle moss
#

well limes are quite small so i wasn't sure what you were expecting

#

they must have tiny feet

plucky ridge
#

Just for comparison

lofty dirge
#

Sublime isn't Electron is it?

undone berry
#

no

lofty dirge
#

well, that explains code problem

plucky ridge
#

Fair

#

Sublime is mostly Python I think

#

Or at least the extensions are in Python

sand goblet
#

I think it's native with a python backend

undone berry
#

yeah, the API is python

#

but it natively supports a bunch of stuff

plucky ridge
#

Gotcha gotcha

#

Couldn't remember

undone berry
#

oh wow - it released in 2008

#

I thought it was newer than that

sand goblet
#

It's one of the only truly closed source editors out there that a lot of people use

#

Which is an achievement given the gnu diehards in every programming community

plucky ridge
#

I'm sure the ability to use it indefinitely without paying helps.

sand goblet
#

True, but most editors are also free

#

It's a really interesting situation

plucky ridge
#

It does show that a truly good product can thrive

sand goblet
#

It's interesting if you look at the effect it's had on the market

#

It appeared when there was a gap in the GUI power user editor market

#

And now every other editor out there has stolen its features

plucky ridge
#

I don't know what it says about me that I got all giggly and excited that there's an update to the Language Manual for Reason

#

Oh thank god they added some clarification on their Pipe First and Pipe Last operators

#

For some reason that just wasn't clicking for me

proper needle
plucky ridge
#

I was so friggin' confident I had this whole add-in thing figured out. Now I can't get the server to properly respond to Excel

#

I mean I can on my machine, but not on the others

quick ledge
#

welp

plucky ridge
#

I think I have it figured out....

#

I know what I need to do, I just don't know how

#

I need to be able to respond to a http OPTIONS request but I don't know how

scenic blaze
#

Politely, but firmly

plucky ridge
#

I just feel exhausted and defeated.

#

Fuck it, I'm going with Python

#

Well that didn't fix it

lofty dirge
#

HTTP Options in IIS?

errant wyvern
#

2%. GWvertiPeepoSalute

honest star
#

Maybe I don't go on this work trip! Stupid work website to book travel is refusing to letting me book a flight and I'm about to lose my mind.

proven mantle
#

Guis

#

Its 10 past 4 and I can't sleep

#

Welp

#

Guess that's just not happening then

scenic blaze
#

F

undone berry
#

why are there just no soft drinks that aren't super sweet?

rough sapphire
#

why are there just no alcoholic drinks that don't have alcohol in them?

undone berry
#

hm - there are

#

non alcoholic wine and beer

rough sapphire
#

non alcoholic beer I believe is just low alcohol..

#

like ~ 1%.. could be wrong

undone berry
#

I don't think so. Some might be, but not all of it

rough sapphire
#

I've never seen non alcoholic wine before

#

what is that.. grape juice lol

#

I crack myself up XD

undone berry
#

I know someone who can't drink for medical reasons, but they used to drink a fair amount. Now they drink a lot of both non-alco whine and beer

rough sapphire
#

non alcoholic beer I believe is just low alcohol..
@rough sapphire here in Estonia, non-alcoholic beer is legally required to have even less alcohol (~0.05%) than soft drinks (up to 0.5%)

sand goblet
#

Soft drinks are just drinks without alcohol

#

Water is a soft drink

#

Hard drinks, eg hard lemonade, have alcohol

rough sapphire
#

wow soft drinks can contain alcohol.. that's news to me

#

that's amazing.. I wonder which ones have that much

sand goblet
#

They can once the focus isn't the alcohol and it's super low haha

undone berry
#

there was a thing here where Innocent brand smoothies started fermenting in shops and turning alcoholic

rough sapphire
#

but still.. how do they make it in to the mix..

undone berry
#

I guess it's to account for that on a tiny scale

rough sapphire
#

ahh

sand goblet
#

Most things do have a touch of alcohol in them

#

Since it comes from fermented sugar

undone berry
#

bats and stuff often get drunk off of rotting plums

rough sapphire
#

cool... I've never seen a label say that outright I guess

rough sapphire
#

where to start version number of software? 0.1.0 or 1.0.0

proven mantle
#

0.0.1

solid pollen
#

For me, it depends on how stable the software is

#

If it is still in development and the API/design will often change, I start at major 0, so 0.1.0, but if it is a first production ready release I start at major 1, 1.0.0

topaz aurora
#

I generally tag the "proof of concept" with 0.0.0

#

Then start with 0.1.0

rough sapphire
#

i think i will start at 1.0.0 because is now release version and then start from here.

gentle moss
#

alpha-X.X.X, beta-X.X.X, rc-X.X.X (release candidate), 1.0.0

#

do people even name shit like that anymore? i remember seeing that sort of scheme a while ago but less so now

rough sapphire
#

Linux

#

Is setting up Linux hard?

undone berry
#

Not generally

soft violet
#

Ubuntu makes it pretty easy.

#

You've got all your shit backed up to somewhere external?

#

In case of "Oh, shit. I shouldn't have told it to do that."

#

If you must run Kali, just do it from a livedvd/liveusb.

#

Don't have it as your primary OS. There are more fitting options.

#

@rough sapphire

rough sapphire
#

@blazing spoke

soft violet
#

Bzzzt.

rough sapphire
#

when are the times you get your files deleted anyways 🤔

blazing spoke
#

None

#

if you are dual booting

rough sapphire
#

I mean why have backup 🤔

blazing spoke
#

in case you mess something up

rough sapphire
#

I don't want dual boot Y.T made it scary

blazing spoke
#

Lol no

#

It is easy

soft violet
#

When Windows throws tantrums or if you don't know what you're doing and overwrite shit you didn't mean to.

blazing spoke
#

I dual booted without backing up anything, it went fine

rough sapphire
#

When I have a laptop I want to setup as clean as it can be😂

blazing spoke
#

But it is always a good idea to make a backup

soft violet
#

It can go fine. Sometimes, shit happens with stuff in general. That's all I'm saying.

rough sapphire
#

Is downloading kali limux easy? and easy to change os?

soft violet
#

Is this for a daily driver?

blazing spoke
#

Start with something simpler?

rough sapphire
#

||If you remembered or know.. I broke my mom's laptop cause I was unknowledge about os||

blazing spoke
#

You don't change OS, it is all Linux

undone berry
#

It can go fine. Sometimes, shit happens with stuff in general. That's all I'm saying.
@soft violet

The universal law. Shit does in fact happen.

blazing spoke
#

You can switch Desktop Enviroments easily

rough sapphire
#

You don't change OS, it is all Linux
@blazing spoke
wut?

soft violet
#

Life, the universe and everything.

#

All is Linux.

blazing spoke
#

You can easily switch between Linux and windows, if that is what you meant

rough sapphire
#

Tf

blazing spoke
#

You just reboot

rough sapphire
#

reboot? or format?

#

Reboot or restart?

#

the disadvantages of not having laptop 😭

undone berry
#

Reboot/restart mean the same thing

soft violet
#

If you have both Windows and Linux installed, a restart permits you to use either operating system.

rough sapphire
#

oh so...
*Restarts Pc
Laptop:
Linux or Window?

soft violet
#

Correct.

blazing spoke
#

Yes

soft violet
#

Through GRUB, usually.

rough sapphire
#

What about the files?

#

knowledge +3!!!!

soft violet
#

Clarify.

rough sapphire
#

are the files from window os can be seen when you change to linux os?

soft violet
#

Typically.

rough sapphire
#

apps too?

blazing spoke
#

@rough sapphire You basically split your hard drive to 2 parts, 1 windows and one linux

#

Apps no

rough sapphire
#

oof

blazing spoke
#

You can access the windows drives from linux

#

but can't access the linux files from windows (normally)

rough sapphire
#

Damn I'm learning So much 😄

#

what's better anyways 🤔
Linux or Windows?
In everything

blazing spoke
#

Linux is faster

soft violet
#

As for Windows executables running on Linux, yes, sometimes, not always, and not always without bugs.

#

WINE

#

Mono.

rough sapphire
#

I'm temted to use linux cause of kali linux😂 Cause I wanna be a grey hat 💥

blazing spoke
#

Windows is better for certain stuff.. it is easier to install some stuff

snow echo
#

Ubuntu vs kali

blazing spoke
#

Manjaro

snow echo
#

Manjaro
@blazing spoke wats it

blazing spoke
#

A linux Distro

snow echo
#

Ohh

#

Ok

soft violet
#

If you want to play with Kali, thst's fine. Just run it off a livedvd/usb.

rough sapphire
#

is having linux and windows called dual boot?🤔

#

+2!!!

snow echo
#

Yep

blazing spoke
#

Yeah I guess so

#

try some stuff first

#

is having linux and windows called dual boot?🤔
yes

snow echo
#

No not only linux

rough sapphire
#

Wifi = 🐌 + 🐢

soft violet
#

You don't install Kali. You can, but eh. Doing that is cringey.

blazing spoke
#

Why bother with Kali

rough sapphire
#

Ohhh... so that's the guy on YT was talking about🤔
You have to backup twice

blazing spoke
#

If using really low specs (more than 10 years old laptop) go for Xfce, better specs I would say go for KDE plasma since it is most close to windows

#

If you want to try something new maybe try Gnome

rough sapphire
#

cause the files in Linux cant be seen in Windows

soft violet
#

You'd do better to look up the software Kali offers then just install it normally into your regular Linux of choice.

blazing spoke
#

Ehh, use something like google drive, if for code just use github

rough sapphire
#

Is it possible to just use Linux?
(Removing Window Os)

soft violet
#

Sure.

rough sapphire
#

so in that process no dual booting

soft violet
#

It does to keep a backup of it in case.

blazing spoke
#

You will need a backup

rough sapphire
#

Thanks! I got good help

#

now I know what to do!

#

Any suggestions to do in a new laptop before using it?🤔

blazing spoke
#

Why is your number going up? lol

soft violet
#

I'm not sure I understand your question, @rough sapphire

rough sapphire
#

It's the number of help or knowledge I acquire in this server

blazing spoke
#

That is cool

rough sapphire
#

@soft violet
Like if you get your new laptop what would you do first?

#

to prevent future stuff craziness

soft violet
#

Create a copy of the hard drive entire.

#

Back up to external storage.

#

By that I mean a disk image.

rough sapphire
#

disk image? 🤔

blazing spoke
#

Worst case senario you wipe the hard drive and restore everything

rough sapphire
#

worst?this

blazing spoke
#

Yes, if everything goes south you just use your backup

soft violet
#

@rough sapphire A byte-for byte representation of the entire span of data written to the disk, from the very begining, including the boot sector, to the very end.

rough sapphire
#

Oh

soft violet
#

You're not just copying out the files.

#

But the whole data structure on the drive, itself.

rough sapphire
#

@soft violet Oh so when I got my Laptop software destroyed or corrupted I got a new software

#

I found a guy at YT like that le me check...

soft violet
#

You can image a drive using a linux liveusb and terminal commands. There are a few dedicated boot images you can use for it, too. PING, for one. Partimage Is Not Ghost.

rough sapphire
#

Here's what he did but I don't know where he stored the files I haven't finished it yet It bored me

#

Yoi said liveusb what's that?🤔

soft violet
#

You stick it into the computer, tell the hardware to boot from it, boom.

#

Lets you run an OS without installing it.

#

Linux Mint images, for example, are lives.

#

Many are install environments

blazing spoke
#

Ubuntu, KDE Neon, Manjaro, Mint, Kubuntu and Xubuntu are all live

lime helm
#

dont know where to ask this but are there any json discord servers? Cant find any

soft violet
#

Of the lives, installing can then be done from live

blazing spoke
#

@lime helm I don't know of any, what's the problem

#

I guess a lot of dev discord servers can answer JSON questions

lime helm
#

well, how do i change a value in a json file? When i try it it just adds a whole new section. @blazing spoke

rough sapphire
#

@soft violet does live environment needs wifi to install the image?

blazing spoke
#

What programming language? @lime helm

#

Python?

lime helm
#

This is what i mean by section "355798336655065089": { "Fizz#7517": 1000 python yes

soft violet
#

@rough sapphire Aha. Now, that might be tricky.

rough sapphire
blazing spoke
#

^

#

Send some code there, they will help

soft violet
#

@rough sapphire I take it the laptop's only network capbility is through wifi?

blazing spoke
#

You don't need wifi to install an image

lime helm
#

Isnt that only for python tho'?

blazing spoke
#

@lime helm That is python

rough sapphire
#

I mean if the system is not connecting to wifi

lime helm
#

Yeah, but its also json.

blazing spoke
#

Yes ask there

#

Just try it, nobody will shout at you

rough sapphire
#

😂

soft violet
#

@rough sapphire Network connectivity is not always mandatory.

#

@rough sapphire But you want it at some point, if not during install

rough sapphire
#

The beauty of the system

blazing spoke
#

@rough sapphire You need internet to download the image ISO, then you can install that on a thumb drive, you don't need internet to install an image from the thumb drive to the device

rough sapphire
#

@soft violet I'll stick to using usb to store "snapshot"?

soft violet
#

@rough sapphire If you can fit it on there.

rough sapphire
#

how big is it?

soft violet
#

You might need to compress it.

#

I don't know. You tell me.

rough sapphire
#

lemme check

blazing spoke
#

Most fit on a 4GB USB drive

rough sapphire
#

wait only gb?

blazing spoke
#

But then you will use that just to install it

#

wait only gb?
@rough sapphire ??

rough sapphire
#

I thought it would be like 16 gb or more 😂

soft violet
#

Are we talking backing up a laptop image or fitting the liveimage on the usb?

rough sapphire
#

Fitting

blazing spoke
#

I am talking about the live image

rough sapphire
#

confusion 😂

#

brain hurts

blazing spoke
#

But with 4GB you really can't install a lot of other software on it (if you plan on using it from the live image)

#

For backing up, you will need something bigger

soft violet
#

So you download the install image/iso and "burn" it to your usb stick. Or you can use unetbootin if you are attached to the filesystem.

rough sapphire
#

so what's the best way?

Fit the whole "Liveimage/snapshot in a usb"
or

@rough sapphire You need internet to download the image ISO, then you can install that on a thumb drive, you don't need internet to install an image from the thumb drive to the device
@blazing spoke

blazing spoke
#

What no, that is the same thing

rough sapphire
#

Fudge the confusion 😂

blazing spoke
#

Liveimage in a usb is downloading the ISO image

soft violet
#

I'll shut up. Too many cooks.

blazing spoke
#

Lol

#

For a better experience you would want to install the operating system on the device

rough sapphire
#

🧠 = dead

blazing spoke
#

What's confusing you?

rough sapphire
#

Of what's its really called

blazing spoke
#

It is called a live image

rough sapphire
#

Live Image is the...,

blazing spoke
#

Operating system which you run on a flash drive

#

The ISO image is the OS which you download in order to create a live image

rough sapphire
#

Live Image == OS?

blazing spoke
#

Yes

#

It is a live image of the OS

#

So you plug the usb in, then you use the OS without installing it

rough sapphire
#

What about when the os is working and you using it now then you suddenly pull the usb what will happen? @blazing spoke

gentle moss
#

a "live image" or "live cd" is a copy of the operating system that can run from a removable media device (cd, dvd, usb stick) and only touches memory

blazing spoke
#

Well you crash the os, so anything that you didn't save goes away, but that doesn't cause damage to your laptop

gentle moss
#

and tbh, i've yanked a linux live CD and it's still run

rough sapphire
#

Ohh so I have to copy the OS before unplugging it?

gentle moss
#

knoppix used to run entirely in memory

blazing spoke
#

Yes you have to install it

#

Or just shut it down

#

But that isn't dual booting

gentle moss
#

you can get persistent data on live images now

blazing spoke
#

For dual booting you want to install the os

gentle moss
#

like say you live boot ubuntu

#

and write some code

#

if you save that to the live image's partitions

#

it's persistent

#

this only applies to USB sticks

blazing spoke
#

^

gentle moss
#

obviously not CD's or DVD's

rough sapphire
#

Usb (copy file to->) System
then install it now unplug the usb and it works!!???

gentle moss
#

sorry, i feel like i might've butted in a bit and am not fully aware of the situation

#

what are you trying to achieve?

blazing spoke
#

Dual booting, I think

rough sapphire
#

Here....

blazing spoke
#

This is what I used when I started

#

It will work for any other linux distro

gentle moss
#

if you want to TRY linux without risking fucking something up

#

using a USB stick to create a live image is probably a good way

blazing spoke
#

^

gentle moss
#

using a piece of software like Rufus and an ISO image of Ubuntu, you can create a bootable USB stick for Ubuntu

soft violet
#

@gentle moss Imaging a pristine drive, first.

blazing spoke
#

Ok I gtg

soft violet
#

For CYA purposes.

gentle moss
#

man, windows 10's fucking bootloader is a mega dickhead

#

i hate it and it puts me off creating a dual boot.

blazing spoke
#

A windows image gets everything as it was quickly

rough sapphire
#

I want to make backup of window os (in a usb) then install Kali Linux then delete window os ...

If memory corrupts and formats Laptop
I got window os (in a usb) to use the Window Os to get my laptop good as new software..

1st get Window Os file put in usb then go
2nd install linux
3rd be happy cause you got window os backup and now kick out window os bye bye

gentle moss
#
  1. don't install kali on hardware, that's not what it's for.
#
  1. you can use something like clonezilla to create a pure disk image of your windows install
#
  1. don't install kali on hardware, that's not what it's for.
soft violet
#

I keep telling them.

blazing spoke
#

Why do you want Kali?

rough sapphire
#

I won't install Kali on hardware

blazing spoke
#

If you want kali on a usb stick then you got nothing to worry about

gentle moss
#

i don't think you understand that phrase.

#

"on hardware" means installing it straight to disk

#

rather than running it in a virtual environment

#

if you want to use Kali you can do that from within windows by using virtualisation

#

something like Oracle's VirtualBox can run Kali as a "guest operating system" on top of windows

#

anyone who's using Kali is actually using Kali this way because Kali is a toolbox and not a "daily driver" operating system.

blazing spoke
#

Isn't it ok to use kali off a flash drive?

rough sapphire
#

My Orig Task is
Replace Window Os with Kali Linux

because of The useful info @gentle moss gave 😄 I got it now

gentle moss
#

usb boot kali is a thing too

#

but you shouldn't really need to

#

well, don't replace Windows with Kali is my most basic advice

blazing spoke
#

Try something more complete

rough sapphire
#

@gentle moss in the virtual box does my apps appear there as well?🤔

blazing spoke
#

Like Ubuntu

gentle moss
#

not to sound unkind, but you're obviously a bit inexperienced with these things and it's best to take it step by step

#

VirtualBox creates an entirely virtual environment that runs another OS

#

with all the tools of that OS

#

while you can still use the host OS

rough sapphire
#

Yes 😄
Just preparing for when I get my laptop

gentle moss
#

i run Ubuntu in a virtual machine on this laptop, which is Windows, so i can do Linux stuff without having to give up windows.

rough sapphire
#

But in the virtual box will your files appear there as well?

gentle moss
#

no, it's an isolated environment

rough sapphire
#

Knowledge +3!

gentle moss
#

unless you intentionally create a file bridge between Windows and Linux

#

which VirtualBox lets you do, but it's not a total novice level thing to setup

#

i highly recommend going and doing some reading

#

perhaps google something like "running Ubuntu in virtualbox"

#

and "sharing files between virtualbox and windows"

#

or something like that

rough sapphire
#

ok thanks...

gentle moss
#

no probs. 👌

rough sapphire
#

So now I'll just have to make a Window Os backup

#

not installing Linux or something

soft violet
#

A good plan.

rough sapphire
#

then use virtual box to use Kali Linux for programming or cyber security

gentle moss
#

yes

rough sapphire
#

DAMN KNOWLEDGE!!!!

gentle moss
#

wouldn't even need to backup windows doing that either

#

because you're not at risk of breaking your windows install with that method

soft violet
#

I still would image it if it was new new.

gentle moss
#

eh, i guess i'm in the minority

rough sapphire
#

just incase I broke my mom's mac software cause of os or somethings which made my heart amidst explode

gentle moss
#

i've got access to microsoft reseller panels and shit

#

any ISO / license i want baaaayyybeeeee

#

which i clearly only use for professional use in relation to the organisation i work for...

rough sapphire
#

@soft violet is it possible to use a Liveimage of a new laptop to an old laptop of the different kind?

#

so just making a old laptop go new 🧠

gentle moss
#

oh shit yeah you'd need to do a disk clone for that and it might not even work how you'd imagine

#

windows installed on laptop A if imaged / cloned to laptop B may not function properly

#

due to differences in hardware

rough sapphire
#

oof

gentle moss
#

that's a whole other ballpark of doing something. i wasn't aware you were trying to clone old -> new

#

there's this whole process called sysprep and oh my god i fucking hate it

#

and i do that shit as a job

rough sapphire
#

Wait!!!! too much for my smol brain 😂

gentle moss
#

you're better off just copying your actual files, installing all the programs again, etc, etc

#

rather than trying to clone the old laptop

rough sapphire
#

just a question
how did they made a programming language if there wasn't originally one? 🤔

soft violet
#

@rough sapphire Bad idea.

rough sapphire
#

oof

#

but if it was the same hardware?

gentle moss
#

man, even then it can be a crapshoot.

#

we used to bulk buy Dell Optiplex machines and had one default image setup to blast onto them

#

but tiny hardware revisions or shit would mean once every now and then the machine just wouldn't take the image

rough sapphire
#

oh no....

gentle moss
#

just gonna have to bite the bullet my man

rough sapphire
#

||change topic jutsu||
@gentle moss was it virtual box?

gentle moss
#

yes

#

copy all your personal files to a USB stick, write down a list of all your installed programs, if your programs let you export settings (chrome, firefox) then export them and stick them on the USB stick, etc, etc

rough sapphire
#

I'll guess i have to find where to download it

gentle moss
#

then just install it all from scratch on the new hardware

rough sapphire
#

ty

rough sapphire
#

This is so amazing 😍

#

Very smart i say. It involves math

scenic blaze
#

Haha what

#

That's great

crimson stirrup
rough sapphire
#

Hmmmm what's that

crimson stirrup
#

Chip8

sick venture
#

Say, anybody know which channel handles issues with the Reddit channel?

prisma geyser
#

Hey there! I need a suggestion

#

Am planning to buy a laptop for Android Dev

#

Could you choose for me between these two:

high verge
#

@sick venture my answer would be either #community-meta or 'there isn't one' or 'what' depending on what you mean

topaz aurora
#

Compiling Cabal in Haskell is the least fun anyone can have

#

The fact that I have to do it twice is ehhhhhhhhhhh

forest crane
#

Is there a way to fix a broken pipe without restarting a Redis connection?

sand goblet
#

No

graceful basin
#

Compiling Haskell, purescript or rust is horrible

#

Any project of notable size just takes a long time

topaz aurora
#

I'm currently building hie for both 8.6.5 and 8.8.3 with stack

#

Turns out the latter is bugged and I'll have to use cabal instead

graceful basin
#

F

rough sapphire
#

lol i have only two friends on discord

jagged fog
#

@rough sapphire how far did you get with qualifier

rough sapphire
#

am at intermediate😞

#

i can sign up as a beginner tho. Cuz a beginner i am.

jagged fog
#

Nice gj

rough sapphire
#

are you advanced

topaz aurora
#

I'm currently building hie for both 8.6.5 and 8.8.3 with stack
I'll see if GHC 8.10.1 can compile since they're backporting a few things for 8.8.4

rough sapphire
#

I am more interested in the django backend

jagged fog
#

I've done all but waiting till I get some first hand experience in dja go to submmit

rough sapphire
#

cool

viral panther
#

Imagine building things yourself instead of using pre-compiled binaries

#

cries in trying to build ghci on a RPI

topaz aurora
#

If only hie came with pre-compiled binaries for Windows

viral panther
#

Just one of many reasons why programming on Windows is terrible

topaz aurora
#

Still easier to get Haskell running in Windows compared to Arch 🤷‍♂️

#

Seriously though how do you work with GHC on Arch

viral panther
#

Yeah, Arch is fucked for Haskell

#

Something about static compilation 🤷

topaz aurora
#

I tried installing with ghcup last time

#

Turns out the swapfile couldn't take it or something about the cache being too low

viral panther
#

Heyyy

#

That's the same issue with the RPI

topaz aurora
#

I was on a VM with like, 1.5GBs of RAM and a 2GB swapfile

viral panther
#

Sounds like an RPI. Were you emulating a RISC processor as well?

topaz aurora
#

Nope

viral panther
#

BTW, can someone explain something to me?

#

Why are people so afraid of ascending?

#

Printing in Haskell is simply print "Message"

topaz aurora
#

I think it's because it already dwells with the IO monad

viral panther
#
Prelude> return "?" >>= print . ("So what" <>)
"So what?"```
topaz aurora
#

and imo how the IO monad is presented either through layers upon layers of analogies or just a rundown of the runtime can make or break future understanding of monads

viral panther
#

Even using monad notation... no fmap, no nothing else

#

It's super simple

topaz aurora
sand goblet
#

Oh it will

#

Sod's law

topaz aurora
#

oh no

#

I'm just hoping it'll reuse previously compiled binaries

chilly sinew
#

Haskell 👀

topaz aurora
#

oh no I'm building Cabal again

#

Thanks 🙂

#

That, I'm not sure

viral panther
#

n % PureF?

bleak lintel
#

I think mods can still compete

#

We'll see

viral panther
#

How are you guys gonna decide to group people together?

Say someone completed the basic requirements but their top_words function had a complexity of like O((52!)^n) or something... or maybe that was fine but their advanced requirements were done terribly. Would you guys even notice? Or is finishing the requirements all that's necessary?

#

Also, do you guys have any stats on the number of people who've completed the intermediate and advanced requirements as opposed to how many have entered?

bleak lintel
#

@viral panther finishing the qualifier is enough. we look a tiny bit into the qualified code but don't have the time to review all the submissions

#

we probably will have the stats but right now we haven't run any of the qualifiers

#

when we close the form we'll start running the qualifiers and figuring that stuff out

marble sentinel
#

@topaz aurora I recognize the kanji in your name from a rhythm game, please tell me you've heard of beatmania IIDX

#

Also hello everyone

topaz aurora
#

@marble sentinel Yep, that's it lemon_fingerguns

marble sentinel
#

@topaz aurora awesome!! Haha

#

Havent played for a while myself but my brother is super into it

topaz aurora
#

I mostly play Sound Voltex actually since the nearest IIDX cab is far away from my place

marble sentinel
#

Funny thing, my brother actually bought a IIDX machine off a friend. Its in our garage, he’s playing rn lol

#

Sound voltex 3 was great, 4 I didn’t play much and I don’t think I’ve even touched 5.

#

You could always try KSM and buy a little virgoo or rainbow brand controller

topaz aurora
#

Still saving up for one though, those things get pretty expensive

marble sentinel
#

Totally.

#

Are you saving for the cheapest available controller? The virgoo controller works flawlessly most of the time, and it's pretty budget-friendly, considering how expensive controllers in general can get.

topaz aurora
#

I'm actually considering a DIY controller as well given shipping

marble sentinel
#

That’s pretty doable as well! I’ve seen homebrew shoebox controllers before lol

frozen crane
#

@rough sapphire list.append adds a new value onto the end of the list and returns None

#

A new list isn't created, it just changes the one you already have.

rough sapphire
#

ohg

brittle timber
#

ooh, grats on mod

rough sapphire
#

anyone know how i go about deleting the purple ones

#

(gitkraken)

#

they dont show up as a branch in git

topaz aurora
#

@brittle timber Thanks lemon_pleased

brittle timber
hardy pawn
#

this channel is nsfl instead of nsfw lol

rough sapphire
#

nsf... what

#

For 🍋

#

His name was Robert Paulson Lemon

remote socket
#

@rough sapphire gitkraken hours

#

that's the good stuff right there

rough sapphire
#

yus

#

i use it for anything more than a simple commit & push

quick ledge
#

whats a gitkraken?

rough sapphire
#

git gui

remote socket
#

❤️

rough sapphire
#

:D

#

ok but

#

i can show real pretty repo

#

(not mine)

remote socket
#

seasonalbot looking pretty good

rough sapphire
#

:o

#

thicc repo

remote socket
#

ikr

rough sapphire
#

i believe nadeko gets thicc-er

#

yup

#

yellow

#

i cant make pretty repos by myself cuz no one i trust knows python D:

remote socket
#

lol

#

that yellow branch

rough sapphire
#

xd

remote socket
#

what a detour

rough sapphire
#

that red branch just goes down for a few hundred commits

#

commit message: This works
commit message: okay maybe this
commit message: oh no did i break it
commit message: WHY WON'T THIS WORK
commit message: AAAAAAAAAHHHHHHHHHHH THIS IS THE FIFTH TIME AND IT WON'T WORK AAAAAAAAAHHHHHHHHHHHHHHHHH
commit message: ok cool

#

and scott

#

yea

#

thats about it

#

😄

#

and i oop sksksk

brittle timber
#

oop

errant wyvern
#

i love commit names like that

#

i remember on the first pydis game jam how a participant committed something with the message "aaa"

sand goblet
#

Terrible commit messages

#

Funny, but terrible

errant wyvern
rough sapphire
#

Why is it not safe for lemon? ;-;

brittle timber
#

this is like artists naming their artwork levels of bad

#

meanwhile my commits are like a mini essay

gentle moss
#

3 limes in a trench coat

sand goblet
#

Limes are just small lemons, you know

rough sapphire
#

i can heck u

#

giv m owner rol or I ll heck

solid pollen
#

Maybe lemon's beard is a lime

rough sapphire
#

haha

#

I hecked pythn syntx

#

@rough sapphire

edgy pelican
#

@rough sapphire coming back to the argparse processing thing from yesterday i found i was getting a HTTP 200 but what was happening was the value inside the lambda function was being passed as the string. Basically Class().method(value).

I've since realised that the example on the docs show the nesting of a stored __call__ function sum which is outside of the value`

print(args.accumulate(args.integers))

I've been able to replicate the example code but not the lambda.

plucky ridge
#

@gentle moss I might have to enlist your help with the localhost sever thing, if I may. Turns out that the on-premises versions of Office (so all the ones denoted by a year) make an OPTIONS request instead of only GET requests and I have no clue how to manage it

gentle moss
#

oh, huh

#

nginx?

#

an options request, iirc, just specifies what is expected from a get

plucky ridge
#

Right but I have no idea how to form it

gentle moss
#

ahhh

#

in nginx you can use an if statement and a request_method check

#

then specify what to return

plucky ridge
#

Mkay. I'll poke around and if I get stuck again I'll give you a holla

#

I was originally using Rust's Rocket framework

#

Which did fine, but there's no easy explanation on how to do things other then GET or POST

gentle moss
#
if ($request_method = OPTIONS) {
  <specify a bunch of header stuff i don't remember>
  return 200;
}```
#

for a location block

#

*inside a location block

plucky ridge
#

Actually yeah, that was another thing that confused me slightly. Is it simply the config file and the executable?

gentle moss
#

preeetttty much

plucky ridge
#

Or the routing file, whatever it's called

#

I feel dumb having to ask all this super basic stuff. I wasn't able to grasp much from the docs

gentle moss
#

the docs aren't the best

plucky ridge
#

So long as it's not just me