Endeca start scripts - Oracle way

I have ported the Oracle VM style management scripts into the Loyalty VM. The scripts are in the loyalty-endeca Git repo, originally in eVoucher branch but also merged into edc [tkuser@vm-lo1-hpr-ma endeca]$ ls -1 total 28 dev-check-environment.sh* dev-deploy-endeca-app.sh* dev-endeca-environmet.ini* dev-remove-endeca-app.sh* endeca-control* endeca-vars.txt* README.md* RewardsEndc/ dev-endeca-environmet.ini This is environment setting script. ### MUST BE SOURCED IN source dev-endeca-environmet.ini ## or . dev-endeca-environmet.ini ## NEVER ./dev-endeca-environmet.ini endeca-control Main script that manages three components of the system named:

Difference between matching and simple - Git push

Git message Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the current behavior after the default changes, use: git config --global push.default matching To squelch this message and adopt the new behavior now, use: git config --global push.default simple Options for push.default nothing - do not push anything. matching - push all matching branches. All branches having the same name in both ends are considered to be matching.

Sublime text macro to insert timestamp

Sublime text macro to insert timestamp platform-edc $ cat ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/User/time_stamp.py import sublime_plugin from datetime import datetime class TimeStampCommand(sublime_plugin.TextCommand): def run(self, edit): # formatting options at http://docs.python.org/2/library/datetime.html#strftime-strptime-behavior stamp = datetime.now().strftime("%Y-%m-%d_%H:%M:%S") # 2013-07-18 14:54:23 for r in self.view.sel(): if r.empty(): self.view.insert(edit, r.a, stamp) else: self.view.replace(edit, r, stamp) platform-edc $ Documentation - see Installation: Add this to Keybindings / User ![](/images/2013-09-23_8.02.19 PM.png)

How to make screenshot from command line

How to make screenshot from command line platform-edc $ screencapture -i ~/Desktop/$(date +%Y%m%d%H%M%S).png libpng warning: zero length keyword libpng warning: Empty language field in iTXt chunk platform-edc $ screencapture ~/Desktop/A$(date +%Y%m%d%H%M%S).png libpng warning: zero length keyword libpng warning: Empty language field in iTXt chunk First one is “interactive” - Cmd-Shift-3 with selection tool, second is full screen

Case sensitivity and VirtualBox shared folder

Case sensitivity and VirtualBox shared folder Weird but true behaviour: I have the case sensitive encrypted disk (sparse bundle with HFSX type) mounted in VBox shared folders. All works fine, after VM starts: touch zz zZ creates two files, both “inside VM” ~/development/ATG/platform-edc as well as in OS-X. If the VM is suspended and resumed, it looses the case sensitivity inside the VM. The command cd ~/development/ATG/platform-edc touch zz zZ will create just single file.