#🧊-off-topic-iceman-only

1 messages · Page 22 of 1

digital kettle
#

debian

elder geyser
rough domeBOT
digital kettle
cunning iron
#

lisp is literally the future

elder geyser
#

are you stuck in 1980?

digital kettle
rough domeBOT
dusty goblet
#

Nixos

lavish relic
#

mwahh

#

macos

cunning iron
lavish relic
#

:3

cunning iron
#

idk how yall can use your computer with window buttons

elder geyser
#

wowie

lavish relic
#

i use keybinds

elder geyser
#

tessie can't detect my handwriting

lavish relic
#

most of the time

elder geyser
digital kettle
#

how do yall pronounce guix

rough domeBOT
elder geyser
digital kettle
#

wrong

#

geeks

digital kettle
cunning iron
#

doesnt g*ix use nix core or smth

digital kettle
#

did

#

until it became something else

cunning iron
#

a

dusty goblet
digital kettle
#

basicalllly they modified it too much

#

guix and nix repos dont work the same anymore

rough domeBOT
digital kettle
#

i mean guix uses guile

rough domeBOT
digital kettle
#

nix uses... nix

dusty goblet
#

Tessie cute

rough domeBOT
dusty goblet
#

:3

zinc spire
#

:33

cunning iron
#

tbh nix language is pretty ergonomic for what its made for

dusty goblet
#

Why does my family argue about the n word

cunning iron
#

gu*x doesnt seem to have as convenient syntax for doing things

#

no

dusty goblet
#

What is that

cunning iron
#

ableton.zip

tame thorn
#

virus

cunning iron
dusty goblet
lapis lava
#

it stalled my entire windows explorer husk

cunning iron
#

its definitely ableton

#

ableton crack

#

yes

dusty goblet
dusty goblet
lapis lava
cunning iron
#

trolllle uhmmmm

lapis lava
#

i taskkilled it

#

restarted

#

and it still laggy af

cunning iron
#

restart explorer?

#

uhhh

lapis lava
#

done

cunning iron
#

log out and log back in??

lapis lava
#

ima try

cunning iron
#

shouldnt have used windows

#

btw the reason it stayed laggy is probably because defender is really bad at dealing with files like that

zinc spire
#

zip bomb?

lapis lava
#

idk

cunning iron
#

yupp lmao

lapis lava
cunning iron
lapis lava
#

didnt know defender scanned every single file

raw panther
#

explorerpatcher...

cunning iron
#

it deals with simple zip bombs

golden swan
cunning iron
#

it cant deal with this one tho

#

its extra fucked up

lapis lava
lapis lava
#

with like "heres vencord installer fix!!!"

golden swan
#

@cunning iron you are gonna blow up in 4 seconds

cunning iron
digital kettle
# cunning iron gu*x doesnt seem to have as convenient syntax for doing things

