#programming
1 messages · Page 296 of 1
yep it does
non stop when is speaker on and if its not on 0% volume
pacman has been on windows in certain variations for ages
pipewire
have you tried to figure out how it depends on frequency of sound
oh wait do you even dont need to play anything
i never messed with it too much only lowred it once from 48khz and to 41khz
idk if i remember correctly
i might be dumb if i ssy smth wrong
yea speaker needs be just on
it was only while you're playing audio right?
i remember changing that on windows and my sound just completely stopped working
technically yea
but volume doesnt matter
unless its 0
technically? 
can you go there and try different settings
did lowering change anything
since if i play anything it turns on speaker if i mute laptop it turns off speaker
idk i am 100% sure these settings are important but idk exactly why
pretty sure it should stop working if you choose wrong option

so its not the audio itself, its the speakers being enabled you mean?
cute
///<
it did not do shit
yeah but what about this
honestly i love that
based sony cameo
of all the spaces i expected sony to be involved with, advent of code was not one of them
sony does a lot of random shit
the samsungification of companies
if its mildly tech related, sony is probably involved somewhere
id argue sony has been doing this for longer than smasnug
the sonyfication of companies
cameras? sony
microphones? sony
projectors? sony
tv? sony
video games? sony
headphones? sony
other audio things? sony
phones? sony
sensors? sony
storage? sony
batteries? sony
optical media? sony
...
music instruments? apprently also sony
damn, even car parts
medical devices too
fuckign hell they have financial services
sony mic lmao
what other audio things
i don’t think they do storage (memorycard is long dead wake up pls)
what music instruments i have never seen a sony music instrument
I don't even have a mic at all
it’s called memorystick
I don't know what I need one for anyway
i don’t know if sony even has mics
they do storage. memory stick duo and some other shit
yeah that’s what i was talking about
that shit is dead bruh
their cameras have sd
they make sd cards
they used to do keyboards and stuff, now mostly only digital audio hardware
like a recorder maybe
they do and did consumer mics and studio mics, pretty sure cinema tier boom mics and such too
i was yellow now orange
besides those things, thye just made electric keyboards
cassette radio speaker chord thing
kinda like a synthesizer, but with 36 buttons for chords, and it lets you make the chord progressions and stuff
it has a rhythm thing too. im assuming it jsut ticks in a specific beat
this seems like a gimmick product honestly
or it’s a sampler
oh damn
right now sony brand nonexistent in pro audio
idk if ever was, probably some headphones were
supposedly the cassete deck is for "lessons" or bg music
this seems weirdly focussed towards education
what is the radio for
playing along? 
i cant find much info on it
A look at Sony's one-off musical oddity from 1982 - The CFS-C7 CHORDMACHINE
Music cassette featured from https://eox.no
If you want to see a traditional Boombox/synth keyboard combo - the Casio KX-101 is demonstrated here by the 8-Bit Guy. https://youtu.be/0CO0DbjjZPA
00:00 Start
01:49 Fixtures & fittings
04:36 Faults & fixes
12:13 DEMO
19:...
different model, but close
he's mad
what about it
Mr. Tsoding is about to kill us all
I'm trying to rewrite some coreutils for fun in C, C++ and Rust to learn them better and holy they do some funky things (I am banging my head against my desk send help)
just look at this absolutely horrible string to float code :D
long long decipher_float_time(const char* string)
{
double integer = 0;
double fraction = 0;
unsigned long long fractional_index = 1;
bool is_fractional = false;
char prefix = 's';
unsigned long long i = 0;
while (string[i])
{
char c = string[i++];
if (c == '.' && is_fractional)
{
// Numbers can't have multiple decimal points.
fprintf(stderr, "sleep: invalid time interval `%s`\nTry 'sleep --help' for more information.\n", string);
exit(1);
}
if (c == '.' && !is_fractional)
{
is_fractional = true;
continue;
}
if (c >= '0' && c <= '9')
{
if (is_fractional)
{
double value = c - '0';
for (unsigned long long j = 0; j < fractional_index; j++)
{
value /= 10;
}
fraction += value;
fractional_index++;
}
else
{
integer *= 10;
integer += c - '0';
}
}
else if (c == 's' || c == 'm' || c == 'h' || c == 'd')
{
prefix = c;
if (string[i])
{
// the prefix is multiple characters long which doesn't line up with anything valid
fprintf(stderr, "sleep: invalid time interval `%s`\nTry 'sleep --help' for more information.\n",
string);
exit(1);
}
break;
}
else
{
// we don't know this character.
fprintf(stderr, "sleep: invalid time interval `%s`\nTry 'sleep --help' for more information.\n", string);
exit(1);
}
}
switch (prefix)
{
default: case 's':
return (long long)((integer + fraction) * SECONDS);
case 'm':
return (long long)((integer + fraction) * MINUTES);
case 'h':
return (long long)((integer + fraction) * HOURS);
case 'd':
return (long long)((integer + fraction) * DAYS);
}
}
it does work though
doesnt look too bad
chi p head
there must be a better way to shift the fractional component though, instead of just looping whilst dividing by 10
*= 0.1 

