#💽Programming Chat v2
1 messages · Page 102 of 1
bbbbbbbbbbooooooooorrrrrrrrrreeeeeeeeeeddddddddddddd
:<
‼️
23423423=4923524-512---=3=
wh
had an idea…program to keep track of anime and game recommendations
sounds
interesting
I mean…some do exist already but
yeah so you're not efficient enough for the company
wow
that is the largest piece of kanji soup i've ever read
陰鬱驟雨陰鬱驟雨陰鬱驟雨陰鬱驟雨
陰鬱驟雨陰鬱驟雨陰鬱驟雨狂瀾怒涛
陰鬱驟雨陰鬱驟雨狂瀾怒涛狂瀾怒涛
陰鬱驟雨狂瀾怒涛狂瀾怒涛狂瀾怒涛
狂瀾怒涛狂瀾怒涛狂瀾怒涛狂瀾怒涛
without context i'd expect the writer to be chinese (and it's probably 1:1 in meaning with how dense it is) but nope
when you're ragebaiting bro in the vc but he has admin so he just mutes you
Quoting kalfuyama (@kalfuyama)
︀
Skylanders: Trap Team (2014)
:3
good question
My old request method
class file constraints are making this a challenge
(but its really an issue with the superclass Block)
createBlockStateDefinition depends on the field "statePropertiesSupplier", HOWEVER, the superclass of Block runs createBlockStateDefinition in it's initializer block; because the first instruction in an initializer (BreadModBlock) here must be a call to super, statePropertiesSupplier is never initialized, causing an error
the question is how..... to solve.....
sigh. unfortunate
i think it's logically impossible to do so
Constraints!!!!! In the JVM!!!!!!! Bad software!!!!!!!
im going to send you けもの今
There are no constraints in Rust ❤️
Yknow I might try something with Zig
Zig is kinda like Ada in that the language is cool but some of the tooling kinda sucks
just made huge strides with breadmod
fully automatic block entity, renderer, AND capability registering
override fun ofBlockEntity(type: BlockEntityType<*>, pos: BlockPos, state: BlockState): BreadModBlockEntity? {
return BreadModBlockEntity(
type, pos, state,
mapOf(SlotQueueHandler.BLOCK_VOID to mapOf(Optional.empty<Any>() to SlotQueueHandler()))
)
}
override fun ofCapabilities(subscribe: MutableMap<BaseCapability<*, *>, (BreadModBlockEntity, Any?) -> Any>) {
subscribe[SlotQueueHandler.BLOCK_VOID] = { e, _ -> e.getCapability(SlotQueueHandler.BLOCK_VOID, null) }
}
override fun ofRenderer(): ((BlockEntityRendererProvider.Context) -> BlockEntityRenderer<out BreadModBlockEntity>)? =
{ c -> ItemInWorldRenderer(c) }
if only i could tie generics on a more advance level
something like Map<T : Any, V of T>
Map<ObjectType<SomeRandomType> to SomeRandomType, ObjectType<OtherType> to OtherType>
that'd be cool
hmm
i could actually do that with reification and my own map class...
ill do it when i wake up, it sounds cool
What does this mean?
Provided to YouTube by Rightsscale
Help me, ERINNNNNN!! · COOL&CREATE
Help me, ERINNNNNN!!
℗ COOL&CREATE
Released on: 2024-05-03
Lyricist: beatMARIO
Composer: ZUN
Auto-generated by YouTube.
Help me Rust!!!
Imagine a map
The keys of the map are of type T and constrained to some other type with a generic parameter, say Example<F>
The generic modes of the values of the map are dependent on what key they’re assigned to. If the key of the map is something like ExampleDescriptor<Alpha>, then the value will be Example<Alpha>
What ..
KNEW IT
I’m fairly certain this is 1000% possible (with some unchecked casts)
just need reification and my own operators
ヘタクソな人は英訳しないでください。英訳依頼者からのお願いです。
Isnt this just Map<K, V extends Example<K>>
No, since the type K is unbounded
What is K meant to be bounded by
A descriptor class
The generic types are relegated to second order due to erasure (and Minecraft constraints), which means that I need to use Object to not run into problems later (something I also want to avoid)
I have 0 clue what half the words here mean.. whats second order? I still dont think I get the problem
If you have a type that is Map<Something<T (of anything)>, T>, you will run into issues when doing
ExampleMap[Something<A>] -> A
ExampleMap[Something<B>] -> B
Without reification (something the main map does not have)
If this were BSL, I would have avoided such a mechanism
Its not?
Unfortunately, these constraints are brought upon by NeoForge and associates
I was about to say this seems like a poor api design choice
The descriptor class Something refers to their “Capabilities” of block entities and levels and alike
How exactly is that gonna work..?
Oh... ur own JVM??
No, this has to run in a mod
(And coding for my own JVM with such specialty would require my own javac, a terrifying thought)
So how are reified generics possible?
<reified T> Map<Something<*>,*>.get(at: Something<T>) :T = this.actualMap[at] as T
Wth is that
something like this perhaps
Is that kotlin
Yes
Ok I have no idea what's going on there
But reified generics arent possible even in kt right? Im confused by this implication
<reified T> type generics with reification
Map<Something<*>,*> extension function of Maps<…>
.get(at: Something<T>) :T = this.actualMap[at] as T
function signature
One of kotlins strong points over Java is reification for certain generic applications
It’s moderately limited and requires inlining of whatever uses it
But it works when it does
Oh huh
Thats pretty cool
The types still do disappear tho... yeah? Its like fake reified generics?
I’m uncertain about how it works in each class file
But I assume it just bakes in references to KClass of each generic parameter
And does some reflection magic at run time to make it all just work
Hm ok
Kotlin has a few issues with analogies to class files I noticed. Its dissociative nature of class initialization is a problem, since (although null security is enforced,) a program can still crash where the compiler should’ve detected it
For example, a super class calls onto a method overridden by a sub class, which depends on a field in that sub class… but initialization of super must happen first in class initialization
Therefore, the field isn’t initialized where the compiler said it should’ve been, causing an NPE
That sounds like it'd be hard to lint for too
Is that a problem in Java? I cant imagine what would be different
Java’s language semantics force you to put a call to super in your constructor, with everything pertaining to sub class initialization after it
So no, it shouldn’t be, by design
If you refer to a field during construction before it’s initialized, I assume the same thing would happen (but instead of an immediate NPE, it’d just say “null.”)
Shouldn't be different, yea?
As in the same thing will happen
Oh ok you say that here
Whys it just null instead of a NPE? Im confused
Kotlins compiler inserts checks along certain parts of the code path to ensure program state
Since, yknow, java doesn’t have null discrimination yet
Null discrimination?
so if the compiler believes a part of the code should have a non-null thing “A”, a check to see if “A” is null will be done first
Java does not do this, and the responsibility of null checking is on the programmer
Oh how interesting
There isn’t any way to mark something as optional in Java yet (barring the discrete class Optional<T>)
so even if you wanted to say something can’t be null, null is still valid for it
@NotNull 👍
since null is sorta like an “any” type (although it doesn’t exist)
JVM doesn’t have any ears ❌
Wdym
javac/the JVM will not care about NotNull or Nullable
so it’s up to your IDE to do that
something I dislike…
Yeah optionals are a good concept but using them everywhere is both slow and annoying
Oh yea, im half joking. Its a bandaid solution
The annotation is caught by linting instead of compiler 🙁
Also sometimes IntelliJ suggests some rather weird code replacements
Or maybe not weird but I just dont like it
One example I can think of now is replacing an if statement check for Optional.isPresent with like a different Optional method that calls a lambda with the unwrapped value
I think it looks uglier that way lol
Maybe just a personal thing
I’d understand using the former on Java versions 9 and below
For the upper versions I’d just go with the lambda
The compiler has a chance to optimize it further
Also my headphones have been on the entire time I was asleep. I’m surprised they’re not dead
(Unless you wanted to also avoid the indenting which Id get)
???
oh really? I didn't know that
HELP ME RUST
yea I just thought it looked a lot worse and cluttered compared to an if statement
たすけて
indentation included
!!!!!
lambdas were given a pretty good implementation improvement after 9 from the invokedynamic introduced in (7 iirc)
large/many string concatenation can be better than using a StringBuilder since the compiler can turn it into an optimized implementation using a hidden lambda
the limit is about 200 parameters per string though, afaik
im pretty sure they're adding string patterns to java soon as well
so that'll be nice
hunger
manmade horrors
-# I've been writing a chatbot, for ComputerCraft, in Luau
HI ULTRA
theory execution
hi harry
Sega Dreamcast
mekanism
i thought mekanism had a much larger "advanced solar panel"
block shrinking!!
ah so those were the solar neutron activators in your other screenshot
it would be very funny if you could get that to work for multiblocks, just imagine a one-block-tall fission reactor
and then it somehow uses opengl 4.6
im sure if its based on any decent engine it can go as low as 1.1
found the engine
Rock paper scissors v2
Oh hello!!! Good morning!!!
I have the urge to spy on these people
Unfortunately, they are too scary (and all of them are most likely older than me.)
You should have the urge to look at this repo
It’s in Python
This is like eating mold
The standard BSL server is pausable and resumable but I’ll concede they have more protocols than us at the moment (excluding webdav as that’s an HTTP derivative)
Right now though im working on breadmod
V3 of our data mechanics is looking so promising
Completely “stateless” block entities as well
Additionally the BSL server is stupidly fast
And maxes out disk I/O (when you apply SSL, it becomes heavily dependent on what your JSSE does, though, something I want to try and mitigate in the future)
Rate them… rate them…
我がコードを審査、アリア数学くん
Getters and setters 🤢
The horrors of OOP
学校に爆弾
Nice Google Translate
I just wrote that 😭
At least appreciate my hard work..
God it took 13 minutes to write that
Oh no
I FORGOT A fragment!!
「Bread Experts Group」に株式会社日本レジストリサービスが届けなかった。結果、核爆弾を送った。
CORRECTED
Ehehhehehe
Also wait what
Those are not getters or setters
What are you on about
Had too much fun writing Japanese I didn’t even notice you were blind
Uh huh
This is known as indexing
God you haven’t programmed in a while
Please get back to work! I miss your text files!
noooo never
- ̗̀ ルール ̖́-
・荒らし行為、迷惑行為などはおやめ下さい。発見次第BANさせて頂きます。
・過度なメンションや同一のメッセージの複数回送信などはおやめ下さい。(荒らし行為に含まれます。)
・イラストの無断転載、利用は固く禁じています。また、サーバー内の情報を外部へ公開することはおやめ下さい。
・常識の範囲内で楽しくサーバーを使いましょう!
nice google translate/copy paste from actual japanease person
explode immediately.
Those are literally rules of course they’re copy paste 😭
Do you not see the giant ルール
This scared me tf out :sob;
I did not expect to see bayachao
REAL bayachao
now talk to her
NO
YES
I’d be sent back in a soup can
Japanese people and ESPECIALLY women are scary
you talk to her
hello
fuck I kicked the power strip under my desk and my server rebooted
yes I agree but I thought you werent scared of them
Okay but
Like
Random Japanese people you can talk to are fine
But have you ever heard of the phrase “don’t talk to your idols”
or something like that
😭
oh fuck it said a disk was missing in the boot process
I hope kicking my power strip didnt fry a disk
Maybe it just knocked it out of its data lines
im genuinely scared rn
Reseat the disk
If you’re scared about damage look out for the common signs and run SMART
yeah ok it's ok it's fine
I doubt you’ll see anything
note to self do not kick power strip
Terrifying
WHAT
maybe I can slide these power strips out of kicking range
fuck that scared me really bad
YOOO
This is not how I’d expect we find bayachao 😭
WHAT IS A YEAR OF THE LINUX DESKTOP
ALL I KNOW IS A YEAR OF BAYACHAO
century of NO bayachao
century of Kotlin DEATH
century of Ada OBSOLESCENCE
why isn't it the century of aerasto shutting up forever
💔
speaking of centurys.. it's taking you centurys to finish my comm-
N
nvm I will I will
Thank You :)
i thought you were gonna become air ass toe part II
do you want some ayutada art
in dms sure
fanart*
because you don’t cherish bayachao, you won’t know inner peace.
this mc server is crashing how odd
Pls show log
in a minute
seeeeeeeeeeeems to be ok now
ask her directly smh
just go up to her and say
ばやちゃお様、魔けモンアートを見たいんですが。。。
why
what is wrong with you....
my computer isnt complaining about the GPS, Bluetooth AND mouse i have on 1 USB header
ばや王本当にありがとうkissすぎる
色味まじでばや王だから出せる色味すぎるしデフォルメの仕方がまじでばやちゃおワールドモルティムすぎる
ポテポテした頭身ともちもちしっぽと手足が可愛いし全体的に和な雰囲気にまとめられるのスゴすぎる〜〜〜〜〜〜〜〜〜
耳のデカさも程よいデカさで好きな雰囲気だ〜〜〜〜モルティム、良かったね.........クー!!ありがとうございます!
How it feels talking to the person who made coding in Kotlin their entire personality https://youtube.com/shorts/lNvuYovX-lg?si=fyMspGzPFoKYRExv
Song: Don't Forget DK Remix
@DitzyFlama
#viral #memes #deltarune #undertale
keywords :
UNDERTALE DELTARUNE
Your Month your sigma
Your month your sans
Epic sans vs Nightmare sans
Fatal error sans vs Hallow Ink
Spinning until Epic sans loses Epic sans Epic sans vs insanity Epic sans vs Color sans Epic sans vs alpha sans Epic sans vs Horro...
how it feels talking to the person who made ragebaiting their entire personality
the original caption is just you
fucking fatass
smh.
Holy shit uncalled for
server is poorly coded
it is kind of a giant modpack
if only you used a BSL server
❌
僕のおかんwin3.1から触ってるのさすがに老人会認定。
❌
絵を描く時、キャラクターを作る時、いつもそばで寄り添ってくれたのも
絵が上手くなりたくて苦しみもがいた時、心無い言葉に挫けた時、ずっとそばで励ましてくれたのも
OSTERさんの作る楽曲の数々でした
幼い頃から今日まで創作を続けてこられ、そん...
aw crap
energy handler might be too extended
Stealing from Mekanism smh
well they dont have infinitely expandable energy
so
losers
i sure wonder why this is happening
actually i have a theory
the theory was wrong
long long lookin headass
2^256!
Are you using your silly extendable integer type
?
lame
i cant compete with the mathematical geniuses that are java.math
real programmers use long
yeah well long is limited
rust with built in u128 ❤️
yeah well u128 is limited
but practically when are you gonna have a number bigger than 2^128
... decimals
just don’t use decimals 
plus its minecraft
which you should know has mods with crazy progression levels
(which even we can beat out now with BigDecimal, even draconic evolution only goes up to a signed long...)
Wow I’m surprised DE goes up to 1.20.4
We lost a lot of good mods after 1.7.10 and still more after 1.10.2 and 1.12.x
unfortunately breadmod is better than all of them 💪
❌
also btw
i searched up bayachaos first message in that server theyre in
you will never believe where it was
well actually its frankly easy to guess because they're japanese
yes
man rip astral sorcery, last update jun 2022
the betweenlands apr 2023
Thaumcraft Oct 2018
i dunno what either of those two were until you said thaumcraft
then again i never really got into thaumcraft
Astral Sorcery was pretty cool, magic mod but astral themed
The Betweenlands was absolutely amazing, added a whole new dimension with tons of stuff and the aesthetic was so cool
i hate extra dimensions........
proof that all people who seriously use the JVM are delusional
so true
とりあえず酒飲むぞ!!!!!!!!!!!!!!!!!!!
OSTERさんのCD VOL.3 収録曲!
通販 https://ecs.toranoana.jp/tora/ec/item/040030937638
off vocal https://commons.nicovideo.jp/material/nc256832
Music, Lyrics, Movie Programming: OSTER project(https://twitter.com/fuwacina)
Illustration: うつ...
カンパイ!!!
the thing in the image is a cutting machine
i got no idea how you conflated that with opencomputers
Hierarchy.
magmaつかってみた!
慣れればすごい使いやすそう
@spare quartz @flint belfry so I found the issue
tl;dr shitty power strip
basically the switch on this power strip is so damn sensitive that if you breathe on it wrong, the power strip turns off
and what happened is that the extra cable from the power strip was bumping into the switch and turned it off
it fucking happened again and I moved it and it came back on
but now this time my server is on a different power strip on a different outlet
ramb was trolling you
😭
Apple awarded me only $1,000 for this bug, I should quit this bug bounty thing and get a real job.
Quoting Renwa (@RenwaX23)
︀
CVE-2025-30466: Safari <18.4 UXSS to bypass Same-Origin Policy with CVSS of Critical 9.8 🔴 ;)
︀︀
︀︀support.apple.com/en-us/122379#:~:text=Impact%3A%20A%20website%20may%20be%20able%20to%20bypass%20Same%20Origin%20Policy
battery acid
holy shit
what is the energy transfer speeds on that fucking thing 😭
infinite
(for our energy supplies anyways)
(for other mods it just maxes out at 2 billion a tick)
oh, i get it now. the reason for docker is because it's literally easier to bundle an entire operating system than a single python package
A tacit array programming language
Ok so I’m curious how this works
In the code, does the provider block give power to the storage block or does the storage block request power from the provider
Like how does power flow between blocks
gist: the standard energy system decribed by neoforge/forge is a "push-based" system, where power generators "push" energy to another entity implementing the energy (or what have you) capability
Gotcha
the standard system uses ints, we just extend off it by providing a translation layer between them and bigdecimals
I figured it would be push and not pull but
it's usually push based
there is pull functionality but it's not the preferred method
Can it be cat based
(A you model)
omg Niko
Why (Neo)Forge over Fabric, Quilt, etc?
fabric/quilt do not have capabilities
they do not have capabilities, in general (energy/fluid/whatever handling)
therefore you are forced to use another mod for those (which may not be standardized)
this makes our system completely incompatible with fabric as our entire data model is based upon capabilities
yeah well i dislike fabric heavily from an api standpoint
you just love their docs.
also i gotta finish writing our assembler
i need to compile our minecraft kernel again but i really dont wanna install wsl
just find an old laptop and use that for Linux
vm?
then how are you gonna do it without wsl
... by using the assembler integrated in BSL's Computer system
then why would you need wsl
are you playing jokes on me right now
if you’re just gonna use your assembler why would you need wsl
please refresh your head back up here
it would be easier to download and install wsl then qemu then nasm and crap, BUT wsl does a lot of pollution to the system and i already have this quarter complete assembler
mmm ok I understand now
plus our ISO9960 disc system is read-only but i can make it writable pretty easily
“wsl pollutes the system”
vmware/virtualbox
i do not want to start a vm
Didn’t you say something about restart times being negligible when I was arguing against dual booting
vm startup time is negligible
no it is definitely not
restarting from a saved state in vmware/virtualbox takes 10 minutes for me
and again, if i already have this quarter complete assembler, then i can just... not have to rely on a vm
and compile it on each minecraft start
(cause the user won't mind, we won't tell them.)
user will mind if they’re running a Pentium and suddenly their start time goes from 3m to 30m
oh cmon this isnt a rust compiler
its assembly
right now though our assemblers just waiting on me to mark more instructions as "assemblable" cause most of them are just "executable"
rust compiler would be 0.3m
after the initial compilation
it can only process the first 4
we dont have "initial compilation" in minecraft, silly
ergo worse
well
let me rephrase, it would need to be recompiled every startup no matter what you do, since creating files on the users computer is terrible (personally)
BSL's assembler is lightweight enough to assemble and create a disc in memory anyways
why is my home server taking ssh connections so slow
is it the mc server
mc server in docker ❤️
pterodactyl eggs 👎
docker 👍
Same thing
yes and no
counterpoint: nixos

