Tag: coding

  • PHP & MySQL Tutorial 42 – Date and time

    PHP & MySQL Tutorial 42 – Date and time

    Sample code: http://codemahal.com/video/date-and-time-in-php/ Original source

  • Arrow functions in JavaScript – What, Why and How – FunFunFunction #32

    Arrow functions are (pretty much) a shorter function syntax in JavaScript. Because of their extreme terseness, arrow functions allows us to use use functions in a new way, making lots of functions that are small, inline and single-purpose. Table of contents: 00:18 ► What are arrow functions in JavaScript 00:53 ► Why use arrow functions…

  • Prototype basics – Object Creation in JavaScript P3 – FunFunFunction #46

    We’ll go through the absolute basics of the prototype in this video. I’m going to explain why you should learn prototypes, and how they work. Complete series playlist: “Object creation in JavaScript” https://goo.gl/ELUE4B You’re probably used to doing inheritance with classes. JavaScript achieves inheritance using prototypes. The real-world analogy used when teaching classes is a…

  • Display Images from Directory in PHP Tutorial [English]

    Original source

  • Javascript Programming Tutorial | Cookies

    Want all of our free Javascript videos? Download our free iPad app at ‪http://itunes.apple.com/us/app/video-training-courses-from/id418130423?mt=8‬ More details on this Javascript training can be seen at http://www.infiniteskills.com/training/learning-javascript-programming.html This clip is one example from the complete course. For more free Javascript tutorials please visit out our main website. YouTube: https://www.youtube.com/user/OreillyMedia Facebook: https://www.facebook.com/OReilly/?fref=ts Twitter: https://twitter.com/OReillyMedia Website: http://www.oreilly.com/ Original source

  • Refactoring Javascript with Fred Lawler (Design + Code Series Appendix)

    Refactoring Javascript is a common task for the developer. Today I invite Fred Lawler to give us some pointer. Fred’s branch – https://github.com/fredlawl/Design-Code/blob/review/assets/js/functions.js Fred on Twitter: https://twitter.com/LTSuperbus Fred on Github: https://github.com/fredlawl – – – This video was sponsored by the DevTips Patron Community – https://www.patreon.com/DevTips Listen to Travis’ Podcast – http://www.travandlos.com/ Get awesomeness emailed to…

  • How to Build a Responsive Website From Start to Finish – Testimonial Javascript – Part17

    AAAAHHHHHH!! Javascript and other stuff!!! Today we make the client testimonials go swooosh, swooosh!!! — DevTips is a YouTube show about web design and development. “HTML5 Basics” Playlist: “CSS Basics” Playlist: “How to build a professional website from start to finish” Playlist: —- Follow the DevTips GitHub Page to get all the codez: https://github.com/DevTips DevTips…

  • Generators in JavaScript – What, Why and How – FunFunFunction #34

    Generators are (kind of) pausable functions in JavaScript. Another word for them is co-routines. They are used (among other things) to manage async operations, and play very well with promises. I’m also active on: ► Twitter https://twitter.com/mpjme ► Medium https://medium.com/@mpjme ► Quora https://www.quora.com/profile/Mattias-Petter-Johansson Resources: ► Recursion in JavaScript ► Promises in JavaScript ► ES6 JavaScript…

  • JavaScript Tutorial – Part 25: Arrays – Loops and Tables

    Get the files from GitHub: https://github.com/colorfest/JavaScriptTutorial In this video we show the basics of looping through an Array to populate a simple html table. For this example, we’re using document.write to print out the structure of the table and the results from our JavaScript Array. Original source

  • bind and this – Object Creation in JavaScript P1 – FunFunFunction #43

    This video is the first in a video series about how to do Object Creation in JavaScript. I will NOT be teaching object orientation principles in general – this video series is for you if you’re already pretty familiar with object orientation, but confused around how it works in JavaScript specifically. At the end of…