WordPress database error: [INSERT, UPDATE command denied to user '51213-2'@'10.10.20.44' for table 'wp_options']
INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1714656753.7659180164337158203125', 'yes') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)


Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372
{"id":1471,"date":"2013-07-02T14:29:35","date_gmt":"2013-07-02T12:29:35","guid":{"rendered":"http:\/\/www.jonathanantoine.com\/?p=1471"},"modified":"2013-07-02T14:40:18","modified_gmt":"2013-07-02T12:40:18","slug":"windows-8-1-lets-discover-the-scheduler-of-winjs","status":"publish","type":"post","link":"http:\/\/www.jonathanantoine.com\/2013\/07\/02\/windows-8-1-lets-discover-the-scheduler-of-winjs\/","title":{"rendered":"Windows 8.1 : let’s discover the Scheduler of #WinJS"},"content":{"rendered":"

\"WinJSScheduler\"Windows 8.1 comes with a new feature in the WinJS SDK : a scheduler. Let’s see what it is and how to use it!<\/p>\n

In Windows 8, every job is nearly done as soon as you execute it. You could play with the msSetImmediate function<\/a> but it was still a little mode “hack” than “code”. <\/p>\n

With Windows 8.1, the SDK introduce a scheduler used by the whole WinJS framework. This scheduler helps you to define what is important (animations, visual feedback, manage user input) from what can be delayed (background work, data processing not used immediatly). <\/p>\n

The goal is to let you build application which reacts immedialty to the user will.<\/strong>
\n<\/p>\n

What’s in it ?<\/h3>\n

Everything lives in the WinJS.Utilities.Scheduler<\/strong> namepsace and is written in javascript.
\nThis namespace is often shortcuted “Scheduler” or “S” in the Microsoft samples.
\n[js]var S = WinJS.Utilities.Scheduler;[\/js]<\/p>\n

There is 4 importants objects to know :<\/p>\n