#💽Programming Chat v2
1 messages · Page 49 of 1
yeah this works
just pay attention to what you 'Write to the TLS stream in ada
as it will be written immediately and might cause problems for clients using a fixed buffer like in C
my server will accept any length input though
what AI people think actually drawing feels like
💬 85 🔁 1.7K ❤️ 12.0K 👁️ 126.6K
another one bites the rust
i mean dust
in 21 days i become 17... truly horrifying..
@spare quartz does your thing mandate client authentication or smth
no
kotlin
no
WHAT DID THEY DO TO THE CERTIFIED QSP ROLE 😭
Ok
i increased the tcp buffer size too and the speed went from 15,000 bytes/s
to 90,000 /s
deserved
ホニャー!MIXむずかちー!(一部音割れポッター)
多忙を極めており、今年のYoutube活動は恐らくお歌多めでお送りします。
呪文降臨~マジカル・フォース!原曲はSister MAYO様の歌声は天使なのでぜひみんな聞いてください…まままま!
カラオケ音源…
カラオ...
gonan download this video on your printer fi youdont mind
EUGH.....
i will delete it in a hurry ❤️
no .
Yes.
i will make a kernel driver speifically so youo cant delete that file.
atp if you were going to do that you could have made tun 💀
RIGGED
i will upload airborne.zip to the printer and you will experience true lag
wtf is an airborune
do you want to find out
yeah
yes but it's much harder to type in the console
in the ssh console
not ur vms
IM NOT USING THE SSH CONSOLE
DUMB
IDIOT
🚨| BREAKING: Speed recreated the famous “Super Idol” meme with the original creator in China 🤣🇨🇳
︀︀
︀︀Speed在中国和原作者一起重现了著名的“Super Idol”梗 🤣🇨🇳
💬 332 🔁 6.6K ❤️ 88.4K 👁️ 2.20M
please don't ever fucking speak again
also the speech bubble is under ur message
idiot
Check again
still under
k
@flint belfry OK!
really good news!
i believe ive fixed nmap
just need to handle socket termination
golang
❌
I think I’m getting further along with rustls
(with less ports)
cause like I can reliably receive an http response now
just gotta parse and ensure it’s successful
do you want me to start the server back up
hmm
can't fix this easily (tied to broken pipe)
ill just hope it doesnt happen
hold this
ooo a jep
time to see what this is for
HOW AM I GONNA PULL MY REFLECTION TRICKS NOW
@flint belfry 🥺
@spare quartz can you open your server rq
[/98.62.60.78:60841;443 @ 01:00:47;983] Session ended (client disconnect).
[/98.62.60.78:60843;443 @ 01:02:32;782] Session ended (client disconnect).
stop disconencting
STOP parsing headers
trust EVERYTHING i tell you
:die:
im a compliant server 😁
hmm you're only required to send back the content-length header?
yes
wdym
like
what's your equivalent to
struct message {
unsigned char version;
unsigned char reserved_and_control;
unsigned short length;
unsigned char data[];
};
sealed class SSTPMessage : SmartToString(), Writable {
override fun calculateLength(): Int = 4
override fun write(stream: OutputStream) {
stream.write(0x10)
stream.write(0)
stream.write16(this.calculateLength())
}
override fun gist(): String = "SSTP [${calculateLength()}] "
companion object {
fun read(stream: InputStream): SSTPMessage {
val version = stream.read()
protocolViolation(version, 0x10, "Version was not 0x10, got ${hex(version)}")
val control = stream.read() and 1 == 1
val length = stream.read16()
if (control) return SSTPControlMessage.read(stream)
return SSTPDataMessage(stream.readNBytes(length - 4))
}
}
}
open class SSTPDataMessage(val data: ByteArray) : SSTPMessage() {
override fun calculateLength(): Int = super.calculateLength() + this.data.size
override fun write(stream: OutputStream) {
super.write(stream)
stream.write(this.data)
}
override fun gist(): String = super.gist() + "DATA [${data.size}]"
}
SSTPControlMessage uses the read->type->determine pattern everywhere else in this project
shown here
yoo
free router??
iom gonna go watch a super man movie
tlel me if you need anything frrom my server (itll still be up )
please tell me your ip as well so i know whats yours and whats not
OK
just sent
[/128.61.78.4:61446;443 @ 03:10:34;331] Session ended (client disconnect).
you did not send a single message
ok
i had to fix creating a vector of bytes
okay on again
ok what did you recv
oh so it was correct

