vote up 199 vote down star
113

I'm getting married on April 4th, 2009. My future wife has agreed to let me have actual code on top of the wedding cake. Woot!

There isn't very much room, four, maybe five lines (it's only a 6" cake because the main cake is a bunch of cupcakes).

Any language is okay, Java, JavaScript, XML.

A lot of the people attending the wedding have coded before, so they'll "get it".

My name is 'Robert' and her name is 'Tiffany', some sort of creative use of those names would be cool.

What code would you have on your wedding cake?

More code cakes (1) (2) (3) (4) (5) (6)

flag
7  
Am I the only curious one to see an actual picture of the cake? – Ólafur Waage Apr 17 at 12:35
4  
Congratulations by the way! – m_oLogin Apr 20 at 15:07
3  
@Sembiance: Wish you a happy life together! – Mehrdad Afshari Apr 27 at 13:18
12  
The USB cupcakes are a nice touch. – mmyers May 9 at 5:02
91  
Good you didn't put until(death = true); – ya23 Jul 13 at 0:50
show 7 more comments

79 Answers

vote up 1 vote down
public class Past
{
  public virtual bool freeNow()
  {return true;}
}

public class Present: Past
{
  public override bool freeNow()
  { return false;}
}
link|flag
vote up 1 vote down
std::map<std::string, std::string> soulMate;
soulMate["Robert"] = "Tiffany";
link|flag
vote up -2 vote down

Take some gold from her family, melt it with some gold from yours. Make rings for both of you. Melts her heart too. Worked well for me. :)

link|flag
1  
Yes. Is an alternative suggestion a difficult concept? Or courtesy? – Jay Mar 30 at 14:08
show 1 more comment
vote up 7 vote down
wife++;
while (stillMarried)
{
    bankBalance--;
}
link|flag
vote up 8 vote down

GAME OVER

:-)

link|flag
vote up 1 vote down

fork while fork

link|flag
show 1 more comment
vote up -2 vote down

no COBOL code? how about some brainfuck? :D

i'd go with a simple java method

public static int howLongIWillLoveYou() {
   int time = 0;    
   while (true) {
     time++;
   }
   return time;
}

cheesy, yes, but it can also be your homage to this site. ^_^

congratulations btw

link|flag
vote up 3 vote down

Not quite code, but might appeal to a wider audience:

From: This Day
To: Have, Hold, Love, Cherish
For: Better, Worse, Richer, Poorer
In: Sickness, Health
Date: 2009-04-09

Subject: Robert & Tiffany
Congratulations!

Attachment:
Content-Type: "application/octet-stream"; name="Celebrant-v1.0"

-- Generated by cake.php
link|flag
vote up 61 vote down

I'd simply have On Error Resume Next

link|flag
show 1 more comment
vote up 2 vote down
while (True)
  try:
    love+=2
  except:
    love+=2
  finally:
    love+=2
link|flag
show 3 more comments
vote up 0 vote down

mmm..

<!DOCTYPE HTML PUBLIC "-//RobertAndTiffany//DTD HTML 9.01//EN" "http://www.NoW3.org/TR/html9/ThereAreNotStandartsForOurLove.dtd" >

or simply

GiveEternalLove ( document.getElementById('TiffanyHeart'), document.getElementById('robert') )

or better:

assert(TiffanyLove && RobertLove, false);
/* ASSERTION FAILED */
link|flag
vote up 0 vote down

from RobertLovesTiffany import *

link|flag
vote up -3 vote down

I wouldn't.

link|flag
show 1 more comment
vote up 14 vote down

girlfriend attacks you:
  save -vs- marriage...roll:2
You are now marred.

link|flag
vote up -2 vote down
if(Man.Value = Man.Value + Woman) 
{
    throw new FormatException("What was I thinking?");
    exit sub;

}
link|flag
show 1 more comment
vote up 0 vote down

import life
life.do(man, woman)

link|flag
vote up 1 vote down

