#💽Programming Chat v2

1 messages · Page 101 of 1

spare quartz
#

ロゼットちゃん(娘)(OSTERさん)との初コラボ配信!OSTERソングを歌わせていただきながら楽曲の制作秘話だったり、OSTERさんとの出会いなどなど、雑談していきます🌟

🌟本家動画みて!!!!!!!!(布教)
ユメクイ
http://www.nicovideo.jp/watch/sm8947460
フキゲンワ...

▶ Play video
#

shes running out of breath in the middle of the song 😭😭

timid quartz
#

i hope now that she has a husband that she focuses on him and her family and stops streaming and making art and becomes normal

spare quartz
#

dude shes had a husband for like 2 years

timid quartz
#

good she's two years closer to becoming normal

spare quartz
#

never

#

especially since whats gonna happen in 3 MONTHS!!!!!!

lone sky
#

lacks enough cells to perform basic actions.

timid quartz
#

also ngl I'm willing to bet $20 they got married to avoid the single tax that's rolling out in 2026

spare quartz
#

WHAT 😭

rustic vine
#

hey do yall like sparkling water

spare quartz
#

worst thing to ever say

timid quartz
#

I mean

#

it's happening

#

tax hike for singles starting in 2026

spare quartz
#

source ?

spare quartz
spare quartz
rustic vine
timid quartz
#

aaaa

#

asdjfklasdiuofha

#

sdfiaosdv,mnasd'fcoasuidofa

#

[sdfihasdf

#

asdf8]asdf

#

