#💽Programming Chat v2
1 messages · Page 122 of 1
well after arguing against you for the past like
year
I dont think I will come to like the JVM
I agree with what the person in general was saying, even if the JVM is able to use JIT, you still have to incur the overhead that is the JVM itself before JIT occurs
okay but thats just the initial costs
dont you talk about this in CS
amortization
the JVM is inherently an overhead because it's translating bytecode into native* operations
yes but the result is platform agnostic code
and the JVM can ultimately tailor the program to the environment
something compiled code cannot barring SMC
additionally its managed safely
and any decent compiled language supports the same platforms as the JVM because they have cross compilers and platform-interoperable standard libraries
but that still incurs recompilation for the target
something the JVM, again, does not require...
the JVM itself does require recompilation for targets
additionally JVM code is introspectable, AOT compilable, monitorable
dynamically modifiable
something compiled code could never dream of
code on it does not sure but the benefit gained from that is pretty negligible unless you're running it everywhere
it means you can distribute exactly one copy to every user of your product
you do not need to recompile for every single scenario
even lackluster CPUs without SIMD instructions
"compiled code could never dream of"
aot compilable
mfw compiled code is aot compiled but can't dream of being aot compiled
and the runtime parameters are entirely up to you, something compiled code, again, could dream of
AOT compilable on any platform, silly
mfw compiled code can be aot compiled with a cross compiler
the CLASS files are essentially IR, you dont need a whole ass compiler like you would with rustc
or gcc
you just need a runtime
which is overhead
the technological advancement that is the JVM cannot be understated no matter how much of a "no-brainer" compiled code is
AGAIN, amortization
the runtime tips the balance of anything JIT, interpretation, or AOT could ever cost
and just to be clear, this is all just about HotSpot
I value less overhead from not running a virtual machine than I value having to set up a few more automated pipelines to release code for the major platforms
there are runtimes for real time operating systems which can have better memory characteristics than compiled code
better startup time
HotSpot is just the general set for desktops
I value less overhead from not pausing the entire program to "collect garbage"
even if it's only a millisecond, that's still 1 millisecond wasted
when will you ever make a good argument that isn't just this dumb repeated one?
it's not dumb, it's a tangible performance loss that I'd rather not have
its not
ignoring the other sets of VMs i already talked about, there are multiple GCs for any form of application
Mission critical systems also can't afford such a pause which is why they run Ada, C, or Rust rather than Java
... do i really need to backreference twice?
#1264496483957346346 message
the JVM has real-time capabilities
it is a specification, NOT a product
you are combining both the JVM and HotSpot as one thing
but thats too much generalization
i could say rust sucks because the compiler someone uses is naive
and at this point, if we're splitting hairs over the specific implementation of the JVM to use for real-time capabilities, why not just use a single language with a single compiler that already has real-time capabilities
because your language is not real time capable by itself
it still requires a special compiler, rules, to do the things for real time systems
same with ada
it is not safety oriented or real time capable by itself: you need to instruct the compiler to aim towards such measures... and in adas case, the compiler is also a specification, so such rules might not even be there
my point is... there is almost no reason against the JVM today after all of the advancements of the past 20 years. its like comparing CISC and RISC
maybe if you're on a fringe operating system sure, but the same argument could be made in the case of another languages compiler, and ultimately, it is not HotSpots fault for not being present
CISC and RISC is not valid because everyone knows that RISC has essentially won, even modern CISC processors break down CISC instructions into a list of RISC instructions
microops are not risc
risc is not risc either if you want to be pedantic
its about as complex as any other cisc processor due to similar technological advancements in ICs
my point still stands, the JVM is about as capable as compiled code, and practically just as applicable
RISC is not about internal processor complexity, it is about ISA and specifically instruction set complexity
oh, so you're saying ARM isn't complex?
the instruction set, compared to x86, no
it is just about as complex as x86, as a matter of fact
the internal workings of the individual processors, sure those are complex, but that's not what the "complex" in CISC means
even ARMv4, its instruction decoding is incredibly, incredibly complex compared to x86
and its instruction decoding is not an IC faucet
it is in its specification
i dont know why we are trying to argue about RISC and CISC though, as again: its a dead debate as of today
I think you have missed the key point that the IS in RISC and CISC stands for "instruction set" not "processor implementation"
again my point still stands
ARM, even in its earlier stages is not "less complex" than x86
reading eithers specification would lead you to this quick fact
and yet its still RISC
and before you rebut with something like RISC-V, that ISA is already more complex than x86-16, a CISC architecture...
i once again conclude:
this is what the jvm does to your brain
i will not call rust or C++ worse because it's too generic to quantify anything
rust and c++ can be as bad as the worst python code
so can the jvm...
But the thing is that code running on the JVM is more likely to be as bad as the worst python code because of the inherent overheads that running on the JVM entails
Whereas you don't have those with any compiled language
but thats just not true
on paper it appears that way
because the JVM is a component that is MITMing your code and the machine
in practice, HotSpot and associates are about as fast as the comparable rust/c++ compiled codes due to technological advancements in memory management and JIT compilation
And just because there is """no reason""" to not use the JVM, that doesn't imply that everyone should use it
i never said that!
You have not said that this conversation but you have and continue to constantly try to get people to use the JVM
my point is just that there is very little reason to say compiled code is somehow better than JVM code
because that is what i want!
more people to use the JVM
i am not saying that everyone should use it, but i will try to convince more people to use it...
the rust community does the same, so why shouldn't i?
And I will continue to call you on that because the JVM is inherently worse, even if the "gap of worseness" has shrunk over the past 20 years
but how is it inherently worse?
I have already detailed
yes, but all of your points are not extant in the real world
which is what we're building for, is it not?
Except for that they are
doesn't appear that way to me
And I would wager that most "performant" modern Java applications defer a lot of the heavy, performance intensive work to C via FFI
FFI didn't exist until recently
did you mean JNI?
and the fact of the matter is, that isn't true, for the most part
similar to Python
many java frameworks instead relied on JDK internals which may be written in practically anything as far as the program is concerned, most likely a mix of C++ and assembly code
such code can also be detected easily by the JIT compiler, recognizing an intrinsic replacement (among other optimizations)
allowing the tailoring of such code to be comparable or better than its precompiled counterparts
mhm
and what is your point? that some libraries are not allowed to use such delegation?
because the same argument can be made against rust/c++ ffi facilities
deference to a higher performance library, wether it be on the local user or system, is just a global thing in programming
The point is that at least some of the "performance" of modern JVM programs comes from said programs circumventing the JVM for actual work
Your interpreted, virtualized language is skirting its own runtime because it's not performant enough
there is absolutely no circumvention through JNI or native JDK interaction
it is just the systems provided by the runtime
it runs about as performant as comparable code in c++
this point you are making is again, a generalization across the entire runtime, whose applicability is not 100%
Have you also considered the basis in reality for the JVM's stigma as not being performant
The fact that, in order for the JVM to be perceived as slow, that the programs on it have to have run slow
okay... but thats again, a generalization
C, C++, Rust, etc. are considered fast because people have built things with them and they have been extremely fast
the same situation could be made for any less-applicable compiled code
Java, Kotlin, and other JVM languages are considered slow because people have built things with them and they have been slow
you haven't made a single point that is not generalized and objective or, at the very least, a JVM specific issue
almost everything you have said can also be redirected back at the compiled languages and face the same result
the JVM being "slow" is not an indication of anything, because it does not mean anything specific
is it the program written poorly? the local systems VM? the local system itself?
Java, Kotlin, and other JVM languages are considered slow because people have built things with them *and run them on all kinds of JVM implementations* and they have been slow
okay, but WHAT has been slow?
"slowness" is not an indication of anything except for someones perception
which, intrinsically, is not objective to anything
The reason I have to speak in generalizations is because that's the only way to speak about something so broad
poorly written C/Rust code -> redirectable back at you
then theres the crux of your complaints then, isn't it?
if the JVM is such a broad thing, what is even the point of comparing it to a compiled language, if that too, is also broad?
But with adequately written (not poorly written and not extremely tuned for performance) code, on average, you will find that the various JVM implementations run programs slower than the same programs written in a compiled language
most desktop JVMs can run comparable code in C++ and in JVM bytecode at about the same speed
again, attributing to HotSpot specifically...
how is it 11 pm...
whhhhhhatever the case since i've already laid down all of my possible points in this conversation
the person in general who spoke about rust initially is 15. i wonder what path they'll take in the future
what is the publication date of this paper and the used JVMs
and environments... and competiting compilers...
why dont u read the paper
because you brought it up...
so you would know the background details of it without me needing to read it...
assuming you brought it up in good faith..
comparable code is comparably as fast as C++, and this was in...
2009
did they at all state the JVMs/C++ compilers in use?
ill ignore Gos speed as well since i do not know how mature its compiler was at the time
JVM dependent, cannot make any points for or against
unfortunately can't find that info
additionally it appears that is for Java against C++
"data invalid" shut
i can't make any arguments for as a result, along with the aforementioned, because i do not know the exact characteristics of the java language
(i do not intend to read its lang spec any time soon ...)
i can only really argue for the JVM w/ its bytecode
specifically for this point
which is not a JVM defined thing
as well as this, which seems redundant if the point is that Java uses more memory cmp to C++?
really the comparisons for C++ against JVMs (IBM/Harmony/JET, all very old JVMs) are all over the place it seems
probably just because the JITs can be better suited for specific tasks (just a guess)
no i dont think ill say things like that
i think i used to, BUT now you know how i act now... so extrapolate
"opinion wrong"
your thoughts are wrong
no yours
your thoughts aren't rusty enough
im going to inject pure liquid rust into your brain
so you think right
anyways JVM bad Rust good I win 
what if you coded C++ methods in C++
C++....wake me from the nightmare that is the JVM.....thank goodness the JVM doesn't really exist....
he would've made HolyKotlin if they didn't get him
nah he would have made HolyRust and that would have taken over every other language in the world
50 days left..
I have 50 days to break into your bank account and destroy all your money to ensure you can't buy that accursed game
unforuntately... bayachaos husband, mr po, only knows typescript...
he should learn Rust
❌
going to commission bayachao $200 to tell her husband to learn kotlin immediately while he still can
he learns Rust => his marriage thrives and maybe bayachao stops being terminally online
he learns Kotlin => he and bayachao's brains become irreversibly rotted and they become braindead within 5 years
(the braindead thing is happening to you too you just wont feel it until it's too late)
nah
(you have 2 years? left)
i know what im doing.
idk how long you've been using Kotlin seriously
is that when i was trying to learn java like ... some years ago
i took notes about the language like i was in school
but then i found kotlin and just promptly threw them away
YOU SHOULD HAVE STOPPED THERE YOU SHOULDNT HAVE GONE FURTHER
you should have dropped the JVM RIGHT. THERE.
then maybe you would be salvageable
i found java through w3schools bro..
i wasn ot..
the angel doing the good work of converting a JVM user (debirun) to Rust
no they're going to teach him kotlin forcefully
Rust*
I wish I had a neuralizer so I could remove all the knowledge of the JVM and Kotlin from your head and then teach you Rust
its in my genes now
you cant remove it
plus im pretty sure my thought processes are completely antithetical to rust
i could not hold a memory about it if i tried
hmm you’re right they might be
Rust requires thinking, which you are incapable of
rust requires the lack of thinking*
Your skull is hollow
WRONG.
There is nothing behind your eyes
its filled with cerebrospinal fluid .
hollow.
Official Video for "Tribute" by Tenacious D
Listen to Tenacious D: https://TenaciousD.lnk.to/listenYD
Subscribe to the official Tenacious D YouTube channel: https://TenaciousD.lnk.to/subscribeYD
Watch more videos by Tenacious D: https://TenaciousD.lnk.to/listenYD/youtube
Follow Tenacious D:
Facebook: https://TenaciousD.lnk.to/followFI
Instag...
how i feel when looking at rust
I’m going to point a superconductor at full power directly at you
its to align the kotlin particles within me
and then ill become unstoppable
I gotta make sure the Kotlin particles are all clumped together so I can remove them all
爆撃魔法を駆使するので何でもかんでも爆破させます。
まだ収益化してませんがいいマイクを買いました♪
よろしくお願いします!
■Twitter→ https://twitter.com/BAYACHAO
■魔けモン!HP→ https://bayachao.wixsite.com/makemon
■8/25~8/31個展→ https://bayachao.wixsite.com/makem...
also the bayachao particles
For further removal
refinement*
cause
0x80070057: "パラメーターが間違っています。"
eugh
@spare quartz 3 episodes of dr stone left.
And then cour 3 begins
and then you go to basic training.
and the military never lets you watch anime again.
actually wait considering your significant online interactions with foreign nationals, you could be considered a security threat

blah blah blah
ignoring the fact that I do government contracts every other day.
I should check on some more now!
wait until I tell them :3
But that doesn’t mean they know what you do online
then whats the point of privacy apps
where did that come from
aera im basically the best target painted for surveillance
how would the government NOT know what im doing
We’ll know for sure if you get denied a security clearance or if a fed comes to your door
@USGOVT this person regularly interacts with foreign nationals and therefore may not act with the best interests of this nation in mind
@IRS this guy doesn't pay his taxes ^
Non-private apps: the government may not be actively monitoring you at a particular moment but since they can scan your messages they can flag you for closer watch at any time and read any of your past messages without your knowledge
Private apps: since the government cannot read your messages in plain text nor can they subpoena a company to decrypt your messages, they cannot monitor you ever without seizing your devices which requires a warrant
it was a joke.
stupid rustlet.
even more stupid chaolet
i am not keen on having another 300000 minute debate over privacy apps .
Muse Dashへの楽曲収録を記念して、ばやちゃおさんから特別仕様のMVをいただきました!
⇣「描いてみた」動画はこちら
https://youtu.be/wBo_-GPXDcQ
動画内に登場するキャラクター達はばやちゃおさんの創作『魔けモン!』のキャラクターです。
https://bayachao.wixsite.co...
The private app thing is privacy from governments and also from data-harvesting corpos
oh my goooooooodddd
let it go aeraaaaaaaaa
i will not be receptive this timeeeee
If you don’t care about either of those things (just like you don’t care about the JVM being poorly designed and most implementations having tons of overhead) then sure don’t use them
I care a little more about that so I prefer using more privacy-oriented apps
3024023401--3-402040034--20
??
why did you post ai generated art of Jesus
Well the one on the left looks ai generated at least
it was the first image available to me that i could throw at you
its the mosaic a bunch of news sites are using from https://sg.news.yahoo.com/pastor-says-vision-told-him-001500034.html this story
they dont say where the one on the left came from
but they say where the 2 on the right did
oh my god
do not read what was engraved on the ammunition used on charlie kirk
my directx diagnostics work.....
also ignore joewh that was the test subject

:<
You don’t even know where I live
:3
who said i would be going to your house.
whose house…
this sign
Mmm
Ideally, graphics drivers would be perfect pieces of software, but in the real world, drivers or even GPUs can have bugs or quirks.
Rain
Your arm is so thin
thx
only such a weak person could write rust.
cat doubts your assertment that your muscles are large
cat does not doubt that other parts of you are large
there’s a reason you are “meal ready to eat”
there’s a reason I’m going to kill you!!!!!
cause you eat pizza all day
Nuh uh
relative to you
which means they weigh > 1 solar mass
at least I’m not the center of gravity for the solar system like you
they named The Great Attractor after your weight
the closest reference they have for the gravitational power of a black hole is your big toe
Nice selfie
you couldn't even fit in the largest void of space
you are larger than the entire third dimension
Kotlin has made you so fat you have to transcend 11 dimensions to fit within all of reality
they hate YOU
One of the greatest main menu soundtracks.
Artwork by neo7harry
Factorio
but this one does hate being held
If standing, take care not to sprinkle while you tinkle.
If you do, be a sweetie and wipe the seatie.
too
衝動に駆られて唐突に歌った新年一発目の謎動画です。
いつか、津軽海峡に行きたい♪
▼魔けモン!Web
https://bayachao.wixsite.com/makemon
▼ばやちゃおTwitter
https://twitter.com/BAYACHAO
Something something sea something winter something color
津軽海峡冬景色
good job!
so many lambdas..
アプリケーションで無効な呼び出しが行われました。一部のオブジェクトの呼び出しまたは状態のパラメーターが正しくありません。
デバッグ メッセージで詳細を確認するには、D3D デバッグ レイヤーを有効にしてください。
me when i wrote a whole shadow system without realizing that this fundamentally does not work in 2.5d
ATP I overhauled the CPU emulator you commented on from a few months ago.(#1264496483957346346 message)
Code: https://github.com/Luna-Microsystems-LLC/luna/tree/main/l2
ok kinda fixed it, it's still a bit inaccurate but idrc
in my defense lighting is really hard without a game engine
light deez
Nope I’m dead
That looks like an angel from evangelion
too much*
I just bent the shit outta my glasses lmfao
nerd
atp literally do not get me started on your bitchass
i have more monitors . therefore. i win
WRONG
i have more ram
also at least sort them 😭
i have a lot of monitors look 🤑
notice how they all suck
(this isn't mine this is a computer shop)
literally are more modern than yours which are Heaps Of Shit
144P
wrong*
HD at the worst
FHD at the best (with complete swivel)
and every accessory.
atp
what .
its not drama
whatever go my literal stack of cisco switches
its playfighting
notice how they're all from the 1700s
oh that's the word for it
used by britain
notice how they probably got a job
unlike you
WHAT
literally all of your monitors are displaying a job application
they're trying to say something
what .
Means it hasn’t spread far
what drama ...
What you don’t know can’t hurt you
aerasto nothing on the internet can hurt me
because it quite literally is not real
so what is it (if you've come to discuss about it ...)
your bayacaho stuff isn't real
that's objectively false
that's objectively correct
therefore bad
Provably false
- “Nothing on the Internet is real”
- Bayachao is on the Internet
Therefore Bayachao isn’t real
counterpoint
✅✅✅✅
bayachao is the username of a real person who does art
the art isn't real
session terminated
it's on the internet
wrong .
Right
i literally have a copy of their work in my room
GET A JOB!!!
NO!!!!!
Fakechao
Kupyadel will smite you for your sins
provably false
wait ~48 days to find out.
it's ok I'll do it myself
you dont know where i live .
⚡⚡⚡⚡
except I do cause you post your address everywhere
that's what they all say
E grade for you aera
if you look outside you should see a red beacon shining into the sky
there is a 500kg bomb on its way to your house
it will blow you all the way to the Helldivers 2 re-education camp and helldiver training facility
you shall be made into a model citizen
魔魔魔*
ぎゃーん!😭😭💕💕チェーーーー!!!!!!!!!!!!!!!
あまりにもキュートすぎる.......!!!!!!あーた、照れ顔かわいすぎや.......!!!!!
ルカチェル供給、涙、感謝、ありがとうございます!!!!
ok this isnt so bad
im pretty sure thats the mascot of yahoo japan
or A mascot..?????
let me find ..
oh
its a mascot of Yahoo!フリマ グッズ交換【公式】 (yahoo flea market)
this is awful.
1964134538193363086
제거하라 제거하라
oh so its not bayacaho
point still stands
point does not stand
bayachao bad ❌
i have like
3
therefore i win
not 60.
By getting a job-
self issues*
One of the greatest main menu soundtracks.
Artwork by neo7harry
Factorio
cant listen rn but im assuming its Not Great since its coming from you
????
this is why i dont go into genera l.. .
neither
your bearable unlike the hyper femboy sterotypical people in there
and that should say something
write directx .. .yes
shakes
do you know if they make water cooled monitors
im better than you*
uh
because my primary monitor runs so hot over time it actually radiates it all the way to my hands
i
i mean probably not????? i think a heatsink is just all you need
unless its like some
linus tech tip weird type of shit monitor
or bringus
its just an ordinary LCD panel
i think ur monitor just sucks aka what i said earlier
it does not take that long to write no
so actually maybe ..
were you about to say soething
oh
then use one from the lot
that you got
you have like 50 anyway
(because the picture quality sucks not that your lazy)
wrong
the full swivel monitors have the same resolution
but my primary monitor has 144 hz..
and its also cuase id need to probably find another accessory cable in the monitor clump
aother what
all you need is like
a dp cable and a generic pc power cable
what are you on about
the majority of the monitors are VGA/DVI-D
an accessory cable converts DVI-D/VGA to DP
and because a lot of government computers use DP instead of HDMI or DVI or VGA
they also have a lot of cables that convert...
i was right they SUCK
those are both fine protocols you dimwit 😭
WELL NO ONES GONNA WANT THOSE IN THIS DAY IN AGE but yes they are good
i like they have screws
literally no one cares what display technology a monitor uses
they do if the computer dosent have it
like
if they buy 10 monitors
and need 10 converters
then just get a converter cable instead of a regular cable???!??!?
they're not even more expensive?!?!?1
its at that point much better to get a better monitor with hdmi or dp
its not
well what if they dont want to buy more conversion cables
each monitor is incredibly cheap
also i dont think a direcct vga to hdmi/dp exists
it does
like its on home depot
my setup rn uses a DVI-D to DP cable though
your main rig
my GPU can support 3 DP ports and 1 HDMI port
and my motherboard can use 1 DP and 1 HDMI
ys
everythings intact
cause i just build that well
(its begging for death)
(and also cause the cables actually shield the sensitive bits from being shocked)
nvidia wtf are you on about
they are in their current state
and doing great in GPUs
didnt they layoff people
maybe
and thats why i hope they dont die
i just know they're still doing R&D and releasing stuff which is why i like them
because their gpus are really good if im thinking of the right model
and theyre really good for transcoding
at least its better than nvidia trying to put AI slop in their GPUs
TXAA and AI upscaling was a mistake
ai ❌ ❌ ❌ ❌
but i just heard intel is like rotting
and not doing so great in some area rn
causing layoffs
you're rotting ...
at trying to get an internship yes
and maybe quite literally too ngl
but hey at least i have a $250,000 mainframe instead of 60 bulky overheating outdated monitors
❌

mainframe but nowhere to display it towards 💔
you're so dumb .
"nowhere to display it towards" ???
ok. what does a computer generally require to show a visual feed of something .
oh you mean TO something
the mainframe doesn't have a video output at the moment as it was used mainly for CPU intensive tasks ( @wheat zinc ) so it uses serial
i have like 3 monitor anyways atp.
like display a computers output to something
dummy.
as everyone knows
the bigger the computer
the MORE displays it needs
that's like saying all the modern supercomputers meant for CPU tasks are for gpu rendering
that is correct.
THAT IS WRONG.
on the topic of cpu tasks.... though...
gpu based computers do gpu rendering not the silicon rock
considering im writing directx... i wanna try making a compute shader to generate minecraft chunks on my gpu
YAY IT PREENTED
Yes…
let's play it...

I am rock hard
ok. ion pc now
are you on iwindwos .
not a virsu .
#1341136523545935923 ge tin
you have survivors of the void??
weird
What did you think of game
is OK . . . but i n eed to get better at aim trainin g ...
tf2 mvm
I would lowk try huntress or commando
ok man
help ...
playing 911 operator...
i just killed everyone ...
you showed them 1/4th of an image of bayacaho
IT BURNS IT BURNS IM DYINNG
:KABOOM:
babio _
babichao!
El. Psy. Congroo.
発電機!
えtf is that
アニメ
One of the best anime in existence
what are the bayachao universe implications of bayachao being a dog but also owning a dog……..
?
that’s not a dog and that’s not babichao
none .
there are zero implications .
the thing on the right is a …….. fox
the thing on the left is a … monini
mmm
Anyways watch Steins Gate
It’s not Jumpslop for one
All shounen anime and manga, especially ones from Jump are the same
Not to say that some aren’t good but they’re all the same
Seinen is where it’s at
wtf is jump
Weekly Shōnen Jump (Japanese: 週刊少年ジャンプ, Hepburn: Shūkan Shōnen Janpu; stylized in English as WEEKLY JUMP) is a weekly shōnen manga anthology published in Japan by Shueisha under the Jump line of magazines. The manga series within the magazine consist of many action scenes and a fair amount of comedy. Chapters of the series th...
Oh
they publish probably the majority of the most popular anime and manga
Demon Slayer, Dr. Stone, Hunter X Hunter, One Piece…
Again there can be some good stuff published by Jump
but like the overall story arc, the themes, etc…are all pretty similar
god an anime involving rust would be awful
go ask your mom to teach you to iron or something
she misses you
No
Because when you oxidize iron
It turns into… r-rust…
I’m sure your mom would like to teach you something as opposed to chauffeuring you to get government property
Ironing
she has a job
Laundry
Already know how to do those both
Nope
Yes
Go iron a button down shirt rn and send proof
I do not have an iron
Then you don’t know how
I do know how
So ask her to teach you
She does not have an iron
Ask her how to cook real food
I know how to cook…
Actually what she does have is an education
She’s trying to get her degrees …
Unfortunately I berate her because she trusts AI with her schoolwork.
I want them both dead
yes i do
Me too
death 🥰🥰🥰🥰🥰
im about to make my first sale..
look at all of these details...
refund it
was this elevatorz
Yes
$5,000 ea.
thats ~4 dell poweredges maxed out at CPU and 512 GB of ram
no one's gonna buy an optiplex for that smh
an optiplex with no hard drive and memory*
everyone would buy an optiplex for that
atp fucking sell the hunks of junks before you even get more
this is how you go into debt 😭
what if....
you end up on the streets...
im going to put my mom on the streets if she keeps acting this irrationally
"let me move this printer so i can print the label on my computer as the one its on doesnt work"
"NO IF YOU DO I WILL CANCEL THE APPOINTMENTS IN DALLAS"
"that is a crime and you will be charged for it"
"THAT IS PREFERABLE TO MOVING THE PRINTER"
actual conversation we had
it does not help that my sister loves to eavesdrop whenver i talk to her
atp im literally trying to fucking warn you to stop 😭
it's essentially gambling at this point
yes you have machines
these are not new
yes they have value
that is why im trying to get her to act rational since she wants to cancel on a whim
which is not an option
but the issue is actually finding someone to buy all this shit 😭
atp you shouldn't have made that many deals
sunk cost fallacy
what
that isnt sunk cost fallacy as the resultant items are worth $3,000
kade
what
when the contracts were made the items were not yet aquired
i do not know how you think this works
but it is clearly flawed
ok you bought multiple lots correct
or was it one lot for everything
and it isn't gambling either, as again: i know what i'm getting, when to get them, and how much they cost
it is 3 lots and 1 office
the office due to their mismanagement turned us away initially, but we are going to reaquire them
ok so why did you not buy only one lot first then sold what you had and bought the other lots later on once you sold the initial lot
the issue is getting someone to buy all of your stuff atp
there's still more out there
there isn't
okay ... and i still end up with $6,000 worth of items
for a fraction of the cost
atp hustlin I respect it
even if i do not find a seller i still have, again, $6,000 worth of items
no
that is the worth of the items
sell costs have not been factored in because they're inherently variable
6000 worth but no one to get that money from ATP
what if you accidentally send the items in a trip around a supermassive black hole that accelerates their time relative to earth time which depreciates the items significantly? what would you do?
kade i will not discuss finance if your mind is solely focused on selling
it only matters if you eventually find a seller
if you don't you just have 6000 worth of optiplexs and 1080 monitors
i want to understand your point here
create an energy generator out of it
because those machines are worth nothing if you don't find anywhere to get that 6000 from
assuming it is a spinning black hole
... they are functional
every single one of them is functional
i can still use them even if i dont sell them... and they also come with accessories...
the EEOC also gave us free ink and paper with their printer at no added costs
any day
i never said they were broken??
💀
wait is that appointed instead of elected
appointed i believe
bruh
then what are you on about
they are quantum entangled monitors
when did i ever say they were broken atp
i never said that
kade what are you trying to say
their condition can be represented by a single qubit
this
before observation, they are both working and broken at the same time
like yes you have 6000 worth of items and whatnot
