#ot1-perplexing-regexing
1 messages · Page 569 of 1
Yes java is statically typed
admittedly, forcing you to declare the type of each variable is just an obnoxious Java thing
Yeah
it's totally possible to infer types in most cases, and Rust does
Ik can’t it figure out what type it is
Also why the semicolons those are unnecessary
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
Rust does, it can infer the type in most cases
to define a variable, yeah
Isn’t there also like def
usize is "unsigned integer of size depending on the system" - 32bit or 64bit
Would a beginner be able to learn Rust btw?
(essentially, that's basically what the bitness of a system is - how big a pointer is on that system)
What does main mean
main is ran everytime the file runs
Oh no
I mean, sure, people learn C as first language after all
the main function is the function called when you run the file
it's the "entry point" to the file
All that formatting and whatnot is what made me stay away from C#
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
yeah
@rain rampart Well that's pretty much every other language
Really?
Most languages use curly braces
So Python is the only one that’s this easy?
Well, indentation is arguably harder
tbh it's not truly easier at all, just more readable
^
In other Langs or Python
doesn't the ide do it automatically?
Oh that’s good to know, so Rust won’t be unbelievably harder right?
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.
either way, the syntax will be one of your least problems when learning Rust
What are you dming me? 👀
lol
like, it's not hard to learn that you need ;s on end of lines or curly braces
sure
Then what is the main problem I will face when learning Rust?
learning how stuff works on the low level
Yeah learning the syntax isn't hard, it's the new concepts
like, you have never ever encountered in Python most stuff you'll be dealing with
dms disabled 👀
sent a friend request
see, say, my comments about arrays and vectors earlier
should be on
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
that's true
But there's still some new concepts you'll have to learn here
sent
You'll go into this with the mindset of a programmer, and some of the skills you'll use in rust
have fun turning that ico into something else
you do know, say, the concepts of variables, functions, some basic data structures and algorithms
but now you'll have to learn the basics of low-level programming, too
Oh
rust requires low-level?
So it’s like Python but new things are added?
It's a lower level language
what, it doesn't manage memory for you?
i feel like learn c/c++ first then learn rust
I mean, in some way. Like, you should probably know how arrays work so that you get what a Vec<T> is
@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
I was gonna learn C# but I don’t wanna bother with static void or whatever that is
welp time to cause my print server to freeze lol
maybe C, but C++? don't really see a reason for that, it takes very different approaches to Rust while not being any easier
Idk what that means lol
C# and C++ are very far from each other. C++ is like Rust, C# is like Java.
(C++ and C are close, though - C++ even started as a strict superset of C)
helps with knowing the basic low level stuff
Oh okay
i dunno how i would have learnt rust if i didn't know C i learnt earlier
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
Really, I should learn C?
Nice explanation
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
Yeah I was planning on just starting Rust
i dunno, but in my opinion it surely helps
Rust and C have a lot of similar concepts, so learning one would make learning the other very easy
Is the rust book the equivalent to the Python Docs?
Not quite
https://doc.rust-lang.org/book/ch04-01-what-is-ownership.html#the-stack-and-the-heap
looks like it's chapter 4 where low-level explanations start, with the Stack and Heap box
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.
and then Memory and Allocation
Oh okay, I guess that makes sense
What’s that even mean
literally what it says lol
r u using a school computer or something
can we create a bot which can post data from my youtube channel to directly in my server
Yeah
yes
mac?
also when i upload a new video it will upload it to channel
The youtube API would for sure be fine for that
yeah easily possible
mean discord api + yt api is what i have to consider
.status cat 403
how do you actually get 100
jesus
can i jump to this project i have learnt basics of python
I don't even know
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
100 is just like "yep we're all good" isn't it?
yeah
OH GOD THIS IS CURSED
.status cat 405
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
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
ah
cursed
No, I believe that is the 200
Yep
I think
Haha can’t tell
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
200 for requests means that it successfully got the stuff from the API
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
Yeah exactly
anything other than 200 is some kind of abnormal
i'm actually surprised with the stuff on #846514617261621292
anything other than 2XX*
now that I think of it
I would go through the source for #846514617261621292 and change most of the status codes lol
ResponseCode enum when
ooh
5 initial variants, Code1xx to Code5xx
then every single variant 🥴
but a much better processor
that sounds like a bad idea, of course
whats an enum?
it's concerning when you start having more than a hundred enum variants
you might have heard of them as tagged or discriminated unions
mhm
like, a type that's one of several variant types, determined by a tag that goes with the actual value
here's an example comparing Rust enums with C++
https://smallcultfollowing.com/babysteps/blog/2015/05/05/where-rusts-enum-shines/
One priority for Rust after 1.0 is going to be incorporating some kind of support for “efficient inheritance” or “virtual structs”. In order to motivate and ...
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
jesus
should I being doing something special when installing this to not pollute my namespace?!
Well you're really only installing Wrangler
All other Rust dependencies are linked statically afaik
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
nah its a raspberry pi LOL
only on 99
why 4 different console versions tho
dependencies for different stuff
Something something subcrates
hmm
if you have two crates in your deps depending on the same version of a crate
does it only get included once?
It'd be weird if it doesn't
so unlike python you can have dep hell where everything can coexist?
lol one of the devices took 5 minutes
very slow rn
cargo should be building in parallel
i think it is...
So uh
I broke something
Sorry for the quality
But that's 20 task manager windows
All frozen
prob a potato computer or sth
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
what non-compiled language will allow you to shoot yourself in the foot with such performance? 😉
why
uh a week i think
not
ok
bruh
yes
ok
OMFG
whot
no

cpp is more lower level imo
Screenshot exists
yeah uh my computer is frozen rn
windows moment
win + shift + s 
like its not frozen just really show
+:+1:
did you install a virus or smth
Same
yeah I just installed rust
heh
Anyone know of good resources to learn x86-64 assembly?
Ooh I can drag them again
Time to create a fucking nice screenshot
Oh God that was satisfying
Then which girl ?
closing a program and watching it go off of EVERY task manager
Holy shit that was SATISFYING
assembly is just a few commands you should be able to find some article on google ig
I can't even fill 50% of my ram 
while not gaming
Less than 8 gigs usage geng
how to tell someone doesn't play modded minecraft
it's still installing wrangler

Oh yeah
So even though my computer is super slow to any input
IT'S PLAYING MUSIC JUST FINE SKSKS
modded mc = 10 gig usgage lmao
did you understand about computers
Pi with 16gb 
cpu and stuff
ikr
my samsung book is very slow
dang
and my cousin wanna buy me a better one
nice
what he should buy
no sadly
USD?
Yeah
8
whot
@gritty zinc https://i.imgur.com/VKUOb3K.png
8k USD or 800 USD
You have just
8000
Speed ran
o
8k
Task manager shortcut key speed run
yeah
1k to 3k should be enough
i just wanted features that makes confortable
laptop or pc tower
yes
like screen with fancy stuff and whatever
you can get a fucking car for $8k lol

it can buy a c 180
this is
Morning Ankit h
the effect from pushing window in windows 96
morning.
@vapid nymph wait how did u manage to open multiple instances
Ikr
Exactly
lol
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
I Can't lol
does it only work if u make it show less
Pls ping me here
@vapid nymph
index = int(msg.split("$del",1)[1])
what does that ,1 and [1] mean
idk
so here it will split a maximum of once
and then [1] will get the second element of the split list
this is only the second tiime Ibut only 100% cpu and 54% memory from what i cansee
so can i put [index] instead ?
yes
but there will only be a max of 2 elements in that list
because u only let it split once
oh okay but does that [1] itself means index
np
uh
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
Recharging, and what mess have you created lol
just 50+ task managers
nothing new
kil all tasks would be interesting
taskkill /f /im taskmgr.exe
how much would it break windows
windows is already broken
i do have a script i made that closes all of certain exes when i press it lmao
no
It’s usually round, can be multipurpose, and usually requires you hold to kill
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
lol
shitting and shutting down the computer would probably bring the same end result
well
depends on the intensity of said shitting
what... happened here
@gritty zinc can u use ffmpeg to reduce the file size of a video?
well, yes
reencode it with a good codec like h265, and of course the lower quality the lower size
is there a lossless way of compressing it?
lemme just do --help
or be a man and use man
with pain and suffering until you learn, but it's roughly ffmpeg -i input_file.mp4 -c:v libx265 -crf <crf> output.mp4
everyone forgets about man 
c:v
where <crf> is 28 by default - lower is higher quality
i see
it's possible by passing crf and qp of 0 I think
not sure how common losslessly compressed video is tbh
like, the default is 28
hmm
lemme try this
roughly, c:v means applying a certain option to only the video stream
c:a is only to audio
not sure it stands for codec
yeah
i see
hm
@gritty zinc congrats on mod
ayo im encoding a video!!
@quick ledge congrats on helper!


@polar knoll congrats on bot!
omg ty i didnt notice!!!
Lotsa promotions, wow
@vapid nymph congrats on Announcements!!
Ah thanks
wait that was a joke? i spent about a whole minute checking if my internet was wrong
hmm but dsicord doesnt play hevc
Tis nothing, really
yes we're joking lol
regardless of extension?
it's fine, yeah
if that doesn't play, guess discord really does have a problem with the codec
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
there's ffprobe
but mostly, I use this amazing program:
https://mediaarea.net/MediaInfo
MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files
i see
it's integrated into the context menu for me, so I'm always two clicks away from this
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
alright
im doing this ffmpegging on my phone
its slightly slow
but thats alright
ffmpegging, noun
it is not fast
yes
maybe i should try -preset fast
its getting hot 😳
I just read that preset fast is ~10% faster
im going to get veryfast
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
how much did it compress
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
anything
lol
I wasn't joking about using ffmpeg to reencode photos sometimes
now here you'll see some massive compression
gifs don't use any video encoding, they store every frame
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
mpv ❤️
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
does somebody know a good USB microphone that like... hears me in my whole room?

I mean like... super sensitive
hmm
well...
I didn't mean that sensitive
but like a microphone used in theaters
ye
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
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? 
fisher maybe
IRL acquaintance
hm
lmao
lol
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
boulder guy?
im clueless
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
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
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?
likely
@rough sapphire 🆕 pfp mehh.
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
as long as birdy doesnt fly away
broom broom
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"
Bamboozled
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
Hm, maybe share option will work?
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)
aww she likes to take a bath 
Wanted to take a photo, birdie wanted to be higher XD
Dammit, birdie keeps clicking top of the screen now
Find the birdie
true
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...
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
i dont know about dogs but my budgie always smelt weirdly weird and since it felt a little cold with the water it always stuck around the shoulder until it dries, so you had to deal with the smell
I got birdie home because we were on the sun and felt hot, I wanted birdie to drink a bit but it decided to take a bath as well
So this time for drying, it wasn't as cuddly as last time
whenever i tried to bath my budgie myself it wotn get in
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
I don't remember which one my partner had
🤔
"super fragile" lol
hm i mean
I just asked my partner's mum, the parrot they had the longest was actually a cockatiel
ye
And had budgies before that and that's how their love for parrots started ^^
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