that's one way. I'm actually more surprised that gcc doesn't convert the /= 10 to a *= 0.1 automatically
it probably does tbh
I guess they aren't technically the same cause of floating point issues
it's probably a thing on -O3 
-Ofast would
-O3 still doesn't substitute FP operations unless it can prove they're exactly the same
yeah -Ofast does, but nothing else will

wait, Ofast just turns the multiplication function into a reference to the divide function lmao
absolute raccoon 
Why make yourself suffer and waste time when you can fine tune an LLM and get a better PC to run it 
I wanted to make it offline and be able to run on a phone
You're just saving questions and answers
No it can generate its own strings and detect typos
Its C code. It comes with the territory :)
a = ~(a << 5 | (b & 0xBEEF));
d = a ^ ((e & mask) << 5);
return d;
ok now implement a standard-conforming std::from_chars 
https://github.com/microsoft/STL/blob/2e27f1f05a155bb3637dad04b4d9c4c4590c8542/stl/inc/charconv#L1519-L1806
God no.
Don't make him suffer.
You know those standards weren't written by actual developers!
Pfft... Bureaucrats.
If academia could produce a functional standard to save their lives, we wouldn't have half the problems we do today.

why are the mics so smol in this image???
Your "AI" isn't an AI, it's just an adaptive chatting bot or questions and answers pairs
I think you don't know what's the difference between an Actual AI and a chat bot
Just fine tune an LLM 
Or...
Reject LLM, return to vocal synth
The triangler spotted

:classic: superbox
tf why is it backwards
depends
You find singing fun
and that's fun
for you
for other people they find text generation more interesting
some people may find both interesting
Such silliness
vocal synth need effort at least to make bangers
llms are plug and play and tend to be sloppy

guys do yall think that my Raspberry pi will catch on fire by running ai models?
it goes up to 76C
lol
sbcs wont catch on fire from anything
they are designed for particular specs
ye want it go faster buy cooling 
water cooled pi 
eternal throttle
i dont know whats going on 
leave this here have fun me go 
https://www.nytimes.com/2025/11/23/opinion/whale-language-ai.html?unlocked_article_code=1.5E8.QQtM.mIy-OXz9eA1X
chay why are you gren
fuck throttling if it works
gone now 
how does using the volume knob on my mic change mpv's volume if its focused
but like
oh wait actually
I guess it just presses the windows vol up/down keys
instead of fuckery
But its a mic
is it supposed to imitate being lowered if you try to test it
While changing your volume
Ooh
and thus the dial changes the headphone volume
cheese
what has my life come to
i just made a suno account
LMAOOOOOOOO
i don't even have words
fucking idiots
Ok that thing is just stupid
It was already stupid but that's stupid++
Reject song generation, return to vocal synth
AI copyright?
ikr?
ok so i tried it and it just boils the prompt down to the most normie interpretation possible, ignoring most of it
my prompt is: 2020s rap, detroit rap, mumble rap, jerk trap, rage beat, electronic synths only
it generates: generic shit trap beat with boring guitar sample. like the stuff you'll hear on the radio
the company and the approach to what they're doing is shit but i was under the impression that at least the product is fine and does its thing
nuh uh
like i'm pretty sure sora 2 can generate better music
it's unbelievably shit
imagine coding ais would just give you the executable
this is what this is
AI generated music moment
AI gen music is the average of all music that fits the prompt
Corporations too greedy
because with art there isn't much you can do to make it good if you use some cloud image gen thing, but locally you have lots of things you can tweak
Prompt-based AI generator things are kinda dumb anyway
none of the ai art people like and mistake for a real drawing comes from proprietary corpa models
because someone went out of their way and trained a lora to rip off an artist's style and applied it
that's what usually happens with ai art
people like
i tried uploading my own stuff as guidance and nah it just puts a drum fill and transitions out into its own bullshit coworker music
i wanna say ngmi but suno is valued at $2.45b
lol
i spent all of my free credits but none of the results are even remotely good
i can kinda see how this is fun tho?
I need the help of the VimWizards
When I do a :bd! how can I make it so neo-tree is not fullwidth, but instead just moves to the next available buffer, or opens a temp buffer when last buffer is closed
Ok solved by implementing mini.bufremove correctly
I'm not clicking that link
You know, aliexpress, temu etc. might be truly awful
But man am I grateful for aliexpress and alibaba specifically
Cheap chinese servos my beloved
im working on hosting a really stupid project right now
one of the dumbest ive worked on
count the ways
Brazil is indeed the biggest number, even bigger than 5

