Contents tagged with javascript
-
Install JSPM packages from the local file system during development
NPM has npm install <folder>. JSPM requires more work. Link a project... cd <project-root> jspm link github:some/[email protected] -y ...then install from that link cd <other-project- … more
-
JavaScript method syntax and chaining Promises
Live demo promise .then((bar) => { return do_this(bar); }) /* 1: YES */ .then(function(bar) { do_this(bar); }) /* 2: NO */ .then(function (bar) { return do_this(bar); }) /* 3: YES */ . … more
-
Algorithms Unlocked Practice
Now on GitHub: https://github.com/shaunluttin/algorithms-unlocked Each linked item goes to an live JavaScript REPL of the algorithm. Searching Linear Search – TODO Binary Search – TODO … more
-
Some Sweet Things
JavaScript, CSS, HTML Typeahead.js Bootstrap AngularJS AngularUI C#, ASP.NET dotNetFiddle Run C# code online. StyleCop Why create your own style guide? Style Cop has already done it. Other … more
-
A Makeshift JavaScript REPL Editor with Notepad and PhantomJS
What I wanted was a simple JavaScript console, that's similar to the Firefox Web Console but with the lightness and convenience of the PowerShell ISE. The result is a kind of cross between a read- … more
-
YouTube JavaScript API
We would like to show YouTube videos on our 1in52.com website, and to maintain control over the organization of videos. This is research into the options that YouTube provides. Our requirements are … more