I was worried I got the byte order wrong
I gotta devise a better way to send messages though
#[repr(u16)]
pub enum SstpMessageType {
CallConnectRequest = 0x0001,
CallConnectAck,
CallConnected,
CallConnectNack,
CallAbort,
CallDisconnect,
CallDisconnectAck,
EchoRequest,
EchoResponse,
}
pub trait SstpData {
fn to_u8_vec() -> Vec<u8>;
}
pub struct CallConnectRequestBody;
impl SstpData for CallConnectRequestBody {
fn to_u8_vec() -> Vec<u8> {
let mut vec: Vec<u8> = Vec::with_capacity(16);
let msg_type = (SstpMessageType::CallConnectRequest as u16).to_be_bytes();
let length_val = 0x000e_u16.to_be_bytes();
let num_attrs = 0x0001_u16.to_be_bytes();
let attr_length_val = 0x0006_u16.to_be_bytes();
let protocol_id = 0x0001_u16.to_be_bytes();
println!("{length_val:?} | {num_attrs:?}");
vec.push(0x10);
vec.push(0x0001); // control bit
vec.push(length_val[0]);
vec.push(length_val[1]);
vec.push(msg_type[0]);
vec.push(msg_type[1]);
vec.push(num_attrs[0]);
vec.push(num_attrs[1]);
vec.push(0x0);
vec.push(0x01); // encapsulated ID attr
vec.push(attr_length_val[0]);
vec.push(attr_length_val[1]);
vec.push(protocol_id[0]);
vec.push(protocol_id[1]);
vec
}
}
cause this is what I have rn 💀
object oriented design for the win
👎
(u can turn off now btw)
@spare quartz chatgpt ftw
#[derive(Copy, Clone)]
#[repr(u16)]
pub enum SstpMessageType {
CallConnectRequest = 0x0001,
CallConnectAck,
CallConnected,
CallConnectNack,
CallAbort,
CallDisconnect,
CallDisconnectAck,
EchoRequest,
EchoResponse,
}
fn build_sstp_message(msg_type: SstpMessageType) -> Vec<u8> {
let mut vec: Vec<u8> = Vec::with_capacity(32);
vec.push(0x10); // version
vec.push(0x01); // control bit
vec.extend_from_slice(&(msg_type as u16).to_be_bytes());
let (fields, extra_bytes) = match msg_type {
SstpMessageType::CallConnectRequest => (
vec![0x000e_u16, 0x0001, 0x0006, 0x0001],
vec![],
),
SstpMessageType::CallConnectAck => (
vec![0x0030_u16, 0x0001],
{
let mut extra = vec![0x00, 0x04, 0x02, 0x08, 0x00, 0x00, 0x00];
extra.push(0xFF); // hash protocol bitmask (placeholder)
extra.extend(vec![0x00; 32]); // 256-bit nonce (placeholder)
extra
},
),
_ => (vec![], vec![]),
};
for field in fields {
vec.extend_from_slice(&field.to_be_bytes());
}
vec.extend_from_slice(&extra_bytes);
vec
}
ughh watching a movie rn during a scary scene
turn on I wanna see if this code is true or rubbish
and my phone sudednly jumpscares me with an AMBER alert
server is on
note for when you get far enough
you won't be able to send an NCP as authentication is on, let me know when you've added PAP and ill send you credentials (if you do even get that far)
this does not affect the process of SSTP or LCP/PPP
[/128.61.78.4:61625;443 @ 04:03:30;399] < SSTP [20] CONTROL SSTP_MSG_CALL_ABORT, # ATTRIB: [1]
ATTRIB [12] SSTP_ATTRIB_STATUS_INFO : ATTRIBUTE: SSTP_ATTRIB_NO_ERROR, STATUS: ATTRIB_STATUS_NO_ERROR, # ATRB DATA: 0
[/128.61.78.4:61625;443 @ 04:03:30;400] Session ended (server failure); java.util.NoSuchElementException: Key 14 is missing in the map.
at kotlin.collections.MapsKt__MapWithDefaultKt.getOrImplicitDefaultNullable(MapWithDefault.kt:24)
at kotlin.collections.MapsKt__MapsKt.getValue(Maps.kt:369)
at bread_experts_group.protocol.sstp.message.SSTPControlMessage$Companion.read(SSTPControlMessage.kt:51)
at bread_experts_group.protocol.sstp.message.SSTPMessage$Companion.read(SSTPMessage.kt:29)
at bread_experts_group.ThreadOperationKt.operation(ThreadOperation.kt:340)
at bread_experts_group.MainKt.main$lambda$3(Main.kt:138)
at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
key 14 is missing in the map
Key 14 is missing in the map.
ok the ai fucked it up lo
of note, it's sending an ABORT to you and im not seeing a receiving message
wait
so you're fumbling your initial request
ur mom is fumbling the request
fatass
what about that
murder scene
woah nice background radiation map
if only you had made it generate a picture with the answer in text in it
true..
real
yup
does this help
oh my god automod kys
successful im guessing
ok
0.2
guess I'll have to conquer AI with human ingenuity
0.2
outlier is the only point that matters sorry lib
I hate it when I have to stop vibe coding and write real code
well like
impl SstpData for CallConnectRequestBody {
fn to_u8_vec() -> Vec<u8> {
let mut vec: Vec<u8> = Vec::with_capacity(16);
let msg_type = (SstpMessageType::CallConnectRequest as u16).to_be_bytes();
let length_val = 0x000e_u16.to_be_bytes();
let num_attrs = 0x0001_u16.to_be_bytes();
let attr_length_val = 0x0006_u16.to_be_bytes();
let protocol_id = 0x0001_u16.to_be_bytes();
vec.push(0x10);
vec.push(0x0001); // control bit
vec.push(length_val[0]);
vec.push(length_val[1]);
vec.push(msg_type[0]);
vec.push(msg_type[1]);
vec.push(num_attrs[0]);
vec.push(num_attrs[1]);
vec.push(0x0);
vec.push(0x01); // encapsulated ID attr
vec.push(attr_length_val[0]);
vec.push(attr_length_val[1]);
vec.push(protocol_id[0]);
vec.push(protocol_id[1]);
vec
}
}
im hating cause all of the vec.pushes
I think those are fine
i just wanna make it clear the name for that impl is bad
you are not sending sstp data
camera calibration
you are sending a control packet. massively different
oh waow
not as masive as your mom
lol
this will become very important when you actually send PPP data
you know how like lenses do this
that distortion isn't nice to play with when trying to extract features from a camera for CV
so we just undistort the image first instead
5 random guys? i dont get it
true
but to undistort
you have to figure out how its distorted
thats camera calibration
you wave a board with features on it around and take a bunch of pictures
and then you use the features on the board to figure out how your lens distorts the image
just split that function into "globally" accessible sections like
vec.push(0x10);
vec.push(0x0001); // control bit
vec.push(length_val[0]);
vec.push(length_val[1]);
and call each sequentially depending on the type of impl
uh
woah
is this how some of those qr code readers work too? when they can read even at a significant angle?
but generally take video feed, undistort, run detection
im using it to detect visual fiducials
just a thought off the little i know rust
check log rq pls
me when I send the ignore hl auth thing
not that
i think im gonna be sending the SSTP Connected packet so dw about that nvm
I think you're trying to talk about like a dynamic call or whatever it is you have in Ada
no no no
dispatching*
a dynamic/dispatching (same thing) call requires you have object oriented design
im just saying like, split up that function and parameterize
basically qr codes. the fancy thing is that you can do some nice math to figure out where the camera is placed in space relative to these markers, which means if you put this camera on a robot, you can figure out where the marker is in space or figure out where the robot is in space (depending on which location is your truth)
I'm not really sure if there's a way to check the impl so you can "call each sequentially"
nonono
like
(global) function sendSomeDataHere()
(global) function sendMoreDataHere()
impl A executes sendSomeDataHere()
impl B executes sendSomeDataHere AND sendMoreDataHere()
oh ic
there are numerous types of sstp messages so in the end it'd be like 80
yeah you'd do smth like
use whatever::send_some_data;
use whatever::send_more_data;
struct A;
impl A {
fn bruh() {
// ...
send_some_data();
}
}
o
🤷♂️ maybe thats still ok
this IS effectively just object oriented design and dispatching in another package
but its in the eye of the beholder i guess
welp just finished my soder
I kinda wanna get rid of all the structs though
thank god i have 2 liters AND 50 pounds of extra aluminum to go with it
yeah this topology looks sound
passed code review

