Skip to content

Instantly share code, notes, and snippets.

@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 {
[{
"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);
db.adminCommand({"addshard":"s1/localhost:37017"});
db.adminCommand({"addshard":"s2/localhost:47017"});
db.adminCommand({"enablesharding":"test"});
db.adminCommand({"shardcollection":"test.users","key":{"_id":1}});
sh.status();
@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 / GenericJpaDao.java
Created October 15, 2012 08:51
struts2RestJpaBootstrap - dao generic
package org.demo.util;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import javax.persistence.TypedQuery;
@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();
}
public class App implements FizzBuzzInterface {
private static final String result = "1\n2\nFizz\n4\nBuzz\nFizz\n7\n8\nFizz\nBuzz\n11\nFizz\n13\n14\nFizzBuzz\n16\n17\nFizz\n19\nBuzz\nFizz\n22\n23\nFizz\nBuzz\n26\nFizz\n28\n29\nFizzBuzz\n31\n32\nFizz\n34\nBuzz\nFizz\n37\n38\nFizz\nBuzz\n41\nFizz\n43\n44\nFizzBuzz\n46\n47\nFizz\n49\nBuzz\nFizz\n52\n53\nFizz\nBuzz\n56\nFizz\n58\n59\nFizzBuzz\n61\n62\nFizz\n64\nBuzz\nFizz\n67\n68\nFizz\nBuzz\n71\nFizz\n73\n74\nFizzBuzz\n76\n77\nFizz\n79\nBuzz\nFizz\n82\n83\nFizz\nBuzz\n86\nFizz\n88\n89\nFizzBuzz\n91\n92\nFizz\n94\nBuzz\nFizz\n97\n98\nFizz\nBuzz\n";
@Override
public String call() {
return result;
}
}
var montext = "test";
var data = {
get text() { return montext; },
set text(val) { montext = val; }
};