#💽Programming Chat v2

1 messages · Page 118 of 1

timid quartz
#

SHORT

spare quartz
#

no…

#

more like you’re too tall..

timid quartz
#

short....

spare quartz
#

okay well

#

I have 4 computers, 3 telephones, and 7 monitors

#

Therefore: I win, your points are moot.

timid quartz
#

short...

spare quartz
spare quartz
#

I’ll have my own forklift, a fax machine, and a printer and scanner

#

and Ill be my own office!!!! Mwhahahahhaha

timid quartz
#

ok but youre not forklift certified

spare quartz
#

don’t need it where I’m going.

timid quartz
#

but you do need risc

spare quartz
timid quartz
# spare quartz
package main

import (
    "log"

    "github.com/gofiber/fiber/v2"
)

func main() {
    api := fiber.New()

    api.Get("/", func(c *fiber.Ctx) error {
        return c.SendString("Hello, World!")
    })

    log.Fatal(api.Listen(":8081"))
}
spare quartz
#

qs general rn…

timid quartz
#

my professor: "cisc is doomed"

spare quartz
timid quartz
spare quartz
#

I’ll find them on pixiv when I’m home

#

Getting food rn

timid quartz
spare quartz
timid quartz
#

a real hikikomori would have gotten someone to deliver all the things you won to your house

spare quartz
#

Over budget.

timid quartz
#

偽の引きこもりだ

spare quartz
timid quartz
flint belfry
#

oh its OLD monitors

#

be careful with screen burn

spare quartz
flint belfry
#

they look old

#

old enough to have screen burn in

spare quartz
#

can also go over 60 hz surprisingly

flint belfry
#

ok wtf

#

whats the model number

spare quartz
#

one sec

flint belfry
#

either thats a sleeper monitor in a old ass looking shell or its just a special old monitor

spare quartz
#

1280 x 1024, 75 Hz TFT

flint belfry
#

how much was the lot again

spare quartz
#

7 ea for $20

flint belfry
#

mid 2000s

#

i presumed

flint belfry
spare quartz
#

Pretty good right

#

Also came with power cords, just no video

flint belfry
#

yeah
too bad MY AREA HAS JACK SHIT

flint belfry
spare quartz
#

soon I’ll get 30 of them in Dallas…

#

But that’s super far away

#

So I’ll probably need to use like 1.2 tanks of gas

spare quartz
#

Eventually

#

Hopefully.

timid quartz
timid quartz
spare quartz
timid quartz
timid quartz
#

aaaaaaa

timid quartz
#

mesoscale discussions, finally some interesting weather ❤️

lone sky
timid quartz
#

you would

lone sky
timid quartz
#

tornado possible! smile

spare quartz
spare quartz
#

sharing files between computers is hard

#

gonna make fuse now

#

here we gooooooooooo

timid quartz
#

scp

#

http microserver

#

uhhhhh

#

google drive

spare quartz
#

so im just gonna use projfs and make the network bsl thing now

#

shouldnt be too difficult..

spare quartz
#

no

#

both require downloading too

timid quartz
#

waah waah...

spare quartz
#

also wow

#

windows downloaded the intel graphics drivers

#

and god the color grading is excellent

#

defintely not what i expected from them but

spare quartz
#

damn

#

FUSE gives me a ton of ideas

spare quartz
#

neat

timid quartz
spare quartz
timid quartz
#

language in shambles

spare quartz
#

sick it got marked

spare quartz
timid quartz
#

the way you do enums is

type MyEnum int
const (
  Enum1 MyEnum = iota
  Enum2
  Enum3
)
spare quartz
#

ALSO scary

#

win32 is going to get jvm functions as callbacks 🙏

timid quartz
timid quartz
#

at least Go isn’t a JVM lang

spare quartz
#

(its much worse as a result)

timid quartz
#

better*

spare quartz
#

your ffi probably also sucks

timid quartz
#

Rust FFI doesn’t
Idk about Go
JVM FFI is the worst of them all

spare quartz
#

(says person whos never used it)

#

peak design

timid quartz
#

JVM is just another layer of bloatstraction on top of an already functioning system

spare quartz
#

yeah but we have completely platform agnostic ffi

#

among other things like vectorization

timid quartz
#

Actually it only supports one platform

#

The JVM

spare quartz
#

#

the JVM can compile straight to machine code automatically

timid quartz
#

Yeah Go FFI looks crappy

spare quartz
#

what do it look like

timid quartz
#
package main

import (
    "os"
    "unsafe"
)

/*
#cgo LDFLAGS: -lavformat -lavutil -lavcodec
#include "test.h"
#include <stdlib.h>
#include <string.h>
*/
import "C"

//export go_read
func go_read(opaque unsafe.Pointer, buf unsafe.Pointer, p1 C.int) C.int {
    foo := (*Test)(opaque)
    return (C.int)(foo.read(buf, int(p1)))
}