thrembo

I mean, technically there is always going to be a n+1 number, so can we say it exists?
queue vsauce music

What about 3 Brazilian
"according to me"
Imagine an entire country worth of brazilians
That woukd be wild
213.4 million brazillian
crazy how its called the "Z trifold" but it doesnt fold like a Z
thats a U
all of the AI generated "leaked" images has it folding like a Z
too relatable 
What is this bug doing on the screen?
what could go wrong

just dont drop any screws and you're good rpobably
5am pc rebuilding stream
surely that's a good idea
at Sam would you want to watch me install an SSD
i woke up at 3am cuz the gods have graced me this fine tuesday morning
so im workign on my bledner rn

I need to decide if I use it to commit to the Linux bit or not
still cant fc a 3star
you could put a linux partition on it if you want i guess
well like
be the change you want to see
my pipedream idea is kinda cursed
dual boot but the Linux side can run the windows install as a vm
would probably make secure boot very unhappy
Woah I also have Video to ASCII player but without audio 
or even better just boot pure linux with the windows vm as and when I need it
but I lose the ability to do GPU stuff with this
nah
#programming osu

Wait, why does that work
I guess if pings work then so do channels
I can strikethrough pings
@olive sable Test
It works 

lmfao
I'm working on a copypasta rq
I'm not using emotes but I think people who edit it are going to include some I think
Bro… you take a TREE 🌲👉😦 Yank it out of its cozy lil forest home 🏞️😭 Rip it away from its TREE FAMILY 🌲👨👩👧👦💔 Then you just… stick it in your HOUSE 🏠😳 and sleep-deprive it 😵💫 and STARVE IT inside a cardboard coffin 📦💀✨ AND THEN—AND THEN— you decorate its corpse 💀🎄✨ with shiny happy little trinkets 😂🌟🎁 like “haha look at these symbols of joy, lil tree 😌✨” Suddenly you're like: “OMG I LOVE THIS TREE 😍💖🌲 IT IS THE CENTER OF MY ENTIRE EXISTENCE” and you worship it for WEEKS 🙇♂️🌟😩 Then you shove the gifts of MEGA-CORPORATE CAPITALISM™ 💰📦🏭 under it— the fruits of GREED 🍎💵😤 And when you're done? You KILL IT AGAIN 😭🪓🌲💀 Cold. Calculated. No mercy 😐🪓❄️ Silent except for the sound of your tears that aren’t even for the tree— just because the holiday vibes are ending 😩🎄💔 And for WHAT?? FOR CHRISTMAS?? 🎅❓ A holiday forged in the dark laboratories of CAPITALISM™ 💰🧪😈 A ritual designed to drain wallets faster than Santa eats cookies 🍪💸💸💸 You don’t believe me?? GO LOOK IT UP 📚👁️👄👁️💥 Barely a single crumb, a microscopic morsel, is rooted in real tradition 💀✨


wait i posted this in programming lmfao
thought I posted that in genchat


I'm realizing the strikethrough looks so much better on PC for channels than on mobile holy
so, anyone want to see the media center app i'm working on for watching anime on the gabecube?
Sillly but also doable
I'll just post the link anyway: https://imgur.com/a/xngY6oP
I only reconize one of these and the one I do know is index, man I'm uncultured
there's railgun on there too
I am blind
who is doing advent of code lol
I sentience thee to ~~https://discord.com/channels/574720535888396288/1072697081443131476~~ Hell
-# Join your brethren in the cult grounds
+ you will fit in just fine
+ Just step in the summoning circle
- There is no coming back```

unfortunately, the # is not crossed in strikeout
thats fine i think
why is it MAX_DOUBLE
sobbadobadob
who even recognizes it
Dms for testing show another quirk
wow
> discord is a very good platform and contains 0 questionable decisions


mobile
wow the color is gone
the strikethrough is still there just not on top anymore, hence why the thing is bold
huh, I can't post the screenshot of my console listing all the file hashes the program is computing while rebuilding the database that stores info on my anime library now that I switched to a different database type.
Discord does not do much formatting stuff at all on moble, python however works for some unholy reason
what?
tf u mean python works
c works too
u mean in code blocks?
it uses the same library for all code formatting on mobile that it does on desktop
Yep, hit or miss on if it works on mobile.
```cpp
#include <iostream>
using namespace std;
int main() {
int* safe = nullptr;
cout << *safe;
}
```
like that kind of code block?
diff doesn't because otherwise I wouldn't have issues
just specify the language
put ```js for javascript etc.
ye except how is that not regerestinf as one
\
The screenshot above is literally diff
escape char are very powerful
I use mobile all of the time so I know not all of them work
cpp indeed doesn't work
so you did ```diff
@vernal current this message
no brainrot message
is ```diff
Brainrot is banned yep
the only copypasta I think should be in the programming chat is probably the gnu/linux copypasta bc it's funny and on topic
send copypasta

