brew tap homebrew/science
brew install Caskroom/cask/xquartz
brew install r
// test here: http://jsfiddle.net/6fjzyes5/ | |
const Bluebird = Promise.noConflict() | |
let merchant = {}; | |
let customer = {}; | |
let payment = {}; | |
let MerchantPromise = function () { | |
return new Promise(function (resolve, reject) { | |
setTimeout(function () { |
#!/usr/bin/env bash | |
defaults write com.apple.finder AppleShowAllFiles YES; # show hidden files | |
defaults write com.apple.dock persistent-apps -array; # remove icons in Dock | |
defaults write com.apple.dock tilesize -int 36; # smaller icon sizes in Dock | |
defaults write com.apple.dock autohide -bool true; # turn Dock auto-hidng on | |
defaults write com.apple.dock autohide-delay -float 0; # remove Dock show delay | |
defaults write com.apple.dock autohide-time-modifier -float 0; # remove Dock show delay | |
defaults write com.apple.dock orientation right; # place Dock on the right side of screen | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true; # show all file extensions |
gitk


Open ruby mine and on menu: tools
=> Create command line luncher
=>
on bash run:
bundle exec mine .
// BaseEntity | |
public abstract class BaseEntity<ID extends Serializable> | |
extends AbstractPersistable<ID>{ | |
private static final long serialVersionUID = 1L; | |
@Override | |
public String toString(){ | |
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); | |
} |
// AppContext | |
@Configuration | |
@EnableAutoConfiguration | |
@ComponentScan(basePackages={"ebanx?"}) | |
public class AppContext { | |
} | |
// Application | |
@SpringBootApplication | |
public class Application { |