//export go_write
func go_write(opaque unsafe.Pointer, buf unsafe.Pointer, p1 C.int) C.int {
    foo := (*Test)(opaque)
    return (C.int)(foo.write(buf, int(p1)))
}

var (
    file       *os.File
    outputFile *os.File
)

type Test struct {
}

func (s *Test) read(buf unsafe.Pointer, size int) int {
    tmp := make([]byte, size)
    n, _ := file.Read(tmp)
    C.memcpy(buf, (unsafe.Pointer)(&tmp[0]), (C.ulong)(n))
    return n
}

func (s *Test) write(buf unsafe.Pointer, size int) int {
    outputFile.Write(C.GoBytes(buf, (C.int)(size)))
    return size
}

func main() {
    data := &Test{}
    for i := 0; i < 400; i++ {
        if f, err := os.Open("../test.flv"); err != nil {
            panic(err)
        } else {
            file = f
        }

        outputFile, _ = os.Create("test.ts")
        C.go_transmuxer(unsafe.Pointer(&data))
        outputFile.Close()
        file.Close()
    }
}
spare quartz
#

oh

#

ew

timid quartz
#

Rust is decent because all you need is libc and extern "C"

spare quartz
#

the jvm doesnt need anything but a linker and an arena

timid quartz
#
type Callback = unsafe extern "C" fn(*mut c_void, *mut c_void, c_int) -> c_int;

extern "C" fn rust_transmuxer(red: Callback, write: Callback) -> libc::c_int;
#

type Callback is a user-created type and isn’t required

#

but also I don’t really care about FFI since I’ve never used it

spare quartz
#

ignore prjfslookup i didnt want to create a mock of that too

timid quartz
#

that looks worse than Rust but better than Go

spare quartz
#

better than both*

timid quartz
#

Rust’s is best

spare quartz
#

timid quartz
#

imagine needing a linker during runtime

spare quartz
spare quartz
timid quartz
#

inferior*

spare quartz
#

also wow it supports more than i thought

#

who would need a linker for the ibm system/390

timid quartz
#

Rust supports so many more targets

spare quartz
#

yeah but it's not agnostic and your os targetting sucks ass

timid quartz
#

this is just JVM copium that you don't support as many targets

spare quartz
#

timid quartz
#

proof that the jvm is pure cope

spare quartz
# timid quartz proof that the jvm is pure cope

\やっぱりけものはサイコー!/

けも好きによるけもけもしさ満点の電波ソングです。全力であるあるネタをぶっ込んだ楽曲になりました。結論みんなサイコーじゃん…!(※すみません、人間キャラもケモミミキャラも好きです)殴るならばびおを殴ってくだ...

▶ Play video
#

my honest reaction

#

This class is only useful in conjunction with the Security Manager, which is deprecated and subject to removal in a future release. Consequently, this class is also deprecated and subject to removal. There is no replacement for the Security Manager or this class.

timid quartz
#

ughhhh download faster....

spare quartz
#

i need to make a wifi 7 router ...

#

just need to rig one of these optiplexes into one

timid quartz
#

you need to make a JVM destroyer...

spare quartz
timid quartz
#

hmmm

#

what OS to put on my Japanese Thinkpad...

#

it has FreeBSD on it but idk..seems too eccentric...

spare quartz
#

this works ...

#

i was gonna ask who would ever need a 35ft cable for video

#

but i have a 50 ft spool of hdmi in my closet 😭

spare quartz
#

YOOOOO

#

it works!!!!!!

timid quartz
spare quartz
#

the analog on windows, yeah

#

i just need to supply it with data now

spare quartz
#

OH!!!!

#

thankfully they're not real

lyric mesa
#

fellow programmers!! do you think there are any potential ways to improve this?

#

is a function that determines an offset for a spritesheet

spare quartz
#

does your spritesheet contain monospaced characters only

spare quartz
#

collect the cell size of each character, arrange the bitmap in ascending order by char code, and translate the index by
x = (index % cells per row) * cell width
y = floor((index / cells per row) * cell height)
u/v = cell size

#

if it's out of bounds return the index at 0 or something

#

i dunno if your spritesheet contains anything more than ASCII so if it only contains that then you can just consider anything under the code 0b01111111

lyric mesa
#

which is well, what it currently handles in the image above

spare quartz
#

oh

#

well if you can't sort the characters in accordance with their value that method looks fine

#

but if the characters are a bitmap of 0/1 you could look into encoding each character using a buffer ...

lyric mesa
#

hmm i guess it's fine as-is, haha

#

thank you anyway!

spare quartz
#

尀䐀攀瘀椀挀攀尀䠀愀爀搀搀椀猀欀嘀漀氀甀洀攀㔀尀倀爀漀最爀愀洀 䘀椀氀攀猀尀䜀椀琀尀洀椀渀最眀㘀㐀尀戀椀渀尀最椀琀⸀攀砀攀

#

there

spare quartz
lone sky
#

@spare quartz We are Here to Defeat the Enemy

