#ot1-perplexing-regexing

1 messages · Page 165 of 1

worldly ice
#

maybe try right clicking and opening the link in a new tab

feral yew
#

worked

#

now how do i fix that crypto error

worldly ice
#

pip install pycryptodome

#

lemme know what happens

feral yew
#

kk

#

pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file,
or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
At line:1 char:1

  • pip install pycryptodome
  •   + CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFoundExceptio  
     n
      + FullyQualifiedErrorId : CommandNotFoundException
worldly ice
#

ok, so then do py -m pip instead of pip

feral yew
#

kk

#
PS C:\Users\lyzek> py -m pip install pycryptodome
Collecting pycryptodome
  Using cached pycryptodome-3.23.0-cp37-abi3-win_amd64.whl.metadata (3.5 kB)
Using cached pycryptodome-3.23.0-cp37-abi3-win_amd64.whl (1.8 MB)
Installing collected packages: pycryptodome
Successfully installed pycryptodome-3.23.0

[notice] A new release of pip is available: 25.1.1 -> 25.2
[notice] To update, run: C:\Users\lyzek\AppData\Local\Programs\Python\Python313\python.exe -m pip install --upgrade pip
PS C:\Users\lyzek> ```
#

i reran it and same error

worldly ice
#

reran "it"?

feral yew
#

the code

worldly ice
#

force close your IDE and reopen it

feral yew
#

kk

feral yew
# worldly ice force close your IDE and reopen it

same error ```py
PS C:\Users\lyzek> py -m pip install pycryptodome
Collecting pycryptodome
Using cached pycryptodome-3.23.0-cp37-abi3-win_amd64.whl.metadata (3.5 kB)
Using cached pycryptodome-3.23.0-cp37-abi3-win_amd64.whl (1.8 MB)
Installing collected packages: pycryptodome
Successfully installed pycryptodome-3.23.0

[notice] A new release of pip is available: 25.1.1 -> 25.2
[notice] To update, run: C:\Users\lyzek\AppData\Local\Programs\Python\Python313\python.exe -m pip install --upgrade pip
PS C:\Users\lyzek> ```

#

i didnt mean to send that

#

but i closed then opened

#

i ran it again

worldly ice
#

ok well I just did it and it worked fine

feral yew
#

same error

worldly ice
#

I installed pycryptodome in a venv

#

send screenshot of your screen

feral yew
worldly ice
#

no, send a full screenshot

feral yew
#

of?

#

Thats the whole error

#
Type "SETX /?" for usage.
Traceback (most recent call last):
  File "C:\Users\lyzek\main.py", line 7, in setup_env
    from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\lyzek\main.py", line 56, in <module>
    setup_env()
    ~~~~~~~~~^^
  File "C:\Users\lyzek\main.py", line 47, in setup_env
    from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'```
worldly ice
#

no, your screen

feral yew
worldly ice
#

so I can see if anything might catch my eye

feral yew
#

do u know why the error might be there

worldly ice
#

that's what I'm tryna figure out bro

#

??

worldly ice
turbid heron
worldly ice
#

they installed a different version of python, so no

#

they previously had the release candidate for 3.14, and I got them to install 3.13

turbid heron
worldly ice
#

hmm thinking actually

#

maybe pip didn't get uninstalled for some reason

turbid heron
#

They never did pip uninstall

worldly ice
#

pip uninstall is for site-packages, not for pip itself

#

@feral yew
try this

py -m pip cache purge
turbid heron
#

pip uninstall crypto

worldly ice
#

or wait

#

ok ok

turbid heron
#
The root cause is that, in the past, you most likely have installed an unrelated but similarly named package called crypto, which happens to operate under the namespace crypto.
worldly ice
#
py -m pip uninstall crypto
py -m pip uninstall pycryptodome
py -m pip cache purge
py -m pip install pycryptodome
turbid heron
worldly ice
worldly ice
ebon shell
glossy niche
#

most of my seniors comments are nit picks about names and conventions I'm sick of this shit dude

rough sapphire
#

at my place seniors don't ideate on requirements. they ideate on the optimal code structures.

tardy rain
#

You guys get comments on your PRs?

plush sun
#

Whatever meaning of "interesting" you're using

foggy jungle
# glossy niche most of my seniors comments are nit picks about names and conventions I'm sick o...

https://daniel.haxx.se/blog/2025/04/07/writing-c-for-curl/

Code should read as if it was written by a single human. There should be a consistent and uniform code style all over, as that helps us read code better. Wrong or inconsistent code style is a bug. We fix all bugs we find.

It is a somewhat common question to me: how do we write C in curl to make it safe and secure for billions of installations? Some precautions we take and decisions we make. There is no silver bullet, just guidelines. As I think you can see for yourself below they are also neither strange nor … Continue reading Writing C for curl →

glossy niche
paper quest
tardy rain
#

people on my team and around it keep using var and snake case in JS because they see it in older code and they mimick it

#

update as much as you can as often as you can

glossy niche
tardy rain
#

Some conventions really dont change tho

#

Naming conventions, tabs vs spaces, etc

paper quest
#

I have to admit, I figured the scenario which you were talking about was about renaming some concept shared between repos to reflect changes in semantics. At which point I'd argue yeah, especially if that change is cheap, ensuring that it's clear to everyone what the thing is referring to should be a priority.

#

I find it hard to imagine a scenario where seniors would ask you to update old code with new variable names outside of these:

  1. You've changed the name of a concept in your code, but neglected to rename that existing concept in legacy code
  2. You've embedded code following a new convention in legacy code following an old convention (or you've mimicked the old convention instead of using the new convention), causing a glaring contrast in the expected format in the diff and the actual format

In case (1) I'd argue that you should perform the rename as asked because it will help everyone else understand what the thing refers to across the codebase. In case (2) I'd argue that this counts as enforcing convention lazily. You're updating existing code, therefore you should make sure the existing code is aligned with the new code you write as much as possible.

Of course it's entirely possible that your seniors just told you to go update some unrelated code while you're at it, but somehow I don't find that very plausible.

