free-malloc | 3 years ago | on: Ask HN: How do you keep up broadly with science?
free-malloc's comments
free-malloc | 3 years ago | on: Biomimicry: How Designers Are Learning from the Natural World (2017)
free-malloc | 3 years ago | on: Ask HN: I’m 41 and still unmarried – what should I do?
free-malloc | 3 years ago | on: Ask HN: I’m 41 and still unmarried – what should I do?
Date obese people. They deserve love as much as anyone else, but aren't treated that way.
Try to date divorced men with children since you know they most likely value children, vs a 40yo bachelor which indicates the opposite.
edit:
Point is you know exactly what you value: a family man to love and build a happy family.
You must accept that you are deeply marginalized in this situation given the time frame, and the realistic response is compromise. Drop all other standards and focus on what you actually value: love and family.
Filter against general attractiveness and fitness. Filter for words like "father" and "family". Filter for short men. Etc. Etc.
free-malloc | 3 years ago | on: The ‘Form’ Element Created the Modern Web. Was It a Big Mistake?
free-malloc | 3 years ago | on: The ‘Form’ Element Created the Modern Web. Was It a Big Mistake?
free-malloc | 3 years ago | on: The Xinjiang Police Files
Xi Jinping has cracked down on Christianity shutting down many churches. China has other ethnicities besides the Han, which don't speak Mandarin. If the Uyghurs had no faith they would be safe.
There is little room for religion unless the religion is centralized and submissive to the state. In some sense religion undermines the state.
free-malloc | 3 years ago | on: My penis fell off but it regrew on my arm
free-malloc | 3 years ago | on: Is your SSH key still safe?
This made him seem like a non expert. ED25519 is 256 bits always: https://ed25519.cr.yp.to/
free-malloc | 3 years ago | on: San Francisco cops pull over a Cruise driverless car for no lights on
free-malloc | 4 years ago | on: Ask HN: What do you wish you had done/known in your 30s?
free-malloc | 4 years ago | on: Hot Dog Linux – Horrible Obsolete Typeface and Dreadful Onscreen Graphics
free-malloc | 4 years ago | on: M-427 Russian online/offline encryption device reportedly seized in Ukraine
free-malloc | 4 years ago | on: Ask HN: How to Learn to Type Faster?
free-malloc | 4 years ago | on: Two weeks later David Bennett is alive, his pig’s heart beating soundly
free-malloc | 4 years ago | on: How to read research paper, textbook, long text content?
And this takes a metric fuck ton of practice. There is no royal road.
IMO, you should probably start with easier material until you strengthen these muscles. Some examples of friendly CS texts that comes to mind are Programming Pearls, the C programming language, or the SQL paper by Codd https://www.seas.upenn.edu/~zives/03f/cis550/codd.pdf
I'd be curious what texts other people would recommend for someone who is a student getting a bachelor's degree in CS.
free-malloc | 4 years ago | on: Young's Lattice
S_n is the collection of permutations on n symbols with a multiplicative structure. In python
from itertools import permutations
n = 6
S_n = list(permutations(range(n)))
multiply = lambda alpha, beta: [alpha[x] for x in beta]
This is the reason why Substitution-Permutation networks interleave permutations with non-permutations. Two permutations in a row is just a permutation. "Representation Theory" is the art of taking such multiplicative structures and associating every object with a matrix so that the matrix multiplication encodes the original objects multiplication. This is useful because mathematicians know so much about matrices.
For example if you define
matrix = lambda perm: [[1 if i == j else 0 for j in range(n)] for i in perm]
matrix(alpha) * matrix(beta) == matrix(multiply(alpha, beta))
However, it is desirable to represent it as matrices in a more "efficient manner". For example S_3 can be written using only two dimensions. Representation theory deals with stuff like minimal representation.
If you snake from the bottom of young's lattice upwards to a specific diagram you can record the information into a young tableau by writing in the cell when it was added. Young tableau are very mathematically rich, but here is an "application" of them.
If you have a balanced parenthesis (the dyck langauge), [[[][]][]] and you record two list of when you open and when you close
[0, 1, 2, 4, 7]
[3, 5, 6, 8, 9]
you get a two-by-n young tableau, since the grid is increasing horizontally and vertically.
Other special shapes of young tableau can encode other interesting structures. Also see TAOCP V3 5.1.4, or google the RSK correspondence.
edit 1: newlines edit 2: fixed python
free-malloc | 4 years ago | on: Google News without Covid or Lack Thereof
If you want news, you should use their news product, not their general search. Also, the word "news" alone is nearly meaningless. If you want world news, type "world news", if you want sports news type "sports news".
If you want something timely, you can filter to the last 24 hours, instead of looking for something that is regarded as important from any time in the past.
Help Google help you.
free-malloc | 4 years ago | on: Cottage Industry
free-malloc | 4 years ago | on: Ay Chavrusa, Ay Meesusa
They also both serve as a very powerful learning experiences, sharing the struggle, and then learning how the other person solves problem.
Another characteristic pair programming and learning in chavrusa share is you can't do a threesome. If you are in a conversation with one person and they say something you know its for you. Some how this makes it easier to track a conversation while tackling an intellectually challenging task.