flint belfry
spare quartz
spare quartz
flint belfry
#

I win.

spare quartz
#

accurate*

timid quartz
#

also could it kill windows to not measure everything in kb

#

and to also be consistent

#

file explorer measurements are in KB
disk manager partition measurements are in MB
the installer actually changes units like wtf

spare quartz
#

and partitions are allocated with mbs...

spare quartz
#

@flint belfry @timid quartz

#

decided to look to see if theres anything for memory since i need more for our optiplex to be better running

#

and i found this absolute bomb

#

too bad its in cali

lone sky
#

absolute investment

spare quartz
lone sky
spare quartz
lone sky
#

OH

spare quartz
#

wanna see

lone sky
#

ISTG

#

IS IT THE IRS PHONES 😭

spare quartz
lone sky
#

what the fuck

spare quartz
#

they're detachable <3

lone sky
#

this is genius

#

you just call the grid company

#

indirectly

spare quartz
#

that photo was taken with me holding a folded webcam up to my wall

#

(my actual phone was dead)

lone sky
#

😭 ??

flint belfry
#

some ancient servers but i see some newer ones

spare quartz
#

about to use ebay again

flint belfry
#

shame it's in cali though

spare quartz
#

hopefully i dont get my legs broken

flint belfry
spare quartz
#

no

flint belfry
spare quartz
#

im selling

flint belfry
#

oh

#

💀

spare quartz
#

fym 💀

lavish dove
spare quartz
flint belfry
#

the monitors or

spare quartz
#

i feel like keeping one

#

so 2 telephones to sell ...

flint belfry
spare quartz
#

they're not voip phones 😭😭

#

i'd need like

flint belfry
#

pots???

spare quartz
#

a phone modem

#

or whatever it uses

flint belfry
#

is it pots

#

aka like

#

old phones

spare quartz
#

it uses modern phone lines if that's what you're talking about

#

yknow the ones that look like ethernet but shorter

#

mfg date is 2017

flint belfry
#

pots stands for plain old telephone service

#

so yes rj11

#

aka what ur describing

spare quartz
#

unfortunately my house has no connected telephone lines so i can't dial anyone 💔

#

i wonder if i could dial two phones though ...

flint belfry
#

if you really wanted to

#

you can look into this kind of thing i have one (but dont use it anymore)

spare quartz
flint belfry
#

its basically a ethernet to pots converter

spare quartz
#

i dont want a coma machine

#

its gonna kill me

flint belfry
#

that lets you use old phones with voip

spare quartz
flint belfry
#

so if you dont have a pots line in your house but you have internet you can use that thing

spare quartz
#

no i do have phone jacks in my house

flint belfry
#

oh

spare quartz
#

its just limited to the house

flint belfry
#

i dont get what your saying

#

is it you dont wanna pay a phone bill or

spare quartz
#

the house... has a phone line circuit

flint belfry
#

uh huh

spare quartz
#

but that phone line circuit is not connected to anywhere outside

flint belfry
#

oh

#

wtf

spare quartz
#

AKA. phones can only communicate inside

flint belfry
#

was it cut off or just never connected 😭

spare quartz
#

probably the former

flint belfry
#

weeird

spare quartz
#

the company thats stamped on all the phone line plates went out of business a while ago

#

and now all we have is fiber

flint belfry
#

if you really want to make outside calls though its like 6 dollars per month for the voip thing you called a coma machine

#

for at&t its like 80

spare quartz
#

its gonna put me in a coma ...

flint belfry
#

which is fucking outrageous

flint belfry
#

Wake up.

#

Wake up.

#

Wake up.

spare quartz
#

no .

flint belfry
#

Wake u

spare quartz
#

wahat if

#

ijust buy this

#

and make a voip application ..

flint belfry
#

you need like

#

phone circuitry

spare quartz
#

dont worry im an electrical person

flint belfry
#

you cant just use a ethernet card

flint belfry
#

you got fired.

#

now your here.

spare quartz
flint belfry
#

holy ancient

spare quartz
#

apparently this phone also has a data port

flint belfry
#

ik its from 2017 but what the 2000's

flint belfry
spare quartz
#

well that model has been in service since like

#

at least 2012

flint belfry
#

that makes more sense

spare quartz
#

it's just still made apparently

#

unfortunately no IRS phone numbers are on it cause they're smart unlike ICE and used a reset code

flint belfry
#

(/j)

spare quartz
flint belfry
#

what

spare quartz
#

ill send you 256 mb of it

#

let me open dmd e.

flint belfry
#

wha

#

what am i supposed to do with 256 mb thats just corrupt then 😭

#

also like

spare quartz
#

oh wait i have to plug it in first... which requirs restarting ...

#

nvm!!!

flint belfry
#

maybe dont i think thats a cirminal offense 😭

#

to be sharing government stuff

spare quartz
#

it's not like you could crack it so its whatever

flint belfry
#

i was joking anyways but i am curious

flint belfry
spare quartz
#

