#💽Programming Chat v2
1 messages · Page 66 of 1
AND NOT TO MENTION
you played on the english version of ntot
which we both know is inferior to the jap ver
this is true but that only changes the translation
Not the actual story or gameplay

🤢
Deltarune in less than a month :3
DEVIL CONNECTION ONLY LIKE
150 TOMORROWS AWAY
if you really think about it
toby fox is just bayachao if they were from massachusetts
Toby Fox is bayachao but actually sane and normal
dies
Bayachao is proof that some ppl shouldn’t be on the internet
nah
bayachao is proof we should give babies ipads
so precious ..
@lone sky IF YOU HAD CHILDREN
would you make them
- draw for 20 years
- get a degree in art
also expose them to the internet at 1 year old
LOL
Ew telegram
Round 3 of Crackhead EDM Soccer with @soarozz. no bgm
song: Daft Punk - Voyager
Second Channel: https://www.youtube.com/user/frannintendo64
Twitter: https://twitter.com/Xarlable
Discord: https://discord.gg/ZF4VCmkwZ7
#ytpmv
THIS is real music
augh this sucks
lame
NOW THIS IS REAL MUSIC
doohickey corparation i have uploaded this masterpiece to youtube for yours enjoyment
not mine stop asking
need me a bayachao cover of this ngl
😭
QUANTUM??
what bread server lib probably looks like to the average dev ngl
It doesn’t just look like that, it IS that
nah
you just gotta be enlightened
my stomach hurts so much
i think.. im gonna have to drink... water... for real..
I think this is copium cause your code is bad
primeagen deceived ^
Have you not pushed your graphics stuff to BSL
i have... why
I don’t see the graphics folder on BSL GitHub
Y not
Gonna stage you
no that's the tesseract mainframe
from the hit game TRG (The reactor Game)
bayacaho art gives me brain admage
Yep we can tell
mbm
Bayachao is brain damaging
headhce,
I also feel like most of the code in init could be refactored into BSL https://github.com/Bread-Experts-Group/system_instrumentor_microclient/blob/master/src/main/kotlin/windowing/Win32Window.kt
It just seems super boilerplate-y
init ..?
what makes you say that
aawwwwww
idk this just seems super boilerplate-y
could refactor it under a .createWindow method or whatever
none of that has to do with window creation but i see what you mean
the biggest parts of FFI use are structure creation and upcall creation
i do believe structures could probably be minimized using classes
unsure about upcalls though
could probably make some convenience methods/functions for that then
but for me to understand how your FFI junk works I feel like I'd need to see the BSL Win32 code
the xHandle.kt and xLayouts.kt "classes" would probably be easier to start off with understanding
and even then I have no clue how I'd interface with Cocoa or Carbon or Quartz or Metal or whatever
in what file(s)
for example in Kernel32Handles.kt
look under the win32/ package
oh ic