On one hand I agree, on the other hand sending people to another channel is also on topic 
wow
anyways
these problems are too orz
this is the only plat problem i can solve sobbadobadob
and the impl was not the greatest
So this is what my app uses to figgure out what anime episode you have:
{
"crc32": 340566913,
"ed2k": "b7822f760554aaf5e5733f3f9e7c1a8e"
}
It then queries a database of anime episode hashes to pull down the correct episode info, I'm planning on also doing a SSIM based identification system at some point too.
bonus points if you can identify the anime episode that json references
l = ["enub", 42]
if __name__ == "__main__":
for item in l:
print(item)
Python example just to round out the explnantion
This one does actually work
i hate py with a passion
💀
unless you're calling some library that doesn't exist in other languages
you like 10/10 should never be using python
world's worst performance
I'm not starting this debate, I'm just talking about the highlighting being functional
In conclusion, discord syntax highlighting on mobile is a case by case basis
gm
should i try aoc
performance doesn't always matter enough for it to be a reason to use another language
i use python a lot simply because I know it well and so if i need to make something it's easiest for me to use python
where applicable i have no issues using other languages
🤥
im not wrong though
your aoc journey will be fraught if you use python
some cheese solutions will NOT run fast enough
yeah so i'd use a different language
not complicated
smh
if you are proficient in another lang
why further cement yourself in python
a language where ints are immutable
SCALA
Did anybody here programmed a hopefield neural network from scratch ?
I am trying to do just that and I am encountering problems
I keep having only one stable attractor, also it's not à classical hopefield network but one using continuous values
So the inputs and outputs are float in [-1,1]
because its simple?
its often used like a basic script for most things that doesn't even need any performance
like, simple command websockets for some of your devices, or parsing something relatively small, depending on what you want, and these compared to most other languages isn't any different in speed
most backend also works fine with python
on average python can still do million things per second so plenty fast enough.
we also have bindings for some libraries. some ML researcher prefer using pytorch as example for testing because its just simple
i am NOT spending a lot of time writing hundreds lines of C for some simple networking backend if i can just do it on few lines on python and it works just as fast in that specific task
Cuz i can write python in a half of the time i need to use for something like C++
🤦♂️
put it another way, even if I knew Rust, I wouldn't write something quick and disposable in Rust if I could do the same thing much faster on Python scripting-wise
it is not related to "skill" or "you should get better at writing <low-level lang>" it is related to "I just need to make something quick and dirty, I will use a high-level language to save myself some implementation time since for those python is fast enough anyways"
For quick protyping
Im not gonna sped an hour in cpp when i can do it in 30min in python
Sure, my cpp game engine runs at 13000 fps, so it is faster
But the python one does 4k fps, so its fine
Some people here know asm, i dont see them spending a month writing asm code for what could have been an hour of python code
sounds like everyone should relearn PERL
me when i rewrite the entire python ecosystem in perl
I don't see a lot of people programming A.I from scratch in here...guess not everyone is as insane as me X"D
we have different insanities
i am programming heterogenous distributed topology generation from scratch
ok, you are insane as well, just not the same kind of insanity X"D
exactly

I hate the Bazel build system with passion
So much
It's literally the most Inconvenient tool possible
For Development
I'm trying to use this for making an ai vtuber as a challenge and I'm facing so many issues
All of this just to build a docker container off a python app https://github.com/shadowlilac-oss/VRChat-AI/blob/master/backend/text/BUILD
VRChat & Twitch AI. Contribute to shadowlilac-oss/VRChat-AI development by creating an account on GitHub.
kekw wtf am i looking at
Well, id say most of the people in #programming are not sane, but in different ways
Some of the projects people here are working on are wild
Also, its not a competition 
We seem to be similar in terms of insanity
I think
everyone's insane

True
not a single hint of sanity here
You'll never guess why my laptop touchpad stopped working a bit earlier today

