Skip to content

Commit f1ef39c

Browse files
combined english blog with home page
1 parent e7ee044 commit f1ef39c

File tree

205 files changed

+6328
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+6328
-166
lines changed

.DS_Store

0 Bytes
Binary file not shown.

CNAME

100644100755
File mode changed.

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
# This target will run the Jekyll service.
55
run:
6-
@docker run -d --name smileprem-english \
6+
@docker run -d --name premkumar-masilamani \
77
-e JEKYLL_ENV=docker \
8-
-e PAGES_REPO_NWO=english-blog/english-blog.github.io \
8+
-e PAGES_REPO_NWO=premkumar-masilamani/premkumar-masilamani.github.io \
99
-p 4000:4000 \
1010
-v ${PWD}:/srv/jekyll \
1111
jekyll/jekyll:4.2.0 \
1212
jekyll serve --config _local-config.yml --watch --incremental --drafts
1313

1414
# This target will stop and remove the Jekyll container.
1515
stop:
16-
@docker stop smileprem-english && docker rm smileprem-english
16+
@docker stop premkumar-masilamani && docker rm premkumar-masilamani

README.md

100644100755
+23-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
1-
# premkumar-masilamani.github.io
2-
Premkumar Masilamani's website
1+
This [website](http://www.premkumarmasilamani.com) is built with Jekyll, hosted on GitHub pages with pure HTML only. (No CSS, Javascript)
2+
3+
All the artifacts in this repository are opensource. You can fork this repo and use it as you wish.
4+
5+
I would be extremely happy, if you link back to the site when, you use the content in your website/blogs (not mandatory though)
6+
7+
Remember this quote always:
8+
9+
> If you have an apple & I have an apple & if we exchange apples - we both will have one apple each
10+
If you have an idea & I have an idea & if we exchange ideas - we both will have two ideas each
11+
12+
Let open source be the de-facto for every industry in this world.
13+
14+
Thanks,
15+
Premkumar Masilamani.
16+
17+
**Commands for local operations:**
18+
19+
- To run the website locally using docker, run the below command in a terminal
20+
`make run`
21+
22+
- To stop the website locally using docker, run the below command in a terminal
23+
`make stop`

_config.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
title: smileprem
2-
tagline: on a journey called life
3-
url: https://blog.smileprem.com
1+
# TO_BE_UPDATED
2+
3+
title: Premkumar Masilamani
4+
tagline: On a journey called Life
5+
url: https://www.premkumarmasilamani.com
6+
#logo: add-some-logo-here
47
copyright: copyleft @ 2009.
58

69
author: Premkumar Masilamani
@@ -11,7 +14,7 @@ social:
1114
name: Premkumar Masilamani
1215
links:
1316
- https://www.linkedin.com/in/premkumarmasilamani
14-
- https://github.com/smileprem
17+
- https://github.com/premkumar-masilamani
1518

1619
include:
1720
- "_pages"
@@ -26,13 +29,13 @@ paginate: 1000
2629

2730
permalink: /:title/
2831

29-
img-path: https://blog.smileprem.com/public/images
30-
download-path: https://blog.smileprem.com/public/downloads
32+
img-path: https://www.premkumarmasilamani.com/public/images
33+
download-path: https://www.premkumarmasilamani.com/public/downloads
3134

3235
newsletter: https://eepurl.com/dE1QD1
3336

34-
home-page-url: https://www.smileprem.com
37+
home-page-url: https://www.premkumarmasilamani.com
3538
software-architect-url: https://www.linkedin.com/in/premkumarmasilamani
36-
english-blog-url: https://blog.smileprem.com/
39+
english-blog-url: https://www.premkumarmasilamani.com/blog
3740
tamil-blog-url: https://tamil.smileprem.com/
3841
life-coach-url: https://cal.com/coachprem/chemistry-session

_includes/common-footer.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<a href="{{ site.url }}">Home</a>
2+
3+
&nbsp;|&nbsp;
4+
5+
<a href="{{ site.urls.linkedin }}">Software Architect</a>
6+
7+
&nbsp;|&nbsp;
8+
9+
<a href="{{ site.english.url }}">Blog</a>
10+
11+
&nbsp;|&nbsp;
12+
13+
<a href="{{ site.tamil.url }}">வலைப்பதிவு</a>
14+
15+
&nbsp;|&nbsp;
16+
17+
<a href="{{ site.urls.coach }}">Life Coach</a>
18+
19+
<p>{{site.copyright}}</p>

_includes/common-metadata.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
3+
<link rel="icon" href="data:,">
4+
5+
{% seo %}

_includes/common-style.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<style>
2+
html {
3+
display: table;
4+
margin: auto;
5+
}
6+
7+
body {
8+
display: table-cell;
9+
vertical-align: middle;
10+
max-width: 600px;
11+
line-height: 1.5;
12+
padding-left: 5px;
13+
padding-right: 5px;
14+
}
15+
16+
img {
17+
max-width: 100%;
18+
}
19+
20+
td, th {
21+
border: 1px solid grey;
22+
padding: 5px;
23+
}
24+
</style>

_includes/english-rss.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} - {{ site.tagline }} - RSS 2.0 Feed" href="{{ site.english.url }}/feed.xml">

