#🧊-off-topic-iceman-only

1 messages Ā· Page 2230 of 1

edgy ermine
#

palera1n tui never made it guhh

#

i hate chrome when it syncs my extensions and i get like 20 tabs auto-opening telling me an extension has installed

rugged kiln
#

i'm a student and i get copilot for free but i wish we didn't

edgy ermine
#

horror?

fallow pawn
#

nick chan only touches palera1n if it needs fixing

solemn plank
#

my phone wont scroll right

#

as soon as i let go it just stops scrolling

#

i can barely use the home menu

lapis lava
#

my most starred is vendroidenhanced

#

(150)

#

idk why

solemn plank
edgy ermine
#

what the hell is an extension supposed to do without Host

unreal siren
#

how did i just find out if someone has their twitter linked to discord and you go to their profile, if you press shift it switches between x and twitter blobcatcozy

solemn plank
bold adder
#

today was a crazy day

#

i thought i was doing some trolling for someone

#

but turns out i was their puppet

#

and together we did some crazy stuff

solemn plank
#

i dont care. fix my phone

#

wjat the fuck

bold adder
#

have you tried turning it off and on again

solemn plank
#

what did you do @bold adder

bold adder
#

IDK

solemn plank
#

it suddenly works now???

#

thankd

forest seal
#

Is there a plugin that can add more time to the "Mute channel until" dialog box? Because the longest default is only 24 hours

fallow pawn
#

insane someone put my email on a newsletter

last karma
open pasture
lapis lava
#

i made an icloud mail rule to auto trash any email sent to that address

#

rip me@nin0.dev

somber leaf
#

I should use my domain for iCloud…

lapis lava
#

yop

#

icloud mail is great

open pasture
somber leaf
#

iCloud so good

#

If only Apple didn’t hold back software features

lapis lava
#

true

somber leaf
#

And arbitrary hardware limitations….

edgy ermine
#

bro macos keeps opening the Force Quit Applications window every 5 seconds

somber leaf
#

Get a Apple silicon Mac PLEASE

edgy ermine
somber leaf
#

Wait then who had the shitty Intel Mac

edgy ermine
#

me

somber leaf
#

Oh.

edgy ermine
#

2015 macbook air

#

its not shitty in fact it almost never runs into memory issues LOL

#

it's in the green zone 80% of the time

#

meanwhile this mac instantly reaching yellow zone upon opening discord

somber leaf
#

How much ram does the 2015 have?

edgy ermine
#

8gb

#

and so does this one

lapis lava
#

horror

edgy ermine
#

yop

#

im so done with this mac

#

upgrading in less than half a year

lapis lava
#

ideally the average desktop user would have 16gb

#

32 for dev/gaming

edgy ermine
#

i had 48 gb on my other computer

#

but i dont use it that much

#

in fact i haven't even touched it for half a year

#

it's simply not as convenient as my mac

red cairn
#

yo i seen this cool thing a friend did where it randomizes what his status says but he lowk gatekept it so im here to see if any of yall have any idea on it

somber leaf
#

That sounds… wrong. Are they running different versions of Mac OS?

edgy ermine
#

yop

#

this one runs sequoia and other runs sonoma

somber leaf
#

Oh, that’s why

edgy ermine
#

but this mac runs into memory issues since day 1 lol

red cairn
#

i guess not

edgy ermine
#

even since ventura

somber leaf
#

Ventura is heavy

#

Running it in a VM SUCKED

edgy ermine
#

it's a vm

#

it's gonna suck

lavish schooner
somber leaf
lavish schooner
edgy ermine
somber leaf
#

I feel like I’m being made fun of now

lavish schooner
somber leaf
#

To be honest idk who you are

lavish schooner
#

instead I'm slowly watching the seconds tick by as I update my three-month-old Gentoo laptop

lavish schooner
red cairn
#

damn

edgy ermine
#

@somber leaf it's all chrome

lavish schooner
somber leaf
#

So like chat. How do I make massive dynamic and growing to an arbitrary size memory allocations

somber leaf
somber leaf
lavish schooner
# lavish schooner wdym?

You could like mmap a large section of memory, and it has no actual impact until you start using it

edgy ermine
lavish schooner
#

unless high performance and absolutely zero memory leaks is mandatory

somber leaf
#

Read an arbitrary amount of frames of a video (with a set size).
What I was thinking was just making each frame itself its own memory allocation and using a pool to pull pre allocated ā€œframe buffersā€

lavish schooner
somber leaf
#

Oh no.

bold adder
#

should i make this my mac wallpaper or keep the second one

somber leaf
# lavish schooner Read them and do what

Basically split a video into parts in memory to then encode with different settings to find the optimal pair and at a set consistent subjective quality using a video metric like vmaf.

solemn plank
bold adder
#

nvm ill make it my phone wallpaper

somber leaf
#

So I’ll be reading from a master file, running some form of scene detection with a sliding window, assembling chunks of video, decoding encoded chunks of the video.

solemn plank
#

check out the cool new indie horror game "grogle's fun games". you are placed in a colorful landscape in complete darkness while 7 cartoon characters chase you

somber leaf
lavish schooner
solemn plank
gray tangle
#

t h e s u n

solemn plank
#

what are you

somber leaf
#

Instead of re allocating a 500MB buffer would re allocate a 10kb buffer when appending a new frame

#

And when a video buffer is used, return the frame buffers it contains back to the pool

bold adder
somber leaf
lavish schooner
lavish schooner
somber leaf
#

UAF?

lavish schooner
#

use-after-free

#

Is there going to be threading

#

or any other form of concurrency

somber leaf
#

Oh, yes each section of the video I will henceforth call a ā€œgopā€ will be ran in parallel with a cap of N workers. Optionally (to save memory in the future) each gop itself will have a pool of workers that test encoding the gop with different settings to find the optimal pair.

lavish schooner
#

Could there ever be a scenario where you stick a pointer into that buffer, then you "deallocate" the framebuffer (mark it as unused), and then another part of your code "allocates"/starts using it again, and you end up reading incorrect data from the other uh

#

worker

somber leaf
#

Yes

lavish schooner
#

just throwing shit out there

somber leaf
#

I just have to make sure to not use any allocations after returning them to the pool :3

lavish schooner
#

yeah :3

#

Does Go have any support for finalizers or anything like that?

#

A callback that's called when an object is GCed?

#

You could use that to make a smart-pointer abstraction not unlike what you'd see in C++, right?

somber leaf
#

Why am I decoding raw video to memory instead of reading from a file or temp file…. Long story short reading a segment of a video is very difficult compared to decoding it sequentially from start to finish especially if you read a specific segment of a video multiple times. Tools like vaporsynth that implement features like that often are memory hogs in of themselves. Reading from memory is also faster than decoding multiple times.

lavish schooner
#

It should be less than 40 lines if the language has something like finalizers

somber leaf
#

Golang does not make ANY guarantees that a objects finalizer will ever run

lavish schooner
#

mm

somber leaf
#

Because it’s not a referenced count language

#

It uses stack tracing on a separate thread

lavish schooner
#

Ah

#

yeah don't do what I said then lol

lavish schooner
#

it does make me wonder if you can do any magic with memory-mapped files to make life easier

somber leaf
#

Cross platform? No

#

I thought about that but on windows it would be a mess in of itself

#

If I wanted only Linux support it would be easy to set something like that up

#

A mount of a tempfs in ram

soft wadi
somber leaf
# lavish schooner I don't think I get it

Basically any really modern compressed video format cannot be read from any arbitrary frame position. For mainly two reasons.

  1. modern video formats are inter coded meaning future frames of what I was calling earlier a gop rely on the decoded version of past frames. We must start reading frames at a special frame called an I frame or intra frame that does not rely on any other frame and typically all frames after it rely on it or future frames. (Some features like open-gop break this and makes video files unseekable)
  2. we must first seek the whole file and basically find the gop that starts at the frame we want or has an I frame before the frame we want to start reading at.

We can avoid this whole cluster fuck by just reading a video file sequentially

lavish schooner
#

that delete themselves after closing the FD

somber leaf
#

Afaik temp files on windows are not stored in ram

lavish schooner
somber leaf
#

In the temp directory at least

lavish schooner
#

tmpfs would be bad for storing the entire decoded content of a video

coarse spruce
#

vencord is fire

lavish schooner
#

There wouldn't be enough space

somber leaf
#

We aren’t decoding the whole video. Only ~ 250 frame segments which is only 500 MB @ 1080.

lavish schooner
#

oh

#

Tools like vaporsynth that implement features like that often are memory hogs in of themselves.
I was just thinking of this lol

#

disregard that

red cairn
#

yo ngl my brain a lil slow shit running at 700 mhz did they like remove the ability to add buttons to custom rpcs

somber leaf
#

An instance of vapoursynth can take almost a gb alone decoding a video

#

So I don’t want to use it to read segments of a video

fallow pawn
#

@edgy ermine terraria?

red cairn
#

i guess not again

somber leaf
#

Ideally we have 2-3 video segments read at a time with 2-3 workers per segment working on them. I realize this model is memory intensive so I want to get the best threading I can per MB used

fallow pawn
raw panther
#

vcotd

neon ferryBOT
raw panther
#

I like this cotd

fallow pawn
#

using discord stickers as my cdn

raw panther
#

@fallow pawn can you set my role color to cotd color and pick me a new icon

lapis lava
#

wall of @open pasture

cosmic otter
# fallow pawn

companies cheaping out on lcd panels now that they can use oled for their flagship models

raw panther
#

I wish I had an oled monitor but I also need it to be a 1600p 21:9 when I upgrade

lapis lava
#

does wing have wings

fallow pawn
#

bro whats wrong with twitter I tried hiding a reply but it immediately showed a block menu so I pressed blocked on accident

