Juzzie Smith : Little Journey – Lyrics #I love this song
I love the way the sun shines for everyone
I love the feelin’ of the warmth flowin’ through my blood
Well the sun it recharges me makes me feel happy
Then it takes me on a little journey
I love the way a wave ripples through the sea
Travels far just to break, for you or me
When water is coverin’ over me, takes away my negativity
Then it takes me on a little journey
I love the way a seed grows into a tree
I love how we can sit under, and feel free
With the shade coverin’ over me, connectin’ to what, I believe
Nature’s gonna’ take me on a little journey
Estimate time for programming projects
How possible is it to estimate time for programming projects?: http://programmers.stackexchange.com/questions/39468/how-possible-is-it-to-estimate-time-for-programming-projects
“I would recommend to split task as much as possible before performing any evaluation, this exercise only will force you to have a deep understanding of what you have to do, and how you plan to do it. ”
Calculating Project Programming Times: http://stackoverflow.com/questions/3423508/calculating-project-programming-times
OLD: Painless Software Schedules: http://www.joelonsoftware.com/articles/fog0000000245.html
“Use Microsoft Excel…”
Evidence Based Scheduling: http://www.joelonsoftware.com/items/2007/10/26.html
Spotify: Sizen Sineido
What Code Should You Learn? PHP?
It’s not difficult to teach yourself programming with all the free resources available online today, but getting started is impossible if you don’t know which programming language you should learn. And the choice isn’t easy: thousands of computer programming languages exist, and dozens more are being created every year. Even if you narrow down your choices to only the most popular ones, there are still a lot to choose from.
PHP?
http://www.whoishostingthis.com/blog/2014/09/04/learn-to-code/
JQuery – Converts minutes into days, week, months and years
<script>
$(function() {
MINS_PER_YEAR = 24 * 365 * 60;
MINS_PER_MONTH = 24 * 30 * 60;
MINS_PER_WEEK = 24 * 7 * 60;
MINS_PER_DAY = 24 * 60;
MINS_PER_HOUR = 60;
$(“.minutes”).each(function() {
minutes = $(this).text();
minutes = parseInt(minutes);
years = Math.floor(minutes / MINS_PER_YEAR);
minutes = minutes – (years * MINS_PER_YEAR);
months = Math.floor(minutes / MINS_PER_MONTH);
minutes = minutes – (months * MINS_PER_MONTH);
weeks = Math.floor(minutes / MINS_PER_WEEK);
minutes = minutes – (weeks * MINS_PER_WEEK);
days = Math.floor(minutes / MINS_PER_DAY);
minutes = minutes – (days * MINS_PER_DAY);
hours = Math.floor(minutes / MINS_PER_HOUR);
minutes = minutes – (hours * MINS_PER_HOUR);
if(years){current_years_part = years +’ year(s) ‘; }else{ current_years_part = ”; }
if(months){current_months_part = months +’ month ‘; }else{ current_months_part = ”; }
if(weeks){current_weeks_part = weeks +’ week ‘; }else{ current_weeks_part = ”; }
if(days){current_days_part = days +’ day ‘; }else{ current_days_part = ”; }
if(hours){current_hours_part = hours +’ hour ‘; }else{ current_days_part = ”; }
$(this).text(current_years_part +’ ‘+current_months_part +’ ‘+current_weeks_part +’ ‘+current_days_part +’ ‘+current_hours_part +’ ‘+minutes+ ‘ minutes’ );
});
});
</script>
<body>
<span class=’minutes’>654321</span>
<span class=’minutes’>341834321</span>
<span class=’minutes’>5452334321</span>
</body>
similar source: http://stackoverflow.com/questions/7812742/converts-minutes-into-days-week-months-and-years