opaque merlin
#

who is joseph

#

why he is a bad man

#

i need answers

harsh tundra
paper quest
#

Mm. I try to avoid assigning make-work myself, but I guess I can't rule it out.

tardy rain
#

clean up tasks like these are a quick and simple way of getting to know the codebase imo

paper quest
#

Sure, but as an add-on to an actual task during code review?

warm haven
#

hi people

paper quest
#

Would also like to contest the value of it in "getting to know the code base", since it doesn't actually necessitate reading and understanding the code to tweak the style. I do think it would help in getting exposition to new parts of the code and the way the files are structured, but I don't think it's going to be extremely helpful in building deeper understanding.

tardy rain
#

I mean, its a clean up task for juniors, its not meant to build deep understanding

#

More so make them aware things exist

paper quest
#

Fair enough.

tardy rain
#

I wish i could go back and fix older shit but unfortunately every change needs a ticket reference and janitorial tasks arent really prioritized

#

My bossman would probably not be happy if i took on extra work

paper sequoia
#

!rule 5 no..?

royal lakeBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

mossy dust
sharp wagon
#

Hello boss

tardy rain
#

Speak of the devil, had to fix fugly 10 year old legacy js code

#

I dont usually touch surrounding code without a jira reference but fuck it

#

var is fugly, snake case doesnt belong, weird line breaks begone

#

The only thing i didnt change was make single quotes double

#

All my homies hate single quotes

#

Maybe i should do that too

solemn tulip
acoustic moss
#

valid

crystal spruce
#

i love single quotes

latent scaffold
#

my condolences

tardy rain
#

terrible opinions in chat

green pelican
#

It's in my top 10 characters for sure

stark prawn
#

i do not care for the relationship status of quotes

willow narwhal
#

Python should support more types of quotes, like „these“

#

Maybe depending on locale. If you're french, you have to use «guillemets».

latent scaffold
#

apple quotes

#

smh

sharp jasper
#

🍎quoted text🍏

latent scaffold
#

🍎I love 🍎s🍏

#

green apples are a tough subject, but fuck green apples

sharp jasper
#

fair

harsh tundra
#

https://en.m.wikipedia.org/wiki/Quotation_mark#Polish this section even shows an example of text with that

Quotation marks are punctuation marks used in pairs in various writing systems to identify direct speech, a quotation, or a phrase. The pair consists of an opening quotation mark and a closing quotation mark, which may or may not be the same glyph. Quotation marks have a variety of forms in different languages and in different media.

willow narwhal
#

Because often it doesn't necessarily break after the end of the quote, and you have to guess from context.

sharp jasper
#

Cold Mountain did that

#

In English

#

It's supposed to be more immersive or something

willow narwhal
#

It constantly breaks immersion for me when I start reading a sentence in the wrong voice and have to backtrack.

zealous night
#

is it true that when code is good the application takes less cpu usage

marble bay
#

not necessarily

#

programs are a delicate balance between performance/memory footprint/power draw etc. etc.

solemn tulip
thick ore
#

im torn between using llms and not using llms for coding

#

mainly on the morality side

#

all my friends are against genai

marble bay
#

I just do it at a whim, if I'm feeling lazy or wtv

thick ore
#

i mean... it's not like programmers care that much about code being stolen/regurgitated

#

unless it's a huge chunk of proprietary business logic

#

anyway, that compared to artists, designers and stuff

thick ore
#

software devs are so cooked 😂

marble bay
#

Morality defenestrated

thick ore
#

this is such a funny screenshot

#

ok that's too much crop

sharp wagon
#

What's good developers 👑🦅

lament cairn
grave cove
undone granite
#

crazy

harsh tundra
willow narwhal
#

At least it shouldn't matter as proper English start and end quotes are different.

#

Indeed, I just checked a random book... I never noticed.

gritty zinc
#

fun LLM-related fact: recently I was reading a trashy web novel translated from Chinese, and the well-translated segment ended, with the rest being garbage MTL

#

so I just... translated the rest via various free LLMs. the result is somewhat worse than human translation*, but immensely better than MTL, and it cost me $0 for hundreds of thousands of words

*mostly because my scaffolding is bad

#

i think human translators are in huge trouble

acoustic moss
#

yeah translation is one thing where it makes 100% sense that llms are good at it

jaunty wraith
#

Would you be able to tell whether the LLM is emitting garbage translation?

gritty zinc
#

I checked on the well-translated chapters that the LLM one matched

acoustic moss
#

funny its chinese

#

cuz chinese room argument and allat

gritty zinc
#

I didn't get any hallucination incidents where it would start making the story up.

#

I did get some weird incidents with bad prompting - e.g. I'd include a part in the prompt mentinoning "keep proper name translations concise; for example, translate <X> as <Y>" and it would start translating other, unrelated proper names as Y. That was really weird and I had to remove that example.

#