☣️
so youre basically....loading a library in....and getting function references out of that...and calling them
basically yeah
it would be a lot easier using a library...
not enough cargo.toml
// Register the window class.
const wchar_t CLASS_NAME[] = L"Sample Window Class";
WNDCLASS wc = { };
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.lpszClassName = CLASS_NAME;
RegisterClass(&wc);
// Create the window.
HWND hwnd = CreateWindowEx(
0, // Optional window styles.
CLASS_NAME, // Window class
L"Learn to Program Windows", // Window text
WS_OVERLAPPEDWINDOW, // Window style
// Size and position
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, // Parent window
NULL, // Menu
hInstance, // Instance handle
NULL // Additional application data
);
if (hwnd == NULL)
{
return 0;
}
ShowWindow(hwnd, nCmdShow);
you call that hard?
this isnt what we're on about
lookup C++ dynamic library loading
ok but
if you used cpp you wouldn't need dll loading
because you'd just
create the window
i spot a naming inconsistency
!!!
and link a binary that would be useless?
also again
JNI is slower than FFI
libraries and binaries that you use are not useless....
the horror
gn
RUST ❤️
Svelte 🙂
TypeScript 🙁
HINSTANCE hGetProcIDDLL = LoadLibrary("C:\\Documents and Settings\\User\\Desktop\\test.dll");
if (!hGetProcIDDLL) {
std::cout << "could not load the dynamic library" << std::endl;
return EXIT_FAILURE;
}
// resolve function address here
f_funci funci = (f_funci)GetProcAddress(hGetProcIDDLL, "funci");
if (!funci) {
std::cout << "could not locate the function" << std::endl;
return EXIT_FAILURE;
}
what about javascript
that's not hard
javascript 😖
f_funci funci = (f_funci)GetProcAddress(hGetProcIDDLL, "funci");
horrible
sleep
not to mention you have to do all that error handling and its your ass if you get something wrong there
something you should be able to see as a rust user
idk I don't use rust ffi
it only shows up because of this one config file that doesn't support typescript 😭
i mean safety wise dolt
oh true
ours is one line, handles the problems automatically, and links almost seamlessly with java
oh yeah p.s.
when dealing with C++/C/ObjectiveC you don't need to worry about ABI (for the most part)
Linker.nativeLinker() manages that for you
oh neat
I'm just not sure...how to even........do...macos graphics.....
without like....swift appkit
burgers
so true
As noted above, the specific canonical layout associated with each type can vary, depending on the data model supported by a given ABI. For instance, the C type long maps to the layout constant ValueLayout.JAVA_LONG on Linux/x64, but maps to the layout constant ValueLayout.JAVA_INT on Windows/x64.
https://github.com/hakusoda/ribbon ribbon ❤️
omg...
boooorring
this commit is awesome
being clear about what's in a commit
rather than making four commits with <u> as the message
use english
<u> is plenty descriptive
no it's not
if you read the files its clear what its for
but you aren't a SMS developer
so of course you wouldn't know!
the idea is that you shouldn't have to read the files to get the gist of what a commit does
<u> IS the gist of what the commit does
❌ <u>
✅ fix(HTMLUtil): Fix closing <u> tag
<u>
and what if i find myself in a situation where i make a commit so large its not gist-able like that
you DO realize you can...amend commits (if you haven't pushed them) right
and rewrite history?
skill issue, make smaller commits
i push ALL my commits immediately
@spare quartz hm..
well again
these functions look safe
reminder that you are technically both not and are writing C
in some places it might be as bad as writing assembly in other places it might be just as good as objc/c++
huuh why Result<Ref<...>>
why not just Result<...>
aera you made me realise
there is literally no point to those two functions being async or returning a result
why is it like that 😭
doohickey syntax
LOL
also the ref exists because
read/write guard
pub fn roblox_account(
&self,
link_id: u64
) -> Ref<'_, u64, RobloxAccountModel> {
self
.roblox_accounts
.get(&link_id)
.expect("Unimplemented!")
}
ohh ic
why not just return the RwLock directly then
well..ig that would move it
ref is from a library
ic
anyways GDI development time
need to figure out what is needed in a 2D graphics library
idk I just use the normal rust HashMap
this looks kinda silly though
what's wrong with it,,,
reminds me
is there a datastructure to do something like this i wonder
me when I set the "alg" header to "none," remove the signature, edit whatever claims I want, and then send it back
(the system will probably accept it)
idk the idea of giving a client a thing that the server uses to control what a client can do is fundamentally flawed imo
because you cannot trust the client
permissions need to be held entirely and exclusively on the server
what is a jwt again and what do it do
it's a new "authentication" thing that's an alternative to managing session state in a server-side database
it does validate the algorithm
JSON Web Token (JWT) is a compact URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is digitally signed using JSON Web Signature (JWS).
mbmb
JWTs are fundamentally flawed
because you're giving the client the thing that contains and controls their permissions
versus a cookie where it's used by the server to look up their permissions in a spot the user can't see
oh the thing is
i've never actually been using jwts properly and don't know why i still use them
gg
the only field in ribbon jwts is a session id
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
// Set text color and background
SetTextColor(hdc, RGB(0, 0, 0));
SetBkMode(hdc, TRANSPARENT);
// Draw text
TextOut(hdc, 50, 50, "Hello, GDI!", strlen("Hello, GDI!"));
EndPaint(hwnd, &ps);
uh oh
STATUS_HEAP_CORRUPTION
what kind of authentication are you fond of
for sessions? the classic cookie method
define the classic cookie method
you send Set-Cookie
client says Cookie back in future requests

