Skip to content

Instantly share code, notes, and snippets.

View jpvincent's full-sized avatar

Jean-Pierre Vincent jpvincent

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Jean-Pierre subscriptions in feedly Cloud</title>
</head>
<body>
<outline text="innovation" title="innovation">
<outline type="rss" text="Pl4n3s world" title="Pl4n3s world" xmlUrl="http://pl4n3.blogspot.com/feeds/posts/default?alt=rss" htmlUrl="http://pl4n3.blogspot.com/"/>
<outline type="rss" text="Mozilla Hacks - the Web developer blog" title="Mozilla Hacks - the Web developer blog" xmlUrl="http://hacks.mozilla.org/feed/" htmlUrl="https://hacks.mozilla.org"/>
@jpvincent
jpvincent / gist:4034445
Created November 7, 2012 21:04
Stage d’expertise technique Web - 2013

Jean-pierre VINCENT, consultant et expert technique Web cherche son stagiaire

Le candidat

Si vous pensez que :

  • le web, ça rox.
  • HTML5, CSS3 et javascript dominent déjà le monde.
  • vous voudriez faire un grand bond en avant dans ces technos.
  • chef de projet ou manager ça n’est pas l’aboutissement d’une carrière de développeur.
  • le grand écart IE7 - Chrome et mobiles est possible.
{
"eqeqeq": true, // This options prohibits the use of == and != in favor of === and !==.
"noarg": true, // This option prohibits the use of arguments.caller and arguments.callee
"undef": true, // This option prohibits the use of explicitly undeclared variables
"unused": true, // This option warns when you define and never use your variables
"trailing": true, // This option makes it an error to leave a trailing whitespace in your code
"maxdepth": 3,
"camelCase": true,
"curly": true, // This option requires you to always put curly braces around blocks in loops and conditionals
"immed": true, // This option prohibits the use of immediate function invocations without wrapping them in parentheses
{
"eqeqeq": true,
"undef": true,
"unused": true,
"trailing": true,
"maxdepth": 3,
"debug": true,
"eqnull": true,
"esnext": true,
"loopfunc": true,