fn+F1
Im geussing
Nope, the power supply was planning to light on fire
I'm kinda surprised there's no permanent damage and the touch pad being broken with this thing plugged in was the only issue
Probably meant the thing on the wire between laptop and electricity socket
Transforming 240ac to 16dc or how much laptop needs
Because battery on fire doesnt seem to happen without permament damage 
we're all insane
:SCHIZO:
External power supply
Yes indeed, in the case of this laptop 19.5V
What the fuck is a starlark
How would that affect the trackpad tho?
I don't know but it did
My guess is the leaking power, whatever was causing it to leak, was interfering with it someow
i want this...
objectively best looking GPU imo
top of the top
comes second
third would be the TITAN V
why are there so few things in the steampunk style...
ikr
these 2 are made by igame colorful
chinese company, arguably better than msi and even asus level of quality
There has to be bypass around battery so it probably surged and fried it or smth like that. Maybe everything was affected but only touchpad didnt make it after
might be hot take, i find minimalist designs like the newer FE as example quite boring
titan v objectively best looking design out of all Nvidia's own designs
either that or TITAN X
9 and 10 series FE comes next
still loses to the 2 steampunk design i've shown imo
you can try to disassemble it completely and try with a bare motherboard if it doesn't work at all and think what you can save or use a multimeter
It looks like an aquarium,nice
i want more genuinely detailed designs... minimalist design can seem clean but often just gets boring
Is that DDR5 memory? A big gold pendant might be cheaper.
isn't that gpu made by the company that makes waifu gpus
ok, YOU, did you already made a continuous hopefield neural network from scratch ? I have a lot of trouble making mine work, so I would love advice (If I try to make this mofo learn more than one patern it always has only one stable attractor...this is not normal, and make it useless essentialy)
ya yeston i forgot the name, this was the best looking gpu made by yeston imo
colors
i only liked the backplate tho front is kinda meh
I didn't have to make the Hopfield network, I made a more classic version, sorry but i can't help with it
Damn. That’s a sexy GPU. That looks sick af, man.
like objectively best looking GPUs
out of all
wait i should definitely do this as a flex
Ngl I’d wear that in public. 
ok, thanks for answering
you're the second person that I've seen say this today 
return std::ranges::fold_left(
view
| std::views::split(',')
| std::views::transform([](auto v) {
return v
| std::views::split('-')
| std::views::transform([](auto v) {
uint64_t result = 0;
std::from_chars(v.data(), v.data() + v.size(), result);
return result;
});
})
| std::views::join
| std::views::chunk(2)
| std::views::transform([](auto chunks) {
return std::ranges::fold_left(
std::views::iota(*chunks.begin(), *std::ranges::next(chunks.begin()) + 1)
| std::views::filter([](auto num) {
auto len = static_cast<int>(floor(log10(num)) + 1);
auto gen = std::views::iota(0, len)
| std::views::transform([num, len](auto i){
return (num / pow10[len - 1 - i]) % 10;
});
return std::ranges::fold_left(
std::views::iota(1, (len / 2) + 1)
| std::views::transform([gen](auto n){
auto chunked = gen
| std::views::chunk(n);
auto res = std::ranges::adjacent_find(
chunked,
[](auto&& a, auto&& b){
return !std::ranges::equal(a, b);
});
return res == chunked.end();
}),
0,
std::plus()) > 0;
}),
0,
std::plus());
}),
0,
std::plus());


Tried Windows 11 after years of using Linux… and bro… this was PAIN.
Errors, crashes, broken VPN extensions, audio bugs — Windows really speedran my sanity Missing Codecs Network interface.
Meanwhile Linux just sits there like “works on my machine.” 🐧💀
This video is my honest experience as a Linux user trying Windows 11 again…...
well well well, how the turn tables
you'd love the java streams api 
Turns out
TTS training, even for LoRA, immensely benefits from long sequences and high batch size
My 12GB 3060, however, does not benefit from long sequences or high batch sizes
I’d rather have 4/4 of a 12gb 3060 than 1/4 of a 24gb 3090
4/4?
100% vs 25%
And what do you mean by having only 25% of a 3090?
Well there’s this thing, currency I think they called it
A 3090 is just 500€
And?
Well that's pretty cheap
- I don’t have €500
- They are worth more than €500 where I live
If you want to fix either of those, feel free 
Alr 
Around these parts they go for closer to €650
And that’s the minimum before it’s too good to be true
Average is closer to like (guessing the conversion this time) €675-725
- Where the scallop are they worth that much?
- Are you interested in an international drop shipping price gouging operation?
no it would not 
kosovo :D
i hate it here :D
perhaps, though i already have a fuckton on my plate 
hmmm
must be the ram prices
Big dram ruining everything
I'm gonna guess that's not a used market card
It's also a 3090 ti
True
Anthropic is acquiring @bunjavascript to further accelerate Claude Code’s growth.
︀︀
︀︀We're delighted that Bun—which has dramatically improved the JavaScript and TypeScript developer experience—is joining us to make Claude Code even better.
︀︀
︀︀Read more: www.anthropic.com/news/anthropic-acquires-bun-as-claude-code-reaches-usd1b-milestone
LMAO?
can someone explain
why
why do they need bun
what for
just for claude code? then i'm hyped kinda
much more priority to the native executable build thing
maybe they want to do some weird code execution stuff that needs a special runtime?
who knows, but on the surface it does just look like it's for claude code 
i think being close to zig devs and like
possibly tuning to be really good at zig is a side bonus
but yeah probably subsuming claude code-related ux knowledge and maybe their webapp ux knowledge too
ram is a type of animal
sell cat for ram makes sense as ram is more useful as a work animal

