Srikanth Jeevanandan srikanthjeeva
- Sunnyvale, California
- Sign in to view email
- http://www.srikanthjeeva.com
View dancer.pl
# perl dancer includes JSON::XS | |
# so returning JSON::XS: | |
# to return true, JSON::XS::true | |
get '/works' => { | |
return to_json {success => JSON::XS::true}; | |
} | |
Response: | |
--------- |
View index.js
//PUT indexName | |
{ | |
"mappings": { | |
"type": { | |
"properties": { | |
"filepath": { | |
"type": "string", | |
"index": "not_analyzed" | |
} | |
} |
View elasticsearch_setup1.rb
# OS Requirements: Centos 6+ & Java 1.8+ | |
Step1: | |
------ | |
------ | |
Installing Java | |
--------------- | |
Download JDK from : http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html |
View 1.js
//while starting server pass --max-old-space-size=1024. | |
//this allocates 1024MB to node.js which is 1GB. Increase the number according to your hardware needs. | |
node --max-old-space-size=1024 controllers/aggregate_counters.js | |
// if using forever | |
forever start -c 'node --max-old-space-size=1024' your_script.js |
View https GET request with Basic Auth in Ruby
require 'net/http' | |
require 'net/https' | |
require 'uri' | |
uri = URI('https://example.com/rest/api/2/1') | |
Net::HTTP.start(uri.host, uri.port, | |
:use_ssl => uri.scheme == 'https', | |
:verify_mode => OpenSSL::SSL::VERIFY_NONE) do |http| |
View DHTMLX Dynamic load and pagination
//Must include these DHTMLX Pro Javascripts | |
'dhtmlxcommon', | |
'dhtmlxgrid', | |
'dhtmlxgridcell', | |
'dhtmlxgrid_json', | |
'dhtmlxgrid_splt', | |
'dhtmlxgrid_pgn', | |
'dhtmlxtoolbar', | |
'dhtmlxgrid_srnd', | |
View HTML file
<div id='grid-region'> | |
</div> | |
<div class="loading-image" id="table-ajax-loader"> </div> <!-- Add a Spinner if needed --> | |
<div> <!-- Style this if needed --> | |
<div id="pagingArea"></div> | |
<div id="infoArea"></div> | |
</div> |
View gist:78908bf6173039f7871c
/* Display An arrow mark */ | |
.div:before{ | |
content: ""; | |
display: block; | |
position: relative; | |
top: 20px; | |
left: -20px; | |
width: 0; | |
height: 0; |