its not even like an old SSD

flint belfry
#

or wait until we get quantum computers for home use

spare quartz
#

its running a version of windows 11

flint belfry
spare quartz
#

cause the bitlocker recovery shows the new loading circle

flint belfry
#

interesting i expected windows 10

spare quartz
#

so whoever did this really messed up :Sob:

flint belfry
#

considering the computers

flint belfry
#

and oh

#

idk

spare quartz
#

deport people

flint belfry
#

FUCKING ZEROED OUT THE DRIVE

spare quartz
#

that too

flint belfry
#

BECAUSE THAT WOULD BE THE COMMON SENSE THING TO DO WITH CRITICAL DATA

flint belfry
spare quartz
#

its an ice drive... its what they do...

flint belfry
#

your drive is cold?

#

bring it inside

spare quartz
#

immigrations .

#

stupid .

flint belfry
#

shakes

spare quartz
flint belfry
#

did it eat a lemon

#

why is its face all scrunched up

#

oh thats jd vance neverfuckingmind

spare quartz
#

you look like a duck

spare quartz
spare quartz
timid quartz
spare quartz
#

yeah you're right its at 1.2 million rn

flint belfry
#

smh

spare quartz
#

...

#

actually its still at $70

flint belfry
spare quartz
#

i want my cae/meti medical training system 💔

flint belfry
#

if you look at ebay older dell servers (aka the ones in that lot image) are not that expensive

spare quartz
#

only $20

flint belfry
#

so theres a good chance itll stay the same

flint belfry
spare quartz
#

oh my god bruh

flint belfry
#

i assume

spare quartz
#

government grade picture quality

flint belfry
#

cisco???

spare quartz
#

(1) Cisco System Controller, model: AC1
(1) Cisco System Mobility Service Engine, model: MSC 3355.
(2) HP/Avondale server, model: DL360-G7.
(3) Dell Computer-Server, model: E395.

spare quartz
#

so idk

flint belfry
flint belfry
#

(?)

flint belfry
#

rack with something

spare quartz
flint belfry
#

a switch and whatever those things are

#

WHAT

#

ITS PORTABLE

spare quartz
#

switch on the go 💪

flint belfry
#

LOL

#

WHAT APPLICATION WOULD YOU EVEN

spare quartz
#

CAE/METI Healthcare Equipment

Items:

(Qty 1) CAE Healthcare LearningSpace Simulation System
Includes: Network cables, Cisco server switches, network adaptors, Linksys, and more
Base Model: LS-0030
Transport Case: Gator case included
General Condition Summary: This lot consists of a CAE Healthcare LearningSpace Simulation system/kit in a Gator transport case. No testing has been conducted, and the system status is unknown.

flint belfry
#

portable server rack in the form of a luggage

#

thats a new one for me

timid quartz
spare quartz
#

they're putting it up for sale from a hospital

#

i dont know why hospitals use servers on luggage but

#

oh well

flint belfry
#

oh my god it would be so fucking funny for anything but a backpack day i get that instead of just takking my server to school

#

but it looks thin

#

so idk if it could house a poweredge

#

mine barely fit in my rack as is

timid quartz
#

You could fit like a R200 series in it

flint belfry
#

yes but not like a r720

timid quartz
#

Those are thin and not very deep

flint belfry
#

theyre 27 inches long

timid quartz
flint belfry
#

i was planning to take my backup server since it isnt mission critical except for mondays

spare quartz
#

OH MY GOD BRUH!!!

#

WHY CANT I LIVE IN OHIO RN!!

flint belfry
#

buying two servers JUST for that day is too much

#

😭

#

the r720 has a back handle anyways

#

and i can carry 80 pounds

spare quartz
#

the thing in the image weighs 110 pounds 💔

timid quartz
#

:3

spare quartz
#

guys..

#

hear me out..

#

minecraft server opportunity

flint belfry
spare quartz
#

ill be there tomorrow.

flint belfry
#

fight me.

#

soda drinker.

spare quartz
flint belfry
#

ill just unplug your insulin machine

spare quartz
#

thank god i dont need insulin then

flint belfry
#

you will at this rate

#

smh

flint belfry
spare quartz
#

funnily enough if they still have their hard drives inserted

#

thats about 9 500 GB SSDs

flint belfry
#

9 laptops or

spare quartz
#

yes

flint belfry
#

ssd???

#

wtf

#

that shit looks like it would use IDE

#

or scsi

spare quartz
#

nope

#

apparently uses ssds

flint belfry
#

could just be a ssd in a sata slot

#

theres no way that thing is modern

spare quartz
#

dell reaction

#

sorry hp*

flint belfry
#

calling it

spare quartz
#

HP PRO DESK 600 G6 S, s/n: MXL0485GD6

flint belfry
#

not a thin client wtf

#

just very small pc

spare quartz
#

wtf

flint belfry
#

wait no that picture just sucks

spare quartz
#

why does it cost $900 on amazon 💀