Because this birdie was pecking my lips when on my shoulder and hungry, lol XD
they like head pats too
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
BIRDIE RETURNED
lesgo
You know you can't have birdie without die
I've discovered this by misreading
and I think I need new glasses
bruh
Yes. Insects must die so that birdie can live
🦗
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
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
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
I dunno, it just popped up yesterday or the day before
normal discord?
I'm on stable, yeah
o
yes
You just never installed it >:D
so what part of software are you burnt out about?
DRM/Detection ones.
Hm?
like why do those burn you out?
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.
ah, makes sense
What are you doing
hey its only at 97% percent
Likely just killing stuff with oomd
what does that mean?
Not sure about the windows side tho
out of memory killer
Basically the last resort that linux deploys to keep itself alive.
its 75% now ha
still 100% cpu
finally
done
bestest way to halt a program
:T
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
um... count?
What kind of virtual machines?
virtualbox I guess...
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"
with Virt-Manager I can just go here
and soon contribute to the server
and see that I have 1 VM that's not running
if I have the software I can run vt on other machines
and monitor the vt running on my?
How isn't your PC dead yet??
because I'm protect by thousands of angels
no idea
i just learned this
oh
wsl is for running kali ?
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
ah, someone used their bot to spam ping and tell me to work on a project
it was very helpful
:)
#ot1-perplexing-regexing of moon! yes pink floyd name!! ggs!
wot
@latent scaffold it comes from a legendary pink floyd album, dark side of the moon.
I don't think that's where it originates from
i do think. where do you think it comes from?
Maybe it is but I always thought it was just... the dark side of the moon ¯_(ツ)_/¯
yeah because it is pretty pretty pretty famous, you may have heard it from someone.
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...
thats far side of the moon lol
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,
ah yes, tidally locked
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.
my google result did not even show that at first page.
and again, as much i've heard whoever i know uses this phrase unknowingly/accidently/undirectly get to know by that album
transformers movie?
Transformers: Dark of the Moon is a 2011 American science fiction action film directed by Michael Bay, and it is based on the Transformers toy line. It is the third installment in the live-action Transformers film series, and is the sequel to Revenge of the Fallen (2009). It is also the first film in the series that was not co-produced by DreamW...
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
I mean where do you think Pink Floyd got the name from lol
I can't think of a single person under 25 I know that would not immediate jump to Floyd when you said it
they made songs, in one of the songs this phrase was used, they intially wanted to name it as eclipse. but then they switched to dark side of the moon.
and if your head explodes and thunder rising in, ill see you on the dark side of the moon
I don't know anyone my age who even listens to Pink Floyd ¯_(ツ)_/¯
yeah your age sux imo
also yeah, the origin of the name could be one of the band members who had mental issues, thats why dark side of the moon.
Syd berret to be precise
Every generation says this about every other generation...
indeed.
I don't understand why there's got to really be a differentiation of generation
Because that's how the human life cycle works.
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.
Sure, but like... I don't go around saying peoples' generations suck
im pretty sure you won't get insulted at that lil statement. You know how much i dont like fights and all.
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
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.
Prince of Persia: I Remain
By Alanis Morissette
Soundtrack #19
Birdie was sitting on my knee and sliding down... Good exfoliating XD
incoming infection in 5....4....
It's just outer skin layer, so as I said - exfoliating. Birdo never pierced the skin, talons are for grabbing, not piercing
knee reveal
until the birb gets annoyed at you ;o
🐦
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
👍
whats that thing on your shoulder
Birdo
whats a bird
#ot1-perplexing-regexing message I wrote this history yesterday, for those who missed my regular updates ^^
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
T'is really cute
has anyone got a fix for disappearing of wifi in windows 10?? Been stucked for 4 straight hours
If after an update, may want to reinstall your wifi drivers
I hate insects but looking like that they look kinda cute
There's an update im working on, lets see if that helps
so cute!!!
awwww so cute
@sturdy robin 
Veggie tent. It's literally a semi-transparent foil tent.
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
please anybody that know how to get free rdp help me pls
But RDP itself is a protocol so it's free?
how
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
please anybody that know how to get free rdp or ubutu help me pls
"rdp or ubutu" - what?
Ubuntu is free. And it's an operating system
So hardly comparable to RDP
What does "rdp" mean in your message? Because I think there was some miscommunication. Putting it next to ubutu which I hope means Ubuntu made me realise that
did u know how to get ubuntu
Ubuntu is the modern, open source operating system on Linux for the enterprise server, desktop, cloud, and IoT.
https://ubuntu.com/tutorials/create-a-usb-stick-on-ubuntu#overview use this tutorial to make USB stick with Ubuntu
aw birb
that did not mean
I don't talk in private when something is a problem better dealt where more people can help
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
just disable server dms, otherwise people do that all the time 😦
not even just 1 dm they send 10 lol
pingpingpingpingpnpginig
I need server dms for ModMail and people I actually like
And bookmark command
yea losing modmail sucks
i wish there was a Allow dms from bots/ Allow dms from Users settings
agreed
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
true, but you can only get 1 of those not 10-100 all at once, and they dont ping ur phone 😛
may be you help very good that they can't stop
I have one request pending from a person from here who never wrote any message.
only one? pfft

pithink been around a lot but yea hes great
Hm, it's been a day and that person still haven't written any message
I'm keeping the friend request as pending so that I can monitor when something changes, lol
your account is your discord account, so sign in and then you can upvote it
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
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..…
dawn where you at
with dusk
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
That was the name of my Discord bot before I killed it
i dont know who or where else to ask
demogorgon
oh yes. I remember I watched the first season of Stranger Things
same
for _ in 0..10: fuck ranges, all my homies hate ranges
isn't that technically a range?
Well yes but without the eyesores
lol
lol
I think Rust has that form of ranges
ye
and so does bash
F# — the language I'll always wonder if I should try but will never try
I hear rust
I like haskell's way
uh oh
first, second .. last someone write a pep for this real quick
yes 0..n is best
pepe
🥴
range is ugly
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)
Not sure about other langs, but F# also incorporates step into that notation, which is nice
ah yes, strage
I like 0 upto 10 step 2 as well
> [2..3..10];;
val it : int list = [2; 5; 8]```
wait
you can do ()..() in Rust
is that an F# repl?
f# seems cool
no idea those exist
dotnet fsi for an interactive repl
and vec![1, 2, 3]..=vec![10, 11, 12]...
yes
There's an ongoing project
python.rs \😩








