#š½Programming Chat v2
1 messages Ā· Page 99 of 1
1.262 TB
Unless you actually want Microsoftās definition of a kilobyte
In which kill your self
damn why do crypto blockchains gotta be so giant
Wasnāt it a lot more than that
was it rlly
NO WAY
knew it was super bad
Wonder where all those bitcoins are at nowā¦
Or if thereās a pizza boy among the 0.1%
siiighghgh
flashback to when I ran a monero node and did a little mining and got my entire internet shut off for a day
no!
frontend work sucks...
cause you said a site
also why cant your silly static_microserver embed large video files hrmm
lowk if I ever get a domain I would make my website pure html
i dunno
it's the orbs fault.
destroy the orb, and it fixes everything.
youāre Strange harry
same
youāre both weird.
wait do you just mean like
the⦠website⦠is only html⦠and not the server..
yes just the website
you can't write a server in html lmfao
you canā¦
Iām preserving it until I wake up
ughhhhhh why is my stupid second phone number banned by telegram
who had this phone number before me and what did they do
I was gonna say 9/11
But didnāt you guys ban that or something
I donāt keep up with the rules
smh
Thatās my partners phone ā¦
They use a pixel I think
whut
- pay bayachao $300 for a commission of a ⦠nvm I donāt wanna say that here
yes the website
which
pick one
which would you do
lowk if I ever get a domain I would make my **website **pure html
the bayachao one
not allowed
not within original parameters
this you?
uhm
neither ..
Iām not gonna force anyone to do anything⦠and my phone works fineā¦
I have two phones anyways
hey me too
I have iphone and google pickle
?
LOL OK.
I think you're schizo
did you have to add special headers or anything to get your site to embed videos
I donāt think so
mm maybe it's the localhost proxy service idk
cause im serving a video directory off of my laptop
using a service that proxies traffic from a random url to it
and it's not embedding
let me run an instance of static server to see if it does
@spare quartz turn pc on....
pls
Sigh,,
host website on server that isnt pc that gets turned off
Iām waiting for memoryā¦
thx
downlaoded
That means I returned it
that I had on hand
bloated*
Hey
Itās technically the only one with x86/ARM embedded
why does only that one video embed lmfao wtf
Doesnāt for me on mobile
Oh
and it plays on desktop lmfao
Umm
pick a memorable domain
the domain bro picks
Can you send the file that embeds
uh sure
Meaningless

(but only if you leave survivors.)
the phrase means the opposite of this
Itās just slop that sounds smart but really itās from a guy who doesnāt know what computer really is
ok buddy go make a cpu with your own silicon
with your own silicon*
with my own code, yeah
but ironically I think you actually exemplify that phrase
how
cause you code just because you want to
not because you want anything out of it other than the knowledge
well I have expectations and itās for this thing to be compliant with whatever itās for
ur mom
what was said in the video was like
"dont code to land a good job and make money or similar, code just because it's fun"
booooring
so lammmme
how about I kill you
you lowk are kinda frustrating
how
Iām a very simple matrix of responses
To clarify, DO NOT shoot weapons @ #Irma. You won't make it turn around & it will have very dangerous side effects
64% comatose patients
Nah get rekt
ā::<>ā
Turbofish ā¤ļø
The world is ending and society is collapsing ā¤ļø ā¤ļø ā¤ļø ā¤ļø ā¤ļø
dead in the water
You wish

making file transmission even more efficient by leveraging three stages
- OS-backed file transmission (FileChannel direct)
- directly-allocated byte buffers with defined size
- directly-allocated byte buffers with undefined size
1/2 are both non-allocating, while 3 has to allocate a tiny amount for hex strings in transfer-encoding
much better
and only 3.03 MB of allocations for a 50 GiB file
I re-wrote the code for my bandwidth monitor but switched out megabytes for kilobytes


