I hereby claim:
- I am vishalbelsare on github.
- I am vishalbelsare (https://keybase.io/vishalbelsare) on keybase.
- I have a public key ASDEg5L-Eo5m8SpYQqeE1YUQ6ZJSw0ecVCNOD1dKKKtqLAo
# basic factor analysis | |
# http://blog.alphaarchitect.com/2015/05/28/basic-factor-analysis-simple-tools-to-understand-what-drives-performance/ | |
import pandas as pd | |
import pandas.io.data as web | |
import datetime, re, copy | |
import numpy as np | |
import statsmodels.formula.api as sm | |
start = datetime.date(2000,1,1) |
# basic factor analysis | |
# http://blog.alphaarchitect.com/2015/05/28/basic-factor-analysis-simple-tools-to-understand-what-drives-performance/ | |
import pandas as pd | |
import pandas.io.data as web | |
import datetime, re, copy | |
import numpy as np | |
import statsmodels.formula.api as sm | |
start = datetime.date(2000,1,1) |
/** | |
* This stylesheet will work pretty well with a regular Org Mode HTML export. | |
* However, you do have to turn off all of the defaults: | |
* | |
* (setq org-export-html-style-include-scripts nil | |
* org-export-html-style-include-default nil) | |
* | |
* and insert a call to the stylesheet: | |
* | |
* (setq org-export-html-style |
I hereby claim:
GNOME's tracker is a CPU and privacy hog. There's a pretty good case as to why it's neither useful nor necessary here: http://lduros.net/posts/tracker-sucks-thanks-tracker/
After discovering it chowing 2 cores, I decided to go about disabling it.
Directories
;;; package --- Python Programming ;;; | |
;;; Commentary: | |
;;; Code: | |
; don't show the startup screen | |
(setq inhibit-startup-screen t) | |
; don't show the menu bar | |
(menu-bar-mode nil) |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
foxdot-cli.py
in the same directory as the FoxDot installaton (in case you're using virtualenv
, otherwise comment from lines 5 to 7)foxdot-mode.el
to ~/.emacs.d/lisp
(defvar foxdot-cli-path "/path/to/foxdot-cli/")
in your ~/.emacs
fileM-x load-library
and complete with foxdot-mode
C-c C-f
or M-x foxdot-start
to startC-c C-e
or M-x foxdot-execute
to evaluate a line or a block of codeby Konpat
Q-Learninng is a reinforcement learning algorithm, Q-Learning does not require the model and the full understanding of the nature of its environment, in which it will learn by trail and errors, after which it will be better over time. And thus proved to be asymtotically optimal.
## ########################################################################################################################## | |
## ########################################################################################################################## | |
## @section: Prep workspace | |
## ########################################################################################################################## | |
## ########################################################################################################################## | |
options(width=200, digits=6, digits.secs=6) | |
rm(list=ls()) | |