#voice-chat-text-0
1 messages Β· Page 533 of 1
!stream 313362334246633472 20M
β @wide imp can now stream until <t:1759329603:f>.
unlike C, Python can refer to functions syntactically before their declaration
but it needs to still be before runtime-wise
!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()```
:white_check_mark: Your 3.13 eval job has completed with return code 0.
Hello. I am Peter and I am 17 years old.
For the record, my name isn't Peter, nor am I 17.
@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
possibly dataclassable? I don't remember if they __iter__
@obsidian dragon audio loopback
!e
from dataclasses import dataclass
@dataclass
class Stuff:
a: int
b: str
print(*Stuff(1, "a"))
:x: Your 3.13 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m8[0m, in [35m<module>[0m
003 | [31mprint[0m[1;31m(*Stuff(1, "a"))[0m
004 | [31m~~~~~[0m[1;31m^^^^^^^^^^^^^^^^[0m
005 | [1;35mTypeError[0m: [35mprint() argument after * must be an iterable, not Stuff[0m
okay it doesn't
!e
from collections import namedtuple
_Stuff = namedtuple('a', 'b')
class Stuff(_Stuff): ...
print(*Stuff(1, "a"))
:x: Your 3.13 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m7[0m, in [35m<module>[0m
003 | print(*[31mStuff[0m[1;31m(1, "a")[0m)
004 | [31m~~~~~[0m[1;31m^^^^^^^^[0m
005 | [1;35mTypeError[0m: [35ma.__new__() takes 2 positional arguments but 3 were given[0m
what
there are several options to do that, so I recommend exploring it further
@obsidian dragon aaaaaaaaaaaaaaaaaaaaaaa
@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")))
:white_check_mark: Your 3.13 eval job has completed with return code 0.
(1, 'a')
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
oh wait I don't need a _Stuff
!e
from collections import namedtuple
class Stuff(namedtuple('a', 'b')):
def __new__(self, *stuff):
return super().__new__(stuff)
print(*Stuff(1, "a"))
aaaaaaaaaaaaaaaaaa
:x: Your 3.13 eval job has completed with return code 1.
001 | File [35m"/home/main.py"[0m, line [35m5[0m
002 | rturn [1;31msuper[0m().__new__(stuff)
003 | [1;31m^^^^^[0m
004 | [1;35mSyntaxError[0m: [35minvalid syntax[0m
:x: Your 3.13 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File [35m"/home/main.py"[0m, line [35m7[0m, in [35m<module>[0m
003 | print(*[31mStuff[0m[1;31m(1, "a")[0m)
004 | [31m~~~~~[0m[1;31m^^^^^^^^[0m
005 | File [35m"/home/main.py"[0m, line [35m5[0m, in [35m__new__[0m
006 | return [31msuper().__new__[0m[1;31m(stuff)[0m
007 | [31m~~~~~~~~~~~~~~~[0m[1;31m^^^^^^^[0m
008 | [1;35mTypeError[0m: [35ma.__new__() missing 1 required positional argument: 'b'[0m
@wind raptor it runs old code and doesn't show a re-run for newer
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"))
:white_check_mark: Your 3.13 eval job has completed with return code 0.
(1, 'a')
I deleted it because it didn't show up.
At least not for me.
Showed the Discord poop.
there was a count difference so I started looking for what's missing
@wide imp related to game dev https://www.youtube.com/channel/UCYI-TL0LoFRl1gFnnUFwdow
Casey Muratori's talk at BSC 2025.
Casey's links:
BSC links:
Chapters:
0:00:00 Talk
1:50:11 Q&A
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
The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++
if you're ready to read that cover-to-cover, maybe you can write C++
Or then tick.
the scrollbar is kind of hinting at it being not simple
std::shared_pointer is where attempts to convert Python to C++ will explode
@vagrant eagle are these mathsy questions worth it ?
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
Min, wimin.
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@wide imp
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)
Python integrates this somehow
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
operator.matmul(a, b)``````py
operator.__matmul__(a, b)```
Return `a @ b`.
Added in version 3.5.
Python Reference is quite comprehensive
@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.
don't overuse classes either, functions are great too
dataclass, collections, contextlib and many others help remove certain more raw writing of classes
@wide imp Classes aren't about putting all of your code into them.
i see
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.
She believes some humans are made inferior..
I don't think that's called narcissism
She thinks of herself as superior
she thinks everyone else is sheep
more like belonging to a superior class
And she is only an individual with independent brain
Nihilists aren't necessarily narcissists
if the word "only" was used, then yes
Yes only was used
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
((there is a certain someone who describes how, but I'm not going to give them free advertisement by naming them))
Pls
nuclear deterrence is better, agreed
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
@wide imp if you need optimisation, definitely watch through these
especially the opening keynote
why is the sky blue
chlorophyll
(I didn't remember how to spell that)
((only remembered the pronunciation))
hiiiii
because blue light scatters more than other wavelengths
@steep vortex π
Howdy
@wind raptor π
Hello π
It has been long
How have you been?
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
defer
lazyload
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
This makes sense to me
iirc it was something like -0.1% per day up to -30%
@quartz beacon "standards of the EU are going to change"
π
Hello!
@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
Hi
Good art work π
famous enterprise employment simulator, "Among Clowns"
I think π¬π€, it is trump
Coooool π ποΈ π ποΈ π
Hahaha
I mean getting paid 34k in US is horrible
Working for decades in the same workplace
Even in my country person with experience over decades get paid around 34k to 50k
In tech
And all the others
"idk, not yet quite there"
some people prefer text
in part not to interrupt the ongoing conversations
(and/or make comments asynchronously to the rest)
I mean let him use discord
hello @low dirge
If it ain't costing productive why even force him to not use discord

- you pinged a random person 2) @ everyone mentions don't work here for regular users
π₯
π π

i am pranked
do I remember correctly that @ here is actually the same as @ everyone despite implying being less all-pinging?
π
π
login in minecraft
@somber heath sign-on name?
sign-on name and handle, is what I prefer to call those rather than username/login/whatever else
Ok, I think that's good for the shitposting gifs
why my english is bad
unlike certain historic message
π₯
π€£
broo you are so badπ π€£
true
Haha yeah
no no

Beep
Nope
that's an unusual way to have notifications configured
okiee
@craggy vale Could you chat? π
@craggy vale USE KRISP!
okayy
+1
+1
I'm trying to fixing my windows laptop
Purchase mac
Time is more important
nah I'm installing linux
You can do it on mac as well
hell lag my minecraft just started
I'm gonna upgrade my laptop then I'm install linux
Upgrade to macbook pro
mac is shit
@peak depot use uv use uv use uv use uv
already using uv => use uv more
and expancive

@wind raptor your mic is doing that again too
tunung tunung tunung
mac and windows are really shit my all pc are linux
@somber heath I have all sounds disabled on desktop/web
ilikes window so much
and it's so loud on mobile
@somber heath it's automatic, therefore gets enabled automatically
metaautomatic
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)
nice laugh
bro I have no money to buy it
true
No worries..
Get mac mini
+1
still no money
I have only 20k
echo cancellation is broken
right now
How come you can afford both desktop and laptop yet you can't afford 50k or less mac mini
Krisp is good unless it discriminates against your voice for whatever reason
so I just bought a BC 250 APU it can performance up to RTX4070
because of course it does, it's AI
under 17k
bye
what is a BC 250 APU?
Do you know overall electricity usage is higher while using windows desktop
$17K?
or windows laptop on charging
a PC
compared to Macs they consume more energy
a PS5 pc
power meter required to verify this claim.
Intel CPUs have RAPL and can self-monitor but that's imprecise and wall measurements are typically prefered.
AMD has a RAPL equivalent I think.
looks heavy-duty
Yeah.
But more efficient components for windows are more expensive compared to macbook

Being completely closed gives a cost advantage to Apple
so, sold in a state when it's too faulty to do mining anymore?
as with all those
used product
@craggy vale did you already order or are you still deciding what to get?
no no already ordered
the SSD, that it has, almost certainly is nearing its death
In that case enjoy π
and the price is what?
3000$
I wonder if it's worth it..
Ha jk
around 200 $
will you do sustained operation 24/7 on this machine or limited schedule?
all time
no stop
Dude you could have bought it cheaper in the second hand market in CSMT
in gaming in ai in ml in deep learing
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
Damn π
sounds very trustworthy
never ever buy any SSDs from second-hand stores
hmmm
including places like aliexpress
One gpu is enough for ai?
SSD is not a tool, it's a resource
training or inference
I mean he would be using it for AI
Training is not possible
Just on one GPU
yeah with my caster
pi5 with 26 tops npu + my ps4 pro + my ai nas server
and this apu
and my win laptop
Damn
are current AI packages designed to distribute load over multiple machines like that?
as a resource, per-piece-more-expensive SSDs end up cheaper
I think π yes
same also goes for why you might often want to buy an SSD way above your expected data volume
Get NordVPN 2Y plan + 4 months extra + 6 MORE months extra: https://nordvpn.com/networkchuck Itβs risk-free with Nordβs 30-day money-back guarantee!
I just bought 5 Mac Studios to replace my video editing PCsβ¦ but before I hand them over to my editors, I had to play with them first. So, I did something crazyβ I clustered them togeth...
buying cheap SSDs is wasteful
not, like, as much environmentally wasteful, just monetarily
and this, too, is wasteful
yeah
(unless you have nothing better to do with them and no one else wants to buy them)
How?
@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 ?
high cost, low performance
u will see the result around feb 2026
I think not, he chose mac over traditional computers primarily because of cost
He explained in his starting half of video
I'm gonna lanch my first llm model
in 2026
were those used and resold?
yup
buying hardware from apple for cost efficiency is a thoroughly dumb idea
"apple" and "cost efficiency" in the same sentence π
true
which is something Apple themselves will definitely openly agree on
No
yeah, then that is a financial mistake
if they are comparing cost to pre-built PCs then that's incompetence
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).
never buy pre-built PCs
you accidentally breaking parts and having to buy replacements will still be cheaper than paying someone else to do it
π
i wonder when my pc will just spontaneously die
But in terms of power efficiency, driver quality, usability, Apple is nice
"usability" sure
I absolutely hate when I need to use the mac at work
yeah, with power efficiency, might hypothetically do better than some others
Though I guess I'm just doing it wrong...
the only good hardware thing Apple currently has, apart from how they do cooling, is M series CPUs
@willow moss π
bUT tHe GlAsS buttONs
Cool Good for who? Apple's bottom line?
@craggy vale turn on noise suppression
ok
@whole bear π
Hello
look
even better if you press that
oh nice
Highly recommend, 10/10
ok
my microphone is so good i don't even need Push to Talk π
No one ever enters the space?
@amber raptor automatic gain control is good on mobile, but is absolutely terrible on browser/desktop
voice detection does not know who the target of the communication is
you have an ssh client built into it, also rdp and vnc clients and that goes a long way..
MOOOOOM!! I DONT WANNA!!!
for some reason on non-mobile it sometimes overcompensates so much the sound gets excessively loud
sorry guys
this is the only problem lol
You build apps for ios devices on the mac next to you by remoting in?
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
Krisp should at least remove the notification sounds
they claim they do
but it fails to
You donβt develop on a Mac?
i think the Pro plans are overpriced so maybe they take some money from that
Can only build for hte iOS devices on a mac
The biggest beneficiary of the AI boom is Nvidia
yea
macOS might potentially be usable for me, but just because it's Unix, and Linux isn't Unix
you could use the mac as a build server and use a decrepit thinkpad as your thin client
Is OpenAI profitable?
Look into how diapers.com died, or how crack dealers traditionally get new customers
native dtrace support
Mac is trash for development, as far as I've experienced
@amber raptor mac is still made in China
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
Did they do something other than sell diapers???
Amazon sold at a loss to drive them out of business
be right back guys, gotta eat dinner
then jacked up the price once competition was dead
I doubt macOS containers are a thing yet?
there are Windows containers
What isnβt?
it would absolutely be possible, just that the performance would be ass
Wasnβt the plan to lower dependence on China? But Macs are made in China..
Almost all electronics are made in China
yeah I already know
and illumos containers
Teslas are made in US, also John Deere tractors π
that's why I'm start with reVC
US can manufacture but no low end goods but really high end goods
normal is dead
Trump's focus is on low end Goods
perpendicular type of normal
But we ship so many cars to the US....
this is modern life now
@amber raptor there was a ship incident where big car transport flipped over
they did recover the cars but ended up scrapping them
I think Trump's is just delaying the inevitable:
Rise and dominance of china
because batteries were not made to be tilted for so long
Quick googling says we import ~6 mil a year, manufacture 10mil
rough numbers that of course fluctuate anually
bye everyone
cars inside apparently aren't built to survive that angle for too long
π
weird because that's the angle i'm driving at on a lot of english roads
I mean what do Trump expect from the US?
As Long as the USD is reserve currency it can never be competitive in manufacturing
Yes but if US and China want to throw down, they need to have independent production to be credible. I mean currently they punch eachother with one hand and embrace eachother with the other hand, itβs kindof insane
fine to drive, not fine to store
ah, right there was another
I suspect something might be overall wrong with this ship design
just under half was from mexico
just keeps happening
Stockholder value
looks avant-garde
they should store all the marbles on the bottom instead of the top imo
idk, just drive the cars across the ocean floor
I think China cares less about the US in the long term.
China's top priority is Global South and India for long term strategic interest.
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
Itβs more that projecting power there is easier
you get, like, a cheap bus-style plane at the cost of first-class elsewhere
@peak depot Markdown again?
okay
Ig u got it right
@gaunt cosmos π
People want anonymity online
@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
AI issued fines? Fuuuuck no.
My proposition is that most people against these things have something to hide themselves lol
hell na
But how is it sifferent with getting fined by speed cams
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
what is going on?
realest
This I agree with
Good point @somber heath
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
@slim ravine π
Hello
Be on shortly. Have a run to do
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
Of course
Can I get help about python in here?
Okay thanks good to know
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
omg it's hemlock :O
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
@coarse onyx π
Good bathroom times
A good trip to the restroom can make the whole day great
Just like a bad trip can ruin a day
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
Why are you guys talking about nazis and stuff? Is that allowed lol
Russia disagrees
here's the American Nazis
embed
@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
That is not true
Check out the yearly statiscits of the BKA
Made up by german police?!?!?!
Open your eyes....
As of late the numbers are fudged
don't waste openness of your mind on fascists
link
@dry jasper send the link
I did not find in some minutes I spent
if you already have the link, send
I don't wanna say you're defending fascism for unknown reasons, but that
@dry jasper or write out the name of what I need to look up
exact words
like I see it
and smell it
π
When I see someone defending fascism, it's strange, to me, you know what I mean?
Thats your way of underdtanding
(I'm still looking it up)
I was sayong that Antifa is bad
((attempting))
Not that Faschismus is good
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.
@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 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?
If he said left wing violence is more prevalent than right wing I know there's a whole fucking cattle farm nearby
Can't smell anything but the bullshit
the claim I heard was: more of the overall violent, but less fatal
or does this demonstrate enough why not to get offended when you lie about your sources?
Antifa is not organised thing - it's a made up concept
for examble; MAGA is a organised group prone to violence
did you mean 7th of October?
(I felt the date was slightly off, so double-checked, it was on 7th)
or was there some internal German thing happening alongside it?
stuff in text -- we were just checking stats;
in voice -- not sure, seems like games
MAGA refers to separate different things
there is a literal MAGA organisation
but overall it, too, is more of a movement
What is point of discussion though
He has become a rare pokemon on Discord.
And is this regular or what like
not too regular
we do discuss tech stuff
sometimes
Alright, cool
VC s mean that venture capital or what else
(right now people in VC are just chatting to Hemlock because he's rarely here any more)
voice chats
or voice channels
Alright π
we do have a certain capitalist of pharmaceutical variety in here
I was bit into product building so thought it was related to that π€£
Ohk
Bye tx
PAC is just a way to dodge election spending laws
It's what caused America to go from corrupt to banana republic
the only year where violent crime ratio was flipped was 2020
(and I can't find any earlier reports)
murder hobo?
yes

this is funnier: https://store.steampowered.com/app/1409710/Escape_from_Tatris/
The game was made for parody purposes, we did not pursue the goal of offending anyone or stealing intellectual property.
- A classic puzzle game inspired by many shooters. You have to put the loot found by the PMC into your backpack as quickly as possible, until you run out of space.
- The game develops trash collection skills in other games withouβ¦
yes
bastet is still the favourite
the one which picks the worst piece
Evil falling block game. http://fph.altervista.org/prog/bastet.html - fph/bastet
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
Deadlock
I did heavy raiding in vanilla
much less in BC
Vanilla was all my raiding
Raid near booty bay?
in vanilla?
yes
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
coockie
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
ok
helo
Greeting! How may I help you for today
I'm just playing some games, not in need of any direct assistance
Sup
hi
@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
not much
sippi
Hiπ
made a small GUI which can calculate the speed of a projectile without the need of a expensive chronograph
@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
How do I evade the caste complexity of India?
Can anyone adopt me, in this way I could be casteless and of your origin
@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
Japanese culture is just a chinese culture modernized earlier
The primary cause of isekai in Japan is overwork-kun.
haven't seen that used as an euphemism before
Japan uses the same alphabet as Chinese.
And they try their best to create and switch to their own alphabet.
Nice try but they are influenced by China historically
@wind raptor vibe statistics
and now Chinese culture is trying to mimic Japanese culture too
saying that one is just the other but <...> is dumb
Yeah because they quite similar
First known vending machine, first century Roman Egypt.
@upbeat oasis do you have an AI-related engineering degree?
First modern incarnation of the vending machine, England.
China is adapting and improvising modern cultural things from Japan.
Most japanese culture is just a sub culture of ancient Chinese influence
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
Yeah but some have more influence on others.
China has more historical influence on japan compared to Japan on China
Japanese culture stems from Yellow river and monogolide tribe which inhabited the Japan
Yamato people
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
8 google results
(I sometimes lookup misspellings to check if they're common)
In other words SuperPlantMan is glazing Chinese who happens to be called Japanese and from Island of Japan
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)
Nope, Ukrainians are not Russian.
Eastern russians are racially different to western Russia
two sentences, that this message contains, are unrelated to each other
I meant Japanese culture and people stem from yayoi ethnicity who are from the korean peninsula and have roots from Ancient China and hans
then don't say it in a way which is clearly pro-Chinese nationalistic and is meant to put Japanese culture down
this is an excessively inappropriate message both within and outside context
hi
you can't excuse behaviour just by mentioning adjacently (but not directly) related facts
good
Btw China hates Japan and the last thing they would like is calling a Japanese person to be called Chinese.
In my context when I meant Chinese and China, I meant ancient China and ancient Chinese from which present day japanese culture and people stem from!
Please drop this subject. You are bordering rule infraction.
(I will not comment on the last stuff, just to stop the topic)
Hmm
This blanket statement is not appropriate here. Saying all of China hates Japan is promoting hatred and is just false.
Nvm
Not all but most
And for valid reason
No. Just drop it like I asked. You act like you are an expert but are clearly not.
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?
!tempban 562401197034569761 1m Being toxic to other members and saying that I cannot intervene when defending them "I wasn't talking to you"
:incoming_envelope: :ok_hand: applied ban to @fallen heron until <t:1762181513:f> (1 month).
tryingggggggggggg
Good luck
Raspberry Pi is good for experiment but it is limiting in testing and scaling
just buy more of them if you need scale
and do PoE
(easier to power that way compared to USB C)
Raspberry is expensive in India
yeah
Especially the latest one
they are expensive everywhere
it's crossing into the "premium" price range
In my area in offline Shop it cost 16k
it's a retail brand
!cpban 650778494183407617
:incoming_envelope: :ok_hand: applied ban to @near valve until <t:1759849039:f> (4 days).
With bare minimum specification
bro WTF
Yeah bro, demand is high here and supply is low
So they over charge for it
π
But for Indians, it's really expensive.
It cost almost 1/2 of average monthly wage in India
I wish it were cheaper
@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
@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.
I think at that point the only valid response is to just shut down the discussion they try to start
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
I need an extension that removes all these chats
Dude stop the cap
I mean, it's odd to hear her mother sold her jewellery for his experiments
yeah but real
Seriously?
yes
not a debate matter at all
Okay
I already got certificate from microsoft
Nvm
2024
How old are you devarshi?
13+
responsible answer
Damn
ugh, I need to buy ETH connector thingies and covers for them
You must be a prodigy
I ran out of the ones I had
@peak depot at least that list is diverse
Definitely you can not make GPU from scratch but you sure can learn about it
there is a video series on doing that
Let's build a circuit that displays an image on a VGA monitor! In this video, I talk about how VGA signals work and build a circuit that provides the correct timing of sync signals so that a monitor recognizes the signal.
Support these videos on Patreon: https://www.patreon.com/beneater or https://eater.net/support for other ways to support.
-...
@peak depot he'll put it on his calendar/roadmap
If I have a transitor can I make a weakest GPU?
you need several
I mean how much do I need to do some simple arithmetic
Or lowest quality rendering
Possible
large parts of your rendering will need to be computed externally
with the GPU being only responsible for talking to the screen
@dry jasper context
lmao
Adopt Indian breed dog
who let them out
Indian street dog breeds are one of most beautiful and obedient dog
who use fire fox right now
Hail the god
Husky looks quite similar to wolf
Looks like a sweet dog
me
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
<@&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
You can contact modmail regarding this
okay
need to send more than 25 message is says to be able to chat
@copper junco @tulip gyro
hello
smells like fishy fish
Hi @primal shadow
please censor out the specific numbers
oh ok
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)
damnnnnnnnnnn
thanks for the warning
similar reason to why you also must never share your mobile phone if you have any sort of public presence
Debarshi seems to be serious about learning how to make a TPU. Which apparently at least the architecture and simulation part they can do in Verilog or VHDL, and at some point they will need an FPGA board to program and FPGA with the design they have built & validated. But that will take time..
Iβve never done this type of work myself but it seems within reach, although taxing in terms of time
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")
You had mentioned you want to build a compiler. They say these are the two best books on compilers:
Thank you
Tbh, I doubt he has dedication to one particular sub field of Computer Science.
He certainly has potential but he has not mastered a single stack of tech
Too much to expect from a boy
damnnn
What does mean When I lick your mommas π π π π π π π π
Genius! I will use this to build the lyrics for my next hip-hop hit.
xD
I want wiener
π
oh really
wtf π
Beg pardon?
Yep