tgriesser | 14 years ago | on: Ask HN: Moving off PHP with Meteor? What are the issues?
tgriesser's comments
tgriesser | 14 years ago | on: Single Page Web Apps with Backbone.js
tgriesser | 14 years ago
tgriesser | 14 years ago | on: Beautiful Buttons for Twitter Bootstrappers
tgriesser | 14 years ago | on: Cheap and easy SSL: Heroku + Cloudflare
tgriesser | 14 years ago | on: Show HN: My open source form builder
I'm actually in the process of building an open source backend for a robust form builder as a package for the fuelPHP framework. Not sure if you have any interest in collaborating, but I was planning on building a similar js frontend for it, including mirrored client/server side validation and custom callbacks but with backbone.js ...
Shoot me an email if you're interested at all.
tgriesser | 14 years ago | on: Ask HN: Other than PayPal, is there an API to Pay others?
tgriesser | 14 years ago | on: Ask HN: What was that minimal shop-builder app?
tgriesser | 14 years ago | on: Rate my startup: BusyFlow - making web apps work together
tgriesser | 14 years ago | on: Ask HN: Is there a good way to create pseudo-random passwords mentally?
I guess if someone a) cracked the password and then b) realized you were using some sort of prefix pattern for all sites they could somehow exploit that, but it's definitely better than the same 4 passwords for everything
tgriesser | 14 years ago | on: Ask HN: Best way to organize 3 sites? Startup blog, tech blog, Startup Service
Nothing "hits the market" as a giant network. It's a process of accumulated growth. Envato, GigaOm, Techcrunch, etc. all started as a single sites which through growth and good content were able to expand into the giant things. If your primary focus is the "service" then just stay focused on that with maybe a simple side blog or something, or an aggregator of different startup news sites with commentary, etc.
Also, there needs to be something that separates your content sites from all of the aforementioned sites. Why would I find the content on your site interesting vs. any of the ones you listed or thestartupfoundry, or sprouter. If you answer that with "my content will be better" then you may need to re-evaluate the market.
As long as you don't decide to completely rebrand the site and call it "quikster," it shouldn't be a problem to separate the content once you see how everything works out.
tgriesser | 14 years ago
http://www.blackboard.com/About-Bb/Patents/Patent-Pledge.asp...
tgriesser | 14 years ago | on: No company would ever hire Steve Jobs
Conversely, the type of person described in the article that "no one would hire", would also be the last person in the world looking for an interview with a large tech corp, it's a two way street.
tgriesser | 14 years ago | on: Ask HN: Have the non-tech self-employed been abandoned?
We're pretty limited in our features right now, but we've already gotten awesome reviews from the demographic you've mentioned, non-tech self employed who understand that there is a need to keep a good presence online but don't have the time nor desire to learn a new UI's, remember to log into multiple accounts per day, and determine what and how to post.
Some difficulties we've encountered are:
1. The amount of support that goes into something as simple as signing up for a web-app 2. Many business owners still don't trust using a credit card online and 3. Require a face-to-face meeting before they make any decisions on something
It is definitely an undeserved market, but also one that requires more offline networking, development, and explanation - not just A/B testing a landing page and getting good links on popular tech blogs.
tgriesser | 15 years ago | on: Think Before You Return False
tgriesser | 15 years ago
Using a framework, you change the $config['driver'] from "mysql" to "postgres" and you're good to go.
Without using a framework, you need to change every query your application makes. Good luck with that. If you don't have to do that because you standardized it yourself with a bunch of functions then you actually are using a framework, just one you made yourself rather than an open source one.
tgriesser | 15 years ago
The claim that they are more trouble than they are worth is also a common misconception. Yes, in some situations for very small projects, frameworks are probably unnecessary, but it really helps to not reinvent the wheel when it comes to security, form validation, database management, caching, and any of the other repetitive things that frameworks try to standardize.
I'd recommend taking a look at Codeigniter, I've been using it in production for 2 years and have completely enjoyed it. It is very well documented easy to use, and flexible... and since it's been opened up to the community with the codeigniter-reactor branch there is much more development taking place.
I've also started working some with FuelPHP http://fuelphp.com/ which is a new framework but also very well documented and makes great use of the features php5.3
I wouldn't recommend CakePHP though. From what I've seen it is bloated and tries to do too much auto-magically (like rails) but fails to execute as well.
tgriesser | 15 years ago | on: Mobile Apps Tools/Frameworks
Appcelerator's "kitchen sink" demo is an awesome demonstration of what you can do with it, and contains some great code to get started. https://github.com/appcelerator/KitchenSink
tgriesser | 15 years ago | on: The Economics of Dropbox
tgriesser | 15 years ago | on: Ask HN: How are lean startups easily accepting CC payments?
Read "Javascript: The Good Parts" and then continue on to any of the recommended books/readings from there (Javascript Patterns, High Performance Javascript).
jQuery is great for DOM manipulation and XHR, but it hides a lot of the implementation details from the developer, and it'll be frustrating if you try to do anything advanced in javascript without fully appreciating the language.
So, you should be able to explain and fully comprehend:
Once you get down most of that, then you can consider using javascript as a primary language. Otherwise you'll be very frustrated. I'd personally recommend getting comfortable with something like jQuery + backbone.js with your current stack before diving into 100% javascript.Also, don't worry much about scale, worry more about building something and then identifying the bottlenecks later to scale.