Not if you have mice
Looks fine to me
All part of God's plan. He's calling for you to fix it and make TempleOS better 😛
oh damn
ig claude
bun now huh
claude code always was bun
i never used ai agents tbh
then ig it would be more bun
?????????????
This is likely bad news sadly
im not calling it either way; i have like slight optimsm but mostly high uncertainty
Can't wait for a community fork
it might happen soon because of the amount of anti LLM sentiment that exists
would be an interesting phenomenon
Considering how low level code and LLMs dont mix I expect them to abandon zig or scale back resources
If not then I'll be surprised as it will be a first
i dont think their philosophy is to only work on strengths
also i think its already better at zig than you think but idk
Its a company that does exclusively AI buying out a company behind a language
wellt he headline purpose is still the bun framework itself to develop claude code and probably their webapp ux
but i dont see why they wouldnt try to harden every aspect rather than like
cherry pick and let rot
Because they are likely just in it for the web dev tools
i think zig has enough genuine low level enthusiasm that if thats the case then the community will keep it going strong, at the least
zig is like fundamentally good enough
that it wont die from this
thats my read; we'll see
How is the licensing for zig
MIT
not like zig has anything to do with this, you'd be stupid to suddenly try to rewrite bun in another language
there is no benefit
ive just read things about bun being the foremost framework in zig trying to be cautious themselves not to put too much upstream pressure on zig
there are tensions when youre that big
yea i might be overthinking it
they have no influence on the language
i thought i read somewhere that they specifically were trying to manage their own influence on the language because they had some but i dont remember where i read this lmfao
speaking of zig they had a pretty big update recently
ye they did something fancy with their async/await
idk im not gonna get into it but it is exciting stuff if you're a c style language fan
what are your comfort langs
C# mostly, but Java originally and lately ive been doing alot of C++ for a game engine
I love C# as a language but I dont like JIT
makes sense
Ive thought of making my own for a side project with a similar syntax but lower level
oh right the fundamental logic behind this is 'there is inherent pressure to not make breaking changes so the bigger bun gets the more locked in zig is to the decisions that bun made that would break if zig wanted to make a certain breaking change'
that kinda thing
its not the biggest deal though its just another dynamic to work around
They are in a stage where extreme changes are expected still
doesnt mean zig doesnt feel some level of pressure when aware of what would break
but yes bun themselves said theyre trying not to exert that pressure
i doubt they care much, sometimes things just need to break
They recently killed a ton of coroutine stuff
Once the language gets more stable I imagine less breaking changes
But it will help avoid bloat for now
Don't need C++ levels of feature stacking 5 years in the future
For sure 
ye youre right i read a bit more on the zig maintainers
i was conflating some anecdotes that bun discovered things for zig to fix but thats not the same thing rly
Someone should program a game in brianfuck language
Does anyone know how to fix this error message when i try to compile?
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
+ javac Main
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (javac:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException```
uhm so
it says that javac is not recognized as the name of a cmdlet/function/script/program
are you sure you didn't mean to type java instead of javac
yes
javac is the compile command
java is the run command
apparently one of my 32gb dimm is faulty
amazon offered me to replace it with another brand but.... better specs...?
since the exact same kit doesn't have replacement available
Not it
Someone else can suffer if they want to
can I ask how one fixes this issue when using nitro(js) v2
uh
Yes
It's kinda like uv for python
Faster mostly drop in
Anything you'd use npm for generally bun has an equivalent
includes a JavaScript runtime, package manager, test runner, and bundler.
seems to be more than only a package amnager
They even have like bunx instead of npx etc
It's like a whole runtime
Competitor to npm, pnpm, yarn
Hmm, looks like it may not be based on node
still just a v8 wrapper though
wait wtf
They wrapped Apple's javascript engine to be compatible with the v8 C++ API
and quack was never heard from again because the PC exploded 
i recommend sdkman
An error where a command is not recognized means that the executable is not in the same folder and is not in the PATH variable, you can set the PATH environment variable to contain your java/bin to fix this
I'm pretty sure I did that and it still isn't working
I can send more updates tomorrow but it's 3 am rn where I am
On Windows 11 you must restart
Because Windows 11 is stupid
On Windows 10 you could change the PATH without restarting
I'll try that when I wake up
pylance is high
you need to restart just the shell I think
Maybe because the function being referenced is below the reference location? Python definitions go from top to bottom as in execution order
Yeah I just realised
nope, restarting shells in Win 11 also refreshes PATH, tried it
Weird
I guess it has inconsistent behavior or Vedal is stupid
I don't know which is more likely at this point
leaning towards inconsistent behaviour
either that or microsoft realised how stupid it was
is this how I make an object type in python?
i have not touched python in a while
Looks about right
Python is just a little bit weird
And that's why I don't use it
I hate this syntax
how many array syntax stuff do I have to do 
anyways I forgot to define the handler
I want to go back to ts but there's no official docker SDK for ts 
Python syntax is weird yeah
python is ass
"If you're wanne do illegal stuff, im not gonna stop you. Especialy if it screws over Nintendo, i think thats kinda funny"
-my teacher on the subject of nuzlockes
Sil
it is inconsistent behaviour, vscode just doesn't do so until you restart it, or so it seems
yes
idk what afunyun is on about
it is a js runtime

it's a JS runtime + package manager + bundler + webserver + probably other stuff I forgot
they just integrate everything
but first and foremost it's a runtime 

Got a pixel 10 in the mail today and installed GrapheneOS
Can confirm the hardware is crap.
- PowerVR GPU which made some funky artifacts in Star Rail
- Absurdly large camera bump. Bigger than my current phone which has an actual optical zoom lens.
- Corners are too round and the camera is way too far from the edge of the display. It looks terrible when apps draw under it and I wish I could reserve that space only for the status bar.
- I had to buy the pro version purely to get 512 GB of storage. The specs aren't really much better otherwise.
If I could flash a custom ROM on my Xperia 1 IV and fix the fingerprint sensor I'd keep using it.
Other downgrades from my current phone
- No headphone jack (I do use it with my wired cans, gave up on trying to make Bluetooth sound good)
- No SD card slot
- eSIM only
- Lower resolution display
Only good thing I can say about the Pixel 10 is that it has an ARMv9 CPU and bright display.
rr
rrr
rrrr
I mean also uv for python is kinda accurate, not all the way though
it's more like an all-in-one js tool
samuel vanuel manuel 
chumi 
Why do i get the
and shuni gets 

coni 


the upper front part of the right ventricle of the heart, plural

Is it okay to create multiple github account for the copilot free trial?

can u install microsoft`s apps like excel,word, and office 4free??
icant somehow download them
its paid when i go to the site
if you want it for free you will have to do a little bit of tomfoolery to microsoft 🏴☠️
u actually need to pay for those/?/?/???
maybe there is free trial
i guess check their terms and conditions, eventho nobody reads those
ILL CHECK OK
doesnt mean it will lie down on their website on main page, sometimes they literally hide the links so they are unavailable to walk into through main page
yes, its part of office 365 copilot 365 (rip office)
you should be able to still download it tho, just with very limited functionality
OKI FOUND OUT UCAN MAKE MICROSOFT365FREE PLAN ACC
i think the only free ones are the web based ones, and there is some free stuff for students iirc.
there are also the mobile apps which are free i think
Itsmyfirst timeusing desktop😭 so irlly hvee no ideaat all
recently reset everythingso everyapp are gonr
there is a free trial, but not a free tier afaik
so basicly, use the web version or pay i think
just pirate it
or jsut dont use copilot 365 or whatever it is called now, and use some free alternative
its microsoft though

who cares about microsoft
bro idekhow to scan usbs yet dgrjkkjfff
I care
I love windows
Windows is all i know
virus risks
the mods still kinda have to enforce the rules
so no piracy
or well, dont talk about piracy here
what
there's no risk if you know where to look
Do not try to pirate it please or you might succeed and break the rules
that means you should try something else
0% brain usage
Some day.. i guess
ITSMYFIRSTTIME OK
like i said, just use the web version of word or whatever for free, or use google docs or whatever instead. no need to pirate
Just do not pick most shiny websites
i mighthaveworking onnnes but idek how to download them properly bcs idk what kind of windows mine is
is oki
okok
oh my God what are you talking about
ITSHAR TOTYPR
anyone uses c/c++/rust with sfml btw?
have you found the spacebar yet? might be handy 
ITSSOMETIMES HARDBCS I ALWAYS FORGETTO USE IT

lol
also, i do have my own struggles on thebasic stuffs
itwas hardtryying o figure out how t ope
nah, i dont need something to handle opengl context for me, i handle it myself. for the opengl part of my engine at least, i still prefer vulkan
OPEN AND THE POWER BUTTON
caps lock 
so much aura
and how do you handle it
the opengl part is the easy part cuz i have years of experience
its the modularity tha tis the issue
also, wtf is your at? 
modern art
it different yellow
its not about names
to clarify im red-green colourblind
i mean red and green
i just cant really see the difference between red and green too well
and yellow is red and green toghether
what about other colours

pink
these are super different colours, do you see them as just 2 shades of one?
i didnt know what the difference was between pink and purple untill i was 16, that pretty much explains my stance on pink
i mix up left and right
when i have to say "left" or "right" i slam random choice and then think for 2-3 sec and correct it if my guess was wrong
no, that i can see is clearly different. its kinda like that its less destinct, so when they are already close they basicly look the same. when they are very different they wills till look mostly different to me
this is a threadripper not an epyc

even 1600W
threadripper very flexible u can overclock even 2000W 
that's for both sockets no?
looks like one 9995WX can draw a kilowatt when overclocked, damn
5.8 GHz on all 96 cores 
so 2 of those and 3 5090's and your blowing a fuse already

i love my 3090's coil whine singing to the beat of how i move my mouse
cuz blender moving my viewport
can even do 3KW
i feel like you wouldn't be getting too much extra performance for triple the power usage tho
the only point is to set records
One circuit per socket 
you don't get extra much because interconnection bottleneck, voltage curve being logarithmic, and quadratic increase of power usage because current scales with volt
"yo electrician, is it maybe possible to get 8 power circuits to my basement? i only need 1 per socket dont worry"
"btw, you dont happen to have a 3750W power supply hanging around do you?"
12 of them
💀
3750W can easily be powered by 2 sockets
i said 3750 cuz thats the max of 1 circuit here
also, how do you have 12 of them? 3750w is non-standart
pc power supplies stop at 1600W afaik
im wrong our circuits do 3680W
close enough
or just directly wire them from the wall :)
They are probably not ordinary PC power supplies.
A little bit of electrical knowledge goes a long way 
Although it probably isn't a good idea
:)
ye kinda, but i dont think you can mod a normal psu to be fully compatible with 24pin atx that easily. the connector also does stand-by energy and such
If someone wants to do shenanigans, they will do shenanigans
i guess
Some basement dwelling professional "electricians" generally don't care about wattage ratings anyway. They'll shove 3750 watts through a 750 watt power supply. For two seconds.
i mean, decent 750W psus can probably do over 800 for a bit, but i doubt they could do it fulltime
You think that stops them? 
well, if you overdo it too much the psu will die, or worst case, explode
i guess it is kinda natural selection in a way then
didn't say i have 12

