crystalarchives's comments

crystalarchives | 11 years ago | on: Ask HN: The “I want to do everything but end up doing nothing” dilemma

Everyone is sharing tactical solutions, which is great, but I've found that the root of the problem lies in not knowing your values, and I wish I was introduced to this concept at your age.

I learned about this in an excellent book called "10 Natural Laws of Successful Time and Life Management" by Hyrum Smith, the creator of the Franklin Day Planner.

It recommends that you write your own Personal Constitution; much like the United States has a Constitution written by the Founding Fathers that guides the creation of future laws, you should create a Personal Constitution that guides your future behavior.

It's essentially a prioritized list of what you hold most dear. Then whenever you need to make a decision, you act based on that list. Of course, you may choose to amend it at any time, so it's not a static document.

The process of creating your Personal Constitution is a difficult one so be prepared to set aside a few hours to really think things over. But the exercise is utterly priceless, as you'll have extraordinary clarity of mind and a rock solid decision making framework that allows you to focus on the things you most cherish.

Give it a shot!

crystalarchives | 15 years ago | on: Who is living off their startup fulltime?

I'm currently floating on a pretty ridiculous niche website: http://www.snowboardsforwomen.com

I actually started it for my then girlfriend whom I wanted to go snowboarding with me by buying a board to guilt trip her into coming along. We couldn't find a place with a lot of women's snowboards so I pulled up some datafeeds and scraped them just for the women's boards, some friends asked for the list, I got lazy emailing everybody so I made a site, threw up the affiliate links for funsies, and actually started making some money.

It's a seasonal earner which I don't recommend to anyone because my winter makes or breaks my year. It helps a lot that I don't live in the Western world anymore which reduces my cost of living, but Shanghai is getting more expensive by the day so I'm working on other revenue streams.

crystalarchives | 17 years ago | on: Ask HN: Have web apps been commoditized?

I completely agree with mixmax - webapps are just beginning to garner interest in a variety of different niches.

Most of the webapps you see are geared towards tech minded folks, but there's still a world of opportunity in other sectors.

For example, my startup provides real time analytics data for universities regarding their student enrollment. Nobody in this space is using a cloud hosted solution. Our competition has to install servers, go through the university IT department, and batch process reports... we're blowing people out of the water.

Another example is Woobius, which is basically providing a Basecamp for construction workers.

I believe that webapps are only going to get more popular as the younger, more tech-savvy generation is moving into the decision making roles in the workforce.

crystalarchives | 17 years ago | on: How do you generate passive income?

I think you might have a different idea of "passive income" than the rest of us here.

Passive income is money generated without requiring you to go to work, trading a set amount of hours for steady cash. Instead, it's spending the effort on building something (whether it be a book for royalties, a website for subscription payments, investments for interest / asset worth increase, or real estate for rental money) that generates a cash flow without requiring the 40 hour work week.

Granted, it's not "passive" in that you still need to spend the time and effort to get it up and running, but once your system in place there's usually much less time involved to keep it operating, which is why this type of income is much more attractive - you can scale this system to make much more money than you ever could through salary.

However, the risk is correspondingly higher; if your product doesn't do well, you don't get money, whereas you can get away with a reasonable amount of subpar performance at larger companies without too much problem.

crystalarchives | 17 years ago | on: Prosper.com, P2P Lending Startup, Shut Down by SEC [pdf]

Thanks for submitting! This was really important news for me.

I'm actually a huge fan of Prosper - I'm a lender with $500 invested, and I've actually gotten a 20% return because I spent a lot of time screening my borrowers, who have still yet to make a late payment, much less default.

I only accepted B and above credit ratings and generally just used common sense when selecting a borrower; very well written, well thought out profiles got priority, limited (1 or 2) late payments in the past were required. I always checked how much of their credit they were using versus how much they made, I never funded a loan near the $25k borrowing limit to avoid a hit-and-run default, I only funded good causes that suggested the borrower spends wisely, etc. Prosper gave a lot of financial information about these people, so I felt that I could make a pretty educated decision.

I hope Prosper registers with SEC so they can continue doing business. The platform is pretty amazing, and I think they really added value to the world. I was totally looking forward to scaling up my selection system by automating it, and Prosper was working on an API that would actually let me do that.

I never bought into their math, and didn't even really think about it. My plan was always to pick loans very carefully so that very few if any would default. In retrospect, I'm glad I didn't do any subprime lending. :)

That said, I probably jinxed myself now and everyone in my portfolio will default...

crystalarchives | 18 years ago | on: Ask YC: Projects that inspire you

Disallowing reassignment would leave a finite amount of (useful) keyphrases; my business model is to charge for people who wanted to keep their keyphrases for a duration of time.

Maybe I should make that more clear...

Detecting circular assignments is a great idea though, thanks!

crystalarchives | 18 years ago | on: Ask YC: Dealing with a major event like death?

Although I am fortunate because I can say that nothing like this has ever happened to me, my sincerest, warmest condolences go out to you and your roommate's friends and family. I cannot imagine what it must be like. I hope you find strength and light in a time of darkness.

I wish you the very best of luck on both your last year of college and your startup; enjoy them as much as possible!

Let us know if you need anything - I am sure I speak on behalf of the YC community in offering you our heartfelt support and assistance.

crystalarchives | 18 years ago | on: Are you a solopreneur? How does it work for you?

I'm in the same boat as you, and it's rough. At first I didn't believe in PG's advice for multiple cofounders, but as time goes by I definitely think it's important now.

As a one person shop I can't do much more than consulting, and as a technically minded person I find that I'm not particularly motivated to do the promotion / PR / SEO side of things. I'm on the lookout for a cofounder now but it's hard(er) to pick one up after college and all my friends want stable jobs instead of entrepreneurship.

If it's working for you now then I wouldn't worry about it. I find that getting myself motivated to do the non-technical things was the key to getting more success when going solo.

crystalarchives | 18 years ago | on: Ask YC: Is it painful to develop with PHP/Perl/MySQL on Windows?

I've done web development (PHP/MySQL) on both Windows and Linux, and Linux wins hands down for me primarily because of the number of useful utilities at my disposal on the command line and ease in moving around the directory tree.

However, packages like XAMPP help greatly in making sure everything runs smoothly when developing on Windows. Nothing in the PHP/MySQL code itself should have to be different on Windows, but configuration settings need to be tweaked prior to launch on a Linux box.

Caveats I can think of when moving code written in Windows to Linux is that Windows uses the backslash instead of the forward slash for directory paths, but I think newer versions of NT support the forward slash, too - please correct me if I'm wrong. Also, Windows uses a semicolon (;) to separate path variables while Linux uses a colon (:).

Windows also uses \r\n instead of just \n as a newline character so when/if you edit the code after porting to Linux, you'll get ^M characters at the end of each line, which I can't stand. A quick global search and replace restores my sanity though.

I don't have any experience at all using Perl on Windows, sorry.

crystalarchives | 18 years ago | on: Ask YC: Feedback on an alternative to TinyURL

I'm trying to capitalize on the trend of searching for a company slogan or phrase instead of going to the actual site. A lot of businesses are posting ads (non-internet) that say "Go to Yahoo.com and search for <company name>" instead of saying "Go to <company name>.com/<project name>".

This trend should increase with the proliferation of mobile web browsing; typing a domain name is a pain, and I hope to make browser plugins for each mobile browser that capitalizes on this new development.

crystalarchives | 18 years ago | on: Ask YC: Shared hosting providers that don't suck?

I use WebFaction and am very pleased with them. They support hosting multiple sites on one account, PHP, Rails, and Django while having extremely fast and helpful customer service. The latency is good, although not blazing, and I've had perfect uptime so far since I signed up six months ago. My plan is $9.50/month and allows shell access (the clincher for me), 80 MB RAM, 10 GB HD, and 600 GB bandwidth. I definitely recommend them.

http://www.webfaction.com/?affiliate=pillarofeden

* Disclaimer - this is an affiliate link.

page 1