_includes/english-subscribe.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Thanks for reading my blog post. I hope this one made you think. If you have question, comment or feedback write to my <a href="mailto:{{ site.email }}">personal email</a>. I personally read all the emails and respond to the ones that needs a conversation.
2+
<br/><br/>
3+
Stay updated with the latest posts by subscribing to our <a href="{{ site.english.url }}/feed.xml">RSS Feed</a> or joining our <a href="{{ site.english.newsletter }}">Newsletter</a>.
4+
<br/><br/>
5+
I do read a lot of books. Here are some of my <a href="{{ site.english.url }}/books">book recommendations</a>.

_layouts/common-empty.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ content }}

_layouts/english-default.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html itemscope itemtype="https://schema.org/Blog" lang="en-US">
3+
<head>
4+
{% include common-metadata.html %}
5+
{% include english-rss.html %}
6+
{% include common-style.html %}
7+
</head>
8+
<body>
9+
{{ content }}
10+
<hr>
11+
<div style="text-align: center;">{% include common-footer.html %}</div>
12+
</body>
13+
</html>

_layouts/english-page.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: english-default
3+
---
4+
<h2>{{ page.title }}</h2>
5+
{{ content }}
6+

_layouts/english-post.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: english-default
3+
---
4+
<div>
5+
<h2>{{ page.title }}</h2>
6+
{{ page.date | date_to_string }}
7+
<br/>
8+
{{ content }}
9+
</div>
10+
<div>
11+
{% if page.previous.url %}
12+
<a href="{{page.previous.url}}">&lt;&lt; Older</a>
13+
{% else %}
14+
Older
15+
{% endif %}
16+
&nbsp;
17+
{% if page.next.url %}
18+
<a href="{{page.next.url}}">Newer &gt;&gt;</a>
19+
{% else %}
20+
Newer
21+
{% endif %}
22+
</div>
23+
<br/><hr/>
24+
<div>
25+
<br/>
26+
{% include english-subscribe.html %}
27+
<br/>
28+
</div>
29+
<br/>

_local-config.yml

+27-24
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
1-
title: smileprem
2-
tagline: on a journey called life
1+
title: Premkumar Masilamani
2+
tagline: On a journey called Life
33
url: http://localhost:4000
4-
#logo: add-some-logo-here
54
copyright: copyleft @ 2009.
65

7-
author: Premkumar Masilamani
8-
9-
mobile: xxx-xxx-xxxx
10-
11-
social:
12-
name: Premkumar Masilamani
13-
links:
14-
- https://www.linkedin.com/in/premkumarmasilamani
15-
- https://github.com/smileprem
6+
english:
7+
title: Premkumar Masilamani
8+
tagline: On a journey called Life
9+
author: Premkumar Masilamani
10+
url: http://localhost:4000/blog
11+
img-path: http://localhost:4000/blog/public/images
12+
download-path: http://localhost:4000/blog/public/downloads
13+
newsletter: https://eepurl.com/dE1QD1
14+
15+
16+
tamil:
17+
title: Premkumar Masilamani
18+
tagline: On a journey called Life
19+
author: Premkumar Masilamani
20+
url: http://localhost:4000/tamil
21+
img-path: http://localhost:4000/tamil/public/images
22+
download-path: http://localhost:4000/tamil/public/downloads
23+
newsletter: https://eepurl.com/dE1QD1
24+
25+
26+
urls:
27+
linkedin: https://www.linkedin.com/in/premkumarmasilamani
28+
github: https://github.com/premkumar-masilamani
29+
coach: https://cal.com/coachprem/chemistry-session
1630

1731
include:
1832
- "_pages"
@@ -25,15 +39,4 @@ plugins:
2539

2640
paginate: 1000
2741

