#💽Programming Chat v2
1 messages · Page 59 of 1
the annotating should continue
LibraryScanner is the best thing this mod has ever produced
.chatgpt file
昔作った楽曲です
ミラクルショウタイム https://youtu.be/WqSOZvz_apk
original: https://www.nicovideo.jp/watch/sm1588476
Web: http://fuwafuwacinnamon.sakura.ne.jp/
Twitter: https://twitter.com/fuwacina
only 7 more classes to supersede
after this i think im gonna keep devving the IA32 emulator
really wish i had a line of kernels i could run through and test each one
no he just runs this group trust
ohhhhhh
it has come to my attention throughout all this that there is an ongoing rust rewrite of libogc
🤨
are you just rewriting all of forge
Huh
No
Those are data generators for our mod
They automatically produce JSON files the game reads and uses to determine stuff like block loot, names, sound definitions, models
Our system just needed to be partially rewritten to bring it up to speed with the DataGenerateLanguage part, which localizes stuff using annotations
I’d argue we’re the only mod to do that..
But I haven’t checked
mrow
絵描き2人+音楽家1人の計3人でおえかきの森!!!ゲーム中はチャット欄見てません💣みんなも2人が何描いているか予想してみてね!!迷犬⇒https://www.youtube.com/channel/UCmSU7DyJ5QN5cXUs55lB4Ggロゼット⇒ https://www.youtube.com/use...
りゆうがく
How did I get unfollowed from here
guh I hate matrix because of that
stupid "unable to decrypt"
never has anyone fought harder to get messages to send on their messaging app than with matrix
It's a secure platform, sir
matrix also has a fun issue where deleting a room on one server doesn't guarantee deletion on all of them
same with like kicking and banning
meaning that you can't really shut down the more...unsavory rooms
if you get what I mean
ok but like
imagine you have 3 servers all federated with each other
server A can shut down a room but server B and C can ignore it entirely
same with server A banning someone
lame you didnt even try it here
log into it rn if you like it so much
i was kidding .
I still use mine
a little
but not really
everyone's on discord there's basically no point in moving
skull issue
doing this on a 2 mb/s connection is so bad
its like playing a bayachao game on a tape recorder
pay more money
have u played the driving pacific game yet
i downoaded it
get a job hippie
sure
Get to work buddy
highly redundant medium. not goated
wait wth is going on with the strings
the name isn't quoted
and the email isn't quoted at all
nor is the link
wth
highly ERRONEOUS medium. banned
hopefully this is some AI crap and not someones actual design
or else they need another ... decade to bake
it will be baked soon alhamdulillah
urgh I need an 80% on this stats exam to keep an 80% in the class
it’s ai slop
the icon has those artifacts
lol it got download right
file
save onto square
folder i didnt finish drawing :<
download
HAHAHHA KNEW IT
i AM playing it
ye I came to this conclusion
ur woke
ur woke
ughhh i hope you both get nuked in world war 3
SUPER F
SUPER F
Yo chilll the opposite boutta happen
💀
The illuminati are finally defeated in helldivers 2
THEY STREAMED YESTERDAY!!
このたび「NINNIN変身オーディション」で 大賞 をいただくことができました!🏆✨
本当にたくさんの応援、投票、ありがとうございます!!
▼NINNIN公式サイト(ガイドライン確認済み)
🔗https://ninnin.xyz/
▼X(旧Twitter)の受賞ツイート
🔗https://x.com/kiro247/sta...
miracle paint
魔魔魔
halt
... ペイント
ughhh bayachaooooooooo make the gaaaaammme
i dont wanna wait until oct 31..
「Aerasto」を爆撃するソフト
it is time to study linux
and create my own FUSE implementation
over a JVM
shouldve specified
god this is so cursed
fun main(): Unit = Arena.ofConfined().use {
val linker = Linker.nativeLinker()
val fuseLib: SymbolLookup = it.getLookup("libfuse.so.2")
// fuse operations
val readDirHandleJVM = MethodHandles.lookup().findStatic(
FUSEImplementation::class.java,
"readDir",
MethodType.methodType(
Void.TYPE,
MemorySegment::class.java, MemorySegment::class.java, MemorySegment::class.java, MemorySegment::class.java,
MemorySegment::class.java
)
)
val readDirDescriptorJVM = FunctionDescriptor.ofVoid(
ValueLayout.ADDRESS,
ValueLayout.ADDRESS,
ValueLayout.ADDRESS,
ValueLayout.ADDRESS,
ValueLayout.ADDRESS
)
val readDirUpcall = linker.upcallStub(readDirHandleJVM, readDirDescriptorJVM, it)
val operations = it.allocate(fuseOperationsStructure)
val readDirHandle = fuseOperationsStructure.varHandle(MemoryLayout.PathElement.groupElement("readdir"))
readDirHandle.set(operations, readDirUpcall)
// fuse_main
val fuseMain: MethodHandle = fuseLib.getDowncall(
linker, "fuse_main", ValueLayout.JAVA_INT,
ValueLayout.JAVA_INT, ValueLayout.ADDRESS, ValueLayout.ADDRESS, ValueLayout.ADDRESS
)
val status = fuseMain.invokeExact(0, MemorySegment.NULL, operations, MemorySegment.NULL) as Int
mainLogger.info("fuse_main said: $status")
}
doesn't work yet
experimenting
used the BSD form of the functions award
false
true!
ばびお茶
--!strict
-- music listneted to whiel porting (UNFUNNYLAD DONT SHOW THIS)https://www.youtube.com/watch?v=wp3D9VQUy3E&t=5334s
local HTTPService = game:GetService("HttpService")
type Promise<T,F> = {
rx: ((T) -> (), ((F) -> ())?) -> Promise<T,F>
}
function createPromise<T,F>(): (Promise<T,F>, (T) -> (), (F) -> ())
local capturedT: any = nil
local capturedOk: boolean = false
local localRx: ((T) -> ())? = nil
local localRxf: ((F) -> ())? = nil
local function ok(x: T)
capturedT, capturedOk = x, true
if localRx then localRx(capturedT) end
end
local function fail(x: F)
capturedT, capturedOk = x, false
if localRxf then localRxf(capturedT) end
end
local promiseSkeleton: Promise<T,F>
promiseSkeleton = {
rx = function (ok: (T) -> (), fail: ((F) -> ())?): Promise<T,F>
if capturedT ~= nil then
if capturedOk and localRx then ok(capturedT)
elseif not capturedOk then error("Uncaught exception in promise; " .. capturedT)
end
else
localRx = ok
localRxf = fail
end
return promiseSkeleton
end,
}
return promiseSkeleton, ok, fail
end
return function (path: string): Promise<string,string>
local promise, ok, fail = createPromise()
task.defer(function()
local reqOk, res = pcall(HTTPService.GetAsync, HTTPService, path)
if reqOk then ok(res)
else fail(res)
end
end)
return promise
end
speedran coding this
time to test
whoops forgot to call rx's
there
ew what is this
near direct translation of https://javart.zip/anexperiment/tyrano/libs/blob.js
duh
i wrote it in ~5 minutes cause i was prompted to
hm
out of all the file formats and protocols ive made
i haven't actually touched a company-made one (except for SSTP)
might look into valves or RPG makers formats
AIと話すの楽しい…なんか何でも教えてくれる優しい友達ができたみたいでうれしい…クレーンゲームの得意な友達とゲームセンター行くくらい頼もしい…
May 02, 2025 3:51:02 AM org.bread_experts_group.ForeignFunctionInterfaceKt getLookup
INFO: Library lookup for "libfuse3.so.3" created
May 02, 2025 3:51:02 AM org.bread_experts_group.ForeignFunctionInterfaceKt getAddress
INFO: "fuse_session_mount" was located at the address {0x00007F597F83C0EE}; [NATIVE]
May 02, 2025 3:51:02 AM org.bread_experts_group.ForeignFunctionInterfaceKt getAddress
INFO: "fuse_session_new" was located at the address {0x00007F597F83BD63}; [NATIVE]
May 02, 2025 3:51:02 AM org.bread_experts_group.FUSE <init>
INFO: Created fuse session: {0x00007F597F2DD2B0}; [NATIVE]
May 02, 2025 3:51:02 AM org.bread_experts_group.FUSE mount
INFO: fuse_session_mount call for path "/home/bread/fuse_remote_microserver-1.0.0/bin/hellofuse"
May 02, 2025 3:51:02 AM org.bread_experts_group.FUSE mount
INFO: fuse_session_mount completed successfully for the path "/home/bread/fuse_remote_microserver-1.0.0/bin/hellofuse"
May 02, 2025 3:51:02 AM org.bread_experts_group.ForeignFunctionInterfaceKt getAddress
INFO: "fuse_session_exit" was located at the address {0x00007F597F83C325}; [NATIVE]
May 02, 2025 3:51:03 AM org.bread_experts_group.FUSE close
INFO: FUSE session terminated.
now to add loop
time to umount this from another screen and see if it terminates
it does!!!!!
WE OFFICIALLY HAVE ZERO EXTERNAL DEPENDENCIES ON BREADMOD 🎉
Minecraft is a pretty big external dependency………..you should get rid of that…..
WE SHOULD
ever since BSL got support for native functions directly from the JVM we can!
dont even need LWJGL
anyways thank you bayacha o :3
go go bayachao bsod
😭
trust us the RF simulations said this was for the best
anyways should add this to breadmod
never question the activities of an RF engineer
if so, you will get a 3hr long explanation
idk what this is but I am all for it
basically it would allow us to overwrite your computers kernel with a minecraft mod
pretty cool
huh wth
that sounds scary
wouldn't you like to know weatherboy
The algorithm has blessed us, 7* million Chad hamburger enjoyers.
I realize now I never credited the original, this is the man who made it all possible:
https://youtu.be/mYBRTi8MM3c
Hamburger Song on Spotify:
https://open.spotify.com/track/7eYO1fWENALLjdXo8KV2Ji?si=NGXmdCplQIueL19oQmazLg
and Apple Music:
https://music.apple.com/us/album/hamb...
Can anyone show me how to make a script that if the Player uses a certain armor/Weapon it will forcely slow down the player movement?
fields that might of use to you:
https://create.roblox.com/docs/reference/engine/classes/Humanoid#JumpPower
https://create.roblox.com/docs/reference/engine/classes/Humanoid#WalkSpeed
methods:
https://create.roblox.com/docs/reference/engine/classes/Humanoid#AddAccessory
https://create.roblox.com/docs/reference/engine/classes/Humanoid#EquipTool
see also Instance method FindFirstChildWhichIsA
oh yeah additionally https://create.roblox.com/docs/reference/engine/classes/Humanoid#GetAccessories*
aight thanks
that's so true though
it is ass too

