DEV Community

Cover image for Mar. 6, 2020: What did you learn this week?
Nick Taylor
Nick Taylor

Posted on

Mar. 6, 2020: What did you learn this week?

Photo by twinsfisch on Unsplash

It's that time of the week again. So wonderful devs, what did you learn this week? It could be programming tips, career advice etc.

Yoda wooping someone's butt

Feel free to comment with what you learnt and/or reference your TIL post to give it some more exposure.

#todayilearned

Summarize a concept that is new to you.

And remember, if something you learnt was a big win for you, then you know where to drop it as well.👇👇🏻👇🏼👇🏽👇🏾👇🏿

Little kid making a fist as if to say "Yes!"

Top comments (9)

Collapse
 
edipretoro profile image
Emmanuel Di Pretoro

I've learned that:

import requests


response = requests.get(url, timeout=None)

doesn't have the same meaning as:

import httpx


response = httpx.get(url, timeout=None)

If you want the same behavior with httpx than the requests code, you need to do the following:

import httpx


timeout = httpx.Timeout(connect_timeout=None, read_timeout=None, write_timeout=None)
response = httpx.get(url, timeout=timeout)
Collapse
 
gabbersepp profile image
Josef Biehler

I learned some basics about webdesign theory and redesigned my portfolio (biehler-josef.de). The only thing that is missing yet, is optimizations for mobile phones. But I think, that is something I can do next week :-)

Collapse
 
nickytonline profile image
Nick Taylor

That's awesome! 🔥

Yes, that's awesome!

Collapse
 
peacefullatom profile image
Yuriy Markov

I've learned about canvases and how to manage them and stuff they are displaying.

Collapse
 
nickytonline profile image
Nick Taylor

Noice!

Noice!

Collapse
 
vaibhavkhulbe profile image
Vaibhav Khulbe

I got to learn about freelance and Fiverr platform by completing their course.

Collapse
 
anshulnegitc profile image
Anshul Negi

I learned about aggregation in MongoDb, successfully implemented bar stack chart, and line Chart using Ng2charts in Angular 8.

Collapse
 
sumitkharche profile image
Sumit Kharche

This week I learned React Toolkit and created sample applications. Also explore Azure function and azure service bus. This week was good for me.

Collapse
 
yosbelms profile image
Yosbel Marín

This week I've learned/adopted Slonik a PostgreSQL client for NodeJS, and replaced Redux with React Query