#voice-chat-text-0

1 messages Β· Page 533 of 1

vocal basin
#

I like how this is the first one I solved

wind raptor
#

!stream 313362334246633472 20M

wise cargoBOT
#

βœ… @wide imp can now stream until <t:1759329603:f>.

vocal basin
#

unlike C, Python can refer to functions syntactically before their declaration

#

but it needs to still be before runtime-wise

somber heath
#

!e ```py
class Person:
def init(self, name, age):
self.name = name
self.age = age

def greet(self):
    print(f"Hello. I am {self.name} and I am {self.age} years old.")

peter = Person("Peter", 17)
peter.greet()```

wise cargoBOT
somber heath
#

For the record, my name isn't Peter, nor am I 17.

vocal basin
#

@somber heath sadly this isn't as concise as it is in Rust

match self:
    case Person(name=name, age=age):
        print(f"Hello. I am {name} and I am {age} years old.")
#
Self { name, age } = self;
println!("Hello. I am {name} and I am {age} years old.");
#

I've just realised it's potentially possible to make typing.Self work in match

#

kind of

#

would need to monkey patch two methods

#

one for isinstance

#

other for matching attributes

vocal basin
#

@obsidian dragon audio loopback

#

!e

from dataclasses import dataclass

@dataclass
class Stuff:
    a: int
    b: str

print(*Stuff(1, "a"))
wise cargoBOT
vocal basin
#

okay it doesn't

#

!e

from collections import namedtuple

_Stuff = namedtuple('a', 'b')

class Stuff(_Stuff): ...

print(*Stuff(1, "a"))
wise cargoBOT
vocal basin
#

what

open venture
#

why is this katas asking me to return stuff in binary

#

OMGGGGGGGGGGGGGG

vocal basin
vocal basin
#

@wind raptor >8 minutes

#

if you need a specific number

#

I can actually tolerate that somewhat

#

it just takes effort to listen to

#

!e

from collections import namedtuple

_Stuff = namedtuple('a', 'b')

class Stuff(_Stuff): ...

print(*Stuff((1, "a")))
wise cargoBOT
vocal basin
#

the chase for learning-centred resources is somewhat misguided

#

this is how to lock yourself into the tutorial hell

#

at some point you need to assert, regardless of your skill level, that you can do something yourself and do it

vocal basin
#

!e

from collections import namedtuple

class Stuff(namedtuple('a', 'b')):
    def __new__(self, *stuff):
        return super().__new__(stuff)

print(*Stuff(1, "a"))
#

aaaaaaaaaaaaaaaaaa

wise cargoBOT
vocal basin
#

@wind raptor we have a race condition

#

in !e

wise cargoBOT
#

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 7, in <module>
003 |     print(*Stuff(1, "a"))
004 |            ~~~~~^^^^^^^^
005 |   File "/home/main.py", line 5, in __new__
006 |     return super().__new__(stuff)
007 |            ~~~~~~~~~~~~~~~^^^^^^^
008 | TypeError: a.__new__() missing 1 required positional argument: 'b'
vocal basin
#

edit, re-run, edit, observe no button

#

!e

from collections import namedtuple

class Stuff(namedtuple('a', 'b')):
    def __new__(cls, *stuff):
        return super().__new__(cls, stuff)

print(*Stuff(1, "a"))
wise cargoBOT
vocal basin
#

finally

#

@obsidian dragon I've learned that order but forgot

vocal basin
#

no opinion in the previous one

#

which is deleted

somber heath
#

I deleted it because it didn't show up.

#

At least not for me.

#

Showed the Discord poop.

vocal basin
#

there was a count difference so I started looking for what's missing

#

C++ is a bad general purpose language

#

you need a lot of discipline to use it properly

#

most usecases don't need it and suffer from people using it

#

if you're ready to read that cover-to-cover, maybe you can write C++

somber heath
#

Or then tick.

vocal basin
#

std::shared_pointer is where attempts to convert Python to C++ will explode

open venture
#

@vagrant eagle are these mathsy questions worth it ?

vocal basin
#

whom did you try to ping

#

std::shared_pointer<T> is generally invalid in C++,
and std::shared_pointer<const T> prevents many things Python allows

somber heath
#

Min, wimin.

obsidian dragon
#

!resources

wise cargoBOT
#
Resources

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

obsidian dragon
#

@wide imp

vocal basin
#

C++ and Rust are closely related,
C++ has fewer restrictions, therefore harder to compose

#

same performance

#

unlike C++, in Rust it's possible to reuse others' code without everything exploding

#

Assembly isn't inherently faster than those two

#

ever since Fortran, compiled languages were faster than Assembly language

#

Assembly is sometimes nicer to write than C++

#

that's kind of the main reason you'd ever do it

#

that's what convinced people to use Fortran at all

#

it demonstrated that optimising compilers make better performing code than humans

#

performance ceiling of Assembly/C/C++/Rust is the exact same

#

approaching that ceiling is easiest in Rust

#

@wide imp Tcl

#

not entirely Python

#

(she)

vocal basin
#

you generally need to link some C library

#

nowadays

#

@wind raptor put it on the cloud

#

general not universal

#

general purpose is about what you use it for

#

not comprehensive, not universal

#

@obsidian dragon do until

#

Ruby (probably)

#

Ruby has unless

#

@wind raptor matmul

#

!d operator.matmul

wise cargoBOT
#

operator.matmul(a, b)``````py

operator.__matmul__(a, b)```
Return `a @ b`.

Added in version 3.5.
vocal basin
#

Python Reference is quite comprehensive

somber heath
#

@obsidian dragon Python comes into its own when you write classes where they would suit well.

#

You're doing yourself a disservice by avoiding them outright.

vocal basin
#

don't overuse classes either, functions are great too

#

dataclass, collections, contextlib and many others help remove certain more raw writing of classes

somber heath
#

@wide imp Classes aren't about putting all of your code into them.

wide imp
#

i see

whole bear
#

How should I avoid narcissists?

#

I just met a thai girl, full of narcissism

somber heath
#

They're a way of binding data and functionality. You have a thing with a certain state and you're using methods to interact with that data.

whole bear
#

She believes some humans are made inferior..

vocal basin
#

I don't think that's called narcissism

whole bear
#

she thinks everyone else is sheep

vocal basin
whole bear
#

And she is only an individual with independent brain

vocal basin
vocal basin
whole bear
somber heath
#

Soup eerie are.

#

!voice @whole bear

wise cargoBOT
#
Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

vocal basin
somber heath
#

@obsidian dragon For mice?

#

Please don't use sticky traps, they're super inhumane.

vocal basin
#

sends the right message to them

#

@obsidian dragon rewrite Minecraft with Spring Boot

#

@obsidian dragon worse, JS, likely

#

there was a car that crashed because of NaN

#

but that was Matlab not JS

#

... it's always been Unreal, wasn't it?

#

well, yes, but still unreal

#

@obsidian dragon they always owned it

vocal basin
vocal basin
whole bear
#

why is the sky blue

vocal basin
#

refraction?

#

idk

whole bear
#

mmmm

#

and why is the grass green

vocal basin
#

chlorophyll

#

(I didn't remember how to spell that)

#

((only remembered the pronunciation))

whole bear
#

hiiiii

compact thistle
vocal basin
#

@steep vortex πŸ‘‹

steep vortex
#

Howdy

whole bear
#

@wind raptor πŸ‘‹

wind raptor
whole bear
#

It has been long

wind raptor
obsidian dragon
#

is there a specific low end webdev technique to increase load times like delay large images and stuff, just using local file structure no back ends

vocal basin
#

HTML does support lazy-loading attributes, yes

#

I think with HTTP 1.1 server can't even do anything about it

#

so it is mostly client

#

@wind raptor all the contract work I did had a deadline, after which the payment was reduced

vocal basin
#

iirc it was something like -0.1% per day up to -30%

#

@quartz beacon "standards of the EU are going to change"

fringe scroll
#

πŸ‘‹

vocal basin
#

I did once accidentally cross the French border

#

(from Switzerland)

wind raptor
vocal basin
#

@quartz beacon obvious joke response to the "when Ukraine joins EU, standards are going to change"

#

as for free medication: one of my relatives gets meds monthly >3x more expensive than her pension

#

healthcare is probably the only part of that which actually somewhat works

#

@quartz beacon the voices, they're eating

#

the voices can't be busy talking all day

#

@quartz beacon "I truly enjoyed the moment where the clown couldn't get the wires done"

#

that took way too long to write, all related jokes were already made

candid spire
#

Hi

candid spire
steep vortex
#

It’s from a game

candid spire
vocal basin
candid spire
vocal basin
#

@wind raptor are we nuking OT?

#

finally?

candid spire
#

Has Hemlock changed his job?

#

I guess he got freedom back

#

Hemlock is driving?

whole bear
#

Coooool 😎 πŸ†’οΈ 😎 πŸ†’οΈ 😎

candid spire
#

I wish hemlock could use discord during working

#

I wish he could quite

whole bear
#

Hahaha

candid spire
#

I mean getting paid 34k in US is horrible

#

Working for decades in the same workplace

whole bear
#

Especially @candid spire

candid spire
#

Even in my country person with experience over decades get paid around 34k to 50k

#

In tech

whole bear
#

And all the others

vocal basin
#

"idk, not yet quite there"

vocal basin
#

in part not to interrupt the ongoing conversations

#

(and/or make comments asynchronously to the rest)

candid spire
#

I mean let him use discord

ornate terrace
#

hello @low dirge

candid spire
#

If it ain't costing productive why even force him to not use discord

ornate terrace
vocal basin
#

πŸ’₯

whole bear
ornate terrace
#

i am pranked

vocal basin
#

do I remember correctly that @ here is actually the same as @ everyone despite implying being less all-pinging?

ornate terrace
#

πŸ™‚

whole bear
candid spire
ornate terrace
#

login in minecraft

vocal basin
#

@somber heath sign-on name?

wind raptor
#

It's fine

#

It was a friendly hello and didn't actually ping everyone

vocal basin
#

sign-on name and handle, is what I prefer to call those rather than username/login/whatever else

wind raptor
#

Ok, I think that's good for the shitposting gifs

ornate terrace
#

why my english is bad

vocal basin
#

lemon_thinkingπŸ’₯

ornate terrace
candid spire
#

Wdym?

#

Is being honest bad?

ornate terrace
wind raptor
ornate terrace
whole bear
candid spire
#

Beep

ornate terrace
#

you are good boy

#

wuhahahaha

candid spire
vocal basin
#

that's an unusual way to have notifications configured

ornate terrace
candid spire
#

@craggy vale Could you chat? πŸ’­

peak depot
#

@craggy vale USE KRISP!

craggy vale
#

okayy

ornate terrace
candid spire
craggy vale
#

I'm trying to fixing my windows laptop

candid spire
#

Time is more important

craggy vale
candid spire
ornate terrace
#

hell lag my minecraft just started

craggy vale
candid spire
craggy vale
vocal basin
#

@peak depot use uv use uv use uv use uv
already using uv => use uv more

craggy vale
#

and expancive

whole bear
candid spire
#

It is usually windows πŸͺŸ

vocal basin
#

@wind raptor your mic is doing that again too

ornate terrace
#

tunung tunung tunung

craggy vale
#

mac and windows are really shit my all pc are linux

vocal basin
#

@somber heath I have all sounds disabled on desktop/web

ornate terrace
#

ilikes window so much

vocal basin
#

and it's so loud on mobile

#

@somber heath it's automatic, therefore gets enabled automatically

#

metaautomatic

candid spire
# craggy vale and expancive

A macbook air in India costs around 85k , the best windows laptop in the same range has more storage and ram yet it has less performance and efficiency and most importantly that windows laptop is more like desktop (True performance is on charging)

ornate terrace
#

nice laugh

candid spire
ornate terrace
craggy vale
#

still no money

vocal basin
#

"the optimal setup"

#

automatic gain control is terrible

craggy vale
#

I have only 20k

vocal basin
#

echo cancellation is broken

craggy vale
#

right now

candid spire
vocal basin
#

Krisp is good unless it discriminates against your voice for whatever reason

craggy vale
#

so I just bought a BC 250 APU it can performance up to RTX4070

vocal basin
ornate terrace
#

wait i have to go

#

biee

craggy vale
wise loom
candid spire
#

Do you know overall electricity usage is higher while using windows desktop

vocal basin
candid spire
craggy vale
candid spire
#

compared to Macs they consume more energy

craggy vale
#

a PS5 pc

wise loom
craggy vale
#

this is the APU

#

Asrock AMD BC-250 16GB PS5 APU Single Card

wise loom
craggy vale
#

yeah upto RTX 4070

#

and very low price start around 50$

candid spire
whole bear
candid spire
#

Being completely closed gives a cost advantage to Apple

vocal basin
#

so, sold in a state when it's too faulty to do mining anymore?

#

as with all those

#

used product

wise loom
#

@craggy vale did you already order or are you still deciding what to get?

vocal basin
#

the SSD, that it has, almost certainly is nearing its death

candid spire
wise loom
candid spire
wise loom
candid spire
craggy vale
candid spire
#

Tbh cost would be much higher compared to US cost

#

In India

wise loom
candid spire
#

In INR

candid spire
#

Dude you could have bought it cheaper in the second hand market in CSMT

craggy vale
#

in gaming in ai in ml in deep learing

vocal basin
#

so this is:
APU taken out of a broken used PS5,
then shoved into a mining rig,
then used until it's no longer viable,
then resold to you

candid spire
#

Damn πŸ™„

vocal basin
#

never ever buy any SSDs from second-hand stores

vocal basin
candid spire
#

One gpu is enough for ai?

vocal basin
#

SSD is not a tool, it's a resource

vocal basin
candid spire
#

Training is not possible

#

Just on one GPU

craggy vale
#

and this apu

#

and my win laptop

candid spire
#

Damn

wise loom
#

are current AI packages designed to distribute load over multiple machines like that?

vocal basin
vocal basin
#

same also goes for why you might often want to buy an SSD way above your expected data volume

candid spire
vocal basin
#

buying cheap SSDs is wasteful

#

not, like, as much environmentally wasteful, just monetarily

vocal basin
craggy vale
vocal basin
#

(unless you have nothing better to do with them and no one else wants to buy them)

candid spire
wise loom
#

@craggy vale I think your project is interesting and I'm curious what you'll do with the equipment once you receive it

#

@craggy vale are you familiar with n8n ?

vocal basin
craggy vale
candid spire
#

He explained in his starting half of video

craggy vale
#

in 2026

vocal basin
vocal basin
#

buying hardware from apple for cost efficiency is a thoroughly dumb idea

scarlet halo
#

"apple" and "cost efficiency" in the same sentence πŸ’”

vocal basin
candid spire
vocal basin
#

yeah, then that is a financial mistake

#

if they are comparing cost to pre-built PCs then that's incompetence

wise loom
#

Apple is very expensive and intentionally prohibits / impedes / prevents users from upgrading/replacing components, it actively prevents users from installing anything other than Apple's MacOS (except for Intel Macs but those are old).

vocal basin
#

you accidentally breaking parts and having to buy replacements will still be cheaper than paying someone else to do it

primal shadow
#

🌊

scarlet halo
#

i wonder when my pc will just spontaneously die

wise loom
#

But in terms of power efficiency, driver quality, usability, Apple is nice

primal shadow
#

I absolutely hate when I need to use the mac at work

vocal basin
#

yeah, with power efficiency, might hypothetically do better than some others

primal shadow
#

Though I guess I'm just doing it wrong...

vocal basin
#

the only good hardware thing Apple currently has, apart from how they do cooling, is M series CPUs

somber heath
#

@willow moss πŸ‘‹

vocal basin
primal shadow
scarlet halo
#

@craggy vale turn on noise suppression

somber heath
#

@whole bear πŸ‘‹

whole bear
primal shadow
craggy vale
primal shadow
#

Highly recommend, 10/10

craggy vale
#

ok

scarlet halo
primal shadow
#

No one ever enters the space?

vocal basin
#

@amber raptor automatic gain control is good on mobile, but is absolutely terrible on browser/desktop

primal shadow
#

voice detection does not know who the target of the communication is

wise loom
primal shadow
#

MOOOOOM!! I DONT WANNA!!!

vocal basin
#

for some reason on non-mobile it sometimes overcompensates so much the sound gets excessively loud

primal shadow
#

sorry guys

scarlet halo
primal shadow
candid spire
#

I wonder 🀨, If AI take resource to compute and respond.
How come they are available for free right now?

Ain't they burning capital to run those servers

vocal basin
#

Krisp should at least remove the notification sounds

#

they claim they do

#

but it fails to

amber raptor
#

You don’t develop on a Mac?

primal shadow
#

I hate mac, only when I need to use it

#

VSCode writes the code just fine anywhere

scarlet halo
primal shadow
#

Can only build for hte iOS devices on a mac

candid spire
vocal basin
#

macOS might potentially be usable for me, but just because it's Unix, and Linux isn't Unix

wise loom
primal shadow
primal shadow
#

Mac is trash for development, as far as I've experienced

wise loom
#

@amber raptor mac is still made in China

primal shadow
#

no idea why developers love the extra pain

#

A linux container?

craggy vale
#

is that possible to run gta 5 on web-browser no streaming no cloud gaming just website like if u enter gta5.com it run
I know it's not possible because GTA V’s engine (RAGE) is closed-source and built for native C++ with heavy use of DirectX/OpenGL/Vulkan. butttttttttttt I wanna do that
how I start
port or from scratch
idk
if I some how compile it into WebAssembly like the whole engine and all graphics/physics/audio systems for WebGPU/WebAssembly.
it's kinda dum butt

somber heath
primal shadow
scarlet halo
#

be right back guys, gotta eat dinner

primal shadow
#

then jacked up the price once competition was dead

vocal basin
#

there are Windows containers

amber raptor
scarlet halo
wise loom
#

Wasn’t the plan to lower dependence on China? But Macs are made in China..

candid spire
vocal basin
wise loom
craggy vale
#

that's why I'm start with reVC

primal shadow
#

lol

#

"return to normal"

candid spire
#

US can manufacture but no low end goods but really high end goods

primal shadow
#

normal is dead

candid spire
#

Trump's focus is on low end Goods

vocal basin
#

perpendicular type of normal

primal shadow
#

But we ship so many cars to the US....

urban abyss
#

this is modern life now

vocal basin
#

@amber raptor there was a ship incident where big car transport flipped over

#

they did recover the cars but ended up scrapping them

candid spire
#

I think Trump's is just delaying the inevitable:
Rise and dominance of china

vocal basin
#

because batteries were not made to be tilted for so long

primal shadow
#

Quick googling says we import ~6 mil a year, manufacture 10mil

#

rough numbers that of course fluctuate anually

craggy vale
#

bye everyone

vocal basin
#

cars inside apparently aren't built to survive that angle for too long

scarlet halo
#

πŸ’€

urban abyss
candid spire
#

I mean what do Trump expect from the US?
As Long as the USD is reserve currency it can never be competitive in manufacturing

wise loom
vocal basin
primal shadow
#

We do import from mexico

#

which requires parts and materials to get there

vocal basin
#

I suspect something might be overall wrong with this ship design

primal shadow
#

just under half was from mexico

vocal basin
#

just keeps happening

wise loom
urban abyss
#

they should store all the marbles on the bottom instead of the top imo

vocal basin
#

idk, just drive the cars across the ocean floor

candid spire
vocal basin
#

ah, that's what all the hyperloop was about

#

musk tunnel plan to smuggle musk cars

#

Russia has nearly no roads there

#

Kamchatka has, like, 1 meaningful road going through it

#

it's mostly planes, very expensive planes

amber raptor
vocal basin
#

you get, like, a cheap bus-style plane at the cost of first-class elsewhere

#

@peak depot Markdown again?

#

okay

candid spire
somber heath
#

@gaunt cosmos πŸ‘‹

primal shadow
#

People want anonymity online

pure oyster
#

@somber heath this is exactly my concern. People thst make a digital twin of you ehich they can abuse.

#

But to be honest I'm also concerned with misbehaviour in our society. An example is car traffic: DUI, hit n run's. An AI should immediately fine you

pure oyster
#

My proposition is that most people against these things have something to hide themselves lol

winter storm
pure oyster
#

But how is it sifferent with getting fined by speed cams

primal shadow
#

If they're gonna read my messages, I should get to read theirs

#

Only the shittiest people run for office, so we end up with only the shittiest systems in society

next mulch
#

what is going on?

pure oyster
#

Good point @somber heath

primal shadow
#

America is a third world country.

#

I don't know how any republican can say "protect the children" with a straight face

#

well, I do, because they're two faced shits

#

but yea

#

Yes

#

"Let's come together and stop attacking pedophiles"

#

or some shit like that

#

hedidn't even flinch

#

kept right on going

#

He meant what he said

#

The only mistake was saying it aloud, but that is their current platform

#

That's a given, he's gonna keep taking away our rights

#

He doesn't need one

#

he's doing it

#

look at the chicago apartment raid

#

unconstitutional as fuck, no one cares

#

another dark day

somber heath
#

@slim ravine πŸ‘‹

slim ravine
rugged root
#

Be on shortly. Have a run to do

primal shadow
#

But breaking down doors

#

without a warrant

#

across aw hole building, and detaining all occupants

#

clearly illegal

#

Look at the recent chicago raid

#

that was fucked

#

100% illegal

#

no way to spin it

slim ravine
#

Can I talk about python in here?

#

I'm new to the server

primal shadow
#

Of course

slim ravine
primal shadow
#

We have chats about all the things

slim ravine
primal shadow
#

you can get lots of help here, I'd recommend the help channels

#

which ironically republicans love

#

No, Rage Against the Machine

#

the idiots think they stand with them

#

They are protecting the fucking machine we want to rage against

#

I love when musicians tell republicans to get fucked and hteir music isn't for them

scarlet halo
#

omg it's hemlock :O

primal shadow
#

but hte government

#

bombs its own citizens

#

Like the government?

#

It was one song

#

IDK

#

the government has a solid track record of harming

#

RATM has a song supporting

#

IMO the track record of harming is infinitely worse than a song of support

#

But you know me

#

I have strong feelings

#

RATM is playing ball, the government is at war

#

can't compare

somber heath
#

@coarse onyx πŸ‘‹

primal shadow
#

Good bathroom times

#

A good trip to the restroom can make the whole day great

#

Just like a bad trip can ruin a day

somber heath
#

@mighty linden πŸ‘‹

#

@scarlet nebula πŸ‘‹

mighty linden
scarlet nebula
#

I just arrived, what's going on?

primal shadow
#

Well, there's terrorists and there's freedom fighters

#

When you're actively targeting civilians it's terrorism

#

if you're hitting military targets of an invading force

#

I struggle to call it terrorism

#

but the winners name the losers

#

A white man kills a bunch of people and is from the right wing? He just needed some mental assitance.

#

lol

#

antifa

#

the idea of not liking fascism makes you a terrorist

#

what a fucking fascist thing to do

#

antifa was founded in germany?

#

Antifa was "founded" because of Germany

#

anti-fascist

#

antifa is short for anti-fascist

#

it's not a real group

#

no

#

antifa is just short for antifascist, there's no organization

#

no leadership

#

no funding

#

So who should decide what's good and bad? The fascists?

#

Who writes the law...

#

Hitler had laws written

#

does that make the laws good?

#

This is some other shit, morality based on the words of known pedophiles.

#

Good plan

#

Antifa has a presence in most countries?

#

Antifa is a fucking idea.

#

Not a group

#

not an organization

#

You cannot join antifa

#

you cannot go to a meeting

#

you cannot meet hte president of antifa

#

it is a fucking idea

#

a philosophy

#

It's literally an idea, there is no connection

#

it's the concept of not liking fascists

#

you're against fascism? You're anti-fascist.

#

No

#

The KKK is an organization

#

with leadership

#

a direct structure

#

chapters

#

etc

#

no

#

not yes

#

Again, neo-nazis are an ideology

slim ravine
#

Why are you guys talking about nazis and stuff? Is that allowed lol

primal shadow
vocal basin
primal shadow
#

here's the American Nazis

vocal basin
#

@dry jasper bullshit

#

both lethal and non-lethal is so clearly more right-wing both US and Germany

#

I don't trust stats which are clearly made up, sorry

primal shadow
#

look at america, that's how it works

#

Smells like a cattle ranch

dry jasper
#

Check out the yearly statiscits of the BKA

dry jasper
#

Open your eyes....

primal shadow
#

As of late the numbers are fudged

vocal basin
#

don't waste openness of your mind on fascists

vocal basin
#

@dry jasper send the link

#

I did not find in some minutes I spent

#

if you already have the link, send

primal shadow
#

I don't wanna say you're defending fascism for unknown reasons, but that

vocal basin
#

@dry jasper or write out the name of what I need to look up

primal shadow
#

Well, wehn I hear something that smells like shit

#

I call it

vocal basin
#

exact words

primal shadow
#

like I see it

#

and smell it

#

πŸ™‚

#

When I see someone defending fascism, it's strange, to me, you know what I mean?

dry jasper
#

Thats your way of underdtanding

vocal basin
dry jasper
#

I was sayong that Antifa is bad

vocal basin
#

((attempting))

dry jasper
#

Not that Faschismus is good

primal shadow
#

Killing?

#

Well, if I kill you, and you kill me, it's bad

#

so that's why

#

if it's not a fun time for all to do it

#

it shouldn't be done

#

I like to say your right to punch ends where my face begins.

vocal basin
#

@dry jasper the only link I found so far shows ~2x more right-wing, but it's a random link I trust even less than whatever you're suggesting to find

#

another has 3x

#

@dry jasper I initially assumed what you were referring to was just bad statistics but I can't even find anything that has the same claim

#

@dry jasper I think I found it

#

and...

#

right-wing has more crimes and violent crimes, not just lethal specifically

#

however

#

it was from 2 years ago

#

if you mean specific other year, which one?

#

2024?

#

is it the thing you were mentioning?

dry jasper
#

you need to look before 13 october 2023

#

at least at 2022

vocal basin
#

@dry jasper 2022:
left-wing: 6976, 842 violent
left-wing extremist: 6142, 602 violent
right-wing: 23493, 1170 violent
right-wing extremist: 20967, 1016 violent

#

I mistyped

#

wait

#

fixed

#

do we need to go to 2021 next?

primal shadow
#

Can't smell anything but the bullshit

vocal basin
vocal basin
peak depot
#

Antifa is not organised thing - it's a made up concept
for examble; MAGA is a organised group prone to violence

vocal basin
#

(I felt the date was slightly off, so double-checked, it was on 7th)

vocal basin
crimson vector
#

What's discussion is going on

#

I'm new to this community

vocal basin
vocal basin
#

there is a literal MAGA organisation

#

but overall it, too, is more of a movement

candid spire
#

Hemlock goes πŸ”™ to work

#

Is he using discord during work?

peak depot
#

he is driving

vocal basin
#

what's a PAC

crimson vector
#

What is point of discussion though

candid spire
crimson vector
#

And is this regular or what like

vocal basin
#

we do discuss tech stuff

#

sometimes

crimson vector
#

Alright, cool

vocal basin
#

VCs are mostly off-topic

#

but some programming talk does happen

crimson vector
#

VC s mean that venture capital or what else

vocal basin
#

(right now people in VC are just chatting to Hemlock because he's rarely here any more)

vocal basin
#

or voice channels

crimson vector
#

Alright πŸ˜…

vocal basin
#

we do have a certain capitalist of pharmaceutical variety in here

crimson vector
#

I was bit into product building so thought it was related to that 🀣

candid spire
#

Bye tx

primal shadow
#

It's what caused America to go from corrupt to banana republic

vocal basin
primal shadow
#

Been meaning to pick it up

#

Seems to be on sale again

vocal basin
#

I started playing BG3

#

some times ago

primal shadow
#

murder hobo?

vocal basin
#

yes

#

yes

#

bastet is still the favourite

#

the one which picks the worst piece

#

Evil falling block game

#

"For people who enjoy swearing at their computer, Bastet (short for Bastard Tetris) is an attractive alternative to Microsoft Word."

#

@unique wyvern can always be worse: Dota 2

#

you need to be driven by understanding the game more and more to play it

#

gaming drug

#

what was that FPS dota named

#

ah, it's still in preview

vocal basin
primal shadow
#

I did heavy raiding in vanilla

#

much less in BC

#

Vanilla was all my raiding

#

Raid near booty bay?

#

in vanilla?

dry jasper
#

yes

primal shadow
#

ZG

#

I got the raptor out of there

#

That was a fun dungeon, the fights had some good mechanics

#

MC was great

#

PUG MC was the best

#

AQ was good, Naxx was a bitch

#

Naxx might have been T4? maybe they called it 3

#

Naxx came back in WOTLK

#

But it came out at the end of vanilla

#

Kara was a good time

#

Van Cleef

#

RFK/RFD wasn't bad

dry jasper
primal shadow
#

Stormwind

#

SW sucks

#

So unwalkable

#

IF was the Allicance city

#

no one hung out in SW in vanilla

#

that shit was dead

#

It sucks though

#

It can look cool but no one went htere

#

Before LFG went across city channels

#

City raids were great

lunar ridge
#

ok

viral lily
#

Hello

#

anyone there

primal shadow
#

helo

viral lily
primal shadow
#

I'm just playing some games, not in need of any direct assistance

ebon mist
#

Sup

wise loom
latent venture
#

@wise loom I can't speak yet

#

apparently

#

theres a series of things i need 2 do

#

to speak

#

how are you

#

What are you working on @wise loom

whole bear
#

sippi

wind raptor
#

Hey @vocal basin πŸ‘‹

#

Welcome @opaque dagger πŸ‘‹

opaque dagger
#

HiπŸ‘‹

vocal basin
#

@wind raptor CSS is, quite a bit

#

there is computation

dry jasper
whole bear
#

skib

#

idi

#

skibidi

vocal basin
#

@fossil notch don't spoil, that's in November

#

obviously, on green

#

that sounds like another conspiracy theory

#

like sovcit

#

which, funnily, stands for both sovereign citizen and soviet citizen conspiracies

#

@wind raptor China does stuff like that, but they don't take entire countries

#

only ports

#

@peak depot

#

clean

#

coal

candid spire
#

How do I evade the caste complexity of India?

#

Can anyone adopt me, in this way I could be casteless and of your origin

vocal basin
#

@peak depot @wind raptor also fire bombing of Tokyo, which was deadlier that either of the other two

#

debt isn't about paying it back in its entirety, debt is about paying interest

#

most modern debt functions that way

candid spire
#

Japanese culture is just a chinese culture modernized earlier

somber heath
#

The primary cause of isekai in Japan is overwork-kun.

vocal basin
#

haven't seen that used as an euphemism before

candid spire
vocal basin
#

@wind raptor vibe statistics

vocal basin
#

saying that one is just the other but <...> is dumb

candid spire
somber heath
#

First known vending machine, first century Roman Egypt.

vocal basin
#

@upbeat oasis do you have an AI-related engineering degree?

somber heath
#

First modern incarnation of the vending machine, England.

candid spire
umbral moat
#

@Mink you're right fr.

#

@upbeat oasis you're right fr.

candid spire
vocal basin
#

all cultures borrow from their neighbours, and that happens both-way

#

"sub culture" is kind of an invalid term when you talk about neighbouring territories

#

Belarusian and Ukrainian cultures are not subcultures of the Russian culture, for example

#

despite what some people might say

candid spire
#

Japanese culture stems from Yellow river and monogolide tribe which inhabited the Japan

#

Yamato people

vocal basin
candid spire
# vocal basin that is a very off spelling lol

I meant Present day japanese are mostly Yamato which are technically Inhabitants from Continental Asia (China).

Original inhabitants of japan are now limited to few places and they look darker and different to Yamato

vocal basin
#

(I sometimes lookup misspellings to check if they're common)

candid spire
#

In other words SuperPlantMan is glazing Chinese who happens to be called Japanese and from Island of Japan

vocal basin
#

calling Japanese people "Chinese" is similar level of inappropriate to calling Ukrainian people "Russians"

#

(stop digging yourself into the hole which is heading towards a clear rule break)

candid spire
vocal basin
candid spire
vocal basin
vocal basin
urban jewel
#

Hi huys

#

Guys*

craggy vale
#

hi

vocal basin
#

you can't excuse behaviour just by mentioning adjacently (but not directly) related facts

urban jewel
#

Does anybody know fullstack here?

craggy vale
candid spire
wind raptor
vocal basin
#

(I will not comment on the last stuff, just to stop the topic)

candid spire
#

Hmm

wind raptor
candid spire
#

Nvm

candid spire
#

And for valid reason

wind raptor
#

No. Just drop it like I asked. You act like you are an expert but are clearly not.

candid spire
#

Hmm

#

Nvm

#

I'll drop this topic

#

@craggy vale Did your order arrive?

craggy vale
#

I will get 20th oct

candid spire
#

Uh

#

I was curious to know about the purchase

#

Hope it can be delivered to you in time

#

Btw what are you doing right now?

wind raptor
#

!tempban 562401197034569761 1m Being toxic to other members and saying that I cannot intervene when defending them "I wasn't talking to you"

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @fallen heron until <t:1762181513:f> (1 month).

craggy vale
#

for pi

candid spire
#

Lol

#

How?

craggy vale
#

tryingggggggggggg

candid spire
#

Good luck

#

Raspberry Pi is good for experiment but it is limiting in testing and scaling

vocal basin
#

just buy more of them if you need scale

#

and do PoE

#

(easier to power that way compared to USB C)

candid spire
#

Raspberry is expensive in India

craggy vale
#

yeah

candid spire
#

Especially the latest one

vocal basin
#

they are expensive everywhere

craggy vale
#

we can get a PS3

vocal basin
#

it's crossing into the "premium" price range

candid spire
vocal basin
#

it's a retail brand

wind raptor
#

!cpban 650778494183407617

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @near valve until <t:1759849039:f> (4 days).

candid spire
#

With bare minimum specification

craggy vale
candid spire
#

So they over charge for it

craggy vale
#

πŸ’€

candid spire
#

I wish it were cheaper

vocal basin
#

@peak depot they openly admitted earlier that they're uneducated

#

I don't even see the point of trying to talk to them

#

@peak depot they're not in the US iirc

candid spire
#

@craggy vale I like how you make use of the technology at best.

I find it fascinating that despite the financial limitations you are learning and experimenting.

vocal basin
#

I think at that point the only valid response is to just shut down the discussion they try to start

candid spire
#

I wish we could make rental resource services available for folks like you to experiment with the best tools and technologies

#

In India we lack resources

#

Because of financial constraints

craggy vale
vocal basin
#

I need an extension that removes all these chats

candid spire
#

Dude stop the cap

#

I mean, it's odd to hear her mother sold her jewellery for his experiments

craggy vale
#

yeah but real

candid spire
#

Seriously?

craggy vale
#

yes

vocal basin
#

not a debate matter at all

candid spire
#

Okay

craggy vale
#

I already got certificate from microsoft

candid spire
#

Nvm

craggy vale
candid spire
#

How old are you devarshi?

craggy vale
vocal basin
#

responsible answer

candid spire
#

Damn

vocal basin
#

ugh, I need to buy ETH connector thingies and covers for them

candid spire
#

You must be a prodigy

vocal basin
#

I ran out of the ones I had

craggy vale
candid spire
#

If your goal is to make a multi-gpu system for deep learning

#

I got resources

vocal basin
#

@peak depot at least that list is diverse

candid spire
#

Definitely you can not make GPU from scratch but you sure can learn about it

vocal basin
#

there is a video series on doing that

vocal basin
#

@peak depot he'll put it on his calendar/roadmap

candid spire
#

If I have a transitor can I make a weakest GPU?

vocal basin
#

you need several

candid spire
#

I mean how much do I need to do some simple arithmetic

#

Or lowest quality rendering

#

Possible

vocal basin
#

large parts of your rendering will need to be computed externally

#

with the GPU being only responsible for talking to the screen

candid spire
#

Adopt Indian breed dog

vocal basin
#

who let them out

candid spire
#

Indian street dog breeds are one of most beautiful and obedient dog

long dragon
wind raptor
candid spire
candid spire
dry jasper
#

@wind raptor

wind raptor
peak depot
craggy vale
vocal basin
#

Lua doesn't even have +=

#

Luau does

#

I should read through the whole language reference again

#

Roblox has its own extended dialect of Lua

#

the only good thing to come out of Roblox

calm spire
#

<@&831776746206265384> I have problem. I left server for some time when i came back i didn't find my vc role ;-;

#

I have proofs that i was here

ashen jolt
calm spire
raven surge
#

need to send more than 25 message is says to be able to chat

#

@copper junco @tulip gyro

#

hello

primal shadow
#

Well, not talking to us isn't gonna get you there

#

COme back and chat

primal shadow
whole bear
#

smells like fishy fish

clever needle
whole bear
#

Hi @primal shadow

vocal basin
#

please censor out the specific numbers

craggy vale
vocal basin
#

why: someone can, for example, use these numbers to file a fraudulent support ticket related to it (since they can show they know the details of the order, and support personnel might just trust them without further validation)

craggy vale
#

thanks for the warning

vocal basin
#

similar reason to why you also must never share your mobile phone if you have any sort of public presence

wise loom
#

I’ve never done this type of work myself but it seems within reach, although taxing in terms of time

woeful blaze
#

locate [modual] acsess var_8, var_3 
//: import and map
class [name here](inheritence):

# def
main_class __init__:

main_class.__init__() = Var_1
main_class.__init__() = Var_2
main_class.__init__() = Var_3 //: place holder
//: code here the : would  allow you to put coments into code

so printl("i hate this //: i hate this error: mouse")




woeful blaze
#

Thank you

candid spire
#

He certainly has potential but he has not mastered a single stack of tech

#

Too much to expect from a boy

wise loom
#

TIL ...

raven surge
#

damnnn

whole bear
# wise loom

What does mean When I lick your mommas 😈 😈 😈 😈 😈 😈 😈 😈

wise loom
whole bear
#

xD

whole bear
#

I want wiener

iron geyser
#

πŸ˜‚

somber heath
#

This is my unsurprised face. πŸ˜‘

#

@grave pelican πŸ‘‹

iron geyser
somber heath
candid spire