somber leaf
#

I think yall don’t remember just how bad LCDs used to be. TN was god awful and was used on a lot of cheap shit. IPS glow used to be much worse on average but even cheap 100 usd micro center or Walmart displays are good

cosmic otter
fallow pawn
somber leaf
#

Almost all TVs now are VA which is the best of all LCD technology

#

You just remember lcd being better

#

How? It’s literally all of them

cosmic otter
#

yeah and since people are used to no backlight, a display having one just looks worse than they remember

raw panther
fallow pawn
cosmic otter
#

nice

raw panther
#

i don't think it works at such size

fallow pawn
#

:c

soft wadi
#

@raw panther u should have a rose

somber leaf
#

VA is superior to IPS (which is superior to tn) in all except two ways, viewing angles and black pixels response. Which neither really matters as who watches TVs at a 45 degree angle and due to how… eyes work black smearing isn’t as noticeable as brighter scenes

fallow pawn
#

what if I used the vennie flower

somber leaf
#

VA is the only way to actually get a hdr lcd display

fallow pawn
soft wadi
#

@raw panther

#

rose!!

#

or yea vennie flower works too

somber leaf
#

VA has better colors, higher contrast ratios. What actually matters.

#

Yes? I’ve owned two. All HDR monitors that are good that aren’t oled are VA and FALD

#

The thing is they can look over saturated with SDR content cause they aren’t usually clipped out of the factory cause VA panels usually clip into wider color gamuts

#

Unless your thinking of VA panels from over a decade ago which yes were shit but it isn’t fucking 2014 anymore now is it

#

IPS used to be a smeary mess compared to TN

fallow pawn
#

@raw panther there u go

raw panther
#

test

#

:3

#

I like

fallow pawn
#

nice lfower

#

good looking flower..

#

I love it

somber leaf
#

I’m just saying. Why the fuck would all TV manufacturers use VA if VA is more expensive and it’s apparently ā€œworseā€

#

They’re cheaper now due to how ubiquitous they’ve become

#

They were very expensive in the beginning because it was hard to make them with acceptable pixel response time

#

Ironically OLEDs actually have the worse black smearing of them all

#

Several phone manufacturers as well as tv learned It the hard way

#

VA is now cheaper in TV sizes and better

#

No IPS glow and wider color gamuts

harsh minnow
#

the world if discord synced notification settings

#

i hate when i open discord in a new client and get blasted with that jarring ping noise

#

so obnoxious

fallow pawn
#

I love how my mac starts up its fan when this popup appears

somber leaf
#

Chat did you know that oled blacks being black is actually a lie? sodalove

paper gate
#

I tried a VA but I forgot why I returned it

fallow pawn
#

pure black is a myth

somber leaf
#

Every oled controller keeps every pixel on ever so slightly to prevent the rancid oled black smearing

paper gate
fallow pawn
#

need more xdr displays

soft wadi
#

i was close to bugging a scarf today @burnt maple

last karma
#

I still have the menu for it but the rendering stopped working

fallow pawn
#

@edgy ermine u will be trapped

paper gate
#

@soft wadi wyd

fallow pawn
#

I should get

bold adder
#

who are you marrying

fallow pawn
#

lets fight golem

bold adder
#

Men should consume no more than 9 teaspoons (36 grams or 150 calories) of added sugar per day.

#

im about to eat

#

110 grams

keen kernel
#

i might be insane.

lost furnace
#

I wass

open pasture
#

It's okay

fallow pawn
#

why is the jungle temple so safe

#

xd

#

I made it nekohaxx proof

bold adder
#

im like half

fallow pawn
#

I need an easier way to get in this temple

#

but I cant mine the blocks fr

misty zephyr
#

I bought a blahaj

lapis lava
fallow pawn
#

nope

#

cant use hammer

#

it does nothing

#

wait

#

what the fuck

#

now I can

bold adder
fallow pawn
#

now I have to search up how to make hoiks

#

HUGE

#

oh I cant do upwards

#

cant

#

cant make teleporter

#

wires not allowed to be seen or made in the temple

last karma
#

I remember being able to do up

fallow pawn
#

xD

harsh minnow
bold adder
#

i see these memes everywhere

#

its all in this format

fallow pawn
bold adder
#

im going insane

#

oh my god

fallow pawn
#

if I move from this spot they will probably spawn

lapis lava
harsh minnow
fallow pawn
#

I didnt bring blocks shit

#

I only have 807 wooden spikes

lapis lava
#

@open pasture You may not rest now, I am nearby

bold adder
#

"Tree struck by lightning burning from inside out."
how

fallow pawn
#

this message is scary

#

it happens too often

fresh ledge
fallow pawn
#

WHAT IS THAT

harsh minnow
#

@fallow pawn it's coming

#

are you prepared

fallow pawn
#

uhmm no

lost furnace
harsh minnow
#

there's nothing in this world that could prepare you for it

fallow pawn
#

