This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Custom Stored Procedure** | |
package com.web.helper; | |
import java.util.List; | |
import java.util.Map; | |
import oracle.jdbc.OracleTypes; | |
import org.springframework.jdbc.core.JdbcTemplate; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Sample API with GET and POST endpoint. | |
* POST data is converted to string and saved in internal memory. | |
* GET endpoint returns all strings in an array. | |
*/ | |
package main | |
import ( | |
"encoding/json" | |
"flag" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/base64" | |
"net/http" | |
"strings" | |
) | |
type handler func(w http.ResponseWriter, r *http.Request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
branchName : 'BITLU', | |
loginName : 'Mahanim', | |
customerName : 'Usain Bolt', | |
customerId : 1, | |
leadCode : 'L101', | |
leadStatus : 'Open', | |
productNamee : 'Fire', | |
grossPremium : 150.0 | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inArr = [[[1, 2],],[3],[[4, 5],[6]]]; | |
var result = []; | |
function flattenArray(arr) { | |
for (var i = 0; i < arr.length; i++) { | |
if (Array.isArray(arr[i])) | |
flattenArray(arr[i]); | |
else | |
result.push(arr[i]); | |
} | |
return result; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/spring-projects/spring-integration-samples/tree/master/intermediate/rest-http |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.aptuz.com/blog/is-postgres-nosql-database-better-than-mongodb/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://howtonode.org/deploying-node-upstart-monit | |
Imp -----> https://keymetrics.io/2015/03/26/pm2-clustering-made-easy/ | |
https://www.statuscake.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://medium.com/@faisalabid/7-tips-for-a-node-js-padawan-e7c0b0e5ce3c#.ksv7nyez4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://thejackalofjavascript.com/maintaining-a-private-npm-registry/ |
NewerOlder