[TIL] 20-Jan-2020
Bash function, Jekyll debug, Logistic regression, Linked lists
- how to write a bash function which copies an md template renames it with the current date and opens it in vim.
- The jekyll theme minimal mistakes that I’m using determines the url of the post based on its filename ending. I had the following file name structure : YYYY-MM-DD-til.md for these posts and the parser was considering every post to have the name ‘til’. the solution was to start naming the files as : YYYY-MM-DD-DDmmyy.md and now the parser correctly gives each post a unique url.
- logistic regression is done by maximizing beta for the case where likelihood is being maximized?? (50/50 ish from a presentation in class)
- algorithm to insert/append/delete from linked list.