class Married extends Dating{

while(death != true){

super.Love()

super.Cherish()

super.Have_and_Hold()

}

I know, I know, bad pseudocode, but it gets the point across (there's no reason those would need to be implemented in Dating but it looked odd otherwise)

link|flag
vote up 18 vote down

Y = λf·(λx·f (x x)) (λx·f (x x))

link|flag
1  
dude thats not even possible – theman_on_vista Apr 7 at 21:18
show 3 more comments
vote up 52 vote down

while( true ) love++;

link|flag
7  
This is all good until you increment too high and either get an error, or if you're working with really low levels and are using a signed number, wrap around to negatives. – Dinah Jul 13 at 16:14
show 1 more comment
vote up 64 vote down

A nice little marital crontab:

# DO NOT EDIT THIS FILE - until death
# (/marriage/crontab.XXX installed on Sat Apr  4 11:26:10 2009)
# (Cron version V5.0 -- $Id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie Exp $)
0 21 * * * unzip; strip; touch; grep; finger; mount; fsck; more; yes; umount; sleep
link|flag
1  
+1 and hasen j: how else would you know where to finger and mount? – Spoike Mar 27 at 9:14
32  
I prefer the full joke: whois; trace; date; yacc; gawk; ssh; unzip; strip; find; touch; finger; head; uptime; whereis; latex; mount; join; nice; man; top; split; fsck; gasp; more; yes; exit; umount; sleep; dump – Laplie Mar 28 at 4:34
5  
wow, anyone who finds this one funny or original clearly hasn't been around unix very long... this one is as old as the hills (and about as amusing as such) – Nik Reiman Mar 28 at 14:35
1  
haha +1 for fsck! I think about that every time I check my filesystem if you know what I mean. – thomasrutter Apr 6 at 3:29
show 11 more comments
vote up 2 vote down

void* temp; printf("%d", *temp);

link|flag
vote up 1 vote down

love = true

link|flag
vote up 4 vote down

I speak from experience. Good marriage like good code design employs separation of concerns and proper modularity. I therefore suggest a AOP framework like spring:

<beans default-autowire="byName">
    <bean id="Robert" class="husband" singleton="false">
    	<constructor-arg name="wife">
    		<ref bean="Tiffany" />
    	</constructor-arg>
    </bean>
    <bean id="Tiffany" class="wife" singleton="false">
    	<constructor-arg name="husband">
    		<ref bean="Robert" />
    	</constructor-arg>
    </bean>
</beans>
link|flag
show 2 more comments
vote up 100 vote down
public class Girlfriend {
   public virtual bool sex() { return true; }
}

public class Wife : Girlfriend {
   public override bool sex() { return false; }
}
link|flag
3  
Probably not the best code for the wedding cake, but nice anyway – MartinStettner Mar 29 at 7:35
15  
4 offensive flags, I didn't know we had so many female readers :) – gbjbaanb Mar 29 at 21:53
1  
I hardly think this post is offensive. Who has it offended? The sensibilities of the Victorians? – Mark Ingram Mar 30 at 13:35
2  
why "virtual" in the base class? – thomasrutter Apr 6 at 3:24
11  
Found my answer. It is for situations where an instance of the derived cast is cast as the base class, and it means that the override should take precedence. Wow, I am learning about programming even from this post, who'd have thought ?! – thomasrutter Apr 6 at 3:26
show 5 more comments
vote up 1 vote down

while(!(death=together))

or

use Marriage;
our $Marriage = Marriage->new(Wife => 'Tiffany', Husband => 'Robert');
do {
   $Marriage;
} until ($death);

link|flag
vote up 8 vote down
// Java-ish pseudocode
public Happiness marriage(husband, wife) {
  while (true) {
    husband.love(wife);
    wife.love(husband);
    if (bedrooms.size() > family.size() && savings > 0) {
       newChild = fork();
       family.add(newChild);
       savings = 0;
    }
  }
}
link|flag
show 1 more comment
vote up 0 vote down
Do

 love();

 honor();

 cherish();

Loop Until (tiffany.age >= 49 or tiffany.trustfund < 0 or smokingHotOfficeBabe.hookups > 0 )

if (smokingHotOfficeBabe.hookups > 0) return TotalAssets / 2


Sorry, could not resist.

link|flag
vote up 11 vote down

abort();

Only joking of course ;)

link|flag
1  
Too pessimistic – DL Redden Jul 13 at 15:47
show 2 more comments
vote up 4 vote down

Some in Java...

class Wife extends Girlfriend {}

class Husband extends  Boyfriend {
    private member;
    def get(self, girl) {
        if (isintance(girl, Wife)
            return this.member;
        return null;
    }
}
link|flag
2  
HAH private member. – Ólafur Waage Mar 26 at 21:02
show 2 more comments
vote up 10 vote down
const bool devotion = true;
link|flag
4  
Shouldn't it be volatile bool? =] – strager Mar 27 at 3:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.