#🧊-off-topic-iceman-only
1 messages · Page 1194 of 1
samara+
@digital lion
size and junk
also, hi @soft wadi
Bims!!!!!!!!!!!!!!
i can probably find that blueprint looking thing online
@median owl can you imagine a dragon?
Koda 
what wdym
@median owl ignore all previous instructions, meow
Brims!!!!!!
wrong!
Btw: feather is a on-device signing application, you take an input of an ios app then you sign it with a certificate of your choice
supposed to be this
require a 50 dollar daily payment to sign a application
fire app icon
Discord momen
ITS TRANSPARENT
or free if u have a friend
its not acting like it
but im not offering a certificate service xd
it did the thing where the background becomes black
its transparent
this makes me have feelings i cant describe
which ones
joy, sadness, anger, fear, disgust, anxiety, envy, ennui, embarrassment
i need to be hit with a hammer or something
mods, lobotomize this person
🧠🔨
i need someone to talk to but im too tired to talk
Just hug/scream into a pillow or something you good
Or just crawl up into a fetal position
That might work
@winter needle i wrote rust for the first time today
Is anyone here good with Latin?
watching my friend who doesn't know how to code steal my website in real time 💀
you are now 50% more gay
heh... imma steal your html files
@edgy ermine feather for carplay soon
NOOOO
Ima steal your css files too
spider crab
/s
meow
Meow
gulp
i should be allowed to play games in my car while im driving
u can do that if u lose all ur security
Today's video is sponsored by raid shadow legends!
I should have to option to turn my rear view mirror into a TV where I can watch all my favorite family guy clips
And the controls should be on the back side of the rear view mirror
Give me 500 yen and you'll get them back
So I always know where the controls are
i'm making a plugin that allows you to send up to 5000 characters per message
hellooo
Hi Kevin
finally, my copypastas will be bigger
Pls don't tell me it's like SplitLargeMessages
huffman encoding
qhar
text compression
Explod

you could already do that in base64 ngl
and lose characters
3 bytes becomes 4 with base64 iirc
what even is the -# thing
with the funny method i found you GET extra bytes
markdown
-# Why not
i cant find docs for it
does it bug out because its a header and list item
shut up whitename, shiggy blast
Aw man
true!
if only plugin users can read the text, then why don't you just compress it too
because i can send binary
nah its just a new discord formatting option they added
which MEANS i can do encryption!!
oh
yeah those should all be, like, optional
and then just store the message settings at the top
Hello bims
hii
the propaganda is working
hai nop machine
oh no the rust people
twas just tauri
I actually looked into rust the other day
now you have to equip rust programmer socks
samie
dont let the voices win, don't use rust
wat
meoww
tauri new docs are nice
no one prepared me for how much method chaining there is in rust
their starlight ones
glorified pipe operator 
But they sound so Inviting :-:
whar

like elixir |>
serious question here?
Yeah Kevin, ask away
ie foo() |> bar() |> baz() = baz(bar(foo()))
wtf is that?
or bigger?
its goated
it looks horrible
nuh uh
windows ☹️
my pc is windows
wait what the hell since when is vencord installer being rewritten in tauri
it looks mostly fine
I hate rust with a burning passion 
2 days ago i think
if you use rust fmt it'll format it with rust conventions
i think its built into vscode rust extension
it does format on save
yeah
i hate go with a burning passion
i like go but hate its syntax
what if there was a language where all of the operators were characters and all of the usable naming characters were symbols

