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

Set default editor: git init initilaizes empty repository..gitignore file contains folders and paths that Git will ignore. Example: To stage and commit your changes: To see your config settings: If you modify a file after you run git add, you … Continue reading

Posted in Software | Tagged | 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