Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
acallan
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
acallan
4y ago
Why wasn't this part of his due diligence before contractually obligating himself to purchase Twitter?
2.
▲
by
acallan
4y ago
My position is that the moderation and content policies ("community guidelines") that private companies and individuals have is also a form of expression. For example, this explains the legality of op/ed pages of newspapers p
3.
▲
by
acallan
4y ago
> What about slander and libel laws or laws about claims made in advertisements? Yep — here we're getting into Prior Restraint. It's both against the law to restrain free speech such as lies, but as you rightly point out, this
4.
▲
by
acallan
4y ago
> there could be stronger laws against media which contains objectively provable lies this is a clear violation of the First Amendment, which makes it legal to publish lies.
5.
▲
by
acallan
4y ago
There is simply no meaningful legal distinction between the two in this context. See https://twitter.com/badsec230takes
6.
▲
by
acallan
4y ago
Imagine a scenario where Twitter and Facebook lose their ability to unconditionally moderate the content of their platforms. Presumably they would need to check with government censors first? Again, I understand how annoying moderation can
7.
▲
by
acallan
4y ago
Do you have any examples of Twitter arresting or imprisoning people for speech, or acquiescing to government censorship? Perhaps you are instead to moderating their private platform and enforcing community guidelines? I understand the latte
8.
▲
by
acallan
6y ago
Pat was a "boy wonder" at Intel and could do no wrong — until Larrabee. I was working at Intel at the time and remember always assuming that Pat would someday be CEO. His departure came as such a shock to a lot of us, as does his
9.
▲
by
acallan
6y ago
A soft core is a CPU that is programmed into an FPGA instead of a "regular" core that is made of discrete components.
10.
▲
by
acallan
7y ago
If refurbishers were able to bypass the activation lock, what would the point of an activation lock be in the first place? This is perhaps one of the most important use cases, and it's a good sign that iFixit is complaining about it.
11.
▲
by
acallan
8y ago
Calories and can be converted to Joules. The amount of energy to run a computer (a human computer or a physical one) is interesting to me personally, as is comparing the amount of extra calories (and thus, extra emissions) it costs me to ri
12.
▲
by
acallan
9y ago
Actually, Silverthorne (the first Atom CPU) added MOVBE.
13.
▲
by
acallan
9y ago
Incidentally, Steelcase CEO Jim Hackett quoted in this article was just named CEO of Ford.
14.
▲
by
acallan
10y ago
Relevant http://video.newyorker.com/watch/exclusive-clip-of-le-cafe-d...
15.
▲
by
acallan
11y ago
Indeed. And the big news is that the paper is available today. http://arxiv.org/abs/1512.03547v1
16.
▲
by
acallan
11y ago
Why was 64-bit Firefox for Windows so late to release?
17.
▲
by
acallan
11y ago
I recall learning that the important part of the optimization phase for Itanium was based on runtime performance analysis, not just static optimizations.
18.
▲
by
acallan
11y ago
Honest question: like what technology? Is there an area of technology that is relatively patent-free?
19.
▲
by
acallan
11y ago
Cycling. I'm in a club and ride with a group of 20+ people, 4-5 times a week. Most weeks I get at least 150 miles in. I like it for a variety of reasons: it's fun to go fast; it's individual yet also a group activity; there&#
20.
▲
by
acallan
12y ago
What do you mean by the "real QuickSort"? The professor who taught me Haskell at UT used to work on Burroughs LISP machines and wasn't too concerned with caches, memory, or the like. Again, Haskell can be viewed as a language
21.
▲
by
acallan
12y ago
Each list comprehension is O(n). O(n)+O(n)=O(n). Each iteration will roughly bisect the list, resulting in roughly log(n) iterations. Thus the one-liner is O(n*log(n)). Haskell says nothing about how lists are implemented, so with respect t
22.
▲
by
acallan
12y ago
In tests and homework, we would implement the one-liner quicksort with paper and pencil, much like a math test. In a pencil implementation of that Haskell, it is n log(n). Each line on the paper represented one level of recursion. Implement
23.
▲
by
acallan
12y ago
Like a lot of UT Computer Science, the implementation is a detail left for the reader. The semantics of the language make the one-liner n*log(n)--that's the takeaway.
24.
▲
by
acallan
12y ago
Indeed, my first CS class in 1999 at UT was in Haskell. Wow! What a change it was from high school AP Computer Science in Texas, which was (in those days) C++. Seeing QuickSort in just one line was what hit it home. I remember thinking at t
25.
▲
by
acallan
12y ago
The author is incorrect in the section about memory fences. x86 has strong memory ordering [1], which means that writes always appear in program order with respect to other cores. Use a memory fence to guarantee that reads and writes are me
26.
▲
by
acallan
12y ago
I attended an RMS speech at the University of Texas many years ago. I recall him heckling students leaving in the middle of his speech. Instead of presuming that they had somewhere to be--an exam, a study session, etc., he called them out a
27.
▲
by
acallan
13y ago
Precisely. The latency of some of the more aggressive power states exceeds the resolution of most OS tick timers, so they are often aborted for no good reason. So, as I'm typing this reply, in-between keystrokes, voltage to the CPU can be k
28.
▲
by
acallan
13y ago
Jonathon Swift's "Gulliver's Travels", a satire of 18th century England, included in it a long-running bloody war between two religious sects that started over the correct way to eat a soft-boiled egg: the big end, or the little end. For th
29.
▲
by
acallan
13y ago
It's even worse trying to explain Gulliver's Travels (and the origin of Endianness) to engineers that do know it in the data-storage sense.
30.
▲
by
acallan
13y ago
Did you try '.intel_syntax'? I've had some success with it, but it clearly needs some code contributions.
More ›