#ot1-perplexing-regexing

1 messages Β· Page 640 of 1

thick osprey
#

Now to ponder if I should ansible most of this. pithink

jaunty wraith
#

what kind of shell scripts?

thick osprey
#

Simple stuff that gets done on each new dev-box I make.

#! bin/bash
vimdot="../dotfiles/.vimrc"

echo "Setting up vim..."

# Download plug and place in .vim directory
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

# Ensure our vimrc is in place
cp $vimdot ~

# Run plug install from cli
vim -es -u ~/.vimrc -i NONE -c "PlugInstall" -c "qa"

echo "End of line."
#

installs of python from dead-snakes. Setup vim. Setup git. All that good stuff.

#

Copy dot files over. Install the common packages needed (mysql, npm, yarn, etc).

#

torn between puppet or ansible to make some of these a little more managed. Both are daunting to pick up though.

jaunty wraith
#

I like chezmoi for this

#

for dotfiles management and bootstrapping a new machine I mean

thick osprey
#

Oh nice. A dotfile specific manager.

lost vortex
#

Went on a cruise and passed by lady liberty

eternal compass
last mantle
#

Ay lesgo, xplane 11?

uneven pine
#

Definitely is

#

The correct simulator to fly

last mantle
#

amazing weather

rain saddle
#

hi

west coyote
#

I completely agree with this. You'd be amazed at how much you don't know when you make an actual software

carmine apex
#

@rough sapphire : what is it exactly you don't like about geeks4geeks? i also have a strong dislike for it, but i can't point to anything specific so it probably looks like i'm just irrational against it

tardy rain
#

G4G's python code looks like it was written by a java dev (and probably was)

rough sapphire
#

they ask me to login/sign up everytime i open it, which is plain annoying

tardy rain
#

Idk if theres anything factually incorrect about it but its not good/idiomatic code

rough sapphire
#

they r also very spammy, like quantity over quality type things

#

search something python
1 billion g4g tutorials written by an indian guy come up which are mid quality
real good tutorials get hidden

#

plus i feel like they r not really something i would like to learn from

#

w3schools is similar, quantity over quality thing

carmine apex
#

g4g's SEO is certainly pretty good, i'll say that

rough sapphire
#

just that there are better places u can learn from

#

i am somewhat biased over g4g i admit tho

#

they r very annoying and ask me to login and sign up stare

#

aaaaaaa

polar vigil
#

Just press the X in the right corner

#

Of the login thing

#

@rough sapphire

rough sapphire
polar vigil
#

I think that site is very good to look up things fast.

#

No wonder it's always on the top of the search

#

Not the best way to do things tho

tardy rain
#

Its at the top of the search because they hacked their SEO to bits

#

Not because theyre good

west coyote
#

Yo is there a way to check what app django app the user is currently in?
For instance if you're in the chat app nd click a button it goes to accounts app and if you're in accounts app and click the same button, you go to the chat app

limpid gazelle
limpid gazelle
rough sapphire
#

I am not looking for alternatives

floral apex
#

But I've forgotten it by now since that site's not relevant to me

tardy rain
#

@high haven
mfw

high haven
#

bro

#

might as well get a cert with that much cost

#

the things people market these days

tardy rain
#

UCL in london had a deal with this company for their first year students to take this test

#

imagine

high haven
#

how come i find that educational institutions are the worst about this type of stuff

tardy rain
#

they get high off their own prestige and end up doing cult shit like this

high haven
#

its wild

floral apex
jovial oriole
#

i swear ms teams is malware

#

eats up ram and battery like jolly ranchers

#

i fucking hate it when everything just stops responding and i have to restart my computer

floral apex
jovial oriole
floral apex
#

One where its an Electron app that both uses Angular and React

jovial oriole
#

mhm

floral apex
#

And then one that uses a webview and React only

jovial oriole
#

aha, 13 percent battery life im gonna die now

last mantle
#

not work or school

floral apex
tulip cedar
last mantle
#

yes

floral apex
#

All mainstream consumer Operating systems have webviews

floral apex
jaunty wraith
#

GTK and QT are OSes?

floral apex
#

Linux

#

You know the deal on Linux, the clear divide between Gtk and Qt desktops

#

tl;dr: There's two kinds of desktop environments on Linux. Gtk based and Qt based

jaunty wraith
#

ik. was just making a joke πŸ™ƒ

violet roost
#

@narrow pecan more kladdkaka

#

sadly we currently have no round baking tins

narrow pecan
violet roost
#

they were

#

these were with butter

#

and they were even better than the last

jovial oriole
#

mm, crowdsourced dinner

jovial oriole
#

POV, you just posted a meme in a flat earth sub

surreal otter
#

lol

#

99k seems a bit much

rough sapphire
small coral
#

that's much better than me

surreal otter
#

but they claim 99k notifications

small coral
#

ok

frozen crane
#

I still don't know how they fucking work

high haven
#

bruh

frozen crane
#

bye bye 100k

high haven
#

every time i use aws this is literally me

frozen crane
#

pro tip: no aws

high haven
#

πŸ’€

frozen crane
#

jk, there's no way around it now

high haven
#

did i tell you we're trying to deploy an ML model at work

#

using aws

frozen crane
#

did I tell you me 2

high haven
#

πŸ’€

#

ahhh

