Categories
Archives
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- September 2017
- June 2017
- May 2017
- January 2017
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- May 2016
- April 2016
- February 2016
- December 2015
- October 2015
- September 2015
- August 2015
- June 2015
- May 2015
- April 2015
- March 2015
- December 2014
- November 2014
- October 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- June 2012
- April 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- May 2011
- March 2011
- January 2011
- August 2010
- April 2010
- February 2010
Monthly Archives: June 2012
Rate of Inflation of Gas
Raw Data: http://www.randomuseless.info/gasprice/gasprice.txt Model: where is the rate of inflation. This can also be written as: Given series of data points construct cost fn. Need to find and that minimize . Simplify above two equations to ….(1) and ….(2) where … Continue reading
Posted in Money
Leave a comment
Git Notes
Git notes:gitconfig -global core. Editor notepad++Git initCreate .gitignore file with following contents:gdata/atom/.idea/*.pycGit add .Git commit –m “your comment” $ git config –listcore.symlinks=falsecore.autocrlf=truecolor.diff=autocolor.status=autocolor.branch=autocolor.interactive=truepack.packsizelimit=2ghelp.format=htmlhttp.sslcainfo=/bin/curl-ca-bundle.crtsendemail.smtpserver=/bin/msmtp.exediff.astextplain.textconv=astextplainuser.name=morpheususer.email=siddjain@live.comcore.editor=notepad++core.repositoryformatversion=0core.filemode=falsecore.bare=falsecore.logallrefupdates=truecore.symlinks=falsecore.ignorecase=truecore.hidedotfiles=dotGitOnly If you modify a file after you run git add, you have to rungit add again to stage … Continue reading
Posted in Software
Leave a comment
Windows Scripting Basics
To iterate through files in a directory and modify attributes, create following bat file: echo off for %%1 in (*.txt) do attrib -r %%1
Posted in Software
Leave a comment