Skip to content

Instantly share code, notes, and snippets.

View bastientanesie's full-sized avatar
🥖
Yet another grumpy french web developer

Bastien Tanésie bastientanesie

🥖
Yet another grumpy french web developer
View GitHub Profile
@bastientanesie
bastientanesie / controller.js
Created September 3, 2018 13:35
ember-pouch attachment bug
import Controller from '@ember/controller';
import EmberObject from '@ember/object';
export default Controller.extend({
actions: {
// action bound to a test button
test() {
let avatarDOMElement = document.getElementById('user-avatar-input');
if (avatarDOMElement.files.length > 0) {
let file = avatarDOMElement.files[0];
server {
listen 0.0.0.0:80;
server_name release.myapp.com;
server_tokens off;
return 301 https://$server_name$request_uri;
}
upstream nucleus {
server 127.0.0.1:8181 fail_timeout=0;
@bastientanesie
bastientanesie / keybase.md
Created February 21, 2017 16:23
Verifying the authorship of my GitHub account with Keybase.

Keybase proof

I hereby claim:

  • I am bastientanesie on github.
  • I am bastientanesie (https://keybase.io/bastientanesie) on keybase.
  • I have a public key ASCIt8dZeEgUzr6OjS_TiWIxOn2hu_Y4gYF6d0qLy3qYNgo

To claim this, I am signing this object:

@bastientanesie
bastientanesie / Tutoriels_EaselJS.txt
Created June 7, 2012 07:22
Liste de tutoriels EaselJS
http://active.tutsplus.com/tutorials/html5/getting-started-with-easeljs-a-flash-like-interface-for-the-html5-canvas/
http://www.gotoandlearn.com/play.php?id=152
http://blogs.msdn.com/b/davrous/archive/2011/07/22/jeux-html5-animation-de-sprites-dans-l-233-l-233-ment-canvas-gr-226-ce-224-easeljs.aspx
http://www.mikechambers.com/blog/2011/01/19/getting-started-with-the-canvas-element-and-easeljs/
http://small-codes.com/decouverte-de-easeljs-introduction/