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
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.👇👇🏻👇🏼👇🏽👇🏾👇🏿
What was your win this week?
Gracie Gregory (she/her) for The DEV Team ・ Sep 4 '20
#discuss
#weeklyretro
Top comments (33)
I learned about
anacron
, cron's companion. Just likecron
you can use it to schedule some task but the difference is it doesn't assume your system is running 24/7. This is from the manpage.This nice article can tell you more about it.
I also learned that scripts executed by
cron
andanacron
are a horrible environment for GUI apps. If you do want to show something on the screen your best chance is to run it with your user (not as root) and set theDISPLAY
variable in the script. I do something like this.That's awesome! 🔥
That it's
GitHub
and notGithub
.🙃
I was working on displaying a lot of data in one of my tasks in my current company. I was able to use the
data grid
for this so as to enable sorting, filtering, searching all in one.On top of it I was also required to allow our users to able to download the content into Excel and/or CSV. Hence, I came about writing this article about implementing the export of data in Angular 😁
Exporting Data To Excel and CSV in Angular
Idris Rampurawala ・ Aug 31 ・ 7 min read
🔨 I finally published fully rebuilt app update and learnt a lot about SwiftUI, Combine etc, while doing this project.
👨🏻💻 Made my first issue in open source project suggesting to fix a bug by myself, but waiting for a response.
🤦🏻♂️ Forgot to continue edX course(going to right now!).
Today was unproductive sad day, but because of you I remembered what I accomplished and now I am not feeling down anymore. Thank You!
I created my first pipeline task group in Azure DevOps. It was painful, but my CI/CD knowledge in Azure is slowly growing. I also started taking a look at more of the rxjs operators while tinkering with my portfolio. I'm adding a section to show articles that I've written here on dev.to.
I learned a lot about accessibility at CascadiaJS!
Noice!
TWIL
Ive learned a lot stuff about JavaScript functions and anonymous functions. My goal for this year is to write and understand the basics in JS.
When you are done, you should have a look at the following:
useContext() and Redux in ReactJs
Nice!
how do you insert gifs that easily what tool you use
I use giphy.com
I learned a lot about Dart/Flutter, they are a new and efficient way to make mobile apps and recently web apps also. So practical, beautiful and fast.