Skip to content

Instantly share code, notes, and snippets.

View slorber's full-sized avatar
🏠
Working from home

Sébastien Lorber slorber

🏠
Working from home
View GitHub Profile
// Logs all calls to preventDefault / stopPropagation in an user-friendly way
if ( process.env.NODE_ENV !== "production" ) {
(function monkeyPatchEventMethods() {
const logEventMethodCall = (event,methodName) => {
const MinimumMeaninfulSelectors = 3; // how much meaningful items we want in log message
const target = event.target;
const selector = (function computeSelector() {
{
"id":"2595a67d11894c1c8c2ab6131663c6e9",
"project":38297,
"release":"20/01/2017 13:27",
"platform":"javascript",
"culprit":"raven-js/src/raven in func",
"message":"TypeError plugin.setSuspendState is not a function raven-js/src/raven in func",
"datetime":"2017-01-23T09:55:11.000000Z",
"time_spent":null,
"tags":[
var app = {
initialize: function() {
this.bindEvents();
},
bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
onDeviceReady: function() {
app.receivedEvent('deviceready');
org.apache.commons.mail.EmailException: Sending the email to the following server failed : in.mailjet.com:587
at org.apache.commons.mail.Email.sendMimeMessage(Email.java:1242) ~[org.apache.commons.commons-email-1.2.jar:1.2]
at org.apache.commons.mail.Email.send(Email.java:1267) ~[org.apache.commons.commons-email-1.2.jar:1.2]
at com.typesafe.plugin.CommonsMailer.send(MailerPlugin.scala:242) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0]
at com.typesafe.plugin.MailerBuilder$class.sendHtml(MailerPlugin.scala:204) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0]
at com.typesafe.plugin.CommonsMailer.sendHtml(MailerPlugin.scala:215) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0]
at services.impl.DefaultEmailServiceComponent$DefaultEmailService$$anonfun$send$1.apply$mcV$sp(DefaultEmailServiceComponent.scala:132) ~[stample-web.stample-web-1.0.jar:1.0]
at akka.actor.Scheduler$$anon$11.run(Scheduler.scala:118) ~[com.typesafe.akka.akka-actor_2.10-2.2.0.jar:2.2.0]
at akka.dispatch.Task
exports.FR = {
"selectTargetType.title": "Ou souhaites-tu déplacer cette bibliothèque?",
"selectTargetType.description": "Tu es admin d'au moins une équipe. Tu as la possibilité de déplacer cette bibliothèque dans une de tes équipes, ou tu peux simplement déplacer cette bibliothèque dans une autre bibliothèque",
"selectTargetType.moveToFolderLike": "Dans une bibliothèque",
"selectTargetType.moveToTeam": "Dans une équipe",
"use strict";
exports.name = "onboardingSignupResult";
exports.FR = {
"title": "Résumé de ton inscription sur Stample",
"use strict";
exports.name = "onboardingHotspots";
exports.FR = {
"menu-search": "Recherche universelle: trouve des bibliothèques, dossiers, personnes et stamples",
"menu-contacts": "Parcours tes contacts et regarde leur profile",
'use strict';
import React, { PropTypes } from 'react';
import $ from 'jquery';
import _ from 'lodash';
import shallowCompare from 'react-addons-shallow-compare';
@slorber
slorber / findOldestKnownFatherSideAncestor.js
Last active August 14, 2016 10:54
Future/promise vs JS generators
function* findOldestKnownFatherSideAncestor(person) {
let currentPerson = person;
while (currentPerson.fatherId) {
currentPerson = yield call(PersonAPI.getById,currentPerson.fatherId);
}
return currentPerson
}