I get it.
Sometimes it’s just hard. Like, legit hard. To do.
To do what?
Well, really, anything that’s not easy.
You’re just stuck. You need a break. A break from being stuck.
But guess what?
That’s exactly the time when you need to do it. To do that thing that you’ve been dreading, or stalling or whatever.
These moments will define you and shape you into a person that does something even when you "don’t feel like it".
It will pay off.
Do it
This is why I write these ‘daily thoughts’ posts.
No matter the level of achievement in external things, mastering oneself is the greatest one.
This is why I write these ‘daily thoughts’ posts.
Learning to write well is a skill that will come useful no matter the industry.
This is why I write these ‘daily thoughts’ posts.
They (supposedly, originally, Heraclitus) say that the only true constant in life is change.
A JavaScript programmer in you might write that like this:
const life = change();
And, the trick in real life is that the function’s implementation regularly looks like this:
function change() {
return Math.random();
}
However, when you’d try to output the value of the life
constant (see it in action in JS Fiddle), it would be exactly that, a constant (no matter how many times you’d call it or output it).
Sidenote: if you’re puzzled by the fact that you can assign a function to a constant (or to a variable for that matter) before it was defined in the code, then go and learn about hoisting in JavaScript.
Now, you may write the above statement like this:
const life = function change() {
return Math.random();
}
Now, if you call the life
function (again, see it in action), it will return a different value every time you call it.
JavaScript gurus among you may chuckle at assigning a function to a constant, but check this StackOverflow answer for its applicability – plus, you’ll learn (or, refresh your memory) about hoisting in JS.
Switching gears; the point of all this is that you can’t expect to be doing the same thing, and getting different results, and no matter what obstacles you face, the key to overcoming them is not in changing the event, but in changing yourself and how you react to it. And that itself is a process. A process that begins with the desire or acceptance to be teachable and improve for the better.
Hope you like this attempt at mixing programming with personal growth topics (for more, check my daily thoughts entries).
Stay safe, friends
This is why I write these ‘daily thoughts’ posts.
In the case of an air pressure type emergency on the
, before helping others you should put the mask on first. The same goes for helping others in any other way; help yourself first. How can you help someone with something if you yourself don’t yet know the best way of doing that something?
This is why I write these ‘daily thoughts’ posts.
This may come as a shock to learn that (as reported here – and there are many similar reports, just Google them):
Fewer than 1 in 100 stroke survivors met all seven heart-health goals identified by the American Heart Association. And just 1 in 5 met four of those goals.
James Clear wrote the other day:
If you’d like to do something bold with your life, you will have to choose to do something bold on a specific day. There is no perfect day. There is no right time. For the trajectory to change, there has to be one day when you simply make the choice.
So, I really wonder, how sick and tired of something we need to be in order to change that something for the better?
Instead of waiting for tomorrow, why not start today?
This is why I write these ‘daily thoughts’ posts.