Viewing profile — reipahb
reipahb
HN member- Joined
- Sat, May 09, 2015, 2:47 PM UTC
- HN karma
- 58
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About reipahb
No profile information was provided.
Recent public activity
-
comment
Comment #14447251
It has already been disabled by default for a while. From the article: > The query cache has been disabled-by-default since MySQL 5.6 (2013)
-
comment
Comment #11956322
Isn't that what deploy keys are for? See: http://docs.gitlab.com/ce/ssh/README.html#deploy-keys Deploy keys give read-only access to clone a repository, and they are associated dir…
-
comment
Comment #11129405
The difference is that the last one also matches requests to "/", while the regex ensures that there is at least a single character after the "/". That allows "/" to be used for ot…
-
comment
Comment #9681382
This being Amazon AWS gives me hope that this will be a CA with an API that allows automatic certificate issuance for domains you control. I find the process of issuing and reissui…
-
comment
Comment #9674184
For people interested in redesigning how web site authentication is performed, I would encourage a look at the FIDO Alliance specifications for "Passwordless UX" and "Second Factor…
-
comment
Comment #9634370
I don't think programming languages implement decorators in order to facilitate type checking. They implement decorators because they are a nice generic way to reuse code in many f…
-
comment
Comment #9596366
For those looking for more details about what has changed, the changelog is here: https://hg.python.org/cpython/raw-file/v2.7.10/Misc/NEWS (Unfortunately, there doesn't appear to b…
-
comment
Comment #9593218
An alternative solution to a viewbox property would be to use CSS transforms. It is a bit harder to work with, since you have to specify translation and scale instead of simply spe…
-
comment
Comment #9572557
However (almost?) all syscalls dealing with filesystem paths take null-terminated strings. See for example the implementation of the open() syscall: https://github.com/torvalds/lin…
-
comment
Comment #9518107
I agree that arbitrary limits can be a bit restrictive at times, but that is mostly an issue when dealing with automated code checking tools. However, in this case it is more about…
-
comment
Comment #9518056
Personally, I would really like to see more Python extensions written using the ctypes foreign function library. This has two advantages: * Supported on more than just CPython. I.e…
-
comment
Comment #9517978
Actually, deleted orders are not a problem with continuation tokens. The deleted order is only an issue if you use traditional paging requests, which was the point of the article. …
-
comment
Comment #9516940
I don't think this requires storing anything on the server. That was kind of the point of the whole "store the server state in the continuation token"-thing :) You want to store en…
-
comment
Comment #9516812
Actually, what you get when referencing x.test in Python is a bound method: >>> foo.test >>> x.test > >>> z = x.test >>> z(123) 123 I really like this behavior in Python. Unfortuna…
-
comment
Comment #9516622
The only way I see to solve this without server side state is to replace the page-parameter with a list of items you have seen. The more button would then just find the top 30 item…
-
comment
Comment #9516520
One thing to note is that while the continuation token is just a blob of data from the clients perspective, the server can actually use it to store the required state information. …