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
| $ app/client : tree . | more | |
| |-- account | |
| | | -- password | |
| | | | |-- recover | |
| | | | | | -- recover.html | |
| | | | | | -- recover.js | |
| | | | | | -- recover.less | |
| | | | | | -- utils | |
| | | | | | | -- helper.js |
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
| $ app/client : tree . | more | |
| |-- account | |
| | | -- html | |
| | | | -- recoverPwd.html | |
| | | | -- updateProfile.html | |
| | | | -- account.html | |
| | | -- js | |
| | | | -- recoverPassword.js | |
| | | | -- profileInfos.js |
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
| #!/bin/bash | |
| # Global var | |
| readonly APACHE_DIR="/home/nicetomateyou" | |
| readonly SERVER_DIR="$APACHE_DIR/bundle/programs/server" | |
| readonly ARGC="$#" | |
| readonly VERSION="$1" | |
| readonly TARGET="prod" |
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
| <canvas id="c"></canvas> |
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
| # Index creation with settings | |
| curl -XPUT localhost:9200/geoloc -d '{ | |
| "settings": { | |
| "index": { | |
| "analysis": { | |
| "filter": { | |
| "french_elision": { | |
| "type": "elision", | |
| "articles": [ "l", "m", "t", "qu", "n", "s", | |
| "j", "d", "c", "jusqu", "quoiqu", |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| </body> | |
| <script src="konami.js"></script> |
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
| var WebSocketClient = require('websocket').client; | |
| var sys = require("sys"); | |
| var stdin = process.openStdin(); | |
| var client = new WebSocketClient(); | |
| client.on('connectFailed', function(error) { | |
| console.log('Connect Error: ' + error.toString()); | |
| }); |
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
| var Konami = function(t) { | |
| var e = { | |
| addEvent: function(t, e, n, i) { | |
| t.addEventListener ? t.addEventListener(e, n, !1) : t.attachEvent && (t["e" + e + n] = n, t[e + n] = function() { | |
| t["e" + e + n](window.event, i) | |
| }, t.attachEvent("on" + e, t[e + n])) | |
| }, | |
| input: "", | |
| pattern: "38384040373937396665", | |
| load: function(t) { |
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
| <template name="helloWorld"> | |
| {{ translate 'HELLO' }} | |
| </template> |
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
| METEOR CORE: | |
| Anywhere: Meteor.isClient | |
| Anywhere: Meteor.isServer | |
| Anywhere: Meteor.startup(func) | |
| Anywhere: Meteor.absoluteUrl([path], [options]) | |
| Anywhere: Meteor.settings | |
| Anywhere: Meteor.release | |