#programming
1 messages · Page 488 of 1
yeah

its not happening yet
that konii and chay
venerable wrr :o

cheers
cheers
cheers for fears
ethernet
beers for niers
pasture raised ethernt
boton
bocchi
koamaa


Oh
gʻ
Why does ur twitter have American date format
Ur supposed to hate that or smth
meoe
that's the homegrown crust of a meme well traveled
paypig
Man I sure do love it here in #incoherent-babbling
cooperative or preemptive
cipher cipher
2perm4u
not gpl
Sam having a server 
basically proprietary
idk
if it is not gnu for anything linux-wide
well you see, i have found a 4090 for sale for 2000 euro.
but, said 4090 just so happens to have a server with 2x Intel Xeon Gold 6138 and 128GB of ram attached for free
warm
"No officer, I just pick up this rope. It's just so happen that the goat followed" 

well, im buying the server with 4090 for 1850, and then im selling the 4090 for 2000.
and then i have a free server
🐧
konii seems delerious
mdy
meow
ufgly
Afunyun ugly? 
sometimes i wonder if konii suffers from strokes, or if this is just her
konected?
You better watch out Sam
Konii is 1 step away from Belgium
making a c into a k does not make it dutch 
disobedient
It makes it KDE 
verbonden aan nederland
sam eat more glue
idiot salesmn
ran out of glue
I forgot about those lmao

good morning night city
what the fuark



samuel ary
samuel simple
fair
phuu

Man, time to sleep
alita battle angle
goodnigh incompuable
jelly toast
nrr baguet nr rwx

rw bagyet
is konii also incomprehensible to non ESL people?
she's extremely comprehensible in all languages
approved for all ages too
waow
im not an elf
rated E for konii

konii is rated A for ADHD
rate b form
rated II for konII
the knights that say nii
if konII, where is konI ?
kni<-
ate
knife<--

🔪 <-

constantinii


sha
good thing im not signed in to use them then microfost
sh
shaw when 
shawl
þ
thicc
þicc
turkiye
england
gomenasai
amsterdam, the dam of the alster
bohemian rabbit sody
:O
i sing
fa la la la
🎤
ueueueueueeeueueureeuyeeeeeeuee


what should i put on new server?
contain itself
ye
infinity

those poor 40 cores simulating 40 cores simualting 40 cores simualtting 40 cores
nuu toplet me in tohe door
cookiee
NO
me not open

jokes on you im colourblind

good attempt but
schild en vriend?
it will be hard to ram a door on the third floor
Harry Dresden
alrtt jem
i miss v2
glu factory princess
just fre
wrr
im not horse

alway where is glu never how is glu
born that eway
i feel like my autism communication skill is a tier 5 while you're on tier 10
born to glu
tear 5 card
bad hand try again

balatro lose sound
glue factory princess should
gaslight herself into thinking everything's fine

waowh
can you unglur a glue horse?
glu coppe
it highly unethical to make a horse out of glue

ur jelly
can you soup a glue?
ust is c c all same
deglulu
it all out
unsafe too
corn
google ordero more pixle
does your blue screen have vulkan support?
vulkan support lives in gpu driver
same whjy are you artsit tag
not generic
but can it show the wanted idaplybuffer
spinning tutel low quality dudududu

im bad at art, but i do the art
takinot
most of my arting is spent art on schoolwork

betrothed
ppt gtaphic design
not ppt sadly
Update ready to Install
apt
-get update
woah oh woah oh oh