vee is a noob she hasnt playe dbefore..

bold adder
fallow pawn
#

@harsh minnow will you play terraria with me one day

lost furnace
#

ive played for well over 500 hours total (on pc, xbox, ps4, mobile, EVEN 3DS AND SWITCH) of terraria and I still consider myself a noob and ass at the game in general

fallow pawn
#

wait HUGE BRAIN IDEA

harsh minnow
fallow pawn
#

I'm SO SMART

lost furnace
#

should I play terraria again

#

but like

#

unmodded

#

on my switch

fallow pawn
#

IM DOING IT

lost furnace
#

WAIT IS TERRARIA ON THE WII U

lavish schooner
lost furnace
#

legally downloading trust

fallow pawn
#

the wii u 😭

lost furnace
#

even better fr

lost furnace
fallow pawn
#

I made it out

lost furnace
#

wait wheres my sd card

#

found it almost had a heart attack

lavish schooner
#

@lost furnace what was your old nickname

#

oh yeah

harsh minnow
#

zaynedrift

lavish schooner
#

marketable vennie plushie

wooden sonnet
#

yo

#

guys

#

I have a question

open pasture
lost furnace
#

the eshop is closed for wii u

lone drum
#

is there a plugin that re-enables the Halloween sounds?

lavish schooner
wooden sonnet
#

my discord just started bugging really bad and my name turned to "ALL" when my display is Kyro. Is there a reason for this?

lavish schooner
#

even still I don't remember them more than vaguely, besides that they're cool :3

neon ferryBOT
open pasture
#

The reason is that discord sucks

wooden sonnet
#

just got rlly scared

open pasture
#

I'm lying to keep your mind off the fact that i hage access to your account

wooden sonnet
#

On my screen my username is "ALL" even though it shows my normal display to others

open pasture
#

Don't tell anyone

wooden sonnet
#

Thanks dezem

fallow pawn
#

why do man eaters do so much damage wtf

lost furnace
harsh minnow
edgy ermine
unreal siren
edgy ermine
#

yop

#

no need

#

i get good fps already

lavish schooner
#

"male" fields

harsh minnow
#

this fucking button is literally the worst thing discord ever added

#

so infuriating

bold adder
#

not enough updates

lost furnace
#

gonna try this now

lavish schooner
edgy ermine
#

btw does anyone here know how webpack generates minified identifier names
it always seems to follow a pattern...
e, t, n, r, o, a, i

keen kernel
#

who wants ladybird browser binary

#

only 118 MB

lavish schooner
#

actually

edgy ermine
keen kernel
#

linux

lavish schooner
#

I have the source on my computer actually

#

I can compile it myself

fallow pawn
edgy ermine
keen kernel
#

pull the latest source

harsh minnow
#

it's not that people forget

edgy ermine
harsh minnow
#

it's that people don't give a shit

#

discovery is a garbage feature

fallow pawn
scarlet dust
lavish schooner
edgy ermine
#

vencord got pulled from discovery lmao

harsh minnow
#

it didnt

bold adder
#

can someone ping me

lavish schooner
edgy ermine
#

vencord is no longer on discovery

lavish schooner
fallow pawn
edgy ermine
#

which means either an admin here pulled it or discord did

#

yop

harsh minnow
edgy ermine
#

huh

quasi scarab
#

God I love discord being an amazing platform and thinking private messages have 3 people.

edgy ermine
#

i could have sworn i was searching it yesterday

#

and it didn't show up

lavish schooner
#

Ayy, I've gotten to the point where systemd is compiling

edgy ermine
#

@harsh minnow

fallow pawn
edgy ermine
lavish schooner
#

I like how client mods are on Discovery

quasi scarab
fallow pawn
#

vencord doesnt have that page enabled

edgy ermine
#

ohh

harsh minnow
#

yeah lol

edgy ermine
#

guhhh

harsh minnow
#

that's server pages

lavish schooner
harsh minnow
#