#

im dead

frozen crane
#

πŸ’€

high haven
#

i like

#

talked to the aws guy at our company

frozen crane
#

we have an HPC with GPUs and shit but it's for scheduled jobs

high haven
#

and we like came up with a few ways

#

but it still came down to trying a couple things first

#

and seeing what will work

#

thats nice

#

we def dont have that

#

and im like...

#

we want to deploy a transformer model for inference...

#

bruh

tribal knot
distant hazel
#

that sounds pretty cool. do most of these ORMs not do well with type checking?

tribal knot
#

sqlalchemy has a mypy extension but it's 3rd-party, means it has to be installed, and still doesn't work for pyright

#
class User(apgorm.Model):
    name = types.VarChar(32).field()
    nick = types.VarChar(32).nullablefield()

user = await User.fetch(name="CircuitSacul")
reveal_type(user.name)  # str
reveal_type(user.nick)  # str | None
distant hazel
#

perhaps the folks in #databases might be keen on trying this too

distant hazel
#

sure

#

it looks like a library that could potentially benefit our users

tribal knot
#

maybe

#

it's kinda small and I'm really the only dev so

#

but all projects start somewhere lol

distant hazel
#

indeed! but i also suggest #databases bc maybe some regulars would be able to provide more specific feedback

tribal knot
#

true

mild abyss
#

magents work because magicks exitsa

jovial oriole
#

im not stupid enough to actually post a meme in a flat earth sub

jovial oriole
#

πŸ‘ i tried it

floral apex
#

Is that correct

jovial oriole
jaunty wraith
#

if you don't care about money, AWS is great πŸ™ƒ

jovial oriole
quick ledge
#

yeah

jovial oriole
#

keke mr.mod

quick ledge
#

we're moving to Netcup by the way hehe

jovial oriole
#

keke mr.mod

jovial oriole
narrow pecan
narrow pecan
quick ledge
#

still on Linode

narrow pecan
#

Huh, that's slower than I expected

tidal bluff
#

oooh... sticky chocolate cake. sounds lush!

soft violet
#

Chocolate cake would never be the same.

#

Maybe it'd pair well with that coffee. You know the one.

narrow pecan
narrow pecan
frozen crane
#

but I guess cloud VMs aren't """""limitlessly scalable"""""

floral apex
frozen crane
#

I want covfefe

floral apex
#

You want Jawa covfefe

frozen crane
#

NO

soft violet
frozen crane
#

is this in reference to the video made by the best and most handsome coffee man on the internet?

soft violet
#

If you're asking me...huh?

frozen crane
#

the best coffee man made a video about why civet coffee is bad. here's the gist of it:

there's actually no reason to believe that coffee beans eaten and pooped by civets are better, but people will starve/force feed them to civets to meet the manufactured demand. if you really want ethically sourced, digested coffee beans, you can swallow, poop, clean, roast, and brew them yourself. and if that disgusts you, then why do you even want civet coffee?

#

also don't try to bring the blockchain into this

soft violet
#

I was never that drawn to the notion, anyway.

tardy rain
#

its kinda poetic tho

#

you drink coffee that comes from poop

#

and then the coffee makes you go poop

#

the circle of life, its beautiful

floral apex
#

You are what you eat

acoustic moss
#

truly the circle of life

west coyote
kind cedar
#

why do python developers wear glasses?

soft violet
#

Because they can't c#.

kind cedar
#

😑 thats my line

jovial oriole
#

c# puns

#

i would travels over C's to get a # dagger just to end whoever made these

soft violet
#

Well...it had better b#.

#

A?

jovial oriole
#

dammit

#

I wanna #ly F you

#

F#? eh

soft violet
#

I've never been threatened with an octothorping, before.

paper sequoia
#

@rough sapphire sorry for ping but to respond, when I used the data param instead of json. the code got stuck the same way as the API docs auth endpoint

floral apex
tardy rain
#

Theres an objective C++?

#

One wasnt enough?

jovial oriole
floral apex
tardy rain
#

That sounds terrible tbh

#

Do people even write oop cpp code

young shoal
#

yes?

tardy rain
#

Why tho lmao imagine

violet roost
mild abyss
#

is it... a terrifying monster?

tardy rain
#

its possibly unnecessary but still roped into codebases

narrow pecan
dapper dew
#

O, OP

vernal ether
#

Speaking of which, can someone explain me this:

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()

        self.setWindowTitle("My app")

        button = QPushButton("Press Me!")

        self.setCentralWidget(button)
#

It's pyQt

narrow pecan
vernal ether
#

I thought it would be better here, it's a generic question.

#

But ok

narrow pecan
#

This is off-topic. Feel free to discuss python here too, but help channels are more suited for python questions. Including this one

honest star
frozen crane
#

I'm still confused about magnets.

young shoal
#

magnets, more like magicnets

jovial oriole
proven ermine
#

So magic

jovial oriole
visual cliff
#

#IHatePythonBecauseItsNerds!!!!!!!!

#

ok time to leave and never joing back

#

!!1

grave cove
#

Ok?

scarlet wind
#

Who asked tho

weak badger
#

Hello

#

Excited to join yay

frozen crane
royal lakeBOT
#

:ok_hand: Added python-because-its-nerds to the names list.

floral apex
mild abyss
jade sequoia
#

