-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearning-to-code-html
More file actions
17 lines (15 loc) · 4.97 KB
/
learning-to-code-html
File metadata and controls
17 lines (15 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html> <html> <head> <title>Learning to Code | Steve Brewer</title> <meta charset=utf-8> <meta content='width=device-width, initial-scale=1' name=viewport> <link href='https://fonts.googleapis.com/css?family=Cormorant+Garamond:400,400i,700|Oswald:400,700' rel=stylesheet> <link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel=stylesheet> <link href='https://cdn.datatables.net/v/dt/dt-1.10.16/datatables.min.css' rel=stylesheet> <link href="/stylesheets/reset.css" rel=stylesheet /> <link href="/stylesheets/application.css" rel=stylesheet /> <link href='/img/favicon.svg' rel=icon type='image/png'> <link href='/img/favicon.png' rel=icon type='image/png'> <link rel=alternate type="application/atom+xml" title="Atom Feed" href="/feed.xml"/> </head> <body> <header> <div class=m-navbar__mobile> <div class=m-navbar__menu-button> <a class=js-reveal__trigger href='#'> Menu <i class='fa fa-plus'></i> </a> </div> <ul class='m-navbar js-reveal__hidden'> <li> <a href='/about.html'> About </a> </li> <li> <a href='/'> Articles </a> </li> <li> <a href='/quotes.html'> Quotes </a> </li> <li> <a href='/reading.html'> <i class='fa fa-book'></i> Reading </a> </li> </ul> </div> <ul class='m-navbar m-navbar--desktop'> <li> <a href='/about.html'> About </a> </li> <li> <a href='/'> Articles </a> </li> <li> <a href='/quotes.html'> Quotes </a> <li> <a href='/reading.html'> Reading </a> </li> </li> </ul> </header> <article itemscope='' itemtype='http://schema.org/BlogPosting'> <section class=a-section> <div class=a-content--title> <h1 itemprop='name headline'>Learning to Code</h1> <div class=m-post__meta> <h3> <time datetime=2016-04-05 itemprop=datePublished> <i class='fa fa-calendar'></i> 05 April 2016 </time> </h3> </div> </div> <div class=a-content> <div itemprop=articleBody><p><a href="http://treehouse.7eer.net/c/248218/228915/3944">Treehouse</a> have nailed education. <a href="http://ryancarson.com/">Ryan Carson’s</a> faculty of teachers conjure up detailed, light and engaging videos which you can play at a speed to suit.</p> <p>The videos are broken up regularly by quizzes and code challenges to keep you engaged, check the knowledge is going in and provide an instant reward stimulus. Rewards are vital for <a href="http://amzn.to/1UDJSlT">priming neurotransmitters for learning</a>, and forming habits that stick.</p> <p>Badges, points and a green ‘well done’ tick for getting answers right may not seem like actual ‘rewards’ in the traditional sense, but they’re enough to trick your brain into ‘feeling’ rewarded, which is enough. Every habit needs a cue and a reward, says Charles Duhigg in his book the <a href="http://amzn.to/1UDHXxM">Power of Habit</a>. Cue my Treehouse addiction…</p> <p>Countless days evaporate as I sit absorbed in a course on double playback speed, bolting through quizzes, getting as high as a slot-machine junkie — only I’m winning every time and when this binge sesh is over, I’ll be more skilled than I was yesterday. I’ll be making things I couldn’t make last week.</p> <p>Last month I enrolled on the new Treehouse Front End Development Techdegree program. 12 graded projects spread across six months with a final proctored exam. At the end, I’ll have a qualification from Treehouse and a portfolio of unique projects I created and a network of contacts from their student Slack channel.</p> <p>This is the future of education. In a results and data driven world, the days of universities are numbered.</p> </div> <div id=disqus_thread></div> <script>
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//stevebrewer.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script> <noscript> Please enable JavaScript to view the <a href='https://disqus.com/?ref_noscript' rel=nofollow>comments powered by Disqus.</a> </noscript> </div> </section> </article> <footer> <div class=a-social-icons> <a href='https://twitter.com/svpersteve' target=_blank> <i class='fa fa-twitter'></i> </a> <a href='https://linkedin.com/in/svpersteve' target=_blank> <i class='fa fa-linkedin'></i> </a> <a href='https://github.com/svpersteve' target=_blank> <i class='fa fa-github'></i> </a> <a href='https://instagram.com/svpersteve' target=_blank> <i class='fa fa-instagram'></i> </a> <a href='mailto:steve.v.brewer@gmail.com?subject=Enquiry' target=_blank> <i class='fa fa-envelope'></i> </a> <a href='/feed.xml' target=_blank> <i class='fa fa-rss'></i> </a> </div> <p> <i class='fa fa-copyright'></i> Steve Brewer 2018 </p> </footer> <script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script> <script src='/javascripts/application.js'></script> <script src='https://cdn.datatables.net/v/dt/dt-1.10.16/datatables.min.js'></script> <script>
$(document).ready(function() {
$('#reading-list').DataTable( {
"paging": false,
"order": [[ 2, "desc" ]]
} );
} );
</script> </body> </html>