we got removed from that more than a year ago for breaking community guidelines (the guideline they cited wasn't related to client mods, it was related to having descriptive texts, i put shitposts like "we do cool stuff here")

lavish schooner
#

where is zooter

edgy ermine
#

they really dont care about client mods

fallow pawn
#

venkorn

harsh minnow
#

"accurately describe the purpose of the server"

edgy ermine
#

also vee for chrome web store did you put Yes for remote code

harsh minnow
#

uhhh

#

idk

#

we dont have any remote code anymore

fallow pawn
#

anymore..

edgy ermine
#

but they say "strings evaluated through eval()"

fallow pawn
#

@harsh minnow

lavish schooner
#

buh

harsh minnow
#

do you like sundays @fallow pawn

fallow pawn
#

yeah c:

edgy ermine
#

sunday

#

where moonday

#

oh

#

monday

bold adder
#

Announcing Zenless Zone Zero Version 1.4 "A Storm of Falling Stars" Special Program

Dear Proxies, Zenless Zone Zero Version 1.4 "A Storm of Falling Stars" Special Program will start at 19:30 on December 6 (UTC+8).
Follow our official livestream channels:
YouTube >> https://www.youtube.com/@ZZZ_Official/
Twitch >> https://www.twitch.tv/zenlesszo...

#

wait thats

#

THIS WEEK

fallow pawn
#

whyy

#

do u hate sundays

bold adder
#

dances

harsh minnow
#

HNNNNNNNNNNNNNNNG! This is a clip of Mashiro Mitsumine (Mashiro-tan) from episode 3 of the anime "Mikakunin de Shinkoukei" (ęœŖē¢ŗčŖć§é€²č”Œå½¢ ) or the English name "Engaged to the Unidentified." No idea where you can watch it anymore other than buying it or watching on free sites/downloading it.

I seriously hate Sundays!

Copyright Disclaimer: This video...

ā–¶ Play video
coarse spruce
#

e

#

how to get roles

raw panther
#

bribe @harsh minnow

harsh minnow
#

KILL YOURSEEELF

#

i hate yt so much

bold adder
fallow pawn
#

u should press learn more

harsh minnow
harsh minnow
coarse spruce
main wyvern
#

yrd

fallow pawn
#

@coarse spruce you can have one role but its not a very polite role

harsh minnow
# coarse spruce yes

i can give you the following roles if you want:
no support, support only, can't talk, can't vc, brain rot

coarse spruce
#

sure

fallow pawn
#

bad that terraria does weird things with stuff over 60fps

harsh minnow
neon groveBOT
#
Matthew 7:7 - Revised Standard Version (RSV)
Ask, Search, Knock

<7> "Ask, and it will be given you; seek, and you will find; knock, and it will be opened to you.

main wyvern
#

insane

fallow pawn
#

bro got the infinity stones..

harsh minnow
#

omg can we ban this kid

fallow pawn
#

their name is literally kid

raw panther
#

child

open pasture
#

hi

main wyvern
#

neko guild?

#

invite?

harsh minnow
#

Saturday > Friday > Sunday > Wednesday > Thursday > Tuesday > Monday

bold adder
#

this is becoming a speech bubble

magic root
#

APL is incredibly hard, i probably won't get more than a few days in with it lol
the syntax is just ahhhhhh

fallow pawn
harsh minnow
#

mid

fallow pawn
#

oh god this map looks AWFUL

harsh minnow
#

everything is closed on Sundays here

fallow pawn
#

why are you an alien @open pasture

harsh minnow
#

Also it's too short because Monday is approaching

#

Saturday is perfect

fallow pawn
#

u have green legs and hands

tropic niche
#

what if you were walking down the street and a random dog trotted up to you and rolled over to show you its belly would you pet it

fallow pawn
#

@harsh minnow rate tiramisus ocean recreation

bold adder
fallow pawn
#

LMAOO

fallow pawn
#

@harsh minnow pretty pretty

tropic niche
#

i wish hatsune miku was real

#

so i could bury her in the mojave desert

bold adder
fallow pawn
#

time to hop off windows

tropic niche
#

That sounds like a bad thing to say out of context.

unborn halo
tropic niche
#

when the fuck is os xi

fallow pawn
#

on mac now

tropic niche
#

Why is macOS Mojave a thing. They're named after mountains now. Mojave is a desert.

bold adder
#

hashide soreyo kazuno yoroni tsukimi halawo padoru padoru

tropic niche
unborn halo
tropic niche
#

i used memtest today and after pass 1 i had over 6000 errors

unborn halo
#

Still need to pack the old one up and send it back. I’ll do that Wednesday when I run my errands.

tropic niche
#

turns out leaving a cpu in its box on your desk for 9 months before installing it is a bad move

unborn halo
#

It ran past its freshness date?

tropic niche
#

no. i think the temps and humidity got to it. my apartment is a converted attic in a 100 year old house and has barely any insulation.

#

well I guess it could also have just been DOA and I didn't know it because I waited so long to install it.

#

Whatever. I found out too late to use the black friday sales but there will be more sales at the end of the month.

#

Money isn't an object for me. Not because I am rich or frugal or good with money. But because I do not care :3

bold adder
unique wyvern
#

where are you from?

soft wadi
#

me nauseous

open pasture
#

Test test test

#

Nooooooo

fallow pawn
#

INSANEE

#

I love typing playstore and the appstore appears

quasi ravine
topaz agate
#

@shadow owl

bold adder
#

Hi, there! I'm Clyde, an AI assistant chatbot! How can I help you today?

cyan lynx
#

Jolly

unreal siren
bold adder
#

No.

unreal siren
#

ok, ill make you into a chicken sandwich

bold adder
#

:(

keen kernel
bold adder
#

ā˜¹ļø

rain coral
#

@paper gate

cyan lynx
#

I need my house to be jolly

#

And Christmas cheer

bold adder
#

can i live in a plush if i sell my house

rain coral
#

no

bold adder
#

:(

#

i have no clue how im gonna make my paper into 4 pages

#

theres nothing to write about

#

guhh

#

and its due tommorow

fallow pawn
#

my word of advice is just start trying to write

bold adder
#

im known as the yapper

#

and im stuck

#

this isnt good

#

but i will try

fallow pawn
#

when I start trying to write I just get into the zone

keen kernel
raw panther
keen kernel
#

(put it together with sentences with big words)

#

(so it is a longer paper)

bold adder
winter girder
#

@keen kernel you look like you listen to phonk music

covert patio
#

Does anyone have the invite to shiggy discord

bold adder
#

this one?

#

whitespace is scary

#

from now on i will use regularspace

raw panther
#

there's like 8 shiggy discords

bold adder
#

helloregularmyregularnameregularisregularfx69

covert patio
bold adder
#

CCcbgMWM invite link

#

(lazy to dm)

covert patio
#

Ok

bold adder
#

the shig shogs
the wing wongs
and the veeee 😭 veeeeeee 😭

vivid junco
#

Every time I come here I feel like regular is a new role cause of the colour changes 😭

paper gate
#

did entity leave again

bold adder
#

banned

paper gate
#

o

#

i was thinking it would be any day now

cosmic otter
#

both actually

bold adder
#

both?

paper gate
#

@cosmic otter are you jolly

cosmic otter
#

they left and then got banned

bold adder
#

ohh

covert patio
#

I have stolen someones image and now its my wallpaper :3

jaunty trellis
#

@paper gate blobcatcozy

#

gm vendor

jaunty trellis
paper gate
grand crypt
#

Hello Vencordians

fallow pawn
#

modded terraria feels like a fever dream why does everything move so fast

jaunty trellis
paper gate
last karma
#

this expirment seems interesting, it changes how blocks work and adds a new ignore option

open pasture
#

gahhahah

#

test

fallow pawn
#

2 more stars until it rounds up

#

real shit

#

if it fails it fails

#

I remember linking a card once with no money on it blobcatcozy

open pasture
#

No it still ends on jan 1 if you cancel now

bold adder
#

im repoting you guys to john discord!! 1 !

open pasture
#

Gruesome link do not click

bold adder
#

AHHHHHH

#

when does the "Hi I'm new here!" icon expire

open pasture
#

i can leave and rejoin and it will go away

#

im back!!!

onyx bluff
#

hello does anyone know of a text editor for discord (to edit ppls msgs

open pasture
#

😭

fallow pawn
onyx bluff
open pasture
#

inspect element

#

works for me

onyx bluff
#

how do you do it on the discord app on windows

open pasture
#

ctrl + shift + i

onyx bluff
#

oh thanks

spring trellis
#

who's gonna buy

open pasture
onyx bluff
edgy ermine
fallow pawn
#

@edgy ermine wanna watch me fight this boss in calamity

edgy ermine
#

sure

night cape
#

gm vennieflower

raw panther
#

puh-bu :3

night cape
#

eating lions cereal knockoff

near ravine
near ravine
night cape
#

its ok

near ravine
night cape
#

yea like chocolate caramel

#

pretty faithful to the original

jaunty trellis
lavish owl
undone umbra
#

you need knee surgery

#

tomorrow!!

unique wyvern
#

good morning

bold adder
#

maybe i can tape a mouth onto my vennie plush

#

why did i expect an only adult server to act mature

#

gruhhhh (there is no nsfw which is good)

paper gate
#

nini muguh

undone umbra
#

gOod NITE

harsh minnow
bold adder
#

maybe i should play girls frontline 2

#

its free on steam

sudden sun
#

gm oomfs

jaunty trellis
#

gm

sudden sun
jaunty trellis
#

@unborn hound nerd

sudden sun
#

lmao

unborn hound
#

How can i be nerd if stupid

jaunty trellis
#

nerd venniecozycat

#

also padoru pfp when

bold adder
paper gate
#

@jaunty trellis @unborn hound nini

jaunty trellis
unborn hound
modern epoch
#

gm

unborn hound
jaunty trellis
bold adder
#

bro

#

im dead

open pasture
#

rare marvin found in the wild on rxddit repo

near ravine
modern epoch
#

I love minn

sudden sun
#

@bold adder hiiii

bold adder
#

haiiii

unique wyvern
# bold adder how

it's even worse when you open the plastic part but not the see-through foil underneath

bold adder
#

hooray 1.5/4 pages

#

i go eep im done with this shit

#

i just need to survive tomorrow

edgy ermine
#

i kinda want to send this but at the same time its kinda mean

velvet hill
#

yes

vivid junco
#

also shiggy.pics becus yes

edgy ermine
#

Shell script jailbreak

jaunty trellis
#

@fallow pawn @edgy ermine

edgy ermine
fallow pawn
#

bash is totally good for this

edgy ermine
#

The last thing I used palera1n.sh for was to help my friend bypass screen time

#

"css scary"

#

"css boring"

#

idk

#

lmao

jaunty trellis
#

css is annoying

fallow pawn
#

all vencord plugins hopefully shouldnt be accomplished with css

#

bd though...

#

average bd plugin can be done with a css snippet

mystic salmon
fallow pawn
#

plugins are more scary than css

jaunty trellis
edgy ermine
#

you cant do code patches with css

fallow pawn
#

plugins with no docs vs css with hundreds of tutorials online

unborn hound
#

css isnt scary just annoying

edgy ermine
#

nerd below

fallow pawn
unborn hound
unreal siren
#

Mari

fallow pawn
#

i dont know but i know theyre from blue archive

#

blue archive the best 7zip alternative

edgy ermine
#

.bar file

jaunty trellis
#

real

mystic salmon
edgy ermine
#

lol lol

fallow pawn
mystic salmon
#

I make sure to expand all my files to make them bigger

mystic salmon
edgy ermine
#

In order to write a plugin you need to already have plugin writing knowledge

mystic salmon
fallow pawn
#

For now you can learn by reading other plugin code

edgy ermine
vivid junco
edgy ermine
#

I always learn by looking at examples and doing it until I get the hang of it

#

Once you get the hang of it plugin dev is actually really easy

robust holly
#

is there a plugin that lets me upload more file size

fallow pawn
fallow pawn
#

if you knew then why ask

jaunty trellis
robust holly
edgy ermine
#

I have a discord file size bypass

robust holly
#

saves time

edgy ermine
#

use AI compression

robust holly
edgy ermine
#

im gonna compress it using the ai compressor real quick

fallow pawn
edgy ermine
jaunty trellis
edgy ermine
#

i compressed the image

fallow pawn
#

4 bytes

unborn hound
#

4 bytes

edgy ermine
#

i compressed the image down to 4 bytes

robust holly
edgy ermine
#

yop

#

i compressed it too much

fallow pawn
#

It shows for me

unborn hound
robust holly
edgy ermine
#

look at this AI file compression

fallow pawn
#

discord wont fix that issue ever

#

ios 13 users left in the dark as they should

edgy ermine
#

iOS 14 doing fine

robust holly
#

wait also anyone care to tell me what sharex is?

unborn hound
#

oh right

#

so its like

#

a pixel?

robust holly
#

im looking at it rn and it says its "a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key"

#

so your telling me i did all this just to get told to use another program 😭

jaunty trellis
#

I kinda wanna make a self hosted sharex thing

fallow pawn
#

so you either use external software instead or use something 3rd party for vencord

#

or just upload compressed files, or maybe get nitro

jaunty trellis
robust holly
#

i am NOT getting nitro

#

10.99 a month for to upload a single gigabyte is crazy work

verbal ledge
#

30 cents per day

#

it was 8 to 25 then to 10

jaunty trellis
#

insane

verbal ledge
#

blahai

jaunty trellis
#

me

verbal ledge
#

blahaj (big version) in less than a month

jaunty trellis
verbal ledge
#

my screenshots are 10mb

jaunty trellis
#

I wanna go buy another haj

#

I have 2 big ones and 2 smol ones and one more big haj that my sister has

unborn hound
#

Consumerism is fine when its for blahaj

jaunty trellis
#

I need a bigger bed soon to fit all my plushies

stark herald
#

haii sorry I was sleep

robust holly
#

iz theere a way to get the media role like temperorarly

robust holly
#

also wtf is sharex like why do i have to link my dropbox to just get a link of my video 😭

#

grahh i have no idea how to use this

#

its literally not letting me share my video with a link i cant find it

#

i am

#

why is it saying i need to use webhooks bruh???!?!

#

the plugin would have just been so much simpler

#

wait nevermind im stupid

#

thats for a bot

#

i still dont know how to upload videos using sharex though

robust holly
#

bhusobybdybwbyodcyyb

#

this is so DUMB

jaunty trellis
#

have you tried getting good

robust holly
#

you guys are saying i can use sharex insted of this plugin but sharex wont even let you share any links without linking 434 drives or something

fallow pawn
#

Im not going to feed into this but just realize that a 3rd party plugin already exists, and you dont need to use 3rd party software I have suggested

#

if you dont know how to use it, dont use it

robust holly
#

sorry for listening to your suggestions

acoustic trellis
fallow pawn
#

@harsh minnow

zinc junco
#

Embed failure methinks

soft wadi
#

hello americans

#

@fallow pawn i'm need advice

harsh minnow
#

let he rsleep

soft wadi
#

okay vee my bad

#

is she american

#

i forgot

harsh minnow
#

yessss

#

sadly

soft wadi
#

lmao

covert patio
#

shiggy

soft wadi
#

@void ivy

#

do british people wear coats

void ivy
#

yes

jaunty trellis
bold adder
#

im american

#

(its 2-5 am in america)

jaunty trellis
unique wyvern
#

clean profile

bold adder
#

oh shoot i left the big server that had blehhh in it

#

i need to clone it

jaunty trellis
unique wyvern
#

this blehhh?

covert patio
bold adder
#

this bleh

harsh minnow
#

@nocturne bough

nocturne bough
harsh minnow
night blazeBOT
# harsh minnow lc.octr

<:i:1263591655143903314> ​ šŸ‡©šŸ‡Ŗ Ā GermanĀ Ā  ​ ​ ​​<:i:1263590004886863902> ​ ​ ​ ā€‹šŸ‡ŗšŸ‡ø Ā EnglishĀ Ā 

alex_mercer
Member
Sorry I didn't attack
my family died
everything
THX
Requested:
10
B
3
12m
Vice Leader
0/50
0/3
2/2
Donate
Im
Adam
I need backup!
0/45
Clan message...
Member
0/3
10/1
SEND
Challenge
nocturne bough
harsh minnow
#

here better formatting#

nocturne bough
#

Coc players

unreal siren
#

on my way to eat 5kg of sugar

nocturne bough
#

@jaunty ore make ocrtranslate replace text on orginal image just like google translate does when

#

Well it wouldnt be ocr

#

imagetranslate

jaunty ore
#

I've talked about this before

#

I want to but it's a lot of effort

nocturne bough
#

Talk again

jaunty ore
#

And difficult to do in js

nocturne bough
#

Do

harsh minnow
#

ruuuust

#

the best language

nocturne bough
#

DONT USE RUST

harsh minnow
night cape
harsh minnow
#

manti biggest rust fan

quasi ravine
near ravine
glossy swallow
#

was just using gimp to rotate an image

#

it crashed

#

gimp is good

jaunty trellis
sudden sun
#

use macos preview

#

ez

glossy swallow
#

how do i do that on linux

sudden sun
#

good question

jaunty trellis
#

use image magick

stark herald
zinc junco
#

To become the worst lang again

glossy swallow
#

so good

stark herald
glossy swallow
#

i think i will just use a static hourglass image

jaunty trellis
#

what are you making

glossy swallow
#

discord bot

sudden sun
#

you should make it in ddbkit

jaunty trellis
harsh minnow
#

jumpscare

stark herald
#

I was gonna ask a question then realized I can just google it

jaunty trellis
wooden socket
glossy swallow
#

what's ddbkit

wooden socket
#

it probably has around the same amount of sugar

stark herald
wooden socket
#

is this drawer messy guys

harsh minnow
buoyant jacinth
#

I was yapping in #yap-explode but i didnt explode

#

How come

glossy swallow
#

i have 3 thousand lines of code to rewrite ā€¼ļø

buoyant jacinth
#

What does that mean

#

lol

buoyant jacinth
#

"Accept and merge"

#

Ohh rewrite

#

My bad

#

I thought review

glossy swallow
#

3k doesn't sound like much code

#

probably because it's not

#

i'm just a slow developer

#

(it's been over 6 months since i started blobcatcozy )

jaunty ore
#

like there are tools to blur the entire canvas

#

or a square even

#

but not a rotated square

#

or a polygon

glossy swallow
#

how much code do people normally have after 8 months

stark herald
glossy swallow
#

on a project on their own

jaunty ore
glossy swallow
#

because i think it's usually a bit more than 3151 lines

stark herald
#

true

#

Make an issue and someone will pr

jaunty ore
#

like there would have been solutions

#

get the region I want to blur, copy it to a new canvas, blur that canvas, paste it back on

#

but the overhead and complexity just got annoying to me

stark herald
#

Maybe you can make a mask so that blur only affects the region I have no idea idek what library you're using

harsh minnow
#

and make a native module blobcatcozy

stark herald
#

haiiiiii

#

what the

#

do videos support transparency

jaunty ore
#

webm does iirc

keen junco
#

mov does too i think

stark herald
#

wonder why do people still use green screens then

grand crypt
stark herald
#

uhhh no nvm

#

haii

grand crypt
#

Heyhey

#

Nate, husk

real skiff
#

@grand crypt Hello.

grand crypt
#

@real skiff Hi.

#

Fake asf

#

Unless you are watching YouTube originals or some shit like that

#

No way you got that

#

Welp

#

Google is gonna cause another riot

grizzled reef
#

Skill issue

grand crypt
#

Also dingus using a VPN on mobile

grizzled reef
#

im using a vpn, still works fine

civic bolt
#

turkish vpn never blocked ā¤ļø

grand crypt
#

Probably with restrictions caused by copyright or some shit

civic bolt
#

sony

grand crypt
#

Someone whose audio is in the background or some shit

civic bolt
#

them big labels and allat

grizzled reef
#

use a different vpn

grand crypt
#

Or a different frontend for YouTube

grizzled reef
#

lol

keen junco
grizzled reef
#

oh maybe its to do with ads actually

keen junco
stark herald
#

HOLY SHIT

#

REZERO IS SO PEAK

grizzled reef
#

I haven't encountered that in a long time

robust relic
night cape