My dad is not a lawyer but my grand pa is.

tulip cedar
brazen ingot
#

afaik that I can use compendo and dividendo but my answer doesn't matches.

mild abyss
#

my dad is a lawyer

jovial oriole
jovial oriole
#

@low chasm i just realized i can react to messages since i have your name, people will think it is you and i can successfully frame you. brainmon

#

crime time

jovial oriole
#

you should be a lawyer, not a dev

wraith hound
distant hazel
#

no memes please @obsidian plover

tight granite
#

yo

#

i saw this new framework

#

opinions?

jaunty wraith
#

best JS framework of all time

tight granite
#

ikr

#

revolutionary ‼️

dapper dew
#

Start your Shopify free trial today: http://shopify.com/Kurzgesagt

Sources & further reading:
https://sites.google.com/view/sources-jiggle-of-existence

Look around you. Where are you? Where is this place you are occupying? Somewhere in a room, maybe in a city on a continent on a planet orbiting a star in a galaxy among billions. But… where is ...

β–Ά Play video
reef geyser
#

Ayyyy, this has been in my feed for a while

#

I put off watching it because I need the right meal to go with watching this video y'know?

distant burrow
#

I feel that

dapper dew
#

Haha it was a good lunch break watch

tidal bluff
#

I watched this yesterday πŸ˜„

#

Love Kurzgesagt

distant burrow
#

Same

sleek yarrow
#

Extremely informative

dapper dew
#

That relativity hits differently when its well animated and clearly explained

reef geyser
#

kurzgesagt is so great, I decided to learn german >.>

distant burrow
#

I found them from the "what if you bring a piece of the sun to earth", "short answer, you die."

tidal bluff
dapper dew
#

And if the moon crashed into the earth

sleek yarrow
reef geyser
#

I started from their oldest video on evolution and natural selection pressures

dapper dew
#

"shortly"+"said"

tidal bluff
reef geyser
distant burrow
#

read it again, i made a dumb typo

reef geyser
dapper dew
#

For anyone who hasn't seen their videos: https://www.youtube.com/c/inanutshell

dapper dew
reef geyser
#

totally forgot about it

sleek yarrow
reef geyser
#

Was it good?

tidal bluff
#

Effects are well done.

#

End of review.

reef geyser
#

lmao

#

that's kinda sad

distant burrow
#

alright cya, i don't belong in ot1, it gives me shivers, ot0 is where it's at fr

twin hearth
#

the fermi paradox video made me feel sad

reef geyser
#

laterrrr

tidal bluff
#

It kinda went bizarre at the end lol

dapper dew
reef geyser
#

I wanted to see everything everywhere all at once

tidal bluff
#

Don't Look Up, was fantastic though πŸ˜„

sleek yarrow
twin hearth
#

i stil havent watched it

tidal bluff
#

I mean.. you quoted what I thought of it lol

muted pebble
sleek yarrow
tidal bluff
reef geyser
#

damnit area 51

#

Stop letting the greys out

dapper dew
#

This was a great one, hit on the topic of one of my favorite book series: https://www.youtube.com/watch?v=xAUJYP8tnRE

Getting something from the kurzgesagt shop is the best way to support us and to keep our videos free for everyone. Thank You!
β–Ίβ–Ί https://kgs.link/shop. (Worldwide Shipping Available)

Sources & further reading:
https://sites.google.com/view/sources-darkforest/

The Universe is incredibly big and seems full of potential for life, with billions of...

β–Ά Play video
muted pebble
#

What's the deal with all the alien talk this year. Even the damn pentagon is saying ufos are real. I mean uaps....lol

dapper dew
distant burrow
#

What would you do if the doctor told you you were going to die in 24 hours? I would do some questionable things then then steal a car and speed so fast into a car dealership and steal another car and speed that

plush bolt
tidal bluff
#

Pentagon released nothing noteworthy. I find it incredibly hard to believe they even think it's noteworthy.

distant burrow
jovial oriole
dapper dew
plush bolt
#

Lool

jovial oriole
dapper dew
#

For sure

jovial oriole
sleek yarrow
#

πŸ˜‚

distant burrow
#

Hexagons are the bestagons

plush bolt
jovial oriole
distant burrow
#

:p

amber blaze
#

@plucky ridge hi

#

oops

dapper dew
#

?

amber blaze
#

rip me

jovial oriole
#

I can list a few channels that i like that are informative - Kurzgesagt, Minute earth, CGP grey, minute earth, veritasium, v sauce...

plush bolt
#

That was definitely intentional

amber blaze
#

....

plush bolt
#

Why even do that

amber blaze
tidal bluff
reef geyser
jovial oriole
reef geyser
#

I know, I'm saying that I want one

distant burrow
dapper dew
reef geyser
#

God, my dad is such a conspiracy theorist it scares me

#

One of the reasons the internet is bad

muted pebble
#

The most interesting was the effects on humans. They said radiation and even bizarre shit like unexplained pregnancies? It's been all over the news.

#

β˜•οΈ

#

I think some pentagon officials are smoking the good stuff

reef geyser
#

Most humans are smoking the good stuff

muted pebble
#

Indeed, lololol

jovial oriole
muted pebble
#

They must be prepping us to be ready to accept some new revolutionary tech

quartz edge
#

