Search
Creating Interactive Maps in WordPress with MapSVG
29.5.2019
The MapSVG plugin for WordPress allows you to create feature-rich, interactive maps quickly and through a smart admin UI. Interactive maps are a common request for projects when you need to visualize impact over particular locations. If you are already on WordPress, this comprehensive plugin could...
How to Create a Bitcoin Cash Treasure Hunt
27.5.2019
Creating a treasure hunt is a great way to introduce newcomers to the concept of cryptocurrency and to its actual application. It will teach them some of the basics like how a wallet works and give the finders their first few coins. Also Read: Massive Growth by P2P Exchange and AT&T Accepting...
Ethereum (ETH) Price Analysis: ETH Lays Down a Shining Road-map for 2019
23.5.2019
Ethereum reveals its plan for the future and traders seem to welcome the move Ethereum’s ETH continues to deliver high performance amidst fluctuating market Ethereum is a bet for the long term. The smart contracts platform is strong with lifetime sustenance capability and continues to be a source...
How to Travel the World With Bitcoin Cash
19.5.2019
Traveling is on everyone’s minds as summer approaches and crypto enthusiasts are no exception. But for anyone thinking of a holiday trip, travel arrangements can be arduous. Crypto payments can make your life easier in that regard, particularly with bitcoin cash, which is a fast and cheap...
Using Array reduce
14.5.2019
Every developer who specializes in any programming language will tell you there’s a powerful tool the language provides that they rarely use and wish they knew more about. For me, it’s Array.prototype.reduce. I quite enjoy the other Array methods like map, filter, and find, but reduce...
Type Conversion with JavaScript Arrays
7.5.2019
JavaScript’s loose nature allows developers to employ amazing tricks to do just about anything you’d like. I’ve detailed how you can filter falsy values in arrays using a filter(Boolean) trick, but reader David Hibshman shared another trick for typecasting array values the same...
Americká policie využívá historii polohy z Map Google k usvědčování pachatelů
15.4.2019
Americká policie využívá historii polohy k usvědčování pachatelů • Uživatelé přitom ani často netuší, že mají funkci aktivní • Na základě těchto dat strávil ve vazbě týden nevinný člověk
Stojíte v dopravní zácpě? Teď ji můžete nahlásit prostřednictvím Map Googlu
8.4.2019
Mobilní navigační aplikace ve stále větší míře plánují trasy s ohledem na aktuální dopravní situaci. Jedním z průkopníků je v tomto směru izraelská navigace Waze, spadající od roku 2013 pod křídla Googlu. Není proto překvapením, že se některé uživateli oceňované funkce začaly postupem času
An Illustrated (and Musical) Guide to Map, Reduce, and Filter Array Methods
26.3.2019
Map, reduce, and filter are three very useful array methods in JavaScript that give developers a ton of power in a short amount of space. Let’s jump right into how you can leverage (and remember how to use!) these super handy methods.
Array.map()
Array.map() updates each individual value in...
Collective #502
25.3.2019
Griffith * Vibe * Pyright * Hyphenation in CSS * Advanced Map Shading * Lights on or off? * Writing Resilient Components
Collective #502 was written by Pedro Botelho and published on Codrops
Should I Use Source Maps in Production?
1.3.2019
It's a valid question. A "source map" is a special file that connects a minified/uglified version of an asset (CSS or JavaScript) to the original authored version. Say you've got a filed called _header.scss that gets imported into global.scss which is compiled to global.css. That final CSS file...
How to Create a Fake 3D Image Effect with WebGL
20.2.2019
Learn how to create an interactive "fake" 3D effect for images with depth maps and plain WebGL.
How to Create a Fake 3D Image Effect with WebGL was written by Yuriy Artyukh and published on Codrops
JavaScript Glossary: Array .map() Method
8.2.2019
Basics
The map() method takes a callback method that performs an operation on the elements in the array. It returns a new array containing the resulting values of running the
Collective #481
7.1.2019
SVG Gradient Map Filter * Fancy Function Parameters * Algorithms * Tap to Dismiss * WebsiteVoice
Collective #481 was written by Pedro Botelho and published on Codrops
Object.fromEntries
9.11.2018
The Object object has been buffed with useful methods over the past few years. Object.keys, Object.values, Object.freeze, and Object.assign all address frequently desired functionality. One of the new Object methods is fromEntries, which accepts a Map or map-like array nesting and converts it...
How to Get Green Blood in PUBG
24.9.2018
My current video game obsession is Player Unknown’s Battleground, also referred to as PUBG. It’s an online multiplayer game which drops yourself and 99 others into a single, large map and you battle it out until the last man is standing. It’s frustrating, heart-attack inducing...
Byla to jen otázka času: Nejoblíbenější funkce z Waze se dostává do Map Googlu
9.7.2018
Komunitní navigace Waze patří od roku 2013 Googlu, ovšem až letos si z ní Google do svých map přetáhne nejoblíbenější funkci - hlášení dopravních situací. Google funkci začal před několika dny testovat na omezeném vzorku uživatelů a následně potvrdil, že se funkce brzy dostane ke všem uživatelům
[článek] Raketový růst Instagramu, výpadek map od Applu a krádeže účtů na WhatsApp
24.6.2018
[11 minut čtení] Kaspersky Lab vs. EU, závislost na hrách je nemoc, GDPR nesplnilo očekávání, videoreklama v Messengeru, Google investuje do JD.com. Co ještě přinesl právě končící #tyden. Kaspersky Lab ukončili spolupráci s agenturami a organizacemi v Evropě, vadí jim, že Evropský parlament (EP)...
Ship Map
14.5.2018
Interactive maps can both be functional and, when combined with data, tell a good story. Kiln released this data-driven map (make sure to hit the play button) to show the routes of every cargo ship moving about on the high seas in 2012.
Created by London-based data visualisation studio Kiln...
List Processing with map, filter, and reduce
11.4.2018
Functional programming in JavaScript is all the rage these days.
And it should be: The benefits for readability, maintainability, and testability are dramatic.
"Functional programmmin