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.
Feel free to comment with what you learnt and/or reference your TIL post to give it some more exposure.
#todayilearned
And remember, if something you learnt was a big win for you, then you know where to drop it as well.👇👇🏻👇🏼👇🏽👇🏾👇🏿
Top comments (36)
I'm learning about design patterns because I feel it will make my coding a lot easier and more professional
That's awesome! 🔥
Learned how to use the ConstraintLayout composable in Jetpack Compose and used that to fix a bunch of UX bugs in my Compose playground app, also started learning how to use Kotlin's multiplatform-friendly libraries so I can eventually use this same codebase to develop a desktop version :D
Reimplement LobstersItem to not require swipe actions #73
Work towards #65
TODO:
Figure out why only the last tag shows in the UIFixed by usingRow
to lay it out like earlierScreenshot
Migrate to Ktor for network operations #72
Still a work in progress, crashes during loading right nowCrashes are fixed and tests were added back, good to go now.Nice!
That is awesome! Keep up the good work.
I recently started learning Javascript. This week I learnt arrays, functions, DOM, Objects and method. Going forward, I stilll have a lot to cover.
Awesome! Also, don't get overwhelmed by all the stuff to learn. Do it bit by bit.
Announcing a Free Curriculum: Web Development for Beginners
Jen Looper ・ Nov 12 ・ 3 min read
Frontend Developer Resources
Nick Taylor (he/him) ・ Jan 6 ・ 11 min read
#javascript
Excited to see what you make with your new skills. Maybe even blog about it! 😄
Thank you for the resources.
I learned to always have a backup of your data and a backup computer. My laptop crashed and I almost lost my work from the previous 2 days
I learned about decorators in rails (using them to clean up views and other things) and about memory_profiler. Probably I should write about it.
Awesome!
Learned that manipulating SVG and transforming into PNG is way harder than I thought.
media query transitions look much better if I add something like
transition: 1s;
I learn to correctly import old ES5 modules in both snowpack and Rollup. Took me a while to narrow it down to the problem.
Remember crowd:
commonjs()
BEFOREnodePolyfill
().I learned that environment variables in react should be
REACT_APP_ENV_VAR
. It took me a few hours to take the documentation seriously.I'm getting smart about NPM packages etc.
Peter Jang's article is a brilliant guide.
peterxjang.com/blog/modern-javascr...