@bleak lintel code is ||69f78536aed99b485394f5c7dc4d79f0||, it was pretty fun, minus @raven yarrow being overeager and spoiling parts πŸ™ƒ

raven yarrow
#

πŸ‘€ i did not mean to... i told him about something in the dev tools that he completely missed and solved one of the parts without and forgot another route later on had something similar.....

quartz edge
#

that and the cipher

#

and the base64

raven yarrow
#

😒 i thought it was obvious that it was base64 my bad there

quartz edge
# bleak lintel HELL yeah

I've done a few of these so didn't take me too long, if you ever make a longer version or something I'd be happy to playtest, I love these sort of things

lime maple
jovial oriole
#

hemlock has been farming that beard for quite a bit

lime maple
#

I wonder will he ever shave

#

Clean

naive portal
#

pls help

tardy rain
#

What do you need help with

#

Youre on the internet right now

#

What are you doing

#

With the internet

grave cove
#

All of the above

sage copper
#

hey can annyone decode pyc file for me as I am using 3.9 version . needed ur help

jovial oriole
#

im playing sad music and feeling sad about graduation

#

its fills the hole in my soul

low chasm
#

you're in 9th, right?

#

that should still be high school

rough sapphire
#

i have come profesional

dapper dew
#

.

jovial oriole
jovial oriole
jovial oriole
low chasm
#

Ah

tulip cedar
#

I like this ngl

tulip cedar
mossy mango
#

the innocent time when water was wet.. it was a simpler time

jade sequoia
#

No

solemn leaf
#

xH2O is wet for x belongs to positive rational number set minus 1

#

period

floral apex
#

If water isn't wet

#

Then what makes things wet

#

When they're soaked in water

jovial oriole
#

technically due to atomic bs, you atoms never actually touch each other

#

they don't need to touch to react

#

so being "wet" is an illusion

#

fuck what did i just say

tulip cedar
#

Isn't that what I said.......?

jovial oriole
tulip cedar
#

That water isn't wet

jovial oriole
#

sorry im having a stroke a mcChicken burger

jovial oriole
#

nice

tulip cedar
#

Bro did u even read my message......?

small coral
#

what are we even talking about

jovial oriole
#

but i did

small coral
#

just settle the argument with wolfram alpha

jovial oriole
#

wait

tulip cedar
jovial oriole
#

what the hell is going on

tulip cedar
#

U should get some sleep

jovial oriole
#

i thought i said water is dry

#

i said that

#

i fucking swear

#

the hell

small coral
jovial oriole
#

god im just gonna eat my sandwich

tulip cedar
tulip cedar
small coral
#

like twitter? ok

tulip cedar
#

No not like TwT

#

They ain't normal humans

#

They are abnormal

small coral
#

ok then like reddit

tulip cedar
#

Like discord

#

If u ignore the 10 y/o's on it, ofc

gritty zinc
#

Fun question:
suppose you're using CI to automatically build binaries for your github releases.
Is there any way to provide proof that the binaries were truly built by the CI process, and not substituted with changed ones later manually?

jaunty wraith
#

generate a checksum of binary in the CI and distribute it along with the binary would be one way

#

it's not infallible though

mossy mango
#

This installation of Google Chrome is managed by your organization 🏒

#

super -- god forbid I try to chang the home page to google

jaunty wraith
jovial oriole
#

so damn annoying

#

they moved from google to microsoft products last year because of "privacy issues"

#

and when i try to sign into a desktop ms app

#

it asks me if i want my organization to control my entire device, or just the app

#

smh

mossy mango
jaunty wraith
#

eww. sharepoint

#

hope you were able to change that

mossy mango
#

which is like just a place where they post articles and stuff .. its not even got any documents or anything relevant to my dept except a link bar :p

mossy mango
jaunty wraith
#

Tab for a Cause is nice

#

it probably has a Chrome extension too

mossy mango
#

oh also it wont let me install a separate chrome instance lol

jaunty wraith
mossy mango
#

i like canary

jaunty wraith
mossy mango
#

could be useful to notice stuff that is going to break ahead of the date it is made default for everybody

jaunty wraith
#

no way to get temporary elevated rights?

mossy mango
#

if they tighten up the cross-origin javascript it could be very bad .. and that was being blocked in canary last i checked

mossy mango
jaunty wraith
jaunty wraith
mossy mango
#

like installing a second chrome

mossy mango
jaunty wraith
#

isn't that already the case?

mossy mango
#

somethonh like "blocked access from cross origin frame"

#

well it seems to work in edge and it must be working for the users or it would be basically nonfunctional

#

idk if i should try to raise that or just assume its something weird thats specific to me

jaunty wraith
#

isn't the old Edge browser deprecated or dym the new Chromium-based Edge?

mild abyss
#

thats old news

#

chromium is the base for Edge now

jovial oriole
#

why does reddit mobile just freeze and crash as soon as a I find a good post on r/r34?

mild abyss
tardy rain
#

Why do you keep making comments like that one

jovial oriole
mild abyss
#

damn he is telling the truth

jovial oriole
#

why do y'all never believe me?

#

do i look like a 4chan degenerate to you?

mild abyss
#

Nissan Skyline R34. Could be R33s, 32s, just generally Skylines. T-shirt posts will be removed. Porn will result in a ban. Please, only post cars. Don't be stupid.