(I suspect it's due to using fairly small models, along the lines of 4o-mini. They are pretty dumb.)

gritty zinc
quasi blaze
#

When it comes to speaking to individuals, would you prefer if the speaker is using basic vocabulary and simple diction as opposed to using highly advanced vocabulary and diction?

An example of some who uses advanced vocabulary and diction in my opinion is Jordan Peterson.

Someone who uses simple diction and basic vocabulary would be Donald Trump

glossy niche
#

both are fucking idiots please use other examples lol

#

Jargon is a shortcut

#

it's great for experts and shit for new comers

#

imo

#

or are you referring to precise terminology?

#

like "AI" vs "llm"

#

but imo such a thing often requires some to define their terms out right at the start

spare oriole
tardy rain
#

Jordan Peterson is a charlatan keezy, seriously, better examples

#

and dont say shapiro

glossy niche
#

I would say trump is very articulate but very stupid

#

he gets nowhere super fast

tardy rain
#

If you want someone articulate look at alex oconnor

paper quest
#

I definitely would prefer someone able to say smart things in a simple way. Provided they can say the smart thing.

tardy rain
#

or that other guy from unsolicited advice

#

idk his name, drew maybe?

quasi blaze
tardy rain
#

none of these clips sound real, organic

#

TI sounds like he's taking a second to think about the "big" word he's about to use

grave cove
#

1900s ass insult

tardy rain
#

we're using big words in chat rn robin

grave cove
#

whatever u say unc

tardy rain
#

.wiki charlatan

median domeBOT
#
Wikipedia Search Results

Charlatan
A charlatan (also called a swindler or mountebank) is a person practicing quackery or a similar confidence trick in order to obtain money, power, fame

Charlatan (disambiguation)
up charlatan or charlatán in Wiktionary, the free dictionary. A charlatan is a trickster or con artist. Charlatan may also refer to: The Charlatan (1917

grave cove
#

quackery 😭 🙏 🥀

tardy rain
#

yea that pretty much describes jbp

#

a trickster and a hustler

#

a conman

grave cove
#

yeah those kinds of influencers are kinda cringe

tardy rain
#

keezy if you want an example of the games he plays to sound smart look up his jubilee interview

#

1 christian vs 25 atheists or whatever

#

actually, they changed the title from that to JBP vs 20 atheists

#

because the man refuses to engage in any sort of productive discourse

latent scaffold
tardy rain
#

how's that for big words

latent scaffold
#

that man will turn every debate into a "Well, how do you define ..." debate

tardy rain
#

you have to be precise, lets get precise

latent scaffold
#

Goodness

#

You're him

tardy rain
#

i just follow the rules for life

#

rule #10 btw

modern pilot
#

hey guys i want to speak with anybody because i do some coding now i wanna speak about python while code can anybody come to voice chat 0

ebon shell
#

ASAB
assigned siberian at birth

@spare oriole

marble bay
#

everyone is just constantly trying to not get sent to sibera once they're born

turbid oyster
#

Sasha is not a good guy I can tell you that

latent scaffold
ebon shell
small coral
tranquil trail
#

Hii

hidden raptor
# tranquil trail Hii

How much is the galaxy book 4 and how much is the Mac mini at whatever store you're getting it from?

ebon shell
#

also specs

hidden raptor
ebon shell
#

what are specs

#

my guy

tranquil trail
#

16gb ram 512gb SSD

ebon shell
#

also whats the exact price

hidden raptor
#

If there are no other Galaxy devices, then get the Mac mini

tranquil trail
hidden raptor
tranquil trail
#

It has 8 gb ram 256 gb

hidden raptor
tranquil trail
#

Processor m1 is good or not

hidden raptor
#

good

supple tree
#

its fair

tranquil trail
#

What would I buy under 60000 INR

hidden raptor
#

Add to cart, Buy Now

tranquil trail
#

I have that budget

hidden raptor
tranquil trail
#

Windows or mac

hidden raptor
tranquil trail
#

I am not too rich I cant afford if any damages happened

supple tree
#

get mint

#

or ubuntu

#

software arent payed

#

:3

tranquil trail
#

What would I buy windows laptop or mac

#

Please suggest the laptop in 60000 INR

#

Best laptop

supple tree
#

well idk cus price are different on countries

#

thers no real definition on best laptop

hidden raptor
#

Especially for your AI dev journey

supple tree
#

thats a fair choice to

tranquil trail
#

I am purchasing it from parents money

supple tree
#

i found thinkpad to be a popular choise on most student, maybe you can check it out

tranquil trail
#

Do I need a screen protector for the mac m1

hidden raptor
tranquil trail
#

Do I need the screen protector or its optional

hidden raptor
tranquil trail
hidden raptor
#

Go for it

tranquil trail
#

It's better that I purchase a good windows laptop with high specs instead of buying these stuff that are not affordable if some damages happened to mac

#

There are so much high cost for their repair

#

For Apple products

#

Now mac is out from the option

tranquil trail
tranquil trail
#

In windows laptop

#

There are series u h p

hidden raptor
#

I don't know any "Series" Windows laptop

tranquil trail
#

Processor

hidden raptor
#

You mean HP Laptops?

#

Lenovo Thinkpad is good

#

Dell XPS is good

tranquil trail
#

These are series of processor

latent scaffold
#

yeah Intel

#

they have different laptop series

hidden raptor
#

Latest processor in either Intel or AMD are fine

tranquil trail
#

H have good performance but low battery

latent scaffold
#

Definitely not H

#

I believe U is usually what people recommend

#

for laptops, anywya

carmine apex
#

iirc, intel u and h are low/medium-grade processor series, for phones and laptops. like how k is high-grade

latent scaffold
#

I think you might have it mixed up, pretty sure H is the high-power one

tranquil trail
#

Which should I purchase under 60000 inr

#

For ai ml

latent scaffold
#

oh yikes

hidden raptor
#

tbh I think you're just overthinking this

latent scaffold
#

well, I don't think I could recommend a laptop for that stuff

latent scaffold
#

Honestly, if a laptop ain't light in like every regard

#

it ain't worth it

#

that's my opinion, of course

#

Gaming laptops and stuff, I cannot stand

#

Heat, weight, battery life... it all adds up, it can very quickly be quite inconvenient

carmine apex
#

what, you don't like a $1200 laptop with a 90-minute battery life with poor thermals that weighs 15 pounds?

latent scaffold
#

no

#

no, I do not

carmine apex
latent scaffold
#

huge fucking bricks that toast your legs

#

and like other things that shouldn't be toasted

#

awful

bold quiver
#

Also, are you buying a laptop with Intel chip?

tardy rain
#

You don't know TI?

glossy niche
#

no

#

how tf r disdain and hiatus big words

#

FRUITION IS A BIG WORD?

#

I question the literacy level of whoever put this vid together

#

CONDUCT IS A BIG WORD???????

#

sentenced to attending high school English class

tardy rain
#

For some rappers it is

glossy niche
#

the full might of the American education system at play

tardy rain
#

I'm not sure TI is very educated

#

To be a successful rapper you would expect someone's vocabulary to be larger, more diverse than average

#

And yet

upper flower
#

hello

faint cargo
#

looking for a coding parter for DSA in Python

grave cove
#

lil u haul is insane work

low chasm
#

yeah i feel like portability is a pretty big thing most people would want

latent scaffold
#

@grave cove I think I need advice

grave cove
#

bro u just needa get off after 2

latent scaffold
#

but

#

the season ends today </3

#

I haven't had a win in 26 hours

grave cove
#

bros fried

#

i hit c3 today so im happy

latent scaffold
#

:c

#

I'm gonna lose it

#

I'm literally convinced it has to be the matchmaking

#

like, I just had a game as Magneto and I had more finals than each of our THREE DPS

#

and it's not like I was even trying to get kills, I was just doing regular tank things

#

bonked an Iron Man on the head, a Luna Snow on the head

#

when I asked for some swaps, everyone said they do not know how to tank

#

._.

grave cove
latent scaffold
#

I feel like especially when it comes to my healer win rate

#

It surely should be around 50/50

#

but nope, it's like 20% for some god forsaken reason

#

and I know for a fact it's not because I'm a bad healer

#

Some cinema 😔

grave cove
#

absolute cinema

latent scaffold
#

Good to know he can't live that even with that much shield

#

I'ma try just one more match

#

if I lose, I'm just done

#

no more until 3.5

#

the first season where I don't reach grandmaster

latent scaffold
#

yeah that was a crazy loss

#

it was a 6v5

#

and we still lost big time

#

how the hell, man

green breach
#

RIP

latent scaffold
#

I don't get it

#

I seriously don't get it

#

Imagine LEAVING for 70% of a match and coming back to a win

#

that's how bad my team was

green breach
#

RIP, uh Team-Based online games are often unbalanced?

latent scaffold
#

meanwhile, I play on my alt and the same exact ranks are ezpz

#

I'm ranked higher on my alt than I am on my main

#

what kinda shit is that

green breach
#

Maybe you get inside your head? The matchmaking decided your main could carry a team?

grave cove
#

alt account games feel so much easier

latent scaffold
#

instead of throwing

green breach
#

🤷‍♂️

grave cove
#

well at least you get to play blade tmr

#

im excited to see how the balance changes and blame shake up the meta

latent scaffold
#

I don't even know how much I wanna play anymore lol

#

My games have been getting so much worse

#

I'm convinced the game has an internal skill level somewhere and seriously thinks I'm capable of carrying that hard

#

It just doesn't feel fair

#

Competitive absolutely sucks to such an insane degree and I'm tired of my quick match teams getting destroyed by like Black Panther and even worse skill disparities

#

Meanwhile, I can carry on my alt with BLACK WIDOW against the same exact ranks

#

It doesn't make any sense

green breach
#

Hmmmm, a long time ago when I used to try in Competitve games (kinda), I eventually got fed up with 2 things. 1) People paying to level up their characters and I would get wrecked because of that and 2) Teams of players that party and then go around and bully the people that random-matched and don't have team composition.