i do make some banger powerpoints tho
i at least learned something useful in middle school
3.1415926535897932384626433832795
i only remember till the 9
2.7128281 uh
me not remember
euler?
true
2.7182818284590452353602874713526624977572470936999595749669676277240766303535
47594571382178525166427427466391932003059921817413596629043572900334295260595630
73813232862794349076323382988075319525101901157383418793070215408914993488416750
92447614606680822648001684774118537423454424371075390777449920695517027618386062
61331384583000752044933826560297606737113200709328709127443747047230696977209310
14169283681902551510865746377211125238978442505695369677078544996996794686445490
59879316368892300987931277361782154249992295763514822082698951936680331825288693
98496465105820939239829488793320362509443117301238197068416140397019837679320683
28237646480429531180232878250981945581530175671736133206981125099618188159304169
03515988885193458072738667385894228792284998920868058257492796104841984443634632
44968487560233624827041978623209002160990235304369941849146314093431738143640546
25315209618369088870701676839642437814059271456354906130310720851038375051011574
you got a digit wrong
Never
Real chad uses Zig
I'm baffled by Zig
people act like defer statements somehow make it more safe than C++, when it's just RAII but crappier
I like the non implicit allocations
Zig has a debug allocator that maintains memory safety in the face of use-after-free and double-free. It automatically detects and prints stack traces of memory leaks.
so like
GWP-ASan which is used in Chrome's C++ codebase
They have a bunch of built in allocators
Comptime is a great feature too
Crazy how rust still doesn't have something like comptime or constexpr yet
Yeah that's one my major gripes with Rust right now. I like my compile-time metaprogramming and Rust is severely limited. Some of the unstable nightly features get it "good enough", but those have crashed on me. 
The massive binaries arent great either but its more forgivable (outside of embedded)
true also
Would like to use it more at work but we try to use shared dependencies on the systems I develop.
Real chads just write pure LLVM IR code by hand so u don't need a language at all
This was the one
https://github.com/rust-lang/rust/issues/76560
The constraints to actually use it are horrendous too
Good one
I honestly find rust harder to read and look at than any C-like language
(Unless ur getting into modern C++ territory)
writing my vm in ocaml right now and its some of the most fun i've had with programming in a while
its just 700 lines of code but it would have been more like 4000 in rust
Idk why they went the route of having impl something outside of a declaration
It pisses me off
impl<const N: usize> Display for DigestArray<N>
where
[(); 2 * N]:,
{
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
let a = to_hex(&self.0);
f.write_str(unsafe { std::str::from_utf8_unchecked(&a) })
}
}
dafuq you mean where [(); 2 * N]:,
like, I know it just means that 2*N is a valid size for an array, but really?
impl<const N: usize> From<&GenericArray<u8, typenum::U<N>>> for DigestArray<N>
where
typenum::Const<N>: typenum::ToUInt,
<typenum::Const<N> as typenum::ToUInt>::Output: ArrayLength<u8>,
{
fn from(src: &GenericArray<u8, typenum::U<N>>) -> Self {
DigestArray(*src.as_array::<N>().unwrap())
}
}
And of course interfacing with old kinds of generic code is fun
nah, if you can, use zig or rust
(just rust)
i hate making stupid errors in cpp
Don't have a reason to
like i figured out that function i was using contain long living bug, and i just never used force async to get bad function cast
there reason
compiler warn you about shit you are doing
c++ give a lot of freedom tho
So can any static analysis tool
The only thing rust has going for it is the borrow checker
nothing spotted it
No one can convince me otherwise
for borrow checker you need lifetimes and mutability rules
i with i would have matching pattern in cpp
Imagine if the C++ commite wakes up one day and decides to add lifetimes
so bored by writing
auto option = some_func();
if(not option){
//continue or return nullopt
}
auto variable = *option;
(Despite them never settling on any proposal related to it)
thats why use rust
cuz c++ need extra 15 years to get borrow checker
c++ is nice, i love c++,
but i starting to like rust more
If im not in a situation where it really matters then na
Especially with how horribly ugly it is to look at i just cant find a way to enjoy it unless im forced to for a job

