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

Problem : Compiler Design - Limit the loops
Rajni is a newbie to the programming and while learning the programming language he came to know the following rules:
???• Each program must start with '{' and end with '}'.
???• Each progr

Asked by periyasamy over 9 years ago

Ask the professor for help.

how do i write a simple algorithm that will check win for tic tac toe diagonals?

Asked by John over 9 years ago

The details depend on how you've represented your tic-tac-toe grid internally. But in general, observe that there are only two possible diagonal wins: upper-left to lower-right, or upper-right to lower-left. That's just two possibilities you have to check.

What exactly are elements in Javascript?? The web seems to be void of a definition on them. Or maybe the answer is too obvious?

Asked by Bos over 9 years ago

If we're talking about a Web context, the elements Javascript is concerned with are HTML elements: http://en.wikipedia.org/wiki/HTML_element

Those elements make up the browser's internal representation of a page, and mostly they correspond to an HTML tag on the page and whatever stuff is inside the tag. For example:

<p>This "p" tag indicates a paragraph of text.</p>

By manipulating the elements, Javascript can change what's displayed on the page. That ability is what made possible, over the past 10 years or so, all the fancy special effects that became standard on Web pages.

Hello, is it possible to write a Windows application (.exe) that will check something on a website (check if a string is on a website page source), and if the string isn't found then run a shortcut from my desktop or an .exe. Thank you!

Asked by Sam over 9 years ago

Well, it's been maybe 20 years since I wrote a program for Windows. But that said, although I can't tell you exactly how to do it, that should be eminently possible.

Men and women are running races. We need to know what was the lowest men's score and the highest womens score. Data are given so mens score alternate with those of women. First men's then womens. The program stops when a time of 0 is readfromman scr?

Asked by Lexxx over 9 years ago

Please see the note above. DO NOT COPY AND PASTE YOUR HOMEWORK QUESTIONS HERE.

Let's say I want to write code that does this: an input into the Google Search field causes the text to fly over the earth, via Google Earth, to the location of the top search result. What size programming team is needed? Or just sell idea to Google?

Asked by Bry almost 9 years ago

You can't sell the idea to Google.

To implement it takes just one programmer--if they're the right one.

How do I send my visual basic project to a friend via an email attachment?

Asked by Nick about 9 years ago

I don't know exactly how Visual Basic encourages you to organize projects, but if everything is under one directory, there are programs built specifically to take a directory tree and pack it neatly into one file so that you can easily send around that one file. I hear that 7Zip (http://www.7-zip.org/) is pretty good.