Jan 24, 2023

Nov 12, 2018

Solr commands - I tried


Start and stop solr
bin/solr start 
bin/solr stop 

Create and delete a core/collection
bin/solr create -c corename 
bin/solr delete -c corename

Index  a big TSV file
solr-7.5.0/bin/post -c gbif -params "separator=%09" -type text/csv ./gbif.tsv

Delete all documents from a core (Only documents) using curl command
curl "http://127.0.0.1:8983/solr/gbif/update?commit=true" -H "Content-Type: text/xml" --data-binary '<delete><query>*:*</query></delete>'


Sep 25, 2018

solr create and query sample

bin/solr start
bin/solr stop
bin/solr create -c corename
bin/solr delete -c corename

bin/solr create -c contacts
bin/post -c contacts mycontacts.xml

mycontacts.xml
<add> 
   <doc> 
      <field name = "id">001</field> 
      <field name = "first name">Rajiv</field> 
      <field name = "last name">Reddy</field> 
      <field name = "phone">9848022337</field> 
      <field name = "city">Hyderabad</field> 
   </doc>  
   <doc> 
      <field name = "id">002</field> 
      <field name = "first name">Siddarth</field> 
      <field name = "last name">Battacharya</field> 
      <field name = "phone">9848022338</field> 
      <field name = "city">Kolkata</field> 
   </doc>  
   <doc> 
      <field name = "id">003</field> 
      <field name = "first name">Rajesh</field> 
      <field name = "last name">Khanna</field> 
      <field name = "phone">9848022339</field> 
      <field name = "city">Delhi</field> 
   </doc>  
   <doc> 
      <field name = "id">004</field> 
      <field name = "first name">Preethi</field> 
      <field name = "last name">Agarwal</field> 
      <field name = "phone">9848022330</field> 
      <field name = "city">Pune</field> 
   </doc>  
   <doc> 
      <field name = "id">005</field> 
      <field name = "first name">Trupthi</field> 
      <field name = "last name">Mohanthy</field> 
      <field name = "phone">9848022336</field> 
      <field name = "city">Bhuwaeshwar</field> 
   </doc> 
   <doc> 
      <field name = "id">006</field> 
      <field name = "first name">Archana</field> 
      <field name = "last name">Mishra</field> 
      <field name = "phone">9848022335</field> 
      <field name = "city">Chennai</field> 
   </doc> 
</add>

queries
http://localhost:8983/solr/contacts/select?q=*:*
http://localhost:8983/solr/contacts/select?q=phone:9848022337

case insensitive by default
http://localhost:8983/solr/contacts/select?q=first_name:TrUpThi - 1 docs
http://localhost:8983/solr/contacts/select?q=first_name:TrUpTh - 0 docs
http://localhost:8983/solr/contacts/select?q=first_name:TrUpTh* - 1 docs

schema.xml / managed-schema / select a core > schema
<field name="test1" type="text" indexed="false" stored="false" required="false" />
Typically you will want your field to be either indexed or stored or both. If you set both to false, that field will not be available in your Solr docs (either for searching or for displaying). https://stackoverflow.com/a/22298265/6729230