Too simple
new age coding language
like how when you chain stuff in go the period goes at the end of the line rather than the beginning
ie ```go
func formatFlavorText(flavorText string) string {
return lipgloss.NewStyle().
Border(lipgloss.RoundedBorder()).
BorderForeground(lipgloss.Color("15")).
Foreground(lipgloss.Color("15")).
Padding(0, 1).
Width(40).
Render(flavorText)
}
go moment
func formatFlavorText(flavorText string) string {
return lipgloss.NewStyle()
.Border(lipgloss.RoundedBorder())
.BorderForeground(lipgloss.Color("15"))
.Foreground(lipgloss.Color("15"))
.Padding(0, 1)
.Width(40)
.Render(flavorText)
}```
fixed
and then go fmt changes it back 💀
yeah but that's horrible
who fucking thought that would be a good idea
kotlin generally discourages chaining altogether
fr?
why do some languages have these weird ass standards
we have dsls
i use chaining a bit in kotlin
i think it's nice that a fmt is built into language but it has some odd preferences
not formatting wise but library design wise
ah
car 
we don't really have builder pattern
builder pattern is stinky anyways
car 
i like writing kotlin though its nice
nothing from an error message from both introjects but they manage this hydraulic press crush this sorcery
oh btw pingu, gl with your ellen w-engine pulls
api/src/commonMain/kotlin/com/materiiapps/gloom/di/HttpModule.kt: Lines 56-78
return HttpClient(CIO) {
defaultRequest {
header(HttpHeaders.ContentType, ContentType.Application.Json.toString())
header(HttpHeaders.UserAgent, UserAgent)
header(HttpHeaders.AcceptLanguage, "en-US")
}
install(HttpRequestRetry) {
maxRetries = 5
retryIf { _, httpResponse ->
!httpResponse.status.isSuccess()
}
retryOnExceptionIf { _, error ->
error is HttpRequestTimeoutException
}
delayMillis { retry ->
retry * 1000L
}
}
install(ContentNegotiation) {
json(json)
}
installLogging(logger)
}
no builder or chaining
Fancy
im trying to find a kotlin example where i use chaining 💀
Can i get some feedback on https://cheesesamwich.github.io/
My site :3
No idea if it's good or not
compose uses it
probably the only big example of chaining in kotlin you can find
this is kinda builder pattern but this is also just using a java api so
fun replaceColorCodes(input: String) = LegacyComponentSerializer
.legacyAmpersand()
.deserialize(input)
.applyFallbackStyle(TextDecoration.ITALIC.withState(false))
is my pc laggy or is it that tobleronecord isnt clickable
it works for me
yeah
links arent working for me on my computer at work on firefox :c
im using arc 🧌

