• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4252 shaares
3 / 7
Filters
133 results tagged javascript

JavaScript Data Structures - The String Object

QRCode

The String is the most basic and most useful of the native JavaScript data structures. It can also be used as a starting point for, or be incorporated into, many other data structures. Let's see how it all works.

https://www.i-programmer.info/programming/javascript/4138.html
March 8, 2019 at 3:47:44 PM EST *
javascript ebook
FILLER

Understanding Higher-Order Functions in JavaScript

QRCode

Higher-Order Functions

Higher order functions are functions that operate on other functions, either by taking them as arguments or by returning them. In simple words, A Higher-Order function is a function that receives a function as an argument or returns the function as output.

For example, Array.prototype.map, Array.prototype.filter and Array.prototype.reduce are some of the Higher-Order functions built into the language.

https://blog.bitsrc.io/understanding-higher-order-functions-in-javascript-75461803bad
October 29, 2018 at 3:28:25 PM EDT *
javascript
FILLER

JavaScript Frameworks Considered Harmful – Bob Myers – Medium

QRCode

The dirty little secret about JS frameworks, not just Ember, is their abysmal performance on mobile devices. First, we have to download the huge runtime on a slow connection. Then, we have massive amounts of framework code running on a device which has a slower processor to start with, but may also have an inferior JS engine. The result can be latencies in seconds or even tens of seconds merely to display a page. There is no simple solution to this problem.

https://medium.com/@torazaburo/javascript-frameworks-considered-harmful-a7448382d9a0
August 13, 2018 at 10:30:53 AM EDT *
javascript
FILLER

Free Frontend - CSS Menus

QRCode

Hand-picked HTML and CSS code examples, tutorials and articles

https://freefrontend.com/css-menu
August 6, 2018 at 2:29:35 PM EDT *
css webdesign javascript menu
FILLER

How to use Chrome DevTools like a Pro | The JotForm Blog

QRCode
  1. DOM Search by CSS Selectors
  2. Material and Page Color Palettes
  3. Multiple Cursor
  4. Get the current element with “$0”
  5. View Event Listeners
  6. Media Query
  7. Copy Response
  8. Run Predefined Snippets
https://www.jotform.com/blog/how-to-use-chrome-devtools-like-a-pro
July 30, 2018 at 2:45:32 PM EDT *
chrome devtools javascript webdesign
FILLER

How you can improve your workflow using the JavaScript console

QRCode

When we think about the console, the first thing that comes to mind and the console.log, right? But there are many more methods than those we imagine. Now we will see how to make the most of using the console, and I’ll give you some tips to make them these methods more readable

https://medium.freecodecamp.org/how-you-can-improve-your-workflow-using-the-javascript-console-bdd7823a9472
June 23, 2018 at 11:18:26 AM EDT *
javascript programming
FILLER

A Tricky JavaScript Interview Question Asked by Google and Amazon

QRCode

The following will be a short explanation, along with some solutions, of a popular JavaScript question that tends to get asked in developer interviews.

This question deals with the topics: closures, setTimeout, and scoping.

https://medium.com/coderbyte/a-tricky-javascript-interview-question-asked-by-google-and-amazon-48d212890703
June 4, 2018 at 12:34:11 PM EDT *
javascript programming interviewing
FILLER

D3 gallery

QRCode

Welcome to the D3 gallery! More examples are available on bl.ocks.org/mbostock. If you want to share an example and don't have your own hosting, consider using Gist and bl.ocks.org. If you want to share or view live examples try vida.io.

https://github.com/d3/d3/wiki/Gallery
April 11, 2018 at 1:44:13 PM EDT *
javascript data
FILLER

JavaScript Bit Manipulation

QRCode

Bit manipulation in JavaScript is complicated by the way that it attempts to be completely type free. One of the consequences of this type free approach is that numbers are always stored as 64-bit floating point values - i.e. double precision floating point.

Yes - that's correct JavaScript doesn't have an integer type that you can make use of. When needed JavaScript will perform an internal conversion to a 32-bit value but you can't gain access directly to this integer and it is converted back to floating point format as soon as it is possible.

http://www.i-programmer.info/programming/javascript/2550.html
April 11, 2018 at 10:09:45 AM EDT *
javascript
FILLER

