#ot1-perplexing-regexing

1 messages · Page 569 of 1

tranquil orchid
#

You can't just pass whatever you want to a function parameter

#

It has to be of the type specified

rain rampart
#

I am incapable of comprehending what that means

#

¯_(ツ)_/¯

#

Oh like Java?

#

Like

tranquil orchid
#

Yes java is statically typed

rain rampart
#

int numberVariable = 3;

#

Does rust need a semicolon at the end of each line?

gritty zinc
#

admittedly, forcing you to declare the type of each variable is just an obnoxious Java thing

tranquil orchid
#

Yeah

gritty zinc
#

it's totally possible to infer types in most cases, and Rust does

rain rampart
#

Ik can’t it figure out what type it is

#

Also why the semicolons those are unnecessary

gritty zinc
#

like, let i = 5;, and if you then use i as an index, Rust knows that you meant it to be : usize, because that's what indexes of slices must be

tranquil orchid
#

Rust does, it can infer the type in most cases

rain rampart
#

I have to say let?

#

And what is usize

gritty zinc
#

to define a variable, yeah

rain rampart
#

Isn’t there also like def

gritty zinc
#

usize is "unsigned integer of size depending on the system" - 32bit or 64bit

tranquil orchid
#

fn

#
fn main() {
    println!("Hello world");
}
rain rampart
#

Would a beginner be able to learn Rust btw?

gritty zinc
#

