instruction
stringlengths
4
105
output
stringlengths
8
56.7k
Will you be my Advisor?
kls: To any of you that are looking for an adviser, I can offer some assistance the only caveat is that I have to find the technology you are working on compelling. If you shot me a high level via email (in my profile), I will shoot back an I'm interested or a good luck.Full disclosure, I do work with a venture group f...
Things you wish you'd learned about programming in college?
nwjsmith: I'm in my final year of CS undergrad, and I've learned a couple of things outside of class that help me, all stuff I wish they would teach (well) in class:* Learn how to write a Makefile, your builds should be one button/command away* Learn how to test your code using assert.h, JUnit, whatever, just test all ...
Things you wish you'd learned about programming in college?
ivankirigin: I wish I took a software engineering class earlier than my junior year. I started programming my freshman year, and didn't realize how badly I was doing it till that class.I also wish I didn't learn a compiled language first. I almost think there should be two beginner classes: lisp or python and then a un...
Things you wish you'd learned about programming in college?
timr: Don't waste your expensive and valuable college time on software engineering tools, source control, and other mundane crap that any monkey can learn quickly. Every programming tool that I learned about in college is now either unused (CVS, RCS, Motif), or dismissed by the l33t rock-stars as dinosaur technology (...
How to consistently generate traffic and new customers for Ramamia?
apsurd: Why not do both?I'm hustling to get my new app out and I plan to use a kind of "hybrid" system. Perhaps it has a name but the premise is just that you have to attach VALUE to whatever it is you are giving away. If you price something as "FREE" and then give it away, then the user does not feel like he's really ...
Which are some of the most expensive off-the-shelf sw products?
RK: One of my relatives works in the petroleum exploration industry as a consultant. He told me that on a recent stint in Moscow he came across a real, physical software black market. He said that they basically told him they could get him anything he wanted, including the $100k+ software packages his firm uses for oil...
Things you wish you'd learned about programming in college?
InclinedPlane: Highly relevant stackoverflow.com thread: "What is the most important thing you weren't taught in school?": http://stackoverflow.com/questions/258548
How to consistently generate traffic and new customers for Ramamia?
jasonlbaptiste: Here's one idea im just shooting out there for the hell of it. Seriously, it might be absolutely retarded and just designate it as so with comments: Microtransactions. Give people x amount of free videos and x amount of free photo albums. After that, they pay for each one posted (something really sm...
Things you wish you'd learned about programming in college?
edw519: Don't forget about all the non-technical stuff. No one programs in a vacuum...The Systems Development Life Cycle: analysis, design, development, testing, security, deployment, project managementUnderlying systems theory, regardless of language: architecture, databases, frameworks, MVC, properties, methodsUnder...
Things you wish you'd learned about programming in college?
wheels: "Take initiative. You're not going to learn to be a programmer in college. Do open source, internships, summer jobs... Make sure you work with people better than you."And then focus on getting the most out of the stuff that college is good at teaching: fundamentals and theory. Do you really want to learn h...
Things you wish you'd learned about programming in college?
wowus: Experience is the best teacher. Just build programs! The more you build, the better you'll be. Note how I said build, not write. Think about it.Oh yeah, and contributing to open source is the bomb. You learn so much about real-world applications of your knowledge.
Things you wish you'd learned about programming in college?
DanielBMarkham: The whole purpose of learning about technology is to make technology do something for people. So somehow we got the idea to focus exclusively on the technology and hope the people part takes care of itself.Smart people can learn all sorts of interesting technical stuff. In fact, if you're smart, you're ...
Things you wish you'd learned about programming in college?
bgray: What pg said: http://paulgraham.com/hs.html
Things you wish you'd learned about programming in college?
sukuriant: I wish I had learned C++, personally. A number of the places I was hoping to work for required many years experience in it. Like or hate the language, it's used frequently. Or at least it was.Some other things I wish I had done/learned: * working with external libraries in C * working in groups on LARGE proj...
Things you wish you'd learned about programming in college?
Hoff: How to research.How to ask a question.How to communicate.How to come back to a program you've written after a year. Or after ten.Distributed source code control.Incremental development.Integrated debugging. Planning for failure. For support.Finding and using libraries or frameworks.Backup.Source code archeolog...
Things you wish you'd learned about programming in college?
jrockway: Functional programming.
Things you wish you'd learned about programming in college?
wastedbrains: I wish I learned more about testing, Source Control, and using and integrating with existing code and libraries.
Is it acceptable not to pay interns?
maconic: One thing is for sure: unpaid internships are probably illegal nine times out of ten. Employers are legally required to pay interns at least minimum wage if they fit the definition of an employee. Given the way most startups use interns, they would be considered employees.According to the Department of Labor, ...
How to consistently generate traffic and new customers for Ramamia?
DTrejo: The Jones family name you use in your screenshots has some bad connotations. http://en.wikipedia.org/wiki/Keeping_up_with_the_Joneses
Things you wish you'd learned about programming in college?
tlrobinson: Compilers.Somehow I got a BS and MS in computer science without taking a single compilers course, and I've regretted it.I recently saw someone make a comment along the lines of "I'm a web developer, why would I ever want to learn about compilers?" Many people seem to think compilers are just programs like g...
Github or your own git server?
how_gauche: I'd never use Github if money was on the line, it's down all the time and source code is core competency stuff, you do it in-house. Gitosis + gitweb aren't that difficult to set up.There's also "Gitorious" but I tried to use it once and spent two days unsuccessfully trying to get it to work.
Github or your own git server?
cmelbye: I'm using GitHub. It may occasionally be down, but they have a really innovative new server architecture, and once they've ironed out the problems (which I believe they've almost done), it should be as stable as a rock. Plus, it's git so you have a full clone of the repository that you can work with even while...
Things you wish you'd learned about programming in college?
seldo: How to collaborate with a large team of others. We had group projects, sure, but they were small enough that usually one or sometimes two guys would do all the coding and everybody else would just fuck around.The stuff you have to learn to effectively collaborate -- including task estimation, task splitting, sou...
What's the best way to dispose of a huge amount of old floppy disks?
cperciva: My dad used to run a company that was contracted to program defensive missilesSounds to me like there's probably classified information there, in which case step #1 is probably to phone the government and ask them what they want done.
Things you wish you'd learned about programming in college?
wallflower: First, congratulations on being offered the opportunity to talk to your peers. I would echo many of the comments here to go outside academia and CS and focus on what you have learned by coding for pay and pleasure.How to build your personal online coder reputation, begin contributing to the community (open ...
What's the best way to dispose of a huge amount of old floppy disks?
bhousel: 10 Ways to Reuse or Recycle Floppy Disks: http://planetgreen.discovery.com/tech-transport/reuse-recycl...#1 on the list is send them to Greendisk, a company that takes disks and all other kinds of stuff too, including the magnetic tape.
Github or your own git server?
jhancock: I use it for closed source work, but I consider it mostly a backup repo. It costs me $7 a month and I feel I get enough value from the many other projects I track to make it pay for itself as a one-stop interface.
review my webapp, tunemiser.com
RevRal: Bookmarked. Your app is awesome.The very first thing I'd do is find an alternative to the "hammer time" animation, as much as I love that animation.Have a background with a darker border behind the iTunes price, similar to your Amazon price. Make it light blue.I would try to get three colors at the top. Definit...
Things you wish you'd learned about programming in college?
Mongoose: Will your talk be recorded? I'd be interested in seeing it.
Things you wish you'd learned about programming in college?
paraschopra: Code versioning and unit testing are the only two things I wished I had known from the start (though I still avoid them, god knows why).
How do you register domains for non-technical clients?
JayNeely: We're planning to use eNom for this:http://www.enom.com/resellers/overview_api.aspThe testing we've done so far, as we continue to build our service (pre-launch), has found the API capable of everything we need it to do, from domain checking and registration to e-mail forwarding address creation.Would love to...
Github or your own git server?
mbrubeck: The last two companies I've worked at both use GitHub. There are more GitHub vs. self-hosting comparisons (including mine) in this earlier thread, with a focus on security: http://news.ycombinator.com/item?id=936187
How to consistently generate traffic and new customers for Ramamia?
djm: with regards to the decision you have to make about fremium/premium etc there is one thing I think you need to consider that I can't see anybody else here has mentioned.If a whole family sign up to your site and like it enough to use it they will probably become long term users. After all it would be a pain in the...
How to consistently generate traffic and new customers for Ramamia?
joez: Just a quick thought, the holiday season (Black Friday, Cyber Monday, Christmas Gifts) is when a lot digital cameras are sold (especially DSLRs this year). You might be able to get some traffic (premium) by writing a blog post on tips on taking family photos, different DSLR settings, poses to try, etc.This is my...
What's the best way to dispose of a huge amount of old floppy disks?
Shooter: I gave a few thousand old floppies to an artist on Etsy. She recycled 100% of them into art items, and then sent my wife some cool jewelry to thank me for the raw material. Some of the jewelry was even made out of the floppies I sent, although you wouldn't know it to look at the jewelry. She also made some ...
Things you wish you'd learned about programming in college?
known: I'd suggest you know the difference between selling software & selling consulting
Things you wish you'd learned about programming in college?
dedalus: First, never confuse schooling with educationSecond learn stuff thats in this book: http://www.amazon.com/Introduction-General-Systems-Thinking-...Third,The general idea of good education is to prepare you for the future rather than learning about the past
Advice for seed-stage startup funding firm in India
shabda: APart from the money what makes you a good investor?
Is it acceptable not to pay interns?
dkersten: Besides the legal issues, you get what you pay for. Really, if I was doing work (especially if I can see it making someone else a pile of money) and I wasn't being paid for it, I wouldn't be motivated to put any effort into it and you'd probably find it cheaper to just pay someone instead.
Things you wish you'd learned about programming in college?
teeja: Make up (or find) as much gnarly, twisted data as needed to throw at your code to convince yourself that it will respond gracefully no matter what comes along. (Then if you can, get someone else to.) If it can't - or you can't test all conceivable ways it can fail - then you need to either rethink your design o...
Any startups looking for a free marketing guy?
pemo: Could you give me further info on gmail I'm pemotheodore? Thx
Achieving high security and privacy by daily re-imaging of your system
charlesmarshall: how about a more random one... use version control on the disk and do a clean checkout on boot.. big overhead to store the repo and probably not too fast to checkout .. but on the plus side you can include specific files as time goes on ... so the next service pack can be added to your repo when it com...
Achieving high security and privacy by daily re-imaging of your system
bhousel: Option #4 has been working very well for me over the past year. I'm a huge fan of VMWare now.VMWare also lets you take snapshots of your VMs, so that if anything goes wrong, you can revert to an older version.
CS major who doesn't want to code. Am I in the wrong major?
jasonlbaptiste: Not at all. If I could choose between either an entrepreneur with an entrepreneurship major or a CS major, the CS major would win hands down every time. It seems a lot of CS/CIS majors prepare you for "coding jobs" in fortune 500 IT, which is a real shame. The degree is what you make of it.
CS major who doesn't want to code. Am I in the wrong major?
bhousel: What's a "stereotypical coding job"? I didn't know such a thing existed..Working in a 3 person startup in a loft is very different from Fortune 100 IT dept, different still from writing code in a research lab, or freelancing, or out in the "field" in remote places, or programming lathes and CNCs on a machine...
CS major who doesn't want to code. Am I in the wrong major?
BigZaphod: Maybe. But your major doesn't have to define who you are or will become - it's just a thing.
CS major who doesn't want to code. Am I in the wrong major?
david927: Dijkstra said, "Computer Science is no more about computers than astronomy is about telescopes." It's more than that though. Computer Science is no more about most programming languages than astronomy is about telescopes.There are a lot of people who code giant Java or PHP projects and think it's Computer S...
CS major who doesn't want to code. Am I in the wrong major?
rw: You are not in trade school. Take control of your life :-)Most things in CS are able to be studied both empirically and theoretically. For example, Scott Aaronson is a CS theorist at MIT who has admitted to doing just a little BASIC programming in school. I took no computer science courses, but now I code full-time...
CS major who doesn't want to code. Am I in the wrong major?
mikek: In my experience, the best managers / product designers of programmers know how to program. This helps them tremendously in understanding how to set goals and expectations. It is very difficult for non-coders to know what is a very difficult task (e.g. data deduplication) vs. what is an easy feature to add.
CS major who doesn't want to code. Am I in the wrong major?
timcederman: Sounds like you'd be a good candidate for an associate product manager role at Google.
CS major who doesn't want to code. Am I in the wrong major?
tjr: A classmate of mine graduated with a degree in computer science, and went on to law school. I was initially puzzled by his decision, but now applaud him! Society needs more lawyers with a solid understanding of software technology.
CS major who doesn't want to code. Am I in the wrong major?
igrekel: Your first job doesn't mean it's what you'll always do.My first job was a mostly coding job (even tough it was really not "just" coding) but it quickly morphed into something else. If you are good and you are interested, there are many other things possible than just sitting at your desk 9 to 5. Nowadays I ver...
CS major who doesn't want to code. Am I in the wrong major?
maukdaddy: I was once at the same place you are with regard to CS, albeit at Virginia Tech (go Hokies!). I would suggest seriously considering an MIS program in your business school. I switched to Business Information Technology (VT's MIS program) after two full years of CS, and it was the best thing I've ever done. ...
CS major who doesn't want to code. Am I in the wrong major?
bengiuliano: I am exactly in the same position as you, just got my bachelor in CS - albeit in Europe (Switzerland), and don't want to code for a living, even if I enjoy it.In my opinion one solution would be IT or management consulting. You'll be travelling around, getting to know many people, etc... And I think it giv...
CS major who doesn't want to code. Am I in the wrong major?
prakash: Look at Product Manager and/or Sales Engineer openings. There are a few companies that hire people right out of school for such positions.
CS major who doesn't want to code. Am I in the wrong major?
pmorici: Depends, if you by "I don't want to code" you mean you suck at it so you're thinking of going into management then yes I'd say you are in the wrong major.Junior year is the point when most CS programs really start to get difficult if it were just about not wanting to code might you not have figure that out fre...
CS major who doesn't want to code. Am I in the wrong major?
nzmsv: Honestly, switching majors isn't that big of a deal. It is better if you figure this out now, rather than after you've worked in the industry for 5 years. Some people see it as a "failure". This is wrong. You are just figuring out what you like, and what you are best at.I'd imagine a lot of your credits would tr...
CS major who doesn't want to code. Am I in the wrong major?
sofal: I don't think the corporate-slave orientation is limited to CS students. If you're into entrepreneurship, you'll probably feel out of place in any technology-related major, especially if you only look for job prospects at campus job fairs.
CS major who doesn't want to code. Am I in the wrong major?
jhancock: Here's a few thoughts for you:1 - I know of no major whose job outside of college resembles what you study.2 - I went to Georgia Tech, '87-'92. Yep, a long time, as I was a co-op student and had several entrepreneurial jaunts along the way. I chose EE as a major as I specifically did not want to study CS si...
CS major who doesn't want to code. Am I in the wrong major?
edw519: Am I in the wrong major?Yes.You (and some others) may not like what I'm about to say, but you asked for it, so here goes...In all the years I've been in technology, it has typically taken me about 28 seconds to determine if another person was "fluent" more than one or two levels below the surface.Those that wer...
CS major who doesn't want to code. Am I in the wrong major?
nkohari: Yes, you are in the wrong major. If you're looking to be involved in the business aspect of a technology company, a computer science degree will not be very useful. I have a BS in computer science, and in my experience, the curriculum was often too theoretical even for people who become full-time programmers. ...
CS major who doesn't want to code. Am I in the wrong major?
CrLf: Well, I'm a CS major (or whatever you want to call to the european equivalent) and I don't code for a living.I'm a systems administrator, and while I like to program and do so fairly frequently (both for fun, and on the job), I just can't see myself as a programmer, at least in the near future.I find most "real-w...
CS major who doesn't want to code. Am I in the wrong major?
krobertson: Does your college have an MIS focus? When I was in college, you'd chose a few focus areas for some of your electives. In the Business dept, they had an MIS focus which included some of the entry level CS classes, software process type stuff, and then some management-type classes from the business dept. I...
CS major who doesn't want to code. Am I in the wrong major?
jwecker: Ask HN: Math major who doesn't want to write equations. Am I in the wrong major?
CS major who doesn't want to code. Am I in the wrong major?
Kliment: Being in a coding job is one thing, enjoying writing code and building things is another. I can fully understand not wanting to be the stereotypical code monkey who sits in a dark room and outputs code. So the real question is, do you dislike the subject matter or the imagined career. If the former, then you h...
CS major who doesn't want to code. Am I in the wrong major?
mindstab: I'd say no. I've been continually disappointed in the coding part of the university education. It is much more about theory than a technical degree. I'm a code monkey, all I want to do is write code, and learn to write better code.You on the other hand would be great for management, which I've seen lots of ...
CS major who doesn't want to code. Am I in the wrong major?
gaius: We can see you can't code from the <p> tags you've scattered everywhere...
CS major who doesn't want to code. Am I in the wrong major?
charlesju: No I don't think you are in the wrong major. I was in your same boat, for the majority of college I wanted to switch to being a political science major. But now I started my own company and I code everyday. The worst part, I love it, coding and all.So I think you have two options coming out of your major in ...
CS major who doesn't want to code. Am I in the wrong major?
rit: A few thoughts come to mind here for me.First ... So don't take a stereotypical coding job; whatever your definition of that may be. I've personally in general avoided big companies my whole career to avoid what I see as the stereotypical coding job - too many meetings, too much waterfall style development and wa...
CS major who doesn't want to code. Am I in the wrong major?
ErrantX: No. Despite what people are saying there are a bazillion such jobs for a smart, non-coder, person to grab hold of.Ultimately "the wrong major" comes down to the course content. CS courses can vary wildly - the one at my uni (I never was on it) was very business oriented for example. If your enjoying the course...
Will you be my Advisor?
Tawheed: You should convene your group of advisers at http://AskMyBrainTrust.com
Will you be my Advisor?
Tawheed: Also -- I'd be happy to help.
CS major who doesn't want to code. Am I in the wrong major?
DenisM: The most profitable ventures are always at a junction of two tings. In your case a junction of someone who can code on one hand and who can see the point of another coder and negotiate to the agreement on the other hand is very valuable in any large company. Product development in large companies always require...
CS major who doesn't want to code. Am I in the wrong major?
HeyLaughingBoy: No, you're not in the wrong major but you do need to look at fields outside just "programming."A smart girl I used to work with realized that she was more interested in the business than in coding & testing and left to become a Business Analyst. The job suits her personality much more than being a coder...
CS major who doesn't want to code. Am I in the wrong major?
crs: No, you are not in the wrong major. There are many career paths available to you. I work for Boeing, and we have a lot of people in systems engineering roles. They define requirements, perform integration, and generally do a lot buisness like tasks on the engineering side of the org chart. There is Quality Ass...
CS major who doesn't want to code. Am I in the wrong major?
caffeine: Your major doesn't really have much to do with your job. The CS you learn in school doesn't really make you a good programmer anyway...
Review our webapp - Apollo
saurabh: You solved my problem there. Just make sure it can be used to clients intuitively and you're on.
CS major who doesn't want to code. Am I in the wrong major?
kvs: If you're good at interacting with people and a computer science major you do have an edge over most computer science majors:-)Perhaps you can minor in business or other area and see whether that helps with your job prospects better. I think you're "selling yourself" wrong...
CS major who doesn't want to code. Am I in the wrong major?
mdragon: I think CS is too heavy for most programming jobs, much less for non-coding technology jobs. You'd probably be much better served having a business major or some sort of technology commercialization or even some sort of technical (or not ) writing, or psychology or math degree. CS is about reading papers othe...
How do you do your usability testing?
jrwoodruff: Just wanted to thank everyone for their input and add some info for posterity's sake;I stumbled across Silverback about 5 minutes ago and it's what I was looking for to help along testing. It simultaneously records a video of the user and a screencapture, so you can analyze where they're confused, happy, e...
CS major who doesn't want to code. Am I in the wrong major?
icco: I'm not sure if I want to say you are in the wrong major, but I think there is a current disconnect between what people learn in high school and what people learn in college.High-schools need to start informing students that what ever their major is in college, it doesn't necessarily affect what they will do out ...
CS major who doesn't want to code. Am I in the wrong major?
Elepsis: At some point around the third year of my CS degree at Georgia Tech I went through a similar realization (I wonder if it's something about the curriculum): I understood that while I was smart, competent, and able to get through the curriculum with good grades, I was never going to be a "rock star" programmer. ...
CS major who doesn't want to code. Am I in the wrong major?
gte910h: Howdy fellow GT CS person (although I graduated many moons ago)You have plenty with a capital P jobs available to you as a CS major with no love of code.However, the entry level position with someone in your degree will typically be, pretty much, coding. You don't know enough about anything else to even be mar...
easy noprocrast loophole
NathanKP: If you are that addicted already then you'll probably need to use something like this:http://visitsteve.com/work/selfcontrol/ - For Mac OS Xhttp://www1.k9webprotection.com/ - For Windows, designed to block porn but it can block any site you want.Have fun!
Review our webapp - Apollo
Vandy_Travis: You should work on your copy on the main page. It isn't clear exactly what the app does. You discuss what it is (a way to get comments from another group), but I had trouble trying to picture exactly how it works. As near I can tell, I work on a doc (image, whatever), then can share it with other peopl...
License Manager in Ruby/RoR
there: you'd need a code obfuscator that can turn it into an executable, otherwise the source code could just be modified to disable the licensing checks.http://www.rubyencoder.com/ is one such product, but i've never used it.
How important is it for a site to have its own custom search?
tjpick: it is important for a site to provide users, who are already there, an easy way to search. It complements navigation. Doesn't really matter if it's custom or backed by something like google.Some random standalone search specifically built against another site is not that useful, but is a sign that the built in ...
easy noprocrast loophole
revorad: An easier loophole is to go straight to http://news.ycombinator.com/logout. Then you can continue reading.If you're really struggling, seriously try working on a computer without an internet connection (See http://www.paulgraham.com/distraction.html).
Are there any on-demand Django deployment and management solutions?
cmelbye: Google App Engine is a scalable low-cost Platform as a Service run on Google's infrastructure. You get to use their toys (Datastore based on BigTable, large network of servers and datacenters, etc), but it will not "just work" with most Django/Python web applications. For example, you have to use their API to ...
Things you wish you'd learned about programming in college?
bricestacey: This will obviously vary depending on how much the school focusing on CS or CE, but I'd stress mastering the basics of several programming languages in different domains (e.g. C, Java, PHP, Python, Lisp). There is a lot to be taken from each of these, even if you think they suck on their own.I don't think ...
CS major who doesn't want to code. Am I in the wrong major?
roundsquare: Nah. I'm a CS major who just left his first job (which was a coding job) for something different and hope to go to law school soon. Half the people I work with are CS majors who decided to go into business.But being a CS major has helped. From being able to break down a problem and create a concrete sol...
Clojure as a first progamming language?
fp: I think Clojure is not a simple language. The reason is, that you have to learn about 1) Lisp, 2) Clojure's approach to concurrency (immutable data structures + reference types) and 3) the JVM. These are all fairly complex systems on their own. The combination of them is what makes Clojure interesting, and, in my o...
Clojure as a first progamming language?
mechanical_fish: I feel there’s a chance an experienced programmer has a certain connection with his/her "native" programming languageSure, you will tend know more about the language that you have worked with the most, which in turn tends to be the one you prefer. But that need have nothing to do with the language you ...
Clojure as a first progamming language?
JimmyL: If you want to learn a language from the perspective of getting something done (in the startup webapp sphere), go for Python/Django or Ruby/Rails - they both have mature, well-established communities with plenty of documentation and available libraries.Clojure seems quite cool, but it's a relatively new languag...
Not raising expectations of the customer is not a defeatist attitude?
charlesmarshall: The old axiom "Failing to plan is planning to fail" comes to mind.I wouldn't say sell yourself short but always be realistic. For example if its a deadline you want to give for a project will take 2 weeks, build in some space for running over (a % based on complicity and client) and give that.In your c...
Not raising expectations of the customer is not a defeatist attitude?
Kliment: The best thing you can do is satisfy all user expectations, including the ones they do not know they have. People love being positively surprised. So the proposition is this: By the model of your partner, you create expectations for users, and then satisfy them. This essentially means people get excited about ...
Not raising expectations of the customer is not a defeatist attitude?
stonemetal: Expectations should be just right. Low expectations is lost business. If I don't think You can solve my problem or not solve it well, why do business with you? Elevated expectations are lost repeat business. If you promise steak but deliver hamburger, why would I come back?
Review My (Common Lisp backed) Startup
arnorhs: Looks nice, but goddamn... These things are always US-only...!! And I'm not talking about the language.If some startup would actually make anything, literally anything that was global, I'm sure it would get a segment of a market that nobody's utilizing.edit: And a Javascript alertbox letting you know you're go...
Review My (Common Lisp backed) Startup
smanek: Hey guys, I've been working on Postabon for the last few months (full time for approximately the last 2). We've been beta testing in NYC for the last few weeks - and feel we have enough content there to launch now. Any feedback (especially criticism) you have would be greatly appreciated.The basic idea is that ...
Review My (Common Lisp backed) Startup
mahmud: Just signed up, smanek :-)Looks well polished. Try to let business owners upload their own offers, that will make it easier for you; instead of hunting for bargains or waiting for users, you can just buy a mailing database and do a blast to those who care (or scrape the contact emails from Google Local, like I ...