#voice-chat-text-0
1 messages · Page 734 of 1
cool
Hello guys!
Hello!
anyone worked with ML before?
tee
Tee hee
what is tee hee?
tee hee heee heeee
god i keep on clicking on media voice chat when i am trying to go to #799040290459615282
I am a Beginner and i was thinking like, where to start wit?
with*
nice
I started working with some Regex chatbots but now i am jumping intothe ML & DL
WOAH!
What are you guys up to recently?
So I was meant to rewrite my website last month in PureScript
What do you guys think about data analyst?
Which eventually led to me publishing my first package in PureScript so that's interesting
Just finished generating python texts using the markov chain, now gotta plot them into images
Hello
what it is like to being a data analyst?
@rugged root They don't have a package index yet, so for now, they store metadata for publicly-available packages on a central repository, which is updated through PRs and such https://github.com/purescript/package-sets/pull/794
@whole bear Take a look at the #voice-verification channel. That should tell you what you need to know
Thx, boiii
if you learn to be a data analyst vs a dev, which one would u considered harder?
ahh i see
some say it is more fun than other things!
hmm how about, which one would be harder to transfer toward
Also the newest nerdy thing I'm learning is Nix
what's nix
like if u start with dev, would it be easy to change to DA if u changed ur mind?
haha, its okay, i wanted ur opinion
Nix is a cross-platform package manager that utilizes a purely functional deployment model where software is installed into unique directories generated through cryptographic hashes, it is also the name of the programming language. A package's hash takes into account the dependencies, which is claimed to eliminate dependency hell. This package m...
can anyone write the program how to print
"What if we had a package manager, but it's functional"
I don't get the difference between functional and non functional programming
can anyone write the program how to print
can anyone write the program how to print
4321
432
43
4
There's also NixOS https://nixos.org/
hmmm
You can think of functional programming as "pure functions that operate on just data"
lol
By "just data", what I mean is that it's just a bundle of data with no other things associated to it
For example, a list of integers is just a list of integers, nothing more, nothing less, however, you can define functions that do operate on those lists
Python itself is multi-paradigm, but I guess the key distinction here is imperative vs declarative
first read it here 👇
Most mainstream languages are imperative as in, you instruct the computer how to achieve something through different procedures
Declarative languages on the other hard, "describe" data rather than saying how it's built
people in AFK channel, what are they just "mousing" it?
AFK does mean away from keyboard , right?
Lol
Also @rugged root, once I've finished my PureScript stint I'll go and check out ReasonML
Does anyone know JoMa ?
OOOooooo
PureScript actually is kind of a practical take on Haskell; while it does have the fancier extensions built-in like type-level programming, it's a lot more easier to digest than Haskell itself
Also yeah, PureScript compiles to JS, and it's really good at it
joining in the voice chat being muted feels like I am Dumb( can't speak by born)
No. But with new account. I deleted my previous account
What was your previous username?
PureScript is rather naive about how it compiles down to JS, which ultimately restricts it from being optimized by JS minifiers to the brim
Although it's a good thing that we have a tool for eliminating dead code
@amber raptor do you have a pet rabbit?
No
today i'm learning SQL again,
quite mind tiring stuff
and what's with writing command in all CAPS, ( 😩 )
One thing I didn't like about Elm is that it's ultimately just a DSL pretending to be a functional language
Yeah that's true
That was one of my beefs
A 20 line code turns into 1k
Elm is also marketed as a mainstream language while most of the PureScript team agreed that they won't really go that path although they already use it in production themselves
yeah, but the guidelines says so, Like python indent should be = 4
maybe we can check our msg count?
one question, a lot of coders on youtube use Vim, without auto-complete, they just type without intellisense.
WHY?
man got big brain
To make them "look cool"
Or so they don’t have to explain pop ups coming from IDE
so not practical, I thought that's how programmers teach themselves correct syntax, help em memorize more stuff
does anyone watches attack on titan?
some people prefer no autocomplete
but they can just turn it off
on ides
vim keybinds are good though
but again
you can just add them to ides
just watched 5 ep
the opening kinda fire thou
yea
completed it 😄
I was wondering what are these giant things and yeah that colossal one too
and forgot most of it 😂
i just wish there was more community support for asynchronous code in python
only remembered the fight was awesome
like more asynchronous libraries, clients, whatnot
@rugged root So what do you do?( Just Curious)
programs in python
hobby 😮 wow
sounds lotta like Elliot Anderson from Mr.Robot
Not as my job, no
wait what
whats your job?
Administrative Support at an accounting firm. Payroll and tax document delivery, office stuff, in-house IT, etc.
Interesting
so the more you learn the less code you'll do ?
oh
wait i mustve misheard, whats ur hobby again?
ahh
coding
does it help with ur job?
sounds awesome
hobby is something you do for fun right? Mine's rope skipping
complete things faster xd
ooh, more convenient
coding makes life a bit easier
pk enter?
Soft. Engineer Vs Data Analyst.....What's best ?
what do you enjoy?
whatever you like man
I'll look at the ratio of Pay to Working Hours
Pay/Working_Hours, cause
I'm doing sql right now, and slowly hurting my brain doing this all for long hours
Just set up Nix for one of my toy Haskell projects; actually feel nice to not worry about building prerequisites for once
why do people play this pixelated cra*, I don't really get it
@wise glade any good resources for better sql schemes
whats a sql scheme? schema?
You'll only know when you play
damn fastapi's auto-api-documenter is really impressive
yeah
like its so awesome(in terms of the actual code)
doesn't it hurt eyes? just play something similar, with better graphics
when are they going to update this fuc*** game to better graphics?
and it picked up some activity as well apparently, nice!
It's the gameplay that people love. Graphics are not the focus. I love it as it is
Also yes, I'm back to dark mode
Why the swap?
hate this 0 and 1 thing
suffered from the same stuff when I worked with MATLAB
Matlab is entirely sufferance
Kya Matlab mai samjha nahi
?
he's talking in hindi
hey, today I was wondering something in this ```py
class Age:
def init(self, age=0):
self._age = age
@property
def age(self):
print("Old Getter")
return self._age
@age.setter
def age(self, a):
print("Setter Called")
self._age = a
@age.getter
def age(self):
print("New Getter Called")
return self._age
my_age = Age()
my_age.age = 10
print(my_age.age)
if the function decorated by `@property` can itself act as a "Getter", why does one more `@age.getter` also exist here?
Not sure if you can hear me, but yeah there's no reason why that second getter should be there
Solid
my mother is watching TV in the other room, high volume
okay so i was writing a simple chatbot using Regex but lately i wanted to make it speak but can't understand where to put the speak function..... 😦
Ever used pyttsx3 ?
flask vs django ,whats better for a beginner ?
Neither!
beginner to python I use nodejs mainly
Break out expressjs
If you really want to use Python, then FastAPI
yes
someone was talking that Django 3 is WAAAAAAAAAAAAY better than express
fastapi is awesome
That person is wrong
there are few async clients
and async wrappers
and async libraries
in python
compared to nodejs
so you cant really make good use of the out of the box async functionality fastapi offers
example: firebase firestore gives you async access in node, but not python
Google isn’t big on Python
now there's like the middle ground between ssr and web apps
Like GCP side of Google
like next
or nuxt
what about scalability
that guy really was pushing the idea of django can SCALE
is that true ?
thank you for your feedback
I was really gonna change paths
this sounds like a noob question now,
my reason to learn python was django
so where's the real power of python
@inland idol automating the boring stuff, prototyping, machine learning
LIKE THAT GUY
Doesnt SSR have better Search engine rating
like SEO
I dont think google bots execute the js ...
does it?
why isnt it that great>
?
yeah thats true, but in general, less async code and libraries exist
so fastapi is cool, but can you make use of its asynchronous-ness?
kind of, but not much
there's good orm for SQL
Pony seems neat, but my main experience is SQLAlchemy
i just use query builders lol
you should really look into ORMs then
unless you need EXTREME LEVELS of performance
I had to get used to all of that crap when I was working with SAP Business Suite to make reports. That was a hot mess of SQL queries
orms dont offer me too much extra that i cant get with some python dataclasses and query builders
but premature optimisation is evil, yadda yadda
especially with libraries like pydantic
Data validation and settings management using python 3.6 type hinting
I love the name of that library
you do you, im gonna continue using ORMs ¯_(ツ)_/¯
awesome
You don’t trust benchmarks 100%
But my statement stands. FastAPI, Express destroy flask and Django in speed department by measurable amount
yes
i think fastapi is better because of the autogenerated api docs alone, even without async support and whatnot
i mean the async support is absolutely amazing and i wouldnt migrate from flask to fastapi if it didn't exist
but the autogenerated api docs alone are super convenient
whats your take on the recent solarwinds hack
+1 on this conversation
sql bestql
+1
+1
any reason why using C#?
i like TS and typeorm but typeorm's update() function sucks so i might change it
I legit had to read that multiple times to realize you didn't say "tapeworm"
hah lol
It’s very usable language?
And it’s pretty quick these days
errorlens is such a good vscode extension
everything becomes so much more visible
C# is great
pylance is better imo
its not the same, errorlens just highlights the line
yeah
pylance does that too though
it'll work for any vscode detected error
¯_(ツ)_/¯
it doesnt put the text next to the actual line of code
it highlights it
this is pylance + errorlens
cause its meant for python?
pylance is a language server, errorlens is literally a visuals only extensions
alright
they are non-comparable @pure path
bye bye guys have a good day
bye!
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
@spiral monolith
one channel becomes two
Hey everyone
its a cell division
Rust is made on Unity as well
@sick cloud RTFM means "Read The Fucking Manual". It's rude and dickish
By the way : Hearthstone (Blizzard) is mader with Unity as well haha
thx
btw @rugged root
Yeah I saw that! So crazy
Yeap. They used to use standard Unity Assets and then hired some 3D creators to build their own
Doesn't Unity use C# ?
Ho ok
Yeah by the way good question : i know only R and Python, and wish to learn a new programming langage, less specialized than R or "script friendly" like Python. By the way, i mostly use programming for Data Science project. But i would gladly use it for software dev as well. What would you recommand ? C++ ? Java ? Julia ? Rust ? Go ?
Python Modules works with Julia as well
Yeah, there is a way to make them work in Julia
Some still need some workaround
Haha
I think i have a good "data science" dev skill, but a less good "software" dev skill X.X
This guy is famous now
hold up that s me
Not in a really good way tho'
hAHA
Nothing
Absolutly nothing
He just had that style
Which made him famous
Quick Python related question. I had to use some Multiprocessing development for one of my project, and was lost with some modules (multiprocessing vs concurrent). Which one should i use, or are they both different and have their own use ?
Well, i ended up using multiprocessing module because i was scraping something and ended up doing multithreading. But i understand concurrent.futures was more "up to date" and more used. I was a bit lost
To be honest
Hooo i though you had the concurrent.future module
Or something like that
Yeah sorry
I though concurrent was a module and future was a method that was part of it
@glass gust check out #voice-verification
What i understand is that multiprocessing is "the old" package used all the way. And concurrent.futures came accross and is in development and will be the "new way" of doing multiprocessing or multithreading. And that doing multiprocessing in python is hard due to how python is made 'with that lock thingy that force it to be a single processed language". I will now stop talk about it to avoid any annoyance haha
Hoooooooooo
Ok !
Yep python handle things
I get it !
Hi every one
High ev-er-reee-1
it's like you dont need multiprocessing in concurrency
What is the reason for blocking the microphone of new users on this discord channel?
Trolls
I just don't understand
yeah. its due to the fact that when you do multithreading, you usually do it when there is massive I/O stuff going on
@whole bear We had a large slew of what I call "Hit and Run Trolls"
People who would join the server, join VC and just scream and then leave
Most of the time, trolls aren't patient enough to wait 3 days or are going to stay around to write 50 messages
why is there two offtopics now, btw
clear explanation
And i never heard of it, but can you multiprocess a multithread thing ?
Well the thing i coded take 4hours to finish
And if they try to spam to get the 50 messages, it prevents them from verifying for an additional 2 weeks
ok yeah i got it! I therefore have no more questions haha. (my task is about webscraping - with pauses and stuff to avoid server overhead)
it's better to use queue for webscraping i think
Message Handler's Water Music
Coming from a psychology background (neuroscience/cognitive master degree), i'm still learning, which implies i often use wrong stuff for an application haha
It sounds reasonable, but on the other hand I have to write somefing even if I have nothing interesting to say to get my voice verification
But i love what i discover haha
you can say that it forces me to spam even if I don't want to
@whole bear True, but that's why we usually keep an eye on this channel while we're on the voice chat. It lets us still have a conversation. There's also tons of other channels and what have you to communicate in
Off-topic channels, topical channels if any of them pique your interest, getting help or giving help, etc.
if there is a Off-Topic 0 and Off-Topic 1.... where is Mr. Hemlock 0 and Mr. Hemlock 1?
If someday, i show you a bit of my code to get a "review" from a software developer perspective. Would you like to do it / have the time / the interest? I would love to have a review and learn from more experienced guys. But i would absolutly understand that you guys don't have the time / the interest to do it =).
In return, i would gladly answer any question based in neuroscience / psychology /statistics if you have any (trade of knowladge haha).
Other question : do you guys know each other IRL or did you just started talking here to each other ? :D
ik myself irl
I bet you do!

Sure, I'd be happy to look it over. And you can get more reviews on it by grabbing a help channel on our help system. And I only know these guys via here
But are you sure about that ? * bend over the sofa *
Alright :D Thank you mate ! My code works, it is just to learn from more experienced people and give the favor back whenever i can =)
No worries, we wouldn't be here if we didn't love Python
And I'm sure those topics will pop up from time to time in conversation naturally
Which degree ?
By the way : i just realised that the medium article you send Laundmo (the one i read), come from a company i applied to 2 days ago haha
Wow ok :o
Degree in fishing
XD
🎣
with a minor in depth perception
Same
no, talking about getting scammed haha
Small question, as we're talking about Steam and all : does anyone plays CSGO ? :D
hmmmm
Can you repeat the problem ?
By the way : you can't create 2 accounts with the same email address
Have you tried to switch to an other email, just to see if those emails follows you ?
98
:/
I thought i had a lot haha
But to be honest, i got a median of 120H in each games i think
Well, if i add up all CSGO hours games, i got more than 7.000h just on CSGO X.X
You what ?
I am curious
How do you end up trying that community (not in a bad way, but in a "wats the process" way)
hello
Yo
well howdy
hello
What is the worse : spend X times on multiple games, or spend the same time on the same game for over 7 years xD
Yeah that's an other problem
XD
CS : 4 times because i always forget my email/username/.pwd before
xD
I manage to find 3 of them but never found the 4th
+1
Those patches saves the day
I never finished the game D:
I finished the quest where you get the first battle Fusroda (dammit im a illiterate skyrim man)
That's it
EXACTLY
THANK YOU
YEAH
I spend countless hours modding
Then just --> Right click --> delete
Just when i managed to do 2 steps on the game without blue screen
God yeah those are... Gotta love Bethesda
I was like : well that's it, fixing the mods was a really fun experience. But what is that thing ? With 3D Stuff, sound and keyboard interaction?
I dont get it
XD
HA, yeah
Well, i leave you there guys
It was fun and i'll be there some time in the next days. See ya !
@paper forge Nice talking to you! Hope to see you around again
@fierce summit Hey how's it going
Quite fine. I had a very boring day. My laptop went dead at one point, because I forgot to put it on the charger.
Then it just started a update, and I had to restart my computer in the middle of a lesson
The curse of the Windows Updates...
Luckily there wasn't anything unsaved. Only that it happened in the middle of a lesson. (The going dead)
And it might happened because I fell asleep
in the middle of the lesson
Did you stay up too late?
Literature
Maybe...
Just until 2 a.m.
And the lesson started at 7:30
Not surprised you passed out then
It was an interesting book
Which book, if you don't mind me asking?
Keeper of the lost cities
Atlantis?
Yeah
Solid
I can't help it. I love it since I was a little kid
I always watched movies and series that was about Atlantis like cities
Yoo @rugged root you did it
nah nah there can be only one jake in the lobby
i refuse
For example Flipper & Lopaka, or Moby Dick and the Secret of the Mu, or The Deep
I've been reading 40,000 leagues under the Sea
It's very technical
definitely got that odd "old book" factor
Moby Dick had references to Atlantis?
Not the original Moby Dick
It was an animated french series
Tin-tin? XD
?
No, I was talking about Moby Dick and the Secret of the Mu (Moby Dick et le Secret de Mu)
Hi another Jack! 😄 @digital jackal
oh fairs, well I wouldn't be surprised if he had a spinoff with him and moby dick, his best friend was an ornery sea captain
Ohhhh oh oh, right, sorry
Well this story was about a boy named Romy, who is from the lost city Mu, which had a fate like Atlantis (Big wave and sinking) and some natives on an island which is not on the maps
@feral willow https://www.reddit.com/r/linux_gaming/comments/bngj83/discord_a_workaround_for_screen_sharing_with/
49 votes and 15 comments so far on Reddit
literally came across this haha
Romy was searching for 24 sacred stone to open a gate to his home, and there was a girl Satya who could speak with whales (thelepathicly) and a bird Zu who could teleport. And they were helping Romy.
Sadly I only found it in French. And I don't know French.
The other two series I mentioned also have strange names
Yeah that makes sense
Flipper & Lopaka: Bolo, Flipper, Lopaka, Bomana, Clalabash
check this link
THe Deep: Ant, Nektons, Fontaine, Nereus, Lemuria
I could see the first and third name being used
Ant being short for Anthony or Anton
Ant is a short for Antheus
Ahh, gotcha
resource.sfl.db 100% 3318 17.4KB/s 00:00
these files are hardlinks - they do not take up any disk space by themselves.txt 100% 0 0.0KB/s 00:00
resource.rpf 100% 608KB 498.1KB/s 00:01
resource.rpf.db 100% 761 4.0KB/s 00:00
resource.sfl 100% 42KB 200.8KB/s 00:00
resource.sfl.db 100% 8470 43.7KB/s 00:00
these files are hardlinks - they do not take up any disk space by themselves.txt 100% 0 0.0KB/s 00:00
resource.rpf 100% 158KB 378.9KB/s 00:00
resource.rpf.db 100% 1536 7.9KB/s 00:00
scp stuck @rugged root
da fuq?
idk stuck in a loop
Is this an installer or something you wrote?
Ah gotcha. Is the -r recursive?
i did it already
accidently while trying to copy the shell lmaoo
@rugged root
CAMEEERAAAAA
the people sharing their camera are having tons of fun
lol
im losing brain cells right now loool
this works with no issues. Perfect!
Niiiiiiiiiice
Joe's a legend
@whole rover can i get dragged or nah?
!otn a ottoman-emperor-joe
:ok_hand: Added ottoman-emperor-joe to the names list.
@rugged root how can i share video?
you need the Video role
@hushed elm Hemlock will be back on later to give you permission.
eyyy
yes
yep
ohno
dude
NOOO I CANT JOIN AND THE OWNERS HAVE THE CAMERAS ON nooo i wanted to seeeee
im in
yes
@rugged root you left joe dancing , and now he is on swag mode
surely
me
@rugged root plz video
what is going on in here?
This is so cool
I just
cute cat
Don't know anymore
and my pc is so loud rn
I won't stream video, I'll stream futz around in DCS or VR

:laundmo:
@vivid gull nice cloud 2 gaming headset
cya guys
@rugged root it would be really cool if the video role could be obtained somehow for longer. it's fun
(old image cuz clean)
Yeah I'll be thinking about it. This is great for community bonding
Take it easy!
O.o
@rugged root
i accidently closed the scp
.5 gb out of 3
was lost
now i gotta retry
@hybrid berry welcome to the channel
@hybrid berry Better if you talk in here yeah
@hybrid berry Yeah dude, you have 48 more messages to go
@rugged root ^
i can't remember if it is actual mahjong its definately not the mahjon solitare stuff that came with windows 7 though
but i don't have subscrib so i can't check
oh thats why he sounded like arse just then
he put on a gasmask...
I just have a pair of HD598s
mdr 7506
nope
Check out #voice-verification
nope
Roit
i am unable to pronounce it correctly myself :D
print("I don't Know Python")
its a name i have used with quite a few characters in online games
import cloud from internet
so its just kind of the name i'm used to using
@neon blade :white_check_mark: Your eval job has completed with return code 0.
hi
uh
ahhahahahah
that sort of happened
e!
print(2+2-1)
@neon blade you can be banned for putting Java code in this chat
For real?
no, it was a joke
ahhahahahah the name ahahhahahah
there is a japanese voice actor called norio wakamoto who is known for his HAM performances who played a character in azumanga daioh
that was a cat
thing
She should be banned for her tag
hahahahahaha
Ms. Java
And what about Jython?
no
isn't it only on like 2.6?
Thats when Auntie Java had a baby with Uncle Python
oh you can still do that
in both versions
so many people in RS3 these days do not know about it
Audi RS3?
@rugged root That is a nice cat cushion, where can I get one?
i once spent a few months mining litecoin when i was in college
then the feds took it all while i was trying to turn it into bitcoin
Amazon probably
Your father is 50 and investing on BC? ahhahah
the exchange people said to use got raided
lololo
hahahahaha
@vivid gull Where should your pops invest then?
This guy's pulling an Edward Snowden with those 3 monitors
i have two monitors
i have half a monitor
accidentally
i also have 2
lol
although when i was working on my python project for uni i had my laptop set up as a third with whassit
mouses without boarders or something
I have a laptop, does that count?
yes and no
dunno my laptops what i use for VR mostly
damn
desktops is a silly place for VR and its in one heafty case
oh i got a new one since then
Does a VR set count?
Can You code with vr glasses?
its not quite so thicc
"There will be light" - God
this one is only about 3.5CM
Can yall speak more slowly? I barely understand english
the old laptop was 4.5cm
neir
@faint ermine @rugged root @vivid gull
I can try
Rooooooooit
hehehe nein
Germanish?
Germanic haha
Alemón
Was?
Is
Dead zebra jumping spider lol
This Guy With an orange shirt is creepy
lol
Can anyone speak russian here?
Da
Argand Gauss
niet
about his space station 13 bans
уг пщыефкшф ву афдфк кгыыщ сщь мщсуы
it was rather quite funny
фзутфы зщк гь ьщьутещ
Nope, my Russian is lacking
when he was reading it to us a few days ago
I can't speak Russian (yet)
Thats Bad Tho
?
What about portuguese?
nyet
a
Raxxaaaaa
don't let your memes be dreams
Is This Donald Trump?
I think so?
Definitely Biden
Bin Laden
"simple"?
@vivid gull I had a dream where I high fived Jeremy Clarkson in a nuclear reactor just last night.
Creep
I felt so confused when I woke up
If I could, I would listen to all of you talk all day
But unfortunately...it's night
Python Sentiment
And my sleep-deprived body will discombobulate soon
Is a Liber Larly
You on Mushrooms?
You should... I Recommend
@near niche https://github.com/cjhutto/vaderSentiment
I will try that
The Minecraft one?
GGs Bro
I'm heading out folks
GGs Bro
and according to a search on this chat i just did this should be my 50th message
yey
now to wait 3 days i guess
my first introduction to python was a little over 3 months ago
please go and implement a pseudo implementation of SMTP
don't talk to me about it for the next 20 minutes though its assignment work and the deadline is at 11:59PM
fira code mono 😍
i get the entire office stuff through my uni so i use that
otherwise i use libre
did i tell you that shakespearian is an actual programming language?
@vivid gull
the lecturer showed us a bunch of stuff with esoteric codes a few months ago
yes the assignment that has a deadline of in 15 minutes is python based
it was my first introduction to python after doing stuff mostly in C, C# and C++
yeah for EE
and i'm sorry to say it was probably not a good introduction
because the only thing i really learned is i dislike python...
but again probably just wasnt introduced to it in a great way (distant learning and all that)
probably C#? its what unity uses and its what i used in the game jam last year
it was a royal pain in the arse mind because i had only just been introduced to c# as well and i didn't realise that unityscript existed previously so most of the answers to my searches were using unityscript
but i did an entire UI element in a game!
\end{itemize}
\end{itemize}
\end{itemize}
\end{document}
😍 we love latex
First message here
ah i need to go
LaTeX, or just MathTeX?
@faint ermine https://github.com/python/cpython/blob/998ae1fa3fb05a790071217cf8f6ae3a928da13f/Objects/object.c#L869
@faint ermine
def loop(func, condition, reeturn, **kwargs):
while eval(condition):
func()
return eval(reeturn)
my_class = ''.join(chr(_) for _ in [70, 105, 98, 111, 110, 97, 99, 99, 105])
locals()[my_class] = type(
my_class,
(),
{
'_cache': [0, 1],
'_construct': lambda self, n: loop(self._build, "len(kwargs['arr']) < kwargs['n']", "kwargs['arr'][-1]", n=n, arr=self._cache),
'_build': lambda self: self._cache.append(self._cache[-1]+self._cache[-2]),
'at': lambda self, n: self._cache[n] if len(self._cache) >= n else self._construct(n),
}
)
maker = Fibonacci()
print(f"at pos 5: {maker.at(5)}")
print(f"at pos 2: {maker.at(2)}")
print(f"at pos 12: {maker.at(12)}")
!e
c = type('C', (object,), dict(a=1, b=lambda x: print(f"hi: {x}")))
c.a
c.b("laundmo!")
@noble copper :white_check_mark: Your eval job has completed with return code 0.
hi: laundmo!
It looks like you only have five currently. You need to get to 50 messages without spamming. See #voice-verification
Ohk
My internet adapter fell out
i've been counting down since 2020 lmao
that looks rlly cool
@tidal salmon 🤷♂️ Joined for fun lel
Are you Bob Ross?
:o
either works
I'll be heading off for now as I'm in a game, have a nice evening.
bye 👋
👋
My DP is the Fedora Project Logo not Facebook
@halcyon flare
Display Picture
LOL
Choose Freedom. Choose Fedora. Pick a flavor of Fedora streamlined for your needs, and get to work right away.
So now we have only one voice left, PSVM
oh
Have any topic to discuss @honest pier
I have recently contributed to a project called Status Network Token , a crypto-coin in ETH blockchain
Looking for more project to contribute
Cool
!source
I would love to
Thanks for sharing the repo
@honest pier message count to 50 in voice-verification will include this channel as well right?
yep
👍
Now a days I am using structlog https://www.structlog.org/ in place of standard logging module
@fiery hearth
nslookup website.com
@fiery hearth show here
ffmpeg
RuntimeError: Requested MovieWriter (ffmpeg) not available
@sweet fulcrum #voice-verification
.
What's voice chat 0 and voice chat 1 for?
hello
@somber heath still waitin on that voice verification
yeah also i have a day or two left @somber heath
yeah
@somber heath i am like a huge fan of the breaking bad universe so kept that hehe
oh you australian mate.
@somber heath cricket fan?
am ı had to write least 50 messages here
to be able to speak
@voiceverification
i here
hiya folks
r u guys aware what ı wrote
okey
your accent bit complicated to me
sometimes i struggle
understand
mow its clear
now*
have a good one
@keen umbra over here
yeah
need voice verify. i can't talk
No i have not 50 msz in this server . But i am old user
I am trying to learn python.
Thank you brothers.
I download one course from a torrent site.
Youtube's good. Corey Schafer and sentex.
O Thank you for your suggestion brother. I will be definitely watch....!!
👍
Those r pretty good as well
the robo 😄
Lol yeah, I like her teaching style tho.
yaa
Has a PBS vibe to it.
do you know what kind of programs do people pay for in python?
lol @wise glade no one is alive these days
@somber heath can you tell me something in this regard before you go to sleep, cause I think you soon will 😴
do data analysts use sql for data analysis these days?
using dbms like postgresql, or they go for python or R or other stuff?
@faint ermine will you take a look too👆, please
@wise glade I'll be awake for a fair while yet.
the next chapter is about data analysis using sql, and its 40 pages long
don't want to do it for nothing, if its outdated
love the tune on this one https://open.spotify.com/track/3knobvwtKHqLJKjk9t55oH
I didn't knew these could be played right here, at least a tease or sorts
also this one https://open.spotify.com/track/04LCCxG3pbOYeENiyUc7Xb
@faint ermine do you know flask? is this book good for learning flask? Flask Web Development: Developing Web Applications with Python
also should i learn flask or is it gone now, thing of past?
for learning fast-api, any prerequisites other than python language?
I found, having knowledge about REST APIs is good before learning Django,
I'm guessing same would apply to FastAPI, assuming they both do the same thing (just FastAPIs better)? @faint ermine
How do I start learning about REST APIs ? @faint ermine @somber heath
ok srry
yeah, doing that right now
In this video you will be building a fully functional REST API in under 30 minutes. You will learn how to setup a Node.js server with Express, how to connect that server to MongoDB through Mongoose, and how to setup a REST API with MongoDB and Node.js. This video is for any skill level and will cover all topics from the most basic server setup t...
don't know Node.js or MongoDB or Express
what do yuo want to do it with
seems like REST API is a prerequisite to learning DJango
so I thought,
you know
is REST API a big concept thing, on its own?
what about this https://www.youtube.com/watch?v=ejJ-2oz4AgI
( Python Django Training - https://www.edureka.co/python-django )
This Edureka “Django Rest Framework tutorial" introduces you to the concepts of API and will helps you build a successful REST API in Django. This video helps you to learn following topics:
- What is an API?
- Introduction to Rest Framework
- What is Rest API?
- Demo - Create...
The best way to learn is to do
especially for these kind of stuff
JWT
there's a good video on acadmind
on how the web works
it's on yourube
how else would you make coockies? lol
yeah, to climb a ladder you must start from the bottom
TRUEE
I think thats my struggle on Data Science , theres soo many things from soo many Data Visualization and libraries
thats why i set the Mantra of " just Learning Enough "
you wont even find everything on videos
I such a visual person that I really depend on videos
microservices
but I have to get used to writen instructions
I think a basic HTML book (not completely language specific) would teach me the basic web stuff
not a teapot
what if i am a teapot tho?
yeah, all the things you're talking about, I've heard of em somewhere, seen them at places, but never done something specific about them using them