#

I don't know if either is relevant

latent scaffold
#

They're kinda addressing the second issue you bring up

#

The higher rank you go, the less people can make up a team

#

Eternity+ is only 2-person teams

#

Well, of course it's still 6v6 but people can only squad up with 2 people

green breach
#

Hmmmm, I suppose that would be fairly good

latent scaffold
#

Kinda

#

Generally, stacks get paired against other stacks

#

It means you're more reliant on random matchmaking

#

Which, for me, is just entirely problematic

#

apparently

grave cove
green breach
#

Today I learned that you can colorize your multi-line code blocks via "```python" (or other code-language-name) Ex:

def my_func(x, y) :
    return x * y

def main() -> None:
    print(my_func(10, 3))

if __name__ == "__main__":
    main()
royal lakeBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

worldly ice
#

You can even do ANSI

green breach
worldly ice
#

The ANSI part?

green breach
#

Nah, I knew that bit

#

I tried looking it up before (cuz I saw others do it) and Google told me about that

#

I figured everyone just had a client that would do ansi formatting automatically based off of an LSP or a Treesitter or something

carmine apex
#

nah discord uses an internal fork of a major program called highlight.js that they update about 3 times per 20ish years

green breach
carmine apex
#

(2 times per 30ish years for mobile users)

green breach
#

What languages do they even support anyway?

#

I know that they got python and rust, is there anything else?

carmine apex
upper flower
#

¯_(ツ)_/¯

green breach
upper flower
#

i wonder

#

if thuri has a japanese keyboard

green breach
warped sentinel
green breach
#

The language

warped sentinel
#

Otherwise, someone would have contributed it

carmine apex
upper flower
#

broo

#

how do i stop this code suggestion from coming

#

like when u press tab it ends up writing all of what it suggested

carmine apex
#

ah, it keeps it on restart
better than not doing so i guess

marble bay
upper flower
#

i disabled it

marble bay
#

yeah, copilot suggestions have a way to accept a part of a generated completion

upper flower
#

idk if its a good thing

#

but i think if i keep it on i wont learn anything that way

marble bay
#

yeah you wont

latent scaffold
#

Apparently I can win games

#

What's funny is the game was like "no no, go back to competitive" as soon as I tried to play a single quick match game

#

nvm we're back to people throwing lol

#

okay nvm the gods have decided the enemy punisher be AFK in their spawn and the match is canceled

#

We had a DPS Jeff

latent scaffold
#

Time to go sleepers and wake up to Blade tomorrow

#

I had a great final match, kinda just threw on Venom 'cause the match doesn't count anyway

#

I ended up starting a whole like... funky step party because emotes stopped working

#

That game is definitely completely lost but man was it a vibe while it lasted

green breach
latent scaffold
#

He feels so fun

#

But he can be very squishy

#

Great match, though

#

Had some really cool moments

grave cove
acoustic moss
#

imma give rivals a shot

latent scaffold
#

It REALLY gets him killed so fast

#

It'll take Adam like 4 charges to fully heal you with it on

#

It's crazy

grave cove
#

he gets life steal in the vampire form though doesnt he

latent scaffold
#

It's pitiful

#

Frankly

grave cove
#

tbh this game has such high healing anti heal heroes are def needed

acoustic moss
#