[po

spare quartz
timid quartz
#

gin

#

he so goofy

spare quartz
#

huh

#

so BSL http is faster than what go is doing (they have a latency of 30 us per op, while we only have 3.5 us)

#

but because our sockets are blocking we're going a bit slower

#

i'll need to reearch non-blocking in the future

timid quartz
#

bls perpetually slower than go

spare quartz
#

the request socket isn't blocking but the response socket is

#

but theirs is 27,364 ns / op, ours is 3,549 ns / op

timid quartz
#

it's because of your under-reliance on libraries

#

and literally anything else

spare quartz
#

im literally showing you our server is better performing than them

#

but we need to study the I/O

timid quartz
#

mm I bet it does better in other situations

#

(gin)

spare quartz
#

i mean literally every benchmark on their github shows worse performance than us

#

by at least 5 times

timid quartz
#

mm ur software is just tailored to look good on benchmarks

spare quartz
#

#

our benchmark is crappy

timid quartz
#

yes

#

your benchmark is giving you false stats

spare quartz
#

ergo its showing WORSE stats

#

than what we should be getting

timid quartz
#

it's showing you better stats than you'd be getting

#

by about a factor of 10,000

#

wait no 100

#

factor of 100

spare quartz
#

i need a herrrrrooooooooo

rustic vine
#

if only u wrote assembly it would be faster

spare quartz
rustic vine
#

its a running joke that we always try to include a little assembly in our code cuz it makes the code faster

spare quartz
#

unfortunate

rustic vine
#

even if its something dumb

#

and pointless

#

usually it is

rustic vine
#

I feel like that worked before

#

must've been in a different version

spare quartz
#

i could write that instruction but i dunno what it'd do

rustic vine
#

um

#

it'd make http faster

#

!!!

spare quartz
timid quartz
#

rule #1 never trust benchmarks that someone makes themselves

spare quartz
#

do you want the benchmark

timid quartz
#

500k r/s

#

honestly maybve still off by a factor of 10 but

spare quartz
#

die

#

now all the time is spent decoding strings

timid quartz
#

should be spent switching to rust

spare quartz
#

1.831us
done 546149.6450027308 r / s

timid quartz
#

yeah too high factor of 10

spare quartz
#

you're just afraid of the march of progress.

timid quartz
#

you've yet to beat a rust framework or even the ts framework I linked earlier

spare quartz
#

its cause of the blocking socket

timid quartz
#

only 2% increase

spare quartz
#

nope

timid quartz
#

yope

#

also I forgot my fuckin macbook charger at my work I think

#

le big cringe I dont wanna download 🤢 coding stuff 🤢 on my pc

spare quartz
#

thanks for being annoying about perf

#

you have unironically helped me 🙏

timid quartz
spare quartz
#

well when you're incessant about it im forced to profile

#

CHROME* is really dumb btw

#

worst probe ever

spare quartz
#

anyways more efficient static server as a result

timid quartz
spare quartz
#

no way, you were checking if that fixed ORB too?

#

unironically i had a thought in my head that if efficiency improvements caused by you fixed ORB, i would unfortunately have to thank you

#

for finding lost hikers or whatever

Quoting Lukas Ziegler (@lukas_m_ziegler)

A drone or a submarine? 🫧
︀︀
︀︀A student just built a drone that flies through the air and swims underwater — and it actually works.
︀︀
︀︀As part of his Bachelor’s project, Andrei Copaci created a 3D-printed, hybrid drone with variable pitch propellers, meaning the blades shift mid-flight to adapt between air and water.
︀︀
︀︀Just a laptop, a printer, and a smart idea.
︀︀
︀︀The drone is fully custom-coded and transitions seamlessly between flying and swimming.
︀︀
︀︀We're entering a new era, where curious students can prototype what once took massive funding and R&D efforts.

**💬 5 🔁 17 ❤️ 340 👁️ 4.8K **

▶ Play video
timid quartz
spare quartz
flint belfry
#

said basic actions being not installing steamos on everything

timid quartz
#

Steam OS more like just use windows

lone sky
#

no thanks air ass toe

flint belfry
lone sky
flint belfry
timid quartz
spare quartz
#

test

#

okay thats fast

timid quartz
#

another reason why I dislike ts

#

all the work you gotta do just to get request validation

#

this may be a fastify skill issue though idk

spare quartz
#

you have to validate the entire schema against the request… looks about right

#

Oh I see

#

I thought that entire block was supposed to be the body

#

Nvm

#
fun read(from: InputStream): ACMEOrderResponse = json(from).asObject {
            ACMEOrderResponse(
                withString("status"),
                ZonedDateTime.from(
                    DateTimeFormatter
                        .ISO_DATE_TIME
                        .parse(withString("expires"))
                ),
                inArray("identifiers") {
                    it.asObject {
                        ACMEIdentifier(
                            withString("type"),
                            withString("value")
                        )
                    }
                }.toList(),
                inArray("authorizations") {
                    URI(it.asString { value })
                }.toList(),
                URI(withString("finalize")),
                (entries["certificate"] as? JSONString)?.let { URI(it.value) }
            )
        }
timid quartz
#

and it's kinda cringe because there's no autocomplete for that syntax

lone sky
spare quartz
#

anyways hold on to this

#

okay found it

timid quartz
#

like that's just

#

insanely easier

#

but the difference isn't really in the lang but in the framework

spare quartz
#

string hell 💪

#

okay hopefully this works

timid quartz
#

it wont

#

coding sucks

spare quartz
#

CALL jdk/NativeStringUploader: private native void upload(java/lang/String p1) - サーバー - VirtualMachine:65
12:35:15.698 ServerScriptService.JavaVirtualMachine.VirtualMachine:72: no code attribute

#

okay native function time

timid quartz
#

man I know something to do that might also make me lose all will to live

#

make an actually decent TS web framework

spare quartz
#

JVM printed something!

timid quartz
spare quartz
#

just need to putfield this and decode

#

and i should have my string back

#

looks like its properly sized

timid quartz
#

"micronjdk"

spare quartz
#

named it that because its only composed of 5 classes

timid quartz
#

should have called it bayajdk

#

Omg snuuy

spare quartz
#

ew

#

babio 💪

timid quartz
#

babio is not comparable to sunny at all

spare quartz
#

yes he is

#

hes better

timid quartz
#

babio is demented

spare quartz
lone sky
#

I think you

#

shouldn't

#

send that here 😭

#

@wraith scarab can you cite me on that btw

lone sky
spare quartz
#

OBJECT SPECIFIC FIELDS

#

now to decode

#

IT WORKS!!!!

wraith scarab
#

IDK WHAT IT IS

spare quartz
#

only took me 2 days

lone sky
#

the drawing i replied to

#

can you umm

#

tell me if it breaks any rule

wraith scarab
#

IDK

#

if the source is bad or its cropped shit then maybe

#

otherwise its on topic because its programming chat and ur all like that /s

spare quartz
#

@timid quartz just figured out why babios birthday is today

#

japanese people are freaks, yet again

spare quartz
#

contextually executed methods for call-stack

spare quartz
#

Objects.toString() (initial test)

#

terrifying

timid quartz
spare quartz
#

first bit of reflection

timid quartz
#

horrible

spare quartz
#

no way this is actually working

timid quartz
#

it's not working

#

:3

spare quartz
#

IT WORKED

#

actual reflection

timid quartz
#

❌ didnt work

spare quartz
#

hmmm

#

how to stringify a number...

#

stringconcatfactory again aughhhhh

#

@rustic vine okay so sorry for pinging you but

#

is there any luau implementations for the bare metal?

#

or something like that, at least? a funny idea just came into my head about using this lua JVM as a basis for the BSL bare metal project

#

(it'd be a circular workflow... assembly written in kotlin, to run a JVM written in lua, to run kotlin code... but funny idea nonetheless)

lone sky
timid quartz
spare quartz
#

worlds best stringifier

timid quartz
spare quartz
#

timid quartz
spare quartz
timid quartz
#

plant

spare quartz
#

no

timid quartz
#

Yes

spare quartz
#

#

stock

timid quartz
#

Plant

spare quartz
#

no

timid quartz
#

Small plant

spare quartz
#

no

#

stump

timid quartz
#

You built like a stump

spare quartz
#

im going to fire you

spare quartz
#

corrected the arithmetic

#

just need string concat... which is hard..

#

at least it has the math right

pastel tinsel
#

we don't even do it that way

rustic vine
spare quartz
#

a luau vm that runs without an environment like an OS

#

in other words, "as the kernel"

#

time to drive nails into my eyes finally

rustic vine
#

I remember reading that someone wanted to

#

but I don't think that ever happened

spare quartz
#

ah

rustic vine
#

I don't believe theres one I'm aware of

spare quartz
#

well.... i could maybe try later after im happy with this jvm....

rustic vine
#

maybe this would interest you?

spare quartz
#

ive seen it before, but why do you say that

rustic vine
#

baremetal... I think

spare quartz
#

oh dont worry

#

kotlin is baremetal

rustic vine
spare quartz
#

whats this in context to?

rustic vine
# spare quartz whats this in context to?

it compiles luau bytecode to native code for either x86_64 or aarch64

how native...?

i mean, it's literally native, but you'll need some runtime stuff to run baremetal

spare quartz
#

it compiles luau bytecode to native code for either x86_64 or aarch64 is this about crystal, or the project you mentioned

spare quartz
rustic vine
#

this is abt luau JIT

spare quartz
#

oh that

rustic vine
#

and running luau baremetal

spare quartz
#

JIT is mega complex wrt to no environment

#

if it has AOT that could be interesting

rustic vine
#

well there were 2 discussions ongoing

#

the first response was to someone asking about how the JIT works

#

the 2nd discussion was abt running luau baremetal

#

so I assume aot native compilation like luau has now would be similar

spare quartz
#

i see

rustic vine
#

sounds like it wouldn't be too hard... but why?

spare quartz
#

it seems like a moderately funny idea (and would mean deploying a jvm baremetal would be easier initially)

#

since from my apparent view the luau vm is simpler than the jvm

rustic vine
#

the lua vm is incredibly simple

#

luau's vm is not much more complex

rustic vine
#

he was telling me how trump is basically insider trading

#

24/7

#

cuz he can hugely influence the news and thus the market

#

so like hes definitely telling all his friends what hes gonna do next

#

so they can short or buy

spare quartz
#

ez strat

rustic vine
#

bro its actual cheats

#

free money strat

spare quartz
#

unfortunately firing that fed chair guy would mean the market would crash

#

so hopefully he doesnt actually 🙏

rustic vine
#

lol

#

lowk powell fixed the US

#

he unironically did good during covid

spare quartz
#

very true

#

idk how he did it but almost nothing changed here price wise

rustic vine
#

I know how he did it

spare quartz
rustic vine
#

as best as he could've given the circumstances and who was in office, lol

#

just a funny video

rustic vine
spare quartz
#

i sure wonder how people can code on the gpu so well

rustic vine
#

I assume doing that isn't even too difficult, mc is just super dated and crutched by old design decisions

spare quartz
#

i dont know anything outside of the cpu

rustic vine
#

but maybe its super impressive idk

#

I can't judge cuz I ain't a gpu wizard either lol

spare quartz
rustic vine
#

ye that sounds abt right

#

its ok notch will make mc 2

#

also notch seems to have some pretty bad takes

spare quartz
#

he's also got a tiny bit of an ego

#

i dunno if he's gotten better there but i remember him yapping about people who use a premade game engine like unity aren't real programmers

rustic vine
#

yea im thinking abt that too

spare quartz
rustic vine
#

what happened in jan

#

he got abudcted

#

thats the only explaination

rustic vine
spare quartz
#

no

rustic vine
#

ok LOL I had a sudden like

#

revelation

#

oh nvm ur still a pretty big addict

#

@spare quartz

spare quartz
#

who

#

also just to be clear i mainly just support jvm/kotlin

rustic vine
spare quartz
#

"jvm's potato of a type system"

#

what programming language does he use

rustic vine
#

it kinda is a potato

#

sometimes

#

I think he writes ts at work

spare quartz
#

well ts is basically just a solver on top of a potato of an engine

#

so i dont wanna hear it

rustic vine
#

LOL ok

#

thats true

#

at least the solver is decent

spare quartz
#

very

rustic vine
#

but yea type erasure is kinda annoying sometimes

#

and boxed primitives is yucky

spare quartz
#

im hoping the team behind making generics better can get a beta jdk out soon

rustic vine
#

no primitives in generics is um

#

🙁

spare quartz
#

since loom is getting one out

#

and loom is amazing

rustic vine
#

whats loom

spare quartz
#

structured concurrency

rustic vine
rustic vine
spare quartz
#

here

rustic vine
spare quartz
#

one of their biggest contributions are virtual threads which are kinda just coroutines

rustic vine
#

don't coroutines already exist in 21

#

or continuations at least

spare quartz
#

virtual threads yes

rustic vine
#

oh they contributed that?

#

thats cool...

spare quartz
#

i believe so

rustic vine
#

yes the api looks pretty good at a glance

spare quartz
#

i use virtual threads almost everywhere i can cause of how cheap they are

rustic vine
#

I hope I get to use it for something real 😁

spare quartz
#

it also means theres an alternative to NIOs solution...

#

which was come up with in... the early 2000s

#

i hope jdk 25 makes aot nicer

#

i tried it but it just complained a ton

wraith scarab
#

why are you all like this

spare quartz
#

?

wraith scarab
#

the most random shit 💀

rustic vine
#

whut

#

wym

rustic vine
#

25 years old stable!

spare quartz
#

tbf its had a ton of improvements over the years since the JDK team still has to maintain it every release

#

but still the outward api i find hideous

rustic vine
#

no I imagine it does

#

but some things require ripping it all out

#

to fix

#

cuz we just didn't know better when the api or underlying mechanisms were designed

#

I wonder if we'll ever move away from OOP into something new

#

that would be cool idk what tho

spare quartz
#

project babylon hopes to make java usable in different fields

rustic vine
#

I think its rlly easy to fall into a deep trench with OOP and the pitfalls are many

#

and often its not taught correctly imo

#

so people end up creating architectures that are completely unmaintainable

spare quartz
#

and kotlin is an example of functional programming fitting nicely within the JVM (invokedynamic powers 99% of it)

rustic vine
#

ye definitely

rustic vine
#
  • hard to understand
#

streams api is a good example

#

its rlly good

#

unfortunately I don't get to play with it often

spare quartz
#

i will murder these ips eventually

#

unfortunately i dont know how to detect ssl comfortable yet

rustic vine
spare quartz
#

no but they're interesting

#

i just wishi could understand the weird requests to see what they're trying to do

#

cause sometimes they try and send viruses to me

#

like this

rustic vine
spare quartz
#

the random ips

rustic vine
#

oh

#

if you don't care about processing them ig its no big deal

#

I just know fail2ban does pretty well

#

with stopping them from eating up processing time

spare quartz
#

hmm

#

got the callsite... now what..

timid quartz
spare quartz
#

right i have to actually..p assin stuff..

timid quartz
#

just another memelang

timid quartz
#

will that even work with the way sky has it laid out in the test repo

#

cause I don't think it will

pastel tinsel
#

I think

#

it would require like

#

maybe three changes

#

since it just ties in as a whatever you call it

timid quartz
#

well cause rn sky uses a plugin to auto-load the routes

pastel tinsel
#

preload

timid quartz
#

rust is way cleaner imo

#
use serde::Deserialize;
use actix_web::web;

#[derive(Deserialize)]
struct SomeBodyData {
  field1: u32,
  field2: Option<String>,
  field3: bool,
}

async fn some_route(body: web::Json<SomeBodyData>) -> String {
  // do something
  return "hi";
}
spare quartz
#

hey thats like ours!!!!!

timid quartz
#

more like yours is like it

spare quartz
#

#

we don't use a dependency like """serde""""

#

is leetcode really that important ....

timid quartz
spare quartz
#

18,664

#

i neeeeed it

#

i neeeeeeeeeeed it so bad

#

WAHHHHHHHH UTF-16

#

☹️

#

java/lang/invoke/MethodHandles$Lookup p1, java/lang/String p2, java/lang/invoke/MethodType p3

rustic vine
#

😭

#

it already LOOKS like that

#

or better than that

#

c programmers will do anything but switch to cpp

spare quartz
#

perfect lang since 1970... should've stopped there... no reason to use anything else...

timid quartz
#
# A very basic HTTP server
require "http/server"

server = HTTP::Server.new do |context|
  context.response.content_type = "text/plain"
  context.response.print "Hello world, got #{context.request.path}!"
end

address = server.bind_tcp(8080)
puts "Listening on http://#{address}"

# This call blocks until the process is terminated
server.listen
timid quartz
#

I should switch to using exclusively gcc -std=c89 -pedantic -Wall -Werr

lavish dove
# spare quartz

The IRC chat when someone makes a new issue (they are so nice on GitHub and discord and then insult you on IRC)

spare quartz
#

No chat history on IRC (by default)!

#

bullying is free

timid quartz
#

Other programming langs vs Rust

spare quartz
spare quartz
#

It is now time to study them. Live!!!(?)

timid quartz
#

too dangerous

timid quartz
#

rrr coding sucks

spare quartz
lone sky
spare quartz
lone sky
spare quartz
lone sky
#

I don't hate you unlike them!!

spare quartz
lone sky
#

I have things I want to say

#

that I will not share here

timid quartz
spare quartz
timid quartz
spare quartz
#

Idk…

timid quartz
#

evil creature

spare quartz
#

Adorable creature

#

With terrible writing skills

rustic vine
#

dead internet theory?

spare quartz
#

Lukewarm internet theory

rustic vine
#

ohhhh

timid quartz
#

horrible internet theory

spare quartz
timid quartz
#

urmom

spare quartz
#

and my cached response is that is an AI written article for ragebait

#

so get back to work

timid quartz
lone sky
timid quartz
#

nor do I wanna do it

lone sky
#

just ask if they're in the k-

spare quartz
timid quartz
spare quartz
timid quartz
spare quartz
timid quartz
#

tf kind of demented gifs do you have

spare quartz
#

happy… m… happy… ma… happy… babio day yesterday!

rustic vine
spare quartz
rustic vine
#

huh

#

no

#

they are notepad++ users

spare quartz
#

no

rustic vine
#

do not lump us in with mere notepad users

spare quartz
#

notepad++ is a fad

timid quartz
#

vim user thank you very much

spare quartz
#

ew

rustic vine
lone sky
#

vim is an illness

timid quartz
#

spoken by a real non-vim user

lone sky
#

go back to GNU nano

timid quartz
#

ew

spare quartz
#

gnu nano is good tho

rustic vine
#

vim users when they have to code

but coding suuuuucks and idk what to doooooooooo
nor do I wanna do it

timid quartz
#

vim >

timid quartz
#

also not because I use vim

#

it's because coding sucks

rustic vine
#

thats what a vim user who doesn't write code would say

#

why are the admins poop color now

spare quartz
rustic vine
#

do they like being poop

spare quartz
rustic vine
#

its very poopy

timid quartz
spare quartz
#

Nah

spare quartz
#

Coding is what made that image possible

#

therefore it’s amazing

rustic vine
#

bro... aera..

lone sky
#

delusional

spare quartz
rustic vine
#

u ok bro?? 😭

timid quartz
spare quartz
rustic vine
#

make it 30

timid quartz
spare quartz
#

?

timid quartz
#

im booored

#

ive done my job too well and now theres nothing to do

spare quartz
#

help me figured out how im gonna implement MethodHandles.Lookup

timid quartz
#

Other than some JVM nonsense

spare quartz
#

inshort: facilitation for the creation of MethodHandles, executable objects tied to some set of operations (either on JVM code, or native code, or what have you)

timid quartz
#

Sounds gay and dumb and stupid and lame and dumb

#

And further reinforces that coding sucks

timid quartz
spare quartz
#

we beat them

#

single thread perf

timid quartz
#

easiest explanation

timid quartz
lone sky
#

moron.

timid quartz
#

nuh uh

lone sky
#

accept it.

timid quartz
spare quartz
#

both of you ❌

timid quartz
lone sky
#

@timid quartz NOT AGAIN

#

THEY CHANGED THE ROLES BACK????

#

actually no this one is good

#

ourple :3

timid quartz
lone sky
spare quartz
timid quartz
#

!!!

#

霊魂消滅

timid quartz
#

@spare quartz raaah

#

what are you coding

spare quartz
#

higher efficiency writing

#
package org.bread_experts_group.channel

import java.nio.ByteBuffer
import java.nio.channels.ReadableByteChannel
import java.nio.channels.WritableByteChannel

class WritingByteBuffer(
    private val to: WritableByteChannel,
    val buffer: ByteBuffer
) : AutoCloseable {
    fun empty(amount: Int) {
        if (buffer.remaining() < amount) flush()
    }

    fun put(src: ByteArray) {
        empty(src.size)
        buffer.put(src)
    }

    fun transferFrom(from: ReadableByteChannel) {
        while (true) {
            empty(1)
            val read = from.read(buffer)
            if (read == -1) break
        }
    }

    fun flush() {
        throw UnsupportedOperationException()
    }

    override fun close() = to.close()
}
#

test driver rn

timid quartz
#

nauseating kotlin

spare quartz
#

im also gonna look into making variants of these using selectors

#

looks good..

timid quartz
spare quartz
#

all of those functions are experimental

timid quartz
#

your lang is experimental smh

spare quartz
#

for example...

#

this is the analog's "empty"

timid quartz
#

area of rotation

#

tornado 🤞

#

well it'd be a waterspout out there but

spare quartz
#

these two bytebuffer wrappers have massive flaws that i am aware of (but need more research into how to mitigate them)

timid quartz
#

waiting on your little toy server to surpass a real rust server

#

next time I'll remember to not harass you to make your programs good...

timid quartz
#

not a real rust server

#

these are your targets

#

hold on this is fortunes

#

wtf how is a python server on top of plaintext

spare quartz
#

because its not actually python

timid quartz
#

real

#

oh interesting

#

so fortunes is actually kinda comprehensive

#

these are your first targets for plaintext @spare quartz

spare quartz
#

actually these two

timid quartz
#

mm not real

#

axum is the first real one

spare quartz
#

wdym "not real"

timid quartz
#

not real

#

aka I'd never use them

timid quartz
lone sky
#

do something else maybe

#

instead of coding (if you're lazy about it)

timid quartz
#

gam ing...

lone sky
timid quartz
#

uhh

#

more gaming....

lone sky
timid quartz
#

im gonna burn you out...

#

but yeah I might be

lone sky
timid quartz
#

@spare quartz wake uuup

#

do something funny

spare quartz
#

im watching jojo

timid quartz
#

wha..t

#

that's not bayachao

#

im proud of you

spare quartz
timid quartz
#

#

SMITE

lone sky
#

he's cute

spare quartz
spare quartz
lyric mesa
#

i just noticed this function in mgks

#

why does it have an inner function to do a variable comparison 😭

lone sky
#

@timid quartz ok so picture the following

#

what's something ATP hates a lot

timid quartz
#

Rust

lone sky
#

and what's something she loves

timid quartz
#

Bayachao

lone sky
#

see you in 50 universal resets

spare quartz
lone sky
timid quartz
lone sky
#

need to fix some stuff

#

cause for some reason 50% of the assets are misssing??

spare quartz
#

I need rosetto

spare quartz
#

brk

#

BReaKpoint

#

THE CHAO DOGS ARE SECRETLY JVM SUPPORTERS??

#

BASED ALERT??

#

🚨

timid quartz
spare quartz
#

this is an example of a JVM supporter

timid quartz
spare quartz
#

truth*

timid quartz
spare quartz
timid quartz
spare quartz
timid quartz
#

Computers to not suck…

spare quartz
#

You keep saying that but I don’t know how to help you

#

I’ve just been playing Minecraft with my friends today

spare quartz
lone sky
#

this happens

spare quartz
#

I can read everything on this panel now…

#

I just need to memorize itttt

timid quartz
spare quartz
#

Zzzz… maybe…

#

So tired

timid quartz
#

Mmm more student debt don’t sound fun though

flint belfry
#

@spare quartz if you ever make a rotuer can you make it so that at 3 am it glows red omionously and speaks latin

spare quartz
#

Sure

flint belfry
spare quartz
# timid quartz

jojos bizarre adventure be like

“let’s have a man with magical energy use a coke cola bottle launched with enough force to break the corrupt officers hand holding him at gunpoint!”

timid quartz
spare quartz
#

Don’t care im watching jojo

timid quartz
#

This is the fall of ATP that I’ve been waiting for

#

Anime will be your undoing

spare quartz
#

Bayachao literally makes anime

#

What’re you on about

timid quartz
#

yes but

#

you’ll be so engrossed in the anime that you stop coding :3

spare quartz
#

I am LITERALLY an avid watcher of bayachao and dr stone already

spare quartz
#

Who writes this 😭

spare quartz
flint belfry
spare quartz
spare quartz
#

checkout my new 3ds from temu

proud creek
spare quartz
#

just stripped our selector of copper for extensibility reasons

lone sky
#

that's actually a sick ass concept

spare quartz
#

well its an actual product

#

and yeah its cool

timid quartz
#

where do u get the energy to do it

spare quartz
#

the infinite cycle of refinement

#

you think you're the best at something

#

but you look closer

#

and you see you're terrible at it

timid quartz
spare quartz
#

well there is evidence

#

you're just not looking at it closely enough

#

i could've written an os, like, a decade ago by now

#

but i've realized i need to completely understand a computer instead of just following instructions

timid quartz
#

not necessary

#

just wing it

#

or just dont write an os

#

:3

spare quartz
timid quartz
#

well it's meant to mark certain data as urgent to bypass processing

#

but realistically I think the only thing that uses it is ssh session termination

spare quartz
#

see you went out and got/had an answer for it instead of kneecapping yourself by not knowing and just "winging it"

#

theres always a place to reflect upon and find out improvements

timid quartz
#

I took some networking classes what can I say

#

just had to remember

timid quartz
spare quartz
#

well this is a conversation i will no longer answer to

timid quartz
#

I hope you know Im not being serious

#

except about the best lang part that part is true

spare quartz
timid quartz
#

lmfao mantle holder as woke dog

spare quartz
timid quartz
#

ughhh

#

need more games to play

lone sky
timid quartz
#

EUGH HORRIBLE

#

NO

#

NEVER

spare quartz
#

more byaachao

#

you need bayachao in your life

#

DV bayachao 100%

timid quartz
lone sky
spare quartz
lone sky
#

@timid quartz what about 1256670

timid quartz
#
SteamDB

"May you find your book in this place." Combat between the guests and the librarians breaks out as if it were on a stage. Defeated guests turn into books, and the Library grows onward. And eventually, get your hands on… The one singular, perfect book.
Library Of Ruina Steam charts, data, update history.

spare quartz
timid quartz
#

never actually heard of that game

spare quartz
lone sky
#

good, play it.

spare quartz
#

dont do it

lone sky
#

do it*

spare quartz
#

play lobotomy corp instead

lone sky
#

ok fair

#

lobotomy corp is also good EXCEPT I CANNOT PLAY IT CAUSE OF MY SHITTY HDD NOT LOADING IT

spare quartz
#

HYPE MOMENTS AND AURA THE ANIME

timid quartz
spare quartz
timid quartz
spare quartz
#

I stopped thinking

timid quartz
spare quartz
lone sky
timid quartz
#

ATP can’t either

spare quartz
timid quartz
spare quartz
#

im not in denial?

#

im literally a jvm developer?

timid quartz
#

Java denier

#

You’re basically writing Java but are in denial

spare quartz
#

aerasto does not know a thing about computers part 93548432

timid quartz
#

Java is basically adding all of kotlin’s features anyways

#

Obsolete lang

spare quartz
#

uh huh

#

i wont entertain this for very long. you are on mobile

#

go sleep or do life stuff instead of ragebaiting.

timid quartz
spare quartz
#

lie

timid quartz
spare quartz
timid quartz
#

I have a smaller attention span than a goldfish

#

Incapable of thought required for coding

spare quartz
timid quartz
timid quartz
#

mm

#

want

#

chocolate

#

store...too far..

lone sky
#

atp alter ego

spare quartz
#

do you hear someone

#

えぇっべせぃでい

timid quartz
#

i hear the sound of me

#

goign to the store

#

uuuuuugh too far

timid quartz
timid quartz
#

Not that accursed gif

#

I think Discover died

spare quartz
timid quartz
#

evil creature…

spare quartz
timid quartz
#

all of bayachao’s creations are evil

spare quartz
#

you're just joyless

timid quartz
#

true

#

everything sucks

spare quartz
#

i hate you .

timid quartz
#

existence is tiring

spare quartz
timid quartz
spare quartz
#

I WANT EMEEEEEERALD

lone sky
spare quartz
lone sky
spare quartz
lone sky
spare quartz
#

bring me my emerlad.

timid quartz
spare quartz
timid quartz
spare quartz
#

im tired of server operators who DONT KNOW HOW TO OPERATE SERVERS!!!!!

spare quartz
#

someone else

timid quartz
#

What is this person doing or not doing

spare quartz
#

just general inexperience

#

and i cant talk to them directly

timid quartz
#

how do you expect them to get experience 3:

spare quartz
#

by learning how computers work

timid quartz
#

being a server operator doesn’t require your definition of “knowing how computers work” that is how x86 works and how to build servers for protocols

spare quartz
#

gee i sure wonder why understanding the underlying protocols of a computer would make you a better server operator

#

and ill have you know im also an arm programmer now aswell.

timid quartz
#

I could set up nginx before I knew how http worked

spare quartz
#

you need to learn English!

timid quartz
#

timid quartz
spare quartz
timid quartz
spare quartz
timid quartz
spare quartz
#

Y

timid quartz
#

because

#

everything is boring

#

nothing ever to do

#

kaboom.

spare quartz
lone sky
#

spare quartz
#

Classified

spare quartz
#

ただし

timid quartz
#

I am going to…

#

implode

#

slowly

lone sky
#

@timid quartz I lovepainful exererincepces

timid quartz
#

what

#

weird

lone sky
#

in more clear words

#

I will install a tiling window manager

timid quartz
#

Do Hyprland

#

Tiling WMs are great

sacred shoal
#

can one of you smart ones help me set up a self hosted cobalt instance

#

i lowkey got no clue wtf im doing

lone sky
spare quartz
spare quartz
timid quartz
#

LOL

timid quartz
spare quartz
#

cool but i prefer 24 ClassFile

timid quartz
#

@rustic vine C++ considered unsafe https://youtu.be/r2npdV6tX1g?si=i_-SwcSTK3-XCxgQ

Recorded live on twitch, GET IN

https://twitch.tv/ThePrimeagen

Become a backend engineer. Its my favorite site
https://boot.dev/?promo=PRIMEYT

This is also the best way to support me is to support yourself becoming a better backend engineer.

Article link: https://news.ycombinator.com/item?id=39395020

MY MAIN YT CHANNEL: Has well edited ...

▶ Play video
lavish dove
#

I can verify

timid quartz
spare quartz
#

okay

#

finished season 1 of jojo

#

that was great

#

10/10

timid quartz
timid quartz
#

@rustic vine 深度操作系统

spare quartz
#

“2020392123

timid quartz
spare quartz
timid quartz
spare quartz
#

:<

timid quartz
#

uuuuugh so BOOOORED

#

and I have to get ready to GO HOME TOMORROW RAAAH

#

entire pc gotta get packed up

timid quartz
spare quartz
#

im playing minecraft

lone sky
#

cat. (?)

timid quartz
spare quartz
#

[play minecrft

timid quartz
#

Is it on your self-made Minecraft server

spare quartz
#

this took 4 days

spare quartz
timid quartz
#

Laaaaaaaaaaaaaaaaaaaaaaaaaame

timid quartz
spare quartz
#

theres like no gypsum

#

😭