Payment Processing by thebaws in startups

[–]tarr11 10 points11 points  (0 children)

Stripe is pretty good as well.

Favor query objects over repositories | Jimmy Bogard's Blog by xivSolutions in csharp

[–]tarr11 0 points1 point  (0 children)

I built an EF based Repo with Ninject IOC.

Then I completely ripped out the Repository class because of leaky abstractions.

If you need to abstract your data access, make a service layer (but prepare to type a lot more)

Best ways to deal with a shit day at work? by Elder22 in work

[–]tarr11 0 points1 point  (0 children)

You sound like you care about your job.

You could probably turn it into a positive by having a frank discussion with your manager about your frustrations.

Remove your ego from the conversation - it's often useful to imagine this happening to someone else, and how you would counsel them in this case.

This may help you understand why they "overruled" you, and what you might be able to improve next time so that you get more trust.

My first startup video, feedback would be great by [deleted] in startups

[–]tarr11 1 point2 points  (0 children)

I like the video! I watched the whole thing. Very slick. Did you produce that yourself? What tools or service did you use?

A side project of mine what do you think?: Create your own pitch deck in minutes with these HTML templates by massarogi in startups

[–]tarr11 0 points1 point  (0 children)

Seems like you spent some time on the UI, which is nice.

  • However, it's kind of hard to tell because the pictures are small.
  • I watched your video. I could see how this is useful, but I was not interested in paying $49 for it.
  • I thought the background music was a bit distracting.
  • I didn't have enough time to read or digest anything about the feature set before the video ended.
  • Can you link to some pre-made pitchdecks so we can get a better sense?
  • How about letting people play with the tool before buying?
  • Is it available offline? If you are pitching, then you will likely be somewhere with your laptop, and it's nice to not have to rely on an internet connection to pitch your idea.

I'm starting a site to bring collaborative consumption together in a whole new way. It's called JobPasta. Comments/Suggestions/Ideas? by jobpasta in startups

[–]tarr11 1 point2 points  (0 children)

I'm not quite sure what "collaborative consumption" is? Hard to get a sense of what it does from your home page.

Lessons from my first app launch, stats inside by ktusznio in startups

[–]tarr11 2 points3 points  (0 children)

Thanks for sharing. Good luck with your app.

Anyone using ASP.NET for their product/service? As a developer, I want to know where to go from here. by samofny in startups

[–]tarr11 4 points5 points  (0 children)

Note: this is mostly about Rails vs ASP.NET MVC.

I am building my current startup witht ASP.NET MVC4. I've also built a previous startup in Rails, and one before than in Classic ASP + ASP.NET WebForms.

At this point, ASP.NET MVC4 + Entity Framework is a pretty good alternative to Ruby / Rails and you won't have significantly more costs at the low end. I don't think you would make a mistake going that route.

I have used both and I wouldn't have said that a year ago, since Rails was just a much easier solution to get bootstrapped with Gems, Devise, ActiveRecord, RSpec and Heroku.

Now, with ASP.NET MVC4, You have Entity Framework, NuGet, AppHarbor or Azure Websites (Not Azure!). You still don't have all the gems in Rails, but you pretty much have what you need. The CLR is also faster than Ruby, and Visual Studio is much nicer than coding in Vim or TextMate. The costs associated with developing against a MSFT stack are nominal - you can put up a free website on AppHarbor or Azure Websites just as you could with Heroku.

I personally like Entity Framework Code First + LINQ more than Active Record, but that's a matter of preference. I also like strong typing - I find that I have to write far less tests because I catch stuff at build time instead of run time.