Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
asomiv
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
asomiv
15y ago
The way I read it is that they want other operating systems to adopt the same infrastructure, e.g. kernel mode setting, instead of implementing an abstraction layer in Wayland itself.
2.
▲
by
asomiv
15y ago
If winlogon runs in the same security context and the same desktop as explorer.exe then a key logger will be able to intercept all logins, and a screenshotter will be able to take screenshots of your login screen. Clearly you don't want tha
3.
▲
by
asomiv
15y ago
Then have git output a message telling the user that the setting is now global. That way you accomodate for both cases in a usable manner.
4.
▲
by
asomiv
15y ago
I dispute this claim. There are only very few ways your ~/.gitconfig can be corrupted: 1. You edited it by hand and fucked up the syntax. In this case git could print an error instead if offering to add the username/email. 2. You deleted it
5.
▲
by
asomiv
15y ago
I'm not the guy who voted you down, but I'm guessing other people did it because your posts' attitude imply that new users are absolutely not worth accommodating for and that usability is not important. It comes over as rather elitist. Your
6.
▲
by
asomiv
15y ago
You can provide a virtual keyboard the way E-Gold does it in order to fight key loggers.
7.
▲
by
asomiv
15y ago
I haven't used RedHat-based distros for years now but I remember that back when I switched to Debian-based distros I was equally confused about Debian's package management system. I didn't think, and still don't think, that dpkg and apt are
8.
▲
by
asomiv
15y ago
This is actually a pretty good idea. The captcha should include some kind of system for reporting slavery or other kinds of work-related abuse, whereby the reporter will be rewarded if the report results in the slavedriver being successfull
9.
▲
by
asomiv
15y ago
Why is grsecurity not merged upstream?
10.
▲
by
asomiv
15y ago
There are a lot of local root exploits in Linux the past few years. But ever since Linux dropped the stable-unstable version numbering scheme, different distributions ship a wide variety of kernels + their own patches instead of "the latest
11.
▲
by
asomiv
15y ago
WebM isn't a container format. It's a standard which specifies MKV (container) + VP8 (video codec) + Vorbis (audio codec).
12.
▲
by
asomiv
15y ago
I keep hearing this battery life thing but how much battery life does H264 hardware acceleration really save? I dare to wager that the majority of the power is used by the screen, not the CPU.
13.
▲
by
asomiv
15y ago
That's because someone deleted the site object. The demo database is reset every 24 hours and I've just issued a manual reset.
14.
▲
by
asomiv
15y ago
Finally! I was waiting for someone to recognize the name. :D
15.
▲
by
asomiv
15y ago
The sections are really short. Giving each section its own URL will make the reading experience horrible. Most of my users told me that they actually prefer a one-page manual because it makes searching easier.
16.
▲
by
asomiv
15y ago
The thread identifier is not the problem. I'm only displaying one comment topic at a time by using a lightbox. However once I have loaded a Disqus comment topic, switching to another one seems to fail randomly even if I call their documente
17.
▲
by
asomiv
15y ago
If people keep repeating the same thing then that would qualify as an active discussion. Juvia is specifically not designed for active discussion. It's just for simple commenting.
18.
▲
by
asomiv
15y ago
Yes. Still working on it though: https://github.com/FooBarWidget/mizuho It's not finished yet. The Juvia site key and URL are currently hardcoded in the source.
19.
▲
by
asomiv
15y ago
The submitter probably just meant "Disqus-like commenting server".
20.
▲
by
asomiv
15y ago
I just added a 'Reply to this comment' button because so many people asked for it.
21.
▲
by
asomiv
15y ago
No it's not a final decision, but I'm not going to write support for it so feel free to contribute. That said I did add a 'Reply to comment' button a few minutes ago by popular demand.
22.
▲
by
asomiv
15y ago
I wrote it mainly because I found Disqus and IntenseDebate too limiting, not because of concerns about hosting or data ownership. I'm trying to implement per-section commenting for the Phusion Passenger manual similar to how it's done in th
23.
▲
by
asomiv
15y ago
The program in question is not a conforming program in the first place. It's the Ruby interpreter and it does all kinds of low-level stuff. alloca(0) is called from the garbage collector in order to detect the end of the stack so that the g
24.
▲
by
asomiv
15y ago
You're right, but would alloca(0) be undefined behavior or simply implementation-specific behavior? I think the latter would make more sense, and if so then alloca(0)'s behavior should at least be consistent and not depend on any optimi
25.
▲
by
asomiv
15y ago
The point is that the behavior depends on the optimization setting. Worse: as you saw on the example, the optimizer actually expects the result to be non-NULL!
26.
▲
by
asomiv
15y ago
After seeing how all the ads and flash websites slow down my dad's Firefox browsing experience, I tried to switch him to Chrome. After a while, he switched back to Firefox by himself. The reason? He uses the dropdown box in the location bar
27.
▲
by
asomiv
15y ago
Good luck making SCTP work with the $50 routers that everybody has in their homes. While you're at it, will you convince the rest of the world to switch to IPv6 please?
28.
▲
by
asomiv
15y ago
You can't poll on TTYs for example. I remember this bug from 2004 and apparently they still haven't fixed it.
29.
▲
by
asomiv
15y ago
Yes I would say kqueue, the interface, is superior to epoll. Kqueue allows one to batch modify watcher states and to retrieve watcher states in a single system call. With epoll, you have to call a system call for every modification. Kqueue
30.
▲
by
asomiv
15y ago
The kqueue interface is awesome, but unfortunately kqueue is bugged on OS X: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#OS_X_AN... (as are poll() and select()!)
More ›