#ot1-perplexing-regexing

1 messages · Page 604 of 1

sand goblet
#

Juan.

odd sluice
#

ic

frail badge
#

wtf bro

sand goblet
#

Wat

frail badge
#

among us

#

anything other than among us

viscid hemlock
#

I do appreciate the teachers who did this

sand goblet
#

Oh they all have text on them

viscid hemlock
#

Like it has good intent

sand goblet
#

That's absurd

viscid hemlock
frail badge
#

i like the idea

#

not the among us

#

:(

dire siren
#

they tried their best to attract students

viscid hemlock
#

Yeah exactly, it is a bit wholesome

sand goblet
#

I could see it going wrong, but I get it

frail badge
#

ok ig i like it

rough sapphire
#

hello all

inland wolf
#

mr bean is amazing

rough sapphire
#

just wanted to pop in and say how much I am enjoying messing around with Python after actually giving it a chance and realizing I can complete a ton of old side-projects [that I had put on the backburner years ago due to not knowing Python and needing methods of autonomy for things] with Python

#

I initially wasn't a fan of Python because no brackets or semicolons was weird to me, as someone who learned C#/Javascript/SourcePawn (which are syntactically similar to each other) first. Plus indentation is a bitch sometimes. Like this one time when I was in college for computer programming, I had a Python script break on me in class and no matter what I tried, nothing fixed it. When I called the teacher over, she hit backspace twice and enter to re-indent the line specified in the error, saved it, and it ran.

wooden silo
rough sapphire
#

but my friggin' word is Python ever powerful. the amount of automation I can accomplish with this is crazy. I do research and documentation of cut content in video games (mostly Team Fortress 2) on TCRF.net and being able to create a script to run through 7 years of game builds' txts and diff check files between builds to look for undocumented changes is a game-changer.

#

I'm getting sooo much more work done. I blobheart python

wooden silo
rough sapphire
#

hell I can diff check an entire builds files with hashes

#

I'm glad this discord exists too. always nice to have a place to go for help. I created the official discord for the alliedmodders.net (SourcePawn language, SourceMod platform used for running server plugins on Source engine MP games) community back in 2017 as an unofficial sourcemod discord. We used IRC there but it was often dead. Some people wanted a discord server, most did not, but in the end I created one and now 4 years later they're at 4k members

rough sapphire
wooden silo
#

Yep.

rough sapphire
#

Is there any way to donate to Python

#

I like supporting things that are awesome

wooden silo
#

Yes, you can become a contributing member of the Python Software Foundation for example.

rough sapphire
#

ooh, do tell

#

how do I go abouts that

wooden silo
rough sapphire
#

ooh I see there's a patreon

#

I assume that's the discord patreon

wooden silo
#

I mean, if you're talking about the language.

#

Yes, that's probably it.

rough sapphire
#

either/or

frail badge
#

i use macOS btw

wooden silo
frail badge
#

honestly this server has been boosted so many times if i would be boosting this server i would much rather patron it cuz then i get fancy role

#

thing is i dont got money

wooden silo
#

We're also partnered so we technically don't need the boosts.

#

From what I gather.

frail badge
#

oh right

#

u get all the perks for partnered

#

plus with patron yall get money

odd sluice
rough sapphire
#

I feel like if I did that, I'd be seen as a smooth-brain or something MattRiddle_stonedlmfao

odd sluice
#

example

print("hi");
print(f"you said {input("> ")}!");
#

should™️ be valid

#

!e

print("hi");
print(f"you said {345}!");
royal lakeBOT
#

@odd sluice :white_check_mark: Your eval job has completed with return code 0.

001 | hi
002 | you said 345!
odd sluice
#

see

wraith hound
olive hazel
#

i use arch btw.

olive hazel
#

the double quotes inside fstring

latent scaffold
olive hazel
#

i do fr

latent scaffold
spare lance
#

cyph u have started sleeping pithink

olive hazel
#

¯_(ツ)_/¯

spare lance
latent scaffold
#

:c

#

I was tired last night

spare lance
latent scaffold
#

is it tho

#

the worst part of sleeping is waking up

#

I woke up with heartburn >:(

spare lance
#

sucks ngl

#

always sleep by with some snacks nearby was my takeaway from it

coral sky
#

I use Windows btw

olive epoch
latent scaffold
#

banned

olive epoch
#

i cry every tiem

coral sky
#

lmao

bronze dawn
#

Controversial opinion: Sirius Black in the movies should have been cast as a african american

#

cuz he's sirius_ly_ black

#

get it

#

im sorry

inland wolf
#

i mean

wild yarrow
#

lmao

inland wolf
#

thats up to the author

#

ig

latent scaffold
#

._.

round rose
delicate vigil
#

!resources

royal lakeBOT
#
Resources

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

naive hare
#

i use Google Translate as IDE btw

#

i do this to translate Python to C++ to make it run faster

rough sapphire
wraith hound
#

It's just not statically typed

#

But you can use a tool like mypy or pyright to enforce it

harsh tundra
#

or just have people listening to docstrings and annotations.
a lot of stuff in python is done in a way to make good code easy but more complex stuff not too hard either (eg not really private things, so if you really have to access stuff, you can without doing virtual backflips in your code)

#

I have one script that heavily uses abc and abstraction. which could be normally done in python using simple duck typing. but I wanted the suggestions to basically show how stuff should be done if someone needs to extend my code

low chasm
#

I do indeed love statically typed languages

#

but python works, its strongly typed, and with type checkers like mypy, its fantastic

viscid hemlock
# wraith hound Python is strongly typed

Isn't the word for it strongly dynamically typed? E.g

C is strongly statically typed

JavaScript is weakly dynamically typed

Python is strongly dynamically typed

low chasm
#

dyngly typed

wraith hound
#

Python is both strongly and dynamically typed

floral apex
#

What about statically typed and weakly typed

round rose
#

Isn't C incredibly lax on its typing?

sonic pumice
#

kitty's

floral apex
#

Convo above says its strongly typed

#

Maybe it evolved over time?

sonic pumice
#

sorry for interrupting

round rose
#

I mean, as far as C is concerned, everything is just a bunch of numbers

#

So you can freely convert things around in any direction

#

And don't get me started on void*

#

Character literals like 'e' are actually ints and not chars, so on and so forth

floral apex
round rose
#

They get cast to chars on assignment, but the literal itself is processed as an int, so int32_t (most commonly, though technically it's defined to be the one the CPU is optimized most for)

#

C is generally viewed as a not-very-strongly typed language

#

Not a lot of people would go as far as to say it's weakly typed, but it's definitely got a lot more implicit shenanigans going on than, say, Java or C# which would definitely be strongly typed

#

Also, I probably really shouldn't get into arguments about typing strength at 4AM right before demonstrating an important project

molten stag
#

i found easter egg i think

#

__peg_parser__ in python 3.9

#

SyntaxError: You found it! lmao

spare lance
#

what is elastisearch pithink

spare lance
spare lance
#

ah ohkay

rough sapphire
#

but again. authors choice.

round rose
#

chars are, char literals aren't

#

C++ changes that

tribal aurora
#

i wonder if this scene is from a game or not

loud jewel
#

I learned lambda calculus just so i can say "i know lambda calculus" and sound smarter

odd sluice
#

binary lambda calculus
those 3 words together - does not compute

loud jewel
#

Lambda calculus

#

I add in the binary to make it longer

#

Even though it is incorrect

sand goblet
tribal aurora
#

ping when reply

odd sluice
#

tf that's double of joe's

solemn leaf
#

wee

tranquil orchid
#

Joe has a lot of messages in staff channels

dire siren
tranquil orchid
#

Hard to tell since 99% of them are disguised

dire siren
#

hmm i just noticed that lemon and tizzy got the same surname

viscid hemlock
#

Lol

dire siren
#

or maybe it's just a common surname, but i should probably stop here, sounds like doxxing

round rose
#

Since it's pydis staff, the answer can vary from "Yeah" to "One is copying it from the other" to "It stands for dinosaur, like brontosaurus"

shy haven
#

I have been coding for 1 year but I haven't made anything useful 🤧

#

Any advice?

#

😭

dire siren
# shy haven 😭

advice is make more things. dont give a fuck whether it's useful or not, JUST DO IT

shy haven
#

🥴

dire siren
#

bruh they deleted instantly lolz

shy haven
#

||I am coding on Android btw|| 🥴

dire siren
#

android is a linux distro

#

just without everything on linux

shy haven
shy haven
#
  • vim
#
  • w3m
harsh tundra
#

How to get motivated to do anything?
I lost all my motivation when the whole field content got deleted in my phone browser. I was writing an issue on github. The "field goes completely blank sometimes when I hit enter" only ever happened on Facebook before, I assumed it was fb weirdness but it seems it's whole Firefox for Android... And, well, phones don't have ctrl+z. :c

#

I was trying to report a bad practice with exceptions in Python (raising Exception instead of something inheriting from it), I collected some sources explaining stuff and how to fix it (because the code is C extension)... And then bam! it was gone

solid pollen
#

Aw

#

I did that once with a github comment that was 6k characters or so

harsh tundra
#

I used my phone because it was private github account (we use bitbucket at work). Didn't expect it. But now I don't even have motivation to code. :c I was supposed to switch to that lib, so it's not like working would take my mind off that issue :c

solid pollen
#

Actually, *7k

#

If anything I wouldn't recommend you to start again right now. Maybe later today if you feel like it?

harsh tundra
#

It's just... I'm in the office anyway. Slacking off a bit between doing some productive stuff is normal. But i feel so down because of that that I cannot get myself to even slack off. Because my mind is still on that github issue :c

#

It may be also because of my meds... I was pretty sure I didn't take my meds yesterday so I took them today morning.
But now I realised I might've taken them? Idk
So if I didn't take them yesterday, me feeling down more than normally could be the result. And if I took them and took them again, then maybe my body is reacting to double dose? .-. Hm, but it shouldn't react that fast? And I really don't know if I took them yesterday, I remember taking my meds while watching Parks and Recreation before bed but we watch Parks&Rec every night...

untold wind
#

Guys I need some help with backend JS !
I am stuck really bad !
I learned JS basics but I don't know where to practice and build very small projects.
I only know the syntax and I want to get some practical knowledge. CAN YOU GUYS PLEASE SUGGEST ME SOME WEBSITES FOR PRACTICING JS!!!
Cause I can't find any sites with solutions.

mild abyss
harsh tundra
#

I've been coding for more but still feel the same

spare lance
harsh tundra
#

Despite the fact that my code's running in client environments and stuff

#

And I know it works

#

But it feels like it's so insignificant and stuff

#

And I feel so bad with current project because my mind makes the client seem so... dignified and important only because of the sector they're working in. Despite to already doing stuff for clients from thar sector

olive epoch
viscid hemlock
#

I haven't really completed anything

spare lance
#

i mean it depends on definition of useful

viscid hemlock
#

I didn't create that lmao

wooden silo
#

I've been coding for about 20 years and I still haven't really created anything useful except at work, to be honest.

#

I have hundreds of unfinished projects though!

last mantle
#

same

karmic gust
#

i think "usefulness" and "finished" are wildly overrated concepts when it comes to hobby projects

shy haven
#

😭

#

How to be a good coder 🥲

wooden rover
#

hi

#

hello

honest star
karmic gust
#

exactly I dont even bother coming up with a spec, i just kind of wander around with it

frozen coral
#

I love sunsetting projects

honest star
#

lmao, the d.py definition of stable, archived

frozen coral
#

lmfao

acoustic fern
#

Friends don't let friends use Elastic Search - truer words have never been spoken

#

The only piece of non-truth is the typo in the name :)

outer grail
#

hello

shy haven
#

@honest star

#

Bruh

#

What's that beside your name?

acoustic moss
#

role icon

honest star
#

The plant emoji or the bongocat?

#

Also, literally 30 minutes to turn on, log into, and load microsoft teams for my work computer

karmic gust
#

that motherfucking software is always trying to sabotage you

honest star
#

Teams is the worst

#

Midmeeting it decided "naaaah, I can't connect. Lemme just reboot"

dapper dew
#

Ahhh Teams. As much as it sucks, better than Skype for big meetings / international meetings (when it works)

honest star
#

Let's find a new emoji for my name while I slowly reconnect to this teams meeting

karmic gust
#

for a while i assumed you were going to do a growing tree thing

honest star
#

\🌿

#

\🦈

#

Oooh the shark is cute

karmic gust
#

🌿

tardy rain
#

Teams is nice

karmic gust
#

why does it look different

honest star
#

Twemoji rendering vs actual unicode

#

Put \ in front of the emoji for unicode rendering

runic wigeon
uneven pine
#

Bro how have I not known that

#

🤔 \🤔

inland wolf
#

good question

latent scaffold
#

I've known that for ages

#

I always abuse it with \😩

edgy crest
#

\😎

acoustic moss
#

\🥺

last mantle
#

no

uneven pine
#

Today feels really weird

#

Nvm I think I'm just having a migraine attack

wise schooner
#

discord uses google's noto emotes

dapper dew
uneven pine
#

Appreciate it

#

No headache right now just feel weird

uneven pine
#

Managed to hurt my knee pretty bad though

#

:(

dense hull
gaunt laurel
#

is it just the NVIDIA RTX graphics cards that are either out of stock or really expensive

dapper dew
#

Pretty much everything at this point with the semi conductors the way they are

solemn leaf
#

price - stonks

#

production - reverse stonks

gentle mango
#

Stonks

dire siren
#

📈📉

spare lance
#

Nurses2 right?

dire siren
#

requests-html

#

nurses2 doesn't have docs iirc

spare lance
sour wasp
#

Hey, finished school in uk, what gpa generally gets you into (along with other things ofc) a good US university?

tribal aurora
#

great

sour wasp
#

great to you too

harsh tundra
#

I think for "good US university" I'd worry about enough money, not enough GPA pithink

shadow ridge
#

so.....
someone has asked me to do this```
3). Always work with multiple branches. There will be two main branches, master and develop. Any new code should be put in an individual branch (e.g. bugfix/error-message-typo feature/convert-commands-to-slash).

graceful basin
#

ye, if you make a PR, the code in the PR should be in a separate branch, since it makes it easier to switch to the branch when someone is testing the PR locally

#

if you are just working directly on the repo without forks, you don't get a choice, but even in a fork, it helps to put into a separate branch

shadow ridge
#

ohh

shadow ridge
graceful basin
#

do you work from a fork or in the same repo

shadow ridge
#

i mean i have access to edit it
but im still supposed to make a new branch

graceful basin
#

ye, do that then

shadow ridge
#

so branch is nothing but a pr?

graceful basin
#

no, a branch is entirely different

#

it is essentially a separate list of commits

#

which starts from some existing commit on another branch

shadow ridge
#

oh

#

im super confused right now 😅

graceful basin
#

to create a new branch, do git switch -c name-of-branch

shadow ridge
graceful basin
#

this will take the current state of the repository, and create a "copy" of it, and name that copy name-of-branch

#

then switch your workspace to that new branch

#

if you just want to create a branch, you do git branch name-of-branch, but I find it nicer to do both at once with git switch -c

#

-c is short for --create

shadow ridge
#

is there a way not to do it locally?

graceful basin
#

no

shadow ridge
#

hmmmmmm

graceful basin
#

at least I haven't figured out a way to create a branch on github

#

maybe it's somewhere deep in the menus

shadow ridge
#

is there a way to make a pr on github

graceful basin
#

but the git commandline generally works better

#

yes

#

you will probably end up with a PR even with this workflow, but that PR should be from a separate branch

dapper dew
#

I usually do PRs from github's website, but almost everything else from command line

shadow ridge
graceful basin
#

github lets you choose, but well, to my knowledge, you can't create the new branch in github

shadow ridge
#

i see

#

currently, i cant download git on my device :/

graceful basin
#

hmm, that is annoying

#

maybe a github codespace would work

#

no idea if those exist yet

viscid hemlock
shadow ridge
#

you mean the gui for git?

graceful basin
#

@viscid hemlockyeah, that is a real command

#

git checkout was split into git switch and git restore

#

@shadow ridgecodespaces are a github feature where you essentially get vscode in the browser set up for a specific repo

dapper dew
#

An alternative to git checkout -b <your branch>

graceful basin
#

no idea if it is in a state where you can do git stuff from it

#

yeah, checkout was too much of a god command so it got split

shadow ridge
#

ohh

viscid hemlock
#

Haha

inland wolf
#

i have a git question

#

is it possible to temporarily go back to a commit

#

cuz i need to build an old version of my app

graceful basin
#

@viscid hemlockyeah, git branch also works

#

@inland wolfyes, git switch HEAD~1 to go back one commit for example

#

or git log and pick out the commit hash

inland wolf
#

oo

#

and git switch HEAD will go back?

graceful basin
#

yes, or git switch -

#

that switches to the last thing switched from

#

like cd -

inland wolf
graceful basin
#

now you do

inland wolf
#

true

dire siren
#

i have an id ?_detial, how to express that in xpath (? is a wildcard, i don't know what is it)

graceful basin
dire siren
shadow ridge
#

@graceful basin hey! i was wondering if you could help me create a pr online on github

scenic blaze
#

Have you ever decided to do a thing only to find out you already did it months ago?

#

Whoah there's an icon next to my name

#

I like it

graceful basin
shadow ridge
#

oh ok

#

np then

shadow ridge
#

but heres my guess

scenic blaze
#

It's worth learning, even if it's kind of complex

#

You'll need it in your career if you ever plan on working with anyone else

shadow ridge
#

fork it, make changes directly to the repo and then opening a pr which will show this branch?

#

🤔

scenic blaze
#

and even if you don't, it's handy if you ever need to go back and change things

shadow ridge
#

i see

scenic blaze
#

What you described would work, yes. Although different organizations and such may have different rules/practices

#

People follow practices of things like version branches and feature branches and develop/test/production environments. Not to overwhelm you 😦

shadow ridge
#

oh

#

how do i fork it

scenic blaze
#

But let's say I have a repo myRepo, then fork it to create the branch myFork.

shadow ridge
#

i think it says forking is disabled...

scenic blaze
#

Hmm

#

I'm not sure how they'd stop you

shadow ridge
#

btw can i do this stuff on repl as well?

#

i.e. the git commands...?

scenic blaze
#

Yeah, some people never use github directly and just use a CLI

#

Some people really like github desktop

shadow ridge
#

hmmmmmmm

rough sapphire
#

I'm trying to finish up some assembly but need to check array values, by getting position at pointer 1 and pointer 2 and checking if equal too

#

In mips I stored them into register with 4 bytes, then reset it to 0 to start over again to read from first array entry

#

But when trying to read the second pointer of array I can't figure out how to store it unless I copy the array into a new register

#

Any ideas?

eternal wing
#

@trail belfry You should be able to talk here joe_salute

rough sapphire
mild abyss
#

i didnt know u are also here hmmm

rough sapphire
#

@mild abyss I come here to cry

#

😂

mild abyss
#

@latent scaffold i know what u did there

latent scaffold
#

;-;

mild abyss
#

yes he is julian

rough sapphire
#

I'm redoing my code

rough sapphire
latent scaffold
#

howdee

mild abyss
latent scaffold
#

oh no

mild abyss
#

oh i just remembered i have a cousin in mexico lol

#

i wonder how he is right now

latent scaffold
#

tell them to cross the border

#

I'll be waiting

rough sapphire
#

Lol

mild abyss
latent scaffold
#

hate New Mexico

#

Albuquerque and Santa Fe are nice, but that's it

mild abyss
#

wait u already crossed?

latent scaffold
#

I never lived in Mexico lol

mild abyss
#

eyes

latent scaffold
#

I was born in Santa Fe

rough sapphire
#

Lmao

#

New Mexico

mild abyss
#

oh well i just remembered he is in USA now lol they moved

#

asked dad

latent scaffold
#

omw

rough sapphire
#

So he moved from USA to Mexico?

#

So mexico to usa to Mexico

latent scaffold
#

no

rough sapphire
latent scaffold
#

USA to Mexico to USA to Mexico to USA

#

that's what I've got out of this

rough sapphire
#

Gotta make it to Canada though

mild abyss
#

gotta make it mars

rough sapphire
#

For the maple syrup

latent scaffold
#

I read that was maple story somehow

rough sapphire
#

Maple syrup and whiskey

#

What if like 100k people got together and just crossed the Michigan lake into Canada

#

That'd be kinda lit

rough sapphire
spare lance
#

Who is to blame for this otn pithink

karmic gust
#

looks like Sebastiaan is to blame

dapper dew
#

fake news

clear plume
karmic gust
#

it doesn't look like Sebastiaan is to blame

#

there, now you can be sure I told the truth

dapper dew
#

"this statement is false"

latent scaffold
#

oh no

clear plume
#

There we go, we need a good ol paradox to start this channels activity

#

Ok it did not work.

tribal aurora
acoustic moss
#

oh so you're a helper? name every help channel 🔫

tribal aurora
#

xD

hybrid pivot
#

Who else can relate 😔

shy haven
#

#bot-commands

rough sapphire
#

I see that uou can use a code and a shoe to go to pluto

#

@undone hatch

#

You can go to pluto

undone hatch
#

wot

dire siren
odd sluice
#

cheating, beating

#

it works right?

#

nvm i just realized the full implications of what i just said

tribal aurora
#

I hate Geography

odd sluice
#

dont we all

tribal aurora
#

Geography exams are even ten times worse

rough sapphire
#

Is there anywhere someone could recommend that I could get into mu* programming?
mu* is basically like MUD text browser game.

mild abyss
odd sluice
#

i meant as in you cheat, and then you beat your opponent

#

but i realized

#

it could be interpreted

#

in a dozen worse ways

acoustic kraken
tribal aurora
acoustic kraken
#

well, yeah

#

scientific compute only. lisp fans see the reality

spice zodiac
#

why do lisp fans see ruby as mmm porn?

tardy rain
#

Its a bad meme, you dont have to overthink it

spice zodiac
#

i wonder if they ever made that porn

tardy rain
#

Oh

#

OH

#

Lmao

#

You better not be horny, i got my bomk stick right here

spice zodiac
#

bomk?

tardy rain
#

Bonk

spice zodiac
#

how is that gonna help

tardy rain
#

Dont know unless i try

opal atlas
#

Won

calm dawn
#

anywho, nice pfp

opal atlas
#

Ok

#

That's too far

spice zodiac
#

😮

#

I don't have profile pics myself turned on but

rain pebble
uneven pine
#

It's telling me I'm a genius

tribal aurora
#

also, u awake

tribal aurora
edgy crest
#

um

#

what is this

#

thing

wild yarrow
#

i used to use ruby

#

it's...

#

an ok language ig

dapper dew
#

Flying Spaghetti Monster

edgy crest
#

what

dapper dew
#

Long live FSM

edgy crest
#

what are those spheres

dapper dew
#

The Flying Spaghetti Monster (FSM) is the deity of the Church of the Flying Spaghetti Monster, or Pastafarianism, a social movement that promotes a light-hearted view of religion and opposes the teaching of intelligent design and creationism in public schools. According to adherents, Pastafarianism (a portmanteau of pasta and Rastafarianism) is ...

tribal aurora
wild yarrow
#

i used to be a fan but... it's got too many design choices that are not great to be considered good if i am being honest

tribal aurora
edgy crest
#

wtf

tribal aurora
#

@dapper dew do you spend like most of your time reading random wikipedia page or something

dapper dew
tribal aurora
#

xD

tribal aurora
dapper dew
#

Yes

tribal aurora
#

great

rough sapphire
#

because 94, yes.

tribal aurora
#

ye

rough sapphire
#

no mystery. straight af.

acoustic moss
#

no he's 94 years old

#

obviously

tribal aurora
#

lol

rough sapphire
dapper dew
#

True

rough sapphire
#

sleep hsp.

acoustic moss
#

im in class

rough sapphire
#

at 21:10!!!

last mantle
#

what class mate

#

why

tribal aurora
#

all indian

tribal aurora
rough sapphire
tribal aurora
#

what time is it in india

rough sapphire
#

21:12

tribal aurora
#

wth

#

shouldn't be

mild abyss
tribal aurora
#

very weird

rough sapphire
rough sapphire
mild abyss
#

india is big

#

u dont have to have the same time

tribal aurora
#

i asked him in the past

acoustic moss
dapper dew
last mantle
#

um

tardy rain
#

Bruh

rough sapphire
tardy rain
#

Im bored

#

What do

#

Waiting for boss to leave so i can ditch

distant hazel
tardy rain
#

not being paid enough to act like a boss

tribal aurora
#

lol

rough sapphire
#

you're bad with 24?

wild yarrow
#

like the TV show?

tribal aurora
rough sapphire
terse heron
#

@vapid nymph in the last 24hrs I've had 48 mod pings

#

But it really varies, depending on raids etc. too

#

Like some mornings I wake up to 60+ pings, others it's only 2-3

vapid nymph
#

Ye, I've heard it's like 100 on average

terse heron
#

Unfortuanetly there's no real way to check other than manually counting

#

And quite frankly I don't feel like doing that to get an average lol

vapid nymph
terse heron
#

I mean we sorta do

#

We know how many mod alerts but not all mod alerts ping

vapid nymph
#

Honestly that'd probably make sense to increment stats counter for mod pings

terse heron
#

I don't think it's really an issue to be honest

#

It's so variable that it just wouldn't do much

bleak lintel
#

also not really a metric we depend on lol

#

"too many pings" or "too few pings" is something we're quite good at gauging as humans

rough sapphire
bleak lintel
rough sapphire
#

was a nice one.

dapper dew
#

🎡

tribal aurora
#

but the name is kool, "ferris"

dapper dew
#

Lol, its the ferris wheel emoji, just looks like the kubernetes logo

mortal ferry
#

Not directly, but we count filter triggers

bleak lintel
mortal ferry
#

Only the everyone thing doesn't

frozen coral
#

and some filters from bot DMs right?

mortal ferry
#

Hmm yeah true

rough sapphire
wild yarrow
#

o.o

mortal smelt
#

How old r u?

wild yarrow
#

?

dapper dew
#

nothing to see here

wild yarrow
#

so it would seem

tardy rain
#

People asking other for their age first thing are creeps, prove me wrong

wild yarrow
#

^

#

no u right

burnt magnet
wraith hound
#

standard, spec, whatever it is

tribal aurora
#

Wdym

wraith hound
#

Unicode has a specification that most systems follow

#

Discord uses Twemoji, which follows that spec

silver birch
#

you are fake news

shy haven
#

@rough sapphire What do you call that diamond beside your name?

latent scaffold
silver birch
#

the triangle is boost but the diamond is hypesquad — you take a test and discord puts you in a house and puts it on your profile

silver birch
#

oh

#

sadge

shy haven
latent scaffold
shy haven
#

On a test server how do I? (Can't find on Android )🥲

latent scaffold
#

I don't know if you can yet

#

only 20% of servers got access iirc

frozen coral
#

It should be fully rolled out now

#

It's part of the level 2 boost perks

latent scaffold
#

oh, right

rough sapphire
latent scaffold
#

:|

rough sapphire
#

Ok

wild yarrow
#

oh, up

rough sapphire
tardy rain
#

its just a triangle?

latent scaffold
tardy rain
#

Oooooh, i couldnt see it on desktop

#

I thought it was the pink triangle on their profile

#

Its a rhombus

#

Is that new? Part of the role emojis?

#

Anyway i need ideas for a powershell project

#

So far i've just been making small utility scripts

#

that's already on the docket, but thats the work docket

#

one of our internal tools requires a weirdly specific dir structure

#

currently they have the interns make them by hand lmao

latent scaffold
#

wedxs qzawcqwde2

#

oops I was typing?

wild yarrow
#

yes

silver birch
#

no

tardy rain
latent scaffold
#

no

silver birch
#

judging by the pfp no

tender smelt
#

grow up :P

#

/s

latent scaffold
#

how old are you @tardy rain

tardy rain
#

old enough to party

#

are you?

latent scaffold
#
  1. Got it
tardy rain
#

lmao

latent scaffold
#

I'm not 16

tardy rain
#

i was 16 9 years ago

#

holy fuck what happened

tender smelt
#

so 18?

latent scaffold
#

oh how the flies time

tender smelt
#

soon you'll be a boomer 😔 😔

latent scaffold
#

that's not

tardy rain
#

already there mentally

latent scaffold
#

uh... yes

tardy rain
#

why are MS docs like this

#

fix your damn titles, wtf

#

its been a year and a half

floral apex
grand swift
#

baka

grand swift
tardy rain
#

its literally a man page about break in loops

#

idk if this was intended but if it wasnt i want it fixed

#

who do i harass about this

odd sluice
#

snake camel case

silver birch
#

snake camel what madman invented that its literally snake or camel choose

tardy rain
#

it has to be a mistake

#

someone didnt parse a string properly

silver birch
#

camel is the only good one imo snake is for windows devs

#

camel snake is just plain bad

odd sluice
#

camel case is not for python

#

even in rust i use camel case

frail badge
#

this_Is_A_Sin

#

even worse:

#

THIS_iS_a_sIN

tardy rain
#

i use snake case in powershell, dont like camelcase that much

frail badge
#

i present u to:

#

SCREAMING_cAMEL_sNAKE_cASE

silver birch
#

mEmE-kEbAb

frail badge
#

or RAnDOm_LeTErIng_cAse

silver birch
#

hellspawn-Hellspawn-Hellspawn

wraith hound
#

Like, I get an error in about_ but break is a lowercase thing

tardy rain
#

Who knows

mild abyss
cloud sequoia
#

so, I have discord nitro already, but I still can't change server profile? (I can't also send 4k character messages, stickers, etc). Only like, custom tags, emojis

wraith hound
#

Do you have Classic or Full? Afaik, this is all Classic has

green pecan
#

oh no i think i remember when this got !otned

inland wolf
#

oof

acoustic kraken
acoustic moss
latent scaffold
#

I'm confused

#

Oh

acoustic moss
frail badge
frail badge
# acoustic moss

oh em gee that would really brighten the mood for my code, wouldn't it.

last mantle
solemn leaf
frail badge
#

theres also a VSCode addon

viscid hemlock
#

@viral parrot, I know you've said that major parts of your company's backend is in NodeJS. Which framework is that?

#

I am looking for one based on callbacks or promises

viral parrot
#

the backend is just written in typescript, im not sure it uses any major framework

viscid hemlock
#

Ah, alright. I have to get into the JavaScript ecosystem no, I wonder if there's an equivalent of the WSGI/ASGI specification

viral parrot
#

if your getting into it, jump into TypeScript

#

its the one thing to rule them all

viscid hemlock
#

Oh yeah I am for sure

#

I literally only know Express is a thing haha

viral parrot
#

express.js is kinda nice, very unopiniated though

sand goblet
#

Speaking of recent discord changes above

#

It's interesting to see how different servers use role icons

#

I find that it's really hard to build a role palette that's friendly to all forms of colourblindness

#

So I think role icons could stand in as an accessibility aid for colourblind people

uneven pine
#

Discord also doesn't care AT ALL about accessibility

sand goblet
#

That's not entirely true

#

I've often gotten special attention from Discord staffers when I talk about accessibility on the DMD

odd sluice
#

there's a moderator discord?

sand goblet
#

Ye, discord moderator discord

#

You have to pass the Discord moderator academy exam to get in

mild abyss
#

exam hmm

sand goblet
#

Mhm

#

Surprising amount of people trying to cheat

#

It doesn't work haha

mild abyss
#

i didnt think there was a kind of exam like that at all hahaha

odd sluice
sand goblet
#

People try to copy paste stuff into the inputs and it's incredibly obvious

odd sluice
#

ahhh I see

sand goblet
#

The multiple choice questions are quirky too

#

Though of course you don't get graded, either you get added to the server a couple months later or nothing happens

odd sluice
#

I see

#

you can take the test multiple times?

odd sluice
#

i see

#

i guess ill get some experience first

dire siren
#

hi xpath gods, how do i combine two xpath expressions

#

for example i have this xpath //abc/def and //abc/fsdfdsfdsd

#

how do i combine them into 1 xpath expression

graceful basin
#

The 2 expressions each match some set of elements, what should happen to those sets when you "combine"

#

Or just return a string or a number

dire siren
graceful basin
#

Ah, a union then

#

Well, a concat since XPath respects order

#

@dire siren seems like //div|//a should work

dire siren
#

what will be the order if those xpath expressions gets more than one element (perhaps each xpath expression will get 3 elements)? @graceful basin

graceful basin
#

Afaik first all of the first, then all of the second

#

But most of my XPath knowledge is from XPath 3, so XPath 1 May differ

dire siren
#

alr thanks

tribal aurora
#

ahhh so that's how it feels to be a mod lol

#

change the python server settings to this

#

and you'll get it

#

too many messages ahhh

mild abyss
#

charles cabbage, the best computer scientist

bleak lintel
#

saw this, neat stuff

solid pollen
#

Can now reach pages from AS211224

inland wolf
#

lol

thick hollow
#

hiya

rough sapphire
#

hay

rough sapphire
rugged fossil
#

any Blockchain developer here ??

wild yarrow
#

eek

harsh tundra
#

!rule 6 ?

royal lakeBOT
#

6. Do not post unapproved advertising.

shadow ridge
#

okay, I'm asking this once again

#

but am i supposed to delete the branch after its merged with the main branch?

dapper dew
#

You can

shadow ridge
#

hmmm

dapper dew
#

Depends on the project

shadow ridge
#

in what cases should i not?

azure beacon
#

Branches inside of git are just "pointers", so you can delete them without affecting the merged commits.

dapper dew
#

If it is your own project and want a messy history of branches

azure beacon
#

So depends more on what the branch is and intentions into the future about that branch.

drifting sage
#

The fact that your name is cryptogen makes this less believable lmao (aside from the fact that advertising is against the rules here)

shadow ridge
#

what if its just like a simple piece of code

#

that i want to add to the main branch

rugged fossil
dapper dew
#

Well, if you have your changes in your branch, merge it into your main with a pull request, your main now has the updates in it. Then you can delete your branch

drifting sage
#

That represents a community

rugged fossil
rugged fossil
drifting sage
#

Hmm ok I'm not interested thanks

shadow ridge
dapper dew
#

Yup, if you want to make sure, checkout your main branch and verify the changes are there first

terse heron
#

!warn 638294730102407168 Please don't use our server as an adboard, as per our #rules.

rugged fossil
royal lakeBOT
#

:incoming_envelope: :ok_hand: applied warning to @rugged fossil.

rugged fossil
drifting sage
terse heron
terse heron
harsh tundra
#

cryptogen user

drifting sage
harsh tundra
#

oh

rugged fossil
harsh tundra
#

my discord didn't notice XD

harsh tundra
shadow ridge
drifting sage
rugged fossil
#

its a development community and every developer contribute in its own manner . i shared a publication to contribute whats wrong in it ??

drifting sage
#

sometimes I confuse @shadow ridge and @rugged fossil because of the pfp lol

rugged fossil
drifting sage
#

It's just it's still against the rules

terse heron
#

!mute 638294730102407168 3d I don't have the time or patience to deal with you. You know very well what you did, and I (and others) have told you repeatedly we don't allow it here. Take this time to reread our #rules and #code-of-conduct.

royal lakeBOT
#

:incoming_envelope: :ok_hand: applied mute to @rugged fossil until <t:1633291451:f> (2 days and 23 hours).

drifting sage
#

Woah
ok lol

terse heron
#

Let's move on please

drifting sage
#

.topic

median domeBOT
#
**If you could have any superpower, what would it be?**

Suggest more topics here!

drifting sage
#

Ooohh

#

Emm\

dapper dew
#

bugless code, perfect tests every time

drifting sage
drifting sage
#

THAT WOULD BE PERFECT

#

IMAGINE IF ALL CODE WORKED FIRST TIME

#

Imagines a perfect future

shadow ridge
dense creek
#

feels great being steve jobs

wild yarrow
#

perfect mastery of all languages, natural or programming would be p cool

gritty zinc
harsh tundra
mild abyss
#

ooooooh

clear plume
dire siren
#

any rust crash course

#

i want to learn rust speed

odd sluice
#

use the rust book

#

its really good

dire siren
#

i want speed

#

bcuz i'm too lazy

odd sluice
#

ye ig

#

you can read through the entire thing

harsh tundra
harsh tundra
odd sluice
harsh tundra
#

Works fine for me 🤷

dire siren
#

worked fine for me

odd sluice
#

the fuck
I dont see the spoiler thing here

#

inspect user 👀

dire siren
#

spooky

shrewd prawn
#

🇧 E 🇦 🇨 🇴 🇳

distant hazel
#

@karmic gust wow so late to the party lol

#

and what theme are you using?

#

surely not the default stabbo

karmic gust
#

well so i was using a weird cmder setup, then powershell briefly

distant hazel
#

try one half dark

karmic gust
#

i think i made my own

#

idk its on my work laptop

karmic gust
distant hazel
#

r u saying you're not using wt at home then!

karmic gust
#

I am, I just haven't customized its appearance yet

#

how do you get monokai, i need everything to be monokai

distant hazel
#

hahahha

tribal aurora
#

@harsh tundra lol what's on ur pfp

harsh tundra
tribal aurora
#

other than that

#

:/

harsh tundra
#

?

tribal aurora
#

the red thing

#

star

harsh tundra
#

WHY TF IS EVERYONE TALKING ABOUT SOME RED THING

tribal aurora
#

idk

harsh tundra
#

There's nothing red!

tribal aurora
#

:/

harsh tundra
#

... Other than the fox, I mean

tribal aurora
#

why are you pretending like that

harsh tundra
#

Ari's a red fox. That's it. No stars

harsh tundra
tribal aurora
#

aw man nvm

harsh tundra
#

!user

royal lakeBOT
#

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

rough sapphire
tribal aurora
#

Whattt

rough sapphire
#

yep there is no red thingy. thanks @harsh tundra for enlighting us

tribal aurora
#

Hmm, what is this sign

#

at least gimme a name 🥲

wild yarrow
#

satan 😎

rough sapphire
#

what sign

latent scaffold
wild yarrow
#

who are you?

latent scaffold
#

you just said my name

wild yarrow
#

3 edgy 5 me

latent scaffold
#

call me by your name

wild yarrow
#

?

tribal aurora
#

what is

#

going on here

wild yarrow
#

fiik

rough sapphire
#

There is no star. Neither one that is red.

odd sluice
#

lies

tribal aurora
#

i mean, i would say there isn't if i knew that sign

harsh tundra
#

My sign?

tribal aurora
#

Aquarians are unique. There is no one quite like an Aquarius. You are indeed unique

harsh tundra
#

I'm not unique

tribal aurora
#

ok whatever

harsh tundra
#

I'm special

tribal aurora
clear acorn
#

I ||don't believe this ||

mild abyss
#

ah yes im a scorpio, im supposed to be romantic

harsh tundra
#

How tf is scorpio romantic?

mild abyss
#

¯_(ツ)_/¯

tribal aurora
#

lol

harsh tundra
#

AFAIK scrorpios are basically like scorpions, lol. Seem cold, are snappy, have kind of inner fire (so if they're passionate about something, it's intense)

#

Some people obsessed with astrology consider scorpios to be a red flag. As in... don't interact. XD

#

I'm not really much into astrology, but geometry behind charts made me really interested. And the fact that when I adjusted my birth time, the thing started matching (rising sign moved and I went from "hah, funny" to "...wtf")

tribal aurora
#

hm

odd sluice
# harsh tundra AFAIK scrorpios are basically like scorpions, lol. Seem cold, are snappy, have k...

Under UV light, almost all species of scorpions glow a bright green color, but why? Thanks to Capital One Shopping for sponsoring a portion of this video! Avoid Paying Full Price. Get Capital One Shopping for free using this link: https://capitaloneshopping.com/veritasium

A huge thanks to Prof. Carl Kloock for the interview and taking us scorpi...

▶ Play video
harsh tundra
#

Ooooh

odd sluice
#

it actually looks quite cute and not ferocious at all so i dont agree ¯_(ツ)_/¯

harsh tundra
#

Fun fact: some diamonds glow under UV

odd sluice
#

they may ook big in the thumbnail

harsh tundra
odd sluice
harsh tundra
odd sluice
#

damn

#

did you know platypuses fluoresce under UV

harsh tundra
#

I think I heard about it

#

I can also glow under UV light

odd sluice
harsh tundra
harsh tundra
#

This thingy glows in UV

odd sluice
#

what

harsh tundra
#

Add a bit of water and you have 5 really bright colours of eye-safe face/bodypaints

#

Which will make you literally glow

odd sluice
#

so fluorescent paint

harsh tundra
#

As I said, I "can" glow, not i "do" glow

odd sluice
#

i had a can of radium paint

#

only a few grams

harsh tundra
#

But this thing is skin-friendly and good for eye area

#

As opposed to radium

odd sluice
#

i havent used radium

#

come to think of it

#

there is a fleck of it

#

on the wall

#

opposite to my bed

#

hope i dont get anything xd

#

(i say this as a joke but i actually do have a fleck of it on my wall)

last mantle
#

lol

harsh tundra
#

One person had either radium or polonium with them during science camp.

#

and no, it wasn't one of the tutors

#

but apparently it was because the person was going to some research facility after the camp? or someone else in there was supposed to and they were supposed to hand it? I don't remember, it was ages ago

odd sluice
#

polonium == death

#

radium == idk

#

probably death

#

(if you get exposed)

#

(for a long time)

harsh tundra
#

tbh I don't remember which it was - both were discovered by Curie-Sklodowska who was Polish, so my mind just coded it was "our" element

#

dosage matters a lot

dire siren
#

.help savatar

median domeBOT
#
Command Help

**```
.avatar_modify spookyavatar

**Can also use:** `avatar_modify  savatar`, `avatar_modify  spookify`, `savatar`, `spookify`, `spookyavatar`

*This "spookifies" the user's avatar, with a random *spooky* effect.*
dire siren
#

@harsh tundra can you savatar your savatared savatar? 🥺

harsh tundra
#

.spookify

median domeBOT
#
Is this you or am I just really paranoid?
dire siren
#

it's less spooky lol

dire siren
harsh tundra
#

.spookify

median domeBOT
#
Is this you or am I just really paranoid?
odd sluice
#

ok thats creepy af

dire siren
inland wolf
#

👻

#

.spookify

median domeBOT
#
Is this you or am I just really paranoid?
harsh tundra
inland wolf
#

bruh

#

imma save that

#

lol

dire siren
#

i wonder why does it not use your custom avatar on the server to do spookify

harsh tundra
#

but it does?

#

I have only one avatar

dire siren
#

i mean your avatar with the red star

odd sluice
#

because that's the server profile

#

not the real one

harsh tundra
#

what star? why does everyone say there's some star in there?!

inland wolf
#

hello

harsh tundra
#

???

inland wolf
#

the red star

#

ye

gritty zinc
#

huh?

inland wolf
#

ha

odd sluice
#

i need a halloween pfp

inland wolf
#

lol

harsh tundra
inland wolf
#

reload

harsh tundra
inland wolf
#

wtf

#

its a server pfp

#

i reloaded too