mild abyss
#

im the degenerate dw

tardy rain
#

.wa short double entendre

median domeBOT
#

an ambiguity with one interpretation that is indelicate

jovial oriole
tardy rain
#

Its the figure of speech you just used

jovial oriole
#

still don't get it

#

anyway back to french

tardy rain
#

Whatever dude, look it up

floral apex
#

Double entendre is when a phrase has two meanings, a "that's what she says" moment

jovial oriole
#

you had to make an adult joke for me to understand

#

back to french work

tulip cedar
jovial oriole
tulip cedar
jovial oriole
tulip cedar
#

And no toy for u

mossy mango
jovial oriole
#

the green person agrees with me

jovial oriole
mossy mango
jovial oriole
#

it's about cars, @grave cove can confirm

grave cove
#

huh

mossy mango
shell raptor
#

Any favourite tutorials/overviews on PHP?
I need to be able to read source code, mostly.

uneven pine
#

The satanists Bible I believe

#

Jokes aside... Which version of php

shell raptor
#

also, is most PHP code that cursed? I've seen better

tardy rain
#

Why is there a bajillion top level files

floral apex
#

Too many files

uneven pine
#

Yes there is a huge difference between 5 and 7

rough sapphire
#

@remote hazel

remote hazel
rough sapphire
#

wanaa play chess

remote hazel
#

im really bad though 😩

rough sapphire
#

lets play

#

wait im giving

#

inv

#

link

remote hazel
#

oka

remote hazel
rough sapphire
#

what

rough sapphire
rough sapphire
floral apex
#

They actually put it in the movie

karmic gust
#

@whole ivy dont post chain spam

whole ivy
#

\πŸ‘

trail folio
#

What if, we sold an nft and bought it back for free? Does that allows us to use the nft avatar feature of twitter?

#

Does that make me an nft owner

floral apex
#

Tell us if that works

mild abyss
#

i mean just the nft part

topaz aurora
#

capitalism

jovial oriole
#

and nfts are nfts

#

i need not say more

mild abyss
#

i wish everyone could move but everyone dont want to

rough sapphire
#

well twitter is used by many official organisations

mild abyss
shell raptor
#

maybe you're hanging out in the wrong part of twitter

raven narwhal
#

U dont put the gpu on the motherboard

#

U put the motherboard on the gpu

last mantle
#

lol yes

#

the 4090Ti is supposedly a 4.5 slot card

#

might go up to 5 slots depending on AIB's

floral apex
#

That thing's about as large as someone's head

last mantle
#

might be a 3090Ti too

vestal briar
#

ive got a web dashboard for managing stuff, should i also create a purely utilitarian desktop gui

#

so its faster for people manually managing stuff to do so?

#

or should i keep it all in the web dashboard

rough sapphire
#

Ay

#

Ima say a fact

#

Using linux with firefox and doing all those things theoretically doesnt make you private

topaz aurora
#

Yes

#

You're only as secure as your weakest link

rough sapphire
#

So like

#

CPUs have backdoors

topaz aurora
#

how did we get here lol

rough sapphire
#

So technically

#

Intel can know everything you do

#

So like i bet its used to identify people

#

I think the only way to be anonymous tho

#

Is not letting even your computer know anything about you

topaz aurora
#

yeah, don't be on the internet at all

rough sapphire
#

Dont exist at all

#

Just existing

#

Can help the NSA track you

#

Lmao

#

Thing is

#

You can be anonymous on the internet

#

Its just that its hard

#

And not very appealing

#

You wont get to watch yt for example

#

Since google has a shit ton of trackers

tardy rain
#

What does CPUs have backdoors mean lol

rough sapphire
#

Intel Management Engine moment

#

Intel can get access to your cpu

#

Even if you have a firewall on your os it can send data through the internet

#

A physical one tho can prevent that

#

But then

#

A firewall can have a backdoor

uneven pine
#

Are we going full tinfoil hat?

gritty zinc
#

What if your tinfoil hat has a backdoor?

#

What if you have a backdoor?

rough sapphire
rough sapphire
#

Privacy is no more πŸ˜”

#

Its impossible

#

I mean its possible

#

But

#

Not convenient

orchid horizon
#

But I still don't like the kernel itself

#

It's kinda... shit

rough sapphire
#

Hmm

#

Well

#

Debian is pretty stable

#

And doesnt have to update alot

#

I mean windows is also stable

orchid horizon
#

Windows's stable releases are actually stable

#

For the most part

rough sapphire
#

Tbh i kinda feel linux is overrated in some ways

rough sapphire
#

Insider preview image moment

#

I kinda didnt use stable releases for a long time

orchid horizon
#

Well, I'd rather not experience shitty UI bugs, or worse

#

Like that FE bug lol

rough sapphire
#

Well tbh you got a point

#

Linux can have some bugs

#

Sometimes the DE stops for example

#

And it doesnt recover automatically

#

Sometimes

#

Windows tho is easy to use

orchid horizon
#

Arch allows you to break the DE

rough sapphire
#

Yea

orchid horizon
#

Sure, Arch is that OS for β€œβ€œβ€œexperienced users”””

rough sapphire
#

Thing is

orchid horizon
#

But I feel like it should have some failsafes/warnings

rough sapphire
#

Linux is overrated for the "privacy" part

