- Steven Pemberton: HTTP Must Die!
- Jean-Charles Verdié: Sisyphus and Standards
- Bart van Leeuwen: Why the Web Can Make my Life as a Professional Firefighter Safer
- Jérémie Astori: cryptic: Encryption and partitioning on Ubuntu
- Håkon Lie: Paging the Web
- Nishanth Babu: India on the Web
- Mark Sadecki: Canvas Accessibility
- Chaals Neville: Good Intentions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function HSVtoRGB (hsv) { | |
| // this doesn't work for the values of 0 and 360 | |
| // here's the hacky fix | |
| var h = hsv[0]; | |
| if (h === 0) h = 1; | |
| if (h === 360) h = 359; | |
| // Rebase the h,s,v values | |
| h = h/360; | |
| var s = hsv[1]/100 | |
| , v = hsv[2]/100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: node_js | |
| branches: | |
| only: | |
| - gh-pages | |
| env: | |
| global: | |
| - URL="http://w3c.github.io/manifest/ECHIDNA" | |
| - DECISION="https://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0627.html" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Baptise Fluzin | Le Temps | |
| 2. Romain Saillet | Pourquoi le voyage est nécessaire à l'entreprenariat? | |
| 3. Yael Azoulay | IoT & SHS: Rencontre du 3ème type qui s'aiment-moi-non-plus | |
| 4. Elliot Lepers | La Fabrique de l'Engagement | |
| 5. Bruno Caby | Bijouterie moléculaire, poésie aléatoire & jeux vidéo | |
| 6. Auguste Genovesio | The Curse of Dimensionality | |
| 7. Robin Berjon | Les fourmis du Web | |
| 8. Aurore Bergé | Cats Don't Bullshit | |
| 9. Nicolas Vanbremeersch | Stop making stupid people famous |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Up | 15-12-2014 02:00:19 | OK | 13 hrs, 2 mins | |
|---|---|---|---|---|
| Down | 15-12-2014 01:58:00 | --- | 0 hrs, 2 mins | |
| Up | 08-12-2014 04:44:57 | OK | 165 hrs, 13 mins | |
| Down | 08-12-2014 04:42:37 | --- | 0 hrs, 2 mins | |
| Up | 08-12-2014 01:28:05 | OK | 3 hrs, 14 mins | |
| Down | 08-12-2014 01:25:22 | --- | 0 hrs, 2 mins | |
| Up | 06-12-2014 03:59:53 | OK | 45 hrs, 25 mins | |
| Down | 06-12-2014 03:57:33 | --- | 0 hrs, 2 mins | |
| Up | 04-12-2014 08:05:00 | OK | 43 hrs, 52 mins | |
| Down | 04-12-2014 08:02:40 | --- | 0 hrs, 2 mins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@grumple:~# diff -bu /tmp/sync.py /u/www.w3c-test.org/webhook/sync.py | |
| --- /tmp/sync.py 2014-12-15 12:28:50.233509316 +0000 | |
| +++ /u/www.w3c-test.org/webhook/sync.py 2014-05-29 12:05:59.613261034 +0000 | |
| @@ -8,10 +8,12 @@ | |
| import ConfigParser | |
| import getpass | |
| import hmac | |
| +import itertools | |
| +import lockfile | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NEEDS WORK: | |
| - /dom/nodes/MutationObserver-attributes.html | |
| - most implementations don't mutate when the string doesn't change. What's wanted here? | |
| - implementations don't properly default attribute: true. Imp bug IMHO. | |
| - /dom/traversal/NodeIterator.html | |
| - spec is unclear (not sure what happens to function that's given for a NodeFilter) | |
| - tests take the Gecko-friendly interpretation, other implementations not | |
| - /dom/nodes/Node-isEqualNode.xhtml | |
| - suspicious test, cross-origin issue | |
| - /dom/nodes/MutationObserver-childList.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ^/tools/runner/update\_manifest\.py$ | |
| Process Process-5: | |
| Traceback (most recent call last): | |
| File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/process.py", line 258, in _bootstrap | |
| self.run() | |
| File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/process.py", line 114, in run | |
| self._target(*self._args, **self._kwargs) | |
| File "serve.py", line 79, in create_daemon | |
| self.daemon = init_func(host, port, paths, bind_hostname, external_config) | |
| ^/tools/runner/(.*)$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WEB ANTS: | |
| - Those of you who remember programming in Logo, that language with the little turtle, might be | |
| happy to know that it is still alive and well, perhaps in a surprising location. | |
| - What you see behind me is NetLogo, a modern version of Logo that is used for research into | |
| multi-agent simulations. | |
| - I'm here to talk about ants. | |
| - If you were tasked with emulating how an ant colony forages for food, you might get scared. | |
| Millions of individuals, exploring the world, it's all very complex. |