#voice-chat-text-0
1 messages ยท Page 66 of 1
@mild quartz Too damn poor for that
I don't think it can perform yet
Yeah, I'll have to agree
I mean the big game changer was, to me, Rosetta
Being able to carry over all those programs
@mild quartz French
Rust ++
What's wrong with it?
Why?
GRPC++
Or to grounding?
Hit it
Interesting
Dude
Is this currently on?
You are going to fuck up the board
WHY would you have it taken out like that when it's on
You know what makes me angry?
@zenith radish That's coming through
Fucking Type-C that's are only charging
I HATE those
Best compared to...
Or have to pay for one
Just write your own
Eh
I didn't care much for it
Yeah, KDE is pretty buggy
XFCE
@zenith radish Can we not here
More just not a great topic for here
@zenith radish That cat deals with so much bullshit
Hรคagen-Dazs values?
@mild quartz MLE being Major League Engineer?
(wanting to big you up)
Are we talking deeper than generating a model?
@vernal bridge Later
Is it possible to create a model without this kind of knowledge
Or is that what you were discussing and there's no way in hell I could get it without the years of study
@mild quartz
oh hi
Sorry, create is the wrong word
hmm
Train
if you knew exactly what model you wanted to make you could follow some guidance and get there
but not really get how the model works etc
Sure sure
but you could go through the machinery of training it etc
with lots of help and crying
Like.... Antman or something?
Oh, thought you were going to say I'd have to do something different than normal
Well it is now
@zenith radish Nah. If it interests you, then it's important
curses
โจJourneyโจ
@bot.command()
async def whatismyprefix(ctx):
server_doc = collection1.find_one({"server_id": ctx.guild.id})
prefix = server_doc["Prefix"]
await ctx.send(f"The prefix for this server is {prefix}")
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
From flow let flow flow >.<
I absolutely agree with what you said though
From form, let function flow. From function, let form flow.
If something works well, it should be beautiful because of that. If something is beautiful, it should work well because of that.
@simple anvil ๐
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
im confused
tbh
Yes i guess
i need to be here 3 days lol
๐ฅน
i need help now
my system is windows 10
xdd hahaha
listen
i have a problem with a code
i make a discord bot
idk where it is
i checked everyhing
also gived him admin you know
etc...
idk where is the problem in the code
cuz code dosen't work xdf
i tried xd
hmmmmmmmmmm
some weirld sruff
wierd
hmmmmmmm
yea let me send you
Btw it's rly long message
is that ok?
yeah
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Hey @simple anvil!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
so put it in a pastebin
yea but i need to find my info wait
ok now how to send it
i paste it in hastbin
but what to press so i send it?
send the url
this gives full info on how to use a pastebin
error is just to long , i can't find the tokens ๐ฅน
hii there
...
what's up
OOO
found it?
i think i fixed big part of it
how's it going?
Traceback (most recent call last):
File "main.py", line 46, in <module>
client.run("discord token")
File "/nix/store/hd4cc9rh83j291r5539hkf6qd8lgiikb-python3-3.10.8/lib/python3.10/asyncio/runners.py" , line 44, in run
return loop.run_until_complete(main)
This is the problem
my boss wants to make report on our season work an present it to a crowd
k
i have to make it๐
we don't have that much activity
like
we have near 0 activity
o
@whole bear
you want sql?
i don't think copy right is much of a ligal problem in his country
it's not a big deal in my country
thank you
idk lol
oic
@olive delta ๐
hi
can someone help me with my code?
im startin to learn python
and cant find a solution
tried so many times :(
@somber heath
i fixed it
oops
im a newbie
tic tac toe game
tryin to learn python
still a kid
so i wana try freelancing
hopefully i can learn it
what?
thank u for the advice
soo much moti-vation here
i want to ask what kind of things i can do with python if i only learn python
@somber heath Hiya ๐
If you have a look through the Topical Help/Help category, you'll see a list of the sorts of things that Python can do.
oki thank u
It would be non-exhaustive. There'd be other things that don't fit into that category.
cya soon @somber heath hopefully
@minor star ๐
Hi everyone I have question I write API but I don't know how to deploy IIS anyone can help me ?
This sounds like #web-development territory.
Perhaps also poke around #networks.
Title: In Between 2016 103m Movie
Title: In Darkness 2018 100m Movie
Title: In Bruges 2008 108m Movie
Title: In Time 2011 109m Movie
Title: Breaking In 2018 88m Movie
Title: All In SS EPS TV
Title: Walled In 2009 92m Movie
Title: In Tranzit 2007 113m Movie
Title: In Dreams 1999 100m Movie
Title: Jump In! 2007 85m Movie
Title: In Secret 2013 101m Movie
Title: In Justice SS EPS TV
Title: Breaking In SS 2 EPS 13 TV
Title: In Treatment SS 4 EPS 24 TV
Title: In Deep SS EPS TV
Title: In Contempt SS 1 EPS 10 TV
Title: In Fabric 2019 118m Movie
Title: In Hand SS EPS TV
Title: In Darkness 2011 145m Movie
Title: Outside In 2018 109m Movie
Title: In Reality 2018 95m Movie
@shadow charm ๐
hi I am silenced
use std::env;
fn parse_title(title: &str) -> (String, &str) {
let words: Vec<&str> = title.split_whitespace().collect();
let last_word = words[words.len() - 1];
match last_word {
"Movie" => (words[0..words.len() - 2].join(" "), "Movie"),
"TV" => {
let movie_title = words[0..words.len() - 2].join(" ");
if movie_title.contains("SS") && movie_title.contains("EPS") {
let split: Vec<&str> = movie_title.split("SS").collect();
(split[0].trim().to_string(), "TV")
} else {
(movie_title, "TV")
}
}
_ => (title.to_string(), "Unknown"),
}
}
fn main() {
let args: Vec<String> = env::args().collect();
if args.len() != 2 {
println!("Usage: cargo run <title>");
return;
}
let title = &args[1];
let (parsed_title, media_type) = parse_title(title);
println!("Title: {}", parsed_title);
println!("Media Type: {}", media_type);
}
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i need help
What's up?
I am developing a project with flask.
but i have a problem
and i have bad english so i'm so sorry
@vagrant pendant ๐
I can't show two different routes on the same page where I point with the arrow sign
Not having worked with Flask, myself, you may be better served by looking in the #web-development channel or creating a help post. #โ๏ฝhow-to-get-help
ohh thank you
@whole bear ๐
@somber heath hello
@robust lichen You mean they encode the arguments to the web request in base64?
[src/main.rs:15] node.text() = "Puss Gets the Boot\n
@zenith radish Maybe make a nice soup or stew.
@nimble tendon ๐
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
for i in os.listdir():
os.rename (i, str(count)+'.+i.split(' . ')[-1])
count+=1```
can someone explain me this code
how does it rename the file from "xyz" to "1"
what is os.listdir()?
well you are using a rename function
yes but how does the 3rd line work
ok
what is e.g stand for?
E.g. stands for exempli gratia and means โfor example.โ
i presume exempli gratia is ๐ฎ๐น
@magic rose For your edification. https://docs.python.org/3/library/pathlib.html
count = 0
for file_name in os.listdir():
file_extension = file_name.split(' . ')[-1]
os.rename(file_name, f'{count}.{file_extension}')
count += 1```Do you find this rendering a bit easier to read? I think it takes every file named like `filename . ext` and renames it to `1.ext` with the number depending on how many files are in the directory, total, and which file you're looking at at each iteration.
But it's hard to tell, because I don't believe the code you provided is syntactically correct.
i'm hearing sounds i never thought i'd hear in my life
hey ppl
things to use for that, I guess: enumerate, pathlib.Path.rename, pathlib.Path.with_stem, pathlib.Path.glob
@vocal abyss Your audio before was fine, it's just that it sounded like there was people in the background clattering around./
Then it sounded like you were a budget robot, now it's fine again.
you should hear my voice ๐
A privilege to be eagerly anticipated.
idk what extensions to limit to, so .txt and .json; if there's only one, then it can be checked in .glob() instead
from pathlib import Path
cwd: Path = Path.cwd() # Pylance dumb
for count, path in list(enumerate(filter(
lambda p: p.suffix in {'.txt', '.json'} and p.is_file(),
cwd.glob('*')
))):
path.rename(path.with_stem(f'{count}'))
speaking of todo lists, I remembered this exists
https://github.com/coderofsalvation/kanban.bash
if the "tasks" are stored in some sort of database, they probably already have an id
if they're stored in a list, they can probably be just removed (filtered out)
(if you don't care too much about optimisation, you can mark as to-delete and then replace the list with a filtered one)
Jewish military history focuses on the military aspect of history of the Jewish people from ancient times until the modern age.
@candid pike ๐
Yo
dude's being a chad by not following the team
ayy
๐ซก
SPSS
date of release: 1968
I have no clue how to work with a dictionary
for example
dict([('sape', 4139), ('guido', 4127), ('jack', 4098)])
I have that
okay
okay sorry
@zenith radish Yo
Unless you're also afk
Dang
Ah yes the Will Jung Canary
Replace a vowel and a consonant
You'll get there
tutorial still uses .format instead of f-strings
https://docs.python.org/3/tutorial/datastructures.html#looping-techniques
Eh
I mean it's not bad practice
Although I think slightly less performant now?
.format() still has its place in the world
Right
But I am le tired
templates defined elsewhere and different ways to refer to what was passed to .format()
I feel like I should but I don't
Yep yep, AF
OHHHHHH
Yes
Yep I remember now
That was on the Gary's Mod Idiot Box, right?
Vintage
Homey GMod
Yo
Wait
Is it Homie?
Yeah that looks better
My non-streetness is showing I think
Pants down to your knees
While wearing additional shorts
What's hip? Well not where there pants are
Just want to see them try to run
Look like a toddler at full speed
Yarp
Sounds like a Tuesday
There need to be like workboot heelies
"Hey Jim, come help me with this beam." -whheeeeeeeee-
Good movie
@regal arch ๐
Equilibrium
Cool fight scenes
Star Wars
@zenith radish I hear you
I can sense your presence
@gentle flint Also hiiiiii
christian bale movie?
Yeah yeah
have heard te name i think but haven't watched
If nothing else the fight scenes are worth looking up on youtube
@rugged root any idea why my pc won't boot past POST unless I unplug and replug the Windows disk SATA cable before booting
When voicefullock??

Hmm
Is it giving a beep code?
The first thing that comes to mind is maybe a board charge thing
Do you have another STATA cable or HDD to test?
when it won't boot past post, it doesn't show the top line on POST
when it will, it does show the top line
(what is that line?)
I'll reboot and take a photo
@quartz cairn ๐
helo
welcome to the cult meeting
how can i get to open the microphone
Well that was a hell of a typo
_I saw that
_
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
my profile picture tho , midjourney bot generated
They're next to each other on the keyboard
.uwuwize
voice vewification
canโt tawk in voice c-chat? check o-out #voice-verification t-to get access. the c-cwitewia fow vewifying awe specified thewe.
thenks
Just cracked me up
u is next to i๐
What in the unholy cat
@raw flame ๐
is uwuwize idempotent?
no
Midjourney does lovely stuff.
YEs1
it says i need 50+ messages
can we chattering here
elo
where did you learn rust?
That is an option.
noice
Who told you I know Rust?
(i.e. is the composition of uwuwize and uwuwize equivalent to uwuwize?)
do u know the <n word> song
you
That's enough of that
hm

i use ubuntu btw
it gud
not bad
im kinda begginer in linux
where can i gain experience ??
maybe clean the screen
if you be nice
they'll be nice
hm
Just Google
I don't actually know it that well yet, I'm just learning it as I go in my projects
fr ?
what's your take on it?
its a good song
lemme dm
No.
It's pretty good
cargo is amazing
u think it has a future?
It already has one
is f word allowed in this server
I have two NICs on the server
ubuntu refuses to boot until both are connected to the internet
idk whether it makes it a "good" OS or a "bad" one
future?
what the fuck
why the fuck would it be??
the f word...
demn
noice
motherfucker
n word allowed ??
why the insist in being rude?
I already said that was enough of that
The fuck around and find out rule applies here.
oke
what can i say , im a 13y/o kid
:)
you can be nice?
Do better.
Be better.
For yourself, if not others.
bbye guys~
hm
oo that's cold
should that be here?
yes :)
No
google translate?
yes
use it
last mute I remember here was for similar reasons
what ?
@zenith radish don't hate on my one thing

Don't even know who I am...
All the shit I did for you and you didn't even check.....

oh, muting works too
EY
hey @somber heath I still don't understand the dictionary lmao
could you help me out please haha
I'm tired. Maybe watch some tutorial videos?
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
ey sorry
mic problem for some reason
Another time, sure, I'm maybe one sixth asleep.
ah aight
So you're 5/6ths awake!
Get to it!!
I won't have anymore time but thank you for your conscern and information already given
for them
@lavish rover don't use the name of Dog in vain
sentdex?
YouTubers.
ah ai
woof
ty
woostafa
good attempt... I guess
@feral umbra ๐
AWS is better tbh
Okay but like
The naming is stupid
That's my only argument honestly
@whole bear Suuuuuuuuuuup
Understandable
YAWW
I'll tell you wessap
I'm migrating some azure functions that were written ages ago
And it contains code that I don't know wtf it does
@zenith radish Well you have to get the container and make sure you have the right lid for it...
ML stuff always has some magic to it
but client code never includes those in the HTTP requests
xD
I have no clue what happened in the head of the person who wrote it
it's deployed
Did someone say magic?
Have fun
I won't
just turn off your camera and start doing desk pushups, that's what I do
(especially during the 30 minute morning scrum)
Did they change the Docker logo on their site? Or did something on my machine do something weird
Okay, was making sure I was reading stuff from the right site
I wouldn't know, 99% of the time I'm using Docker in the terminal on our slave jenkins worker machines.
What's the question?
+WASM wasn't there before
Yeah that seems to be a new thing
seems to be a case of posted in help, waited exactly three seconds, and then immediately went to the chat with the most users.
Happens
Consensus is it's been that since 2017
Right right
I'd argue that's on par with sliding into my Teams DMs with the message "hello", waiting thirty seconds, and then escalating to my manager complaining that I didn't help them with their issue.
It was just the +WASM I hadn't seen prior
Chastising isn't the way to go about educating people not to do it
I've found the Do Not Disturb button works wonders.
I was going to say...
This is why I'll never be a Helper, I do not have the patience for the role.
@terse needle Sup
ello
(I want to help, but I know I am not a good fit.)
I mean you can help, you know you're stuff
It's just a matter of approaching things in a more polite way
i can get some help its a basic management system and i need help it
how do i convert the point of a landmark in my index finger to coordinates
to use them in pynput
basically
on basic pandas python
I see

i am having problems in a search column !!!
You'll probably have an easier time getting help using the help system. See #โ๏ฝhow-to-get-help for more details on that
I'm never a fan of Chairman Emertus
It tends to be more off-topic or general chat in here
@terse needle Do not do that
Go to a proper shop
Good
Otherwise infection city
@zenith radish Do you have the list of books that was recommended to you yesterday? I tried to message you and the guy that recommended them to you but discord blocked me from doing that.
Bullshit
@mild quartz
@terse needle That's what I have
I've got a basic hoop in my left ear
Why?
Don't know, I just like it
Wait -- what is this exactly?
Earrings?
You should fix that
I have very tiny ears
Yep
Little baby ears
Also, I've never taken this out since I got it
Surgical steel so I don't really need to
And it's a captured ball so it's not going anywhere
I've had it for a few years now
I just like it
It was kind of a 90's style thing that I always wanted
And it's not overly obtrusive or in your face. It's a thing for me
Wait
Did you mention Power Puff Girls?
Right
Jesus christ
@stuck furnace Sup
Sounds like a plan
That sucks lol
Better behaved than Jake for sure
He comes on once in a blue moon
Doesn't say a lot, though
Just imagining what parents evening at university would be like 
If you get a nose ring, make sure you have a horseshoe style ring on hand
You can turn them up into the nose so you can't really tell it's there
Makes it easy to hide in case of needing to have it out but don't want to lose the hole
The one that's like
Half or 3/4 of a ring
And then there were two
Founder more acknowledges the hard work they've put in
Years of service
God it really is years at this point
Surreal to think about
I'll have been here 5 years in May
Then who's the BDFL for this server?
It's me obviously
I really want to make a version of this gif, where the elves = directors, dwarfs = admins, humans = moderators, sauron = modmail
But alas, I don't have any editing skills ;-;
one server to rule them all
@rapid crown ๐
one server to find them
one server to bring them all
and in the darkness bind them
Kinky
if i knew mordor language i'd write it in the dark tongue
Do you think Vestergurkan would be up for this? ๐
Probs
Giraffes have a dark tongue
Does that count?
I can't speak in the office I'm in
Pretty much always, and if I was in my proper office I could speak
But due to crappy circumstances, I'm not in a spot where talking would be easy
@icy axle ๐ ๐
Trying to find some files for one of our folks here
Well that was a thing
I choose to see that as dueling finger guns
What're you up to today Hem?
ic
Trying to re-add some report templates into Accounting CS
It's tedious as hell, because of course, I have no way of doing them in bulk
And there's like... 60 I think?
And I have to do them one at a time
And it's an absolute bear
Why not?
Because the program doesn't have a way to do that
Can't whip something up with Python?
Where there's a will there's a way
Might end up taking just as long, but will probably be more fun ๐
Potentially. Problem is that it's through a connection via Citrix
So that presents some additional challenges
And I'm also bound to what Accounting CS can do
Ah right
My hands are usually tied by the software I have to interact with
Although I wonder....
Nope, can't just drop them into a certain folder. It's all stored in the database.
Well shit
My boss uses a GUI automater
Like --
click 45,85
sleep 2
click 84,57
He keeps telling me how amazing it is, and how I "need" to use it.
Even paid for a licensed tier for me.
Then he got mad when I used Python.
Because he "already paid for [thing]"
I didn't ask for that
I said I didn't want it
I actually -- we had two different lists, I took the more complicated one
I was done hours before he was
Because I doing a requests.delete a couple times a second, and he had like 7 seconds of sleep per iteration to account for all the menu loading time
Edit the DB
I could potentially do something like that - hey @sharp urchin - with AutoHotkey, but no way to easily do it
multitasking ryt there
!!
But the point is -- when Python fails me, I go "hey do you think your clicker could...."
Hour later it's done
hello sir
I try to type the way I speak
ohh sum new tdy?
ADHD mid sentence included
hmm
I'm in this picture and I don't like it.
brb
@stuck furnace What're you working on?
Errrm, mostly procrastinating.
Preach it
๐
brb
changes a python file
5 minutes recompile
turns out the build system likes to re-build half the cpp codebase when I touch an unrelated python file
Fun
Oh weird. What is the build system?
I'm cold
calientate
Anyway to checkout the branch or something before modifying the main code? Prevent the big ass rebuild?
I'm not spicy enough
Why? Make targets?
No they would see....
What did you do??
With C you compile individual files into a new format - like, .c -> .o
So, in your Makefile, you add a rule like *.o: *.c, and it will only care about trying to create a file.o file if the matching file.c has changed
another rust question?
I see Griff ๐
So with a too wide rule, you could end up dragging in unnecessary files
do u need deep knowldge about computer system to understand rust?
If you're using Rust to interact with the system
deeply
Erm, not really. The Rust book explains pretty much what you need to know. Some previous programming experience is helpful.
Yo james
@terse needle @uncut meteor yo
and is rust mostly in app dev?
or does it have other uses (reasonable use)
It's general purpose
What do you consider an app?
i don't know
There is one
non web?
There's Rust web backends as well
Pretty much whatever you can dream, you can do
And pretty much everyone and their brother is trying to recreate stuff using Rust
Yeah, Rust is a good one to pursue
@terse needle What would they call it?
Ah
Neat
Yeah crab makes the most sense
itch
If you have crabs
@tiny seal Buddddddddyyyyyyyyyyyyyyyyyyyyy
How've you been
quite well, except a hard hitting flu
@rugged root you ok?
Hanging in there
Is your wife better?
Nope
D?
how creative
saying i'm gonna learn the d language just feels weird <-<
I would embrace the D
not every one wants to gen onto it

D by Example
is there like a schedule for live coding?
Nah, just ask me if I'm around. I grant it on a temporary basis at first
i don't think i'll be doing it any time soon
but watching it sounds fun
what is memory unsafe
Fuuuuuuu back in a bit
Lisp is ancient
Memory safeness refers to things like preventing accessing parts of memory that shouldn't be accessed, preventing things like buffer overflows
If memory serves, not 100% that's right
@terse needle Let's take all the intuitive aspects of Python and then like... kick it in the nuts with Lisp
Let's make both languages worse
Preprocessing
Macros are things typically done before the proper compilation, right?
They really aren't like that
Not quite
Your mom is more like a macro
Some how
I'll figure out how that joke works later
HA
Errr
say yes
Okay, if I'm just trying to figure out basic stuff of Docker, does it make more sense to try to and learn how to make a Docker File or a Docker Compose file
@molten pewter You have not
I said "pasta" once
They have a pretty good tutorial I think
Dockerfile spefifies one container, docker compose allows to setu up, tear down etc multiple containers at oncce
ok it was informative
thanks
imma go off
๐
hallo
How's it going

cool
See you, Harbs
Now I really want Arby's....
Pirates love it
Arrrrrrrrby's
I'm not on my a-game
Or care
very good show
Nope
Just got my W-2. My take-home last year was $35k give or take
Go me
Das boot
Ever
why no arch
utopia is sooooo sick!
โค๏ธ
๐
yes now
esp since covid
one of my all time favs
and its british!
ye
just a shame no season 3 ๐ฆ
there is an American one recently
and even if it did happen itd be poop ๐ฆ
i saw one episode and cried
Makes sense
Most of the UK sitcoms that we try to adapt just don't work
Gameshows work pretty well
I think the only one that's really worked was The Office
hello computer ๐
@sweet lodge join us
i know you're slacking off at work anyway
Cake is a made up drug
It's a fucking disgrace
The harder you try to remember what you were thinking about, the less likely you are to remember it 
You just have to think about something else for a second.
Going to see what they're talking about in code/help... ๐
Why?
Rude
because then it's a party
Now I'm not joining because you were rude
I'm also at home
that's why i said that :P
fuck you bird
Was silent all day
@lucid blade
I was on Discord
home alone are you?
get jinxed nerd
Got them email after he sent that
@molten pewter Then what is your proposal
And it's something "RUSH LAST MINUTE" because HE didn't take care of it like six months ago
get a better boss
Right I get that
And now I "need to do it right now"
We have to file paperwork with an international governing company to complete this
@molten pewter I know, I'm agreeing
paperwork takes foreever
"vendor is waiting on us"
use grammarly or quillbot @molten pewter AI write better than most of us
Are you seeing what I'm asking?
most my friends actually use grammarly to write their reports at this point i think
especially when their people are busy handling the likes of Walmart and such
We're nothing to them
It's the people that declare who owns which barcodes [UPCs], so when you go to the store everyone knows what you're scanning
@lucid blade Regarding the one on one, consider that there are some courses that can have upwards of 50+ students
@mild quartz Yo
Crap, one sec
I think class sizes and lack of professors that can teach on that level are going to be the major hurdles regarding what you guys are proposing. I agree there needs to be a sea change, but I don't think it'll be as easy as you guys are thinking
Certainly
I think we might see a tightening of who can get into higher education
If they need to have more personalized or one on one evaluation to make sure people aren't cheating, then cutting down on the sheer number of students, especially ones that aren't necessarily excelling, is a necessity
I would have been cut from said plan
I'm a terrible student
yoo
Well, under the current plan and teaching style of homework and what not
@amber raptor Yo
Suck it up, you can deal with a Hemlock ping
rood
How you write in written work are likely not how you actually think or speak
You won't get something analogous to your grandfather
You'll get echoes of his writing, nothing more
ping for the @rugged root
@rugged root
@rugged root
@rugged root
@rugged root
@rugged root
I don't doubt that
and a few more for good measure
However they'll be hollow facsimiles and some weird idealistic view of the loved one
Wasn't that an episode of Black Mirror? ๐
The person is what they've experienced, the decisions they made, the life they lead. Writing or even voice recordings just can't do that
Does anyone use pyspark
Night
I have not, no
@mild quartz I'm probably not far off with what I'm saying, right?
So if you want to train models, you'd have to become a photographer for a famous designer brand.....
LOOL
@lucid blade See ya
laters
The n stands for nerd
This is a nice book too. And you can read it for free: https://www.statlearning.com/
Uses R
lmao
I honestly just glaze over when you talk sometimes, Anokhi
I mean that in a "you're way smarter than me especially on this topic" good way
Cinematic art
Jesus christ. Looking at the "getting-started" thing for Docker. What moron figured these colors with white text were the optimal option
Hey cruiser
hello
Having said that, I will destroy you on useless videogame facts
Does grant money count?
Ah right
@mild quartz If you start hearing Apache helicopters.... I'm not SAYING you should run, but...
Keeping a bugout bag may not be a bad idea
Just sayin'
๐คฃ
Enjoy
@molten pewter It's a good thing you're not smug about the no meeting thing
Wait you're still on 7?
You enjoy security holes?
And a gas station
Wait it is?
That's dumb
The numbers 7 and 11 are the same word?
name sounds familiar:{}
Ah
Okay, I thought you meant in actual counting or math
Going back through the FF7 remake
First part, certainly not half
There's a lot of game left
Like
3 discs
FF8 was 4
I don't know, I feel like I remember the project got put on hold
Estimates I'm seeing are likely between end of Q4 this year and Q1 next year
It needed a refresh
I'm fine with the updated combat
Makes you have to work for it
And it does have a classic mode where it's closer to the old turn based
I can imagine

You'll never see it coming, oof