28-
permalink: /:title/
29-
30-
img-path: http://localhost:4000/public/images
31-
download-path: http://localhost:4000/public/downloads
32-
33-
newsletter: https://eepurl.com/dE1QD1
34-
35-
home-page-url: https://www.smileprem.com
36-
software-architect-url: https://www.linkedin.com/in/premkumarmasilamani
37-
english-blog-url: https://blog.smileprem.com/
38-
tamil-blog-url: https://tamil.smileprem.com/
39-
life-coach-url: https://cal.com/coachprem/chemistry-session
42+
permalink: /:title/

blog/.DS_Store

6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: english-post
3+
title: Human Minds - An Exploration
4+
date: 2010-06-12
5+
category: english
6+
---
7+
8+
**Book:** Human Minds - An Exploration
9+
**Author:** Margaret Donaldson
10+
**ISBN-13:** 978-0140170337
11+
12+
Margaret Donaldson is Emeritus Professor of Developmental Psychology at the University of Edinburgh. In this book, she discusses in detail the development of the human brain from childhood. She defines and explains the four essential modes in which our brain develops and functions. Point-mode, Line-mode, Construct-mode, and Transcendent-mode with lots of research data from well-known scientists in this field.
13+
14+
Even though this book reads like a text-book of Psycho-analysis field, she hooks you up into this book very quickly. Since the first section of the book deals with the development of the children brain, lots of case studies about the children spread over this book. Anything related to kids must be interesting. (No excuses, even if its a text-book).
15+
16+
She details the modes of our brain, with precise data and the time-lines. Ex. The child brain will be in Point-mode until the eighth month approx, and then it transcends to Line-Mode for next three years. During this period, how the child will behave and how his/her brain can be trained to develop to its full capacity, are explained. It gave me meaningful information on kids brain, which every parent must know. I thank her for that.
17+
18+
So far, so good. Until the interval...
19+
20+
The second section of the book deals with brains functionality when it's mature. (i.e., an adult's brain). Margaret tried to explain through the medium which she is not comfortable with. She touches a few religions - Hinduism, Christianity, Buddhism, Judaism, Muslim, etc. to explain, how the brain switches the mode when dealing with emotions and raw information.
21+
22+
I feel that the author drifted away from what I expected from the book and tried to explain the things which she may not understand fully (with a disclaimer, of course). She went on to describe the "self-realization" in various religions concerning modes of the brain. One good thing is that she doesn't conclude anything; instead, she puts them as questions, back to us. So, if you know that specific religion, the text will make sense to you.
23+
24+
I felt that I am in Margaret's class on Human Minds rather than reading a book. The writing style could be improved, avoiding long sentences and with proper punctuation. If you have the habit of reading out loud, then you will gasp for oxygen, while reading :)
25+
26+
Overall, I am happy that I came to know a lot about human brain development. I would suggest you read the first half of the book. The second half is your choice.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: english-post
3+
title: The 4-Hour Work Week
4+
date: 2010-07-03
5+
category: english
6+
---
7+
8+
**Book:** The 4-Hour Workweek
9+
**Author:** Timothy Ferriss
10+
**ISBN-13:** 978-0307465351
11+
12+
"The 4-hour work week - Escape the 9-5, live anywhere and join the new rich." The book, which transformed few of my beliefs, addressed the fears that I had in me, without me knowing that. Tim painted new colors in my dream picture, with his own and I love it.
13+
14+
This book is constructed of 4 major groups - DEAL - (Definition, Elimination, Automation & Liberation) with multiple chapters. Many chapters end with Q&A. I would suggest you take the time to answer those questions. If you just flip through the pages, without associating your own life, I doubt this book will make any difference, other than leaving you in surprise. The book begins with the definition of the "New Rich" and Tim's real-life story.
15+
16+
In the first group **D - Definition**, the author discusses the differences between the NR and others, identifying the goals and introduces Dreamline and TMI. "The fat man in the red BMW convertible" - this metaphor made me think a lot. That's what most of the ultra-successful millionaires look like. I do not have the slightest interest to become one of them. The comfort challenges like eye gazing, proposing, getting phone numbers etc are really good. I even suggested them to my friend and he is happy. (I do that already, so did need it)
17+
18+
The second group **E - Elimination** is what I would suggest everyone read. Even if you love to work more than 8 hrs a day, these simple tips and techniques will help you to perform better. The 80/20 principle and Parkinson's law are explained with live examples. Tips on selective ignorance and time management are excellent. For example, The number of times, you check emails on a busy day and the time you lose with interruption those emails brings is directly proportional. I started checking emails only a few times in a day and close "Lotus Notes" (Email client) as soon as I am done with reading emails. You won't believe, it looks very simple but very productive. The emails which I use to respond immediately were not that urgent than the things that I was doing.
19+
20+
The third group **A - Automation**. Introduced a lot of new things. Outsourcing your day to day mundane activities to a virtual assistant is completely new to me and I am gonna hire a VA for me :) The idea of separating income from your time spent is really required for having a mobile lifestyle. Since the author followed the path of the entrepreneur, he discloses all the tips and tricks of marketing, products, affiliations, royalty, licensing etc. But mine is a different ball game related to creativity, so these chapters took a little more time to complete.
21+
22+
The last group **L - Liberation**. Starts with the tips on how to escape from the office. ha ha ha ah.. no.. not in the way you think. Instead of working for 30 - 45 years and planning for retirement, the author suggests mini-retirements of three to six months, which is completely practical and will give you a glimpse of how your retirement will feel like. After one mini-retirement, your perception about retirements will definitely change and you are still young to change the decisions ;). He provides the practical tips and step by step instructions for your mini-retirements and a tour around the world.
23+
24+
The in last few "Restricted Reading" chapters, the author lists the books, resources that you will need for a vagabonding life. This book packed more information that It could possibly include. It was a very pleasant experience reading a book like this. Try it :)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: english-post
3+
title: The Leader Who Had No Title - A modern fable on real success in business and in life
4+
date: 2010-07-17
5+
category: english
6+
---
7+
8+
**Book:** The Leader Who Had No Title
9+
**Author:** Robin Sharma
10+
**ISBN-13:** 978-8184951196
11+
12+
Should I really write a review of Robin Sharma's book?. His name stands better than the best book-review anyone could write for his book. Hmm... let me share some of the insights that are spread throughout this book. This book packs 15 yrs of his leadership advisory experience, which was once a closely guarded secret. Robin tried to make this book interesting by using the story of an Iraq war vet Blake Davis.
13+
14+
Blake served in Iraq war and is having a tough time transitioning to civilian life. He is having trouble with the relationships and job. Tommy, his father's friend comes to his life and introduces him to the philosophy of "LWT - Lead Without a Title". Blake gets introduced to four different teachers and learns philosophy with at most interest. Transformation of Blake from playing victim-hood to leading is described very naturally.
15+
16+
This book is packed with a hell lot of quotes from well-known personalities all over the world. Some of the quotes from Robin are awesome. Lots of acronyms are used and lots of repetition to instill these concepts in the reader's mind. Robin Sharma summarizes the philosophy under four different principles, taught by four different teachers. The teachers Anna, Ty, Jackson, and Jet are strikingly different from each other but follows the same principle.
17+
18+
I would like to give a glimpse of these four principles but suggest you read the book to grasp it completely.
19+
20+
**Principle 1: You need no title to be a leader.**
21+
Leadership is not reserved for the selected few who lead the organizations or the countries. Everyone has the power and potential to lead by example. You need to be very innovative and be a master at whatever you do. Be it street sweeping or an exquisite artwork of calibrating diamonds or a CEO. Be a master of it. Be authentic and have guts to take difficult decisions when the rest of the world hides in the cocoon. You should have your own value systems or ethics to guide you along your route.
22+
23+
**Principle 2: Turbulent times build great leaders.**
24+
Remember the old quote, "Smooth seas never make a skilled sailor". But how often, do we remember this?. Robin Sharma devotes more pages to this principle than the rest and pushes the principle into our mind, without us realizing it. It's good. "Life begins at the end of the comfort zone". Let's celebrate the tough time with a big smile :)
25+
26+
**Principle 3: The deeper your relationship, the stronger your leadership.**
27+
I cannot emphasize the importance of this principle in our life. Be it, professional or personal, relationships are very very important. DON'T break any relationship in your life, whatever the reason is. At the end of life - money, power, position, a college degree doesn't matter. It's the fulfilling relationships that you have earned, matters. So, go for it. Just mingle with everyone, have fun. That's what we are all here for !!!
28+
29+
**Principle 4: To be a great leader, first become a great person.**
30+
This principle details about the personal life of a leader. The importance needs to be given to personal health, family, friends, fun-time, and self-realization. Robin Sharma gives seven essential steps to become a great person.
31+
32+
1. Learning
33+
2. Affirmations
34+
3. Visualization
35+
4. Journaling
36+
5. Goal setting
37+
6. Exercise
38+
7. Nutrition
39+
40+
I am doing most of these and I know the importance of these first hand. Please try and transform.
41+
42+
This is not just another book, which you will read and stack it in your library. Make this a constant companion and keep it on your coffee table. Refer to this book as often as you want. It's worth every penny.

0 commit comments

Comments
 (0)