Gifts?

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!
1
2
3
4
5
6
7
8
#include <iostream>

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

    return 0;
}
closed account (2LzbRXSz)
You are a life saver.
None of us remember birthdays, gifts are out of the question. xD
closed account (2LzbRXSz)
Very true. I'm only good with birthdays that have a pattern to them.
closed account (NUj6URfi)
As long as the birthday isn't on Dec 25 or Oct 31!!
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
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.
closed account (2LzbRXSz)
That is one of the most brilliant things I've ever heard.

Are lottery tickets dated though?
closed account (3hM2Nwbp)
They expire 2 years from the date of purchase (in the free commonwealth of Pennsylvania, US at least).
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.
closed account (2LzbRXSz)
Wait, what if you give them a winning ticket.
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
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
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
Topic archived. No new replies allowed.