#

Thing is

#

Its kinda not private

#

Cause

#

First of all

#

Streisand effect

#

Plus

#

Almost everything has a backdoor

orchid horizon
#

It’s as secure as the user makes it

rough sapphire
#

Your router prob has a backdoor

#

And as i stated previously

#

CPUs have backdoors

#

Afaik

orchid horizon
#

And, for the most part, the users who use Linux aren’t that IT proficient

rough sapphire
#

Imo they just give people a false feeling of privacy

#

Like facebook's onion site

orchid horizon
#

Apple has actual privacy

rough sapphire
#

Which imo is made only to deanonymize tor users

wraith hound
rough sapphire
tardy rain
#

A physical fire wall?

orchid horizon
#

And security

rough sapphire
tardy rain
#

How the fucj am i supposed to build a wall of fire

#

That shit's hot you know

topaz aurora
#

Be a fire bender

rough sapphire
#

^

orchid horizon
rough sapphire
#

Yea

#

Linux makes you feel like hacker man

topaz aurora
#

I use it because Windows has become unbearable to run

orchid horizon
#

And the ones that are proficient do hate it also

topaz aurora
#

I know jack about system admin

tardy rain
#

Kali maybe but other distros i dont think so

orchid horizon
rough sapphire
#

Tbh linux is lightweight

wraith hound
rough sapphire
#

I would use it as my main

topaz aurora
orchid horizon
#

But I know just as many who hate it

wraith hound
#

I use Linux (WSL, really) purely because there are a shit ton of programming tools that only work on *nix

orchid horizon
#

Right

rough sapphire
#

Like what

orchid horizon
#

I forgot to clarify

topaz aurora
#

Valgrind

orchid horizon
#

I don’t hate Linux as a server OS

#

I hate it as a desktop OS

rough sapphire
#

I dont hate linux in general

tardy rain
#

The only use i've found for wsl at work is for wkhtmltopdf

orchid horizon
#

Also some of its APIs

topaz aurora
#

Any GNU tool, but you can run those under Msys but that's cheating

wraith hound
rough sapphire
#

I just have to state that

#

Linux wont make you private

#

Except from hackers

#

Its common misinformation

#

And also

tardy rain
#

Nothing will, i thought we've had this discussion before

rough sapphire
#

Linux wont make you good at programming

tardy rain
#

If you want to be private then unplug and go live in the woods

wraith hound
topaz aurora
mild abyss
#

the only reason i stuck at linux is the convenience. not because it makes me a better programmer

orchid horizon
#

packages are far more stable

#

and it's also a pleasant experience as just an everyday user

#

but it does have its flaws of course, nothing's perfect

mild abyss
#

@wraith hound i guess u mean about the "Linux will make u good at programming"?

wraith hound
#

yeah, that's a really strange claim

mild abyss
#

yeah it is

orchid horizon
#

well, like I said

#

most of the users I met, who daily drive Linux, are the ones that are in their β€œcool programmer” phase

mild abyss
#

sed

orchid horizon
#

so yes, people do think that Linux is a far better experience for software engineers and developers

mild abyss
#

the tooling is great. but being a better programmer is on you, not the OS

orchid horizon
#

which it is, but that's because UNIX is so goddamn convenient

tardy rain
#

Maybe you need to stop meeting impressionable inexperienced teens

orchid horizon
#

that's like 30% of the overall Linux userbase lol?

wraith hound
topaz aurora
#

I, too, was impressionable once

#

I kinda just stopped being an idiot and formed my own opinions after a while

tardy rain
#

Its not even close to 30%

topaz aurora
#

Sensationalism is trash, pure garbage

#

50% of all MacOS developers are JS techbros

#

Source: i made it up

tardy rain
#

I am inclined to believe that

mild abyss
rough sapphire
#

Tbh

#

Windows is as good as linux

#

In terms of development

last mantle
#

for C/C++ i would go the WSL way

#

for flutter android tho, windows is the best imo

rough sapphire
#

Windows is good for general development imo

#

For more in depth

#

Low level stuff

#

Prob linux

last mantle
#

i have not seen a difference between linux and windows for stuff like web dev

rough sapphire
#

Same

topaz aurora
#

You can develop embedded stuff on Windows just fine

rough sapphire
#

I even felt like linux was harder to use for web dev tbh

mild abyss
#

like everything

topaz aurora
#

and if you want to develop for Windows itself, you use MS's APIs

mild abyss
#

^

rough sapphire
#

^^

topaz aurora
#

much like you'd use Linux APIs for... surprisingly.... Linux

rough sapphire
#

I see

mild abyss
#

oh my i wanna develop Linux using MS APIs :P

wraith hound
#

your browser is an OS-agnostic runtime so web dev is OS-agnostic apart from tooling

#

that wording is terrible but I think that conveys my point well enough

topaz aurora
#

It's practically impossible to have OS-agnostic package.json scripts

mild abyss
topaz aurora
#

I hate how you need to use Node.js as a crutch

mild abyss
#

the retweeted tweet rather

topaz aurora
#

Makefile > package.json scripts

last mantle
topaz aurora
wraith hound
#

I wonder if my .cargo/config is OS agnostic

tardy rain
#

build.bat >

mild abyss
wraith hound
mild abyss
topaz aurora
wraith hound
topaz aurora
#