10 Interview QuestionsEvery JavaScript Developer Should Know

QRCode

JavaScript is special, and it plays a critical role in almost every large application. What is it about JavaScript that makes it meaningfully different from other languages?
Here are some questions that will help you explore the stuff that really matters:

https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95
April 3, 2018 at 7:46:46 AM EDT *
interviewing javascript
FILLER

How I construct a pen on CodePen by Sten Hougaard on CodePen

QRCode

One my prefered playgrounds is SVG. It is Scalable Vector Graphics, which in practice means that you can draw something in the browser using some tags, some stying and some code. How cool is that? Compared with a piece of paper and a pen you can go crazy and the result is generated instantly as you change the elements of your playground in your pen on CodePen.

https://codepen.io/netsi1964/post/how-i-construct-a-pen-on-codepen
February 27, 2018 at 10:52:55 AM EST *
codepen svg programming javascript
FILLER

Learn map, filter and reduce in Javascript – João Miguel Cunha – Medium

QRCode

This article is pointed towards beginners in Javascript or people who are just starting working with functional Javascript and never heard of map, filter and reduce. If you already have a lot of practice with these, you can just jump to the end of the article where I point you towards some other interesting pieces.

https://medium.com/@joomiguelcunha/learn-map-filter-and-reduce-in-javascript-ea59009593c4
February 27, 2018 at 9:28:28 AM EST *
javascript
FILLER

jQuery 3 - Animation - use velocity.js instead!

QRCode

Use velocity.js instead!

http://www.i-programmer.info/programming/jquery/10461.html?start=1
August 2, 2017 at 8:35:56 AM EDT *
jquery animation javascript
FILLER

How to use Velocity to easily add animations | Creative Bloq

QRCode

Velocity.js is a free, lightweight library that you should be using - developer Neal O'Grady gets you started.

http://www.creativebloq.com/web-design/use-velocity-add-animations-61515280
August 2, 2017 at 8:35:10 AM EDT *
jquery animation javascript
FILLER

Just JavaScript - The Prototype Mechanism

QRCode

Using Prototypes

You can think of the prototype mechanisms as providing some sort of inheritance - but it certainly doesn't bring with it any of the other pillars of OOP, encapsulation and polymorphism say. It is a much simpler and much more direct mechanism to make code sharing possible.

If you have a single object then there isn't much practical advantage in designing a prototype object for it. On the other hand having a prototype object with all of the methods that the object is using does provide an organization. The object then has just the instance variables and the methods are all provided by the prototype. If things change and you need a second object, or more objects, then the prototype provides an easy solution.

http://www.i-programmer.info/programming/javascript/8025-just-javascript-the-prototype.html
August 1, 2017 at 12:17:08 PM EDT *
javascript
FILLER

Pong with SVG.js

QRCode

Everybody loves the vintage game Pong, right? We sure do. What's more fun? Building it yourself!

That's why we decided to create one with SVG.js - to highlight some aspects of our library. It might seem like a complex idea for a small tutorial, but as you'll see, it's simpler than it sounds. Let's dive into it!

https://css-tricks.com/pong-svg-js/
May 6, 2017 at 2:29:27 PM EDT *
programming svg javascript
FILLER

Why we chose Vue.js over React

QRCode
http://pixeljets.com/blog/why-we-chose-vuejs-over-react/
April 5, 2017 at 6:56:40 PM EDT *
vue javascript frameworks
FILLER

Noisehack

QRCode
https://noisehack.com/
April 2, 2017 at 7:36:33 PM EDT *
music synthesizer javascript
FILLER

GitHub - JustClear/blurify: blurify.js is a tiny(~2kb) library to blurred pictures, support graceful downgrade from `css` mode to `canvas` mode.

QRCode
https://github.com/JustClear/blurify
April 2, 2017 at 3:07:49 PM EDT *
images javascript webdesign
FILLER

Support for SSL Client Authentication in phantomjs - Stack Overflow

QRCode
http://stackoverflow.com/questions/32441290/support-for-ssl-client-authentication-in-phantomjs
December 14, 2016 at 3:25:17 PM EST *
javascript phantom.js
FILLER
3 / 7
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community