Skip to content

Instantly share code, notes, and snippets.

select
co.Code '_id',
co.Code 'code',
co.name 'name',
co.Continent 'continent',
co.region 'region',
co.SurfaceArea 'surface_area',
co.IndepYear 'year_of_independence',
co.Population 'population',
co.LifeExpectancy 'life_expectancy',
@sanaulla123
sanaulla123 / data.sql
Created January 31, 2022 12:52
Sample data for app_user
INSERT INTO app_user(username, first_name, last_name, password)
VALUES('user1', 'First 1', 'Last 1', '12345-1');
INSERT INTO app_user(username, first_name, last_name, password)
VALUES('user2', 'First 2', 'Last 2', '12345-2');
INSERT INTO app_user(username, first_name, last_name, password)
VALUES('user3', 'First 3', 'Last 3', '12345-3');
INSERT INTO app_user(username, first_name, last_name, password)
@sanaulla123
sanaulla123 / ExecutorServiceSample.java
Created July 1, 2012 19:38
An example of using ExecutorService framework in Java for developing concurrent applications
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;
import java.util.concurrent.*;
public class ExecutorServiceSample {
public class Parser {
private Parser successor;
public void parse(String fileName){
if ( getSuccessor() != null ){
getSuccessor().parse(fileName);
}
else{
System.out.println("Unable to find the correct parser for the file: "+fileName);
@sanaulla123
sanaulla123 / CNNImplementation.java
Created March 27, 2012 17:47
CNN Algorithm Implementation for Iris Data set in Java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.FileReader;
import java.util.ArrayList;
import java.util.List;
import java.net.URL;
@sanaulla123
sanaulla123 / world-index.json
Last active November 2, 2017 14:32
Index mapping structure for world index
{
"aliases":{},
"warmers":{},
"mappings": {
"world": {
"properties": {
"capital": {
"properties": {
"district": {
"type": "string"
select
co.Code 'code',
co.name 'name',
co.Continent 'continent',
co.region 'region',
co.SurfaceArea 'surface_area',
co.IndepYear 'year_of_independence',
co.Population 'population',
co.LifeExpectancy 'life_expectancy',
co.GovernmentForm 'government_form',
@sanaulla123
sanaulla123 / gist:2578499
Created May 2, 2012 17:31
try-with-resources in Project Coin Java 7
import java.io.Closeable;
import java.io.IOException;
/**
* Created by IntelliJ IDEA.
* User: mohamed
* Date: 2/5/12
* Time: 9:24 PM
* To change this template use File | Settings | File Templates.
*/
{
"type" : "jdbc",
"jdbc" : {
"password" : "******",
"user" : "root",
"url" : "jdbc:mysql://localhost:3306/world",
"sql" : [ {
"statement" : "world.sql"
} ],
#!/bin/sh
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
bin=${DIR}/../bin
lib=${DIR}/../lib
java \
-cp "${lib}/*" \
-Dlog4j.configurationFile=${bin}/log4j2.xml \
org.xbib.tools.Runner \