I can't get into Rust

wraith hound
#

honestly instead of package.json scripts I'd just have a separate scripts/ directory with node.js files with stuff like rifraff

last mantle
topaz aurora
topaz aurora
wraith hound
last mantle
#

ah

mild abyss
last mantle
#

yeah ig

mild abyss
#

i have a lil familiarity with powershell

#

but i do use it a lot of course because Windows

#

rm is actually just an alias for Remove-Item.

topaz aurora
#

Works well considering I don't use LSP for both

topaz aurora
#

Also traits are just... so much less nicer than type classes

jovial oriole
jovial oriole
#

is that a mini atx?

#

what card is that?

topaz aurora
last mantle
jovial oriole
last mantle
#

and yes it does look like its mini ATX

jovial oriole
#

those things a are chunky bois

last mantle
#

yeah ig its 3-4 slot no?

jovial oriole
#

who the heck thought it was a good idea to do mine atx + nvidia_flagship

last mantle
#

there can be high end mini atx mobos

jovial oriole
last mantle
#

wait for the 4090

#

thats chonkier

jovial oriole
last mantle
#

the cooler design leaked recently

jovial oriole
#

linkkk

last mantle
#

wait

jovial oriole
#

wth

last mantle
#

this is the reference btw

jovial oriole
#

bruh

last mantle
#

expect chonkier AIB models

jovial oriole
#

how the heck will you find a case that fits this?

last mantle
#

yeah case manufacturers are supposedly changing case designs to fit this

jovial oriole
#

i have a plan

topaz aurora
#

just don't have a case

#

easy

last mantle
#

you can do that

jovial oriole
#

im gonna wait a few years for RTX 40 series to release, everyone will move over to that, leaving RTX 30 series with less users, which will cause GTX cards to become cheaper and i can get an AMD 520 card

last mantle
#

30 series is near msrp now

jovial oriole
#

woah

#

ahem

#

lemme explain a bit better

last mantle
#

nvidia is going to release fucking 1630 soon

jovial oriole
#

im either gonna a 3060-3070, or a 1650.

last mantle
#

it better be priced super low because its 2022 and we are getting slight down/up grade from a 1650

last mantle
#

i mean, nvidia can do anything now considering the absolute trash release AMD 6500xt was

jovial oriole
#

amd cpus are strong, the cards not so much

#

the 6800 was looking good

#

but the latest releases suck

last mantle
jovial oriole
#

but i could think of a couple cards which i would prefer

last mantle
#

navi 30 series is going to be a 2x perf increase in some areas

jovial oriole
#

3060 ti or 3070

last mantle
#

no

#

navi 30

jovial oriole
#

hehe

#

BFGPUS

#

hehe

last mantle
#

navi 30 as in the next gen rdna

#

rdna 3

jovial oriole
last mantle
#

nvidia 40 series kinda the same

jovial oriole
#

it's been a while since i checked, but

#

has zen 4 come out yet?

last mantle
#

nope

#

late this year

#

q3

#

at worst, q4

jovial oriole
#

k

#

bruh

#

the 3090 ti has 300 more cuda cores and 0.16 more ghz clock

#

and it costs nearly 200 dollars more than the 3090

last mantle
#

perf uplift was about 5-10% right?

jovial oriole
#

it's like the 3080 to 3090

#

the difference is small

#

the 3080 would be over kill for most builds anyway imo

#

a 3060 to 3070 will do just fine

last mantle
#

this is kinda a last minute cash grab

jovial oriole
last mantle
#

considering ada lovelace is also going to come out in q3/4

jovial oriole
#

my throat hurts

#

so sore

jovial oriole
#

i was first

rough sapphire
#

Cap

jovial oriole
#

the hell

rough sapphire
#

It's called lag

jovial oriole
rough sapphire
#

Your skill, that is

jovial oriole
rough sapphire
jovial oriole
#

some may say ping don't matter, when your ping is 42069 ms, it sure does

rough sapphire
rough sapphire
#

Nice

distant hazel
#

can you guys use the !snowflake command? that would show timestamps of messages

edit: nvm it's role locked

#

!src snowflake

royal lakeBOT
#
Command: snowflake

Get Discord snowflake creation time.

Source Code
distant hazel
#

!sf 977597086050680842 977597089825562684

royal lakeBOT
#
Snowflakes

977597086050680842
Created at 2022-05-21 15:41:48.190000+00:00 (<t:1653147708:R>).

977597089825562684
Created at 2022-05-21 15:41:49.090000+00:00 (<t:1653147709:R>).

distant hazel
#

pritam was first and that's what shows in my client too :)

rough sapphire
distant hazel
#

oh

#

can you try it?

rough sapphire
#

Yep

#

There we go, in #bot-commands

distant hazel
#

sorry I missed it lol

#

does it behave the same as !eval does in pygen?

rough sapphire
#

Uhhhh I think so

distant hazel
#

can you try it again

#

here

rough sapphire
#

Yep

#

!sf 977614718619504661

royal lakeBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

rough sapphire
#

Ah ok it just refers you to bot commands like eval

distant hazel
#

cool

#

I think eval also deletes your message

#

uh, does it? can't rmbr

sleek yarrow
#

Anyone here uses Norton Antivirus?

#

Pretty random I guess but anyone?

