Gifts?

Apr 25, 2015 at 4:48pm
closed account (2LzbRXSz)
Hey, I'm not trying to get out of buying people presents, but just out of curiosity... What is the "programmer's equivalent" to drawing someone a present for their birthday/a holiday? I always see artists drawing eachother stuff, but what about programmers? Can you really program something as a gift for someone?

I mean, I guess it's possible, but what would you even program for them? An application that works like an e-card?

Same thing can be said about anyone - what do mathematicians do when it comes to handcrafted gifts and using their skills? Biologists? Botanists must have it easy - just breed flowers for someone, right? Haha!
Apr 25, 2015 at 5:06pm
1
2
3
4
5
6
7
8
#include <iostream>

int main()
{
    std::cout << "Happy birthday, <INSERT NAME>!" << std::endl;

    return 0;
}
Apr 25, 2015 at 5:08pm
closed account (2LzbRXSz)
You are a life saver.
Apr 25, 2015 at 7:07pm
None of us remember birthdays, gifts are out of the question. xD
Apr 25, 2015 at 7:18pm
closed account (2LzbRXSz)
Very true. I'm only good with birthdays that have a pattern to them.
Apr 25, 2015 at 8:36pm
closed account (NUj6URfi)
As long as the birthday isn't on Dec 25 or Oct 31!!
Apr 26, 2015 at 12:27pm
closed account (2LzbRXSz)
I know people born on holidays. I'm glad I'm not one of those people.

If it weren't for the constant pattern in my birthday, I probably would not remember my own.
Last edited on Apr 26, 2015 at 12:28pm
Apr 26, 2015 at 1:14pm
closed account (3hM2Nwbp)
Solution: keep an emergency lottery ticket in your wallet. Then you're always prepared to show that you care. Works for me.
Apr 26, 2015 at 1:34pm
closed account (2LzbRXSz)
That is one of the most brilliant things I've ever heard.

Are lottery tickets dated though?
Apr 26, 2015 at 1:44pm
closed account (3hM2Nwbp)
They expire 2 years from the date of purchase (in the free commonwealth of Pennsylvania, US at least).
Apr 26, 2015 at 1:58pm
closed account (2LzbRXSz)
Gotcha. Thank you!

That's a simple enough gift, and it's great to get for people who you don't really know well enough to have a present in mind for.
Apr 26, 2015 at 2:05pm
closed account (2LzbRXSz)
Wait, what if you give them a winning ticket.
Apr 26, 2015 at 3:30pm
Then they will be taking you out for dinner hopefully.

Oh and keep in mind depending on where you live you either have to be 18 or 21 for a lottery ticket. For example Wisconsin is 18 and Arizona (where I live) it is 21.
Last edited on Apr 26, 2015 at 3:31pm
Apr 26, 2015 at 5:54pm
closed account (2LzbRXSz)
Better be a damn good dinner...

I live in Pennsylvania, so I'm pretty sure the law is 18.

Edit: Googled it - the law is 18.
Last edited on Apr 26, 2015 at 5:55pm
Apr 29, 2015 at 12:06pm
closed account (2LzbRXSz)
I've just come up with the perfect Valentine's Day card...

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>

using namespace std;

int main()
{
    char userinput;
    while (true)
    {
        cout << "Will you be my Valentine? (Y/N)" << endl;
        cin >> userinput;
        cin.ignore();
        userinput = toupper(userinput);
        
        if (userinput != 'N')
        {
            break;
        }
    }

    return 0;
    
}
Last edited on Apr 29, 2015 at 6:21pm
Topic archived. No new replies allowed.