... you're running minecraft on nixos?
yes
why?
home server is nixos ❤️
LOL
someone should strap you to car batteries and throw you in the ocean
witch trial
if you were running it in Proxmox you'd be running it inside of a container anyways
To celebrate Cogs Fluid going viral again, here's a lookie-loo at part of the mixing process!
this is me creating jvm fluid
yeah but each handle containers differently
lxc, docker, all the same thing on linux
canonical
oh
maybe you just have a bad link to the server
mmm I mean probably
it IS going from pc -> router (over wifi) -> wifi extender -> switch -> server
but that should still be milliseconds
how
they all literally use the containerization stuff inside the linux kernel
ptero literally uses docker
there IS a nix thing for running mc servers but I found the docker thing to be more configurable and easier to use since it's ad hoc
the one thing I dislike about nixos is having to rebuild the system for every minor change
LazyCell >
you
lmao
Garry ❤️
ben how do they do containers differently
AerastoがGermanをスレッドから削除しました。
ok alpine user
oh right gross
you be like: "man, the 5 billion JVMs I'm running aren't hogging enough system resources, I need to use Windows Server"
windows server is goated
die
yeah but they handle files differently(?)
@pastel tinsel laugh at this person
AD 👎
who uses active directory
you didnt pay for a windows server license did you?
massgrave ❤️
no im a microsoft meployee
i got hired yesterday
@timid quartz has been deported to Gajesus' Basement.
what
nice try
HOW DARE YOU REMOVE ME FROM THIS THREAD YOU PEASANT
u werent here before
I was
lies
(seeing me yap about kotlin)
anyways have fun reinstalling in 180 days
could go back to fedora server....
god why is discarding so hrd
damn im hungry again
i could REALLY eat 500 buckets of hchiken
i fugred it ou
mmmm should I get short hair
my hair si so logn