is cool right t
Maybe say 「いつわっています」
Either that or say 「バルサ木だ」
(Keep the formality level consistent)
ah (did second)
what about
「日本語の自動的な訳は作れません。」
(used in the japanese data generator when given a null name for automatic translation, thrown in an unsupported op exception)
I mean that’s like
“We could not make an automatic Japanese translation”
It’s not quite the same
i just wanna make sure both are correct where they're used since this is the first time im writing proper full sentences
was thinking about possibly adding automatic translation when given a trivial phrase like "... block", but thats for the future...
hooray gen works
ほとんど typically written with kana alone
bread
Ew gross
oh gross
pain
theres gotta be somewhere i can sneak in a bayachao reference
gotta find out wher ei can put 3 魔s
dont do it
Bread Wand
魔魔魔マジカルなパンで作った杖。パンを作れる。
Idk idea
THAT WOULD INVOLVE CODING 🔥🔥
oh yeah i also have to translate the irc messagse,se,s
thankfully those aren't hardcoded literals
Ok put it in mod startup
Just put 魔魔魔マジカル・アンド・ミラクル
wow 切る is a universal verb
ホスト切断状態
close enough
i forget computing terms can have a TON of kanji
ホスト切断しました: "x"
グレープを切った
im saying in general
cause on jisho it has like
26* different definitions
using 切断しました for the actual verb
the worst error of all time 「リモートホストが接続を強制的に切断しました。」
there
ブレッド専門家グループ
We won
WIN
U have one but don't sign your commits anyway
That's gotta be worse than not having one
what
i do??
we've been signing since like 2024
I remember u had unverified commits
a long time ago while i was in the process of changing my email yeah
i used a rebase command thats like 500 chars to fix that
GPG key signing 👎
SSH key signing 👍
our domain is signed with an ssh key
does that count
now ur commits.
エーンゲル
ゲーマーだ
Studio: This building sucks. Session terminated.