flint belfry
#

it looks like a

flint belfry
#

OVERPRICED COMPUTER

spare quartz
#

they're auctioning it for $10 😭😭

#

HP Business Desktop ProDesk 600 G6 Desktop Computer - Intel Core i7 10th Gen i7-10700T Octa-core (8 Core) 2 GHz - 8 GB RAM DDR4 SDRAM - 256 GB SSD - Desktop Mini - Windows 10 Pro 64-bit - Intel UHD G

flint belfry
#

with bidding or fixed

spare quartz
#

bidd ing

flint belfry
#

presume bidding

#

yea

spare quartz
#

its gsa auctions

#

not gsa... bay

flint belfry
#

idk how that shit works atp 😭

#

ive like

spare quartz
#

forklift for only $100...

flint belfry
#

only touched ebay

flint belfry
spare quartz
#

i do not know how to take apart a forklift

flint belfry
#

throw rocks and bricks at it until it takes itself apart

#

idk im going off ur logic here

spare quartz
flint belfry
spare quartz
proud creek
#

you can never have too much

spare quartz
timid quartz
#

There's context for this that I am not sharing

#

huh

#

Oh it’s cause I hit copy text not copy image

spare quartz
#

ほら

#

FINALLY

spare quartz
#

to make breadfs for real

#

our VFS is stable enough

timid quartz
spare quartz
#

i just got ouf othe bathrom

timid quartz
#

read

spare quartz
timid quartz
#

docker ❤️

timid quartz
#

did u...read...

spare quartz
#

yes

timid quartz
#

congrat

spare quartz
#

now to come up with a bread fs format ...

#

bad grammar ❌

timid quartz
#

インタネットやめろ!!!🗣️🔥

spare quartz
#

THAT DOESNT MEAN ANYTHING!!!!

spare quartz
#

like 14 hours

timid quartz
spare quartz
#

no

#

it literally means "internet stop"

timid quartz
#

alternatively "ABOLISH THE INTERNET"

spare quartz
#

theres no subject descriptor!!!!!

#

its meaningless!!!

timid quartz
#

particles are omitted in japanese a lot

#

u just gotta git good

spare quartz
#

no.

timid quartz
spare quartz
#

you're the type of person to answer ambiguous math questions

timid quartz
#

FOR example "日本語話せますか?" will have the same meaning as "日本語が話せますか?" except the が was omitted in the former

timid quartz
#

spare quartz
#

aera..

#

rate my prjfs code..

#

its good right ..

timid quartz
#

uh

#

...

#

proof kotlin bad

#

idk it's hard to read cause there's no spacing

#

and just seems very clamplicated

spare quartz
#

its very simple

timid quartz
#

spare quartz
flint belfry
spare quartz
flint belfry
#

are you trying to make a dialup server

spare quartz
#

I haven’t decided what it does yet

timid quartz
spare quartz
#

I’m so hungry

timid quartz
#

Pizzer…soder…

spare quartz
timid quartz
#

GET DOORDASH

spare quartz
#

I did DoorDash..

#

But it’ll take 40 minute.

timid quartz
spare quartz
timid quartz
spare quartz
#

@flint belfry 18 Cisco Catalyst WS-C3650 switches for $10

#

should i get them...

#

they're 48 port 1 Gbps ea. w/ poe+

flint belfry
#

if you need them sure lo

flint belfry
#

EIGHTEEN???

spare quartz
#

only $10 for 18 of them yeah

#

from the TSA in houston...

flint belfry
#

WBHAT TGHE FYUCJNATP

spare quartz
#

do you want one ..

flint belfry
#

MAYBE???
IM JUST

#

10 FOR 18 THOUGH??

spare quartz
#

yeah

#

in working condition too

flint belfry
#

oh my god

#

atp

#

they retail for 100 e/a

#

in ebay market at least

spare quartz
#

theres also a neurology lot selling for $25 ...

#

but i can't move all of that

flint belfry
#

preform a lobotomy on yourself

#

😁

spare quartz
#

it's not surgery

#

1-Viking EDX Workstation
3-Nicoletone EGG from Natus
3-Dome Camera
1-Electrical Stimulator
4-Monitors
3-Uninterruptible Power Supply
1-Canon Inkjet Printer
4-Photic Strobe Flash Unit

flint belfry
#

what are those ups's

#

i wanna see

spare quartz
#

unspecified but they're probably about what they use in hospitals

#

which i dont know much about

flint belfry
#

i assume something strong then

spare quartz
#

new computer case found

flint belfry
#

if you do get those 18 switches send me one ca35atomizer

flint belfry
spare quartz
#

for EEGs (brain waves)

#

they're also selling a medical laser for $25 lo

#

OH i found the ups models

spare quartz
#

also 3 24" 1920x1200 60 Hz monitors..

spare quartz
#

ややややややや、ややや、やったことなんて、、、

めちゃくちゃうごメモ出身です

flint belfry
spare quartz
flint belfry
#

