Talk Python Podcast Interview - Teaching Django
An interview with Michael Kennedy on learning and teaching Django.
43 posts from 2018
An interview with Michael Kennedy on learning and teaching Django.
Build a basic web application with JavaScript, Express, and Node.
A comparison of TCP (Transmission Control Protocol) and UDP (User Datagram Protocol)
A guide to understanding pure functions in JavaScript.
A guide to understanding prototypal inheritance in JavaScript.
Understand how and when to use a function expression vs a function declaration.
An overview and code example of an array in JavaScript.
An overview and code example of Quicksort in JavaScript.
An overview and code example of Mergesort in JavaScript.
Iterative and recursive solutions.
3 ways to find a number in an ordered array with JavaScript
Web frameworks make life much easier when building robust, scalable web applications. Why reinvent the wheel and build everything from scratch yourself? They are used by everyone from small startups...
In the early days of the internet all web pages were static: they displayed the same content to every user. Over time dynamic, database-backed websites emerged powered by programming languages...
A detailed quick summary on JavaScript
Python has a special syntax, * (single asterisk) and ** (double asterisks), that lets you pass a variable number of arguments to a function. By convention, these are written as...
An interview with Tobias Macey on learning and teaching Django.
An update 6 months and one more book later on what I've learned.
Meteor is a fast and accessible framework for building Node.js apps. It makes building MVPs and learning web development very accessible. There are multiple Meteor hosting options currently available.
Build a counter button watch in React.
Build a stop watch in React.
Build a digital clock that updates every second.
Build a basic voting app for your favorite Beatle to learn about props, events, and state in React.
Build an input box that outputs in realtime.
A plain English description of closures, the for loop gotcha, and how to make private methods.
An explanation that doesn't use jQuery, setTimeout, etc.
Make a real-time form input in React.
Djangox helps developers launch new Django projects quickly with a complete user authentication flow, custom user model, social authentication options, and more.
Learn how to change a model field name in your serializer using source.
What I've learned writing and self-publishing a book on web development with Django.
Test prep is a global, multi-billion dollar business currently undergoing a massive online shift. Traditional companies like Kaplan and Princeton Review are struggling to adapt and cannibalize their profitable, offline...
How to efficiently merge two sorted arrays in JavaScript.
Write a function that takes an array of stock prices and returns the best profit you could make from one purchase and one sale.
An up-to-date list of online JavaScript video tutorials.
Find the highest product of two numbers in a JavaScript array.
Find the highest product of three numbers in a JavaScript array.
Print out all odd or even numbers in a range.
Understand why parseInt() and map() interact strangely on a JavaScript array.
Learn multiple ways to merge two arrays in JavaScript.
Learn multiple ways to duplicate an array in JavaScript.
Learn 4 ways to convert an array to a string in JavaScript.
Learn multiple ways to calculate a Fibonacci number in JavaScript.
Learn the two classic ways to sort an array of strings or numbers
Learn multiple ways to remove duplicates from an array in JavaScript.