(define-public hyfetch
  (package
    (name "hyfetch")
    (version "1.4.11")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/hykilpikonna/hyfetch")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1ymj72virh8y8gwgg3j3skf6j0zn7p0plcza57lln1drnjspycy7"))))
    (build-system python-build-system)
    (arguments (list #:tests? #f))      ;no tests
    (inputs (list python-typing-extensions))
    (home-page "https://github.com/hykilpikonna/HyFetch")
    (synopsis "@code{neofetch} with pride flags <3")
    (description "HyFetch is a command-line system information tool fork of
@code{neofetch}.  HyFetch displays information about your system next to your
OS logo in ASCII representation.  The ASCII representation is then colored in
the pattern of the pride flag of your choice.  The main purpose of HyFetch is to
be used in screenshots to show other users what operating system or distribution
you are running, what theme or icon set you are using, etc.")
    (license license:expat)))
``` example repo (https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/admin.scm#n4021)
rough domeBOT
cunning iron
#

its reproducible too 33

cunning iron
cunning iron
#

i saw some really terrible guile when i tried looking at it somewhete on their site tho

dusty goblet
#

I love hyfetgh, so many flagws

#

:3

elder geyser
#

thats like my name

open pasture
#

Tessie w

rough domeBOT
digital kettle
# cunning iron hm not terrible actually
(define-public uwufetch
  (package
    (name "uwufetch")
    (version "2.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/TheDarkBug/uwufetch")
                    (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "182jwkm4vacz2bhyn7v4jl9bxs7md51az958r0qfp9ky71m2q3vh"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:tests? #f ;no tests
      #:make-flags
      #~(list (string-append "DESTDIR=" #$output)
              (string-append "ETC_DIR=" #$output "/etc")
              (string-append "CC=" #$(cc-for-target)))
      #:phases
      #~(modify-phases %standard-phases
          (delete 'configure)
          (add-before 'build 'patch-source-paths
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((grep (search-input-file inputs "/bin/grep"))
                    (awk (search-input-file inputs "/bin/awk")))
                (substitute* "fetch.c"
                  (("grep") grep)
                  (("awk") awk))
                (substitute* "uwufetch.c"
                  (("(/usr(/local)?)(.*;)" all _ _ rest)
                   (string-append #$output rest))))))
          ;; TODO this will be fixed in the next release of uwufetch
          (add-before 'install 'make-include-dir
            (lambda _
              (mkdir-p (string-append #$output "/include")))))))
    (inputs (list lshw
                  gawk
                  grep
                  ;; viu XXX not yet packaged in Guix
                  xwininfo))
    (home-page "https://github.com/TheDarkBug/uwufetch")
    (synopsis "Meme system info tool based on Nyan/UwU trend")
    (description
     "UwUFetch is a system information tool in the lineage of NeoFetch,
PFetch, HyFetch, and the like.  It prints ASCII art of your system's logo as
well as a summary of system information.  UwUFetch's unique contribution is the
uwu-ification of various words used in the description.  For example, Guix
becomes gUwUix.")
    (license license:gpl3+)))
``` uwufetchs one
rough domeBOT
arctic summit
#

depression noises

digital kettle
#

wah

#

ru ok fire

arctic summit
#

no

#

i just got the letter my father sent to the court

lavish relic
#

whag

digital kettle
#

wah

arctic summit
#

6 pages of him refusing to get me and my sister food

lavish relic
#

im sorry what

lapis lava
#

why is this piece of trash of a man still alive (and im sry too)

digital kettle
#

im sorry why is he a terrible person

deep token
arctic summit
#

and paying for children is negative money

digital kettle
#

kill

open pasture
#

Tessie w

rough domeBOT
digital kettle
#

i can send you money @arctic summit

arctic summit
#

he also tried using the argument that we have 4 dogs we can breed
1 is on the brink of death in a hospital
the other 3 are too old

lapis lava
#

you can kindly get out of this chat if ur salty :3 (this was a polite way to say shut up)

golden swan
arctic summit
digital kettle
#

for food

lapis lava
#

like bro, this aint the best moment to send a skull

#

thats it

digital kettle
#

please say

#

alr

arctic summit
#

will do but for now atleast im fine

open pasture
# lapis lava thats it

I didn't read the context I just saw can I give you money and thought it was funny to put a skull that's it didn't mean for it to be offensive in a way

#

I do apologize for it tho

dusty goblet
#

I can send something as well if needed :3

dapper knoll
#

It's annoying that Discord responds to Shift+Ctrl+N when I'm opening an incognito window... any workarounds?

lapis lava
#

this whitename here,

#

tried to ping the owner

#

but pinged a random person instead

#

and wanted to hide his mistake lul

torpid pumice
open pasture
deep token
#

whitename moment

open pasture
#

brainless whitename invasion...

torpid pumice
#

@vale carbon

#

@polar crane

deep token
#

bro don't go around pinging people

digital kettle
deep token
#

brainlet

open pasture
#

HOLY SHIT WE FOUND HIM

#

MY BOY

raw panther
lapis lava
digital kettle
#

whitenames L

open pasture
#

Is any of you american?

#

if yes

#

on monday can you go to your local walmart

#

theyre preparing to destroy all copies of starfield

cunning iron
open pasture
open pasture
open pasture
golden swan
open pasture
open pasture
cunning iron
#

coolest whitename ever

open pasture
#

@open pasture get me one too

open pasture
#

they either make it really cheap either throw them

golden swan
#

this is the funniest gif ive ever seen

dusty goblet
golden swan
dusty goblet
#

I mean you're probably better than me I guess

#

But I wouldn't call you awesome

deep token
#

meow

dusty goblet
dusty goblet
open pasture
#

does it work as i give you a serial code?

#

or you need the actual disk

#

@open pasture

#

Theyre physical copies

dusty goblet
#

I got so much money wtaf

open pasture
#

so you gotta give me disk sadly

#

if it costs a lot I'll slide you some paysafe later

dusty goblet
open pasture
#

i live in romania

open pasture
open pasture
open pasture
dusty goblet
#

😭 I got multiple 100 bills today

open pasture
#

You could ship it though

dusty goblet
#

Euro

open pasture
unreal siren
dusty goblet
#

I got like 300€ from my dad on my bday and then another 450€ from relatives today so far

open pasture
lavish relic
dusty goblet
#

(don't rob me)

golden swan
open pasture
open pasture
lavish relic
#

the chinese will ban

open pasture
lavish relic
#

existence

dusty goblet
#

I have another 350 in my bank acc

open pasture
lavish relic
#

awesome

unreal siren
#

chinesse

open pasture
#

the great firewall stays the same

open pasture
digital kettle
#

any usb experts here

dusty goblet
#

Nop

open pasture
#

absolutely fucking not

#

USB is eldritch

open pasture
dusty goblet
#

I only send money to cute people if they need it

digital kettle
#

4

USB-C 3.2 Gen 2 (full-function)

5

USB-C 3.2 Gen 1

what does full function mean

dusty goblet
#

Or if I wanna support them

lavish relic
#

ed will buy me a mocha latte when we meet :>

dusty goblet
lavish relic
#

yopp

#

in the future

dusty goblet
#

Woaah when

#

:3

digital kettle
#

now

lime talon
#

jmorning

digital kettle
#

:3

lavish relic
#

soon >:3

open pasture
dusty goblet
open pasture
#

but I don't think china likes Bethesda

dusty goblet
open pasture
open pasture
dusty goblet
open pasture
#

that means i have to compile the linux kernel for this fucking thing

#

aauuuuugh

dusty goblet
#

Nop not cute enough

digital kettle
digital kettle
#

whats that pfp from btw lmao

dusty goblet
#

Sorry :3

open pasture
cunning iron
open pasture
open pasture
#

holy mamas why do you hae that much space

digital kettle
open pasture
open pasture
#

and no sd card

digital kettle
#

whos that

open pasture
#

it's an emulating machine now

open pasture
lavish relic
open pasture
#

hello blusk :3

dusty goblet
#

There's only 1 cute person that is getting money from me atm lol

open pasture
#

the fricken make it so godam big so you cant play other games

dusty goblet
#

Suing a German sounds like a bad idea

cunning iron
open pasture
#

cant play the video because discord is fuckinf stupid but i see shoegaze so i bet it goes brazy

dusty goblet
#

Ur a brit

cunning iron
#

awawa

open pasture
#

No..

lavish relic
#

@cunning iron mwahh

cunning iron
#

this album right here

dusty goblet
#

Show your Staatsbürgerschaft

sly spear
#

If you're reading this, go buy palworld 🗣️

deep token
#

mrow

lavish relic
dusty goblet
lavish relic
#

@cunning iron what player is the miaaa

#

that

cunning iron
#

its tempo

open pasture
lavish relic
#

oh

cunning iron
#

its used for subsonic servers

open pasture
#

yall feelin me on this one

lavish relic
cunning iron
#

i stream music off my local server

lavish relic
#

u host ur own subsonic server

#

amaze

open pasture
lavish relic
#

@cunning iron@cunning iron show ur collection oomfie

cunning iron
#

streaming services are cringe

deep token
junior trout
#

aaa

dusty goblet
#

Bet you don't have one then

open pasture
#

the grind never Sleeps ......

deep token
lavish relic
dusty goblet
#

If you were a German you'd be active in #🇱🇺-deutsch-german as well

open pasture
#

i just noticed your name is an akira complex reference amazing

lavish relic
#

im still heartbroken

open pasture
#

real

cunning iron
deep token
deep token
#

my phone is nearly full and i dont like spending money

open pasture
#

I just steal everything

cunning iron
lavish relic
#

im still looking for those few akira complex tracks in flac quality
i dont download anything in flac but for her i made an exception

cunning iron
dusky vortex
#

@open pasture good morninggggg :3 :3 :3
and to the rest of you good morning i guess

lavish relic
#

im still looking for this in hq

dusty goblet
#

Sue as Britain I don't wanna be nuked

#

Not before I met friends irl

sudden fjord
#

lol

open pasture
#

it's 5 in the FUCKING MORNING i feel like God told me to kms and then threw me into mud

#

i dont Like Wake Early

#

Shit Sucks

deep token
#

wtf my cat isnt here

dusty goblet
#

Sorry I hacked you and downloaded illegal stuff

dusky vortex
#

our ouppy woke us up at 6 this morning too 😭

open pasture
#

ok but thats dog :33

sudden fjord
cunning iron
# cunning iron half the reason i still make music is because i want to someday get good enough ...

https://www.youtube.com/watch?v=xYe6Trc9hIg every time i hear one of shikis songs i just want to lay on the floor and cry.. nachoDed

Angelic Layer by Shiki.
It's rather a pretty song, the way the beat is combined with the piano and the voilin.

Sorry for the picture in advance.
I'm not very good at making videos, and most of the these are for my profiles and I hide the media anyway.

▶ Play video
deep token
open pasture
sudden fjord
#

yes

dusty goblet
#

Oh no

dusky vortex
sudden fjord
#

hey

dusty goblet
#

notlikethis there's too many

sudden fjord
#

don’t be rude

deep token
open pasture
sudden fjord
raw panther
deep token
sudden fjord
#

anyway have to go

cunning iron
#

apparently mia is a common trans name its so over nachoDed

open pasture
cunning iron
#

sjsmfjdskd

open pasture
#

You're my least favorite mia

#

I HATE YOU!!!

deep token
open pasture
#

although for real i only know like 3 and you're the coolest one so

#

i cant count the amount of lunas i know. theyre everywhere

dusty goblet
#

I'm so sleepy,,

cunning iron
open pasture
#

it's a flood

dusty goblet
#

But also I barely know anyone irl sadly

lavish relic
#

zzz

dusty goblet
sand citrus
#

me too hi

open pasture
#

they need to start giving the Lunas UUIDs

dusty goblet
#

Hai not-chan nyaboom

cunning iron
#

coming out my trans my name is dinnerbone

dusty goblet
#

Will you walk on your head

lavish relic
cunning iron
#

⁉️

sand citrus
lavish relic
#

@dusty goblet we're eepy buddiees

dusty goblet
stiff urchin
#

@deep token meow

deep token
#

@stiff urchin meow

dusty goblet
sand citrus
#

I wish I never had to sleep

#

I hate sleep

open pasture
dusty goblet
#

Sleep is nice mostly

#

So cozy

#

No worries

sand citrus
#

sleep pisses me off

raw panther
#

sleep is nice but what a waste of time

dusky vortex
#

this server is basically just the unofficial trans people discord server at this point tbh

sand citrus
#

sleep is ok if you want to sleep

#

and if you get enough

dusty goblet
raw panther
sand citrus
#

but if you sleep like shit it's the worst thing ever

dusty goblet
dusky vortex
# open pasture

why the fuck did the attachment padding change this is aliucord there are no updates HOW DID THIS HAPPEN

cunning iron
dusky vortex
sand citrus
#

i am a tiny bit irritated from lack of sleep i shall leave the chat goodbye

lavish relic
#

@dusty goblet ur cute :>

cunning iron
dusky vortex
# open pasture

its like if i said "oh youre one of THOSE people" without context

#

speaking of which you are definitely one of those people

open pasture
#

You're one of those WETDRIERS.....

cunning iron
#

drywetters

dusty goblet
dusky vortex
#

no im actually a joeydrew.studio-er apologies

open pasture
#

You're an honorary wetdrier

#

You radiate weddy energy

raw panther
cunning iron
#

this is a good image

brittle granite
cunning iron
#

unreal..

#

so many unnecessary steps

#

should just have eaten it from step 1

dusky vortex
open pasture
#

preciselt

cunning iron
dusky vortex
#

what

cunning iron
#

or wait did i misinterpret what you said

#

i think i missed the joke u were making oops

lavish relic
#

she meant fnaf

#

or i thikn bendy

cunning iron
#

yea i. uhm.

#

i over

#

i missed that

dusky vortex
lavish relic
#

@cunning iron silly siller

cunning iron
#

sorry.

lavish relic
#

fnaf plus woo

dusky vortex
#

fnaf SUCKS

open pasture
cunning iron
#

THEY ARE

lavish relic
dusky vortex
#

yeah like half that list is absolute peak

lavish relic
#

i liked lisa

cunning iron
#

dont ask me what corner of that image i frequent in

open pasture
#

dare i say most of it

dusky vortex
lavish relic
#

mia so silly

cunning iron
#

heres a hint

lavish relic
#

vn

dusky vortex
#

its okay you can say visual novels

cunning iron
#

schizoid hyperpop lainpilled stinky Verizon Fios autist doomer hikki fujo pupbrained discord nightcore femcel

dusky vortex
#

this is a safespace

cunning iron
#

its over

lavish relic
#

hylics is my fav game

#

llike ever

#

and fear and hunger

open pasture
#

righr out the gate i see dusk cruelty squad deus ex lisa spec ops milk superposition game higurashi

lavish relic
dusky vortex
#

first thing i saw was disco elysium

#

and dusk

open pasture
#

i have yet to play disco elysium

cunning iron
dusky vortex
lavish relic
#

add lobotomycore

cunning iron
#

REAL

#

lobotomite*

lavish relic
#

yop

open pasture
#

gang gang

#

hotline miami and golden light are real too

#

sum1 buy me disco elysium

lavish relic
#

yarr

open pasture
#

i spent my money on robux

lavish relic
#

matey

cunning iron
#

hotline miami isnt rlly shizo

#

and neither is dusk tbh

stark herald
#

hi al

dusky vortex
cunning iron
#

not deep enough in the shit tr

lavish relic
dusky vortex
#

because they all got kicked out of the studio and Capitalism Happened

open pasture
#

i don't like

#

legal stuff

lavish relic
#

@dusky vortex u love sticking it to corpos

stark herald
#

( cosmin ) hi

open pasture
#

cz im edgy n shit

#

hi fres

stark herald
#

:3

open pasture
#

w<

stark herald
#

cute

open pasture
#

i actually dont know if this guy cheats in video games

dusky vortex
stark herald
dusky vortex
#

pirate all games made by large corporations allah will be pleased

open pasture
#

Uh oh

dusty goblet
lavish relic
#

ok if u had to play a game for the rest of ur life what would u pick

open pasture
#

Risk of Rain 2

dusky vortex
#

modded minecraft no question

lavish relic
#

stardew :>

dusky vortex
#

even if i had to pick one modpack and stick with it forever itd still be modded minecraft

cunning iron
lavish relic
#

nop
a game in vrchat does

open pasture
#

am i allowed to mod games

cunning iron
#

sob

dusty goblet
lavish relic
#

yop

open pasture
cunning iron
#

im just going to become a ghost that haunts that one vrchat world

open pasture
#

its absolutely probably minecraft then

dusky vortex
#

well if modding is open game then minecraft is like the only answer here

lavish relic
#

stardews modding scene i love

dusky vortex
#

just like use computercraft to stream other games into minecraft

open pasture
#

minecraft in minecraft in minecraft

dusky vortex
#

i think thats unironically possible actually

#

iirc theres realtimeish video decoding formats now

open pasture
stark herald
stiff urchin
open pasture
#

bro..?

stark herald
#

join mu server 🥺

open pasture
#

that wasn't very cutie patootie of you..

#

oh

cunning iron
#

blud dropped the ip in the chat

dusty goblet
dusky vortex
native ruin
open pasture
#

ok ill join l8r mayb

stiff urchin
#

THERE'S A SEQUEL ????

cunning iron
#

chance of precipitation

dusky vortex
#

oc1 has better hardware simulation than cc imo

cunning iron
#

🧐

stark herald
dusky vortex
#

i like the proper separation between the bios and os

stark herald
#

vencord 2

stiff urchin
#

ooh wait no i rember now

stark herald
#

the sequel

dusky vortex
#

instead of computercrafts weird shit

open pasture
#

just make a pc in wiremod

stiff urchin
#

oc2 with RISC 5 emulation in mc

#

cursed

dusky vortex
open pasture
#

oh shit yk what actually

dusky vortex
native ruin
open pasture
#

on the topic of games to spend the rest of my life in its like

#

absolutely gmod

open pasture
#

e621

stiff urchin
#

@dusky vortex i love how oc monitors like. actually work

cunning iron
#

where does a game become a sandbox

stark herald
#

.3

open pasture
#

just because i can make gmod an entirely fuckinf new game and im basically cheating at that rate

#

•3

dusky vortex
cunning iron
#

vrchat isnt a game but gmod is?

open pasture
#

did u use to be on vape forums 😭

cunning iron
#

how does that work

open pasture
#

I'm not

dusky vortex
#

i am

stiff urchin
cunning iron
dusky vortex
cunning iron
stiff urchin
open pasture
#

drake am i meam

#

mean

dusky vortex
#

u can just run monitor SIDE shell to run a shell on the monitors

open pasture
#

Aloë Vera

dusty goblet
#

Mreow

dusky vortex
#

mouse input just works for them but u do need a separate mod for keyboard input iirc

dusty goblet
#

Hai mae

dusky vortex
open pasture
#

Yo

dusky vortex
#

i think

stiff urchin
#

waitt im so lost

#

i don't get it at all

dusky vortex
#

im tlaking about cc monitors rn

open pasture
#

@dusky vortex

stiff urchin
#

ooh

dusky vortex
#

@open pasture

#

meow

open pasture
#

Meow

#

(Vendetta)

open pasture
open pasture
eager marsh
open pasture
#

Whart....

native ruin
#

wart??? nether wart???

open pasture
#

Crazy......

native ruin
#

this is like that one time when i sollyWeed

dusky vortex
#

cute ouppy/10

open pasture
dusky vortex
#

i was going to talk about the pale white hands but it was already a foregone conclusion

steady lagoon
open pasture
steady lagoon
open pasture
#

Me

native ruin
#

nu h uh

open pasture
#

yes

open pasture
#

Even my skin is more pale

eager marsh
#

ifinally got reviewdb wtf are my reviews 😭

open pasture
#

I live in Arizona

#

I can't physically be pale

#

Im in ga

dusty goblet
open pasture
dusky vortex
dusty goblet
open pasture
dusty goblet
#

Discord api heart beat latency blobcatcozy

open pasture
#

This shit sucks

dusty goblet
#

Lol

#

Cpr it now

#

:3

open pasture
#

No

#

Gonna kill it

dusty goblet
#

How does one do cpr again /hj

#

I'm not confident that I remember how to do it at all lmaoo

open pasture
#

I've never done it

dusty goblet
#

I've done it on a doll

open pasture
open pasture
dusty goblet
#

Meow :3

zinc spire
dusty goblet
open pasture
#

Get those giant machines that do CPR for you.

dusty goblet
#

Lmao yes

#

Let me carry one around at all times

open pasture
#

Carry it, you weak bitch.

dusty goblet
#

Is that an insult or a compliment

open pasture
#

Both

dusty goblet
#

:3

open pasture
#

:3

#

Crazy.

dusty goblet
#

If you make a backup containing a file containing a file you get a file containing a file containing a file

#

Make sure to backup your Minecraft folder before resetting your PC

open pasture
#

I don't apologize for anything then.

#

stop speaking like an ai language model

dusty goblet
#

I'm sorry, but as an ai language model...

open pasture
native ruin
#

chat i had to switch my mouse

#

input lag got on my nerves

#

and now im using a weird small office mouse

brittle granite
#

why is mae on kyza mode now

open pasture
#

was looking at my google photos and found this i took last year

#

how did they break the coinstar machines bootloader

#

baffles me to this day

rotund valley
native ruin
#

mouse wheel broken

#

eugh

west ore
native ruin
#

guess im not using this one

#

ffs i need to fix front ports again

open pasture
#

efi shell can be dropped to for like 2000 reasons but the funniest part is that

#

that was january 1

brittle granite
#

coinstar is so fucked up

open pasture
#

thats how i kicked off the new year and it stayed like that for 4 more months

west ore
#

it’s supposed to at least give you some useless blk0: garbage

#

and it should give you an ESP usually on fs0 but it might not be first partition

brittle granite
#

they take 11% of ur coins bro tf

deep token
#

meow

dusty goblet
#

Mraow Mraow

west ore
#

or even autosort them with a machine and autoroll them

native ruin
#

can my front ports just work please

west ore
#

cashier has to count

brittle granite
#

if all pennies are the same size

dusky vortex
native ruin
#

i meant usb ports

west ore
native ruin
#

im quite angered that they reguse to work

#

refuse

west ore
#

are they usb3

#

if so did you misalign the header and bend every single pin

native ruin
#

did i what the what

west ore
#

did you assemble i tyourself

native ruin
#

i swear to fucking god

#

this ficking pc

#

its not booting again

worthy adder
native ruin
#

im actually going insane

#

now it did

eager marsh
#

guys who wanna see my epic gd level!!!

native ruin
#

OH MY FUCKING GOD GO INTO BIOS

#

ITS NOT THAT THARD

open pasture
dusty goblet
#

She

#

Misread

native ruin
#

WHAT

#

WHAT IS GOING ON WITH THIS THING

open pasture
#

crazy rapid

#

they dont get too big though surprisingly

#

she's as big as she's gonna get and she's still small enough for me to carry her very awkwardly

dusty goblet
#

I imagine that to look very funny

open pasture
#

the dog is about 3/4 of my height

#

i am like 5'10

native ruin
#

im actually going insanw

#

it boots into windows but doesnt let me into bios

open pasture
#

i need to play some peak

native ruin
#

OH MY FUCKING GOD

dusty goblet
#

patpatpatpat

lime talon
#

Ford-CarRemote appears

#

4 minutes later

#

doorbell

native ruin
#

chat whats the most effective way to smash a pc into little bits

unreal siren
#

Frying pan

native ruin
#

thanks

#

because im avtually going insane

#

how is it so hard for this pc to just get into bios

open pasture
#

Is fast boot enabled

native ruin
#

yes

open pasture
#

Disable it

dusty goblet
#

And can you boot into windows

native ruin
#

yes

#

but not onto bios for whatever reason

dusty goblet
#

Just boot into bios from widows then

native ruin
native ruin
open pasture
#

You don't need bios to disable it

native ruin
#

does this affect win11

open pasture
#

Idk

#

I use win10

#

You can also try holding shift when you click restart in the start menu

dusty goblet
open pasture
#

I think it brings up something you can access the bios through

native ruin
#

doesnt for me

#

just reboots as usual

native ruin
sudden fjord
#

it only works with uefi not in legacy

#

at least with getting into the bios from windows

native ruin
#

im using uefi

native ruin
#

nvm powershell did smth

dusty goblet
native ruin
#

i dont know

#

nothing

#

aaaand nothing

#

great.

#

should i just reset bios

#

like the battery thing

dusty goblet
#

Idk

#

I think you have skill issue maybe

jaunty trellis
native ruin
#

shut the fuck up

unborn magnet
jaunty trellis
native ruin
#

ah, blackscreen my beloved

jaunty trellis
dusty goblet
#

Hai pingu

#

Ur cute

slim ledge
#

woof

jaunty trellis
#

:33

jaunty trellis
unborn magnet
open pasture
#

Idk how to manage cables :(

#

Thanks discord

#

Never knows image rotation

dusty goblet
dusty goblet
unborn magnet
open pasture
#

my phone was very well rotated properly

#

it shouldn't be sideways

jaunty trellis
open pasture
#

bwa

dusty goblet
unborn magnet
worthy adder
unborn magnet
worthy adder
open pasture
#

:3

deep token
#

@open pasture

open pasture
#

@deep token

worthy adder
#

@worthy adder

open pasture
#

nop

deep token
#

@open pasture

#

hiii

open pasture
#

hiiii

worthy adder
#

@worthy adder hiiii

dusty goblet
#

@stark herald hi

stark herald
#

@dusty goblet hi

dusty goblet
#

:3

half timber
#

Guys is there anyone who has a s&box invite code?

dusty goblet
#

A what

half timber
#

s&box invite code

dusty goblet
#

What's that

open pasture
#

???

open pasture
#

gmod

half timber
#

s&box is actually a good sandbox game

open pasture
#

gmod

#

gmod has the steam workshop

half timber
#

s&box has asset.party

open pasture
#

@open pasture i need more help i still dont play gmod enough lol

#

maow

#

??????????????

dusty goblet
#

What's gmod

open pasture
#

confused gmod players with gmod server players mb

void ivy
#

wee snaw

#

wee snaw

open pasture
#

sigh

dusty goblet
#

Hai lewi

void ivy
#

hai

dusty goblet
#

Hru

void ivy
#

tired

#

need to go to work tomorrow

dusty goblet
#

Rip

stark herald
#

@paper gate marked down

open pasture
#

good jon

#

job*

#

minecraft kitty

#

:(

native ruin
#

I MADE IT INTO BIOS

#

usb settings are all on on default

open pasture
#

bios best os

dreamy inlet
steady lagoon
#

aids

#

tessie w

rough domeBOT
open pasture
#

tessie cute

rough domeBOT
open pasture
#

:3

dreamy inlet
#

:3

open pasture
#

meOQ

#

wh

#

mraow

dreamy inlet
#

💀

open pasture
native ruin
#

okay my front ports are acting weirder now

steady lagoon
native ruin
#

mae can you post a video for me

open pasture
#

what is it.

#

im probbaly gonna go back to sleep because i only got like four hours of sleep ffs

native ruin
#

my headset being weird cuz of my front ports acting up

jaunty trellis
open pasture
steady lagoon
open pasture
#

just send a link of it and ill repost it for you @native ruin

native ruin
#

thanks catThumbsup

open pasture
#

O wait nvm

#

Its a pc

#

Speaker?

native ruin
#

its my pc btw mae just reposted it for me so it embeds

open pasture
#

O ok

native ruin
#

but i dont get what you mean

open pasture
#

Nah I was just curious what it was

#

Dw

brittle granite
#

i opened a box w cheese and it cut my finger wtf

open pasture
#

I dream about it

brittle granite
#

your brain is cheese

open pasture
#

Nyom

#

:3

willow owl
#

🧀

dusty goblet
#

I got another 100 bucks

#

Crazy

native ruin
#

ITS STILL NOT WORKING

jaunty trellis
open pasture
open pasture
native ruin
#

could it potentially have to do with me needing to plug in an extra cable

dusty goblet
open pasture
#

I set mine up manually

#

Lol

#

barely, i use archinstall

jaunty trellis
open pasture
#

Mrrrp~

jaunty trellis
#

distro hopping was fun tho

#

but now am happy with my current arch setup

open pasture
#

:3

#

I'm just using standard kde on my laptop rn

#

It's a shitty 14 year old bios only laptop

#

Bajahahahaahjjdjfjfjr

#

Blåhaj

#

Or was it blahåj

#

Idr

dusty goblet
#

Think the first

open pasture
#

O oki

#

:3

dusty goblet
#

:3

dusty goblet
sudden fjord
dusty goblet
#

That's all I did

open pasture
#

So eepy

open pasture
dusty goblet
#

And I have 30 tabs open with stuff I want to do

#

But I'm laaaaazy

sudden fjord
#

my server doesn’t want me to get more blahaj :((

open pasture
#

Might go napp

#

Zzzzzzz

#

@dusty goblet

dusty goblet
#

Napping cute

#

Have a nice nap

#

patpatpat

#

And sweet dreams if you get them :3

open pasture
#

I'll cuddle a blåhaj for you in memory of your blåhaj

zinc spire
#

yop
enjoy your nap :3

dusty goblet
#

There's a chance I get one tmrw

open pasture
#

Yay

#

:3

dense phoenix
#

i wish i had a blahaj

open pasture
#

I gib u my smol ons

#

One

sudden fjord
#

who gonna buy me pink blahaj

dusty goblet
#

(I don't expect them to get me one)

dusty goblet
sudden fjord
#

I now get a blahaj from everyone of you UwU

raw panther
#

is it a blåhaj if it is inte blå

steady lagoon
#

conveniently there is an ikea near me

cobalt portal
open pasture
#

Ask them where the bloo-hai are, that's how it is pronounced

steady lagoon
#

bloo hai?

cobalt portal
#

yea that's how to pronounce blahaj

jaunty trellis
steady lagoon
#

oh

#

well in a random vid titled How to Pronounce Blahaj (IKEA's Blue Shark) the top comment said its pronounced

#

blow hai

unborn magnet
#

That’s closer than blah hajj

#

But blå is not really blow

raw panther
#

bloo where oo is like in floor

steady lagoon
#

yeah i dont rly see how its just gonna be pronounced blow

#

bloo makes more general sense

sudden fjord
#

HELPPPP

steady lagoon
#

its a shark plush

#

from ikea

#

and theres a big version of it

#

👍

bright walrus
raw panther
jaunty trellis
#

<.<

raw panther
#

you cuddle it for cute dreams

cursive hornet
#

Blahaj is amazing

dense phoenix
#

i love blahaj

sudden fjord
#

we all do :33

dense phoenix
#

i hug blahaj

jaunty trellis
steady lagoon
#

add blahaj emoji when

open pasture
#

One message removed from a suspended account.

steady lagoon
#

i already found some on reddit

jaunty trellis
steady lagoon
#

i dont got nitro

open pasture
#

One message removed from a suspended account.

steady lagoon
#

frick

dense phoenix
#

which tho

steady lagoon
#

uh

#

the ones i found on reddit

steady lagoon
jaunty trellis
steady lagoon
#

idk if i can post links here

#

uh

dense phoenix
steady lagoon
#

alr

#

dis one

dusty goblet
#

Lmao