(essentially, that's basically what the bitness of a system is - how big a pointer is on that system)

rain rampart
#

What does main mean

little wolf
#

main is ran everytime the file runs

rain rampart
#

Oh no

gritty zinc
tranquil orchid
#

the main function is the function called when you run the file

#

it's the "entry point" to the file

rain rampart
gritty zinc
#

you'll have to learn a ton of things, but on the bright side, it will enlighten you and you'll be able to apply this knowledge to all languages

rain rampart
#

yeah

tranquil orchid
#

@rain rampart Well that's pretty much every other language

rain rampart
#

Really?

tranquil orchid
#

Most languages use curly braces

rain rampart
#

So Python is the only one that’s this easy?

tranquil orchid
#

Well, indentation is arguably harder

gritty zinc
#

tbh it's not truly easier at all, just more readable

tranquil orchid
#

^

rain rampart
tranquil orchid
#

@rain rampart Python uses indentation

#

Most other languages use curly braces

little wolf
rain rampart
tranquil orchid
#

@little wolf I mean, kind of. But it can't do it all for you

#

It can assist

royal lakeBOT
#

Hey @vapid nymph!

It looks like you tried to attach file type(s) that we do not allow (.ico). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.

Feel free to ask in #community-meta if you think this is a mistake.

vapid nymph
#

ffs

#

@tranquil orchid can i dm you?

gritty zinc
tranquil orchid
#

What are you dming me? 👀

vapid nymph
#

that ico

#

lol

gritty zinc
#

like, it's not hard to learn that you need ;s on end of lines or curly braces

tranquil orchid
#

sure

rain rampart
gritty zinc
#

learning how stuff works on the low level

tranquil orchid
#

Yeah learning the syntax isn't hard, it's the new concepts

gritty zinc
#

like, you have never ever encountered in Python most stuff you'll be dealing with

vapid nymph
tranquil orchid
#

Oh yeah lol

#

one sec

vapid nymph
#

sent a friend request

gritty zinc
#

see, say, my comments about arrays and vectors earlier

tranquil orchid
#

should be on

rain rampart
#

But l have been told that when I learn Python it will be easier to learn others because I will have the programming concepts down

gritty zinc
#

that's true

tranquil orchid
#

But there's still some new concepts you'll have to learn here

vapid nymph
tranquil orchid
#

You'll go into this with the mindset of a programmer, and some of the skills you'll use in rust

vapid nymph
#

have fun turning that ico into something else

gritty zinc
#

but now you'll have to learn the basics of low-level programming, too

rain rampart
#

Oh

vapid nymph
rain rampart
#

So it’s like Python but new things are added?

tranquil orchid
#

It's a lower level language

vapid nymph
#

what, it doesn't manage memory for you?

little wolf
#

i feel like learn c/c++ first then learn rust

gritty zinc
tranquil orchid
#

@rain rampart It's more like Python but things are taken away

#

You're removing layers of abstraction

#

To get to the lower level stuff

rain rampart
vapid nymph
#

welp time to cause my print server to freeze lol

gritty zinc
rain rampart
gritty zinc
little wolf
little wolf
#

i dunno how i would have learnt rust if i didn't know C i learnt earlier

tranquil orchid
#

Well ultimately, at some point your code is just machine code running instructions on your computer. But layers upon layers of abstraction allow you to (kinda) write those instructions as nice readable text on your screen @rain rampart

rain rampart
tranquil orchid
#

I think it's best that you just jump into it. Tackle the challenges as they come.

#

The Rust book explains it all really nicely

rain rampart
#

Yeah I was planning on just starting Rust

little wolf
#

i dunno, but in my opinion it surely helps

tranquil orchid
#

Rust and C have a lot of similar concepts, so learning one would make learning the other very easy

rain rampart
#

Is the rust book the equivalent to the Python Docs?

tranquil orchid
#

Not quite

vapid nymph
#

its just the book btw

#

affectionately

gritty zinc
tranquil orchid
#

The book is made for teaching rather than... I guess informing? The purpose of documentation is to act as a reference to programmers, they need to remind themselves of what some function returns so they go to the docs to check. But if they want to learn the syntax for functions, they'd want a book, video, course, etc to teach them.

gritty zinc
#

and then Memory and Allocation

vapid nymph
#

boo

#

my network admin blocked rust's installer website

rain rampart
rain rampart
vapid nymph
#

literally what it says lol

rain rampart
#

r u using a school computer or something

vapid nymph
cyan pagoda
#

can we create a bot which can post data from my youtube channel to directly in my server

tranquil orchid
#

Yeah

vapid nymph
#

yes

little wolf
#

mac?

cyan pagoda
#

also when i upload a new video it will upload it to channel

tranquil orchid
#

The youtube API would for sure be fine for that

vapid nymph
cyan pagoda
#

mean discord api + yt api is what i have to consider

rain rampart
vapid nymph
#

.status cat 403

median domeBOT
#
**Status: 403**
rain rampart
#

I love this API

gritty zinc
#

how do you actually get 100

rough sapphire
#

jesus

cyan pagoda
tranquil orchid
#

I don't even know

gritty zinc
#

To have a server check the request's headers, a client must send Expect: 100-continue as a header in its initial request and receive a 100 Continue status code in response before sending the body.
ah

tranquil orchid
#

100 is just like "yep we're all good" isn't it?

vapid nymph
#

OH GOD THIS IS CURSED

#

.status cat 405

median domeBOT
#
**Status: 405**
rain rampart
#

Whenever I do requests stuff with other APIs, I just do a try/except and if there is an error, I just let it show me the https://http.cat status code

HTTP Status Cats API

API for HTTP Cats

gritty zinc
#

apparently if you want to be a goody two shoes, you can ask a server "my auth headers are okay, right?" before actually sending data, and that's what 100 is for

vapid nymph
tranquil orchid
#

ah

vapid nymph
#

cursed

rain rampart
#

Yep

#

I think

#

Haha can’t tell

vapid nymph
#

they're different uses

#

like, 100 is yes, we're good, now what's your request

#

200 is like alright, fine, here's your answer now gtfo

rain rampart
#

200 for requests means that it successfully got the stuff from the API

gritty zinc
#

200 is just, like, any normal response

#

every time you go to a website page, it gets served to you in a response with a code-200

rain rampart
#

Yeah exactly

gritty zinc
#

anything other than 200 is some kind of abnormal

vapid nymph
vapid nymph
gritty zinc
#

fair enough

#

looks like 201/202/204/205 are relatively normal too

vapid nymph
#

posts, 201

#

yeah

#

honestly

#

if i could

gritty zinc
#

now that I think of it

vapid nymph
gritty zinc
#

ResponseCode enum when

vapid nymph
#

ooh

gritty zinc
#

5 initial variants, Code1xx to Code5xx

vapid nymph
#

there's an example with match case on the newest one

#

not an enum

gritty zinc
#

then every single variant 🥴

vapid nymph
#

but a much better processor

gritty zinc
#

that sounds like a bad idea, of course

vapid nymph
#

why?

#

also

little wolf
#

whats an enum?

gritty zinc
#

it's concerning when you start having more than a hundred enum variants

gritty zinc
little wolf
#

mhm

gritty zinc
#

like, a type that's one of several variant types, determined by a tag that goes with the actual value

little wolf
#

so like

variable: any = 1```
#

wait so its like a class?

gritty zinc
vapid nymph
#

oh god oh fuck

#

why the fuck cloudflare

#

why the actual--

#

send help

#

aaaaaaaa

#

why the actual fuck what the fuck is this

#

400 CRATES

#

to install wrangler

edgy crest
#

jesus

vapid nymph
#

should I being doing something special when installing this to not pollute my namespace?!

topaz aurora
#

Well you're really only installing Wrangler

#

All other Rust dependencies are linked statically afaik

vapid nymph
#

no I intend to do more with rust later tho

#

…yeesh

topaz aurora
#

Also 400 crates is standard

#

It won't take long, rustc is fast

vapid nymph
#

🤔

#

why the fuck

topaz aurora
#

Even on my potato I'm able to compile stuff with that many dependencies, as opposed to Haskell where one big one takes up 90% of my RAM

vapid nymph
#

only on 99

vapid nymph
gritty zinc
#

dependencies for different stuff

topaz aurora
#

Something something subcrates

gritty zinc
#

hmm

#

if you have two crates in your deps depending on the same version of a crate

#

does it only get included once?

topaz aurora
#

It'd be weird if it doesn't

vapid nymph
#

so unlike python you can have dep hell where everything can coexist?

vapid nymph
rich moon
#

400 crates

#

looks at llvm build time

vapid nymph
#

very slow rn

rich moon
#

cargo should be building in parallel

vapid nymph
#

i think it is...

rich moon
#

which makes it fast

#

at the cost of prob some extra memory

vapid nymph
#

So uh

#

I broke something

#

Sorry for the quality

#

But that's 20 task manager windows

#

All frozen

rich moon
#

prob a potato computer or sth

vapid nymph
#

Nope this has never happened lol

#

Lol it recovered some

#

@gritty zinc@topaz aurora fast, you say.

#

my computer is nearly frozen lol

#

but its not entirely frozen lmao

gritty zinc
#

what non-compiled language will allow you to shoot yourself in the foot with such performance? 😉

vapid nymph
#

python right?

#

okay its faster now

#

it finished installing so i shutdown wsl

solemn leaf
#

You started learning rust

#

👀

#

@vapid nymph hello productive boi CB_pepehacker

edgy crest
#

just learning rust isnt that productive you will need to have a use for it

solemn leaf
#

Yesh

#

Will start tday

edgy crest
#

why

solemn leaf
#

How long it took for u

#

To cover the basics

edgy crest
#

uh a week i think

solemn leaf
edgy crest
#

ok

solemn leaf
#

A week

edgy crest
#

bruh

solemn leaf
#

Only

edgy crest
#

yes

solemn leaf
#

ok

edgy crest
#

i already knew python so

#

python took me months

solemn leaf
#

Same

#

1 month

vapid nymph
#

OMFG

edgy crest
#

whot

solemn leaf
#

ok

#

Wait

#

Isn't rust like cpp

edgy crest
#

no

solemn leaf
edgy crest
#

cpp is more lower level imo

vapid nymph
#

That's all task manager

edgy crest
#

i could say rust is easier

#

than cpp

vapid nymph
#

Like

#

Everyone single window there is a task manager

solemn leaf
#

Screenshot exists

vapid nymph
#

yeah uh my computer is frozen rn

edgy crest
solemn leaf
#

win + shift + s z_WutTriggered

vapid nymph
#

like its not frozen just really show

solemn leaf
#

What's ur ram

#

16 right

vapid nymph
#

+:+1:

edgy crest
#

did you install a virus or smth

solemn leaf
vapid nymph
solemn leaf
#

Same

vapid nymph
#

Wait actually

#

No I installed cf wrangler

edgy crest
#

th is wrangler

#

sounds creepy

vapid nymph
#

what @bleak lintel uses to set up workers for his pydis farm

#

Cf workers

edgy crest
#

heh

solemn leaf
#

wot

undone helm
#

Anyone know of good resources to learn x86-64 assembly?

vapid nymph
#

Ooh I can drag them again

#

Time to create a fucking nice screenshot

#

Oh God that was satisfying

solemn leaf
#

Then which girl ?

vapid nymph
#

closing a program and watching it go off of EVERY task manager

#

Holy shit that was SATISFYING

edgy crest
solemn leaf
#

Imagine finding assembly docs

solemn leaf
#

while not gaming

vapid nymph
#

Wtf what world do you live in

#

Oh ok

solemn leaf
#

Less than 8 gigs usage geng

gritty zinc
vapid nymph
#

it's still installing wrangler

solemn leaf
vapid nymph
#

Oh yeah

#

So even though my computer is super slow to any input

#

IT'S PLAYING MUSIC JUST FINE SKSKS

solemn leaf
lunar nexus
#

did you understand about computers

solemn leaf
lunar nexus
#

cpu and stuff

inland wolf
lunar nexus
#

my samsung book is very slow

inland wolf
#

dang

lunar nexus
#

and my cousin wanna buy me a better one

inland wolf
#

nice

lunar nexus
#

what he should buy

solemn leaf
#

@vapid nymph do u use a dedicated gpu

solemn leaf
#

👀

vapid nymph
solemn leaf
#

That's the reason of ram filling

#

GPU memory handles some part of the usage

#

👀

lunar nexus
#

USD?

solemn leaf
#

Yeah

lunar nexus
#

8

edgy crest
#

whot

vapid nymph
edgy crest
solemn leaf
#

You have just

lunar nexus
#

8000

solemn leaf
#

Speed ran

edgy crest
#

o

lunar nexus
#

8k

edgy crest
#

8k USD can get a pretttty good pc

#

though seems overkill to me

solemn leaf
lunar nexus
#

yeah

edgy crest
#

1k to 3k should be enough

solemn leaf
#

8k wtf

lunar nexus
#

i just wanted features that makes confortable

edgy crest
#

laptop or pc tower

solemn leaf
#

he can get both

edgy crest
#

yes

lunar nexus
#

like screen with fancy stuff and whatever

acoustic moss
#

you can get a fucking car for $8k lol

solemn leaf
#

Fucking car

#

sounds interesting

edgy crest
lunar nexus
#

it can buy a c 180

vapid nymph
solemn leaf
#

Bruh

#

Lemme open these tabs

#

And show the usage

lunar nexus
#

this is

solemn leaf
#

Morning Ankit h

lunar nexus
#

the effect from pushing window in windows 96

twin charm
#

morning.

vapid nymph
solemn leaf
#

@vapid nymph wait how did u manage to open multiple instances

vapid nymph
#

Ikr

solemn leaf
#

its not opening more than once for me

vapid nymph
#

Exactly

twin charm
vapid nymph
#

You have to figure out how to freeze the active one

#

So you can open another one

solemn leaf
#

freeze

#

hmm

vapid nymph
#

Have like 2 more places to cover

#

Before I try and take a full screenshot

#

Ok

#

Covered the entire screen

#

Now it's just a matter of doing this right

#

Got it

solemn leaf
#

show the ram usage

#

as well

vapid nymph
#

I Can't lol

inland wolf
#

does it only work if u make it show less

vapid nymph
#

Pls ping me here

inland wolf
#

@vapid nymph

vapid nymph
#

ty neeedding the mention to get here

cyan pagoda
#
index = int(msg.split("$del",1)[1])

what does that ,1 and [1] mean

inland wolf
#

split takes a second argument

#

maxsplit

vapid nymph
inland wolf
#

so here it will split a maximum of once

#

and then [1] will get the second element of the split list

vapid nymph
#

this is only the second tiime Ibut only 100% cpu and 54% memory from what i cansee

cyan pagoda
#

so can i put [index] instead ?

inland wolf
#

yes

#

but there will only be a max of 2 elements in that list

#

because u only let it split once

cyan pagoda
#

oh okay but does that [1] itself means index

inland wolf
#

yes

#

much like saying some_list[1]

#

since split returns a list

cyan pagoda
#

oh ic

#

thanks

inland wolf
#

np

vapid nymph
inland wolf
#

uh

vapid nymph
#

yes

#

here

#

@trail juniper where's the first brain?

#

this is why

#

rust is causing my cpu to freeze

#

well actually the antimalware exe smh

trail juniper
#

Recharging, and what mess have you created lol

vapid nymph
#

nothing new

trail juniper
#

Power management

#

Do you have one of those fancy kill all tasks button?

vapid nymph
#

no

#

but i closed them earlier

#

after taking the screenshot

inland wolf
#

kil all tasks would be interesting

vapid nymph
#

taskkill /f /im taskmgr.exe

inland wolf
#

how much would it break windows

little wolf
#

windows is already broken

vapid nymph
inland wolf
#

no

trail juniper
#

It’s usually round, can be multipurpose, and usually requires you hold to kill

vapid nymph
#

no, i don't have it sadly

#

i did close it tho

#

ah well

#

gonna close canary and then shit down this computer

#

Shut down

lunar crescent
#

lol

inland wolf
#

shitting and shutting down the computer would probably bring the same end result

#

well

#

depends on the intensity of said shitting

little wolf
#

what... happened here

inland wolf
#

@gritty zinc can u use ffmpeg to reduce the file size of a video?

gritty zinc
#

well, yes

inland wolf
#

hm

#

how do i use the cli

gritty zinc
#

reencode it with a good codec like h265, and of course the lower quality the lower size

little wolf
#

is there a lossless way of compressing it?

inland wolf
#

lemme just do --help

little wolf
#

or be a man and use man

gritty zinc
versed saffron
#

everyone forgets about man Sad

inland wolf
#

c:v

gritty zinc
#

where <crf> is 28 by default - lower is higher quality

inland wolf
#

i see

gritty zinc
#

not sure how common losslessly compressed video is tbh

#

like, the default is 28

little wolf
#

hmm

inland wolf
#

lemme try this

gritty zinc
#

c:a is only to audio

inland wolf
#

codec for video?

#

and libx265 is h.265?

gritty zinc
#

not sure it stands for codec

gritty zinc
inland wolf
#

i see

gritty zinc
#

like, to enable stream copy mode, you do -c:v copy

#

and that's not really a codec

inland wolf
#

hm

vapid nymph
#

@gritty zinc congrats on mod

quick ledge
#

@gritty zinc congrats!!

inland wolf
#

ayo im encoding a video!!

vapid nymph
#

@quick ledge congrats on helper!

gritty zinc
vapid nymph
#

@polar knoll congrats on bot!

quick ledge
vapid nymph
#

Lotsa promotions, wow

quick ledge
#

@vapid nymph congrats on Announcements!!

inland wolf
#

WOAH HEVC

#

15mb -> 3mb

vapid nymph
#

Ah thanks

little wolf
#

wait that was a joke? i spent about a whole minute checking if my internet was wrong

inland wolf
#

hmm but dsicord doesnt play hevc

vapid nymph
#

Tis nothing, really

gritty zinc
inland wolf
#

hm?

#

wdym

gritty zinc
#

what extension is the output file?

#

mp4 or something?

inland wolf
#

mp4

#

yes

#

is it supposed to be mp4

#

or did i get the extension wrong

gritty zinc
#

it's fine, yeah

inland wolf
#

hmm

#

well i encoded it with libx264

gritty zinc
#

if that doesn't play, guess discord really does have a problem with the codec

inland wolf
#

it can play libx264

#

can ffmpeg tell the encoding of a video file

#

like i just need to info

#

is there a flag for that

gritty zinc
#

there's ffprobe

inland wolf
#

i see

gritty zinc
#

it's integrated into the context menu for me, so I'm always two clicks away from this

inland wolf
#

bruh

#

how high can i make crf

gritty zinc
#

The range of the CRF scale is 0–51, where 0 is lossless, 23 is the default, and 51 is worst quality possible. A lower value generally leads to higher quality, and a subjectively sane range is 17–28. Consider 17 or 18 to be visually lossless or nearly so; it should look the same or nearly the same as the input but it isn't technically lossless.

The range is exponential, so increasing the CRF value +6 results in roughly half the bitrate / file size, while -6 leads to roughly twice the bitrate.

Choose the highest CRF value that still provides an acceptable quality. If the output looks good, then try a higher value. If it looks bad, choose a lower value.

Note: The 0–51 CRF quantizer scale mentioned on this page only applies to 8-bit x264. When compiled with 10-bit support, x264's quantizer scale is 0–63. You can see what you are using by referring to the ffmpeg console output during encoding (yuv420p or similar for 8-bit, and yuv420p10le or similar for 10-bit). 8-bit is more common among distributors.

#

from h264 docs

inland wolf
#

oh its exponential

#

interesting

#

8bit is what most videos are right

gritty zinc
#

8-bit is more common among distributors.

#

i guess

inland wolf
#

alright

#

im doing this ffmpegging on my phone

#

its slightly slow

#

but thats alright

gritty zinc
#

ffmpegging, noun

inland wolf
#

it is not fast

inland wolf
#

maybe i should try -preset fast

#

its getting hot 😳

gritty zinc
#

I just read that preset fast is ~10% faster

inland wolf
#

im going to get veryfast

gritty zinc
#

ultrafast is only 2x faster at the cost of much lower quality

inland wolf
#

god my phone is not fast

#

im using termux rn

#

lol

#

im just testing if i can replace those video compressing websites with ffmpeg on my phone

#

its probably what they use but with much stronger servers

#

and its mostly memes that im compressing

#

so i dont really care abt quality lol

#

oh god

#

my phone managed to compresss a 30 second video in 200 seconds

#

with -preset veryfast

#

btw

acoustic moss
#

how much did it compress

inland wolf
#

from 7mb to 3.9

#

can it make gifs

#

what are the output types

#

ah it can do gif

#

ok imma try gif to mp4

gritty zinc
inland wolf
#

lol

gritty zinc
#

I wasn't joking about using ffmpeg to reencode photos sometimes

gritty zinc
#

gifs don't use any video encoding, they store every frame

inland wolf
#

yea

#

gifs are pretty big

#

ffmpeg -i .\gigachad.gif -c:v libx264 output.mp4 is this wrong?

#

cuz the output aint playing anything

#

lemme try vlc

#

oh it works in vlc

gritty zinc
#

mpv ❤️

inland wolf
#

ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4
stack overflow to the rescue

rough sapphire
#

does somebody know a good USB microphone that like... hears me in my whole room?

#

I mean like... super sensitive

inland wolf
#

hmm

rough sapphire
#

also compatible with raspberry

#

I really need something like this

inland wolf
#

but if u make it super sensitive

#

wont it hear other things

#

like a slight breeze

rough sapphire
#

well...

#

I didn't mean that sensitive

#

but like a microphone used in theaters

#

ye

graceful basin
#

you want an omnidirectional microphone

#

most theatres have a lot of directional microphones with a crew controlling them afaik.

#

omnidirectional microphones are used to record meetings and such

rough sapphire
#

oh

#

yeah like an omnidirectional one

#

or I just put it in the corner

#

then it doesn't have to be like that

#

but it has to be more sensitive then

#

which is not ideal

#

but can you recommend one? ducky_yellow

graceful basin
#

unfortunately no

#

I do know someone who might know though

rough sapphire
#

yay

#

who's that?

edgy crest
#

fisher maybe

graceful basin
#

IRL acquaintance

rough sapphire
#

hm

inland wolf
#

lmao

latent scaffold
#

lol

rough sapphire
#

how's it? i need to read it.

#

its been so long since its in my TBR

#

by?

#

oh alright, I'll read it first.
and i added one more book in never ending tbr list

#

212 pgs yes

acoustic moss
#

sissy fuss

#

that's the boulder guy right

rough sapphire
#

boulder guy?

acoustic moss
#

ye that was his punishment

#

pushing a boulder

#

for eternity

rough sapphire
#

im clueless

acoustic moss
#

tl;dr he tried to cheat death, death god got pissed and punished him by making him push a boulder on a steep hill forever

rough sapphire
#

oh im weak in greek mytho. im alright with indian mytho in some ways.

#

also that guy cheated death too, harry potter's father's father.

#

monotonous

jagged fog
#

can someone explain why does my repo that was made last night and only known by few ppl have 20 clones already?

#

are these all bots/scrappers?

graceful basin
#

likely

vestal briar
#

yeah probably

#

id assume dependabot etc

brazen ingot
#

@rough sapphire 🆕 pfp mehh.

rough sapphire
#

oh😂

#

should i go back to old one

harsh tundra
#

First try on the grass without any bounds above. I'm stressed but first thing birdo did was to jump back on me, so I think we're good as long as I'm here

vestal briar
#

as long as birdy doesnt fly away

latent scaffold
#

broom broom

harsh tundra
#

Flew away, did a round around the trees and around the house, sat near the house, got a snail for coming back and now sits with me

#

I was like "oh fuck, I messed up"

latent scaffold
#

Bamboozled

harsh tundra
#

Wet bird smells a bit like wet dog. Less intense but similar. Especially if birdo sits on your shoulder and smacks you with a wet wing

#

Ugh, used my telegram to convert bath video to gif but it saves weirdly back onto my phone

#

Ugh, of course telegram showed it as gif but it was mp4 and probably saved it as such (that "gif" saved to my phone got a name "(1)" so I guessed the extension as gif, which apparently was wrong)

noble atlas
#

aww she likes to take a bath lemon_hearteyes

harsh tundra
#

Wanted to take a photo, birdie wanted to be higher XD

#

Dammit, birdie keeps clicking top of the screen now

harsh tundra
#

Find the birdie

acoustic moss
#

I found it

#

its on the tree

#

right there, next to the leaves

graceful basin
#

true

harsh tundra
#

Ugh, flew toward me but high, turned to my mother-in-law but still high, then flew to a tree at neighbours'

#

We hope that will come back when gets hungry. It was a bad idea finding all nice food (dead insects, snails) and giving it now...

harsh tundra
# vapid nymph It's a pet bird?

No, it was a chick thrown out from nest or that fell out. We found 4 chicks before that one that day, all dead. It was the only alive and when I carried it a bit in my hands (I had to do a very boring certificate course for work, so I just sat through the videos with birdie in my hands, lol), it became lively so we decided to raise it

#

That's the birdie on 18th May, second day with us

#

Box and pieces of cloth and paper towel + hot bottle as a nest

#

Cuddly fella, more feathers out. 22nd May

#

Started trying to fly a bit that day, or rather used wings to get higher and stuff

#

27th May, got it first time into veggie tent

#

Still cuddly that day, especially when got hungry, lol

#

31st May. I love this perspective

#

3rd of June, we found a small cage without bottom and got birdie outside, to get used to grass (it was hot as hell in the veggie tent)

#

And today, 6th of June, I wanted the birdie to slowly learn the outside world without the cage... And well, came back a few times, then got fed snails, then flew on tree, then on another, then flew to neighbour's and haven't came back yet

edgy crest
harsh tundra
edgy crest
#

noice

#

they do that a lot of times

harsh tundra
#

So this time for drying, it wasn't as cuddly as last time

edgy crest
#

whenever i tried to bath my budgie myself it wotn get in

harsh tundra
#

As seen in the photo and video, I blocked the drain and just put a little water in there. It was the birdie that decided to splash around in it :D

#

My partner had some kind of parrot ages ago, that's how we had those cages now. And after we renovate the house a bit, my partner wants to get a parrot as well

edgy crest
#

get a cockatiel

#

if you can

#

they are very fun to have

latent scaffold
#

lol my aunt had one

#

very noisy

edgy crest
#

yes

#

you can get a budgie but they are super fragile

harsh tundra
#

I don't remember which one my partner had

latent scaffold
#

that's a terrifying comment

#

not even going to lie

edgy crest
#

🤔

latent scaffold
#

"super fragile" lol

edgy crest
#

hm i mean

harsh tundra
#

I just asked my partner's mum, the parrot they had the longest was actually a cockatiel

edgy crest
#

ye

harsh tundra
#

And had budgies before that and that's how their love for parrots started ^^

edgy crest
#

if they become friendly you can teach them stuff

#

i taught my budgie to say fifi 🐦

harsh tundra
#

Yep, when we took care of the bird my mother-in-law told me how they taught the cockatiel to come to them or give kisses

edgy crest
harsh tundra
#

Because this birdie was pecking my lips when on my shoulder and hungry, lol XD

edgy crest
#

they like head pats too

harsh tundra
#

This birdie liked being pet on the back, from back to the neck to between wings

#

While the cockatiel was said to like being pet under the chin, kinda like a cat :D

harsh tundra
#

BIRDIE RETURNED

acoustic moss
#

lesgo

latent scaffold
#

You know you can't have birdie without die

#

I've discovered this by misreading

#

and I think I need new glasses

acoustic moss
harsh tundra
latent scaffold
#

🦗

tardy rain
#

Speaking of insects, i saw this gorgeous moth today

#

Fuck i love moths so much

modern haven
#

ever since i saw a horrow movie kinda thing where a moth crawled in under someones eye and out their ear ive been put off moths

harsh tundra
#

I once found a kinda similar one. But was completely gray on top with reddish parts underneath. Found it dry, on office's floor :o

tardy rain
#

Love me a good moth, this one is a lime hawk moth

#

A male probably, idk

harsh tundra
#

Birdie got another bath when home ^^

#

Wings are already dry. I have sensitive sense of smell so I kept the birdie low when drying wings - being smacked on the cheek with wet wing once was enough for me

vapid nymph
#

ahhh

#

@honest star how'd you get it?!

honest star
#

I dunno, it just popped up yesterday or the day before

edgy crest
#

normal discord?

honest star
#

I'm on stable, yeah

edgy crest
#

o

inland wolf
#

yes

rich moon
#

nitro ppl be like

#

i can set a custom background

rough sapphire
#

i haven't gotten it

vapid nymph
#

you ever have one of those days?

#

pip has left the building

azure beacon
vapid nymph
#

apparently so

#

@azure beacon 👋

vapid nymph
azure beacon
vapid nymph
#

ah

#

what do you do?

azure beacon
#

Hm?

vapid nymph
#

like why do those burn you out?

azure beacon
#

Because they constantly fight you. Limiting you to 720p or other crap because your computer or setup "issnt good enough" anymore. Or straight up denying me to run because of some crazy artificial reason.

#

And now i just give a middle finger to anything DRM/Detection tool crap.

vapid nymph
#

ah, makes sense

vapid nymph
azure beacon
vapid nymph
#

nothing

#

definitely nothing

azure beacon
#

Stop running so many virtual machines

#

Everything is pinned and that aint healthy

vapid nymph
#

this cpu is underpowered lol

#

its often at 70%+

azure beacon
#

More looking at the 100% pinned memory

#

If its not swapping its dying in silence.

vapid nymph
#

hey its only at 97% percent

vapid nymph
#

nvm its 101 now

azure beacon
#

Likely just killing stuff with oomd

vapid nymph
#

what does that mean?

azure beacon
#

Not sure about the windows side tho

#

out of memory killer

#

Basically the last resort that linux deploys to keep itself alive.

vapid nymph
#

ah

#

its almost done anyhow

vapid nymph
#

still 100% cpu

#

finally

#

done

green pecan
#

bestest way to halt a program

latent scaffold
#

:T

lunar nexus
#

its possible to know how many virtual machines are running in my machine?

#

I mean, it's technically possible if someone with expertise in that area

lunar nexus
#

where?

#

i tried somethings , but too ashamed to tell

latent scaffold
#

What kind of virtual machines?

lunar nexus
#

virtualbox I guess...

latent scaffold
#

um. yeah idk what to tell you lol

#

you should just be able to look at what you've got and say "I've got 3 virtual machines. 2 of which are running"

lunar nexus
#

anything you want to teach me

#

I will be happy like a horse

latent scaffold
#

with Virt-Manager I can just go here

lunar nexus
#

and soon contribute to the server

latent scaffold
#

and see that I have 1 VM that's not running

lunar nexus
#

if I have the software I can run vt on other machines

#

and monitor the vt running on my?

fallow warren
lunar nexus
#

because I'm protect by thousands of angels

vapid nymph
#

no idea

lunar nexus
#

oh,

#

my bad

vapid nymph
fallow warren
#

pithink oh

lunar nexus
#

wsl is for running kali ?

vapid nymph
#

wsl is windows subsystem [for] linux

#

so any linux os pretty much

#

the very cool thing there is i dont need to be in wsl to run a command

#

which is great lol

latent scaffold
#

we don't talk about Kali :[

lunar nexus
#

thats the first rule

#

almost the first rule

rough sapphire
#

ah, someone used their bot to spam ping and tell me to work on a project

#

it was very helpful

#

:)

rough sapphire
latent scaffold
#

wot

rough sapphire
#

@latent scaffold it comes from a legendary pink floyd album, dark side of the moon.

latent scaffold
#

I don't think that's where it originates from

rough sapphire
#

i do think. where do you think it comes from?

latent scaffold
#

Maybe it is but I always thought it was just... the dark side of the moon ¯_(ツ)_/¯

rough sapphire
#

yeah because it is pretty pretty pretty famous, you may have heard it from someone.

latent scaffold
#

The far side of the Moon is the lunar hemisphere that always faces away from Earth, opposite to the near side. Compared to the near side, the far side's terrain is rugged, with a multitude of impact craters and relatively few flat and dark lunar maria ("seas"). It has one of the largest craters in the Solar System, the South Pole–Aitken basin. T...

rough sapphire
#

thats far side of the moon lol

latent scaffold
#

The phrase "dark side of the Moon" does not refer to "dark" as in the absence of light, but rather "dark" as in unknown: until humans were able to send spacecraft around the Moon, this area had never been seen.

#

so... a phrase,

last mantle
#

ah yes, tidally locked

latent scaffold
#

also

The hemisphere is sometimes called the "dark side of the Moon", where "dark" means "unknown" instead of "lacking sunlight" – both sides of the Moon experience two weeks of sunlight while the opposite side experiences two weeks of night.

rough sapphire
#

and again, as much i've heard whoever i know uses this phrase unknowingly/accidently/undirectly get to know by that album

latent scaffold
#

I didn't know it was an album

#

I only think of the Transformers movie

rough sapphire
#

transformers movie?

latent scaffold
rough sapphire
#

side

#

also 1973.

uneven pine
#

It's existed for a long time, but the pink Floyd album is what's most notable use it it

#

At least in the common home

latent scaffold
#

I mean where do you think Pink Floyd got the name from lol

uneven pine
#

I can't think of a single person under 25 I know that would not immediate jump to Floyd when you said it

rough sapphire
#

and if your head explodes and thunder rising in, ill see you on the dark side of the moon

latent scaffold
#

I don't know anyone my age who even listens to Pink Floyd ¯_(ツ)_/¯

rough sapphire
#

Syd berret to be precise

uneven pine
uneven pine
#

Perhaps it's time we retired that

#

These kids are the future, after all.

latent scaffold
#

I don't understand why there's got to really be a differentiation of generation

uneven pine
#

Because that's how the human life cycle works.

rough sapphire
#

haha yeah im not complaining and i'm not even considering them to listen to it, but you know that we feel that way. which is natural.

latent scaffold
#

Sure, but like... I don't go around saying peoples' generations suck

rough sapphire
uneven pine
#

Yeah that's the crux though. There's no reason to say it in the first place

#

It's whinging at best and straight up provocative at worst

rough sapphire
#

oh well, cyph if you felt that it was insulting it was not, however its as natural as we sometimes complaint about peoples opinion or certain choices, in which we mean no harm.

limber mantle
harsh tundra
#

Birdie was sitting on my knee and sliding down... Good exfoliating XD

full needle
#

incoming infection in 5....4....

harsh tundra
#

It's just outer skin layer, so as I said - exfoliating. Birdo never pierced the skin, talons are for grabbing, not piercing

acoustic moss
#

knee reveal

full needle
#

🐦

harsh tundra
#

Even when annoyed, birdo only slightly packed on my face. Wanted to go outside and decided to tell me while cuddling XD

#

I like this old photo the most. Because it's one of few photos when I can show how cuddly birdo is, and the only photo where this cute censorship works XD

full needle
#

👍

dry flume
harsh tundra
full needle
#

whats a bird

harsh tundra
#

Right now I brought birdie's normal cage outside, it's heavier than the one we used before so I don't worry about cats and stuff, I can do stuff at home

solid pollen
#

T'is really cute

full needle
#

wow!

#

wait, do you just have a whole outdoor greenhouse!?

#

thats so cool!

chilly sinew
#

dis my petto :>

torn harbor
#

has anyone got a fix for disappearing of wifi in windows 10?? Been stucked for 4 straight hours

plucky python
drifting sage
torn harbor
eternal hawk
#

@sturdy robin ducky_vader

harsh tundra
#

I let birdie go out of the cage but didn't fly away. Interesting. Probably because that's other, adult wild blackbird has been harassing it. :o

#

Yesterday it was an in-air trying to scare my little one off, today my mother-in-law said that with the cage outside, that other bird tried to peck our lil one through the bars

lofty sky
#

please anybody that know how to get free rdp help me pls

harsh tundra
lofty sky
#

how

harsh tundra
#

What "how"? RDP is a protocol. Do you want a free server or free client?do you want for windows, mac, Linux?

#

Remote Desktop Protocol (RDP) is a proprietary protocol developed by Microsoft which provides a user with a graphical interface to connect to another computer over a network connection. The user employs RDP client software for this purpose, while the other computer must run RDP server software.
Clients exist for most versions of Microsoft Window...

#

There are examples of both commercial and free RDP clients and servers on Wikipedia

lofty sky
#

please anybody that know how to get free rdp or ubutu help me pls

harsh tundra
#

"rdp or ubutu" - what?

#

Ubuntu is free. And it's an operating system

#

So hardly comparable to RDP

harsh tundra
lofty sky
#

did u know how to get ubuntu

harsh tundra
lofty sky
#

can will tlk pri

#

pls

harsh tundra
#

No

#

You already sent me a bunch dms, before even asking

lofty sky
harsh tundra
vapid nymph
#

asdf

#

i have 10 more assignments

#

@harsh tundra do you know chemistry

#

no not a random ping I'm like 68% sure you do and we've talked before

full needle
#

not even just 1 dm they send 10 lol

#

pingpingpingpingpnpginig

harsh tundra
#

And bookmark command

full needle
#

yea losing modmail sucks

vapid nymph
#

i wish there was a Allow dms from bots/ Allow dms from Users settings

full needle
#

agreed

harsh tundra
#

I just tell people not to message people without asking them first and that server has help channels for a reason

#

Having dms disabled would mean those people will spam friend requests instead

full needle
#

true, but you can only get 1 of those not 10-100 all at once, and they dont ping ur phone 😛

rough sapphire
#

may be you help very good that they can't stopshipit

harsh tundra
#

I have one request pending from a person from here who never wrote any message.

full needle
#

im loving this shipit emoji man

#

i noticed it earlier today

gritty zinc
#

only one? pfft

full needle
rough sapphire
#

also this

full needle
#

pithink been around a lot but yea hes great

harsh tundra
#

Hm, it's been a day and that person still haven't written any message

full needle
#

mafia rat tho ;o

harsh tundra
#

I'm keeping the friend request as pending so that I can monitor when something changes, lol

vapid nymph
#

aight

#

was gonna do it

#

but I found one

harsh tundra
# vapid nymph i wish there was a Allow dms from bots/ Allow dms from Users settings

I'd prefer being able to set those to roles. I want to be able to get non-modmail dms from staff, I did get those in the past. I'd probably set it to voice verification at first because its mostly complete newbies who write dms instead of asking in pygen. They just find a person in pygen and message them privately and I still don't know why

vapid nymph
#

yeah

#

although, that would be a lot of extra work on discord's end

#

because now instead of checking just mutual servers and a toggle that is on in for one server of each user

#

hm..…

tardy rain
#

dawn where you at

inland wolf
#

with dusk

tardy rain
#

sad

#

so like the lazy NEET i am, i was wondering whether making mockups/landing pages for different concept services/products is worth anything

#

no functionality designs is what i mean

wraith hound
inland wolf
#

bruh

#

lol

tardy rain
#

i dont know who or where else to ask

inland wolf
#

demogorgon

latent scaffold
#

oh yes. I remember I watched the first season of Stranger Things

inland wolf
#

same

tardy rain
#

for _ in 0..10: fuck ranges, all my homies hate ranges

round rose
#

That's just syntactic sugar for a range

#

nice sugar, but still sugar

latent scaffold
#

isn't that technically a range?

tardy rain
#

Well yes but without the eyesores

latent scaffold
#

lol

acoustic moss
#

lol

latent scaffold
#

I think Rust has that form of ranges

acoustic moss
#

ye

latent scaffold
#

and so does bash

round rose
#

Several langs do

#

F# as well

latent scaffold
#

F# — the language I'll always wonder if I should try but will never try

low chasm
#

I hear rust

tardy rain
#

I like haskell's way

latent scaffold
#

uh oh

tardy rain
#

first, second .. last someone write a pep for this real quick

low chasm
#

yes 0..n is best

latent scaffold
#

pepe

tardy rain
#

🥴

low chasm
#

range is ugly

latent scaffold
#

I wish Python was more like Nim in some regards

#

I will always say how much I like that casing doesn't matter (except for the first char)

round rose
#

Not sure about other langs, but F# also incorporates step into that notation, which is nice

gritty zinc
#

admittedly, Rust's Range is, uhmm...

#

strange.

low chasm
#

ah yes, strage

graceful basin
#

I like 0 upto 10 step 2 as well

round rose
#
> [2..3..10];;
val it : int list = [2; 5; 8]```
acoustic moss
#

wait

gritty zinc
#

you can do ()..() in Rust

acoustic moss
#

is that an F# repl?

round rose
#

start-step-stop

#

Yeh

low chasm
#

f# seems cool

acoustic moss
#

no idea those exist

round rose
#

dotnet fsi for an interactive repl

gritty zinc
#

and vec![1, 2, 3]..=vec![10, 11, 12]...

low chasm
#

hmm

#

best thing about rust is that its written in rust

latent scaffold
#

yes

low chasm
#

rewrite python in rust when

round rose
#

There's an ongoing project

low chasm
#

rustpython, yeah

#

but I mean full on replacing cpython

latent scaffold
#

python.rs \😩