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
/* ScriptApp.sh */ | |
#!/bin/bash | |
END=100 | |
C=1 | |
while [[ $C -le $END ]]; do | |
./scriptAp.sh & | |
((C = C + 1)) | |
echo | |
done |
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
Introduction : http://prezi.com/qbmijedhoswo/unm/ | |
BackEnd : https://docs.google.com/present/edit?id=0AZQTXLdoL8PzZGd6dDhkam1fMTR0bWRzeDJmbg&hl=en_US | |
Git and GitHub : https://docs.google.com/present/edit?id=0AV5t_KBriKDGZDdnNXdma18xMzBjNm10dDVmcQ&hl=en_US | |
Groovy and Grails : https://docs.google.com/present/edit?id=0AV5t_KBriKDGZDdnNXdma185NWdweHJ0Ynh4&hl=en_US | |
Front Optimization : https://docs.google.com/present/edit?id=0AV5t_KBriKDGZDdnNXdma18xNTRqdGs3Z2pneA&hl=en_US |
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
def getItemApi(String item){ | |
RESTClient rest = new RESTClient() | |
Object resp = rest.get([uri: "http://ec2-67-202-25-72.compute-1.amazonaws.com:8080", path : '/items/MLA123456', contentType : JSON]) | |
println resp.getStatus() | |
int size = resp.responseData.available(); | |