Viewing profile — fsk
fsk
HN member- Joined
- Tue, Dec 03, 2013, 7:38 PM UTC
- HN karma
- 1,527
- Public activity
- 677 items
- HN profile
- View on Hacker News ↗
About fsk
No profile information was provided.
Recent public activity
-
comment
Comment #9852570
Hire cheap H1-bs, then your product doesn't work.
-
comment
Comment #9852482
I interviewed at the NYSE a few years ago. Everyone was Indian.
-
comment
Comment #9849562
Actually, it was a bad example. Suppose you spend $1M to produce something worth $100k. You lost $900k. But suppose you borrowed at 0% while inflation was (to use round numbers) 10…
-
comment
Comment #9848895
Finance is complex because: 1. If a transaction is complex, it's easy to sucker people into buying. Why would anyone buy a structured product? 2. If a transaction is complex, both …
-
comment
Comment #9843396
My employer originally had a Wordpress-based blogging product. They spent more than $2M writing their own blogging system, and it still was missing many features that come with Wor…
-
comment
Comment #9843165
It depends on whether you are a recent college grad or not. A recent college grad will probably believe the hype. An experienced candidate is more likely to see it as just another …
-
comment
Comment #9843052
Answer: There is some neat stuff happening at Google, but the typical employee is doing the boring maintenance that any large business requires. As a bonus insult, they're ridiculo…
-
comment
Comment #9842868
My attitude is that, if they're going to close a question as offtopic, then put it in your robots.txt for Google to exclude that page. Why is StackOverflow polluting Google with co…
-
comment
Comment #9842853
What makes this a HARD puzzle is that the pieces don't completely fill the area. That dramatically increases the solution search space.
-
comment
Comment #9840591
Run your own mailserver - postfix + roundcube. It'll take you some time to set it up, but it will be educational!
-
comment
Comment #9833964
Your main problem would be getting enough paid subscribers to cover the cost. Also, you should do it as a website rather than a print newspaper. There already are several "conspira…
-
comment
Comment #9830591
They are transferable skills BUT it's very hard to find a job that isn't a keyword match for your previous job. I have a lot of C/C++ experience, but that experience has a market v…
-
comment
Comment #9830579
I thought Facebook is killing it because they have a large lock-in network effect for their users. You have to be on Facebook if all your friends are on Facebook.
-
comment
Comment #9830545
1. Math - You probably should know real analysis, abstract algebra, linear algebra, and some logic. 2. Whatever else interests you
-
comment
Comment #9827627
That's what I figured - a lot of people who say "Java is as fast as C" aren't doing proper compiler optimizations on their C. I suspected that was true, but I didn't spend the time…
-
comment
Comment #9827169
If you don't put in ANY optimization flags, it puts in full debugging info, which slows things down a lot. I don't know anything about Java optimization.
-
comment
Comment #9826511
What compiler settings were you using? In my experience, C is faster than Java if you turn on full optimization settings.
-
comment
Comment #9826203
Due to accounting/tax rules, "qualified incentive" options are required to be priced at "fair value". It's better for you to just ask for more equity. However, realize that equity …
-
comment
Comment #9823534
Law of Headlines says "no". My experience also says no. The two issues I'm facing are: 1. Due to technology churn, after a couple years of experience, your experience loses its mar…
-
comment
Comment #9822405
If you do open database connection do one insert close database connection That adds up fast. At work, I've been very disappointed in the performance of their Amazon RDS. They had …
-
comment
Comment #9821408
Ask for an exec-level title if you pick #1. In an early stage startup, it's easy to get. It makes it harder for them to hire someone over you later.
-
comment
Comment #9821167
Your index wouldn't be clustered, is it? For a regular index, insert is O(log n). For a clustered index, insert is O(n). You can also bulk insert records, rather than 1 at a time. …
-
comment
Comment #9820691
+1 for sell, before they depreciate Use the money to rent an ordinary VPS (aws, linode, etc.) There's no reason to own your own servers unless you have unicorn-level success, and N…
-
comment
Comment #9815406
Get a friend or relative to buy the puts for you.
-
comment
Comment #9809671
For 2D images, fractals can be used for image compression. I don't know if any of the popular image compression algorithms use this method.