POPULARITY
Join host Jack Chambers Ward as he sits down with Sam Torres and Tory Gray of Gray Dot Company.They delve into the intricacies of JavaScript and its impact on website migrations, discussing common issues, best practices, and how to navigate the technical landscape. This episode also touches on the existential dread that comes with the future of AI in search engines, learning JavaScript for SEO, and the importance of brand alignment across digital channels.
Send us a textWe're going to go through a very hands-on, practical process for learning enough JS to be dangerous.From the tools and services you will need as well as challenges to complete and small projects to make, you will have a clear idea of what to do and build to go from zero to noob.Shameless Plugs(NEW) The Inner Circle - a highly customized program to take you from 0 to hired
This week, the Elixir Wizards are joined by Yohana Tesfazgi and Wes Bos to compare notes on the experience of learning Elixir vs. JavaScript as your first programming language. Yohana recently completed an Elixir apprenticeship, and Wes Bos is a renowned JavaScript educator with popular courses for beginner software developers. They discuss a variety of media and resources and how people with different learning styles benefit from video courses, articles, or more hands-on projects. They also discuss the current atmosphere for those looking to transition into an engineering career and how to stick out among the crowd when new to the scene. Topics Discussed in this Episode Pros and cons of learning Elixir as your first programming language Materials and resources for beginners to JavaScript and Elixir Projects and methods for learning Elixir with no prior knowledge Recommendations for sharpening and showcasing skills How to become a standout candidate for potential employers Soft skills like communication translate well from other careers to programming work Learning subsequent languages becomes more intuitive once you learn your first How to decide which library to use for a project How to build an online presence and why it's important Open-source contributions are a way to learn from the community Ship early and often, just deploying a default Phoenix app teaches deployment skills Attend local meetups and conferences for mentoring and potential job opportunities Links Mentioned https://syntax.fm/ https://fly.io/ https://elixirschool.com/en Syntax.fm: Supper Club × How To Get Your First Dev Job With Stuart Bloxham (https://syntax.fm/show/667/supper-club-how-to-get-your-first-dev-job-with-stuart-bloxham) Quinnwilton.com (https://quinnwilton.com/) https://github.com/pallets/flask https://wesbos.com/courses https://beginnerjavascript.com/ Free course: https://javascript30.com/ https://pragmaticstudio.com/ https://elixircasts.io/ https://grox.io/ LiveView Mastery YouTube Channel (https://www.youtube.com/channel/UC7T19hPLqQ-Od3Rb3T2OX1g) Contact Yohana: yytesfazgi@gmail.com
Season 2 starts in October! Tune in to find out what we'll be chatting about in this second season of viewSource and when it begins.A full transcript of the episode is available on the website. Watch the video podcast on YouTube and subscribe to our channel and newsletter to hear about episodes (and more) first!- Brian's website – https://www.briancoords.com- Aurooba's website – https://aurooba.com (00:00) - Season 2 Trailer (01:49) - Next.js 13 and Browser APIs (03:18) - Laravel is like WordPress for Applications (05:23) - Learning JavaScript (more) Deeply (06:33) - GraphQL vs REST API (09:18) - What can we learn about WordPress from other frameworks? (10:45) - What is the future of bespoke WordPress? (13:44) - Preview of season two
In today's episode, I talk about learning JavaScript, why its so hard, and what I think is a good way to approach it.Learn more about the Vanilla JS Academy at https://vanillajsacademy.com. Transcript →
In today's episode, I talk about learning JavaScript, why its so hard, and what I think is a good way to approach it.In today's episode, I talk about learning JavaScript, why its so hard, and what I think is a good way to approach it.Show Notes & Transcript →
Topics covered in this episode: Differentiating between writing down dependencies to use packages and for packages themselves PythonMonkey Quirks of Python package versioning bear-type Extras Joke Watch on YouTube About the show Sponsored by us! Support our work through: Our courses at Talk Python Training Python People Podcast Patreon Supporters Connect with the hosts Michael: @mkennedy@fosstodon.org Brian: @brianokken@fosstodon.org Show: @pythonbytes@fosstodon.org Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Tuesdays at 11am PT. Older video versions available there too. Brian #1: Differentiating between writing down dependencies to use packages and for packages themselves Brett Cannon Why can't we just use pyproject.toml and stop using requirements.txt? Nope. At least not yet. They're currently for different things. pyproject.toml There's project.dependencies and project.optional-dependencies.tests that kinda would work for listing dependencies for an app. But you can't say pip install -r pyproject.toml. It doesn't work. And that's weird. project is intended for packaged projects. requirements.txt for applications and other non-packaged projects It has specific versions works great with pip What then? Either we stick with requirements.txt Or we invent some other file, maybe requirements.toml? Or maybe (Brian's comment), add something like [application] and application.dependencies and application.optional-dependencies.tests to pyproject.toml Michael #2: PythonMonkey PythonMonkey is a Mozilla SpiderMonkey JavaScript engine embedded into the Python VM, using the Python engine to provide the JS host environment. This product is in an early stage, approximately 80% to MVP as of July 2023. It is under active development by Distributive. External contributions and feedback are welcome and encouraged. It will enable JavaScript libraries to be used seamlessly in Python code and vice versa — without any significant performance penalties. Call Python packages like NumPy from within a JavaScript library, or use NPM packages like [crypto-js](https://www.npmjs.com/package/crypto-js) directly from Python. Executing WebAssembly modules in Python becomes trivial using the WebAssembly API and engine from SpiderMonkey. More details in Will Pringle's article. Brian #3: Quirks of Python package versioning Seth Larson Yes, we have SemVer, 1.2.3, and CalVer, 2023.6.1, and suffixes for pre-release, 1.2.3pre1. But it gets way more fun than that, if you get creative Here's a few v is an optional prefix, like v.1.0 You can include an “Epoch” and separate it from the version with a !, like 20!1.2.3 Local versions with alphanumerics, periods, dashes, underscores, like 1.0.0+ubuntu-1. PyPI rejects those. That's probably good. Long versions. There's no max length for a version number. How about 1.2.3.4000000000000000001? Pre, post, dev aren't mutually exclusive: 1.0.0-pre0-post0-dev0 More craziness in article - Michael #4: bear-type Beartype is an open-source PEP-compliant near-real-time pure-Python runtime type-checker emphasizing efficiency, usability, and thrilling puns. Annotate @beartype-decorated classes and callables with type hints. Call those callables with valid parameters: Transparent Call those callables with invalid parameters: Boom Traceback: raise exception_cls( beartype.roar.BeartypeCallHintParamViolation: @beartyped quote_wiggum() parameter lines=[b'Oh, my God! A horrible plane crash!', b'Hey, everybody! Get a load of thi...'] violates type hint list[str], as list item 0 value b'Oh, my God! A horrible plane crash!' not str. Extras Brian: Python Testing with Pytest Course Bundle: Limited Pre-Release Beta Use code PYTHONBYTES now through Aug 31for 20% discount (discount extended through the end of the month) What's a pre-release beta? There's a video. Check out the link. Error-tolerant pytest discovery in VSCode Finally! But you gotta turn it on. Also, I gotta talk to them about the proper non-capitalization of pytest. We're at RC1 for Python 3.12.0 Hard to believe it's that time of year again Michael: PyPI hires a Safety & Security Engineer, welcome Mike Fiedler PackagingCon October 26-28 Cloud Builders: Python Conf (born in Ukraine): September 6, 2023 | online Joke: Learning JavaScript
HTML All The Things - Web Development, Web Design, Small Business
Learning JavaScript from scratch can be as much about syntax as it is programming concepts, especially when it's your first language. Concepts like knowing how and why you need a place to store bits of data (variables), re-using code snippets instead of writing them repeatedly (functions), making decisions (conditional statements), and working with collections of data (arrays and looping) are all second nature to experienced developers. These concepts are the foundational building blocks that let you solve problems by thinking like a computer (sometimes this is called programmatic logic). In this episode, Matt and Mike discuss these key JavaScript basics including variables, functions, conditional statements, arrays, and looping. Show Notes: https://www.htmlallthethings.com/podcasts/javascript-basics-learn-these-concepts-first Scrimba Discount: https://tinyurl.com/ScrimbaHATT
HTML All The Things - Web Development, Web Design, Small Business
Learning JavaScript from scratch can be a real challenge, but once you're through it, your newfound programming knowledge will pay dividends for years into your career. JavaScript is one of the foundational technologies on which the web is built, alongside HTML and CSS. Knowing it gives you insight into how to "think like a computer" and offers a running start when you're ready to learn a JavaScript framework like React, Vue, or Svelte. This week, Matt and Mike discussed how to get started learning JavaScript as an absolute beginner looking to work their way through junior developer and beyond. Show Notes: https://www.htmlallthethings.com/podcasts/learning-javascript-from-scratch Scrimba Discount: https://tinyurl.com/ScrimbaHATT
This week, we're looking back at one of our most popular podcast episodes, “A Complete Guide to Learning JavaScript”.Here's what this episode covers:Why Learn JavaScriptWhat is JavaScript's Role in Web Development?The 7 parts of JavaScriptThe JavaScript Environment (where to write it)JS 1: Declaring Variables in JSJS 2: Conditionals in JSJS 3: JS Data TypesJS 4: Data Structures in JSJS 5: Objects in JSJS 6: Arrays in JSJS 7: Loops in JSJS 8: Functions in JSJS 9: Putting it all TogetherShameless PlugsJunior to SeniorParsitydev30.xyzPeter's YouTube channel
Sergii is a sailor-turned-developer who's been working as a Web Developer for the past year. In this episode he tells us all about his experience and his own advice to everyone looking to either switch jobs or start a new career in Web Development.He shares some interesting advice regarding self-study vs formal studies, what resources he used to pick up the fundamentals of web development and what to add to your resume when you have no prior experience in the field.That and more, so don't miss out on this episode!Get to know Sergii:Twitter: https://twitter.com/SergiiKirianovYouTube: https://www.youtube.com/channel/UCYuQmGnZqeQvz46HdHpxrEwBlog: https://codecryrepeat.hashnode.dev/Some interesting links:Open Source university: https://os.university/Harvard's CS50 Roadmap.sh: https://roadmap.sh/Follow us on Twitter: @The20MinJSReview Us!Don't forget to leave a review of the episode or the entire podcast on Podchasers!Meet our host, OpenReplay:OpenReplay is an open-source session replay suite, built for developers and self-hosted for full control over your customer data. If you're looking for a way to understand how your users interact with your application, check out OpenReplay.
What tool now allows you to run tests without writing a single line of code using a new Chrome extension? Want to discover a shocking way to learn JavaScript? And how do you avoid DevOps burnout? A surprise answer will be revealed. Find out the answers to these and all other full pipeline DevOps software testing, automation testing, performance testing and security testing in 10 minutes or less. In this episode of Test Guild new show for the week of August 21st. So grab yourself a cup of coffee, or tea, and let's do this. Time Title Link 0:28 Create a FREE Applitools account https://rcl.ink/xroZw 0:50 10.5.0 of Cypress is out https://testguild.me/4mdf2y 1:17 Playwright and On-demand Test Env https://links.testguild.com/qM5PE 2:05 that Mobot has raised a $12.5M https://testguild.me/s1er86 3:07 Applitools Future of Testing Event https://links.testguild.com/kfkaj 4:03 CircleCI Open Source https://testguild.me/gggwbb 4:58 Automation Guild 2023 Survey https://links.testguild.com/gNpv2 5:52 Nightwatch Chrome DevTools Recorder https://testguild.me/sjxcj7 6:30 Learning JavaScript through load test scripts https://testguild.me/6zlm0p 7:51 Secure Software Development LifeCycle (Secure SDLC) https://testguild.me/f28dx2 8:37 How DevSecOps can curb burnout among app developers https://testguild.me/5uxjpy
Video content can be found here: https://www.youtube.com/channel/UC0BAd8tPlDqFvDYBemHcQPQ/
To learn JavaScript through our JavaScript Prep Course, register here: parsity.io/prepTo review individual JavaScript concepts, find explanations at these timestamps in the podcast:2:01 - Why Learn JavaScript9:05 - What is JavaScript's Role in Web Development?16:24 - The 7 parts of JavaScript17:11 - The JavaScript Environment (where to write it)19:46 - JS 1: Declaring Variables in JS22:23 - JS 2: Conditionals in JS25:22 - JS 3: JS Data Types30:19 - JS 4: Data Structures in JS31:29 - JS 5: Objects in JS33:46 - JS 6: Arrays in JS40:10 - JS 7: Loops in JS44:52 - JS 8: Functions in JS51:44 - JS 9: Putting it all Together
In this episode, I speak to Antony Della Vecchia. A mathematician who got into the world of programming.We discuss the following topics:- His work on analysing satellite imagery to asses infrastructure risks.- Advances in satellite technology and their application in satellite image analysis- The role of techniques such as machine learning and stereo imaging in analysing images.- Open source libraries for stereo imaging- Antony's journey with an academic background in mathematics into software engineering learning software development practices, e.g. Continuous Integration, Git, Frameworks.- Learning JavaScript and Python.- Implementing heat calculations using the finite volume method in JavaScript.- The challenges of developing software for companies with no technical background.- Moving from Canada to Scotland and finally to Berlin.- Leaving the software world to explore ideas from his Master's in geometric group theory.- Mathematics and the exploration of all true statements within it.- The construction of meaning within mathematics and Kurt Gödel incompleteness theorem.- Counter intuitive ideas in mathematics and physics.- His exploration of new ways to define groups and his use of the geometrical shape torus as a way to reason about groups.- Transformations between multi-dimensional spaces. The separation of the dimension of geometry and the space its embedded in.- Maths doesn't care about the laws of the universe.- Combinatorial geometry and Permutohedrons.- Groups and symmetry.- Blackholes and quantum effects at the event horizon.- General relativity- Large Hadron Collider- The standard model of physics.- How string theory got its name- Gravitational waves- Emergence and statistical mechanics- Advice to his 20 year old self.- Technologies and scientific discoveries his looks forward to.
Quick previews from this week's Post Status newsletter, WPEngine's Atlas, and Learning JavaScript
WordPress Resource: Your Website Engineer with Dustin Hartzler
In today’s episode we talk about why JavaScript is an important piece of WordPress and why we should learn it.
JavaScript Remote Conf 2020 May 13th to 15th - register now! Matt Crook joins the conversation to talk with the JavaScript Jabber panel to talk about his experience going through Nashville Software School. The panel discusses and asks questions about getting into programming, working through the bootcamp, and what prospects are for bootcamp graduates. Panel AJ O’Neal Aimee Knight Charles Max Wood Steve Edwards Dan Shappir Guest Matt Crook Sponsors Taiko Educative.io | Click here for 10% discount "The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today! Picks AJ O’Neal: PostgREST The Way of Kings VirtualBox Bootable Installers for MacOS, Windows, and more Aimee Knight: State of Microservices 2020 Report Peloton Bike Charles Max Wood: The Hobbit D&D Starter Set JavaScript Weekly Devchat.tv Remote Meetups Devchat.tv Remote Conferences Reading to Kids Steve Edwards: It Is Well With My Soul Pitbull Gold PRO Skull Shaver Brad Balfour Dan Shappir: Gödel, Escher, Bach Translating "The Hobbit" in Captivity Matt Crook: Follow Matt on Twitter > @mgcrook, Instagram, LinkedIn Swolenormous Fireship Static Headz Yugen Follow JavaScript Jabber on Twitter > @JSJabber
JavaScript Remote Conf 2020 May 13th to 15th - register now! Matt Crook joins the conversation to talk with the JavaScript Jabber panel to talk about his experience going through Nashville Software School. The panel discusses and asks questions about getting into programming, working through the bootcamp, and what prospects are for bootcamp graduates. Panel AJ O’Neal Aimee Knight Charles Max Wood Steve Edwards Dan Shappir Guest Matt Crook Sponsors Taiko Educative.io | Click here for 10% discount "The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today! Picks AJ O’Neal: PostgREST The Way of Kings VirtualBox Bootable Installers for MacOS, Windows, and more Aimee Knight: State of Microservices 2020 Report Peloton Bike Charles Max Wood: The Hobbit D&D Starter Set JavaScript Weekly Devchat.tv Remote Meetups Devchat.tv Remote Conferences Reading to Kids Steve Edwards: It Is Well With My Soul Pitbull Gold PRO Skull Shaver Brad Balfour Dan Shappir: Gödel, Escher, Bach Translating "The Hobbit" in Captivity Matt Crook: Follow Matt on Twitter > @mgcrook, Instagram, LinkedIn Swolenormous Fireship Static Headz Yugen Follow JavaScript Jabber on Twitter > @JSJabber
JavaScript Remote Conf 2020 May 13th to 15th - register now! Matt Crook joins the conversation to talk with the JavaScript Jabber panel to talk about his experience going through Nashville Software School. The panel discusses and asks questions about getting into programming, working through the bootcamp, and what prospects are for bootcamp graduates. Panel AJ O’Neal Aimee Knight Charles Max Wood Steve Edwards Dan Shappir Guest Matt Crook Sponsors Taiko Educative.io | Click here for 10% discount "The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today! Picks AJ O’Neal: PostgREST The Way of Kings VirtualBox Bootable Installers for MacOS, Windows, and more Aimee Knight: State of Microservices 2020 Report Peloton Bike Charles Max Wood: The Hobbit D&D Starter Set JavaScript Weekly Devchat.tv Remote Meetups Devchat.tv Remote Conferences Reading to Kids Steve Edwards: It Is Well With My Soul Pitbull Gold PRO Skull Shaver Brad Balfour Dan Shappir: Gödel, Escher, Bach Translating "The Hobbit" in Captivity Matt Crook: Follow Matt on Twitter > @mgcrook, Instagram, LinkedIn Swolenormous Fireship Static Headz Yugen Follow JavaScript Jabber on Twitter > @JSJabber
https://www.humblebundle.com/books/web-programming-oreilly-books?partner=thetalkinggeek&charity=1827413 we've teamed up with O'Reilly for our newest bundle! Get he looks like CSS - the definitive guide, you don't know JS - ES6 and beyond, and learning PHP, my SQL and JavaScript. Plus, your purchase will support code for America and a charity of your choice! $1: CSS - the definitive guide (4th edition) Using SVG with CSS3 and HTML5 Learning react High performance images You don't know JS - up and going $8: Flask web development (second edition) Angular - up and running CSS pocket reference (5th edition) Data visualization with python and JavaScript View.js-up and running You don't know JS - e6 and beyond $15: Learning JavaScript (third edition) Designing Web APIs Learning PHP, MySQL and JavaScript (5th edition) Mastering modular JavaScript Learning graphQL You don't know JS - scope and closures https://www.humblebundle.com/books/web-programming-oreilly-books?partner=thetalkinggeek&charity=1827413
https://www.humblebundle.com/books/web-programming-oreilly-books?partner=thetalkinggeek&charity=1827413 we've teamed up with O'Reilly for our newest bundle! Get he looks like CSS - the definitive guide, you don't know JS - ES6 and beyond, and learning PHP, my SQL and JavaScript. Plus, your purchase will support code for America and a charity of your choice! $1: CSS - the definitive guide (4th edition) Using SVG with CSS3 and HTML5 Learning react High performance images You don't know JS - up and going $8: Flask web development (second edition) Angular - up and running CSS pocket reference (5th edition) Data visualization with python and JavaScript View.js-up and running You don't know JS - e6 and beyond $15: Learning JavaScript (third edition) Designing Web APIs Learning PHP, MySQL and JavaScript (5th edition) Mastering modular JavaScript Learning graphQL You don't know JS - scope and closures https://www.humblebundle.com/books/web-programming-oreilly-books?partner=thetalkinggeek&charity=1827413
Don follows-up with previous guest Megan Schemmel, who is learning how to be a full-stack web developer. They talk about how she went from being a non-developer to knowing HTML and CSS, launching websites with Wordpress, picking up skills in accessibility, and what she's learned about JavaScript so far.
Don follows-up with previous guest Megan Schemmel, who is learning how to be a full-stack web developer. They talk about how she went from being a non-developer to knowing HTML and CSS, launching websites with Wordpress, picking up skills in accessibility, and what she's learned about JavaScript so far.
Don and Randy discuss the steps we've taken to better learn JavaScript, Node.js, React, and React Native. A whole lotta videos and pain.
Don and Randy discuss the steps we've taken to better learn JavaScript, Node.js, React, and React Native. A whole lotta videos and pain.
In this Episode of the JavaScript for WordPress Show, educator Zac Gordon talks with Deepti Boddapati, an front end developer with experience writing cosmetic JavaScript and jQuery for personal clients and taking on more complex JavaScript projects with agencies like Crowd Favorite. Listen to Deepti talk about how she learned JavaScript, the resources she used, and her advice for others.
In this Episode of the JavaScript for WordPress Show, educator Zac Gordon talks with Adam Silverstein, a contributor to WordPress Core and knowledgeable person about the history of JavaScript in WordPress. Listen to Adam tell his story learning and writing JavaScript in WordPress.
In this Episode of the JavaScript for WordPress Show, educator Zac Gordon talks with Weston Ruter, a JavaScript for WordPress Pro. Weston works on the Customizer interface in WordPress and stays closely involved with JavaScript in WordPress in general. Weston is a very smart man and his story of learning JavaScript is pretty amazing.
In this Episode of the JavaScript for WordPress Show, educator Zac Gordon talks with developer and educator Brian Richards. Brian has years of experience learning JavaScript and also works educating others on WordPress development, including the use of the RESTS API and JS frameworks like Vue.
Mikeal Rogers, Alex Sexton, and Rachel White discuss VM Neutrality in Node.js, learning JavaScript, and Mastodon - the open source friendly alternative to Twitter, et al.
Mikeal Rogers, Alex Sexton, and Rachel White discuss VM Neutrality in Node.js, learning JavaScript, and Mastodon - the open source friendly alternative to Twitter, et al.
Tracy Lee joined the show to talk about bringing people together, helping people, and making an impact. We covered learning JavaScript, the ins and outs of her road to get to where she’s at today, hitting burnout and sleeping for two weeks, breaking into the JavaScript community, and the fun cruise, workshops, and conferences she’s working on for the JavaScript community.
Tracy Lee joined the show to talk about bringing people together, helping people, and making an impact. We covered learning JavaScript, the ins and outs of her road to get to where she’s at today, hitting burnout and sleeping for two weeks, breaking into the JavaScript community, and the fun cruise, workshops, and conferences she’s working on for the JavaScript community.
Добрый день уважаемые слушатели. Представляем новый выпуск подкаста RWpod. В этом выпуске: Ruby Passenger 5.1: a new milestone in robustness, security and efficiency и Is Ruby dead? Hell no! - Analyzing RubyGems stats for 2016 Ruby's Mysterious Triple Equals Operator, a.k.a. Case Equality Operator, Bundler and Gemfile best practices и Auto-reconnect for ActiveRecord connections Writing a Sprockets plugin, KaTeX for Ruby и Chartkick: data visualization made easy with Ruby JavaScript Fabric is Joining Google, RethinkDB: why we failed, Learning JavaScript in 2017 sucks and this is awesome! и Webpack 2.2: The Final Release 3 New CSS Features to Learn in 2017, How to Create Spotify Colorizer Effects With CSS Blend Modes и removeEventListener and this Mermaid - generation of diagrams and flowcharts from text in a similar manner as markdown, LocalForage - a JavaScript library that improves the offline experience of your web app by using an asynchronous data store with a simple и Tone.js - a framework for creating interactive music in the browser
00:50 Intro to guests Donovan Brown and Jordan Matthiesen 1:14 Javascript and Devops 3:49 Node JS and integrating with extensions 11:16 Learning Javascript coming from another language 15:21 Visual Studio Team Services at Microsoft, integration and unit testing Visualstudio.com Donovanbrown.com 25:10 Visual Studio Code and mobile development Apache Cordova open source project 31:45 TypeScript and tooling 33:03 Unit test tools and methods 38:39 ARM devices and integration QUOTES: “It’s not impossible, it’s just a different set of challenges.” - Donovan Brown “Devops is the union of people, process and products to enable continuous delivery of value to your end users” - Donovan Brown “Apps start to feel more native. They can actually get form.” - Jordan Matthiesen PICKS: Veridian Dynamics (AJ) Jabberwocky Video (AJ) Hard Rock Cafe - Atlanta (Charles) CES (Charles) 3D printers (Donovan) High-Yield Vegetable Gardening (Jordan) taco.visualstudio.com Jordan on Twitter @jmatthiesen Visualstudio.com Donovanbrown.com Donovan on Twitter @donovanbrown SPONSORS: Front End Masters Hired.com
00:50 Intro to guests Donovan Brown and Jordan Matthiesen 1:14 Javascript and Devops 3:49 Node JS and integrating with extensions 11:16 Learning Javascript coming from another language 15:21 Visual Studio Team Services at Microsoft, integration and unit testing Visualstudio.com Donovanbrown.com 25:10 Visual Studio Code and mobile development Apache Cordova open source project 31:45 TypeScript and tooling 33:03 Unit test tools and methods 38:39 ARM devices and integration QUOTES: “It’s not impossible, it’s just a different set of challenges.” - Donovan Brown “Devops is the union of people, process and products to enable continuous delivery of value to your end users” - Donovan Brown “Apps start to feel more native. They can actually get form.” - Jordan Matthiesen PICKS: Veridian Dynamics (AJ) Jabberwocky Video (AJ) Hard Rock Cafe - Atlanta (Charles) CES (Charles) 3D printers (Donovan) High-Yield Vegetable Gardening (Jordan) taco.visualstudio.com Jordan on Twitter @jmatthiesen Visualstudio.com Donovanbrown.com Donovan on Twitter @donovanbrown SPONSORS: Front End Masters Hired.com
00:50 Intro to guests Donovan Brown and Jordan Matthiesen 1:14 Javascript and Devops 3:49 Node JS and integrating with extensions 11:16 Learning Javascript coming from another language 15:21 Visual Studio Team Services at Microsoft, integration and unit testing Visualstudio.com Donovanbrown.com 25:10 Visual Studio Code and mobile development Apache Cordova open source project 31:45 TypeScript and tooling 33:03 Unit test tools and methods 38:39 ARM devices and integration QUOTES: “It’s not impossible, it’s just a different set of challenges.” - Donovan Brown “Devops is the union of people, process and products to enable continuous delivery of value to your end users” - Donovan Brown “Apps start to feel more native. They can actually get form.” - Jordan Matthiesen PICKS: Veridian Dynamics (AJ) Jabberwocky Video (AJ) Hard Rock Cafe - Atlanta (Charles) CES (Charles) 3D printers (Donovan) High-Yield Vegetable Gardening (Jordan) taco.visualstudio.com Jordan on Twitter @jmatthiesen Visualstudio.com Donovanbrown.com Donovan on Twitter @donovanbrown SPONSORS: Front End Masters Hired.com
Check out Newbie Remote Conf! 02:44 - What it Takes to Learn JavaScript in 2016 04:03 - Resources: Then vs Now 09:42 - Are there prerequisites? Should you have experience? 20:34 - Choosing What to Learn The iPhreaks Show Episode #153: Using Mobile Devices to Manage Diabetes with Scott Hanselman 28:19 - Deciding What to Learn Next 31:19 - Keeping Up: Obligations As a Developer 34:22 - Deciding What to Learn Next (Cont’d) 42:01 - Recommendations You-Dont-Know-JS gulp.js webpack The Little Schemer Designing Data-Intensive Applications by Martin Kleppmann Picks accidentally nonblocking (Jamison) choo (Jamison) Web Rebels (Jamison) React Rally (Jamison) Grab The Gold (Aimee) node-for-beginners (Aimee) Procrastinate On Purpose by Rory Vaden (Chuck) Newbie Remote Conf (Chuck) Get A Coder Job (Chuck)
Check out Newbie Remote Conf! 02:44 - What it Takes to Learn JavaScript in 2016 04:03 - Resources: Then vs Now 09:42 - Are there prerequisites? Should you have experience? 20:34 - Choosing What to Learn The iPhreaks Show Episode #153: Using Mobile Devices to Manage Diabetes with Scott Hanselman 28:19 - Deciding What to Learn Next 31:19 - Keeping Up: Obligations As a Developer 34:22 - Deciding What to Learn Next (Cont’d) 42:01 - Recommendations You-Dont-Know-JS gulp.js webpack The Little Schemer Designing Data-Intensive Applications by Martin Kleppmann Picks accidentally nonblocking (Jamison) choo (Jamison) Web Rebels (Jamison) React Rally (Jamison) Grab The Gold (Aimee) node-for-beginners (Aimee) Procrastinate On Purpose by Rory Vaden (Chuck) Newbie Remote Conf (Chuck) Get A Coder Job (Chuck)
Check out Newbie Remote Conf! 02:44 - What it Takes to Learn JavaScript in 2016 04:03 - Resources: Then vs Now 09:42 - Are there prerequisites? Should you have experience? 20:34 - Choosing What to Learn The iPhreaks Show Episode #153: Using Mobile Devices to Manage Diabetes with Scott Hanselman 28:19 - Deciding What to Learn Next 31:19 - Keeping Up: Obligations As a Developer 34:22 - Deciding What to Learn Next (Cont’d) 42:01 - Recommendations You-Dont-Know-JS gulp.js webpack The Little Schemer Designing Data-Intensive Applications by Martin Kleppmann Picks accidentally nonblocking (Jamison) choo (Jamison) Web Rebels (Jamison) React Rally (Jamison) Grab The Gold (Aimee) node-for-beginners (Aimee) Procrastinate On Purpose by Rory Vaden (Chuck) Newbie Remote Conf (Chuck) Get A Coder Job (Chuck)
The new Telerik Developer Digest episodes are launched. Say hello to the new co-host Brian Rinaldi, and the state of the podcast is discussed. Brian and Ed cover the latest news in the development community including: Learning JavaScript by Doing, Build 2016, Polishing Xamarin Apps, using Foundation 6, and much more...
Zac Gordon of JavaScript for WP and Treehouse joins us in this special episode. https://www.wp-tonic.com/podcast/078-learning-javascript-special-guest-zac-gordon/ ================== Timelines is hosted and produced by Jonathan Denwood, WP-Tonic.com and co-hosted and engineered by Bill Conrad netcasting101.com. The Netcast is all about and the people who code, develop and design using WordPress. Our mission is to motivate, educate and inspire the listener. We hope you enjoy this and each and every episode of WP-Tonic.com. We know someone who may be a good fit as a guest, please email Jonathan at jonathan@wp-tonic.com or Bill at bill@conradteam.com and again, thank you for listening to WP-Tonic. ================= WP-Tonic is not only a WordPress support and maintenance service, but we publish a twice weekly podcast about WordPress where we talk with some of the brightest minds in WordPress development, web design, business, and online marketing.
On this episode of WPwatercooler we'll be discussing what other WordPress related skills you should learn outside of learning Javascript deeply.Show airs Jan 4 at 11am PDT / 2pm EDT / 7PM UTC* Matt Mullenweg: State of the Word 2015 | WordPress.tv* ActionScript (just kidding) – Wikipedia, the free encyclopedia* Nginx Guide: Introduction – Envato Tuts+ Code Article 00:07* WP REST API Documentation 00:09* Introduction to the JSON REST AP* An Introduction To LESS, And Comparison To Sass – Smashing Magazine 00:11* Bootstrap WordPress Tutorials – BootstrapWP 00:11* RegExr: Learn, Build, & Test RegEx 00:11* #1 WordPress Page Builder Plugin – Visual Composer 00:13* WordPress Page Builder Plugin | Beaver Builder 00:14* Hello World – GitHub Guides 00:16* Learn to Code and Help Nonprofits | Free Code Camp* Join the largest learning event in history – Hour of Code 00:18* Sketch – Professional Digital Design for Mac* Swift – Overview – Apple Developer* Ultimate Guide to Learning Swift in One Day 00:21* 15 Free Sources To Learn Swift Programming Language – Hongkiat 00:21* WordPress & Drupal Hosting and Website Platform 00:24* Command line interface for WordPress | WP-CLI 00:25* Built-in Commands | WP-CLI* Desktop Server 00:26More Info✩ Twitter✩ Blog/Website✩ Facebook✩ Podcast RSS Feed✩ iTunes✩ Stitcher✩ Soundcloud✩ Google+ [LISTATTENDEES event_identifier=”ep169-beyond-learning-javascript-deeply-jan-4-2015-5-56899356a26e8″ show_gravatar=”true”] See acast.com/privacy for privacy and opt-out information.
Angular Air Episode 41 - The Importance of Learning JavaScript with Kyle SimpsonGuest: Kyle SimpsonHost: Kent C. DoddsPanelists: Olivier Combe, Aimee Knight, PatrictJS, and Jeff WhelpleyKent C. Dodds Tips:Don’t be afraid to start something. Angular Air was easy to start and awesome to do. Picks:@JavaScriptAir, Frontend Masters, Advanced JavaScriptKyle Simpson aka getify Links: RxMarblesLearn Reactive Programming (Observables) Visually A Tale Of Three-listsThe “TODOMVC” of async programmingSimple Made Easy, Simplicity MattersPatrick Stapleton aka PatrickJS Tips:Learn more about JavaScript prototypes and how this and new keywords work Picks:You Don’t Know JSAimee Knight Tips:OS X - option click on menu in top right when you’re on a podcast to disable notification :) Picks:Developer TeaJeff Whelpley Picks:TesselRedux pattern in Angular 2Comparison of React and Angular 2AngularClassLearn AngularJS, Angular 2, and Modern Web Development form the best. Looking for corporate Angular training, want to host us, or Angular consulting? twitter: @AngularClass email: info@angularclass.com chat: https://angularclass.com/member-joinAngular Air is a video podcast all about Angular hosted by AngularClass. Please visit the AngularAir website to see upcoming and past episodes. Also be sure to follow Angular Air on Twitter and Google+ to stay up to date with future episodes. Also, all episodes are on the YouTube channel as well. --- Support this podcast: https://anchor.fm/angularair/support