casual 9GB update

#

crazy

grave cove
#

midseason update

grave cove
acoustic moss
#

have you tried shooting at them

grave cove
#

does nothing

#

ultimate does like 200 healing per second

acoustic moss
#

how much damage is a headshot

#

with the average weapon

grave cove
#

theres only one hero that can headshot through that

acoustic moss
#

me

grave cove
#

aura

grave cove
#

but for the most part when two support ultimates are in play the only thing you can do is farm your own ult charge

acoustic moss
#

Ok which is the simplest hero

#

i j wanna tap heads

grave cove
acoustic moss
#

i guess

grave cove
#

play hela

#

hitscan character, simple abilities, fairly busted if you can hit your shots

latent scaffold
#

Hela and Punisher

acoustic moss
#

bet

grave cove
#

can double headshot most non-vanguards in the game

latent scaffold
#

Phoenix to some degree but she's a little bit more complicated

acoustic moss
#

oh yeah i had to play punisher in some tutorial thingy

grave cove
#

she was my first main

acoustic moss
#

goofy ahh zipline ability

grave cove
#

you can also just play rocket and healbot your team

latent scaffold
#

I wish his zipline was a grapple

#

like Moon Knight's

#

Squirrel Girl also might fall into this category tbh lol

#

just doesn't do headshots

#

but very simple point and shoot

grave cove
#

friends dont let friends become squirrel girl mains

latent scaffold
#

loll

#

nah I'll support it but Moderation™

#

I say this as someone who was top 150 Scarlet Witch

acoustic moss
#

fascinating character design

latent scaffold
#

I just really like the character, idc how shit she is

grave cove
latent scaffold
#

He found the Malice skin

acoustic moss
#

wdym

latent scaffold
#

jk idk

#

idk whose character design we're talking about

#

none of the mentioned characters are particularly fascinating

acoustic moss
#

squirrel girl

#

ok

latent scaffold
#

She's honestly pretty fun

grave cove
#

shes kinda bullshit yeah

latent scaffold
#

she can be but man

#

The good Squirrel Girls?

#

They will not hesitate to run up on your ass

grave cove
#

i played against the rank 1 sg a few times ts made me almost crash out

acoustic moss
#

what do you main

latent scaffold
#

Isn't it obvious? Their name says it all

#

Hawkeye, of course

grave cove
#

me?

#

or cyph

acoustic moss
#

both

latent scaffold
#

I don't have a main tbh

grave cove
#

im a fairly flexible player but i have the most time on magneto

latent scaffold
#

I guess I'd have to say Human Torch

acoustic moss
#

did you guys watch f4

latent scaffold
#

but I also play Magneto and Luna Snow or Cloak & Dagger

grave cove
#

im going today

latent scaffold
#

I haven't, but I will eventually

#

I plan on it, just haven't planned on it

acoustic moss
#

its pretty good actually

grave cove
#

all f4 are in the game if you wanna play one of them

acoustic moss
#

though i went in with no expectations

latent scaffold
#

They have the First Steps skins, as well

#

I have the Human Torch one lol

grave cove
#

i brought the sue storm one

#

absolute cinema

latent scaffold
#

I like her emote

grave cove
#

i wish it didnt make her invisible

latent scaffold
#

I like that it doesn't turn her invisible on other skins

#

well, guess we both don't like the invisibility lol

grave cove
#

lmao

latent scaffold
#

I cannot wait for the new Human Torch skin

#

I need his summer skin already

grave cove
#

👀

latent scaffold
#

You can see it in one of the gallery cards

grave cove
#

cinema

acoustic moss
#

lmao theres a shark agent 😭

#

what does mr blahaj do

latent scaffold
#

"agent"

#

go back to Valorant

grave cove
acoustic moss
#

oops

latent scaffold
#

I LOVE JEFF

#

AHHH

grave cove
#

jeff is actually an eomm agent

latent scaffold
#

I lorded him and spent $20 on his skin

#

I'm the best Jeff round here parts

acoustic moss
#

are there other jeffs round these parts

grave cove
latent scaffold
#

yes of course

acoustic moss
#

lmfao

#

based

latent scaffold
#

he's the cutest LITTLE GUY

#

who can refuse to play him

grave cove
#

his ultimate swallows all players in his radius, then he kills himself by jumping off the map with them in his stomach

acoustic moss
#

i cant tell if youre trolling me

latent scaffold
#

or o_O less violently, he can drag them into the spawn room

acoustic moss
#

but i believe that

grave cove
grave cove
latent scaffold
#

you can either spit them out or you can dive off the edge of the map

acoustic moss
#

uh huh

latent scaffold
#

or into your spawn room

#

where they suffocate

#

Jeff's low-key a difficult character to do well with

grave cove
#

did u see they played him in the tournament

latent scaffold
#

I did see that

#

I don't think I saw more than someone used him

grave cove
#

tbf they kinda banned half the support roster

#

loki luna mantis and cloak were all banned

latent scaffold
#

Banning supports has felt kinda useless

#

like, in typical competitive

#

Unless you're a dive or something, there doesn't feel like much of a reason

#

Rocket is the only one with specific counter play

grave cove
#

psylocke players ban loki all the time

latent scaffold
#

yeah, but I loop Psylocke under dive

#

I'm, also, not in the ranks where it's hard to provoke an early rune out of Loki

grave cove
#

fair

#

if i know psylocke has her ult you aint pulling runes out of me

latent scaffold
#

but there's also a good chance you're getting a support ult for that anyway

grave cove
#

anyways my game just finished updating ima go see how the new season is PES_Salute

latent scaffold
#

gl o7

#

ah. who needs healers anyway

acoustic moss
#

i have absolutely no idea what happened in that match

#

i went 2/5/0 😭

latent scaffold
#

Who'd you play

acoustic moss
#

hela

#

i should play a dm or something

#

not used to 3rd person at all

latent scaffold
acoustic moss
#

uhh

#

free for all

latent scaffold
#

deathmatch?

acoustic moss
#

ok i see this doom match thingy

#

yeah

latent scaffold
#

