Tag: software development

  • The JavaScript coders guide to getting more from GitHub and NPM – GitHub Satellite 2020

    Presented by Ed Thomson, GitHub In this session, we’ll talk through the implications of NPM joining the GitHub family for JavaScript developers, and how to get the best out of GitHub for both your open source work as well as your work inside your organization. GitHub Satellite: A community connected by code On May 6th,…

  • Building a full stack WEB SCRAPING app with JAVASCRIPT tutorial

    By request here is a full stack JavaScript app that uses web scraping — complete with a front end, API server, scraper and database. Here’s the code: https://github.com/aj-4/setuptourist Our stack (100% JavaScript) == HTML / CSS / Vanilla JS (no framework) == Express == Puppeteer == TypeORM == mySQL Are you lost? ——————— Check out…

  • Functions & Events – Javascript tutorial in Hindi/Urdu

    In this video we will learn about the functions in Javascript and how we can call or execute the these functions with some events that are onclick events. Feel free to follow on instagram http://www.instagram.com/codingboothxyz Original source

  • VS Code: Supercharge Your JavaScript Debugging Workflow

    This session shows how to supercharge your JavaScript debugging workflow when working with React, AngularJS, and Node in Visual Studio Code. We talk about debugging principles, workflows, and how to be more productive by staying inside your editor. EVENT: Microsoft Build 2017 SPEAKER: Kenneth Auchenberg PERMISSIONS: The original video was published on the Microsoft Visual…

  • Discovering JavaScript

    Watch this amazing talk on Discovering JavaScript by Dr. Venkat Subramaniam who is an award-winning author, founder of Agile Developer, Inc., and an instructional professor at the University of Houston. EVENT: Build Stuff, 2016 SPEAKER: Venkat Subramaniam PERMISSIONS: Coding Tech received a permission to republish this video from the event organizer. Additional material for JavaScript…

  • Expressions vs. Statements in JS / Intro to JavaScript ES6 programming, lesson 15

    Notes, quiz, exercise → https://en.hexlet.io/courses/intro_to_programming/lessons/expressions/theory_unit Understand the important distinction: expressions vs. statements in JavaScript. And learn how this knowledge will help you. Intro to JavaScript Programming — a free online course with videos, exercises, quizzes and lots of additional materials, illustrations, references, etc. Learn JavaScript and the most important fundamentals of computer programming for free!…

  • Keep Betting on JavaScript

    Brendan Eich’s famous quip, ‘Always Bet On JavaScript’, revels in JS’s history of naysayers predicting that we’d eventually reach a point where JS couldn’t grow to meet the demands of modern development; it turns out those have always been bad bets. It’s safe to say JS is no longer trying to prove itself. It has…

  • JavaScript Engines: Under the Hood

    A browser’s JavaScript engine can seem like a magical black box. During this session, we’ll show you how they work from 10,000 feet and give you the tricks to compile all the popular engines out there including JavaScriptCore, V8, and SpiderMonkey). We’ll inspect the internals of the engine, and debug+profile your favorite code snippets. Armed…

  • How to instantly load JavaScript on mobile

    Discover the secret to instantly load anything on mobile browsers. Learn how to ship JavaScript bundles that don’t break the bank on mobile. Original source

  • Prototypes in JavaScript – FunFunFunction #16

    Let’s say that you have a food type, and you want to make lots of different instances of that food, such as waffles, and I don’t know why you’d want any other food than waffles, but maybe you like carrots or something. In that context, *food* is the prototype of *waffles* and *carrots*. Some of…