Before adding docs to solr specify schema represented in schema.xml file. IF indexed or stored need is set false. Solr creates fields in schema based on the data and sets both true.
not advisable to change the schema after the documents have been added to the index. (http://www.solrtutorial.com/basic-solr-concepts.html)

Indexed and stored
While posting first solr analyse the data - analysis - lower casing, removing word stems, etc.
Analysis :  produces tokens. they are not original text, tokens are what are searched when you perform a search query. Indexed fields are fields which undergo an analysis phase and added to the indx. If a field is not indexed it cannot be searched. We cannot show tokens to users. we need to show the original text - there comes stored = true.
Sometimes, there are fields which aren't searched, but need to be displayed in the search results. You accomplish that by setting the field attributes to stored=true and indexed=false. Storing inceases the size of the index - index is analogous to database in MySQL.
Doubts
  • what is the difference between managed-schema and schema.xml ?
  • what is the difference between collection and core ?
Delete all documents in a collection - the collection name is gbif




Jun 18, 2018

JavaScript Callback

javaScript is the new software edge. It has a vivd scope in the mobile first, IoT first and AI first world. Programming paradigm has been shifted from sequential model to event based model. And javaScript tops in it. The fundamental most important part of javaScript is function express and callback.

Function expression
Unlike C or Java a function can be assigned to a variable in javaScript
function sum ( a, b ){
  return a+b;
}
is same as
var sum = function ( a, b ) {
  return a+b;
};
Function sum can be defined in any of the above ways. The second one is called function expression. The advantage of function expression is that since the function is assigned to a variable it can be passed as a parameter to another function.!!!

See the following example.
var sum = function ( a, b ) {
  return a + b;
};
var mul = function (a, b ){
  return a * b;
};

execute ( a, b, method ){
  return method (a, b);
}

console.log ( execute ( 3, 4, sum ) ); // prints 7
console.log ( execute ( 3, 4, mul ) ); // prints 12
In the above sample a method sum or mul is passed to another method execute. It may be a little difficult to understand.

Lets see another example:
greet ( name, cb ) {
  /** method implementations : if any **/
  cb ( 'Hello '+ name );
}

greet (  'Arun', function (msg){
  console.log ( msg );
});
The msg will be 'Hello Arun'. The idea is a callback is passed along with the function call. Inside the function after execution of method implementations, the call back is executed. We can use the return message inside our callback function.
Once this concept is clear,  it is very easy to expertise javaScript. 

A better way to pin point the delivery address.

One problem that is faced by ekart (Flipkart, Amazon, etc.) customers and the delivery people is to find the exact address of the customer. Especially in villages it is a big problem. Delivery people finds it difficult to track the home location. A solution is to provide a QR code of the exact delivery address (latitude, longitude) in the courier.Some updates need to be made in the purchase process. Along with the option for delivery address a map should also be provided on which the buyer can pin point the address. Google/Openstreet maps APIs are available to develop. For QR code also APIs are available. It is easy to integrate this idea to the purchase steps.

I tried to generate QR code of a random location manually. For that,
  • Go to maps.google.com. Pin point a house >  right click and select 'what is here?' option. A box pops up on the bottom of the page as shown.



  • Click  the number at the bottom which is the latitude and longitude of the address.
  • Now click Share on left side menu and copy the link.


  • I selected this location: https://goo.gl/maps/n52YtaxnSyG2
  • To create a QR code for this location go to https://www.qr-code-generator.com/ and select URL option.
  • Paste the location link and click on generate the QR code.
  • That is it then it, now it just need to be printed on the courier. The full address can also be put on the QR code.

This is the QR code that I generated manually.
QR code can be decoded with a QR code scanner. Many apps are there in Playstore/Appstore. Some mobile phones has QR code scanner integrated to the camera app.

Jun 9, 2018

Cryptocurrency — the future of economy

Cryptocurrency a word we often hear in today's economic world. What is it? How is it evolved and what advantages it has over normal currencies.

Before diving into the details of cryptocurrency lets take a look at the economy that we live in. The currency that we use in our daily life is managed, printed and distributed by the governments through various banks. What is the problem with that ? Bank transactions are not open. Only the entities (person or organisations) involved and the bank has access to transaction details. Possibility of corruption is high there. Plenty of examples we have. Take the PNB case for instance. Illegal money transfer in huge quantities can’t be facilitated without the help from inside the banks. Massive financial leaks shakes the economy of a country.

Cryptocurrency is a solution. For a transparent economy what we need is a transparent ledger. Cryptocurrency is founded on this principle. The ledger is transparent, distributed and tamper proof.




Litecoin, Ethereum, Bitcoin, Monerio, Ripple, etc. are some cryptocurrencies available in the market. Take bitcoin for instance. One of the main technology (among may other) used to realize bitcoin is Blockchain.

Blockchain: Each bitcoin transaction is entered into a publicly distributed ledger. And all the transactions are verified and authenticated by cryptographic algorithms. The Ledger is distributed and is synchronized on multiple servers spread geographically apart.

The ledger which has enough entries (transactions) is called a block. It is then passed through an SHA algorithm.



SHA ( hash of previous block + current block + n ) = 0000000…0001010101101010…..0010101100101011

where ‘n’ is a big number which makes the first specific number of the result as zeros. The only way to find ‘n’ is sequentially checking one by one. This is the job of miners. They uses their IT infrastructure to find out this number and attach the total hash to the block. For their work they will get paid by some fraction of bitcoins from the issuers involved in the transactions on that block.


This block is then attached to the existing distributed and solved chain of blocks, hence the name blockchain. Once attached the transactions in that block in finished. The figure below gives a better idea on how blockchain is realised.

Since it is a distributed ledger anyone ( with proper access ) can trace back to all of the transactions that took place since inception. The cryptographic signatures makes the data tamper proof. Each hash calculation involved previous hash and therefore tampering this chain of information is impractical.

Cryptocurrency is the future. We are on the initial stages of an entirely new kind of economy. Latest trends in this space like IOTA confirms a bright future for it. Though with restrictions many countries legalised cryptocurrencies.

Aug 26, 2016

Mislead the boss

two files visit.sh and  links

#!/bin/bash

browser='Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0'

while IFS='' read -r line || [[ -n "$line" ]]; do
    curl -s -L -A ${#browser} $line
    sleep 5
done < "$1"

now populate the links

But it is sequentially finishing the links file - so make a random number generator and select a line from the links and make it while (1)

For Web Developer

  open -a "Google Chrome" --args --disable-web-security