what

spare quartz
#

help me move the 200 pound brain equpipment..

flint belfry
#

Ok

#

Where You At

spare quartz
#

and ill give you 1/4 of a switch...

flint belfry
#

EXCUSE ME

spare quartz
flint belfry
#

1/4

#

SCAM

spare quartz
flint belfry
spare quartz
#

itll still have like 10 ports bro

flint belfry
#

||/j for qsoc reasons||

spare quartz
#

👍

flint belfry
spare quartz
#

itllbuff out

#

also go on twitter rn

#

everyone is hoping trump is dead rn

flint belfry
#

ok

spare quartz
flint belfry
#

oh my god they are

spare quartz
timid quartz
timid quartz
timid quartz
lavish dove
spare quartz
timid quartz
spare quartz
timid quartz
#

You’re using those optiplexes

spare quartz
timid quartz
#

RAAGH

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

2days
3hours
49mins

timid quartz
#

he's deepseek

spare quartz
#

this is so overpriced its actually insane

spare quartz
lavish dove
spare quartz
# lavish dove it doesnt even give you an ip 😭

Absolutely! For just $5/month, you can add a Dedicated IP to your server. Simply check it during purchase, open a quick support ticket, and our team will handle the setup. You'll then have unlimited port allocations from 1024 upward; including your game's default port.

lavish dove
#

😭

#

I dont even get 80??

#

and the ssh port is also below that...

spare quartz
#

i dont get the point of 99% of cloud providers if they overcharge on stuff like this

lavish dove
#

I use linode

spare quartz
#

you could get a computer that lasts you a decade off old office equipment and better spec it if you save

lavish dove
#

hell arent there raspberyy pi competitors that can can get close to that

spare quartz
#

probably

#

$48 is a lot of money computer wise...

#

especially when its monthly

lavish dove
#

oh yeah

#

I wonder if they sell alot from people who just dont know better providers

#

thats maddening 😠

#

or maybe its marketed towards games

spare quartz
#

im not even sure how authoritative this service is with their own datacenters

#

e.g. i dont know if they even know the computers they're selling or just renting from a datacenter

lavish dove
#

that would be funny lol

#

and would make sense, its a cheap cash grab (hence the yearly price thing)

spare quartz
#

i know some ISPs that even rent their datacenters

#

they're usually local though instead of nation-wide

lavish dove
#

where I used to live you could rent space in the internet junction things that the infrastructure companies maintained for the cables

spare quartz
lavish dove
#

Everything in rust is always more reliable than it's alternative but somehow less useful

spare quartz
#

its cause we need more jvms

lavish dove
#

What the fuck is the point of more than one jvm 😭

spare quartz
#

we can do this

lavish dove
#

Would smash

flint belfry
#

i can give you like 12 cores and 64 gb or more

spare quartz
#

i just dont get how some vpses appear so overpriced

flint belfry
#

o

spare quartz
#

like wtf do you need $50 /mo for😭

flint belfry
#

the only reason i have vpses is because of oracles free tier

#

even if they're looking at my shit it's mostly just reverse proxying and shit

spare quartz
#

stupid designing

#

i think all i need for a file is 4 numbers

#

nothing more

spare quartz
#

oh okay discords file preview is broken

spare quartz
#
 * * **EDYDIP:** Extent-Derived YDIP: the true value of the YDIP is shifted left by 2 bits. If bit 0 is set,
 * it indicates the next YDIP (non-EDYDIP) is the end of a range (inclusively) defined at the start of this EDYDIP. If
 * bit 1 is set, it indicates the extent range addresses a multiple of 512 octets; otherwise, direct octet addressing.
 * The addressed location is derived from the current sector (if bit 1 is set), or the current byte (if bit 1 is clear).
#

i love datatypes

#

"Extent-Derived System-Block Dynamic Integer Pointer" is probably a hard to say name though

spare quartz
#

pain

timid quartz
hard tendon
#

@silent Don't worry, you are not in any trouble, this thread is just being monitored for moderation purposes.

-# <@&1391570609523396759>

timid quartz
#

Oh are you like

#

Adding them to all the threads or something

lavish dove
flint belfry
#

insert by god the worst call music of all time (ionos)

spare quartz
#

really deltarune fans?

timid quartz
spare quartz
#

2 days until the big thing happens .

flint belfry
timid quartz
#

atp would never

spare quartz
#

doorknob

flint belfry
#

not important then.

#

jobs are.

spare quartz
#

nope

#

very important

#

when i could secure 18 48-port switches

flint belfry
#

give me one 🙏

lavish dove
#

can i have one too 🙏

spare quartz
#

send me ddr 4 memory

lavish dove
#

I have ddr 3 memory

spare quartz
#

none of my computers use ddr3 :Frow n

lavish dove
#

I have ddr5 memory

spare quartz
#

none of my computers use ddr5 ☹️

lavish dove
#

your memory is on a different level

spare quartz
#