yeah

#

Doom Match is kinda rough

#

It's kinda just "How many kills can I steal"

acoustic moss
#

im better

latent scaffold
#

Hela's probably good there though

acoustic moss
#

mfw non zero queue time

grave cove
acoustic moss
#

8/9/9 in the dm

#

im the goat

latent scaffold
grave cove
#

mfs keep spamming need heals in blade's anti heal form

#

like tf u want me to do about it bro

#

ping diff

latent scaffold
#

His self anti-heal is CRAZY

#

like I'm genuinely surprised how weak it makes him

grave cove
#

first game im getting to play him

#

so idk if the lifesteal makes up for the anti heal

latent scaffold
#

it doesn't

#

It kinda can

#

but like you really gotta be getting healed

#

so you have to be ready to parry and get your ass outta there

grave cove
#

damn im ass at this hero

stark prawn
#

unbelievable

grave cove
#

i was at 25k yesterday this is nothing 🥀

latent scaffold
#

If you can't brawl, you ain't doing crap

grave cove
#

i got solo support jeff

latent scaffold
#

yeah this is where you get the worst healers for a good amount of time

#

or in very many a case, no healers

grave cove
weak peak
#

🥀

latent scaffold
#

This character may make me go crazy

#

He dies so fast it's actually insane

grave cove
#

yeah i didnt really mesh with his playstyle

latent scaffold
#

I really wanna try him in like a typical grand master type of match

#

'cause like these comps suck

#

Mantis + Warlock every game

#

I can't do anything just peaking with this character lol

glossy niche
#

bro the ffmpreg twitter just loves starting shit

#

🍿

turbid oyster
stark prawn
#

why

turbid oyster
stark prawn
turbid oyster
green pelican
glossy niche
#

i worry theo might end up a pirate software situation

#

i asked ppl why they hate him so much and they are all like "hes just fucking annoying" and reply with this image

theo is 1 bad take away from drawing in a huge rally if ppl who will shit on him

green pelican
#

theo is gonna go after gnu next 💀

glossy niche
#

but he hasnt done anything to piss off redditors so not yet

#

i think some of his FE takes are good but his vids are all like "Lets look at this library for doing REST API calls" 43 minutes and 53 seconds

undone granite
glossy niche
#

no clue and frankly i dont care

#

just here to see people fight

green pelican
rough sapphire
#

Hi

glossy niche
#

sup

green pelican
#

hi

rough sapphire
#

Python Crash Course

green pelican
#

wot

glossy niche
#

remember how i complained abt yt recommending right wing BS to me last week? now its sending me neo n@zi shit 💀

#

swastikas and all

turbid oyster
weak peak
vale raven
weak peak
#

/sarcasm

green pelican
#

He said it himself lol

weak peak
#

no shot, really?

green pelican
#

Yuh

vale raven
#

What was it then?

weak peak
#

I'm trolling bro

#

😭

vale raven
#

o

stark prawn
#

Someone called himself pirate software? 💀

weak peak
#

jfc, I know he is a nepo baby

#

I am his #1 hater

#

🙏

green pelican
#

LOL

vale raven
green pelican
#

His game is so optimized you can cast it to a different monitor tho

weak peak
#

fire bro

green pelican
#

Who let him cook like that

weak peak
#

it can run on a smart fridge though

vale raven
#

Wait

stark prawn
vale raven
#

Does this guy not have a Wikipedia page??

green pelican
weak peak
#

nah bro you a hater

green pelican
#

Nah bro

weak peak
#

it can clearly run on a smart fridge

green pelican
#

You got me

#

It can

#

He wrote it in pure x86 asm

#

God coder

weak peak
#

exactly

vale raven
# stark prawn The god of thunder, marvel super hero, and man of peoples dreams?

This is how Pirate Software lost everything.. and why he deserved to.
Try Odoo for free today: https://www.odoo.com/r/Lakg

Subscribe with notifications as I am already working on a follow up video...

Shoutout to @Quintheo @CodingJesus and others who have been continuously covering and researching the information that made this video possible.
...

▶ Play video
stark prawn
#

I googled him and apperantly he got kicked from his world of warcraft clan for refusing to own up to the death of his clan mates

weak peak
#

all my homies love rage baiting PirateSoftware

green pelican
#

Idk

weak peak
#

WoW iirc

#

he ran

vale raven
#

Hey guys
How long would you wait for a webpage to load?

#

Please pay no attention to the ?json=

stark prawn
vale raven
#

yeah they reported a 10 minute load time

#

that then failed

green pelican
#

how does it even load for 10 minutes before failing\

vale raven
#

God only knows

#

It's hitting a 502 so that must be the gateway's timeout

bleak lintel
#

do you mean actual load time or boring web load time

#

ahh web load time

#

boring

turbid oyster
turbid oyster
stark prawn
vale raven
lament cairn
latent scaffold
#

@grave cove What are your thoughts on Blade after him being out for most of the day

#

I've been playing him for a few hours now, and man I still don't really get him lol

#

I say that and my win rate with him is like 72% somehow

grave cove
#

im not really a dps person so i havent played him

#

but playing against him feels pretty easy

latent scaffold
#

Gotcha

grave cove
#

ive only seen him get value when enemy luna ults

#

lifesteal + focusing targets usually guarantees a pick or two

latent scaffold
#

I can get some kills during those which is nice but like

#

If he gets healing reduction from another Blade and enters his vampire mode

#

He is SMOKED

#

even just entering vampire mode in a Luna dance battle

#

It's weirdly dangerous

grave cove
#

i find that vampire mode is only good in isolated 1v1s

latent scaffold
#

With all the Groots around, his ult really does make quick work of enemy support ults

latent scaffold
#

Like, Blade really does not win too many 1v1s

#

not if they're isolated

#

He's great at 1v1ing tanks and supports, though

#

Like, Captain Americas really hate to see me

#

There's very few DPS I can imagine Blade winning 1v1s with

#

it's stuff like Squirrel Girl, Moon Knight, Hela, maybe Winter Soldier but I kinda doubt it

#

