Programmer

Programmer

ManWithComputer

The Internet, IP

Male, 37

I've worked at multiple Internet startups of different shapes, sizes and ambitions. Now I'm the CTO (Chief Technical Officer) of another small company with big dreams. I look nothing like the picture above.

If you copy and paste your homework question in here, I will answer with something that will, at best, get you an F on your project, and at worst, will get you kicked out of school. You have been warned.

SubscribeGet emails when new questions are answered. Ask Me Anything!Show Bio +

Share:

Ask me anything!

Submit Your Question

76 Questions

Share:

Last Answer on September 07, 2015

Best Rated

can you please tell me what adding ?fd=1 to the back of a url does? I was trying to use a URL for a G+ page that would enable users to leave a review from desktop OR mobile the only way to do that is by placing ?fd=1 at the end of the desktop URL

Asked by stephanie about 11 years ago

It depends entirely on the site in question. Try asking Google.

Hello,
I am a web designer looking for inspiration for a website design (for any purpose) or creating a system that would be also created the aid of the web programming languages.

Asked by Sara about 11 years ago

Check out Foundation or Twitter Bootstrap. These are web design libraries that may give you the leg up you seem to be looking for.

Hello I started to learn prog 9 months ago, but I can't find the right language for my project, I want to create a felix clone

http://myfelix.software.informer.com/2.1/

in other words, an interactive program that runs WITHOUT a window.

Asked by Bobijoe almost 11 years ago

So, I can't say for sure, but I think Flash might be a good bet. http://en.wikipedia.org/wiki/Adobe_Flash

Is it difficult to learn how to set up a program to scrape data from a website? and how long would it take an experienced programmer?

Asked by DTSMT about 11 years ago

Compared to other programming tasks, it's not so hard--it's more a matter of gluing together big parts that other people have already made.

What gets tricky with screen scraping is dealing with pages that almost-but-don't-quite fit the pattern. Setting up a basic scraper is pretty easy, dealing with the exceptions to the rules is what gets you.

Design a calculator that evaluates an infix expressions entered by the user.
- You must use Stacks.
- The calculator accepts the 4 binary operators “+”, “-”, “*”, “/”
- Convert the infix to a postfix expression and display it.
- Evaluate the expr

Asked by kma about 11 years ago

Gladly. My freelance rate is $150 an hour, with a 40-hour minimum. If you're interested please post your e-mail address, name, mailing address, and the name of the company you work for/school you attend.

I am learning C++ and want to know why is it not a good idea to redefined the predefined identifiers cout and fin

Asked by Leo almost 11 years ago

Basically, because other people exist. Other people are either going to extend your code someday, or you'll be using code that other people wrote. And if you redefine "cout" or "fin," things will get as confused as if you redefined a common natural-language word like "dog" or "red."

what degree would you reccomend for a person to get into website programming and app development, computer science or computer programming, does either have benefits over the other?

Asked by spartan616 over 10 years ago

This is actually a very perceptive question. In short, if your heart lies specifically in website programming, a programming degree is probably better.

Computer science, properly speaking, is the branch of mathematics that deals with the theoretical underpinnings of computation. Computer programming is a practical, not so much a theoretical, discipline: how do you get a computer to do what you want to do? You could say that computer science is to computer programming as physics is to mechanical engineering. As a mechanical engineer you'd better know some physics, but your interest is mostly going to be in practical applications.

One secret of web programming is that, from a theoretical point of view, it's really simple. A browser somewhere makes a request to your site; based on that, you get some data out of a database; and then you wrap the bits of information you got in some HTML and send it back. What makes it trickier is being able to do that tens or hundreds of thousands of times per second, 24 hours a day, on all sorts of different browsers. But the algorithmic aspects are largely well understood and already taken care of.