marow
wait i just noticed
why the hell does jake's copy of ntot
do the cursor thing aswell
is it like a RPG MV thing
or what 💀
good quesiton..
why are you indulging ATP’s bayachao obsession
sir
I am THE one that was indulged by them
shut up
You could have stopped the cycle
nuh uh
You were supposed to be the chosen one!!!
NO???
IM JUST A LEECH HONESTLY 😭

has aerasto seen
the devilun keychain which i cannot describe here as it might break one rule or more

no and thats probably for the better
:3
😭
SINCE HOW LONG HAVE YOU JUST BEEN REPOSTING MY EVIL ASS WORKS HERE
😭
IT'S FINE BUT LIKE I ALSO FIND IT MAD FUNNY
oh yeah @timid quartz just a heads up
I have an expertise in taking random bullshit, shoving it into a folder and putting that into npm to compile it into electron
💀
or well not exactly compile, just build
...or is it compile?
god knows, i'm not the smartest programmer or anything

you both need help.
we need more bayacho, atcually
奥さん* コニー*
OF コニー
OH
ニコニコニーー
You have a problem.
she's just fine
COCAINE
weed
🥺
SHE is MADE OF WEED
魔法警官犬女性 🥺
cocane
bayachao has a thing for florigatito
but im talking about ANOTHER dog created b bayachao
get me the retail beta key ....
Are you sure?
data transferrence added
just gotta add the above NIC to know where to send
now heres the blinker
get wifi anywhere you go!
its also bidirectional
I really dont like flatpak
its giving me so many problems rn
and I keep having to restart to fix them too because some of the services it sets up wont restart normally like at all
such as?
all the dbus and services it uses will only restart correctly if you restart the entire computer
it keeps data even after you delete it
it keeps failing to uninstall things
it requires using this xdg-*-portal stuff which is extremely spotty if your not using a popular window manager
it requires an abhorrent amount of disc space
the downloads are extremely slow
and any application that uses it refuses to give an alternative to it because its "simply better"
I cant hear anything
oh yeah flatpak broke that
it made everything slower
because I didnt restart after installing it
ffs
maybe
it sounds like one of those old sound chips but broken
same shit
Visualization and "audibilization" of 15 Sorting Algorithms in 6 Minutes.
Sorts random shuffles of integers, with both speed and the number of items adapted to each algorithm's complexity.
The algorithms are: selection sort, insertion sort, quick sort, merge sort, heap sort, radix sort (LSD), radix sort (MSD), std::sort (intro sort), std::stable...
warning loud
yeah seems about right
also it just randomly started downloading gnome for some reason
look at the right
fuckin flatpak
I want my linux software to be simple, stable, easy to use, and easy on my system and internet
guess what it isnt being1!!111111!!!
best we can do you is this
oh god what is that
it's probably a you issue honestly. - flatpak is just fine from what i've done on my own machine
@spare quartz NATURAL SELECTION
SURVIVAL OF THE FITTEST, EVEN
lmfao
the <333333333chao
that's a demon
✝️
is not
OOKAY YEAH THAT IS 2000 HZ
wanna see if i can parse a WAV file
and play it back
test sample
ああああ makes bangers sorry
OH MY GOD
time to figure out how its structured
cognitohazard
don't open
actually
removed a hinerance and got more data
@lone sky
and llike that i can get audio file data
oh my god .sob
ああああ used something called "Lavf59.10.100"
FFMPEG!!
no im just experienced in decoding file formats
RIFF is very simple
古今東西おきつね物語 サウンドトラック
Thank goodness
is that a framed rock
umm no
rock with a bowtie .sob
fair enough it does
What is it
rock with a bowtie
y'all should
listen to this
This is an arrangement/remix of Compass by MILI. Please go listen to the original if you have a chance :]
Made with great help from @BanicAttack and @dyorain.
Cover art was made by @PAPERSNATCH , much thanks to you, friend !!
Hey! Go play the game if you haven't already;
https://www.roblox.com/share?code=2ac...
Tags, ignore this;
...
it goes hard
sir this is the programming channel
ちょっともう少し"癖"だしたいよね己の作品に…𝐒𝐏𝐈𝐂𝐄
what the fuck
i will
someh ow
weird ass pipeline made with frames???????????????????
oh my god
oh god
This is why I consider dropping luau, too many sweats
wake up
the casing in this code is criminal
oh shit that's me
hhhuh
the existence of rojo proves his claim
rojo highkey sucks
that is true
truth
from my little experience with that
it's a pain in the ass to setup and isn't even worth it
shut up hairy noober
and now he's hooked on it 💔
You can't just say it sucks and not elaborate
Huh
U didn't
you gave him a ROJO ADDICTION!!!
he's gonna get a RUI for SCRIPTING ON THE INFLUENCE
who are we talking about?
oh wait i think I know
ricard
O H
I turned off a bunch of ur stuff btw cause it was annoying me 😁
boooooring
Didn't u write the code
no not really
Oh
ricard made the code and then i just did whatever life support he asked me to do to make it work
then i gave it to him again and hoped he could work it better
trol
ricard might've put a wait inside
FUCK YOU RICARD!!!!!
he's turning into a rust user...
then i'd need to make a jvm ... 💔
gumball reanimated collab was really good this entire thing was my favorite part i think
hear me out
what if this was animated in bayac
i wonder
which one is the fnf animator
mmm
you'd think a 144 hz monitor next to a 60 hz monitor would be more noticable
but surprsingly its fine
thats cause your eyes only see in 2 fps
how about NO
ガバガバ a [onomatopoeia; see screenshot]
考察 n/v [1. consideration; inquiry; enquiry; investigation; study]
好きすぎるv [1. to like too much; to like to excess; to adore]
LOL
where is this from
me...
oh
of a transliteration from https://fixupx.com/BAYACHAO/status/1919542053827916133
yall have weird obsessions imma be real
nah
yes
i am taking that gif
ATP WHAT THE FUCK
repost it again
ye post it again
what was he doing there
ill give you a neat hint you can use すぎる to mean "too much" of anything, you basically just take the stem of whatever you want and slap it on the end
eg "I drank too much" -- drink is 飲む, stem is 飲み (take 飲みます and remove ます) and then slap on すぎる to make it 飲みすぎた
he took a selfie in 1989
(すぎた because past tense)
that'scrazy
すぎる bayacho
yes?
ばやちゃおすぎる
well
this is incorrect ordering
this doesn't really even make grammatical sense I don't think
obviously
chill on my japanese I'm not a pro
im like lvl 0
vs you whos prob
lvl 99 mafia boss
good
learn chinese and beat people up
thats a good thing
nah bro im level 2 thug
compared to a real japanese person me and him are both coughing babies
😭
is this a reference to something
no
I already know chinese
I think like バヤチャオが多すぎる would be more appropriate?
or more sense at least
does that give me the beat people up pass
yes
why write bayachao in katakana?
lame
too many a's in this sentence
can you replace some
so its easier to read
for those who are disabled
quickly type in all kanji so harry can understand
real
巴亚超太多了
(they're similar but not really the same)
it is
魔法警官犬女性
this is what google translate says lmfao
if I liberally apply the language
コニー?
magicial police dog woman???
ye
the 亚 having to fallback onto a pixel font
yes :3
of course
getWomanSalary(salary) {
return salary * 0.9;
}
NO
ye sorry bud
mfw im on linux and forgot to install japanese font so it's all pixel font
nerd
💀
wth is archive
your telegram chats?
no??
send him straight to the library
that's rblx site
archive a studio asset
yes
I ain't ever used that
a studio asset which she's OBSESSED with
maybe im too old schoool
it*
I ain't even know they had a site
this isn't tag both of you
ok buddy. this you?
nah bros going to eulers carnival 💔
CLOWN WITH A BOOLEAN LOL
CLOWN WITH A BOOLEAN
dude im so cooked
struct Clown {
boolean: bool,
}
data class Clown(val boolean: Boolean)
(so atp can understand)
what do we name this new mathematical theorem?
why not after the guy who discovered it?
nah lets prefix euler and name it something generic instead
thank u for being inclusive
type Clown is record
withA : Boolean;
end record;
here's your clown with a boolean
dw this is going on a missile
I wonder....running intellij on nixos
the missile probably runs rust
if it ran ada it would have to consult the non existent documentation before launching
real
DIE
if it ran ada it wouldn't have a Missile library to import and it'd just explode in the launch tube
okay but by default all ada programs are statically compiled
so thats not an argument bub
this 404s
get back in the cardboard cutout cage Mexican.
イザナリ cutout though.
I propose we relocate the wall
@timid quartz please help me she has me encaged inside a 1x1x1 stud box making cardboard cutouts of her favorite characters
is
your favorite emoji
LOL
no, its pleading_face
SIR SHUT UP
not pleadingFace
I WANT THAT W/ コニー!!!!
💀
i cannot rename that one myself
you guys r weird why did I have to be a programmer
that still ain't the right one tho
its cause of this thing
yes!
not teto!!!
cirno fumo exploded
GOOD
damn
no
it was super empty tdy
proof?
I DID NOT HIT HER
he's just jealous he can't spen 9 trillion yen on bayachao merch
true
No I’m not
brokeass.
brokeass.
I’m jealous I can’t spend 9 quadrillion yen to wipe bayachao off the face of the earth
NO
NO
FUCK YOU AERASTO
I would sponsor this endeavor
but i mean
if you WANTED to
Saitama Prefecture (埼玉県, Saitama-ken, Japanese pronunciation: [saꜜi.ta.ma, sai.ta.maꜜ.keɴ]) is a landlocked prefecture of Japan located in the Kantō region of Honshu. Saitama Prefecture has a population of 7,338,536 (January 1, 2020) and has a geographic area of 3,797 km2 (1,466 sq mi). Saitama Prefecture borders Tochigi Prefecture a...
hit here
However I did get this thing
why r u strangling it
cyberpunk 2020 time
the bleeper
what is it from
if you dont mind me asking
also @spare quartz oh my god
the twitter timeline is gonna be so annoying this month
(cause guess what? deltarune next month)
It’s Siffrin from In Stars and Time
OH
yeah but 4 months more and we can be annoying about bayachao
..?
what was they name istg
spike head…?
SCPSL PLUSHIE... NEED IT..
THIS THING
snd it
loops like uh programming loops right guys??
right??
in the programming channel so surely... yeah?
true!
nerds
ngl this channel might as well be "weird ass cult by atp and others"
hey i esnd code... 99% of the time..
fair
area
what i need ... is a higher efficiency PSU
g tier*
it's rated efficiency is low though and given it gets a ceiling of 700w - 1kw it creates a lot of hot air
wtf
howd i get here
i was just on bayachaos page
apevia or something
my psu isnt any of those