i need 128 * 5 GB of ddr4 memory

lavish dove
#

thats alot

spare quartz
#

(minus 64 gb)

lavish dove
#

why not get 128 * 5 GB ssd and make that your memory

spare quartz
#

i also need 3 hard disks but i have an idea on how to use 1 hard disk across 4 computers

#

it'll require a lot of thinking though

spare quartz
lavish dove
#

128 * 5 GB ddr4 is expensive too 😭

spare quartz
#

also i need to share it across 5 computers

#

i also need VGA-DP cables....

#

but i think the office supplies in dallas will help me with that...

lavish dove
#

I have mini hdmi to hdmi

#

oh nvm looks like its stolen again

spare quartz
#

none of my computers use hdmi 💔

lavish dove
#

good

spare quartz
#

its either all DP or VGA

lavish dove
#

both are open standards, open is th best

#

hdmi is so well protected you cant even pirate its pdf

lavish dove
spare quartz
#

now if only they made a pdf about hevc and mp3 that didn't suck

lavish dove
#

Pingping Jiang, Lontium Semiconductor Corporation
lmao it even has who leaked it in it

spare quartz
#

yeah but those two codecs are way more important for stuff on the web (right now at least)

lavish dove
#

its fast enough cpu decode that all my old phones use av1 so idk what they are on about with hardware needed

lavish dove
#

lmao

spare quartz
#

hmmm

#

is doing RAID on specific files worth it...

spare quartz
#

time to rewrite this

spare quartz
#

符号無し

spare quartz
#

YESYES YESYEYS

#

ITS RIANING

spare quartz
spare quartz
#

10fffffffffffffffffcffffff7ffffffffffffffffffffffffffffffffffffffffffffffffff97f90fffffffffffffffffcfffffffffffffffffffffffffffffffffffffffffffffffffffffffff9ff10

spare quartz
#

neat

#

it can also encode 2^999!!

#

it will ALWAYS be more efficient than the textual representation and can address any possible integer

#

and all you need is... 2 flag bits and 3 length bits

spare quartz
#

finally added competent side detection to one of these random projects

#

time to add more rendering...

spare quartz
#

image rendering...

#

also with alpha

flint belfry
#

ANYTHING but getting a jo

spare quartz
flint belfry
spare quartz
#

OK, i figured it out

spare quartz
#

i love shifitng the viewport a ton

#

now to add lighitng

spare quartz
#

shininess at different levels

lavish dove
spare quartz
#

It’s ok

#

Flash flood warnings have never ever affected me since I live (usually) in high elevated places

#

There are some streets near me that are low and get flooded a bit during this time though

lavish dove
#

No, your going to drown and die

spare quartz
#

You’re warned by signs on them that you will die if you enter them while they’re flooding

lavish dove
#

You can come to my house in Arizona if you need to escape the flooding and dieing

spare quartz
#

Arizona is Hell^2

#

lavish dove
#

Fr

flint belfry
timid quartz
#

Actually nah, I’ll come take it myself

spare quartz
spare quartz
#

@timid quartz do i bid on the radioactive wast ebreels ?

flint belfry
spare quartz
#

also TIL

#

you know the crash test vehicles shown in those safety videos

#

i found out how they dispose of them

flint belfry
spare quartz
flint belfry
#

um ok

flint belfry
spare quartz
#

plus will you pay for shipping

flint belfry
#

does it still have the like

#

crash test marks on it

spare quartz
#

cause itll cost like $15 i think for USPS

flint belfry
#

like the black and yellow

flint belfry
spare quartz
flint belfry
#

awww no

#

it has a number spray painted

#

no black and yellow circle indicators though

spare quartz
#

wtf that isnt a crash test vehicle

#

get outta here bro

flint belfry
#

so theoretically

#

it is a crash test

spare quartz
#

it has a windows xp sticker on it 💔

flint belfry
#

um

#

prone to crashing due to outdated operating system*

spare quartz
spare quartz
#

thinking back on that

#

is actually more than the auction price

#

😭

flint belfry
# spare quartz

i dont even want to think about what they were using this for 😭

spare quartz
#

so i make a profit even if i dont sell at MSRP

#

thats crazy

flint belfry
#

are you sending it to me for free or

#

im confused

spare quartz
#

no you'll have to pay me for shipping

flint belfry
#

yes but

#

the money goes to shipping

#

aka 0 dollars made

spare quartz
#

okay but still

#

thats $5 over the auction price

#

yooo

#

just got given a free flash drive

spare quartz
#

uhhhmmm

#

we are experiencing technical difficulties

#

(ALSO WTF HOW IS IT STILL POWERED ON)

flint belfry
#

HAHAHAHAHHAHAHHAHAHAHAHA
IT HAPPENED

#

I KNEW IT WOULD HAPPENNN

spare quartz
#

LOOK

flint belfry
#

ATP IVE SAID IT SO MANY TIMES

#

OIVE SIAD IT SO EMNAY TIMES

