Skip to content

Instantly share code, notes, and snippets.

Introduction: Pourquoi ce cours? Parcque 60fps

Google I/O

UI Elements at 60fps (Progressive Web App Summit 2016) https://youtu.be/ZqdNgn5Huqk

Animation CSS, JS se lance..;

Velocity

enter image description here

Atelier Express & RethinkDB

###Etape 0 : Lire ces pages de la Documentation RethinkDB

Introduction de Rethinkdb et son ReQL

<template>
<div class="wrapper">
<comp-b>...</comp-b>
</div>
</template>
<script>
import CompB from 'xxx/CompB'
export default {
<template>
<div class="wrapper">
<comp-b>...</comp-b>
</div>
</template>
<script>
import CompB from 'xxx/CompB'
export default {
@Symfomany
Symfomany / Search.vue
Created May 18, 2017 09:26
Correction_Anabel
<template>
<div>
Rechercher
<input type="search" v-model="datas.word" @keyup="recherche">
</div>
</template>
<script>
import {Store} from '@/Store.js'
let express = require('express')
let app = express()
let datas = require('./datas.json')
let fs = require('fs');
var cors = require('cors');
/********
*
* Utilisez Nodemon.js
* https://nodemon.io/
@Symfomany
Symfomany / atelier_node.md
Created May 10, 2017 12:03
atelier_node.md

VueJS Atelier - Introduction au langage NodeJS

enter image description here

Etape 0 - Documentation & Tutoriaux de NodeJS à lire

var express = require('express');
var mysql = require('mysql');
var router = express.Router();
var connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'djscrave',