Index: konamicode.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/konamicode/konamicode.js,v
retrieving revision 1.1.2.10.2.2
diff -u -r1.1.2.10.2.2 konamicode.js
--- konamicode.js	26 Jan 2011 18:25:09 -0000	1.1.2.10.2.2
+++ konamicode.js	3 Mar 2011 17:03:07 -0000
@@ -161,4 +161,15 @@
  */
 Drupal.konamicode_astroids = function() {
   jQuery.getScript('http://erkie.github.com/asteroids.min.js');
-}
+};
+
+/**
+ * The Place Kitten Konami Code action.
+ */
+Drupal.konamicode_placekitten = function() {
+  jQuery('img').each(function() {
+    var w = jQuery(this).width();
+    var h = jQuery(this).height();
+    jQuery(this).attr('src', 'http://placekitten.com/' + w + '/' + h);
+  });
+};
Index: konamicode.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/konamicode/konamicode.module,v
retrieving revision 1.1.2.9.2.3
diff -u -r1.1.2.9.2.3 konamicode.module
--- konamicode.module	26 Jan 2011 18:25:09 -0000	1.1.2.9.2.3
+++ konamicode.module	3 Mar 2011 17:03:07 -0000
@@ -98,10 +98,21 @@
     'imageattack' => t('Image Attack'),
     'redirect' => t('Redirect'),
     'alert' => t('Alert'),
+
+    // http://paulirish.com/2009/flip-text-upside-down-jquery-plugin/
     'fliptext' => t('Flip Text'),
+
+    // http://www.cornify.com
     'cornify' => t('Cornify'),
+
+    // http://wonder-tonic.com/geocitiesizer/
     'geocitiesizer' => t('Geocities-izer'),
+
+    // http://erkie.github.com
     'astroids' => t('Astroids'),
+
+    // https://github.com/lsemel/jquery-placekitten
+    'placekitten' => t('Placekitten'),
   );
 }
 
