For_Iconoclasm's comments

For_Iconoclasm | 9 years ago | on: Apple Abandons Development of Wireless Routers

This is false if you're only using Fios for internet service. Verizon asked me if I was providing my own router, and I said yes. The tech who "installed" and activated my ONT confirmed that I was using my own router so that he could activate the ethernet port on the device. There was nothing to bypass—it fell within their expectations.

I hear it's a challenge to avoid the standard Verizon router if you also have TV or phone service through Fios.

For_Iconoclasm | 12 years ago | on: Because it needs to be said

There is an extremely simple logical construct surrounding this: consent is not the default state of the other party.

What is not easy to understand is how people don't understand this. :\

For_Iconoclasm | 14 years ago | on: Password Rules

I use LastPass, but also use generated passwords to answer security questions. For these questions, one can enable the options for only using alphanumeric, unambiguous characters.

For_Iconoclasm | 14 years ago | on: The new Git-scm.com

Sorry, but it's the website for git. Things have websites. How difficult is that to reason, really? The top of the page explains what git is. Isn't it obvious that the site is git's website? It then lists things which one would expect to find on git's website, including the documentation and download sections.

Here are some other websites for things. The front pages also explain what they are and links to more information.

* Y Combinator: http://ycombinator.com/

* Ubuntu: http://www.ubuntu.com/

* Google Chrome: https://www.google.com/chrome

I will admit that some websites don't do a great job at this.

* Firefox: http://www.mozilla.org/en-US/firefox/fx/

Firefox doesn't say what it is. The other websites say that the things are.

But git-scm.com? How much more information do you need than "Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency." to realize that it's the website for git, the free and open source distributed version control system?

Your comment is not the only one in here like this, but I'm struggling to identify the reason why anybody would consider this website difficult to grok. Sure, it may not have the character of the old website with a monster eating trees, but I really feel that organization and clarity are not issues here.

For_Iconoclasm | 14 years ago | on: Passwords and interviews

Oh, it is absolutely a problem! But, having people not knowing what they're talking about has always been a problem. Nothing short of a strictly-enforced policy mandating that HR departments need to have decent knowledge in a certain area will change that.

Besides privacy, it could turn out that HR involved in other domains are broken relationships. If anybody has any examples, I'd love to hear them.

For_Iconoclasm | 14 years ago | on: Passwords and interviews

I would answer that rhetorical question with no, HR departments have not have heard of social engineering attacks in computer security. Almost any company asking for a password will have a brain-dead HR department in charge of that policy; it's not like your fellow future programmers thought that one up.

For_Iconoclasm | 14 years ago | on: Interview with Richard Stallman, Founder of Free Software Foundation

> defining "evil" would be a good start

I think the best way to tackle this would be defining specific tenets the way that the FSF does with freedoms 0-4. They don't just say "You have to be free!" ... there is the legally-binding license itself, containing some light legalese, as well as the 4 freedoms specifying the idea to the common man, despite clearly.

So, a license that comprises "We won't be evil. We promise!" wouldn't be good enough, but the some clear rules could be set. The non-evil most people would care about would probably be related to privacy.

I agree that specifying all of the business practices which many people believe are evil would be a non-trivial task dependent on the nature of the company.

For_Iconoclasm | 14 years ago | on: Poll: What's Your Favorite Programming Language?

> I see a lot of votes for python, but a disproportionately small representation of python fans in the comments.

This is probably because describing the virtues of Python (clean & simple syntax, one right way to do everything, easy-to-use yet comprehensive standard library) just feels like beating a dead horse. Almost everybody in this community has heard of Python. The circle-jerk factor on HN is still somewhat low when it comes to this topic.

I currently use Python personally and professionally, and I love having it as my go-to language. However, I'll be happy to add some more languages to my repertoire in the future.

For_Iconoclasm | 14 years ago | on: I swapped my MacBook for an iPad+Linode

I'm not going to argue with your opinion like others are doing, but I find it very interesting that you have this viewpoint. It would sort of be like a car enthusiast preferring an automatic car for its smooth, self-maintained shifting, or a skilled cook preferring a boxed meal because it is easier to make.

