JoeJourney
seen from United Kingdom

seen from Türkiye
seen from Singapore
seen from Türkiye

seen from United States
seen from Italy
seen from Malaysia

seen from Malaysia
seen from Malaysia
seen from Türkiye
seen from United States
seen from China
seen from China
seen from United States

seen from Malaysia

seen from Malaysia
seen from Malaysia
seen from Malaysia
seen from United States

seen from Malaysia
JoeJourney
Hello, can you hear me? #kskec #hello #adele #tinypost #tinycafe #café #cafetime ☕ https://www.instagram.com/p/CCECTwaJ9Zt/?igshid=1qemjv047mtei
#insta360pro #instameetulaanbaatar #ulaanbaatarmongolia🇲🇳 #tinyplanet #tinypost #greatkhan https://www.instagram.com/p/B-UhIqbBreY/?igshid=15e61frpqdahq
This ship doesn’t seem to be leaking.
When I got up this morning I had the distinct feeling that nothing appears to be wrong. Usually my life is defined by what minor to major crisis I’m dealing with at the moment. I know some nonsense is on the horizon but at the moment I can breath easy because nothing is actively wrong. True I want to make some changes, both professionally and domestically but besides goals that won’t be completed for a little while everything is fine. Times like this also cause me to indulge in an odd behavior I have which is concentrate on the feeling of nothing being wrong. I do this because whenever I’m sick or in pain I contemplate the fact that I didn’t appreciate the lack of discomfort when I was comfortable. In light of this at this moment I’m going to take a deep breath and exhale and hope for the best.
What is “__main__” == __name__ for?
if '__main__' == __name__: allows you to write python code as reusable modules, or as standalone programs. As a tiny example let’s consider these two pieces of code:
$ cat pr0math.py def double(x): return 2 * x if __name__ == '__main__': print "test: double(11) = ", double(ll) $ cat vvImpScript.py import pr0math print "dis is vv Imp. calc. B)" print pr0math.double(21)
Above we have written pr0math.py as a reusable module, and as a standalone program. We can run pr0math.py by running the following command:
$ python pr0math.py > test: double(11) = 22 $ python vvImpScript.py > dis is vv Imp. calc. B) > 42
Notice we don’t see the test: ... line while running vvImpScript.py.
Inspiring & Motivating Films
A tiny list of links to my favourite films, all in HD, featuring intelligent people and great plots (mostly based on true stories) that will inspire you and hopefully motivate you -
The Imitation Game | 2014 | IMDb: 8.1 / (1080p)
The Theory of Everything | 2014 | IMDb: 7.7 / (1080p)
A Beautiful Mind | 2001 | IMDb: 8.2 / (1080p)
Will Hunting | 1997 | IMDb: 8.3 / (1080p)
The Pianist | 2002 | IMDb: 8.5 / (720p)
Amadeus | 1984 | IMDb: 8.3 / (720p)
The Iron Lady | 2011 | IMDb: 6.3 / (720p)
Feel free to add more and just let me know if a link isn’t working anymore :)