Search
JavaScript to Native (and Back!)
14.12.2018
I admit I'm quite intrigued by frameworks that allow you write apps in web frameworks because they do magic to make them into native apps for you. There are loads of players here. You've got NativeScript, Cordova, PhoneGap, Tabris, React Native, and Flutter. For deskop apps, we've got Electron....
[aktualita] Německá televizní skupina RTL rozšířila nabídku své OTT služby TV Now
12.12.2018
Kromě svých FTA programů zařadila do své OTT platformy německé mediální skupina RTL i některé placené kanály a další exkluzivní obsah. Portfolio TV Now tak aktuálně obsahuje RTL, VOX, RTL II, n-tv, Nitro, RTL plus, NOW US, Super RTL, Toggo plus, RTL Crime, RTL Passion, RTL Living a GEO Television....
Prototypes and production
11.12.2018
There’s an interesting distinction that Jeremy Keith defines between prototype code and production code in this post and I’ve been thinking about it all week:
...every so often, we use the materials of front-end development—HTML, CSS, and JavaScript—to produce something that isn’t intended...
An Introduction and Guide to the CSS Object Model (CSSOM)
10.12.2018
If you've been writing JavaScript for some time now, it's almost certain you've written some scripts dealing with the Document Object Model (DOM). DOM scripting takes advantage of the fact that a web page opens up a set of APIs (or interfaces) so you can manipulate and otherwise deal with elements...
Blue Beanie Day 2018
30.11.2018
Another year!
You better not cry, you better not shout, I’m telling you why: @BlueBeanieDay is coming Nov. 30! Start sharing your #bbd photos, links, articles, and videos now: https://t.co/3US4vHBsDR#a11y #WebStandards #InclusiveDesign #ProgressiveEnhancement pic.twitter.com/AiV3ktRqka
—...
Embed a Blog Onto Any Website With DropInBlog
30.11.2018
With DropInBlog, you can embed a blog into your site in only three minutes. A quick JavaScript/HTML widget, or a full-featured JSON API, is all it takes.
A headless blog you can take anywhere
Ever been working on your existing static site or anything that wasn’t built with WordPress, wanted...
Coincheck Has Now Reinstated All Cryptos After January Hack
26.11.2018
Japanese crypto exchange Coincheck, which suffered a major hack in January, has now reinstated services for all listed tokens on its platform
There is no longer any such thing as Computer Security
21.9.2018
Remember "cybersecurity"?
Mysterious hooded computer guys doing mysterious hooded computer guy .. things! Who knows what kind of naughty digital mischief they might be up to?
Unfortunately, we now live in a world where this kind of digital mischief is literally rewriting the world's...
WeChat Now Censoring Bitmain and Crypto Price Prediction Accounts
10.9.2018
WeChat has just blocked an official sales channel for Bitmain miners, along with several accounts that analyse the crypto markets
Build Your First Angular Website: Show a Single User Using Route Parameters
30.8.2018
We now have our users section that lists our users. This works great, but now we have to show off a single user. The route to see a single user is defined by their username:
Build Your First Angular Website: Routing to Two Pages
30.8.2018
Now that we have two pages, let's start routing to them. We want to be able to click around to our pages. Currently we are showing both our HomeComponent and ContactComponent
Build a state management system with vanilla JavaScript
25.7.2018
Managing state is not a new thing in software, but it’s still relatively new for building software in JavaScript. Traditionally, we’d keep state within the DOM itself or even assign it to a global object in the window. Now though, we’re spoiled with choices for libraries and frameworks to help...
View Source
23.7.2018
I remember seeing this Tom Dale tweet a while back. It's literally about the browser's ability to look at the HTML of the document you're looking at as it first arrived. Now the tweet is stirring up a new round of conversation.
Jonathan Snook has kind of a baby bear take:
We have the ability...
Google Now přichází o Chytré karty, přebírá je Asistent. V Česku zatím utřeme nos
19.7.2018
Chytré karty v rámci Google Now ruší postupně již delší dobu, nyní ale došlo k finálnímu odstranění. Funkčnost přebírá Google Asistent, který tak nově bude proaktivně doporučovat kdy máte kam vyrazit či co by vás mohlo zajímat. Pro telefony v češtině to ale znamená, že o funkci prozatím
What bit of advice would you share with someone new to your field?
18.7.2018
The most FA of all the FAQs.
Here's Laura Kalbag:
Find what you love. Don’t worry about needing to learn every language, technique or tool. Start with what interests you, and carve your own niche. And then use your powers for good!
And my own:
Buy a domain name. Figure out how to put an HTML file...
Nvidia vylepšuje GeForce Now: S krabičkou u televize si zapaříte i Fortnite
14.7.2018
Chytrá krabička k televizi Shield TV od Nvidie vyniká nejen výkonem, ale také rychlými aktualizacemi a Nvidie je obvykle mezi prvními, kdo na tato zařízení dostane nejnovější verzi operačního systému Android. Nvidia ale vylepšuje i samotnou funkcionalitu ve spojení s televizí, ale tentokrát se
Anatomy of a malicious script: how a website can take over your browser
13.7.2018
By now, we all know that the major tech behemoths like Facebook or Google know everything about our lives, including how often we go to the bathroom (hence all the prostate medication ads that keep popping up, even on reputable news sites). After all, we’ve given them permission to do so,...
Use Angular and NativeScript to Build a Web and Mobile Application
9.7.2018
Angular has been around for a few years now and since its release it has been useful when creating many different categories of applications, including web as well as mobile. The problem, at least
Little Tip: Draw Your Grid in ASCII in Your CSS Comments for Quick Reference
9.7.2018
Say you declared a grid like this:
body {
display: grid;
grid-template-columns: min-content 1fr;
grid-template-rows: min-content auto min-content;
}
This depends on content, for sure, but how it's likely to play out is like this:
+---+-------------+
| | |
|...
Prototyping in the Browser
5.7.2018
Prototyping animations and interactions is vital for a number of reasons: they can make your interface feel deceptively fast, they can help focus the user on a specific task, and they can provide a better sense of the current state of your application. Is data being loaded? Is something...