my idea is to like
fn build_msg(msg_type: SstpMessageType) -> Vec<u8> {
let raw = match msg_type {
SstpMessageType => vec![ 0x000e, 0x0001, /* ... */ ],
// ...
};
let fixed = raw.map(|b| b.to_be_bytes()).flatten();
fixed
}
something like that
pending me not messing up the byte order
i cant read this
I hated that when I first saw it
but i assume it's a good idea
I do yes
wdym
I feel like its harder to find
cause no syntax highlighting on a keyword next to it
fun buildMsg(msgType: SstpMessageType): ByteArray {
val raw = when (msgType) {
SstpMessageType -> listOf(0x000E, 0x0001) // ...
}
return raw.flatMap { it.toByte().toBigEndianBytes() }.toByteArray()
}
maybe more understandable
this is horrible kotlin code
thats pretty readable though tbf
but i assume again you have good intentions
I mean the rust
I mean there's no way to do dispatching or whatever in Rust
im not saying i cant read the rust code
its just the meaning behind the code is opaque to me
im not exactly sure what its trying to accomplish effectively
map is common |b| can be assumed to be lambda syntax, to_be_bytes is obvious, flatten is obvious Vec<u8> is obvious
o
yea idk why the fixed part is needed
basically I don't want to have a bunch of structs and impls for each message type, I'd rather have an enum to switch on
switching on the enum yields the vector of items that composes everything past the version and control bit
how will you provide the parameters for each enum?
wdym the parameters
some of the SSTP contrrol commands will require you send an attribute with them for example
how will you know what that attribute will be filled with
I haven't gotten that far
fair enough
How does your code do it?
then reading it later
I'm pretty sure I can use tagged enums to do this anyways
ugh this is why coding sucks
no..
im not really sure how I'd do this in rust
is atp trying to hack the automod again...
the header tag 😭
ughhhh having a struct/class for every message type is cringe
mmm
that is nice
but then you have to waste time on a lang that’s literally unsellable as a job skill
:<
plus have the world’s worst community
3 old guys, one of which has been offline for 3 months and might be dead
I think a tagged enum is the play here
or well
Ig it’s just adding fields onto the enum
note for tmrw
- add fields to enums that have attributes (for later)
- have common struct for common info across messages
実はこれ手の空いたプログラマーのぽ氏さんが勝手に作ったんですよ…w 私もずっと温めているエイプリルフールネタがあるんですけど開発に集中してるので公開できず…でもまさか記事に乗せてもらえるとは思わなかったw 来年のエイプリルフールに乞うご期待!新キャラ登場かも?
A network access server (NAS) is a group of components that provides remote users with a point of access to a network.
time to work on CHAP
`note so i dont forget
-user=<name>:<passphrase>,<list of allowed authentication methods separated by ,>
--help & --help <parameter>
is this on a single client or across the whole subnet
also what was the issue
this dosent work
whats the command you used
nvm figured ti out
ping is also broken now
yeah nmap still dosent work for me
and it crashes it sometimes
How and why
That’s not for you to use yet
oh
?
i was talking about the client but i looked at the command list
I need commands
which
Both nmap and ping
nmap -sn 10.98.249.0/24 -e ppp0
That’s strange cause that worked fine for me
well it returns 0 hosts up when it finishes
and when i try to run ping after that it never works
the server console also gets spammed with requests even after nmap is done
already di but ok
?
wdym ?
What did you already do?
i tried running nmap multiple times
annnd its not connecting so someone probably shut the printer off
god damnit
ill do it later

grrr code organization sucks

3
3
1
this poll sucked
hmm ok, so after receiving CallConnectAck, we proceed to PPP authentication
and then the client sends CallConnected with the compound mac
im looking at the crypto binding thing rn
and trying to figure out how the compound mac is calculated
oh wait I think I found it
so much hashing...
holy state machine
this is one of three
the 1st other, ABORT, is basically just tied to you closing the socket
the 2nd other, is a two way handshake for DISCONNECT
being totally honest i just provide a dummy to the request and verification
the crypto binding is only to prevent MITM (which isn't absolutely required right now)
Oh so if I just clear the compound MAC your server won’t care?
yes
in the future it most likely will but whatever values you give right now dont matter
no
the only parts that matter right now in the connection are:
- create a good TLS connection
- pass the Authentication state in PPP
oh gg
also LCP but thats a given
ok well the certificate hash and nonce aren’t hard
the compound mac thing is a bit confusing
actually
i dunno how you'll handle the PPP part of the connection
do you have easy bindings to pppd
or the windows tunnel variant
there is this
you'll need kernel level stuff if you wanna use that iirc
or you'll need to create a facade between tcp/udp/icmp as i do
gl with that (not in a condescending way)
just a very complex and tedious task as you know
yeah I imagine it wasn't easy
but since i assume you're writing it in rust at least you'll have something you can reuse if you ever make a rust os...
gfidfngnjdfjgdf
dammit i really wanna make a jvm os now..
i dunno how i'd manage good memory allocation though since the only method i know is watermark (as its naive and trivial)
allocating memory from a pointer upwards and never reclaiming it
tghat sounds hard ................
nah..
we do not talk about what you bring to the feed
but that isnt me :So b:
bayachud lmao
you send over your requested parameters for the link, i accept them, i send my requested parameters for the link (including an authetnication method), you accept them, and begin authentication
afterwards you transmit NCPs and actual network communications happen
DO NOT!!!!! send me an authentication method!
although that is a thing clients can do, my server will not try to authenticate itself
bad server
so
- send call connect request
- recv call connect ack
- start lcp
- begin ppp authentication
- send call connected
- send data
yeah bascially
make sure you only do the authentication methods the server gives you (if there aren't any, then you may proceed without authentication)
man this is a lot to have done
yknow I thought of this last night
kade primarily wants to view video from the printer over this connection right
probably
this thing supports ssh so why not just like either sftp/scp or set up a simpler application that sends video packets over the reverse ssh connection
i dunno
i could've easily made any other protocol work over the line without needing to emulate a stack
but those were the orders i was given
@flint belfry ?
urghhh ppp connection seems like it's gonna be tedious
procedurally you don't need to be 100% compliant to the letter in each spec
you just need to give the other side what it wants until it works
(because of how they make these protocols though, they're not gonna give you a very good error mesasge, most likely just retransmit until they're exhausted)
now to find where he put the server
and this is all still sent over the initial tls tunnel
yes
crazy
i find it a bit odd since... an ssh tunnel is already a vpn, right?
wait wait so once I get the call connect ack, am I sending the lcp/ppp stuff within sstp data packets or directly over the tls tunnel?
so it's like running a vpn in a vpn
sstp data
even though the call connect hasn't happened yet
doesnt matter
hrm
every piece of data sent throuh sstp must be in an sstp data packet
that isnt a control packet
think of it as becoming the layer 1
ic ic
SstpData { PppMessage { IpDatagram { TcpFrame { Application data }}}}
crazy
do u do compression....
explained this in the past but ill tldr it since it was a long story
too many tunnels/ssh things = more unstable connection = higher chance of the tunnel dropping = no longer able to access
Van Jacobson TCP/IP Header Compression is a data compression protocol described in RFC 1144, specifically designed by Van Jacobson to improve TCP/IP performance over slow serial links. Van Jacobson compression reduces the normal 40 byte TCP/IP packet headers down to 3–4 bytes for the average case; it does this by saving the state of TCP connec...
the only ssh tunnel that's left is the one for atps server
only relevant to routers/other link devices
any more and it's probably going to fucking shoot itself
i see
vpn server right now should actually work fine enough with video streams in all honesty
that's good
its just the massive connections nmapping over a subnet isn't a very easily fixable issue
ill see if i can connect with the printer software later
ok so like...only have one ssh tunnel for your sftp stuff or video streaming?
maybe 2 if you really need direct remote access
but 2 isn't that much
it needs to be multiple to account for all the ports the software uses which even then i don't have all of them known
the software needs like
all ports available
oh yeah i shouldve asked this but uh
the software for what
if it doesn't then it'll say something's wrong with the printer etc etc
how many logical cores does the printer linux cpu have
printer control?
printer
ideamaker
feel free to google
it's kinda a shitty prusa slicer
uhhhh
let me see
one thing i don't understand
so the issue is you're missing tun
have you tried to add it manually
there's theoretically
okay thank god
i say theoretically
a way to add it by recompiling the ke ok let me find what i said yesterday
6
built in Linux computer for some shitty printer
is this a creality printer
yeah it's this
... i have root access to the printer, why ami asking you?
very weird
hold on
okay neat
quad core means the server can support around 4 connections before weird stuff might happen
i dont think youll ever use 4 connections though
i had like 9 running before i asked you to make the server
as to what they all were i don't remember
since it was back in October
4 connections thru the vpn that is
the "weird stuff" in question is just slowdowns/memory exhaustion
everything ran per thread (e.g. TCP/UDP socks) are virtually threaded so much more lightweight
root@imx6qebcrb02a1:/tun/serve/sstp-1.0-SNAPSHOT/bin# modprobe tun
modprobe: FATAL: Module tun not found in directory /lib/modules/4.1.15-4411A1LIV8090
root@imx6qebcrb02a1:/tun/serve/sstp-1.0-SNAPSHOT/bin#
i tried to see a lot of things if tun existed
before asking atp
none worked
but your free to look further
i just doubt it's in the kernel
that's kernal complication which would fuck up everything right
beacuse once again i can't reinstall it if something goes wrong
ssh is the only connection to the console
uhhhh
ok i honestly don't remember so let me get my pc but it's somewhere in /usr
god damnit i JUST got on my pc and found it 😭
ok whatever feel free to add that export command to bashrc or whatever
adding it somewhere in isolinux...
also the directory java is in rn isnt really a proper place but like
i didnt know where else to put it
so
feel free to move
Connection to 127.0.0.1 closed by remote host.
Connection to 127.0.0.1 closed.
frown
yeah
uh
let me try a little thing
nope its not even responding
aka
someone turned the printer off and didnt turn it back on
well crap
you know you are fucked when you get "Connection to 272.254.223.98 closed by remote host."
@timid quartz
made this tiny infographic if it'd be of any help
this part is where you'll be doing lcp/pap stuff
272 is outside of the systematically possible ip allocation range
exactly, thats how you know your software is fucked
do you just speak japanese now or what
what... no..
i just got forawrded that from one of my conacts... and then decided to send it here cause of aera..
@spare quartz HOW MUCH SHIT DO YOU FOWARD HIM
😭
NVM
PLEASE DISREGARD
ALSO HI PERSON I WILL NOT NAME
FORGET IT]
NO
ATP’s codev??
he's not here
are you gay and a protogen and work at a paper factory
could be a fake personality
u go make furryc 1.0
i hate c
too bad!
go make c but japanese or something... weeb..
its my old pfp
tz becomes lovelessduck
your oc ... is a duck ??
i think ducks have fur
or do they have feathers... i dont know
the last time i saw a duck was in ohio
nuh they have feathers
do you not have ducks in texas what
not where i live no
probably too hot
oh well, there actually is some at the lake nearby, but i only saw it when going to school 3 years ago
the same lake is used by coal/gas plant
... only gas now though...
what happens to a mf when they stay inside for 3 years
You’re LITERALLY Sunny from Omori
❌
i might have depression but i do not have the mental clarity to create a whole ass world in my head
ok you’re just lame Sunny then
rude.
you also ||dont have a dead sister||
true
wow what a thing to open this channel to
but my sisters husband is a soldier, so ... something... hopefully not involving stairs
SPOILERS
SPOILERS.
exactly i havent played either smh
ur gonna get muted for Rule 143: No Omori Spoilers
PRINTER IS STILL OFF
WE GOT AMBUSHED AND LIVED
IM GOING TO START SCREAMING SWEARS.............
Imagine playing scpsl
めおwめおwめおw
atp what version does the printer have of the server and is it stable
when i turn the printer back on tomm i wanna test the software
and see if it can connect to it
and im also going to need to kill the fucker who turned off the printer
nmap was kinda tbh just like a test to see what it could handle
if i really wanted an nmap scan i already have one i did from a while ago with my laptop 💀 (not related to the server)
the nmap was more of a test of if it can take the load of hot connections n shit
like nmap kinda works fromt he improved tcp
im not going to actually be using it
imagine playing qserf
but it also has a 10% chance of expldoing
isnt nmap more of an icmp thing
at least the ping scans
ive been doing ping scans not normal scans
o
why did that send here
must detonate alpha warhead
Provided to YouTube by AAAA
お花見団子と飲み騒ぎ · AAAA
お花見団子と飲み騒ぎ
℗ 2024 AAAA
Released on: 2024-01-01
Composer: AAAA
Auto-generated by YouTube.
LOL
FFmpeg is pleased to announce we are joining the @DOGE team!
︀︀
︀︀We will be rewriting America's Social Security system in assembly language, for the highest performance possible.
💬 306 🔁 889 ❤️ 13.9K 👁️ 439.0K
to?
my computer
-ip=0.0.0.0 -port=443 -pap_username=testuser -pap_passphrase=passwordmeow -verbosity=4000 -keystore=keystore.p12 -keystore_passphrase=[the password i use for everything and would be fucked if anyone found out]
hi guys today we're going to be viewing atps termina
more like you'd just be looking at my local network
i dont have ssh on my comtpuer ,
oh ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @flint belfry do you want to pay me more money for your own ssh server 🥺
🥺🥺🥺🥺🥺
i dont know im bored and teired :<
I have like 5 vps's 😭
define tho like
me giving you a vps in the past kinda thing or a no tty terminal??
i mean me write you a ssh server executable thing
joknigly ebcause im bored and i just want ... something ... i dont think i can mentino here
anyways have contact ionfos of people
ugghguuh
i shoud just draw
protocol development is hard
draw aero
noooooooo
WHY
there is a specific character i am in love with...
and its not kohaku..
i WOULD send them here cause it's always a treat to see them but then the haters will get me
maybe in the future thuogh../ when i can draw ewll..
dhfushdf
what does this even mean bro
@pallid loom so apparently you can prefix any certilia.com subdomain with test. and you get access for free
i even got a signing certificate, yet i am nowhere near 18 yet
https://cdn.astrohweston.xyz/u/62189c1a-b18b-484a-bbb9-65ba5e6106a7.png
its a random document i signed ignore it
today is the day I do ppp
well maybe not idk
i got stats to do
nerd
i am trying to use chatgpt ai in my app but app give me yellow line? @garrytan
💬 226 🔁 47 ❤️ 2.2K 👁️ 134.5K
😭
nice
scientist likes private parts
Lol
ok hear me out
<html>
<body>
<h1>Bread Experts Group</h1>
</body>
</html>
perfect website
gay
❌
this is peak website design
@spare quartz this is a real website
no
minimal html and css
yes it is
nop
nope
this is why you dont let cats use the internet
our masterful, well made website
still you are using predominantly dark text on a bright background
THEIR .rtf file
which is a hallmark of light theme
look at that
beautiful
masterpiece
simple and to the point
nothing fancy
mm that's a skill issue
programmer issue ^
bad browser thats unable to display a line of text right issue ^
your website is LITERALLY displayed that way
its not incorrectly formatted its just hard to read a long line of text 😭
ok skill issue
not my fault your eye muscles have atrophied from being fixated on a screen for the past 4 years
the answer is yes
for kade?
depends
im kinda making a two-way system of ipc here...
one uses sockets for non-JVM apps, one uses shared memory for JVM apps
latter is a lot faster and doesnt take up any socks but isnt as applicable as the former
3 trillion devices run java
3 quadrillion devices run java
American Dad is becoming a very popular game to speed run, so let us look into the history of speed running within American Dad, and uncover some dark truths, as well as some wild performances.
https://www.twitter.com/colemancheu
https://www.patreon.com/colemancheu
https://...
Wrong ...
correct!
woohoo
codev has his driven ow
bro pushed his .env file with api creds that ACTUALLY WORK
︀︀
︀︀u can just clone the project and use his stupid product for free lmaooooo
︀︀
︀︀we're beginning to witness the first disasters of vibe coding
︀︀
︀︀@InterviewCoder @im_roy_lee
💬 310 🔁 325 ❤️ 8.3K 👁️ 886.3K
vibe coding ftw
thinking bout adding RPC to our server
(to test production mc servers)
-# ↩ kopper
we could've had "FOSS" image editors. video editors. music production tools. they could've ran on mobile. on phones. tablets. on devices people ALREADY HAVE ON THEIR HANDS RIGHT NOW.
the ones they're actively using to CONSUME.
they could've used the SAME DEVICES to CREATE instead. without ads or getting scammed with overpriced garbage (compared to their desktop equivalents)
but what did you all do? you called it a waste of time. you sneered at it because google bad. apple bad. tiktok bad. scrolling bad. grrr get a thinkpad. just get a thinkpad.
spend the money you obviously have to acquire a computer thats obviously being sold where you are and store it in your home you obviously have. so Your Computing Can Be Ethical And Good. not like Bad Evil Tiktok Device. look at Good Linux Terminal Device instead.
write it in ada
no
yes
write it in rust
a reverse proxy in rust probably isnt that hard
but ive not even done the sstp thign
all coded in rust
not like you’d know anything about caring about grades tho
cause im just better at school
you dont go to school bro