It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
git clone https://github.com/OrdinaryDude/elastic-grammar.git
cd elastic-grammar
mvn compile
mvn exec:java
// Elastic PL Test Class
m[2]=3;
m[1] = ++m[2];
m[1] = m[2]++;
m[1] = (4*m[2]);
m[1] = 1*(1+(m[1]>>2));
if(m[1]==6){
m[1]=0;
}else{
m[1]=1;
}
if(m[1]==7){
m[1]=0;
}else{
m[1]=1;
}
m[1]=(m[1]<1)?2:22;
if(m[1]==22 || m[1]==99){
m[1]=1000;
}
if(m[1]==22 && m[1]==99){
m[1]=1001;
}
repeat(3){
// stupid loop
m[1]=m[1]+1;
break ; // should exit right away
m[2]=99;
}
repeat(3){
// stupid loop
m[1]=m[1]+1;
if((1+1-1)==1){
continue; // should run the above line 3 times
}
m[2]=99;
}
repeat(3){
// stupid loop
if((1+1-1)==8988){
continue; // should never be executed and just fall through to second line below this one
}
m[2]=99.1234;
m[2]=m[2];
f[2]=99.1234;
if((1+1-1)!=8988){
continue; // should exit here
}
f[2]=f[2]+1; // never called
}
m[1]=4&5;
m[1]=4|0x00001;
m[1]=(2<5);
m[1]=++m[1];
f[1]=1.1;
f[1]=f[1]|2; // will be 3 due to float/int cast
if(!(2>1)){
m[9]=2;
}
if(!(!(2>1))){
m[9]=(((((22)))));
}
verify(m[9]==22);