#

FIRST THE DANGALING HARD DRIVE

spare quartz
#

IT WASNT MY PC

flint belfry
#

AAHHBFRDHIUSWOJP[KWED

spare quartz
#

THE DESK PHYSICALLY FELL AAPRT

flint belfry
#

OK \ATP

spare quartz
#

also

#

you’ll be shocked

#

but the hard disks are running normally 💀

flint belfry
#

WHAT TH EFHCK

spare quartz
#

shits made of vibration

#

Vibranium *

#

Let me rebuild it rq

timid quartz
#

@flint belfry mmmm what desktop env or window manager should I use

flint belfry
#

on linux?

spare quartz
#

Okay, rebuilt

#

Uh yeah. I know

#

back on pc now

spare quartz
#

in fact they sustained absolutely no damage

timid quartz
spare quartz
flint belfry
flint belfry
spare quartz
#

ok i might have a radio and gps but i do not have gyroscopes 💀

flint belfry
spare quartz
#

anyways

#

the biggest hdd that probably sustained the most damage is unironically probably resistant to shock

#

the way i even got it from its pc 5 years ago... was through hammers

timid quartz
#

Think I’m gonna go with bspwm

spare quartz
#

does anyone know where a "yongfeng" is in taiwan

#

near the coast

#

NVM found it

#

Fengbin or Fengpin township in Hualien County 花蓮縣|花莲县, east Taiwan

spare quartz
#

誤用が広まって正しいことになった奴で一番納得いかないのは舌づつみを打つ

鼓を打つ←分かる

づつみを打つ←?????

spare quartz
#

why do you have 2 batteries

timid quartz
#

Thinkpad came with two batteries ¯_(ツ)_/¯

spare quartz
#

take one out and give it to me

#

I need to collect more batteries

timid quartz
#

They’re both pretty shot though so they approximate one good battery

spare quartz
#

Mmmb

#

Bid day is tomorrow

#

Need to evaluate budget..

timid quartz
spare quartz
#

It is not something I would like to use

timid quartz
#

valid

#

this used to be peak desktop

#

…used to

#

this desktop is actually only a heavy theme on another window manager, it’s not even the original desktop

spare quartz
#

blegghh

#

okay what’s your input on this

#

between getting 5 more optiplexes or an EEG workstation

#

which do you think I should get

#

(they both have comparable computers but one of them also has specialized equipment….)

#

3 rackmount UPSes too..

timid quartz
#

EEG like the heart thing?

spare quartz
#

Brain waves

#

But yes

timid quartz
#

Brian

#

uhhhh I’d go 5 optiplexes just because it’ll be more useful generally

#

we already know what your brainwaves consist of

spare quartz
#

Die*

spare quartz
#

Getting computers is a big gamble

#

Cause they say magnetic media removed but that could potentially mean they removed the memory too…

#

At least with the EEG machine there’s probably some memory and a wiped disk

#

but getting the switches is nonnegotiable

timid quartz
#

mmmm wa ter

#

so good

spare quartz
timid quartz
#

So hy dra ting

spare quartz
#

I love my pc..

spare quartz
timid quartz
#

can’t decide which window manager to use…

#

I’m between NsCDE (the picture above), WindowMaker, cwm, and bspwm

spare quartz
#

I don’t even know what any of those are

timid quartz
#

well here you go

NsCDE (Not so Common Desktop Environment): more than a WM, heavy theme on top of FVWM to emulate the Common Desktop Environment that shipped commonly with Unixes back in the day
WindowMaker: a window manager designed for the GNUstep desktop tools, emulates another older interface from NeXTSTEP
cwm (calm window manager): minimalistic stacking window manager that ships by default with OpenBSD, available elsewhere too
bspwm (binary space partition window manager): simple tiling window manager that represents windows as leaves of a full binary tree

spare quartz
#

Idk the last one I guess…

timid quartz
#

bspwm is my fallback tbh

#

I’ve used it before, think it’s pretty nice

#

There’s about as many tiling window managers as Linux distros

spare quartz
#

So lame…

timid quartz
#

But bspwm is pretty simple and I like the configuration style more than others

#

it’s also nice because, like other tiling WMs, everything is keyboard-centric and you don’t need a mouse to manage windows at all

spare quartz
#

It’s the same with windows*

#

But that’s just cause you can use your keyboard as a mouse

#

(If it has a keypad)

timid quartz
#

windows 11 can kinda be like a tiling window manager since it added the window snapping things

#

Win + number to launch apps, some keybind to make them snap to certain areas

#

some keybind to switch virtual desktops

#

It’s just super heavy compared to something like bspwm

spare quartz
#

Win + number?? That’s a thing??

#

I just rely on Win R and Alt Tab

timid quartz
#

yeah iirc it launches based on order from left to right on your taskbar

#

yes I guessed correctly

spare quartz
#

Whoa codev did something cool

timid quartz
#

win + arrow key does stuff, win + z opens the snap menu