An extensive CSS reference with all the important properties and info to learn CSS from the basics Extensive reference sporting clear explanations, examples, live demos (using Codrops’ Playground), CSS compatibility tables (provided by Can I use…), etc.. The fact that Sara Soueidan wrote a lot of these articles gives away that they’re very – very! …
Tag Archives: link
Falsehoods programmers believe about time and time zones
Every day has 24 hours Every day without DST changes is 86400 (60 * 60 * 24) seconds long Every day in UTC is 86400 (60 * 60 * 24) seconds long Week one of a year starts in January every year If I know what time zone someone is in and they just tell …
Continue reading “Falsehoods programmers believe about time and time zones”
Raspberry Pi 2
Quad Core Cortex A7 (900Mhz) and 1GB of RAM. It will also run Windows 10: We’re excited to announce that we are expanding our Windows Developer Program for IoT by delivering a version of Windows 10 that supports Raspberry Pi 2. This release of Windows 10 will be free for the Maker community through the …
Word Map
SecurityHeaders.com
Run a free test of a website’s HTTP headers and learn how it performs from a security perspective! Checks for the following headers and their values: Access Control Allow Origin Content Security Policy Cross Domain Meta Policy NoSniff Server Information Strict Transport Security UTF-8 Character Encoding X-Frame-Options X-Powered-By X-XSS-Protection SecurityHeaders.com →
Deploying Your Ionic App to Heroku
Not much to it actually, as you only need Express to serve your Ionic app: // server.js, Heroku will autostart this when found var express = require(‘express’), app = express(); app.use(express.static(‘www’)); app.set(‘port’, process.env.PORT || 5000); app.listen(app.get(‘port’), function () { console.log(‘Express server listening on port ‘ + app.get(‘port’)); }); Deploying Your Ionic App to Heroku →
Chrome M40: The Virtual Viewport
The idea of the virtual viewport is to split the notion of “the viewport” into two, “the layout viewport” (where fixed position items are attached) and “the visual viewport” (What the users actually see). In the screenshots above you can cleary see this in action: without a virtual viewport it’s not possible to view right …
$cordovaHealthKit – Accessing and Modifying HealthKit data from within Cordova/Ionic
Front-end Job Interview Questions
Brilliant — BRILLIANT! — and extensive list of questions to vet potential front-end developers during their job interview. Ranges from simple questions to some very in-depth ones. A few examples: What did you learn yesterday/this week? Name 3 ways to decrease page load (perceived or actual load time). Can you explain the difference between GET …