oh Wolverine maybe actually

glossy niche
#

like it's not malicious but it's painfully mediocre content

upper flower
#

like nas daily ones

grave cove
green pelican
#

im such a fucking idiot nvm

#

passed the wrong argument

#

😐

#

how the hell are people glazing gpt5

#

i asked it for a text file of post data and i got a PICTURE OF A FILE

timid latch
#

what

jovial oriole
#

Lol

#

I noticed its pretty ahh ngl

latent scaffold
#

I assume they meant for him to be better at diving, but it just really ain't working out

#

His life steal is just too bad

paper sequoia
#

!rule ad

royal lakeBOT
#

6. Do not post unapproved advertising.

rustic gust
#

Enough relatable

vale raven
#

bro is getting defenestrated

latent scaffold
#

@grave cove It turns out Blade's lifesteal might be bugged

#

His self-healing reduction actually applies to his lifesteal

#

So instead of the 60% the website says he gets, he's only getting 36%

#

I tested this in-game, and it does seem true

grave cove
#

oh

#

that would explain it

upper flower
#

when clearly it couldnt solve my project layout issue forget softwars

#

his job is to create hype around his product and his company just like mark zuckerberg

#

both are shit people ong

turbid oyster
#

with plugins and everything

#

it made its own plugin system with an API

#

and it surprisingly works very reliaby

upper flower
turbid oyster
#

handles 100 players easily

turbid oyster
thick ore
turbid oyster
#

idc about some plots

upper flower
#

if it was really that great, why would they fake benchmarks

turbid oyster
turbid oyster
#

I set it as my assistant instead of Gemini

glossy niche
shadow rivet
tardy rain
#

it was not in fact reasonable

#

there are many videos and vods showing what could be done by an experienced mage, like he claims to be

#

he ratted cause he's a rat

remote plover
#

his entire thing has been, so people have been saying, having justifications that sound reasonable to people who don't know about the problem domain

thick ore
#

We gotta remove the polymorphic

tardy rain
thick ore
#

talk about it in the unban requests

latent scaffold
#

Blade's definitely just gonna be like the hardest DPS to play, honestly, but at least he won't get nerfed into oblivion or banned a shit ton in ranked

grave cove
#

oh huh

latent scaffold
#

I agree with most of the comments, unfortunately

late orchid
# latent scaffold <@432643355634171905> I think I'm almost kinda glad this is the case https://www...

taking a look at the comments... just how much/little experience the average marvel rivals player has with other games? (that require building / planning your equipment, stats, etc)

like I cannot believe this has so many upvotes

I don't understand the point of mentioning 60 and 40 and blah blah. Why don't they just say, in relation to his own self abilities, he has 36% lifesteal? lol. Seems really random to include the 60 in there.

It's like saying "X character has 50 million DPS per shot and a 99.9999% damage reduction when using your weapon."

Like um. Okay. Just tell me the effective numbers, you goofballs.
(do they realize the effective numbers will be influenced by other players abilities?)

grave cove
#

though i can see 60% lifesteal making him immortal

#

like wolverine's lifesteal was less and hes a permaban

latent scaffold
latent scaffold
#

AND doesn't get healing reduction

latent scaffold
#

Like, the stats make it sound like you get 60% of your damage back in health

#

However, since that is considered healing, and you get reduced healing while in the mode that gives you lifesteal, you actually only get 36%, effectively

#

Which I have to agree is a little misleading

#

36% is also just such an odd and specific number

late orchid
grave cove
#

its a running joke in the community that we just have to deal with

grave cove
latent scaffold
#

It's about whether or not you expect people to know that lifesteal falls under healing

grave cove
#

right and i think that should've been made clearer

latent scaffold
#

Which, like... Yeah, duh

grave cove
#

or are you talking about the howl ability

latent scaffold
#

His E

grave cove
#

ah

latent scaffold
#

I think his passive might when he loses his life though

#

I can't remember

grave cove
#

i dont think so

#

it just gives him regeneration and bonus HP

late orchid
#

it should also matter a lot if an enemy applies an anti-heal debuff on him?

grave cove
#

the only anti heal debuff in the game is blade himself rn

#

im not sure if enemy blade can anti heal while you're already in anti heal

latent scaffold
latent scaffold
grave cove
late orchid
#

huh
iirc in LoL it would overwrite such that it only keeps the strongest debuff

grave cove
latent scaffold
#

40% to enemies on hit with gun dash, 40% to yourself while in vampire mode

grave cove
#

so is that 80%

latent scaffold
#

It might stack differently

grave cove
#

"gg no heals" - blade in vampire form with anti heal from enemy blade

latent scaffold
#

I think it kinda shows how bad invisible woman ult is though

grave cove
#

they silently patched a "bug" that doubled her ult's healing

#

now its straight ass 🥀

rough sapphire
#

did yall try battlefield 6

latent scaffold
#

60% of 250 is 150

#

so if you hit like Luna or C&D, it's basically invisible woman ultimate

grave cove
#

it was great

latent scaffold
#

Not exactly too much better tbh

rough sapphire
grave cove
#

it do

latent scaffold
#

and revert C&D so they can stack again

#

I need skill expression back in that ult

grave cove
#

we need skill expression in all the main support ults

latent scaffold
#

Luna's is just too damn free

#

Mantis... I'm sad hers is like so bad

grave cove
#

it counters blade's ult fairly well since it gives you overhealth, and it also makes mag ult basically useless

lament cairn
#

om,g he's

tardy rain
#

Fat

glossy niche
tardy rain
#

Too much skin on a cat

remote plover
#

rust traits at home

thick ore
lilac plinth
#

Anyhow anyone know a community that's shares VM with each other? Looking for a cool person to spin up an vm for me for free?

turbid oyster
latent scaffold
grave cove
#

yeah true

#

rocket ult might actually be goated

#

cuz at the elo im in people will use blade ult then coordinate a dps ult or have the entirely team focus targets to kill them through support ultimates

latent scaffold
#

Rocket in general kinda makes Blade's job pretty difficult

turbid oyster
grave cove
#

