Skip to content

Commit

Permalink
life update
Browse files Browse the repository at this point in the history
  • Loading branch information
TanzHasan committed Jun 27, 2024
1 parent 57412f6 commit e754bcc
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.out
*.exe
*.exe
public/*
1 change: 0 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ mathjax_dollar_inline_enable = true
# favicon = "/icon/favicon.png"

menu = [
{ name = "/Algos", url = "/algos", weight = 0 },
{ name = "/Langs", url = "/langs", weight = 2 },
{ name = "/Misc", url = "/misc", weight = 1 },
{ name = "/about", url = "/about", weight = 4 },
Expand Down
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Welcome!"
sort_by = "weight"
sort_by = "date"
template = "cards.html"
+++

Expand Down
4 changes: 3 additions & 1 deletion content/about/index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
+++
title = "About"
weight = 99
transparent = false
date = "2003-03-28"
+++



# General
My name is Tanz, and I'm a third-year studying Computer Science at NYU.
My name is Tanz, and I'm a Software Engineer working in New York.
I'm trying to get better at a lot of things and this is my effort to learn
in public. If you see any errors, additions, please contact me.

Expand Down
8 changes: 8 additions & 0 deletions content/algos/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
path = "algos/"
title = "Algorithm Improvement"
weight = 1
transparent = true
+++

I don't actually do this anymore. Any old code can be found [here](https://github.com/TanzHasan/Learning/tree/abfd557b67a3ac42b74e1d136946971f5c6a189b)
8 changes: 0 additions & 8 deletions content/algos/index.md

This file was deleted.

1 change: 1 addition & 0 deletions content/langs/index.md → content/langs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
path = "langs/"
title = "Programming Languages"
weight = 1
transparent = true
+++

[CPP](/Learning/langs/cpp)
1 change: 1 addition & 0 deletions content/langs/cpp/_index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
+++
title = "Learning C++"
sort_by = "date"
transparent = true
+++
7 changes: 5 additions & 2 deletions content/math/IntroToBayesianStats.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
+++
title = "Intro to Bayesian Statistics"
transparent = false
title = "Simple Bayesian Statistics"
date = "2024-03-28"
weight = 1
+++

These are from old course notes

## Counting Example
Let's consider a bag with 4 balls. The probability of reaching in and grabbing a ball that is blue is p. I want to get the sequence Blue White Blue, sampling with replacement. How many ways are there to do this? With the below fractions its easy to count out the possibilities.

Expand Down
2 changes: 1 addition & 1 deletion content/math/index.md → content/math/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
path = "math/"
title = "Math"
transparent = true
transparent = false
weight = 5
+++
2 changes: 1 addition & 1 deletion content/misc/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
path = "misc/"
title = "MISC"
transparent = false
transparent = true
sort_by = "date"
weight = 3
+++

0 comments on commit e754bcc

Please sign in to comment.