Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Faith Morante
Faith Morante

Posted on

     

Weekly Retro #1 - Python, React, Express, etc

I like the idea of looking back, digesting what you have learned and sharing it to people who will be able to relate to it.

I learned a lot of things this week.

1) Python - List Comprehensions

I'm a new learner of Python and so far I'm enjoying it. I'm subscribed to Trey Hunner and Python Morsels. Check it out!

So there a syntax in python for shortcuts of for loops and even nested loops, which I still find confusing, still need to get used to it. It's called list comprehensions.

So this:

doubled_odds=[]forninnumbers:ifn%2==1:doubled_odds.append(n*2)
Enter fullscreen modeExit fullscreen mode

Can be translated to:

doubled_odds=[n*2forninnumbersifn%2==1]
Enter fullscreen modeExit fullscreen mode

2) React and Express with uploading files to Google Cloud Storage

I have done uploading to AWS using AWS Amplify. So now I had a task to use GCP instead. You can check my post here about that:https://dev.to/idiglove/file-upload-with-react-express-and-google-cloud-storage-with-folder-structure-2i5j

3) Amazon coding challenges

I didn't do a good job with that. I really need to practice more.

Here's a list of some possible questions that they will ask.

https://leetcode.com/discuss/interview-question/344650/Amazon-Online-Assessment-Questions

Cheers,
FM

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Senior Software Engineer
  • Location
    Vancouver, Canada
  • Work
    Senior Software Engineer at Yocale
  • Joined

More fromFaith Morante

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp