Here are my top 3 video tutorial tools that I use at home and the office: Monosnap Accessible via the menu bar (Mac), Monosnap gives you quick and straightforward ability to record video, capture and edit images, and upload to their cloud or save files locally. If you add the webcam, you can customize the […]
Accesibility for Teams
A rare governmental site devoted to clarity! https://accessibility.digital.gov/ux/getting-started/
Some Excelent Tutorials to Develop WordPress Plugin
WordPress plugin developers are earning good amount online. Most of them release two versions of plugin, one is free version and other is premium with some enhanced features. If you are new to plugin development or want to extend your experience this article is best for you. WordPress has become more important application for bloggers […]
Which language is going to dominate the future of web development: JavaScript, PHP, Ruby, Java/Scala...
Who will have a higher salary in the future: mobile developers or full-stack developers?
Full Stack pays better… … and it’s growing a lot faster. Most professional mobile developers specialize in either iOS or Android, and rely on more limited Backend-as-a-Service tools (Parse, Firebase) instead of building their own APIs. Full stack developers, on the other hand, are trained to: build APIs build mobile responsive web apps build native […]
What a progressive web application can / should / must offer
Here is a list of what a progressive web application can / should offer: Responsive: to fit any form factor Connectivity independent: Progressively-enhanced with Service Workers to let them work offline App-like-interactions: Adopt a Shell + Content application model to create appy navigations & interactions Fresh: Transparently always up-to-date thanks to the Service Worker update […]
Progressive Web Apps coming to all Chrome platforms
https://medium.freecodecamp.org/progressive-web-apps-bridging-the-gap-between-web-and-mobile-apps-a08c76e3e768 https://medium.com/@kennethrohde/progressive-web-apps-coming-to-all-chrome-platforms-80e31272e2a8 https://codeburst.io/an-introduction-to-service-workers-in-javascript-27d6376460c2?source=placement_card_footer_grid———1-60
ES6: loop over an object like an array
ES6 allows you to loop over an object like an array with forEach by using Object.values(object)! let obj = {a:1, b:2, c:3}; Object.values(obj).forEach(value => { console.log(value) }) // logs 1, 2, 3
Resources to implement AI into your app
A look at 3rd-party AI tools and services, uncovering easy wins, and where to invest in an automated world https://hackernoon.com/bolt-on-ai-is-this-the-ai-shortcut-weve-been-looking-for-c2771c62d179
How computer programming is learned?
Some syllabus: The basics (how bullets work): Number representation Boolean algebra Programming constructs (sequential execution, if-then-else, loops, switch/case statement) Basic input and output Modular programming (functions, parameter passing) Data structures (arrays, lists, linked lists, queues, trees, hash tables, sets) Algorithms: numeric algorithms, searching, sorting, recursion, etc. Exceptions and error handling Object oriented programming (how weapons […]