troll ass deck

acoustic moss
#

1M gems 😭

grave cove
#

thats a bit crazy ngl

primal solstice
#

is there anything can convert graffle files into something openable in Windows?

turbid oyster
#

jk this is just nulls servers

#

this guy makes private servers for like all supercell games

acoustic moss
#

thats crazy

opaque merlin
#

what if its...

turbid oyster
turbid oyster
turbid oyster
#

one literally spawned a herd of goblins, then i did the same thing, then he goblin cursed my goblins, cloned, and put a rage potion

#

mf had them cards at the right time

near pier
#

@fair drift

#

what are you even searching?

#

you do know we can still access the internet

#

you just gotta verify your age if you wonna access NSFW content

#

on porn websites etc

fair drift
harsh tundra
fair drift
near pier
near pier
#

In order to access NSFW content you gotta verify your age

harsh tundra
fair drift
near pier
#

how?

#

I live in the UK and you need to verify your age if you want to access NSFW content

#

This is the same in France

harsh tundra
near pier
#

and I'm very sure Germany has some restrictions too

harsh tundra
#

Posting something in caps when you JUST said "I believe" and I ASKED FOR SOURCES is not a source

harsh tundra
#

Some countries are testing some systems or proposing some regulations. Germany is not one of them. And France is just at proposal stage as well.

fair drift
#

I just used a vpn, and I was able to access nsfw website

#

lol

#

this convo is so stupid I got to go

harsh tundra
#

"I'm very sure", "I believe" yet can't give any sources, only claiming "THEY DO" is not how a discussion goes, yeah

harsh tundra
#

Sooo you just admitted you didn't check

near pier
#

Are you sure?

harsh tundra
#

I'm gonna block you. That's not how any discussion should look like. Bye

near pier
#

I'm getting my sources now

fair drift
#

he was obv wrong, but now he is trying to just pretend like he was trolling all along

near pier
#

And Germany from what I see now prohibits NSFW games on Steam

fair drift
#

dude shut up, get a job

near pier
#

I'm telling you what I know

#

Things might have changed

honest star
#

Y'all, please all of you have got to chill

#

For discussions, it always helps to verify your sources, share them, etc to make sure discussions can be productive

near pier
#

France - SREN law

honest star
#

Also, you still all need to chill and be a bit more patient. No need to jump down each other's throats

harsh tundra
#

The topic was actually about discord and social media age verification (bc it was about UK new laws and kevzo claiming "France and Germany" also have that), but now it moved to "a porn website asks for age verification, so I'm right" 🙄

near pier
near pier
#

Misunderstanding then, no problem

harsh tundra
#

You can literally look up the context in the pygen. No, it was about specifically asking for id and discord.
Not any age verification, but age verification to social media where you have to submit a lot of PII

near pier
#

I was referring to the France SREN law

harsh tundra
#

That's not what you said before

near pier
harsh tundra
#

Stop trying to ping me. I said twice that I wish to disengage

honest star
# harsh tundra Stop trying to ping me. I said twice that I wish to disengage

They were part of the original conversation in pygen. You can see how it naturally flowed and where they thought it transitioned to general nswf access.

Also if you want to disengage, you also have to disengage. Replying to the ongoing conversation but then telling people not to respond to you isn't how this works.

near pier
#

Not sure if anything has changed

#

The UK is restricted

harsh tundra
# honest star They were part of the original conversation in pygen. You can see how it natural...

No, I can't see that. The question was which country asks for id to access the Internet. #python-discussion message
Then they claimed France and Germany and when asked for sources, said to just Google it.
Jerry said they couldn't find it, yet they continued with "THEY DO" (original capitalisation) without providing any sources... And then when you intervened, started throwing sources about NSFW age verification that doesn't require actual id.
So where is that natural flow you claim?

near pier
#

In regards to Germany I've just read a couple posts and seen a couple articles about NSFW games being restricted

harsh tundra
#

Jerry specifically said accessing discord before and "the Internet" in the linked question. Discord is not NSFW

honest star
# harsh tundra No, I can't see that. The question was which country asks for id to access the I...

So, I am going to re-iterate again that folks need to chill and to not immediately jump down people's throats. Give people a chance to respond, be a bit more patient. Giving people a bit of grace goes a long, long way to keeping things civil and not letting it devolve.

This is the start of the conversation in pygen: #python-discussion message

It was first about discord access, then talking about nsfw access and that's the full context.

honest star
honest star
#

So it seems like there was just a misunderstanding on what the id verification is for. But it seems like we cleared it up now.

So we're all good, yeah?

near pier
#

Sorry for coming off a bit aggressive Nicky and Jerry, lmk if you would like to continue the discussion and I was not intending to troll

fair drift
#

by "the internet" I meant 90% of major social media websites, and other ones like wikipedia/spotify, the german law is not enforced at all, and in france as far as I can tell (you can test it yourself by using a vpn) but the UK's is being enforced so in reality they are asking for the id

also @honest star if you are really interested in this, do you think that we should make another server on matrix or somewhere else to prevent the "safety act" situation getting worse

#

so in Germany and France, even the nsfw websites are not asking for the id

honest star
#

I was just here as a moderator to de-escalate the situation. I'm not involved in the actual conversation

near pier
#

or Discord (unless you want to access nsfw servers/channels)

honest star
#

We do not have nsfw channels outside of the rare moderation issue, so this does not impact us at the moment.

fair drift
#

but the only alternative would be something that is not owned by a company, like matrix servers

near pier
lament cairn
#

in theory

#

but in practice whatever algorithms social media websites use for nsfw detection are so heavyhanded most content is blocked

#

even sfw

lament cairn
#

discord has made many controversial changes to their tos and platform, yet we're still here
nothing ever happens

sharp jasper
#

same as every update to a major social media platform
people complain, then they adjust

honest star
#

ID verification is a pretty severe step. I know I would leave the platform if they require that.

glossy niche
#

i leave platforms when they ask for login 🗿

#

@lament cairn whould any of u guys be interested in a serval news letter with very bad upload schedules

shadow rivet