free-malloc's comments

free-malloc | 3 years ago | on: Ask HN: I’m 41 and still unmarried – what should I do?

Always go on a second date if they are respectful and genuinely interested.

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 Xinjiang Police Files

I think this is nearly entirely wrong. It's entirely about power and god.

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 | 4 years ago | on: How to read research paper, textbook, long text content?

This. Every academic field has its own language, culture, and body of knowledge it regards as "fundamental." To go from reading English to reading a CS paper involves learning these.

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

Let me try (and probably fail) to translate some of that.

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

Let me help you: https://news.google.com/search?q=%22world%20news%22%20when%3...

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

The zoom economy reminded me of this in a twisted "nothing new under the sun" type of way.

free-malloc | 4 years ago | on: Ay Chavrusa, Ay Meesusa

Pair programming reminds me slightly of chavrusa, the switching off of who's driving, and the intense discussions when stuck.

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.

page 1