Serving the Quantitative Finance Community

 
User avatar
tags
Posts: 3602
Joined: February 21st, 2010, 12:58 pm

What development tools do you use?

February 16th, 2014, 6:43 pm

QuoteOriginally posted by: outrunWhen I develop it's mainly for Linux, I create a Linux virtual machines (Debian) on myiMac desktop machine using parallels, and connect to it over SSH. This works much better than macport of homebrew. I still need to look into valgringC++: gcc, clang, cmake, ctestEditor: notepad++, still need to check sublime text, pycharmFrontend: jquery, bootstrap, boilerplate, FlotBackend: pyhton, django, -looking into flask- virtualenv, not so much PHP anymoreDatabase: switched from MySQL to PostgreSQL Modeling: R, pyhton, C++. Clients almost always want things done in Matlab or ExcelVersioning: GIT, subversionPlotting: R, pyhton matplotlibWhat are you favorite tools?hello outrun, in a nutshell what did make you swtich from mysql to postgresql?
 
User avatar
Cuchulainn
Posts: 22927
Joined: July 16th, 2004, 7:38 am

What development tools do you use?

February 17th, 2014, 11:28 am

PostgresSQL, the .NET connection
 
User avatar
Cuchulainn
Posts: 22927
Joined: July 16th, 2004, 7:38 am

What development tools do you use?

February 17th, 2014, 2:41 pm

QuoteYou're mainly on widowsNo.
 
User avatar
Cuchulainn
Posts: 22927
Joined: July 16th, 2004, 7:38 am

What development tools do you use?

February 17th, 2014, 2:50 pm

Just kidding. Typo.
 
User avatar
Cuchulainn
Posts: 22927
Joined: July 16th, 2004, 7:38 am

What development tools do you use?

February 17th, 2014, 6:02 pm

QuoteOriginally posted by: outrunQuoteOriginally posted by: CuchulainnJust kidding. Typo.HAHAHAHA! You *did* fool me I'd be interesting to learn about the "book" tools.I think Ilona is the best person to talk to. TEX, Aurora etc. Do you want to write?
 
User avatar
Cuchulainn
Posts: 22927
Joined: July 16th, 2004, 7:38 am

What development tools do you use?

February 17th, 2014, 6:40 pm

QuoteOriginally posted by: outrunQuoteOriginally posted by: CuchulainnQuoteOriginally posted by: outrunQuoteOriginally posted by: CuchulainnJust kidding. Typo.HAHAHAHA! You *did* fool me I'd be interesting to learn about the "book" tools.I think Ilona is the best person to talk to. TEX, Aurora etc. Do you want to write?No I don't want to write. Just want to learn about what tools and processes people use, and perhaps I can switch & improve the things I do.We also, but then in the direction of blogs, WordPress etc. Do you know LaTeX?
Last edited by Cuchulainn on February 16th, 2014, 11:00 pm, edited 1 time in total.
 
User avatar
Polter
Posts: 1
Joined: April 29th, 2008, 4:55 pm

What development tools do you use?

February 17th, 2014, 8:38 pm

I used to love LaTeX too, but nowadays I prefer to use markdown whenever I can -- much lighter syntax (it's actually readable _and_ maintainable; I rarely have to Google for syntax) and compilation process (which, in contrast with that of LaTeX', happens to be sane :]).Especially nice in combination with pandoc, http://johnmacfarlane.net/pandoc/ And, hey, you can still embed LaTeX for math'n'stuff if you're so inclined ;]// You can even share your math with some poor souls stuck with MS Word -- and they can still edit your formulas with their Equation Tools:http://johnmacfarlane.net/pandoc/demo/e ... .docxFunny thing is that I've actually only learned about it just a year ago from the Scott Meyers' blog comments section -- pretty much a convert after trying it out :-)// http://scottmeyers.blogspot.com/2013/01 ... d.htmlSome examples:http://johnmacfarlane.net/pandoc/demos.htmlEspecially like the ease of syntax highlighting, one source:http://johnmacfarlane.net/pandoc/demo/code.textmultiple styles of output:http://johnmacfarlane.net/pandoc/demo/e ... htmlSlides:- Source: http://johnmacfarlane.net/pandoc/demo/SLIDES- Output: http://johnmacfarlane.net/pandoc/demo/example8.pdf// I think it's really awesome for this -- must be the fastest, most productive way to get syntax-highlighted slides with math -- and it's what made me abandon LaTeX in favor of markdown for presentations.Some nice examples of books made in markdown:* Pro Git- http://johnmacfarlane.net/pandoc/epub.html- Source: http://github.com/progit/progit- Web output: http://git-scm.com/book/* Developing Backbone.js Applications- Source: http://github.com/addyosmani/backbone-fundamentals- Output: http://addyosmani.github.io/backbone-fundamentals/* The Little MongoDB Book- http://github.com/karlseguin/the-little-mongodb-book- http://openmymind.net/2011/3/28/The-Lit ... B-Book/BTW, Octopress supports markdown, too: http://octopress.org/docs/blogging/code/