I reviewed 200+ PRs in 10 days - Here is what I learned
This blog was originally posted on dev.to
🌗
This blog was originally posted on dev.to
We all learn at our own pace and in our own way, in this post I “try” to explain what I do to grow and become an efficient dev one step at a time.
Here are my recommendations for some internet communities/social media to follow as a developer.
This list is a personal suggestion so if you find any more, please comment them below.
This blog was originally posted on dev.to
So if you are looking forward to learn C++ in 2019, I present to you the 30 Seconds of C++.
A collection of STL (Standard Template Library) features of C++ which can be learned in 30 seconds or less.
We all encounter things in life which we want to automate, Setting up reminders and schedules are one of them
Python makes it easy for all the developers out there to make small python scripts that can schedule some boring stuff for you.
Here comes this #awesome library called schedule
(quite a name it got there :wink:)
Let’s start around by playing with this
First things first let us install the python package first
pip install schedule
schedule is an in-process scheduler for periodic jobs that uses the builder pattern for configuration. Schedule lets you run Python functions (or any other callable) periodically at predetermined intervals using a simple, human-friendly syntax.
Python
job
scheduling for humans.
Let’s not worry about what in-process scheduling is for now
Let’s write some code
import schedule
def job():
print("A Simple Python Scheduler.")
# run the function job() every 2 seconds
schedule.every(2).seconds.do(job)
while True:
schedule.run_pending()
This blog was originally posted on dev.to