user logs in via something (username + password, discord oauth, whatever), server creates a session cookie and assigns it to that user, client sends that cookie back for every request
server uses cookie to look up user perms, assigns expiry time to cookie
the difference is that the JWT contains the actual permissions that the server uses and that gets sent to the client, the cookie is basically just a "key" that the server uses to look up permissions and stuff stored on the server
tbf the cookie can be anything
but generally its just some hash the server made either randomly or off some data (like discord tokens having your email)
i wish there was a list online that said what .dll or .o implemented some .h
this is why we use libraries like opengl or sdl2...
those two suffer from the same issues
windows loves their *32.dlls
yoo
text
its very lazy when it comes to painting
what the L
ughhh
interacting directly with OS windowing libraries is so bad
I still really don’t see the benefit of the control
The pain to control ratio is just way too high
well
sometimes you need to give yourself life altering disabilities in order to make progress
just found the best test sample
Sometimes it’s 100% avoidable
not avoidable
Be normal use a library.
😭
no, u not using a library is making u tired :3
When I wake up
Please say the following to me
“DDB BM”
?remindme 18h
Description: Set a reminder
Cooldown: 5 seconds
Usage:
?remindme [time] [reminder]
Example:
?remindme 2 days It's tournament day!
I am not sleeping for 18 hours!
you might
you stayed up all night
go to bed stop posting stupid dog
thend ont
THEN SLEEP
it’s an amongus meme…
Ye ok ur out
Sussy
STOP
it’s 11 am
Does he know this didn't work
yes I know
Lol ok
Is the content insufficient or is there insufficient content
Ain't that the same thing
If the content is insufficient then there is insufficient content
well it's like
idk
one is an adjective phrase
so you're modifying "content" with "insufficient"
the other is saying "the content is insufficient" literally, or "there is a lack of content"
oh u were talking about grammar?
yeah
ughhhh sometimes I dislike nix
gotta wait on someone else upstream that's providing me kernel builds to fix their cache before I can build anything
otherwise if I try to build without that, I basically have to rebuild a lot of the other parts of the system
o ok
@lone sky raaagh
queue atp saying that if you grassroots everything then this wouldn't be a problem
nix is devious work
as I always keep saying
nix follows a wildly different paradigm
nix is the best solution for all the problems caused by using nix
something something dependency sandboxing problem
and the situation with my laptop is doubly special because it's an intel macbook that uses apple's special T2 hardware security chip
nix solved it already and everyone else is trying to catch up is what I was told
which MEANS you need special kernel modules
and since people dont normally like building kernels on their laptops themselves, someone is kindly using their larger computer to build and cache kernels
that may be the worst option of the bunch to have rn
get a different laptop!
simply build the kernel and keep it like that
whats ur macbook specs
I assure you a comparable windows machine is cheap as hell
4-core i7, 16gb ram, 500gb ssd
4 cores is crazy
I actually bought this thing used for less than 1k
yea thats like 200 bucks
well 8 threads