For_Iconoclasm | 14 years ago | on: I swapped my MacBook for an iPad+Linode

> programming, ultimately, is thinking.

I very rarely feel slowed down by my environment. It's possible for it to happen, but most of my time is spent thinking about a problem, not typing.

For_Iconoclasm | 14 years ago | on: Richard Stallman on Steve Jobs: correction

Duly noted! Although, I was not praising Jobs nor Apple in post. I was drawing a comparison (showing similarity) between the ideals of RMS and the ideals he was against. He is hypocritically fighting oppression in one field with oppression in another, and frankly I believe a person has more of a right to what goes on in their mind than what goes on in a computer.

Steve Jobs is not quite topical to what I said.

For_Iconoclasm | 14 years ago | on: Richard Stallman on Steve Jobs: correction

My biggest gripe with Stallman is his "I know what's best for you" mentality. His moral standards are more important than whatever you can come up with.

During a question & answer session somewhere, someone asked him a question about videogames. The questioner mentioned that the best games are just not free software. Stallman's answer was that the person should "adjust their tastes" and play free software games.

Adjust their tastes?

That is plenty more restrictive than using non-free software. I'll proudly wear "digital handcuffs" than sit in Stallman's oppressive, disrespecting, dogmatic ideological prison cell.

I appreciate what RMS has done for free software, but as soon as I learned that he thinks his interests are more important for me than my own, I decided it might be time to develop my own Stallman-libre philosophy on FOSS.

For_Iconoclasm | 14 years ago | on: Can a robot write books? Yes, and they're absolutely terrible.

I worked on a natural language processing project as my required directed study in college. We focused on language generation and took an extremely naïve approach to the problem since it turns out that literature on alternative types of language generation (as opposed to simple generation from n-grams) is not well-proliferated.

Needless to say, it was very hard. Semantic representation by itself is very difficult to tackle; AI in general far off from simulating the wit and ingenuity of a human being's writing, though I don't believe it will be like that forever.

For the curious: we didn't get very far into the project, but our next move was going to be trying to combine WordNet, FrameNet, and VerbNet to create stories that sounded like they described something plausible. We only got a bit past "Colorless green ideas sleep furiously," though.

It's something that I say I want to hack on again someday, but I don't know if I will. The two of us have other code projects right now.

For_Iconoclasm | 14 years ago | on: So you think you know C: the Ksplice Pointer Challenge

Well, it got me on the pointer arithmetic questions. I remembered that C automatically handles pointer arithmetic (multiplying by sizeof(type)), however:

Question 2: I didn't think that x+1 would be interpreted as a pointer for some reason, so I guessed 0x7fffdfbf7f01. Wrong.

Question 4: I incorrectly thought that what I remembered about pointer arithmetic would apply here. 1 * sizeof(int) = 0x04, so I guessed 0x7fffdfbf7f04. Wrong.

I don't work in C professionally, but I'd like to not forget things. My error in question 2 shows forgetfulness, and my error in question 4 is from not ever completely mastering every nook & cranny in C.

How did the rest of HN do?

For_Iconoclasm | 14 years ago | on: Nginx, Inc. announces its Series A funding

That is also true. You can use that version for as long as you want! The company I work for uses a newer stable version of nginx in production, but I think I actually make use of a directive that was introduced after the 0.7 series. Even so, as a small company with only a few customers, we're okay sticking a little closer to the edge. At this point, there's no compelling reason for us to upgrade past where we are (I think 0.98) unless I want bug fixes for things bugs we haven't seen.

For_Iconoclasm | 14 years ago | on: Nginx, Inc. announces its Series A funding

I feel the same way. Nginx has been the little ngin that could, supported by a bunch of talented hackers dedicated to bringing something to the table that the big-time servers, even the open source ones, couldn't. Nginx's history of being the lightweight, faster competitor to Apache (a shining example of success in the open source world) practically defines its identity.

I just hope that nginx doesn't sell out. I don't think it will, because I can't see what it has to gain for becoming exactly like its competitors when it already has a substantial user base. Of course, as you stated, dividing the userbase between enterprise edition users and free edition users could cause some software development political issues that could stifle progress.

page 1