Skip to content

Instantly share code, notes, and snippets.

@KazChe
KazChe / server.js
Created March 27, 2014 04:11
blog_socketio_server_js
var http = require('http'),
io = require('socket.io'),
sys = require('sys'),
express = require('express'),
fs = require('fs');
var port = 8111;
var app = express();
app.use(express.errorHandler({showStack: true, dumpExceptions: true}));
@KazChe
KazChe / loader.html
Created March 29, 2014 08:25
blog_ajax_loader_markup
<div id="asyncCall" style="width: 10px;">
<input id="moneyman" style='width:190px;' type="button" value="Request Money">
<span id="asyncErrors" style="color:red;"></span>
</div>
@KazChe
KazChe / swap.html
Created March 29, 2014 08:34
blog_ajax_loader_swap_markup
$('#moneyman').each(function() {
$("<button id='moneyman'><img src='/ap/resources/images/299.GIF' />).attr(
{ name: this.name,
value: this.value
}).insertBefore(this);
}).remove();
@KazChe
KazChe / request_template
Created May 2, 2014 01:46
blog_hateoas_transition_request_template
{
"links":[
{
"rel":"addphone",
"href":"http://localhost:8080/rest/account/v1/addphone",
"httpMethod":"POST",
"stateTransitionVars":{
"phoneNumber": {
"countryCode": "",
"phoneNumber": ""
@KazChe
KazChe / gist:a75a7d165649846fd50e
Created December 13, 2014 23:54
nodejs encrypt / decrypt
var fs = require('fs'),
crypto = require('crypto'),
algorithm = 'aes-256-ctr',
password = 'd6F3Efeq',
payload = {
"id": "12345",
"description": "description",
"location": "123 street",
"userIdentity": {
"phoneNumber": "5550000000",
FROM centos:centos6
#Install WGET
RUN yum install -y wget
#Install tar
RUN yum install -y tar
# Download JDK
RUN cd /opt;wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.tar.gz; pwd
curl -X POST --data <filename> http://<URL> -H "key:value>" -H "<if multiple headers>"
@KazChe
KazChe / padolsys.js
Created May 25, 2012 07:08 — forked from padolsey/gist:527683
detects ie
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}
@KazChe
KazChe / LabesFromID.js
Created August 8, 2012 16:16
get label's value from id - error message issue
labels = document.getElementsByTagName('label');
len = labels.length;
for(var i = 0; i < len; i++) {
if(labels[i].htmlFor == elementId) {
errLabel= labels[i].innerHTML;
}
}
@KazChe
KazChe / Tabs_Modifications_POC.html
Created August 9, 2012 16:57
poc for modifying other pages to use Tabs
<li><a href="/campaignManagerWeb/mb/createsmspushoffer">Create .....</a></li>
<!-- add the above to the ul and no div container for it -->
<!-- issues: 1.cmsleftmenu.jsp taken out 2.pagination calls must be turned to ajax calls in order to keep content within tab otherwise goes to page -->