- published: 26 Apr 2016
- views: 252475
Source Code is a 2011 French-American science fiction film directed by Duncan Jones, written by Ben Ripley, and starring Jake Gyllenhaal, Michelle Monaghan, and Vera Farmiga. The film had its world premiere on March 11, 2011 at South by Southwest, and was released by Summit Entertainment on April 1, 2011 in North America and Europe.
The film received acclaim from critics upon its release and became a box office success, grossing over $147 million worldwide. Plans for a television adaptation at CBS were announced shortly after the film was released. However, these plans were scrapped in December 2014 in favor of a film sequel. The sequel is in development with Mark Gordon returning to produce and Anna Foerster attached to direct.
U.S. Army pilot Captain Colter Stevens (Jake Gyllenhaal), last aware of being on a mission in Afghanistan, wakes up on a commuter train to Chicago, at 7:40 am. To the world around him – including his traveling partner Christina Warren (Michelle Monaghan) and the bathroom mirror – he appears to be Sean Fentress, a school teacher. As he comes to grips with this revelation, the train explodes, killing everyone aboard.
Challenge may refer to:
The Mandelbrot set is the set of complex numbers c for which the function does not diverge when iterated, i.e., for which the sequence f(0), f(f(0)), etc., remains bounded in absolute value.
The set is closely related to Julia sets (which produce similarly complex shapes). Its definition and its name is the work of Adrien Douady, in tribute to the mathematician Benoit Mandelbrot.
Mandelbrot set images are made by sampling complex numbers and determining for each whether the result tends towards infinity when a particular mathematical operation is iterated on it. Treating the real and imaginary parts of each number as image coordinates, pixels are colored according to how rapidly the sequence diverges, if at all.
More precisely, the Mandelbrot set is the set of values of c in the complex plane for which the orbit of 0 under iteration of the quadratic map
remains bounded. That is, a complex number c is part of the Mandelbrot set if, when starting with z0 = 0 and applying the iteration repeatedly, the absolute value of zn remains bounded however large n gets. This can also be represented as
In this viewer submitted Coding Challenge, I take on the task of coding a Space Invaders game to play in browser in JavaScript/HTML and the p5.js library. Send me your Coding Challenge ideas! Contact: http://twitter.com/shiffman Source Code For This Challenge: p5.js: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_05_Space_invaders_p5.js Processing: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_05_Space_invaders p5.js: https://p5js.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH Help us caption & translate this video! http://amara.org/v/Qbs6/
This is part one of Javascript Programming. If you've been wanting to learn Javascript, this will help you get a quick head start. We'll cover the very basics and get you prepared for part 2 which will teach you to use jQuery to do some fun stuff to your web page in real time! Once you have it, Here's video 2!: http://youtu.be/WGPaZNYrHpo Learning Javascript (or learning programming of any kind) can feel a bit uncomfortable at first, but I promise it will come quickly.
Support on Patreon: https://www.patreon.com/gamkedo Try my free course: http://code-your-first-game.com (or full URL is https://www.udemy.com/code-your-first-game/ ) Next steps: http://gamkedo.com The (hacky) Snake source: https://pastebin.com/Z3zhb7cY About InteractionArtist, my 219 daily prototypes: https://www.youtube.com/watch?v=BgZrBpSISS0
Get the Cheat Sheet Here : http://goo.gl/TxNsQO Best Book on JavaScript : http://amzn.to/1WbMYvm Support Me on Patreon : https://www.patreon.com/derekbanas 00:22 Introduction 03:27 Variables 04:27 Math 12:00 Random Numbers 13:21 Strings 17:24 Styling Strings 18:14 If 21:44 Switch 23:04 Ternary Operator 23:55 While 24:51 Do While 25:52 For 27:37 For In 28:39 Arrays 34:42 Functions 36:41 Pass Function as Parameter 39:42 Receive Variable Number of Arguments 40:55 Return Variable Number of Arguments 42:02 Recursive Functions 43:54 Event Handling 46:24 Mouse Events 51:30 Key Events 54:02 Change Tag Value 56:41 Change Class 58:02 Change Input Element 59:20 Mouse X / Y Coordinates 1:01:42 Get Elements by Tag Name 1:03:00 Element Styling 1:05:48 Manipulating URLs 1:09:37 Editing Child Nodes 1:15...
In this video, I use the p5.js library to create a web-based countdown timer. I discuss the native JavaScript method setInterval() and well as p5's millis(). Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://twitter.com/shiffman The Coding Train website: http://thecodingtrain.com/ Links discussed in this video: millis() reference: https://p5js.org/reference/#/p5/millis getURLParams() reference: https://p5js.org/reference/#/p5/getURLParams Source Code for the all Video Lessons: https://github.com/CodingTrain/Rainbow-Code p5.js: https://p5js.org/ Processing: https://processing.org For...
Learn the fundamental features of JavaScript - the language used to add dynamic, interactive content to websites. I teach you how to get started with JavaScript, how to use variables, operators, arrays, properties, methods, custom functions, conditionals and loops. In 12 minutes. LEARN HTML IN 12 MINUTES http://youtu.be/bWPMSSsVdPk LEARN CSS IN 12 MINUTES http://youtu.be/0afZj1G0BIE LEARN PHP IN 15 MINUTES http://youtu.be/ZdP0KM49IVk ---------- Text Editors ---------- For Windows users, I recommend using Notepad++ to edit HTML files: http://notepad-plus-plus.org For Mac users, I recommend Sublime Text: http://www.sublimetext.com ---------------------------------------- SUBSCRIBE FOR MORE http://youtube.com/subscription_center?add_user=jaketvee TWITTER http://twitter.com/jakewright...
Did you know that we can create electronic dance music with JavaScript? Watch this presentation to learn how to do that with Node.js. CREDITS: This video was originally published on SFNode YouTube Channel (https://www.youtube.com/channel/UCbWHWaCKZqIm5pE5hSD7KFw). Please check out the channel to watch more presentations. SPEAKER: Walmik Deshpande, https://twitter.com/_walmik SLIDES: https://speakerdeck.com/walmik/node-dot-js PERMISSION: This video was published with the Author's permission.
In this 10 Minute Coding Challenge, I attempt to code a p5.js version of the Snake Game. Send me your 10 minute coding challenge! Contact: http://twitter.com/shiffman To see the debugging process: https://www.youtube.com/watch?v=yUO2bWfBgN8#t=39m00s Source Code For This Challenge: p5.js: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_03_Snake_game_p5.js Processing: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_03_Snake_game p5.js: https://p5js.org/ Wikipedia page for the Snake Game: https://en.wikipedia.org/wiki/Snake_(video_game) For More 10 Minute Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH
In this Coding Challenge, I build a word counting (concordance) web application in JavaScript. The video demonstrates a use of associate arrays, regular expressions, and other techniques previously covered as part of "Programming from A to Z." Next Video: https://youtu.be/fxQ0B6BkfKo http://shiffman.net/a2z/text-analysis/ Course url: http://shiffman.net/a2z/ Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: https://twitter.com/shiffman GitHub Repo with all the info for Programming from A to Z: https://github.com/shiffman/A2Z-F16 Links discussed in this video: ITP from Tisch School of the Arts: https://tisch.nyu.edu/itp Source Code for the all Video Lessons: http...
Once you're done with this, checkout lesson #2 - introduction to CSS: https://www.youtube.com/watch?v=gBi8Obib0tw How to put your website online (with coupon): https://www.youtube.com/watch?v=tq7dqdHCc7U How to build webpages with html, css, javascript tutorial for beginners. In this video, we'll cover how to develop websites using just the computer you have already. I'm using Sublime Text editor http://www.sublimetext.com/ and Google Chrome Other great text editors: Atom.io Brackets.io Notepad++ Now, if you just want a website and don't want to be a web developer, don't mess with learning all of this, get a site from squarespace.com and use squarespace plugins from http://thecustomsquare.com to make your site unique. Learn how to develop your own websites using the computer you alrea...
hello guys, just wanted to put this video out there today, this video is sped up 15 times to keep it short because this took some while. if you have any questions please feel free to leave a comment, i really like helping you guys out and answering all your questions :) twitter: https://twitter.com/devsfullstack facebook: https://www.facebook.com/FullstackDevsYT download the project here: http://peterbousaada.com/download/admin_design.zip Songs: 1--------------------------------------------------------------------------------- Song: Icehunt - Hover (feat. Helen Tess) [NCS Release] Music provided by NoCopyrightSounds. Watch: https://youtu.be/j51Bixo4ZBE Download/Stream: http://ncs.io/HoverCr 2--------------------------------------------------------------------------------- Song: Cult...
In this coding challenge, I'm going to show you how to create a fractal tree with a recursive algorithm in p5.js. This is the first part of a series on algorithmic botany. Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges! Contact: https://twitter.com/shiffman Links discussed in this video: Nature of Code class on Kadenze: https://www.kadenze.com/courses/the-nature-of-code/info Algorithmic Botany: http://algorithmicbotany.org/ Source Code for the Video Lessons: https://github.com/shiffman/Video-Lesson-Materials p5.js: https://p5js.org/ Processing: https://processing.org For More Algorithmic Botany Videos: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6bxNsa_3SfCPyF9Md9XvXhR For More Coding Challenges: https://www....
Angular 4 (latest version of Angular 2) - The Complete Guide ☞ http://learnstartup.net/go/H1jE_tD3l Angular 2 and NodeJS - The Practical Guide to MEAN Stack 2.0 ☞ http://learnstartup.net/go/S1y1-FIGx ES6 Javascript: The Complete Developer's Guide ☞ http://learnstartup.net/go/BkGZcMlbe The Complete Node.js Developer Course (2nd Edition) ☞ http://learnstartup.net/p/r1K7HXybe Beginner API development in Node, Express, ES6, & MongoDB ☞ http://learnstartup.net/p/SkN62OLZx Typescript 2 Masterclass: Node REST API + Angular 2 Client ☞ http://learnstartup.net/p/r1g4WNHGg
In this Coding Challenge, I attempt an implementation of the A* pathfinding algorithm to find the optimal path between two points in a 2D grid. I begin by explaining the mechanics of how the algorithm works, look at pseudo-code, and then write the algorithm in JavaScript using the p5.js library for rendering. Part 2 focuses on adding obstacles (walls) to the grid as well as functionality for moving diagonally. . In Part 3, I look at ways to improve the visual design and invite you to put your own spin on it. Part 2: https://youtu.be/EaZxUCWAjb0 Part 3: https://youtu.be/jwRT4PCT6RU Online demo: https://codingtrain.github.io/AStar/ Code: https://github.com/CodingTrain/AStar To see the whole unedited version of this challenge: https://www.youtube.com/watch?v=S4yQYiAECnM&t;=34m50s Support...
This video covers the basics of node.js. What is node.js? What is server-side programming? What might you use it for and how do you get started? Basic unix commands and working with terminal are covered. Darius Kazemi Eyeo talk: https://vimeo.com/112289364 Allison Parrish twitter bot tutorial: http://air.decontextualize.com/twitterbot/ NY Magazine on bots: http://nymag.com/following/2015/11/12-weirdest-funniest-smartest-twitter-bots.html All examples: https://github.com/shiffman/Video-Lesson-Materials Contact: https://twitter.com/shiffman Next video: https://youtu.be/s70-Vsud9Vk Learn JavaScript basics: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6Zy51Q-x9tMWIv9cueOFTFA Learn Processing basics: https://www.youtube.com/user/shiffman/playlists?sort=dd&shelf;_id=2&view;=50 Mor...
http://2017.jsconf.eu/speakers/denis-radin-applying-nasa-coding-standards-to-javascript.html Jet Propulsion Laboratory - scientific institution making research and development for NASA. Their portfolio includes such famous missions as Curiosity Mars rover and Voyager probe which left solar system after 25 years of flight and still providing scientific information. High level of automation and long duration of missions led to superior demands to software quality. As a result of JPL amazing experience a set of code guidelines was developed and published recently. Since demands to web-driven software constantly increase and more critical tasks are entrusted to JavaScript, lets apply NASA coding guidelines to JavaScript / HTML applications for higher performance, reliability and the better wo...
Watch part 2 with Chris: https://youtu.be/nL2wpZV1LYc Subscribe to Chris' YouTube channel: https://www.youtube.com/c/dev_coffee Website we built: http://www.andvote.com/ Source code: https://github.com/andvote/andvote ▼ Follow me ▼ on Twitter: https://twitter.com/bookercodes on GitHub: https://github.com/alexbooker ▼ Links I Mention in the Video (in the Order I Mention Them)▼ Joe https://github.com/karan/joe ESLint http://eslint.org/ tmux https://tmux.github.io/ Babel https://babeljs.io/ Nodemon https://github.com/remy/nodemon Sequelize http://docs.sequelizejs.com/en/latest/ My Sequelize course https://www.youtube.com/playlist?list=PL5ze0DjYv5DYBDfl0vF_VRxEu8JdTIHlR sequelize-connect https://github.com/jspizziri/sequelize-connect Redis: http://redis.io/ My shell aliases: https://githu...
In this coding challenge, I program from scratch the Mandelbrot set with p5.js Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges! Contact: https://twitter.com/shiffman Links discussed in this video: Wikipedia on Mandelbrot Set: https://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set Explorer: https://meiamso.me/old/mandelbrot/mandelbrot.php Source Code for the Video Lessons: https://github.com/shiffman/Video-Lesson-Materials p5.js: https://p5js.org/ Processing: https://processing.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH Help us caption & translate this video! http://amara.org/v/Qbrn/
Follow me on twitter! https://twitter.com/CodyLSeibert In this video, learn how to programming a basic two player connect four game using Javascript, jQuery, CSS, and HTML. This tutorial is geared towards people who understand the basics of web technologies, but maybe want to watch how another developer builds a connect four application. Feel free to fork the repo for yourself here: https://github.com/codyseibert/js-connect-four
w00tcamp is een tweedaagse hackathon van Q42. En nóg toffer gemaakt door Google en UNITiD! Meer weten over Q42? https://www.q42.nl Meer weten over w00tcamp? https://w00t.camp De w00tcampprojecten checken? https://w00t.camp/project/all w00tcamp sfeer proeven? https://www.instagram.com/w00tcamp
In this new series, I will teach you about a coding language-- simpler than Java Script. Processing Java Script. ProcessingJS is a computer language that allows users to create programs that are amazing. In the first part, I just teach you about basic shapes: rectangles/squares and ovals/circles rect(x, y, width, height); ellipse(x, y, width, height); Please Like, comment, subscribe and share :)
On this episode, implementation of factorial in both recursive and iterative version...initial bug in factorial_iterative :P ... About the Deliberate Think LIVE Show The Deliberate Think LIVE Show is an attempt to help students get the feel of the PROCESS and the struggle of conquering technical stuff like computer science and mathematics. We solve problems that we have SEEN FOR THE FIRST TIME. (All material used belong to their respective owners. FAIR USE intended)
On this episode, use console.log() to print Hello, World! on a new line in the console, which is also known as stdout or standard output. About the Deliberate Think LIVE Show The Deliberate Think LIVE Show is an attempt to help students get the feel of the PROCESS and the struggle of conquering technical stuff like computer science and mathematics. We solve problems that we have SEEN FOR THE FIRST TIME. (All material used belong to their respective owners. FAIR USE intended)
Today we... - Talked about using npm scripts like `start`, `db:init`, `db:loadschema` as a way to make our code easily runnable for other developers. - Mapped out the api routes that we will be creating (see below) - Discussed the difference between PUT and POST: with PUT you need to send along *all* the fields for the resource, including ones you're not updating. With POST you can only send the ones you're updating. This is because PUT is *idempotent* - Justin offered a confusing example of PUT vs POST. He's sorry, and will find a clearer one to send along. 😉 - Wrote database functions to *create*, *read* and *delete* contacts. - Talked about SQL injection attacks, and why it's important to use pg-promise's *parameterized queries* (see: https://github.com/vitaly-t/pg-promise#queries-and-p...
Thank you for watching you can you get my game: https://pastebin.com/KyACB6VR get full playlist :
Twitch Front-End Coding Hour #7 Slow Jam - After talking to a colleague, decided that a refactor is in order for the twitch bot! We're going with 3 separate node processes and a db (4 total "moving pieces"). This is the initial explanation and setup! --- This Episode's Github Repo: https://github.com/pstrawberrie/pbot --- Watch live on Twitch - weekdays at 5PM MST! https://www.twitch.tv/pstrawberrie --- Jump on Social Media to discover more juicy pstrawberrie content and join the community! On the Web @ https://pstrawberrie.live/ On Twitch @ https://twitch.tv/pstrawberrie On Instagram @ https://instagram.com/pstrawberrie On Twitter @ https://twitter.com/pstrawberrie On Facebook @ https://facebook.com/pstrawberrie
In this coding challenge, I attempt to create a version of the classic one-line Commodore 64 BASIC program in JavaScript using p5.js. This coding challenge is inspired by the book 10 PRINT (https://10print.org/, Amazon: http://amzn.to/2wJlRVx ) 10 PRINT CHR$(205.5+RND(1)); : GOTO 10 Fun Fact: The C64 character set is called PETSCII, from the prior Commodore Pet. It’s interesting because unlike ASCII, it’s full of graphics: https://en.wikipedia.org/wiki/PETSCII Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com To Support the Processing Foundation: https://processingfoundation.org/support Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://...
Oh, look! It's a new Striker video! What a suprise. ---------- My PC Specs: HP Notebook Graphics Chipset: AMD Radeon(TM) R5 Graphics Memory Size: 1024 MB Memory Type: DDR3 Core Clock: 847 MHz Windows Version: Windows 10 System Memory: 8 GB CPU Type: AMD A8-7410 APU with AMD Radeon R5 Graphics ------------ Playing: Discord Bot Making Recorded with: OBS Recorded on: 24/9/17 ------------ Need to contact me? Discord: Striker#7250 Google Plus & Hangouts: +Striker [GD] Official server: "soon" That's about all contacting ------------ Until next time!
A Mario like game in pure Javascript, without any libraries. Hope you enjoy this! Source Code : http://github.com/codemodeco/js_game
🔻🔻🔻🔻🔻 Lis la description 🔻🔻🔻🔻🔻 💠 Petite absence sur youtube et j'en suis désolé :( Mais bon, on approche des 100 abonnés !!! Continuez comme ça ! 🔶 Le phone bleu : https://codepen.io/CowZax/pen/rGWxxy 🔶 Le phone rouge : https://codepen.io/CowZax/pen/pWNzXq ABONNE TOI POUR PLUS DE VIDÉO ET ACTIVE LA CLOCHE POUR LES NOTIFICATIONS ! 🔔
*Team 1: ICE TEA TEAM -Thành viên: Hoàng Minh Hải, Lương Văn Trà, Nguyễn Bá Duy, Đỗ Anh Tú. -Sản phẩm dự thi: Một công cụ như một mạng xã hội nhỏ dành cho các thành viên CLB. Giúp gắn kết các giữa các thành viên trong CLB nói chung và đặc biệt giúp các bạn thành viên mới hoà nhập một cách nhanh chóng. Thông qua nhiều tính năng đặc biệt như: Profile của các thành viên, Chat, Newfeed, và đặc biệt Video Call - kết nối ngẫu nhiên 1 “thành viên” cũ với 2 “cộng tác viên” mới nhằm giúp các bạn CTV nhanh chóng làm quen nhau và có cơ hội tìm hiểu về clb JS. Chúng tớ tin rằng, nhờ làm việc cùng nhau, tương tác với nhau, hiểu về nhau là cách nhanh chóng kết thân. Từ đó cùng nhau xây dựng clb ngày càng trất’s.
In this coding challenge, I attempt to program a clock in HTML5 canvas with the p5.js library. This challenge was inspired by John Maeda's "12 o'clocks" and Golan Levin's assignment on the subject in his 60212 Interactivity & Computation class (http://cmuems.com/2016/60212/lectures/lecture-09-09b-clocks/maedas-clocks/) Submit links to your clocks! https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_74_Clock Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com To Support the Processing Foundation: https://processingfoundation.org/support Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://twitter.com/shiffman The Codi...
Nhóm 3: TEAM 40° -Leader: Nguyễn Lê Vũ Long -Supporter: Nguyễn Đắc Sang -Thành viên: Hà Thị Ngọc Lưu Ly, Nguyễn Quang Linh, Nguyễn Vũ Minh -Sản phẩm dự thi: Một tiện ích Chrome để quản lý các group Facebook của các CLB thuộc Đại học FPT. Tính năng: chỉ chọn những group mà bạn muốn theo dõi, có thể thêm, bớt, sắp xếp các group tùy ý ,mỗi group có một phòng chat riêng, thành viên của group sẽ tự động tham gia vào phòng chat.Bên cạnh đó, phòng chat có tính năng hiển thị ảnh, clip, nhạc, chia sẻ file. Mỗi group sẽ hiển thị các bài viết dưới dạng rút gọn, tập trung vào nội dung bài viết và các hashtags, bài viết của admin sẽ được đánh dấu đặc biệt.
github repo: github.com/nyanpasuowo/shinobu -- Watch live at https://www.twitch.tv/kiss_shotuwu
In this viewer submitted Coding Challenge, I take on the task of coding a Space Invaders game to play in browser in JavaScript/HTML and the p5.js library. Send me your Coding Challenge ideas! Contact: http://twitter.com/shiffman Source Code For This Challenge: p5.js: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_05_Space_invaders_p5.js Processing: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_05_Space_invaders p5.js: https://p5js.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH Help us caption & translate this video! http://amara.org/v/Qbs6/
Get the Cheat Sheet Here : http://goo.gl/TxNsQO Best Book on JavaScript : http://amzn.to/1WbMYvm Support Me on Patreon : https://www.patreon.com/derekbanas 00:22 Introduction 03:27 Variables 04:27 Math 12:00 Random Numbers 13:21 Strings 17:24 Styling Strings 18:14 If 21:44 Switch 23:04 Ternary Operator 23:55 While 24:51 Do While 25:52 For 27:37 For In 28:39 Arrays 34:42 Functions 36:41 Pass Function as Parameter 39:42 Receive Variable Number of Arguments 40:55 Return Variable Number of Arguments 42:02 Recursive Functions 43:54 Event Handling 46:24 Mouse Events 51:30 Key Events 54:02 Change Tag Value 56:41 Change Class 58:02 Change Input Element 59:20 Mouse X / Y Coordinates 1:01:42 Get Elements by Tag Name 1:03:00 Element Styling 1:05:48 Manipulating URLs 1:09:37 Editing Child Nodes 1:15...
In this video, I use the p5.js library to create a web-based countdown timer. I discuss the native JavaScript method setInterval() and well as p5's millis(). Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://twitter.com/shiffman The Coding Train website: http://thecodingtrain.com/ Links discussed in this video: millis() reference: https://p5js.org/reference/#/p5/millis getURLParams() reference: https://p5js.org/reference/#/p5/getURLParams Source Code for the all Video Lessons: https://github.com/CodingTrain/Rainbow-Code p5.js: https://p5js.org/ Processing: https://processing.org For...
In this Coding Challenge, I build a word counting (concordance) web application in JavaScript. The video demonstrates a use of associate arrays, regular expressions, and other techniques previously covered as part of "Programming from A to Z." Next Video: https://youtu.be/fxQ0B6BkfKo http://shiffman.net/a2z/text-analysis/ Course url: http://shiffman.net/a2z/ Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: https://twitter.com/shiffman GitHub Repo with all the info for Programming from A to Z: https://github.com/shiffman/A2Z-F16 Links discussed in this video: ITP from Tisch School of the Arts: https://tisch.nyu.edu/itp Source Code for the all Video Lessons: http...
In this 10 Minute Coding Challenge, I attempt to code a p5.js version of the Snake Game. Send me your 10 minute coding challenge! Contact: http://twitter.com/shiffman To see the debugging process: https://www.youtube.com/watch?v=yUO2bWfBgN8#t=39m00s Source Code For This Challenge: p5.js: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_03_Snake_game_p5.js Processing: https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_03_Snake_game p5.js: https://p5js.org/ Wikipedia page for the Snake Game: https://en.wikipedia.org/wiki/Snake_(video_game) For More 10 Minute Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH
We're building a to-do list application from a simple design sketch, using HTML, CSS and JavaScript. This video was meant to introduce you to DOM manipulation and Event handlers in JavaScript, all that while building something cool and useful! Code repository: https://github.com/themaxsandelin/todo Design files: https://www.dropbox.com/sh/yq0qm8xtfguufyb/AAB6z26DddNyjbUhlDb12kBNa?dl=0 Hope you learned something new, and if you enjoyed the video and you'd give it a thumbs up I would really appreciate it! Also if you have any suggestions, feedback or requests I would love to hear it. Blast that comment section or spam me on social media, I love interacting with you guys. If you want to buy me a coffee: https://ko-fi.com/themaxsandelin Social links: Twitter: https://twitter.com/themaxsan...
Did you know that we can create electronic dance music with JavaScript? Watch this presentation to learn how to do that with Node.js. CREDITS: This video was originally published on SFNode YouTube Channel (https://www.youtube.com/channel/UCbWHWaCKZqIm5pE5hSD7KFw). Please check out the channel to watch more presentations. SPEAKER: Walmik Deshpande, https://twitter.com/_walmik SLIDES: https://speakerdeck.com/walmik/node-dot-js PERMISSION: This video was published with the Author's permission.
Watch part 2 with Chris: https://youtu.be/nL2wpZV1LYc Subscribe to Chris' YouTube channel: https://www.youtube.com/c/dev_coffee Website we built: http://www.andvote.com/ Source code: https://github.com/andvote/andvote ▼ Follow me ▼ on Twitter: https://twitter.com/bookercodes on GitHub: https://github.com/alexbooker ▼ Links I Mention in the Video (in the Order I Mention Them)▼ Joe https://github.com/karan/joe ESLint http://eslint.org/ tmux https://tmux.github.io/ Babel https://babeljs.io/ Nodemon https://github.com/remy/nodemon Sequelize http://docs.sequelizejs.com/en/latest/ My Sequelize course https://www.youtube.com/playlist?list=PL5ze0DjYv5DYBDfl0vF_VRxEu8JdTIHlR sequelize-connect https://github.com/jspizziri/sequelize-connect Redis: http://redis.io/ My shell aliases: https://githu...
Three ground-breaking shifts are occurring in the world of JavaScript: Package management, starter kits, and reusable components. These innovations are coalescing to fuel a revolution in the way we write JS. In this session, you’ll learn why you can no longer afford to build JavaScript in the old paradigm, and we’ll explore how you can make the shift to join the reusable revolution. EVENT: Nebraska JS, September 2017 SPEAKER: Cory House PERMISSIONS: The original video was published on NebraskaJS YouTube channel with the Creative Commons Attribution license (reuse allowed).
This talk will cover some basic JS subtleties and fill in some knowledge gaps w/r/t: - Hoisting and variable scope - Expressions v. statements - Undeclared v. undefined v. null - Equality comparisons - How to properly walk out if an interviewer asks you to do fizz buzz - Much, much more (time permitting) EVENT: Nodevember 2016 SPEAKER: Russell Anderson PERMISSIONS: The original video was published on Nodevember YouTube channel with the Creative Commons Attribution license (reuse allowed).
Angular 4 (latest version of Angular 2) - The Complete Guide ☞ http://learnstartup.net/go/H1jE_tD3l Angular 2 and NodeJS - The Practical Guide to MEAN Stack 2.0 ☞ http://learnstartup.net/go/S1y1-FIGx ES6 Javascript: The Complete Developer's Guide ☞ http://learnstartup.net/go/BkGZcMlbe The Complete Node.js Developer Course (2nd Edition) ☞ http://learnstartup.net/p/r1K7HXybe Beginner API development in Node, Express, ES6, & MongoDB ☞ http://learnstartup.net/p/SkN62OLZx Typescript 2 Masterclass: Node REST API + Angular 2 Client ☞ http://learnstartup.net/p/r1g4WNHGg
http://2017.jsconf.eu/speakers/denis-radin-applying-nasa-coding-standards-to-javascript.html Jet Propulsion Laboratory - scientific institution making research and development for NASA. Their portfolio includes such famous missions as Curiosity Mars rover and Voyager probe which left solar system after 25 years of flight and still providing scientific information. High level of automation and long duration of missions led to superior demands to software quality. As a result of JPL amazing experience a set of code guidelines was developed and published recently. Since demands to web-driven software constantly increase and more critical tasks are entrusted to JavaScript, lets apply NASA coding guidelines to JavaScript / HTML applications for higher performance, reliability and the better wo...
In this video I cover how to code up a basic tic-tac-toe game in javascript. We won't go into great detail or polish up the game in this video, but instead we will just lay out the ground work for a basic game so that in future videos we can improve upon it.
In this coding challenge, I program from scratch the Mandelbrot set with p5.js Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges! Contact: https://twitter.com/shiffman Links discussed in this video: Wikipedia on Mandelbrot Set: https://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set Explorer: https://meiamso.me/old/mandelbrot/mandelbrot.php Source Code for the Video Lessons: https://github.com/shiffman/Video-Lesson-Materials p5.js: https://p5js.org/ Processing: https://processing.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH Help us caption & translate this video! http://amara.org/v/Qbrn/
In this coding challenge, I attempt to program a clock in HTML5 canvas with the p5.js library. This challenge was inspired by John Maeda's "12 o'clocks" and Golan Levin's assignment on the subject in his 60212 Interactivity & Computation class (http://cmuems.com/2016/60212/lectures/lecture-09-09b-clocks/maedas-clocks/) Submit links to your clocks! https://github.com/CodingTrain/Rainbow-Code/tree/master/CodingChallenges/CC_74_Clock Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com To Support the Processing Foundation: https://processingfoundation.org/support Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://twitter.com/shiffman The Codi...
In this Coding Challenge, I attempt an implementation of the A* pathfinding algorithm to find the optimal path between two points in a 2D grid. I begin by explaining the mechanics of how the algorithm works, look at pseudo-code, and then write the algorithm in JavaScript using the p5.js library for rendering. Part 2 focuses on adding obstacles (walls) to the grid as well as functionality for moving diagonally. . In Part 3, I look at ways to improve the visual design and invite you to put your own spin on it. Part 2: https://youtu.be/EaZxUCWAjb0 Part 3: https://youtu.be/jwRT4PCT6RU Online demo: https://codingtrain.github.io/AStar/ Code: https://github.com/CodingTrain/AStar To see the whole unedited version of this challenge: https://www.youtube.com/watch?v=S4yQYiAECnM&t;=34m50s Support...
In this 4th of July themed Coding Challenge, I build an HTML5 canvas Fireworks simulation from scratch using the p5.js JavaScript library. O I also show how to use Processing to create 3D Fireworks. This code is based off of my Nature of Code particle system examples. Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges! Contact: https://twitter.com/shiffman Links discussed in this video: Pixel Pyros by Seb Lee-Delisle: http://seb.ly/work/pixelpyros/ peasycam website: http://mrfeinberg.com/peasycam/ Source Code for the Video Lessons: https://github.com/CodingTrain/Rainbow-Code p5.js: https://p5js.org/ Processing: https://processing.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uh...
In this Coding Challenge, I attempt to program in JavaScript (using the p5.js framework) a clone of the game Flappy Bird. Support this channel on Patreon: https://patreon.com/codingtrain Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: https://twitter.com/shiffman Links discussed in this video: Flappy Bird on Wikipedia: https://en.wikipedia.org/wiki/Flappy_Bird Source Code for the Video Lessons: https://github.com/CodingTrain/Rainbow-Code p5.js: https://p5js.org/ Processing: https://processing.org For More Coding Challenges: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH For More p5.js videos: https://www.youtube.com/playlist?list=PLRqwX-V7Uu6Zy51Q-x9tMWIv9cueOFTFA Help us caption & translate this video...
In this challenge, I attempt (emphasis on the word "attempt") to program the classic video game Pong in Processing (Java). This also marks the return of the timer to help me keep track of time! Now I remember why I got rid of the timer in the first place, oops. Support this channel on Patreon: https://patreon.com/codingtrain To buy Coding Train merchandise: https://codingtrain.storenvy.com Send me your questions and coding challenges!: https://github.com/CodingTrain/Rainbow-Topics Contact: Twitter: https://twitter.com/shiffman The Coding Train website: http://thecodingtrain.com/ Links discussed in this video: Pong on Wikipedia: https://en.wikipedia.org/wiki/Pong Paddle angles drawing: https://i1.wp.com/zekechan.net/wp-content/uploads/2015/07/pong-05b.png?resize=600%2C500 My Video on ...
In this guest tutorial, Emily Xie uses the p5.js library to recreate the digital rain effect from the movie The Matrix. Emily Xie is a software developer and creative coder. She's passionate about coding education, having taught through various conference workshops and via organizations like Girl Develop It (https://www.girldevelopit.com/) and Pioneer Works (https://pioneerworks.org/). Currently, Emily lives in New York and works at Squarespace. Project: Matrix repository: https://github.com/emilyxxie/green_rain The Matrix project, deployed: http://xie-emily.com/generative_art/green_rain.html Personal: Website: http://xie-emily.com Twitter: https://twitter.com/emilyxxie Github account: https://github.com/emilyxxie p5.js: https://p5js.org/ For more Guest Tutorials and Interviews: https...