theoretically this works
oops forgot indexing
nice
fun ByteBuffer.readString(c: Charset = Charsets.UTF_8, pattern: IntArray = intArrayOf(0)): String {
val enc = ByteArrayOutputStream()
val bucket = IntArray(pattern.size)
var bucketPosition = 0
try {
while (true) {
when (c) {
Charsets.UTF_32 -> bucket[bucketPosition] = this.int
Charsets.UTF_16 -> bucket[bucketPosition] = this.getShortUnsigned()
Charsets.ISO_8859_1, Charsets.UTF_8, Charsets.US_ASCII -> bucket[bucketPosition] =
this.getByteUnsigned()
else -> throw UnsupportedOperationException(c.displayName())
}
if (bucket[bucketPosition] == pattern[bucketPosition]) {
if (bucketPosition == pattern.lastIndex) break
bucketPosition++
} else {
for (i in 0..bucketPosition) when (c) {
Charsets.UTF_32 -> enc.write32(bucket[i])
Charsets.UTF_16 -> enc.write16(bucket[i])
Charsets.ISO_8859_1, Charsets.UTF_8, Charsets.US_ASCII -> enc.write(bucket[i])
}
bucketPosition = 0
}
}
} catch (e: BufferUnderflowException) {
if (enc.size() == 0) throw e
}
return enc.toByteArray().toString(c)
}
val CRLFi = intArrayOf('\r'.code, '\n'.code)
mutation
theoretically it's kotlin so it sucks and doesnt work
how are you more blind than ME
java user in denial
i am better than all java developers.
java user in denial
it is time to gradually destroy each of these classes
(except for Tagged/Writable since they're super omega super important)
oh and extensiblelongsv1/v2 since those are my project
what am i doing ag ain...
fixing video playback on discord
yes i know that
this is apart of that
just trying to make my brain NOT empty
you failed that objective when you used Kotlin
die.
Caused by: java.lang.OutOfMemoryError: Required array length 2147483639 + 9 is too large
hmm i messed up
classic java L
heap eating too much mem
also
a turbofish is used to apply a generic type argument to a function
normally rust can infer but sometimes it cant
val saveLimit = transferBuffer.limit()
transferBuffer.limit(min(transferBuffer.position() + dst.remaining(), saveLimit))
val amount = transferBuffer.remaining()
dst.put(transferBuffer)
transferBuffer.limit(saveLimit)
remaining -= amount.toULong()
return amount
so like example
let parsed = "2048".parse::<u32>().unwrap();
this is equivalent to
let parsed: u32 = "2048".parse().unwrap();
ć¦ććØć
we have these in kotlin, i just call them type arguments
bsl is full of them...
show example
that seems to me more like a generic definition
its the same syntax
yes its the same syntax
whereas a turbofish is like...applying the type
yes its the same syntax
it would be "test<Int>(5)"
ok there u go
yes because it can infer, and rust would tell you to shut up too
however something like
let sum = [1, 2, 3, 4, 5].iter().sum();
rust would tell you that it needs a type argument
so youd do something like
let sum: u32 = [1, 2, 3, 4, 5].iter().sum();
// or
let sum = [1, 2, 3, 4, 5].iter().sum::<u32>();
ArrayDeque<YourMom>()
"indescript number type"
look inside
i64
unless you populate the ArrayDeque you need to say its type...
then sum should know its an i64
it shouldnt need to be described
no im talking about kotlin
what
your integer is just an i64
no
and its called int, simpleton.
no
we do
its been defined since the 90s
an int in java is precisely 32 bits and is signed
a single number in kotlin will always be an int
if it has an L its a Long
i32 better
if it has a .0 its a Double if it has a f its a float
these are simple things.
write more kotlin.
gay and queer*
very clear what it is
i32... 32 byte integer
fat fuck
at least its not C
me when the int is 16, 32 AND 64 bits
he's not lying
but you should give your money to me
ill make an antivirus
If you don't answer me and don't make a deal I will delete all your chao art folders.
NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
oh right
can you remind me tomorrow
to save that image of the two fluffy things i want ... to be ...
to my art folder
okay.
š„ŗ
L
thats everyone in this chat ......
nothing can take away the human factor idiot.
go back to glazing AI or whatever.
rustlet.
being rude wont make atp like you more
I WISH
BUT TE IS MAKING MY BRAIN HURT
WWAAAAAAAAAHHHH
the thing is
i dont NEED te...
but for feature completeness with the older version i do...
funnily enough
the ORB is actually the newer version of
CORB
orb is called CORB++
??
šØ JUST IN: Florida airports have officially been notified that under a new law signed by Governor Ron DeSantis, they need to submit MONTHLY REPORTS on geoengineering and weather modification activities...
ļøļø
ļøļø...or lose state funding.
ļøļø
ļøļøWe were told it doesn't exist, though.
**š¬ 1.3Kāš 10.1Kāā¤ļø 35.6Kāšļø 1.33Mā**
so whats gonna be on the sheets they give back
so tired
so close to fixing ORB though
just need... to TE...
unfortunately i think my compiler exploded
wait no its alive again
GOOD
NO MORE KOTLIN
exploded because poorly built
like rustc
@ghestnor @thestonechat A switch is faster in most cases.
do people just not know the general concept of what a switch block is anymore
the orb will finally be fixed soon
override fun read(dst: ByteBuffer): Int {
if (!locked) return -1
if (transferBuffer != null) {
if (!transferBuffer.hasRemaining()) {
transferBuffer.clear()
val read = from!!.read(transferBuffer)
if (read == -1) throw EOFException()
transferBuffer.flip()
}
if (remaining == 0uL) {
if (readTrailer) transferBuffer.readString(Charsets.US_ASCII, CRLFi)
remaining = transferBuffer.readString(Charsets.US_ASCII, CRLFi).toULong(16)
if (remaining == 0uL) {
close()
return -1
}
readTrailer = true
return read(dst)
} else {
val previous = transferBuffer.limit()
val transfer = minOf(
dst.remaining(),
transferBuffer.remaining(),
remaining.coerceAtMost(Int.MAX_VALUE.toULong()).toInt()
)
transferBuffer.limit(transferBuffer.position() + transfer)
dst.put(transferBuffer)
transferBuffer.limit(previous)
remaining -= transfer.toULong()
return transfer
}
}
if (remaining == 0uL) {
close()
return -1
}
val read = from!!.read(dst)
if (read == -1) throw EOFException()
remaining -= read.toULong()
return read
}
because of THIS
that i finally came up with
its not perfect and i expect itll break down when faced with a client who PSHes a very small amount of data
but good enough for now i think
Me when I make a jump table instead of a branch
the silly thing is they're both the same concept at the machine level
just that for a single branch a jump table is worse
because then you have to either run the two conditions in serial (if you're not optimizing), or refer to memory instead of the condition register
but because of yandev its just "better"
åµćØć
rargh we need to teach everyone assembly rargh
How about we assemble you and see how you like it
ćććć
lawd
implementation("org.bread_experts_group:bread_server_lib-code:3.4.3")
the orb has beaten my ass
one more time.
SIIIIIIHJJJ
@timid quartz @lone sky made a new minecraft server... unforutnately i thnk im unpopular :<
what about now.
They can still smell the stink thereās nobody there
they're all flocking in with the new logo
i saved a spot JUST for you
Mhmm sure
(when i wake up later
drink 4L of soder and do it now
no.!
Upon doing some research
This might be the first completely dependency-less Minecraft server
I mean hell even Minecraft uses Netty
Gooood
Reading into netty was a mistake
Need to wake up again. Need to develop Minecraft more. Need to make our own TLS
i am getting started on it now
i have 12.780 +- 1.2 L of soda right now
wdym
first person who actually tried joining the bsl "server"
oooh!!!
[ę å ± | 07/16 15:41:53.089353 | tmp | test[1]] MinecraftPlayPacket.CLIENT_SETTINGS[LockedReadableChannel[Unlocked]][en_us, 12 chunks view, chat: Enabled [0] (with colors), displayed skin: [CAPE, JACKET, LEFT_SLEEVE, RIGHT_SLEEVE, LEFT_PANTS, RIGHT_PANTS, HAT], Right Hand [1]]]
haha neat
/fill ~ ~ ~ ~100 ~100 ~100 minecraft:tnt and light it
ppl really desire a stable multithreaded mc server so...
and also mc client
being technical
its actually two "servers" there
since rn the connection is just the entire "server" simulation
š¤
Full Playlist: https://youtube.com/playlist?list=PLq44zq7R2Kq4zjx-qFBAGuOzhVaQhaMGh
Hit the Like Button, comment and subscribe for more! =)
another Japanese person successfully communicated with
what.
proof or didnt happen
Left screenshot is a bandwidth monitor, very simple, this one specifically displays internet usage in kilobytes but it's very easily changed.
Screenshot on the right is a compliment and reminder code, when running it displays a random compliment or reminder in the VSCode terminal, also very simple and you can just add more quotes in whenever you'd like.
This is something I just made and I'm genuinely really proud of it, this is like the most complicated thing I've done that I FULLY understand and it's genuinely helpful for me as someone who wants to do electrical engineering in the near future
Once again, it's relatively simple, but genuinely cool in my opinion. It gives you 4 options in the terminal when you run the script, where you can choose what to calculate. Depending on what you choose, it'll then ask you what for example current and resistance you already have, to then calculate the voltage.
i dunno how extensible python is in this regard
but you could expand what you have now into an object-oriented (or whatever is like that in python) design
so an electrical Component like a Wire, with internal resistance, plug in a voltage/current, get something out...
or figure out how to do unit calculations like input: 5 VA = 5W
whatever floats your boat...
I'm glad cause you are genuinely enjoying writing code which is the most important part
Doesn't matter that it's simple or small at all
just thought you'd find this good news
Yeah, I'm actually quite sad I've just given up in the past
Now that I'm genuinely trying and making projects, I find it really fun and satisfying as long as the code works
Still a beginner though, lots of things I don't understand fully and I probably won't be able to single-handedly code for quite a while
well you never ever really "single-handedly code"
you're always gonna need someone or something...!!
Nah but like, I mean at least being able to write a short code without having to look up a guide š
theres a term i forgot... let me try to find it...
Tutorial hell?
you when you literally do everything yourself
Tbh, it's not like I've been coding for a while either
no just memorizing
I started like a week or 2 ago and haven't been coding actively every single day
okay but im able to do that cause i can read a specification
oh crap
you just reminded me
i need to download those papers codev sent me
I've seen some of your guys' conversations in here but like
What are you actually making?
everything
o-
not now
im not working on that
all of these papers i am working on
all sorted
oh neat, what specificly did u think I would find as good news?
well
I mean don't get me wrong it is good news but idk how it applies to me specifically
by unified i was hoping they meant like, instead of clion and alike being discrete things they'd be just plugins ... but considering its just merged community/pro edition... and you're an intellij user... still felt fine to share
oh gotcha, see I thought it was a unified editor too
but they already have that - its fleet... iirc?
but yes, unified product for intellij is nice nonetheless š
and looks like community version gets some goodies
isnt fleet a network system type of thing
which'll be nice once I have to switch š
like central computer that serves editors to remote clients
I thought fleet was supposed to be the everything editor
i think its supposed to be their analog of the online github VSC thing
network systems are just like
you have a central computer with all the files n crap
I think its their vsc analog then yea?
looks like a light editor that'll do many languages
and it serves out an IDE panel to remote clients to edit those files remotely and compile it remotely, etc
oh hey thats neat
possibly...
i think i get it for free under the edu pack but i dont have anything that could benefit from it rn
oooooh this is very nice
In the unified distribution, IntelliJ IDEA lets you connect to your database and view its schema (tables, columns, indexes) directly within the IDE, even without a subscription.
oh okay thats great
I really like the database tools in ultimate
so having that when I use community is š
oh wait its just the schema bruh
nvm
they baited me
oh
While you wonāt have access to data or SQL execution without a subscription, this feature offers a beginner-friendly view of your database design.
š
datagrip is the fuckin goat
extensible_image_archiver
not good enough!
extend it then.
nuh uh
taggart better
yea
yeah
i need to add a file viewer to this
survey says: NO!
This is how Chapter 6 will end
Quoting HYPEX (@HYPEX)
ļø
SIMPSONS MINI-SEASON IS SET TO END WITH AN EVENT
ļøļø
ļøļø[VIA @blortzen]
is this true
oh that looks bad
čøćļ¼čøćļ¼
the jerry rig army
scratches at level 6
with deeper grooves at level 7?
Jerry being based as always
ćä¼ē»ćēŗå£²åć®ä»ććć§ććŖćļ¼#ć§ć³ć³ć ć«ć¾ć¤ććč³Ŗåćäŗę³ćęę³ćčåÆā¦ććććć”ćć»ć¼ćøćŖćć§ććéććć ććļ¼åē»ć§ē“¹ä»ćć¦ććć¾ććēŗå£²å¾ć«ćććč¦ć¦ē¬ćććć”ćć»ć¼ćøććć”ćććć©ććā¦ā marshmallow-qa.com/bayachao?t=MbSRqr&utm_medium=twitter&utm_source=promotion
Siri, translate this post
Driving in my caaar right after a beeeer
Hey that bump is shaped like a deeeeer
DUI? How about you die! Iāll drive a hundred miles! In an hour!
een bee tee
Furry š«µ
also itās not playing stupid
Furry
ā
Furry.
Ew gross
If you wanna do something good then make a spiritual successor to Thaumcraft
i hate that mod
wrong
Thaumcraft, AE2, Mekanism, The Betweenlands, Botania, Blood Magic, Astral Sorcery
Such good mods
Oh Immersive Engineering too
Create
I only know mekanism
integrated dynamics on top btw
Every time id get looped into a modded mc server I would always be tasked with making that mekanisms ore tripler I did it like 4 diff times
every modded mc server i got into i immediately began automating AE2 recipes with mekanism factories and sorters
i came up with my best design on the JKR server
completely parallel and automated AE2 processors
@unique relic
hi ultrA!
funny you mention ae2
Hi ultra!
very funny..
Yea?
also hi!
no way you're playing minecraft too
im faking a server rn
š
faking??
soon we will have a mix of a DNS server AND minecraft
AND IRC and HTTP and POSIX and ACME and
yes!
you know you can already do that
but functionally the same smh
this isnt multiplexing we're putting those in the server
plus that can't simulate x86 inside the server either
š
Oh
thats my trump card
on minecraft or just in general?
The files were on my desk but next second they were gone it was weird I tell u
OK harry.
Either
well on MC i'm playing ATM10, it's me and an irl friend on a public server
-# and the other dude much rather prefers to do minecolonies so I'm left to basically solo the whole modpack
Huh wait rlly
probably not i just hate it personally
the server admins disabled FTBChunks forceloading (performance reasons) and disabled the ability to place AE2 spatial anchors so I had to find a workaround for that
Lol idk what atm10 is but sounds very fun š
all the mods 10
formation planes!!
(they can still place spatial anchors)
Well I just remember snipe wanting to play it tho we never did
Oh ok must be a lot of mods
also I have a computercraft setup to automatically remove the spatial anchor if we're both offline, to minimise the risk of detection š
Wait huh
yknow... lavas house... that we burnt down on accident...
oh I remember the war we had, me harry and snipe vs you and your team
we had camoflague btw
i really didn't care much for the war at the time, I just wanted you to not use your /op to take drives out of my ME system š
i remember one time you took disks out of my ME drive while I was trying to run a crafting job
it pissed me off so much at the time
Loooool
LOL i dont remember that but it was probably funny š
oh yeah it definitely was lmao
š„± never heard of it
The war was more like
you're lame and you should quit minecraft
NOW!!
We were gonna build a cannon forge or factory
i've not done integrated dynamics yet, i've heard it's really goated though
integrated dynamics is coo.
speaking of goated, I've been trying to get into SFM (super factory manager)
Oh also we built an airfield
yeessss
If you like it then it probably sucks
with embedded turrets
at the time i thought you guys stole our idea for that runway on the mountain
cause i think our elevator-runway was superior
(it was)
Is that the factory for super earth
Honestly Refined Storage over AE2 just because recipes are easier and cables donāt have limited bandwidth
cave bases šŖ
our base was jank as hell tho ngl
our me room was also the crystal collection room
oh yeah did you guys know we had a surveillance station near your base?
it was using one of the CIA tools i wrote on a computer near you
WHAT
LOL
no, basically it's a script that you can define triggers for (on redstone pulse, on n ticks, etc) that lets you move items, fluids, etc. from one set of blocks to another
it's basically like working with CollectionService tags
it beamed data back to us remotely
oh yeah I saw that
looked pretty neat
next to one of their houses
in an iceberg or smth š
i dont remember exactly
im not sure if it was actually infinite
i think snipe said it didn't work even though it was at the buckets required
@unique relic hey need a third opinion: is ATP a furry [Y/n]
can't remember with full certainty but i remember the rope pulley not saying infinite
Oh hm maybe yea
uhh please hold
Those servers were fun
åćć¾ćć¦ļ¼ććµć©ćć§ćć
čÆćć£ććčćć¦ć£ć¦ćć ććć
ę²ćę åļ¼ććµć©ć
ęļ¼éé³ććSV
inst,lyric
https://drive.google.com/drive/folders/1DpT0zAnJJwdeTeOgXtOnGJIAng7b-Lok
need to confer with my transformer model
the attack of rob and creativ
And to think that what would kill them is
What even happened
I think lava accidentally killed snipe
The snipe killed him back
And the lava used op to kill snipe again
MAD or something
Idk if thats a misinterpretation of things
Youāre not allowed to DM ATP smh
šØ
ATP is definitely NOT normal
Hm?
Your machine is broken
čøćļ¼čøćļ¼čøćļ¼
it probably is too
mutually assured destruction
haven't maintained the bot in ages, it's a wonder how it still functions
Oh yea
whar
because discord takes decades to bring their deprecated apis down
i believe it's using the v10 api still (NECos)

that's actually pretty tame for a swiftie
what is that
it is the best keyboard ever made
216-key keyboard?
i've learned enough mekanism to make the 5x setup by myself š
wow your render distance is really low
Theres a 5x setup?? I thought 3x or was it 4x was the max?
keyboard enthusiasts when I tell them I've been rocking the Logitech K120 since 2019
Thatās it youāre going to a re-education camp
ive been using my KB216 since 2020
i've not had my main PC for months due to personal reasons
its "died" once and came back to life
Wait why
Oh
Ig u cant share
personal reasons :judgement:
MB
hey at least its not confiscated rightttt
it's not something I want to share in QSP of all places but if you want to know then ask me in DMs
no, it's not confiscated by the feds or anything
the police took my computer from 2016 and havent given it back š
probably not even worth it anymore!
Oh I was referring to the arrow keys in that image being terrible, the KB216 is a stock keyboard not great not terrible but noticeably cheap in quality
Confiscated for that dangling across multiple buildings ethernet cable run
its not cheap in quality!
oh yeah that setup doesn't exist anymore lmao
NOOOO
Also mesh <<< mechanical forever
it hasn't for a while, since maybe 2023 or 2024?
no real use found for mechanical keyboards
every use found for mechanical keyboards, total mesh keyboard death
Wheres that quote
i hope your keyboard dies
no use found for ATPās brain
thank god im a Large Language Model by OpenAI
I hope yours snaps in half
ill get another for $20
another reason why the KB216 is the superior keyboard
cheap in quality.
LITERALLY
I daily drive a keychron
But ive used ergo keyboards before and rlly enjoyed the lily58
100 payments of $20 vs 1 payment of $300
or if they have an open mic...
Damn theyāre really using GIFs of you as memes?
i am not a blue blob
Prove it
Burden of proof is on you
Doesnāt apply
You are a screaming crying blue blob.
I canāt wait for my gene-edited MAGA super soldier babies
The genes for liberalism forcibly removed from their bodies
No, but Donald Trump has been diagnosed with chronic venous insufficiency.
Arleady Posted.
@flint belfry this is also for you
Repost...
He's already seen it.
Donāt care
Repost.... Part 2
My version is funnier
K
LOL
To license this content click here and use āRM1ā code at checkout
https://www.jukinmedia.com/licensing/view/1188173
he did not make it
why tf does he even have a free standing matress behind him
is he just trying to get crushed
wh
Coding SUCKS
I wonder what this game even is
the solution to programming is inventing problems and finding solutions later aera
you need to make more problems.
WAIT THIS SAID CODED??
you might be blind
YOU are cooked
š š
alrigth
me and chris found a solution to our bsl minecraft problem
we'll make a neco meuseum and have it create a server for every player
My problem: you
My solution: ICBM
Damnit I wanna go back to Japan again š
"and ever want to mess with your fellow network engineers" more like fucking creating a cognito hazard
spaghetti cable managament is one thing this is another
let icbm = Icbm::new();
icbm.launch(atp.coordinates());
@spare quartz did you get it yet
?
rust is so slow itll never get here
blazingly fast actually
it's hypersonic
it'll be there in a minute or two
based af
53 minute video to tell me why it makes you dumb and slow
I think i know the REAL slowpoke
erm it's a section of a stream
JavačØčŖć§ęøććć¦ćęč©ćę°å¦ēćŖč”Øē¾ćććććććć¦ććććć
nice google translate nerd
aerasto calling text from a japanese person google translate counter: 3
: 3 more like :3
furry
i finally figured out NBT
now to write it
this thing will make parsers so much more efficient
JSR 239
Actually, I have something serious on my mind today.
?
The United States Army Field Band performs the famous Civil War-era piece, "The Battle Hymn of the Republic."
Lyrics: Julia Ward Howe
Music: William Steffe
Setting: Peter J. Wilhousky
Arrangement: James Neilson
Conductor: 1st Lt. Alexandra Borza
Lyrics
Mine eyes have seen the glory of the coming of the Lord;
He is trampling out the vintage wh...
The Rust-public
gotta say
the minecraft wiki does not know how to write a specification for a format
@spare quartz Naan.
OKćć¶ć«ć
booo
grossss
stop being strange aeras to .
while true considered best construct ever made
and its all cause i can do this
yeah
i am never trusting imdb again
imagine needing while (true) when you could have for (;;) (C), while (1) (C), or even better, loop (Rust)
loop
null;
end loop;
rust syntax considered harmful
while (1) {
}
for (;;) {
}
ćć¼ćć
ć°ć³ć”ćć
čæ·ē¬
First Dia, now Comet!
ļøļø
ļøļøThe onboarding experience in these new-gen browsers feels magicalāØ
"magical" mfw it's just a pre-rendered blender animation
20 seconds
also perplexity has been through a lot of drama about scraping sites that were disallowing them to
im gonna tell mojang you're making bootleg minecraft servers
dude
i hate the whole
"AI browser" trend