Note that we use separate installations of Eclipse for various languages:
- Java
- C/C++
- Scripting: Javascript, Bash and Python
Download Eclipse Juno JEE.
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
| #!/bin/bash | |
| # License: Public Domain. | |
| # Author: Joseph Wecker, 2012 | |
| # | |
| # Are you tired of trying to remember what .bashrc does vs .bash_profile vs .profile? | |
| # Are you tired of trying to remember how darwin/mac-osx treat them differently from linux? | |
| # Are you tired of not having your ~/.bash* stuff work the way you expect? | |
| # | |
| # Symlink all of the following to this file: | |
| # * ~/.bashrc |
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
| alter table TX_SYMBOL | |
| drop constraint TX_SYMBOL_QUOTABLE_ID_FK; | |
| alter table TX_SYMBOL | |
| drop constraint TX_SYMBOL_SERIES_ID_FK; | |
| alter table TX_SYMBOL_SERIES | |
| drop constraint TX_SYMBOL_SERIES_AGENT_ID_FK; |
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
| <dealEvent id="1"> | |
| <refQ>100</refQ> // reference quotable | |
| <reporter>123</reporter> // reporter {Bloomberg, Reuters, Datastream} | |
| <serialDay>42000</serialDay> // include Gregorian attribute? | |
| <millis>0</millis> // utc millis | |
| <level>543.0</level> | |
| <facets> // facets include a set of integer flags that indicate CLOSE, OPEN, WARN | |
| <facet>1</facet> // mixed purpose but may be small enough set to be ok | |
| </facets> | |
| <pMaker>100</pMaker> // price maker id |
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
| Host bb-agrothendieck | |
| HostName bitbucket.org | |
| PreferredAuthentications publickey | |
| IdentityFile ~/.ssh/bb-agrothendieck |
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
| #################################################################################################################### | |
| # Name : DATACLEANING S&P | |
| # Author : Nikos Rachmanis | |
| # Version : 1.0 | |
| # Copyright : Your copyright notice | |
| # Description : Data cleaning and merging | |
| #################################################################################################################### | |
| #################################################################################################################### | |
| ### Libraries + Settings ########################################################################################### |
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
| #!/usr/bin/env bash | |
| source dev-env.sh | |
| # example that sets up LD_LIBRARY path for C++ libraries used by Python | |
| # export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/fincad/fincad/lib | |
| # We also increase the heap size | |
| $HOME/local/eclipse-juno/eclipse-python/eclipse/eclipse -vmargs -Xmx2048M |
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
| [ui] | |
| #------------------------------------------------------------------------------ | |
| # change this to your email address | |
| #------------------------------------------------------------------------------ | |
| # username = Alice Smith <asmith@example.com> | |
| username = {{ username }} | |
| editor=vi | |
| merge=meld |
