Viewing profile — ivansavz
ivansavz
HN member- Joined
- Tue, Oct 14, 2008, 11:26 PM UTC
- HN karma
- 5,343
- Public activity
- 1,900 items
- HN profile
- View on Hacker News ↗
About ivansavz
No Bullshit Guide to Mathematics => https://noBSmath.com (high school math review)
No Bullshit Guide to Math & Physics => https://minireference.com (mechanics and calculus)
No Bullshit Guide to Linear Algebra => http://gum.co/noBSLA
No Bullshit Guide to Statistics => http://gum.co/noBSstats (data, probability, and statistical inference)
Elsewhere on social: https://x.com/ivansavz - https://mathstodon.xyz/@ivansavz - https://bsky.app/profile/ivansavz.bsky.social
Recent public activity
-
comment
Comment #49183722
You can choose English -> English in the UI for explanations in English.
-
comment
Comment #49064512
This connects with something I've always wanted to have as a "metadata" signal provided with any text. I'm thinking of some low-key information channel like text background color t…
-
comment
Comment #48759425
Thanks! I'd like to take the credit for the design, but it's just the LaTeX defaults of the IEEEtran document class.
-
comment
Comment #48752106
If anyone needs a quick tutorial on linear algebra, you can check out this printabale four pager that I wrote: https://minireference.com/static/tutorials/linear_algebra_in... I als…
-
comment
Comment #48094669
I've been thinking a lot about your point b) over the years. I'm conceptualizing a piece of knowledge as an interface that can be `implemented` but with different classes (explanat…
-
comment
Comment #47930474
This textbook looks really good! Is this finally going to be the year when I learn thermo? All the problems come with answers provided, so I have no excuse! I found this article[1]…
-
comment
Comment #47879768
A nice video explainer about this dispute: https://www.youtube.com/watch?v=_YRfSe-f1FE
-
comment
Comment #47875230
Thx for the plug @Delphiza For anyone interested in checking out the book, there is a PDF preview here[1] and printable concept maps[2], which should be useful no matter which book…
-
comment
Comment #47872138
Yeah the textbook cartel is outrageous. I started a textbook publishing company to fight this! I was working on web copy describing how crazy the mainstream textbook prices are, an…
- story
- story
-
comment
Comment #47521647
The technical term for these tiny shortcuts is questionable research practices . They are difficult to study, because scientists are publicly shaming their peers when they use such…
- story
-
comment
Comment #47381556
The link wasn't working for me; here is the archive.org version: https://web.archive.org/web/20260314130229/http://silas.psfc...
-
comment
Comment #47166923
> But how does one separate the good comments from the bad comments? One thing that works very well for me (in a different context) is to ask to return two lists: - Things that I m…
-
comment
Comment #47162384
I really like this essay and I managed to track down the original in French, for anyone who reads French: https://fr.wikisource.org/wiki/Trait%C3%A9_des_excitants_mod... The part a…
-
comment
Comment #46990991
Direct link to PDF: https://minireference.com/static/tutorials/calculus_tutorial... [2MB, 25pp]
- story
-
comment
Comment #46899769
There is a menu from the top bar to change the "Modern English."
-
comment
Comment #46519285
Thanks for all the explanations. I always thought it was regular HTML, but now I know to watch out for the differences. Can you say a few more words about the library https://githu…
- comment
-
comment
Comment #46408589
I've been in Grayscale for some time now (almost a month), and it's great. I always wanted to have a phone with an eInk display, and this is pretty close feeling (aesthetically). S…
-
comment
Comment #46386800
Thanks Greg for posting! The website has all the notebooks from the book, as well as well as the complete tutorials on the tech stack (Python, Pandas, Seaborn). For everyone intere…
-
comment
Comment #46285071
It seems `(Y @ X)[None]` produces a row vector of shape (1,3), (Y @ X)[None] # array([[14, 32, 50]]) but `(Y @ X)[None].T` works as you described: (Y @ X)[None].T # array([[14], # …
-
comment
Comment #46280308
The result of `Y @ X` has shape (3,), so the next line (concatenate as columns) fails. To make `Z` a column vector, we would need something like `Z = (Y @ X)[:,np.newaxis]`. Althou…