-
William
William arbeitet Nachtschichten bei McDonald’s. Er kommt aus Ghana, und man sieht ihm sein Alter nicht an. Er mag die gleiche Musik junge Leute mögen, und er arbeitet die ganze Nacht pausenlos. ich glaubte er könnte nicht Älter als 35 sein. Später habe ich entdeckt - er war 58.
-
Google Maps introduces weather
Google Maps introduces weather - in the pulldown menu at the top right corner of the map itself. More on the gotofritz blog →
-
Facebook continuos integration cycle
There is an interesting screencast by Chuck Rossi, release manager, on how they manage the release process at Facebook. Worth seeing, but if you haven’t got the time, here’s a quick executive summary.
-
PHP 5.4 introduces short arrays
The more time I spend coding in Javascript, the more PHP feels old and clumsy. Many developers feel that way, and that’s probably why they introduced a small, JS-like improvement in PHP 5.4 - short arrays:
$a = [1, 2, 3, 4]; $a = ['one' => 1, 2, 'three' => 3, 4]; (see post in my blog)
-
Capsule CRM is not much use to a freelancer
I have been using Capsule, a CRM, for a couple of years, to help me manage the endless stream of emails from recruiters. It has some good features, but it is not really suited to freelancers. It may work well for sales people, though. Perhaps. More →
-
Beyond polyfills: sugar.js
While front end developers debate about polyfills, a slightly more controversial Javascript library, Sugar.js, promises to “let you do more with less code”. I am still in two minds about this.
-
Avoid the mysql extension in PHP
There are a few different ways of handling MySQL in in PHP. Ext/mysql, i.e. the functions that start with mysql_xxx, is the oldest and most well known. It is also insecure, doesn’t use all the database features, and will be phased out and in future releases. Use mysqli instead, or at least pdo_mysql.
More -
CSS3 transitions callbacks →
[blog] CSS3 transitions fire off a TransitionEnd event when they end, so that you can attach a Javascript handler to it. The only (minor) inconvenient is that the event takes different names depending on the platform.
-
Evernote plugin for Firefox 5
Evernote have a beta of their FF 5 plugin at update.evernote.com/prerelease/ENMozillaExtension/mozilla-extension-4.beta.xpi
-
pdf.js: using JS and HTML5 to render pdfs
A side project by the Mozilla developers, pdf.js is an ongoing project to render PDFs within HTML5 compliant browsers, using a combination of Canvas and / or SVG. It looks very interesting. The code is on github, and you can read more at Andreas Gal’s blog.
-
Blank New Tab Google Chrome extension
When you open a new tab in Chrome it shows to everyone who may be watching your screen (clients, colleagues, etc) the sites you visit often. Surprisingly, there is no settings to change that. However, that is easily fixed with a simple extension: Blank New Tab
-
Awesome Screenshot browser extension by diigo.com
Just installed the Awesome Screenshot browser extension by diigo.com on Chrome – very happy with it. So far it’s the best extension of its type I have tried. You can quickly just save the screen grab as is, or you can annotate it first, which is very helpful. 5 stars.
-
Skype killer? Google open sources WebRTC
WebRTC looks interesting - it allows to build HTML5 video / audio apps from within the browser (i.e., without need for Skype or an iPad app).
https://sites.google.com/site/webrtc/blog/introducingwebrtc-anopenreal-timecommunicationsprojectNot surprisingly it’s only supported by Mozilla, Opera, Chrome - and knowing Google, Chrome support will stop if someone develops an app that could challenge YouTube.
“WebRTC offers web application developers the ability to write rich, realtime multimedia applications (think video chat) on the web, without requiring plugins, downloads or installs. It’s purpose is to help build a strong RTC platform that works across multiple web browsers, across multiple platforms.”
-
Depth JS: interact with Kinect using Javascript.
Javascript’s relentless quest for world domination carries on.
Demolition of Flash - tick.
Server side JS - tick.
JS Database - tick.
Interaction with Kinect - tick -
Checking jQuery version
I always forget this. Type this in Firebug:
$().jquery;