Skip to content

Instantly share code, notes, and snippets.

[{
"8nrh6gUb7e8": "bDQti",
"TzoJ7q0q1AXmFxGS": {
"zJ0T55CBX5Oa1XwAos": "0ZXVaC",
"73BgW95KJipckQYfnE5PW": "XAaEv",
"9UufdEX8ww5ZVRsID4FUe5F8w": "wy6jqUjCINp",
"MjZrR0lkjp": "n0KRwWzYQHqz2",
"SRarFeERb": null,
"dMNMPWN2HxyVWNV6": null,
"oqLLuhGU": "cItndG4kn9AKo",
function DataLayerReceiver(callBack) {
this.dataLayerByName = [];
this.callBack = callBack;
}
DataLayerReceiver.prototype.emit = function (publisherName, publisherData) {
console.log('emit from ', publisherName);
var complete = true;
for (var i = 0; i < this.dataLayerByName.length; i++) {
@asicfr
asicfr / test.js
Last active February 14, 2018 15:25
// test DOMContentLoaded
console.log('parse test.js from gits'+(+new Date));
var pubpubExt = t1.attach("pubExt");
setTimeout(function () {
pubpubExt("emit pubpubExt");
}, 1000);
@asicfr
asicfr / MyLogError
Created May 17, 2017 13:17
MyLogError
[ERROR] Failed to execute goal org.owasp:dependency-check-maven:1.4.5:check (default-cli) on project backend-app: Execution default-cli of goal org.owasp:dependency-check-maven:1.4.5:check failed: A required class was missing while executing org.owasp:dependency-check-maven:1.4.5:check: org/joda/time/ReadableInstant
[ERROR] -----------------------------------------------------
[ERROR] realm = plugin>org.owasp:dependency-check-maven:1.4.5
[ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
[ERROR] urls[0] = file:/D:/outils/m2repository/org/owasp/dependency-check-maven/1.4.5/dependency-check-maven-1.4.5.jar
[ERROR] urls[1] = file:/D:/outils/m2repository/org/owasp/dependency-check-core/1.4.5/dependency-check-core-1.4.5.jar
[ERROR] urls[2] = file:/D:/outils/m2repository/joda-time/joda-time/1.6/joda-time-1.6.jar
[ERROR] urls[3] = file:/D:/outils/m2repository/org/apache/commons/commons-compress/1.13/commons-compress-1.13.jar
[ERROR] urls[4] = file:/D:/outils/m2repository/commons-io/comm
@asicfr
asicfr / Test.java
Created June 1, 2016 07:59
The distinction between hiding and overriding method
class A {
public static void display() {
System.out.println("Inside static method of superclass");
}
}
class B extends A {
public void show() {
display();
}
@asicfr
asicfr / TestClass.java
Created May 2, 2016 13:59
Properties and ResourceBundle from Xml file
package test;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.ResourceBundle;
public class TestClass {
@asicfr
asicfr / index.js
Last active August 29, 2015 14:11 — forked from juliangruber/index.js
requirebin sketch
var unique = require('uniq');
var data = [1, 2, 2, 3, 4, 5, 5, 5, 6];
console.log(unique(data));
var unique = require('uniq');
var data = [1, 2, 2, 3, 4, 5, 5, 5, 6];
console.log(unique(data));
var myService = function($http, $q, $timeout) {
this.doItAsync = function() {
var deferred = $q.defer();
...
return deferred.promise;
};
};
angular.module('global.services', []);
myService.$inject = ['$http', '$q', '$timeout'];
(function () {
angular.module('myApp', []);
var myCtrl = function ($scope) {
console.log("declare myCtrl");
$scope.itWasUsed = false;
$scope.myvalue = 'value initial';
$scope.useIt = function () {
console.log("call real useIt function");
$scope.itWasUsed = true;