"btw, you dont happen to have 12 3750W power supply hanging around do you?"

My PC crashed in a weird way and I have no clue why
Can someone please tell me why the file is not working? I'm trying to open it, but it just instantl flashes and closes
import random
LENGTHS = ("4" , "5" , "6" , "7")
MUSTINCLUDES = ("podmínky" , "příkazy" , "vstupy/výstupy" , "konce", "zažátky")
MUSTINCLUDES2 = ("cyklus", "větvení")
NUMBERS = ("2" , "3" , "4")
length = random.choice(LENGTHS)
mustinclude = random.choice (MUSTINCLUDES)
mustinclude2 = random.choice (MUSTINCLUDES2)
number = random.choice (NUMBERS)
if mustinclude == "konce":
number = "2"
print ("Vytvořte vývojový diagram, který bude minimálně", length, " kroků dlouhý" )
input("Press Enter to exit...")
what is the goal here
works for me:
Yeah, just ran it in cbd and found out it works, I wonder why it wouldn't run when I opened it normally, I swear it worked like that when I was using python a few years back. I really thought I was going crazy as I couldn't find any mistakes
I'll try, thanks
If you're just trying to double-click it or something you probably need a shebang at the top
#!/usr/bin/env python or similar
they might be on w*ndows
oh ya, maybe.


https://zed.dev/blog/rainbow-brackets
usable now
micron gone

3rd times the charm
or well specifically crucial
Can't wait for so-dimm prices to skyrocket
crucial makes a lot of so-dimms, a lot more than other companies iirc 
yup
Money do be nice
"we as a forward looking company are wanting to focus on more emergent technologies"
translates to:
"we make more money manufacturing HBM memory for AI datacenters so we no longer care about regular users"
So dim is laptop ram right?
it took 1h30 but I finally finished running the tests for GCC 