Maybe Turnkey
i have a theory...
?
MWHAHAHHA IT WORKS
minor
append mistake
fuck
there
completely handler driven modular tooltips
charged
you should add a crafting recipe that gives you a creative generator for 1 dirt
im tired of having to slave away for power
This isn’t terraria modding
Get your ass back to tModLoader
let me have free power!!!
if you do it then maybe I'll put breadmod on my server
What version IS your server
1.20.1
Too low!
❌
gif by @Ryuusagii-P
https://x.com/Ryuusagii/status/1945867657804148815
#deltarune #deltarunememe #deltarunechapter3 #deltarunechapter4 #undertale #chapter3 #chapter4 #kris #susie #ralsei #noelle #tobyfox #temmie #asgore #dess
Go back to middle school
oh u can run c and cpp on the jvm https://www.graalvm.org/latest/reference-manual/llvm/
I guess rust too
the jvm has finally become the bloated, overgrown C runtime it always was
bro u dont even program wat
factually incorrect. I TECHNICALLY do, but on an inferior level as you or atp
checkmate liberal
3択-ひとつだけ選びなさい
答え① ハンサムのポルナレフは突如反撃(?)のアイデアがひらめく
答え② 仲間がきて助けてくれる
答え③ かわせない。現実は非情である。
my car is eating my cheese stick
答え③
i hate arti!!!!!
nuh uh
ew
can someone revoke this guys cs degree
u dont even have one u cant talk lmao
TVアニメ「てっぺんっ!!!!!!!!!!!!!!!」でEDアニメーションを担当したばやちゃおさんと一緒に歌っちゃいました!
Original:
May'n - あはっててっぺんっ
https://youtu.be/zR99bqxQyw8
作詞:May'n・大石昌良
作曲・編曲:大石昌良・やしきん
▼ TVアニメ「てっぺんっ!!!!!!!!!!...
your brain is mush
perfectly mush
indonesian idiot
✝️
they shouldve taught you this in japanese 101
bayachao is life
aerasto your combat skills suck.
do not proceed further.
oh broooother the biggest ragebaiters in the server are talking again
I AM NOT
A
RAGEBAITER!!!
nio see
same color
hmm
((T) -> String).derive((M) -> T)
= (M) -> String
is there a functional programming term for this
i see .
with how "good" you are at "programming" I'm surprised you haven't found out that CODING SUCKS!!!
okay but think about it like this
the ISO/IEC made a video coding standard
and french people aswell as issac newton invented color
and guess what combines both of those to make a bayachao video
with how "delusional" you are I'm surprised you haven't found out that YOU SUCK!!! RAHH!!!
okay i think that should work
orrr
in other words...
fun <T, S, R> ((T) -> R).compose(from: (S) -> T): (S) -> R = { this(from(it)) }
Codec.STRING.fieldOf("fluid_id").forGetter(FLUID_ID_SERIALIZER.compose(Tank::fluid)),
thanks for putting delusional in quotes cause that means you think I'm not :)
well so you see, you're NOT delusional
however you are SUPER delusional