wraith hound
#

I simply cannot wrap my head around the absence of mutable state.

#

I really like the concept, it's just difficult for me.

civic stag
#

Hmm there is mutable state in Haskell via the IO and ST monads, for instance. Not sure if this helps but you can think about IO as a pure value representing an impure computation, and you can chain it with other computations.

#

Once you learn about monads you can write your standard imperative programs including using variables:

module Main where
import Control.Monad (forever)
import Data.IORef

main :: IO ()
main = do
    v <- newIORef 0
    forever $ do
        x <- readIORef v
        print x
        writeIORef v (x + 1)
graceful basin
#

well, the whole point of haskell is to do that as little as possible

civic stag
#

Idk, I think monadic IO and laziness are the main contributions of Haskell to FP right?

graceful basin
#

yeah, monads for IO are a haskell original concept

civic stag
#

Not saying this is the best way to write this program, just that referential transparency is actually not incompatible with programs that use mutable state.

graceful basin
#

but if all your functions return IO, you should just be using an imperative language

civic stag
#

The ST and State monads are also cool because they let you do mutable-state-ish things inside of a pure/non-IO expression

graceful basin
#

indeed, you can just implement mutable state in a wide variety of ways in a pure context

#

the most common I see is recursion

#

well, technically foldr

#

but most foldr usages aren't really doing mutable state

civic stag
#

I assume any kind of tail recursive function gets compiled to a loop with mutable variables

graceful basin
#

even non-tail recursive functions do sometimes

civic stag
#

Neat, using an explicit stack or something?

graceful basin
#

there are some clever rewriting rules IIRC which convert it into a tail-recursive-ish form

#

so IG technically yes, just using something a tad smarter than a full stack more often than not

civic stag
#

I'm a bit mad that pastebin interprets the ' (prime in variable name) as a quotation mark.

civic stag
wraith hound
#

that's exactly what I mean

civic stag
#

I think my other example is more idiomatic though. I don't know of a better way to do that leetcode problem without using some kind of mutable ref

mild abyss
#

what do u think of Deno?

#

πŸ€”

graceful basin
#

It's neat, but not a fan of their lockfile handling.

topaz aurora
#

i.e. tail-recursive loops become more idiomatic than:

accumulator = initialValue
while True:
    accumulator = doSomethingWithAccumulator(accumulator)
#

eventually, at least

#

I agree that it's a lot of mental overhead, though

topaz aurora
topaz aurora
low chasm
#

Is purescript in Haskell

civic stag
floral apex
tight granite
#

there was a minecraft channel?

heavy pawn
#

What's this home channel this server has got? Didn't see this anywhere else

carmine apex
carmine apex
# heavy pawn Oh nice, thanks

it should be noted that the server admins and moderators have little to no control over it - the contents of home are chosen by and only by discord

soft violet
#

All hail to the all-seeing, all-knowing algorithm.

runic wigeon
#

where did the minecraft channel go?

carmine apex
tight granite
#

please

#

we need a Pydis minecraft server

jovial oriole
tight granite
#

i swear

#

a mc server woud be cool

drifting snow
tight granite
#

hey that'd be cool too

#

minecraft server protocol implemented in Python

#

it'd be slow though

drifting snow
#

mypyc can increase the performance of typed code by 4 to 6 times

#

but yeah it'd still be slower than a Java server

#

But cooler

jaunty wraith
#

wasn't eivl making a Python-based MC server

drifting snow
#

O'reilly

#

I have to see that

trail folio
#

Wow

#

That's sick

#

!!

verbal wind
#

thanks

dry valley
#

JetBrains superiority

rough sapphire
#

lol πŸ˜‚

mild ivy
#

Getting a backlit keyboard part for my Dell Latitude E5570

#

I'm excited, as I discovered it will actually fit

#

(It has the motherboard needed sooo)

jaunty wraith
#

don't all reasonably priced Dells come with a backlit keyboard?

mild ivy
raven narwhal
#

should i buy a new laptop or build a pc/?

stark geyser
#

I'm trying to get the name of day from a date in Excel. It should be =TEXT(A1, "dddd") but i'm getting this?
Anyone that knows why?

jovial oriole
#

anyone know why discord does this

stark geyser
#

most likely because someone has been reported

tardy rain
#

works here

stark geyser
#

So i need /

tardy rain
#

no thats just the format, as long as your value is a date it should work

stark geyser
#

it auto formats πŸ˜›

tardy rain
#

right click, format cell

#

then go to date

raven narwhal
#

anyone know of an offline dictionary library for python?

#

PyDictionary is online

stark geyser
graceful basin
#

maybe you have ; as a list separator in excel

stark geyser
noble atlas
#

Have you tried to replace the coma with ;?

stark geyser
#

Yeah and I get the same error

#

nah it works now

#

restarted my office

tardy rain
#

excel moment

noble atlas
#

I like excel, it's really good tool to work with data

#

I hate excel when I was in elementary school, because it's complicated. But now I really like it, πŸ˜…

tardy rain
#

Excel bad tho

#

Its what you get when people have no choice but to use your product so you dont give a fuck anymore about quality

stark geyser
#

I only like Excel when i'm making the sheets with Python

#

it makes the logic more.. well logical

graceful basin
#

excel is just kind of the best software for spreadsheets