HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hkopp

no profile record

Submissions

Engaging healthily with chess: an Acceptance and Commitment therapist's guide

lichess.org
1 points·by hkopp·6 месяцев назад·0 comments

Aristotle

en.wikipedia.org
2 points·by hkopp·6 месяцев назад·0 comments

Linux Kernel Exploitation Series

r1ru.github.io
1 points·by hkopp·в прошлом году·0 comments

Cox–Zucker Machine

en.wikipedia.org
2 points·by hkopp·в прошлом году·0 comments

Schneier: Full Disclosure of Security Vulnerabilities a 'Damned Good Idea' (2007)

schneier.com
1 points·by hkopp·в прошлом году·0 comments

Eliza is a simple, fast, and lightweight AI agent framework

elizaos.github.io
2 points·by hkopp·в прошлом году·1 comments

Joshu Sasaki – Buddha Is the Center of Gravity [pdf]

terebess.hu
3 points·by hkopp·2 года назад·0 comments

Hell's Gate [pdf]

github.com
2 points·by hkopp·2 года назад·0 comments

[untitled]

1 points·by hkopp·2 года назад·0 comments

Snottite

en.wikipedia.org
57 points·by hkopp·2 года назад·9 comments

Geologic Time Scale

en.wikipedia.org
2 points·by hkopp·2 года назад·0 comments

Groovy Govee Account Takeover

tightropemonkey.dev
1 points·by hkopp·3 года назад·0 comments

Hardware Analysis of Govee H6054

tightropemonkey.dev
1 points·by hkopp·3 года назад·0 comments

Hidings Symbols of Elf Files

hkopp.github.io
2 points·by hkopp·3 года назад·0 comments

The Ptrace Anti-RE Trick

hkopp.github.io
97 points·by hkopp·3 года назад·33 comments

Induction Puzzles

en.wikipedia.org
2 points·by hkopp·4 года назад·0 comments

comments

hkopp
·в прошлом году·discuss
The notation is really not that frightening, once you get it. Just read the wikipedia article: https://en.wikipedia.org/wiki/Algebraic_notation_(chess)

Don't bother with that large table at the bottom.
hkopp
·2 года назад·discuss
The title should probably be "Is TikTok safe?" to reduce clickbait.
hkopp
·3 года назад·discuss
I think it is due to the homotopy type theory book. There is an elegant connection between category theory and type theory. I guess most of the people submitting category theory to hacker news (or any graduate math) just do it to flex and seem clever.
hkopp
·3 года назад·discuss
I have studied math and was in some lectures about category theory. I still don't get what the project is about and that fact intrigues me.
hkopp
·3 года назад·discuss
- the "shin jin mei" of sen ts'an

- "On Zen" by Daio Kokuchi

- "Shobogenzo" by Dogen. I especially venerate the loose translation (or paraphrasing) by Brad Warner.
hkopp
·3 года назад·discuss
The precise mathematical definition of obfuscation and what is considered obfuscation for an average software engineer are two very different things.

In fact, the article is only about indistinguishability obfuscation. What is mostly discussed in this thread is the notion of virtual black box obfuscation (VBB). VBB has been proven to be impossible in the general case (see https://www.wisdom.weizmann.ac.il/~oded/PS/obf4.pdf). There are a few special programs where VBB is feasible, such as point functions, but in general in cannot be achieved.

Indistinguishability obfuscation (iO) means that if you obfuscate two programs that compute the same function, then you cannot distinguish them. Or put in different words, if you get two obfuscated programs, then there is no better way than random guessing (except for a factor that is negligible in some security parameter) to find out if they stem from the same original program.
hkopp
·3 года назад·discuss
I am much more familiar with the development in the chess world. Since Deep Blue beat Kasparov in 1997, there was a lot of progress in the development and the architecture of chess engines. Back then, we did not have neural networks. A lot of the strategies of chess engines are now used by chess grandmasters. As an example, the value of the activity of pieces was underrated in contrast to the value of material.

As there are more generations of chess engines than go engines, it would be quite interesting to pull something similar off against them. My intuition is that it maybe works against Leela, as LeelaChess basically uses only neural networks (think alphago but for chess), whereas it should not work with Stockfish, as some parts of Stockfishs evaluation function are still adjusted by hand.
hkopp
·4 года назад·discuss
The argumentation is faulty.

Users cannot be enumerated using the login, but using the signup. The author then argues that they should add the user enumeration function to the login.

This is similar to: The door is locked, but the window is open. And then consequently it makes no sense to close the door at all, as an attacker can sneak through the window.

Instead, the window should be locked as well, i.e., it should be impossible to enumerate users with the signup function.
hkopp
·4 года назад·discuss
I always use https://gitignore.io.
hkopp
·4 года назад·discuss
Note that hashquines, i.e., programs that print their own hash when executed do not depend on the hash function being broken. In fact, they are a fun little exercise.