Its syntax is up there with VB.NET
And even with all those horrible choices it still manages to have implicit allocations somehow
maybe just overflow error? if it can check it
I made a prototype which allowed using std::expected as the return type for a coroutine, so if you co_await an std::expected either the co_await unwraps value, or the error is returned. That was kinda neat but it always heap-allocated the coroutine stack and I still haven't figured out why it crashes on GCC builds but works fine in MSVC and Clang.
Need pattern matching and ? operator.
wait what
it's not even a feature complete language wtf
it really isnt hard once you understand that it just means you can do
(*(*f[0])())() to f
It's not that bad
it have const function
i heard
never seen or used tho
Compile-time constants, compile-time blocks, compile-time evaluable functions, and raw pointers.
I love hacky looking code like that in languages
And send it where? 
Compile-time evaluable functions
to the sun
template <class T, class E>
class ExpectedPromise;
template <class T, class E>
class ExpectedPromiseAwaiter {
public:
using optional = std::optional<T>;
template <class... Args>
requires(std::is_constructible_v<optional, Args...>)
constexpr explicit ExpectedPromiseAwaiter(Args&&... args) noexcept(
std::is_nothro...
Its still not fully stable with a bunch of supports still missing
contexpr c++11 and c++23 is different too
Dissapointingly few things actually work in Rust const functions.
Thats because all the good stuff isn't done yet
what about float <-> double in contexpr now?
is it still broken?
Or is stuck in nightly
wrr
wrrrr
fixed
meh, I don't think that's a fair statement
I'm just like 50/50 on Rust/C++ for personal projects.
rust?
more like
bad
haha get it?
because it's bad 
Rust needs C++ otherwise it won't be able to rewrite anything
Then what would the devs do
few things work in c++26
i do not enjoy programming in rust
is it even out yet
No
crazy it doesn't work then isn't it
its not useless as a systems programming language, but its design is counterproductive to expressivity 
true!
Its design is to be different
unless you shoved your hand in the sand for the past 50 years
if you want systems programming with the guarantees of rust, its better to just get your c program formally verified 
which to be fair
but not c++ coroutines tho
most programmers have
explain rust user behaviour then
Seems like they make some choices just to do something different tbh
like what
rust is c that compile time verified
and zig didnt? 
you only need to manually verify unsafe
and that is a big difference
like
compare Option and std::optional
you cant say something is weird if you only ever used c family languages
languages arent made for you
fair judgement requires broad experience 
Java, JS, TS, Go, good amount of asm
ye so c family
you basically know 1 language
if by c, you mean, its imperative, then ye
Didn't know Go was in the C family
My mind is fucking blown

are you really going to tell me go is so different from c
please, go is just c with garbage collector
Clearly u haven't used or heard of the language beyond name
go is basically c but with gc and async
ye
every imperative language is just c with extra syntax sugar 
if go seems so different from c to you you really dont have much experience with programming languages 
rust is purely functional btw
it doesnt even have objects support
and i will have issue writing framework i want in rust, 100%
what are you talking about 
masterful ragebait
my opinion of #programming about to drop tenfold in just 5 minutes of conversation
Almost like its a good standard
industry likes familiarity
thats it really
imperative languages are used because theyre so simple 
Simply better
simply the most naive way of translating intent to an executable
very easy to write compilers for
hence c
hence decades of imperative languages
like, i not think that trait system is oop system
it have dyn but that just vtable, you cant have inheritance with private member values
or i not found it idk
you have to impl trait for class
and can super_trait : trait
but not class : class
there even no such thing as class
only struct and enum
Though its because LLVM sucks to link to
words have meaning
please dont say "purely functional" without knowing what "purely functional" is
gah, ok, mainly functional, force to use functional, prioritize functional
purely functional systems programming languages 
There are ugly workarounds for things
its hard to write functional without gc
Partially why I dropped any attempt to pickup rust for personal projects
all rust does in the way of functional is, uh, iterator chains, option/result combinators
which are fun and all
yeah, there no such thing so ...
rust is very imperative 
if you use it this way
haskell doesnt exist 
rust is very imperative 
rust puts many barriers between the programmer and non-imperative code
because of no boxing by default
boxing makes life easy
i love boxing
boxing my beloved
Haskell is merely a figment of your schizophrenia
Haskell users when you tell them that useful programs need to write state: 
Cow
get rid of it
Boxing allocation moment

haskell programs famously cant have state 
what is the state monad
Does anyone still unironically write haskell

haskell is gaining popularity if anything
How
I get like 30 haskell package updates on my Arch system everyday, so apparently
So like ruby and rust
mad finance people and lesbians
Ive thought about looking into D
apparently postgREST is also haskell
Man just use F# or something if u need a functional language in 2026

Nursing home coding nights
btw
what spell check you are using
ocaml/f# are simple languages with very few abstractions
haskell has lots of tools to let you abstract away common programming patterns
i used side street software
but switched to codebook for some reasons
Is ocaml used outside hobby programming these days?
I haven't seen it used in anything serious personally
first rust compiler was written in ocaml
there are a few nixos repos written in haskell too i think
Sounds about right
should i put nixos on the server? 
why not
rocq is written in ocaml
imagine compiling rust compiler from assembly only
like starting with something like just assembly translator
Didn't rust steal alot of their syntax from ocaml?
wasm reference interpreter is written in ocaml
ocaml is simply good lamguage for writing compilers and interpreters 
kind of
rust is way more c than ocaml
is that like a warning or a challenge
Feels barely anything like C but I dont know ocaml like that
ye as i said you dont have that much experience with languages beyond c family
I dont use the more exotic or dead languages

Im not exactly eager to learn cobol in the year of 2026
the banks demand more slaves to the mines
i dont use any language unless i can help it
In the end most of us are just writing LLVM IR
So maybe we are all writing the same language in spirit
every single one of my projects is an exercise in finding the optimal language for writing it in as few lines of code as possible, then giving up and going back to langdev
(Unless ur using gcc)

Im hoping I'll have some more time to screw off soon and do more side projects

Most recent thing was just a dupe file checker for my pc using hashing
hello
robo dog chomp
clangd go brrrr
Praise Ra, finally the sun is shutting down courtesy of a thunderstorm 
@ queenpb

;ohidontsee:

!felloff

Client WebSocket ping: 14ms
Discord API ping: 167ms
🍪
Om nom nom
You've given me 37 cookies! | I've received 317441 cookies total!
!bwaa

you wrr
o
!nothing
Nothing ever happens, all-in
aww, thank you~ ( ◡‿◡ *)
fasm macros are very convenient for making a dsl
unfortunately not perfectly optimised 

Client WebSocket ping: 14ms
Discord API ping: 167ms
would have to save and restore registers

i was thinking about how
a good way of constructing assembly programs would be in units that use all available registers
by composing them
but this approach is probably very limited
they done sent the sun to us we are turning into a barbecue
please take it back
terrible idea
if all get used and you need one more you cooked
so in x86 they're split off into two registers type
scratch and preserve
scratch is well scratchpad where you do your rough work and assume your data will be lost by the next instruction cycle
preserve is where you need to put your numbers for longer
however in preserve they must be stuffed to the stack first
then what are you trying to do


im guessing you want to pass off the register directly to the next function without having it change location
but
isn't that just
tail call optimization
surely im being dumdum

im not talking about functions here 
Chay is just using the computer however she wants
Not bound by the so called convention
It's like that one dude who makes a game for UEFI
Or the other dude who ran some program on a computer WITHOUT a RAM
Utilizing only the EEPROM and CPU cache
if you dont need a common interface for things, you dont need functions or a calling convention
that was just a random idea i thought of for composing programs, dont think of it as anything practical or something i plan to do
See? This is SIGBOVIK material 
the stack cries in horror
I mean cryptographic hardware does use what you're describing
truly one of the ideas of all time
Chay, konii, you guys should join the association for computational heresy 
neurocord club of slaanesh's techpriests
i cant decide if im having fun or in existential pain

I'm uncomfortable looking at this im going to go back to my class
this is too normal for now
sadly
the working part is a functional language with combined strict and lazy evaluation
that can be easily extended with deterministic parallelism thanks to that
the part i'm working on that doesn't work is a second embedded language based on bidirectional pattern matching
for making interactive user interfaces
come on the ram prices aren't this bad
🍪
Om nom nom
You've given me 10 cookies! | I've received 317443 cookies total!
aww, thank you~ ( ◡‿◡ *)
how???
Magic honestly
What does it take to run a PC without RAM?
Start Learning Cyber Security for FREE with TryHackMe: https://tryhackme.com/PortalRunner - Use code "RUNNER30" to get 30% off an Annual Subscription (Limited Time)
Thank you for watching!
Join our Discord server: https://p2r3.com/discord
Schedule a one-on-one for tutoring or consulting: https://learn....
incredible bait
2+ hours wasted just for cheap bait
The reply to every tweet Sam Altman makes is a legion of bring back gpt 4o schizos now lmao
That model really was a cognitohazard
it's still available over the api
if they like it so much why not go figure that out
ask chatgpt how to get 4o goddamnit
it'll tell ya
Mostly abusing the fact that BIOS loading has a cache as RAM stage
Coreboot is already black magic to me
Lmao
Its an LLM trained on 260B tokens of pre-1930 text
They have a demo up too
Soul
think of it as identity fraud
LLM trained on only data from before electronic computers existed
the coreboot code performs identity fraud on the l1 l2 cache and brainwashes the cpu into thinking that the cache is now its ram since the ram hasn't been potty trained yet
then it uses the fake id to buy beer and train the ram
then copies said cache into ram and does normal bios things
...... but im pretty sure you already knew that
uhhhhhhhhh
fuck
theres also other stuff like how coreboot puts a plastic bag to shut up the southbridge and nmi and smi so no irq are fired
One thing i did prefer about 4o was it was less likely to produce a contradictual sentence.. ive had the GPT5 series say something like "this isnt how thing xyz works, and because of how this is how thing xyz works we can do zyx"
Also Cache as RAM hasnt been truely exploited yet.. i still wanna see that Epyc with 1.3GB of L3 have windows 95 (or XP) installed to L3-as- RAM-disk and run with the same L3 as RAM.. and maybe windows 10 or so aswell but loaded from disk, if possible.
Windows probably can't do that, you'd most likely have to do Linux
Probably not a big deal vs the overwhelming historical data though
Given it couldn't tell me what a computer is in the modern sense
Cache-as-RAM (CAR) is no longer a supportable feature in AMD hardware.
Neither Windows nor Linux will work here I think
C/C++ isn't hard, just spent more time on it

thank you i had no idea
as someone who has never used c or cpp
ever
in my entire life
even once
Np cus I don't actually knows cpp too, can't write cpp witout a docs
Cus I'm a lua dev
Good
i used the most heavy sarcasm i can convey without /s
Me 3 years of lua and don't know how to override class in python without docs lmao
c is one of the simplest imperative languages to read and write
and cpp is a relative of c with a bigger standard library
generally easy to read and write provided the code is normal
it never is and never ends up being
I don't even memorize or put it in my head while I'm coding

@claude explain this code to me
And I don't even know how am I coding
Yes speaking of 3 years of exps
Also I have no idea what I'm reading
Idk about ur query but Claude is currently doing the Obama medal meme for me
doesn't any "unofficial" api cost the same
How did I made this
That "normal" do provides a heavy lifting
and is that like vertex and bedrock and stuff
It's kinda humbling that a dev can't memorize everything lmao
If you write code that’s already looks obfuscated in editor it sure as fuck won’t be readable to reverser? :)
I was discussing api wrappers to use user accounts as providers so I don’t have to use per token API billing
its actually very legible after the preprocessor is run
and the code is very normal too
the asm i mean
the macros are just scary to look at
you know anthropic doesn't allow that per their tos and will actively resist and sometimes even ban your ass right
None of them allow it
However I can do it manually, so I can do it automatically
yes the fuck they do, copilot actively supports that, codex turns a blind eye, glm/kimi have "coding plans" made to be used with 3rd party harnesses,
what else
No those are cli harnesses for agentic coding
I just want all of my ai accounts in one user interface
With all of the features of each
Mostly deep research
Do you guys think handwriting biometric is good for authenticating document signing?
i'd argue wrapping the apis that the web versions use is worse
awawawawa
awa
ttast
as in, comparing handwriting with past samples for authentication? 
sounds
insecure
Was just watching a video about Nintendo and then had the thought that Mario odyssey and breath of the wild are “modern classics” then realized both could be in middle school

Wanna feel.older?
Sure!
Yep
I really wish people would use password manager like at least BitWarden

The Playstation 3 and Xbox 360 are now retro consoles
password sharing bad
The PS4 is older than smart watches
Oh and the kicker. Windows 10 was released when Obama was still president.
HelloWorld = function(f, s) f(s or "Hello World") end
HelloWorld(print)
Lua is so funny
@mighty thorn I hope you enjoy those facts
You can pass a function without a problem
I remember watching him on tv as a kid
He’s always been my favorite because I think he is very charismatic and funny and also nostalgia
I regret backreading, hello chat
Hello, how are you today.
Most
of programming lanuage discussions


Oh I thought it was all my facts meant to make you feel old.
with free server as a bonus
I'd say doing well 


what kinda server
I'm going to pretend I didn't see the messages and let Sam explain
I wonder how feasible it is to make a game based off of the Alan Becker animation versus animator videos but on the actual real windows desktop
Anything is possible
2x Intel Xeon Gold 6138
4x32GB ddr4 ram
4090
HPE E208i RAID controller
4x 1GbE onboard (Quad Gigabit)
and redundant 1700W PSU
for 1850
euro

the 4090 alone is worth every penny
Thats actually a super solid server.
Those xeon golds o think are like 200ish each too
Pffft nevermind
6138s are 15 bucks
12 memory channels, 4 sticks 
ye but 4090s are 2.5K

and 128GB of ram is also 1K
The price or ram has made me want to go back to DDR3 dude 
the cpus themselves are cheap, but when you factor i the costs of the mobo and the psu and the case and stuff
its still pretty expensive

i could upgrade pretty cheaply i guess
pdfsam 
yeah I'm building a pc from 0
and it's miserable
I need monitors and keyboard and mouse too
all that shit adds up fast
get some xeon platinum m's with optane ram
Depends on the MB
If we imagine vibecoding as constructing a skyscraper, where you have a blueprint designer, a construction team, and an investment firm, which roles (vibecoder, user, ai company) would you say each aligns with?
Random hypothetical I thought of
it's going to collapse
I would not trust a house constructed by LLM
the 128gb of ram is the shit im getting with the server already. its only 4 sticks tho so i guess immissing out on the extra mem lanes speedup
what's the point of going deeper into something that's not going to yield any results
Naah, if the work is spread across different CPU it will be slower still
ask Ubisoft man
So if it's dual channel 2 socket then 1 stick on each channel is theoretically the most optimal
bethesda seems to be doing even worse
true. idk how that works in terms of avoiding that
CPU pinning I'd imagine
should usually be quad channel at least
“Yo Mike dude would you rather have a million dollars or, like, any single wish bro?”
“Well Brad, this question is simply not worth considering. For one, the chances of legally stumbling onto a million dollars are astronomically low, and secondly, given genies are not believed to exist, I’d have to be a dying child to obtain a single wish, and even then that ‘wish’ would likely be very limited in scope and the funding for it would have to come from somewhere. In conclusion, I have to deduce that you are intoxicated and thus I will be terminating this conversation”
unless truly ancient
Considering it has a 4090 attached to it I don't think it is the case
yee
its 12 channels
6 per
"DDR4-2666" kinda low, but i guess with this many channels it ends up being faster
ECC 
Intel® Optane™ Memory Supported ‡ No
Naah, slow is slow. But like, imagine carrying a basket full of data slow vs a truck full of data


what if we wanted the optane support
what if replace cpu, receive optane
wait this is fire can I get a tldr on what you're trying to achieve
would need to upgrade to xeon gold 6200 or platinum 8200, then optane would work
how does optane compare to normal ram even?
Easy price to pay for salvation
Not even close IIRC
It's a computer and I am building a bare metal game engine for it
fixed pipeline gpu? 
does blue count
Feedback pls, my room is cooked
clean
















normal
expensive
