Skip to content

Instantly share code, notes, and snippets.

View wmfairuz's full-sized avatar

Fairuz Wan Ismail wmfairuz

  • TrizIT Lab Sdn Bhd
  • Malaysia
View GitHub Profile
package my.maylab.amba;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AuthApplication {
public static void main(String[] args) {
SpringApplication.run(AuthApplication.class, args);
@wmfairuz
wmfairuz / zuul-features
Created November 16, 2015 04:55
zuul features
API proxy
multi-region resiliency
insights
stress testing
canary testing
@wmfairuz
wmfairuz / .gitconfig
Created February 23, 2015 23:42
sample git config
[user]
name = Fairuz Wan Ismail
email = [email protected]
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %C(bold blue)<%an>%Creset' --abbrev-commit
lg2 = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
lgl = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -10
d = diff
dc = diff --cached
a = add
@wmfairuz
wmfairuz / custom-header
Created December 16, 2014 02:54
custom header
+ [liberator.representation :only [Representation ring-response]]
+(defn add-header [response header-key header-value]
+ (assoc-in response [:headers header-key] header-value))
+ :as-response (fn [d ctx]
+ (do
+ (info (liberator.representation/as-response d ctx))
+ (-> (liberator.representation/as-response d ctx)
yum install java-1.7.0-openjdk java-1.7.0-openjdk-devel
ls -l /usr/lib/jvm/
export JAVA_HOME=/usr/lib/jvm/jre-1.7.0-openjdk.x86_64
@wmfairuz
wmfairuz / ni-seed-cmd
Created September 15, 2014 04:49
NI seed command
java -Xms3g -Xmx3g -cp "D:\src\network-inventory\PersistenceAbstractionAPI\dist\PersistenceAbstractionAPI.jar;D:\src\network-inventory\PersistenceServiceRemoteInterfaces\dist\PersistenceServiceRemoteInterfaces.jar;D:\lib\neo4j-spatial\geotools\gt-api-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-coverage-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-cql-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-data-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-main-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-metadata-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-opengis-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-process-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-referencing-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-render-8.4.jar;D:\lib\neo4j-spatial\geotools\gt-shapefile-8.4.jar;D:\lib\wax\wax_1.0.5.jar;D:\lib\neo4j-spatial\blueprints-core-1.2.jar;D:\lib\neo4j-spatial\gremlin-groovy-1.5.jar;D:\lib\neo4j-spatial\gremlin-java-1.5.jar;D:\lib\neo4j-spatial\jsr-275-1.0-beta-2.jar;D:\lib\neo4j-spatial\jts-1.12.jar;D:\lib\neo4j-spatial\neo4j-graph-collections
@wmfairuz
wmfairuz / 0.js
Created August 27, 2014 15:22 — forked from coryjthompson/0.js
var fileTransfer = new FileTransfer();
fileTransfer.onprogress = function(result){
var percent = result.loaded / result.total * 100;
percent = Math.round(percent);
console.log('Downloaded: ' + percent + '%');
};
fileTransfer.download(remoteFile, localPath, successCallback, errorCallback);
@wmfairuz
wmfairuz / promise.js
Created August 19, 2014 01:59
promise
function deferredTimer(success) {
var deferred = $q.defer();
$timeout(function() {
if (success) {
deferred.resolve({ message: "This is great!" });
} else {
deferred.reject({ message: "Really bad" });
}
}, 1000);
@wmfairuz
wmfairuz / git aware
Created August 14, 2014 02:14
git aware
export GITAWAREPROMPT=~/bin/git-aware-prompt
source $GITAWAREPROMPT/main.sh
export PS1="\u@\h \w \[$txtcyn\]\$git_branch\[$txtred\]\$git_dirty\[$txtrst\]\$ "
git://github.com/jimeh/git-aware-prompt.git
@wmfairuz
wmfairuz / logcat
Created August 12, 2014 05:36
adb logcat filter
adb logcat -c
adb logcat CordovaLog:D *:S