hell yes you can
used or new
used obv
its literally just cosmetic damage
ehhhhh
especially if you get it from corporate
it depends on what kind of "used" you get
I have 512 gigs and 8 gigabytes of ddr5-5800 with 4.8ghz (all 12 cores!!)for 400 bucks
the companies take good care of their work machines
and theres so much used business tier laptops out there
for cheap as hell
then complain about budget issues.....
theres macbooks with 10th gen?
i7-1068NG7
this is a 2020, right before they went m1
why did you buy a macbook in the first place 😭
but something like this will be solid anyway
usually these business laptops are super stable too
I've used one of these used p52s laptops for 3 years now
thinkpads are superior
especially the business/corporate tier
they also love to throw out hundreds of them onto the used market
for very cheap
Cause it was used and I already have Apple products
BORN TO PORT FORWARD
MINECRAFT IS A FUCK
Host Em All 1989
I am server man
410,757,864,530 OPENJDK ERRORS
I HATE YOU MINECRAFT
or something like this https://www.ebay.com/itm/196518216017
macOS mostly but I do have NixOS on it too as I was discussing
this is 200 bucks
It’s 200 bucks but it’s inferior to what I have now
yea but its a windows machine
I’ve also had this MacBook for at least 4 years
Probably closer to 5
This isn’t a new purchase
Still has worse specs
🤷♂️
are you sure you're actually taking advantage of the specs you currently have
im just sayin, used business class laptops that will work for day to day work (unless you 3d model or something) are absolutely not expensive
I again also have no money
Yes I am
what for
parking fee 😨
so I open 1989?
Well the times when I DO program and have multiple things open at once, building programs (especially Nix stuff or when I was trying to make a gcc cross compiler), etc
are your parents sponsoring any of it or are you making the money yourself
dont tell me ur in debt
If I wasn’t then there’s no way I would be in college at all
Yeah and depending how my internship this summer goes I may have a full time job after
Small company doing IT
pay is good? 😁
Not doing SWE or anything, those jobs are impossible to get especially without connections
It’s meh but it’s decent for an IT intern
I’ll have a decent bit of money left over after rent so
I’m not complaining
you'll be surprised. small company means IT can often end up doing some SWE
or well, depends on what you mean by small
if you mean like 30-40 people
then yea you can def end up doing software
(if its a software company)
I start next week
try to enjoy it
I’m looking forward to it, I got into the place on a connection and they seem super chill
And I’ll be working with the guy who connected me and he’s also great
awesome
Connections are really the meta honestly
ye
If you don’t have a connection you’re basically Sisyphus
going to college is mostly about connections for me anyway
Yeah fr
you can learn all of it yourself if u wanted
that doesn't really matter
but yea at my last internship it was a small software company and the culture was great
8:15am standups every day tho
LOL
at least one nice thing abt scrum/agile/whatever is that the release cycles are SUPER short
so stuff you work on gets out into a public release very quickly
we had 2 week long sprints
and a new release end of every sprint
so stuff you worked on would hit prod every 2 weeks which is kinda neat
they used bitbucket though 😬
Bitbucket lmao
Probably used Jira and Confluence
Wanted to keep everything inside Atlassian cause they were paying for it
Small companies seem to be meta too because they’re more likely looking for workers
and don't have ridiculous 20 stage coding interview processes
lol yeah last time I used it
Oml tell me abt it
LOL
Though I really gotta grind some more leetcode
My brain just doesn’t take to solving algos that easily
the most valuable thing to learn from practicing many of similar problems is just
The only reason I got an A in that class is because the final had a massive curve
how to approach X problem
and common solutions/approaches that apply to many of them
goated
though that company introduced me to https://www.gitkraken.com/
cuz they paid for pro
I thought it was kinda cool
but it doesn't really do too much
🤷♂️
oh there wasn't nearly this much ai crammed into it when I used it
lol
AI is crammed in everything now
I used gitkraken a little too but tbh also barely used it
The git gui in VSCode is decent as is magit in emacs and also just the git cli
There’s also this that looks neat https://github.com/gitui-org/gitui
yea the vscode one is fine for what I need it to do usually (visualize the tree), otherwise the cli is fine
and ofc u would link a rust one
fwiw, I learned a lot of useful stuff I didn't know about git from this
Scott Chacon's FOSDEM 2024 talk on Git Tips and Tricks and why he's working on GitButler now (https://gitbutler.com)
Scott talks about:
00:00 - Introduction
01:06 - About Me (well, Scott Chacon)
02:36 - How Well Do You Know Git?
05:09 - Our Agenda
06:25 - Some Helpful Config Stuff
09:42 - Oldies But Goodies
16:22 - Some New Stuff (You May Not ...
but im a git noob so maybe yall already know most of this
I've also heard good things about using gitk directly
Well yes but it’s interesting aside from being a Rust project
ik im just sayin
how long has atp been asleep for
from abt 12:30p eastern
so
7.5h
still got another 5-8h to go
i bet you she's waking up in like 4 hours and then work on BSL for like 12 hours straight
and fall into sleep again
real
uh oh
btw u spelled Pixiv wrong

lol
dude I swear I tell intellij
to add something to dictionary
every single time
I open a project
its the same thing too
I'm convinced it just forgets
appears that pixiv may be a little smarter than Twitter in terms of detecting bots
no matter
Will do more after eep
No it doesn’t use Anubis
oh ok I wasn't say it did
I just wanted to post it in case u haven't see that already
someone sent it to me today
oh huh
0293842
Fuck
Why can’t I have normal dreams

一年ぶっ通しで毎日作業漬けなのはそうなのですが、身内がプログラマーなのでそこらへんでコミュニケーション取りやすくてありがたい限りです🙏
@timid quartz you have been working for 4 hours. are you really awake?
THIS COULD BE A MICROSERVER
it WOULDN'T, but i don't fail to see what practicality is
generally though i wont be able to understand and thus comment on nix effectively
104203-
sorry needed to catch myself up on data
you predicted my sleeping time to a frightening degree of accuracy though
"7:34 PM"
remembered waking time: "11:00 PM"
... 4 hours
need to do some thinking ... "DDB BM"
A1.
there is an issue with mine too where ill tell it to add something to the dictionary, and then when the next analysis cycle is done (about 1.2 s) it immediately complains again
Ewww
you SAID
to render a kohaku
also am watching stargate sg-1 for the first time
But why would you ever listen to what I say
What if I told you to come back when you’ve killed unfunnylad
well then id already be back
he's dead right now
dammit
these salisbury steaks are so big
@lone sky is this true or rubbish
as far as im concerned its true
and since when do YOU use rubbish?
No I meant DEAD dead.
british ass
your ass rn
mbmbmbmb
so good though
i was relaly hungry
but what about when the drill sergeant says drop and give me 20
then sure you do that
Bro is petty and third class
well army jrotc is BASICALLY real army's rank
except for WO but those are dots and a line
usaf jrotc is much different compared to the real usaf
but for the usaf just remember that sergeants map one rank lower than in the army
master sergeant (usaf) = sergeant first class (army)
us navy and us marines more complex and weird
and us space force dont bother
Seaman Recruit
Seaman
Uhhh
Petty Officer 3rd Class
Petty Officer 2nd Class
Petty Officer 1st Class
Chief Petty Officer
Master Chief Petty Officer
Uhh
Ensign
Uhhh
Captain
Uhhh
Admiral (with the weird halves and whatever)
tobuscus is an alt right person now????? ☹️
mfs be calling themselves a "seaman" and a "rear admiral"
navies cant be real
Get it out
Persona, finally something normal and based
but what if it had a makemon mod
No
これ聴きながらこの動画作ったらかなりストレスが溜まってしまったのでストレス溜めたい猛者方向けです!!!!!
#meme
▼お仕事のご連絡
[email protected]
▼ばやちゃおWebサイト
https://bayachao.com
▼Twitter
https://twitter.com/BAYACHAO
ATP mind virus
i like how they use 耐久 in that title
1時間 [hr] 耐久 [endurance; persistence]
with that
a new way to write a word
耐ばやちゃお [bayachaoproof/resistant]
俺の心
いけません!
It was a joke 😁
yes i know
Hey u aren't asleep!
?
Omg wait you posted Omori content
lie
Hero and Stranger
thats a bayachao image
I'm just surprised. Thought you'd be asleep by now
you just need special vision to see it
i woke up 11 hours ago
How long are you usually awake for
12 hours
well doing arithmetic...
12 hour awake 15 hour sleep
13..=16
Day overflow vulnerability
13..16 for the based kotlin users
Well that’s why atp progressively rotates the time when they’re awake
a<=n<=b our beloved
Genius
i was compiled with stack protection
Like atp used to wake up in the evenings EST, but now is waking up in the mornings EST
use CST
How do you express a<=x<b
a..<b
Oh good thing you specified EST, I almost thought atp would wake up in a different timezone
Or [a, b) if you rather
Cringe
Yuck!
a<=x<=b for the standard .. operator
(a, b] and (a, b)
Worst part about kt may be the listOf
mutableListOf 🤢
😨
i havent had to use ranges out of indices, UNTIL, and ../..<
Ic
fwiw idk how to do this in rust either
good design
The American Disabilities Act? Yeah you are disabled we know
i am yes
Python slicing on top btw I wrote some python today after a little while and it was actually pretty awesome
thank you for providing accessibility
let mut list = vec![]; better
kys
Nahhhh u can't be talking ada is NOT better
It's like reading an essay reading ada
those people are weirrrd
I think that’s one thing we can agree on atp
Hey don't hate theory can be cool
Lol
i gotta say though some algorithms they make are neat
like to distribute points evenly across a sphere
thats great
It's ok. There's 2 types of languages, ones that are complained about and languages that aren't used
There are some interesting parts of theory yeah
But by and large it’s just stupid math
Math is cool too 😅
nah
algebra and calculus are ok because they’re practical but theoretical math sucks ass
Linalg is cool too!!
Adding and multiplying
thats just dividing for weird people
ehh same thing as dividing
ig
I can't imagine you actually hit any of the hard theory math unless ur a math major
It makes more sense to do x*2 than x/0.5 tho
These aren't equivalent
Algo was hard 😭
yes
probably
Also the compilers theory gets annoying
But I think that was a professor skill issue cause that guy lowkey sucked at explaining things in an understandable way
He largely just read off the slides
I HATE AOSP!!!!!!!!!!!!!!!!!!!!!!!
did they make the slides
or are they standard
Neither I don’t think
right
i have not worked on adding image reading yet
i wonder how i should go about it ...
- use java ImageIO (need 2 figure out cons)
- do it myself
Well knowing yourself
You’ll end up doing it yourself
yeah
but i also know that java imageio by itself is already a bit of a pain especially in regards to animated images
But also if image IO is included with Java then you might as well unless you encounter a bad drawback
so the outcome was practically predetermined
i dont know if imageio does anything more "natively" though
Me when I get you
a mix might be preferred
pls dont i have low air capacity :<
bayachao meme with the amongus
well
it was drawn by rosetto... rosetto meme
To all the FBI agents watching this chat, this person (ATPStorages) is a national security issue and should not be allowed into the United States military. They should be arrested on sight and incarcerated in perpetuity as they are a severe threat to the sovereignty of our glorious United States.
Prolly
The paper ones aren't scary
"our glorious" fucking commie
arrest this guy
To all the FBI agents watching this chat, this person (ATPStorages) is a national security issue and should not be allowed into the United States military. They should be arrested on sight and incarcerated in perpetuity as they are a severe threat to the sovereignty of our glorious United States.
@lyric mesa ena
BOO! Did I scare you? I'm an automated recruiter 😂😂😂
YOU'RE AN AUTOMATON???
And bots, don't get blocked
what is their solution to the ip problem if any
Idk actually
I was mainly making a point about
I realized with some friends the other day just how much client simulation they do
It's actually pretty crazy
Enemies are all completely simulated on the client
With the server only acting as an authority on kills I think
do you know how they manage synchronization? or have they got it deterministic
I think it's deterministic
Bro get these stupid military recruiters out of my email and text messages I don’t care that I made a 93 on the asvab it was 5 years ago!!!!!!
Yea that's why I'm mentioning it
The reason I suspect that is cuz
A friend of mine disconnected from the host
enblist,
But he was literally still playing the game as normal
Just the other players stopped moving
Byt the enemies all still worked and did the same thing
No I like my long hair and I don’t wanna suffer for 8 weeks just to serve corporate interests rather than the people of America
in breadmod we try and aim for something like that
basically just do the thing as much on the client as locally possible and then send periodic sync packets
just to ensure whatever the client sees is actually whats with everyone else
long hair???
i thought you were bald
It was pretty cool. For them being on an ancient engine it's neat to see
Will be after the radiation gets to him
I have long hair
Oh like 1 strand of long hair I see
True…
I think my uni used to have a research reactor long time ago actually
did it have pile in the name
if it did its a based reactor
My uni does
otherwise it should've melted down
Pretty sure they still have a research reactor but they used to have one that actually produced power too
They do???
Yep
They were yapping about it on the tour
I was under the impression it's gone
Yeah the one that actually made power is
when was it decommissioned
SPACE ENGINEERS UPDATE????????????
I’ve heard from the nuclear majors that they still have a testbed underneath the nuclear engineering building
Idfk STOP TRYING TO DOXX US!!!!!
ughhhh
Well no, it was also just a research reactor I thought
im just interested okay :<
the us hasn't developed nuclear technology much within the past 40 years
I woulda said it if not for a minor coincidence
Pretty sure it powered the uni too
is this the first meme of 2025?
not this guy 😭
Idk I could be tripping it says it wasn’t that powerful
B.A.Y.A.C.H.A.O.
But some of my nuclear engineering friends say they have one in the basement of their building that’s barely powerful enough to observe discrete phenomena
SHE IS NOT ELDERLY??
Yes she is
She’s in her 30s she’s practically dead
Oh huh ok. I gotta get myself some of those (nuclear engineering friends)
Again she’s already got one foot in the grave
Idk anybody in that program
her friend rosetto is like 38
Like I’ve already ordered my headstone and gotten a plot for my grave
Baseball huh
Damn she’s on her deathbed basically
commotio cordis
So that's where the funds went
That stuff is EXPENSIVE btw
you should be reserving your funds for a casket
those are a lot more expensive
I had to get that stuff sorted and it was not cheap
Yep and besides I’m in no mood to get a new laptop rn the one I have works fine
Ok but casket is secondary
pls
No ik I'm just saying man
As long as I have a plot it doesn’t matter if they throw me in with or without a casket
some kid 100 years ago from now is gonna get an apple and think "i should code in a memory safe language"
biohazardous
:3
Wait I never asked or I forgot wheres ur family from @timid quartz
welllll too bad
🙁
doesnt seem like the place to discuss that!
Why not
i get programming chat is more secluded but its still qsp
anyone can see this chat
My name gives mine away tho
Ok and
That’s your choice too
Idk it doesn't seem like a big deal to me
And it’s my choice to not reveal that