all integer types have been depecated in the year 2077
Wut
you may only use arbitrary precision decimals
WTH
Terrible design
Bread is perishable
Ye
No stop
all your integers must be fixed point in 2077 🙏
Theres no points in an int what r u on abt
(bigdecimals are really just fixed point integers)
Big Decimal doesn't want you to know that though
Its an int
no
Where is the point
its an int with a fixed point
THERES NO POINT
theres a point
How
would be better in Java
java doesn't exist
neither does C or Kotlin or Rust
you know what DOES matter
the CLASS file format
the JVM can make these btw
❌
no like it literally can
without the ELF format you wouldn't have your JVM
this is my ELF assembler
(also to be 100% real
(the JVMs foundations would've actually been closer to PE32
あゆただ uses Kansai dialect...
well still, PE32/ELF/any other similar formats >>>>>> CLASS
(doesn't know a thing about either three)
also no way you're saying COM is better than CLASS
i thought you hated early windows
if COM is essential to running the JVM, then it is by default more important than CLASS
says nobody ever
x86 >>>>>>>>>>> PE32/ELF/any other similar format
IC logic >>>>>>>>>>> x86
Electromagnetism >>>>>>>> IC logic
silicon >>>>>>>
hahsaaa thats so ocol
People who don't know how to read Japanese are trying to apply the "woke Western fandom against based Japanese fandom" bullshit to UTDR 💔
maaan why does coding suck so bad
no real use found for coding
coding considered harmful
the uk should ban coding to protect children
heyyyy guys and gals it's me mutahar and today we're gonna talk about why we should ban coding!!!!
isn't mutahar mega racist
🥀
probably
arent latin americans also hella racist
Apparently this came out
TIMELINE DOCUMENT: https://docs.google.com/document/d/1qoFRGYsVn2jmWq2aly2WEZAS8f5ad5vOBFWOQWSyLUA/edit?usp=sharing
SomeOrdinaryGamers, also known as Mutahar, or "Muta", has been claiming some very steep credentials over the years and presented himself as a hard worker, a CEO, a computer engineer, and a YouTuber who manages to still upload on ...
unsure
no not really
you know who are racist? Asians
did you see the news about a right wing platform gaining traction in japan
and one of the things on their platform is anti-foreigner
MJGA
it would be hilarious for japan because their economy would crumble even more than it already has
“ooohhh no you can’t be in my country cause umm genetics and shit” bro your genetic tree is a circle if you go up high enough!!!
don’t they still have a birth rate problem too
bayachao gonna be 40 🙏
that’s everywhere in the world except India and Africa
osterproject is already old…
More game less code
@lone sky ngl
Ideal ratio is 100% game to 0% code
I think bayachaos presence in ayutadas server is scaring me 😭
I see babichao and im scared again
😭 😭
the Japanese woman is terrifying
@spare quartz what does Japanese discord use to say “leave server”
Ye but thats ok as long as its to ur own people
Like what does that button say
probably just 出
But let me check
Export
I wish making videos was easy
Video editors are like missile control systems to me
Hi 👋
Say to her はやちゃお様、私が怖いんだから、サーバーから脱退ください。
lol
NO
she makes such good art 🥺
I might be terrified at looking at them but it’s so peak
I really hope they don’t make art in the NSFW channel though. 😭
Hello
You’re strange
Says u...
do you think they can code this so we can have kids with 10 IQ
that’d be cool I t hi NK
This is ur whole personality
My entire personality is only true statements
That’s a boring personality if you have no variation
The fun comes from showing people whose personalities are only false statements (you) that they’re wrong :3
what are your opinions on the Erlang BEAM virtual machine
I do not know what that is
Ok.
It is certainly an ACM
I hold no opinion
supposedly very good for highly concurrent workloads
Well, so is the JVM
ACMs are easy to design, but resource management isn’t
This is why python was so bad for a long time
I think they’ve gotten better though? Unsure
Even more than the JVM supposedly
"erlang solutions" is like a post from oracle corporation
i will not trust this but ill still read it
hold on need to wash my glasses
I think it’s more neutral than you’d think
The JVM allows you to change the code while the program is running. It is a very useful feature for debugging purposes, but production use of this feature is not recommended due to serious limitations.
it should be noted that JVM hot-code replacement is not a specification defined thing
that is entirely within the realm of the java standard library, which the JVM could optionally integrate
continuing
kys whoever nerd reacted me
im reading
Since Java promotes the use of shared data structures, both threading models suffer from performance bottlenecks caused by synchronisation-related issues like frequent CPU cache invalidation and locking errors.
true, but this is dependent on, again, standard library/internal JDK stuff
the JVM does not mandate how synchronization should work apart from object monitors as part of synchronized
will not comment on GC part as that is not specification defined
BEAM doesn’t stop the world 
i will no longer comment on the entire article due to your comment
carrying onwards to breadmod...
it’s true though
your message is as the twitter users would say: "slop"
i can't possibly respond to it in any meaningful way
even though it’s not “specification defined” all GCs currently included in major JVM distributions will stop the entire VM to collect
even though it's not "specification defined" all locks and scheduling included in every program in existence will stop the entire program to collect
you have no idea what you are talking about if you think "every gc" stops the entire jvm
ignoring the obvious elephant in the room that is Epsilon...
but it’s true