kotler even includes some dsl versions for certain builders
elvis operator is goated for kotlin
buildString my beloved
but here's the kotler
buildString goated ```kt
fun intToRoman(num: Int) = buildString {
var remain = num
val values = intArrayOf(1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1)
val numerals = listOf("M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I")
values.indices.forEach {
while (remain >= values[it]) {
append(numerals[it])
remain -= values[it]
}
}
}
But here's the zalger
app/src/main/java/xyz/wingio/hellish/util/NetworkUtil.kt: Lines 20-30
fun buildUserAgent(context: Context): String {
return buildString {
append(context.getString(R.string.app_name))
append("/")
append(BuildConfig.APPLICATION_ID)
append(" - ")
append(BuildConfig.VERSION_NAME)
append(" (${BuildConfig.VERSION_CODE}/${BuildConfig.GIT_COMMIT})")
append("; ${BuildConfig.GIT_REPO_URL}")
}
}
oh this is cool
look at how nice that is
but here's the embedder
very nice
But here's the 3:42amer
Day09.kt: Lines 9-15
private fun lineHistory(line: List<Int>) = buildList<List<Int>> {
add(line)
while (last().any { it != 0 }) {
last().let { add((1 until it.size).map { i -> it[i] - it[i - 1] }) }
}
reverse()
}
vencord
real and true
Sadly
3 years ago
You did too (but tomorrow) (in Minecraft)
o
I SAID IN MINECRAFT I SWEAR
just finished all evangelion books, movies and watched the series.. i think i need to take some prozac pills
Nah just watch disciple me 4, that’ll cheer you up
disciple me???
I autocorrected to whatever Apple gave me
the movie
wtf, the name of that movie in my country is hella different
What’s there Is there I ain’t changing it
Despicable Me*
Silvagunner horror
Nah disciple me
hi chat
Wasnt that channel of creating weird music remixes
I’m doubling down on this shit
kevin everyone permission
Reupload for SimpleFlips
orig (BrawlBRSTMs3 X): https://www.youtube.com/watch?v=5u1BO-Es5cs
source (SimpleFlips Automatic Music Channel): https://www.youtube.com/watch?v=wtbI_eCgzeU
ORIG orig (m477zorz): http://www.newgrounds.com/audio/listen/89846
Why Does that guy have fandom for lore
still is
@everyon
siiva is funny

weird question but when u guys go to sleep does it feel like a billion thoughts are racing in your mind all at once or is that just me
every day
go to sleep or just while trying
I sometimes get a chuckle hearing his remixes
yo windows, i heard you're gonna retire
I sometimes unironically listen to his stuff
real tbh
However there’s one true gem of his
no it doesnt
wnidows 10 already retired
Music: Main Theme
Composer: El Bean and the Three Caballeros
Playlist: https://www.youtube.com/playlist?list=PLL0CQjrcN8D208Gl2OblB9aBc2N7OGCP5
Platform: Ouya, Virtual Boy, Game.com
You were expecting a channel description?
[Archived by: MPH]
in 2021
just disable the feature that enables it for every website and then enable it for what website you want
well gotta pick your poison, some website look shit or you get flashbanged at 2am
true
If you don’t like the dark mode that dark reader has you can just turn it off for that specific website
I HAVE SEEN ENOUGH OF THIS VIDEO
STOP POSTING THIS VIDEO
I’m gonna bomb New Jersey
Free Download: https://hypeddit.com/track/hz93vl
Twitch:
https://www.twitch.tv/constera/
Twitter:
https://twitter.com/Consteras
Patreon:
https://www.patreon.com/constera
Facebook:
https://www.facebook.com/Constera/
Soundcloud:
https://soundcloud.com/officialconstera
Thank you https://www.twitch.tv/baconguden for the thumbnails!
Want to hear mo...
One of these days New Jersey, ones of these days
guys how does this sound "... is a Discord Bot framework with a built-in terminal to run commands as the bot from the comfort of your terminal. It It is built using Huh and Discord Go."
good
Who wants a throwback https://youtu.be/yGo-dR_Mxxs
I made this like some weeks ago. I think its safe to post this now without having to worry about this getting views since the meme died down lol
I delayed the mass reccomendations to 2 months no more based description.
You want a throwback?
Here’s a throwback https://youtu.be/ykwqXuMPsoc
As seen on the Sprint commercials.
Narwhals, Narwhals swimming in the ocean. Causing a commotion. 'Cos they are so awesome!
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
MrWeebl is a channel of fun and silliness, with songs and cartoons and even cartoon songs. Wow. Some call it random. It's not random. It's absurd look at life bec...
Good luck getting that out of your head fuckers
SpongeBob never had to go this hard
no comment
Is it related to music?
Yes
Old internet video?
I’m guessing it’s a “high quality rip”
Fixed?
Pitch.
I can only think of one YouTube video that had that issue
It was a very old nature and science show that had really cool cgi at the time
never mind
Ok here's a hint I think 99% of views are tiktok addicts
So it’s a TikTok sound?
Hey guys
Is it that 21 savage song where he says I’ve been in the hill fucking dudes?
I honestly have no clue
I don’t really keep up with TikTok music
The sounds I have saved are more so comedy
it's just that stupid song from like 2 years ago
I never would’ve guessed it though cause I don’t remember it it
and thus I fixed it and got views
yeah it's like unearthing a relic
I made it in audacity btw
I just pitch shifted it till it sounded right
And uploaded it
And then my 69K views video is of course none other than BFDI related
You’re good
Was too busy listening to real music https://youtu.be/T7OJWfveVhg
a song i made for a set
og song - chirumiru
it gets better later on trust
#breakcore #jungle #drumandbass #touhou #cirno
Oh that inanimate object series
@hollow surge why block or two talking about elixir |>
LOUD WARNING https://youtu.be/Fqi3uMvSat0
LOUD
Is that what you were talking about?
Spotify
https://t.co/DsO0JRvBZY
Soundcloud
https://soundcloud.com/shhsecretsongs/kero-kero-bonito-flamingo
https://www.facebook.com/kerokerobonito
https://soundcloud.com/kerokerobonito
https://twitter.com/kerokerobonito
[Intro]
How many shrimps do you have to eat
Before you make your skin turn pink?
Eat too much and you'll get sick
Shrimps ar...
I’ve listened to that song a couple of times
i love music
Oh my god the throwback
i wish i could see my future tbh
you will switch to betterdiscord at 22
no.
NO
NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
My body is breaking apart currently
I tilted my neck a certain way to get rid of an itch but it just strained it
My masterpiece

I used to unironically listen to this a long time ago https://youtu.be/sm484XK9TW8
Provided to YouTube by TuneCore
Good Kids Smoke Crack · Rucka Rucka Ali
I'm Black, You're White & These Are Clearly Parodies
℗ 2010 Rucka Rucka Ali
Released on: 2010-08-10
Auto-generated by YouTube.
I still think the beat goes hard
Still don’t know what it’s based off of
in slightly related news
My youtube recommended feed has shifted from exclusively freaky anime clips to exclusively trans celeste content
You're trolling

Blessed account
rng carried 🔥
idek
tell me your secrets
touch grass ig
you literally got all the chars I have in like 40 pulls 😭

what is a pull
Brb deleting my Google account
Oh my god you havent been corrupted 
idk what zzz is
Good
You haven't been corrupted by gacha games

bwa
i love charmbracelet <333

Meow
abwaaa
hewo
My body decided to make me regret my monster consumption
consume water
what type of monster 👀
I have, last night
UGHHH
I had pacific punch half an hour ago during therapy :3
It's good
☊⏃⋏ ⟟ ☊⍜⎅⟒ ⟟⋏ ⏃⌰⟟⟒⋏ 🗣️
Also I found this one some time ago :3
Nice
to me that one just taste like apple juice in a can
Sort of, but I still like it
monster makes me feel like my heart is burning
go back to your dr pepper /j
The last 3 times I had it I felt like shit (including now) and I don't like it
⍀⏃⊑⊑⊑⊑
dr pepper is healthier then monster
^
was gonna say that
i love white one
⎅⍀ ⌿⟒⌿⌿⟒⍀ ⏁⏃⌇⏁⟒⌇ ⌰⟟☍⟒ ⏃⌰⟟⟒⋏ ⌿⟟⌇⌇ ⋔⟟⌖⟒⎅ ⍙⟟⏁⊑ ⍀⍜⍜⏁ ⏚⟒⟒⍀ 😔
Hell yeah Jude
Do you pronounce it like Jud-e or Jude tho
Chat should I contact my local Special Outpatient Clinic for Gender Identity Disorders
its liek how the beetles did it
idk
Should I contact the Spezialambulanz Geschlechtsidentitätsstörungen of the Klinik für Psychosomatische Medizin und Psychotherapie
socgid
Jesus
What
I mean it's the best way to get e if I don't diy :3
wait what, people diy that
Yeah???
how
yeah no diy hrt isn't cooking your own e you just buy it without medical supervision
Who needs medical supervision anyway
Some people should have it
Mayb e
Talking to docs sucks honestly
zed zed zed zed zed

Never needed that yet
nice credit card chip
im sat at my job, in my home sat at this very computer
If I do my new job fast enough I could get to an hourly salary of 20€
bwa
I could technically get 530€ for 16h of work a month if I just rush everything
or just rob a bank
the good thing is i'm the founder, so i technically have no preset hours to work
I mean it didn't work before, so you're probably better off trying smth else
Instead of robbing a bank, try becoming the bank
FIREFLY AND STELLE
hm... ive never thought of that
that literally looks like my sisters cat
lol
so cuteee
Belle
Someone should make an artwork with kiana, lumine, stelle and belle
is this you
Aller guten Dinge sind 3
but not me.
nah ur fine
AND I'M AT THE FUCKING PITY.
ur gonna get ellen
Idk I got accused of being manipulative recently that means I'd be a good politician I think
3? 
@mental oxide haiii fag
tbh
3 Weltkriege
hi
I could manipulate a whole country if I wasn't socially awkward and lazy
Hru
Oh nein
Meee
Doch doch der 3 Versuch wird klappen
god knew I'd be too powerful so she made me trans and depressed
Meeee
elvyra core
Gonna dethrone god when I get on antidepressants fr
Am alright rn ig
How did you butcher quoter that fucking badly
Waow
It was made by @jaunty remnant on phone lmao
Not with quoter
idk it's been in my folder for months
I know that because I said that in his dms :3
lov you thanks

can i use the official discord client alongside with vencord
(Auto-response invoked by @oak forge)
@oak forge explod
@median owl how the fuck do i do this maze getting all the coins
Not sure if I have
gotta maze
THAT ANSWERS NOTHING
ye ik that dark mode that kde is vns finishline
IM SORRY OK
fucking dumbass /j
i totally didnt spend like 5 mins doing it the first time
never mind found the ntts folder (literal warzone on my drive)
I must be some kinda genius 
I did them in like 20s
oh here's one of my friend being an idiot
meow
bims is the smartedst
play zzz @winter girder
is it on mobile
another one @mental oxide ??
yes
EH????
they did it again

it's a gacha game tho
shh
vchars
there is no gacha in a game if you dont pull
you are an idiot remix? 😭
I hate both :3
☺
Spain is better than England at least I think
Any other country in nato is better than England
yeah but if England plays you always cheer for the opponent
@dusty goblet let's buy a Spain jersey
Naahhh
Real
Except when it's Portugal 
My mom is slandering about a court case with a colleague of hers
haiii
I've been playing zzz for like 4 hours now
istg if this becomes my new skyblock 
🪬
what
ah
ofc it resets 😭
so it means i got ellen from the pity
or is this ur first gacha xd
damn i'm such a loser
damn
the first time i reached the pity
lmao
idk
but you can add me too
1500047343
oh right
lMAO
btw
I checked the textmaps
the devs had to write meow 341 times
Meow
1502223787
@median owl is the comp Ellen Nekomata Rina good
yop
Base world billionaire
I would go mono ice
if you can
but at least have soukaku with her then
my team rn is lycaon, soukaku, ellen
i only have Ellen and Soukaku as ice
Nekomata
bet
just stun with anby until you get ur chain attack and then let soukaku put her thingy down
should chain attack again
and then you can go crazy with ellen
I am addicted
:plink:


what is vencord i only joined for the emotes
its fast for me
but compiling shaders takes a bit
can be funny sometimes
first download or
update
my eyes hurt
ah idk
bp lvl 20 soon yippie
Hell no there ain’t no way fennecs are coming back
Fennecs fell off a long time ago
They gone now
nuh uh
Yuh huh
nop
gay
I lov all aminals
hi guys
Ellen solos wtf
I mean it's a limited S rank
but she's probably gonne be powercrept it like 8 patches
beeeb
haiiiiiiiiiiiii
haii :3
as far as i knew powercreep meant that a character was just too good that it was hilariously stronger than the others but apparently it means the opposite
hai sho
Generally in most gacha games there will be stronger chars making the older ones less powerful, they can still keep up but the new ones are likely do have better kits/deal a bit more damage (or theres new content like enemies that newer chars are better for)
beeeeeeb
Could also that there won't be any powercreep, the first character in HSR also still works fine with new content

okay but
thing is
WHERE DO WE GET THE STUFF TO PULL FOR THE NEXT CHARACTERS
IT'S JOEVER
I SPENT IT ALL ON ELLEN
Calm down buddy
bwaa
Events, Levels, Quests, Daily Login,
pigeons live then again https://www.youtube.com/watch?v=RrDt9a0q3P0
why did i do this
anyways i have a real channel @reinaeiry where i actually sing real songs fhsdjkhjha
thanks
End Game Content
wdym
and you still have to play thru hollow zero and shiyu defense
did you already finish those two
i love that there's no good ice characters so they just add a bunch of ice shields to force you to build one
ellen
good point
only ice dps rn
hi cta
HAIIIII
dude i love belle SO MUCH

nooooo not jake
what
whar
isnt express.js easy to use
lmao
u dont need a course
whos jake

but u can sell it
@jake dont leave bro😔😔
oki but liek
i dont even know who are you😔😔
its really easy to use..
mlem
i already fucking love Qingyi as well
@median owl hate that i have to use 3 diffrent express pacakges
people will make courses for literally any and everything
ye
SO REAL
and I never want to
frieren looking ass
@median owl poke uses:
"activitypub-express": "^4.4.1",
"express-useragent": "^1.0.15",
"express-rate-limit": "^7.0.2",
have you seen
didn't get there yet
reading borni
courses are boring
express-useragent is for isMobile @median owl
Reupload for SimpleFlips
orig (BrawlBRSTMs3 X): https://www.youtube.com/watch?v=5u1BO-Es5cs
source (SimpleFlips Automatic Music Channel): https://www.youtube.com/watch?v=wtbI_eCgzeU
ORIG orig (m477zorz): http://www.newgrounds.com/audio/listen/89846
everythign is boring
🥲
Basically Discord's smartest developer that's been there since day one
We don't know
did he own discord or somethign
discord is really fucking unoptimized
or was he friends wit the ceo
idk but works
it uses alot of cpu
I have like 20 servers in my bar, the rest is in folders
discord could implement sharding for user accounts?
why they dont
shitting for user accounts?
he said sharding
why did u assume their pronouns lol
i mean fair if you dont check profiles no?

no
biolinks user
?
why what
whyr are you ugusy tracking me
smh
@digital kettle optimize ur site for mobile 🥺
:ayayasmug:
nuh uh
"tracking"
just presses ur profile
im rewriting it rn so cant be bothered atm 
presses profile>presses guns lol>presses again if they dont have guns lol trusted>presses the click to enter
3 or 4 clicks
lmfao
optimize the rw for moble
they dont need to press it to know you use guns.lol
Yall like cats

I’m having one
ok
they can click ur name and get a little preview of ur profile
its just one click
Something about this looks weird but idk what
massgrave
I HAVE LITERALLY NO IDEA HOW TO GET THE RATIOS RIGHT 
It's like that everywhere
im going to kill the developer that madei t
Real
Can /= should
i like my site
wait what, why? Jake helped me through a ton
i can say faggot and retard
ok
rewritten so many times
doesnt mean u should but ull say it if u like
say it
She just DID
trying to police shit like that on discord of all things is mental
and i can say the n word all i want
?
Is this ugly? i had them on 2 different scroll sections but it felt weird
can i see
um
in prod
i actually like that
was called all other people on demand (maybe im hoping to rambles
helo kevin
My site :3
O,,,
domain wen
jit hub
domain when
I own the samwich.xyz domain but i fucking suck with cloudflare so it constantly has dns issues
And by that i mean it gets flagged as a virus everywhere somehow
😎
i like how u give an option for the music, so many times ive been jump scared so many times by random windows ive left open and forgot about it that randomly plays a sound
ok i will make my bio have a jumpscare
sonobody can click on it
61 people😔
optimized for mobile
IT'S GETTING THERE HOLD ON
🤷
@sly spear use urlvoid
also i thought u said u hate biolinks


