summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules <jules@asdf.us>2015-07-24 11:00:14 -0400
committerJules <jules@asdf.us>2015-07-24 11:00:14 -0400
commitf1d7257029468ff093bfec89e783bfa37b421cc0 (patch)
treea654eac7774c7ac50236a8754cc89121e3d7be3e
parent563fc38f05854ae2ef24499f89017b993084a7cb (diff)
ignore joins parts quits nicks
-rw-r--r--irssi.txt6
-rw-r--r--js/photo.js2
2 files changed, 7 insertions, 1 deletions
diff --git a/irssi.txt b/irssi.txt
index 637d60c..365bc12 100644
--- a/irssi.txt
+++ b/irssi.txt
@@ -133,6 +133,12 @@ Le Jollo IRC is home to a fine bot named PLINKO who you should make friends with
To get started, type: /query plinko register
+Plinko lives in #sally and also #pffffffff where you can ask him to draw things.
+
+He prefers an uncluttered canvas, so in irssi you might want to do:
+
+/ignore -channels #pffffffff * JOINS PARTS QUITS NICKS
+
IRSSI SCRIPTING
===============
diff --git a/js/photo.js b/js/photo.js
index 566a50d..ae4558e 100644
--- a/js/photo.js
+++ b/js/photo.js
@@ -154,7 +154,7 @@ var Photo = (function(){
pixel[1] = data[t+1]
pixel[2] = data[t+2]
pixel[3] = data[t+3]
- // if (Photo.denoise) { denoise_pixel(data, w, h, x, y, pixel, Photo.denoise) }
+ if (Photo.denoise) { denoise_pixel(data, w, h, i, j, pixel, Photo.denoise) }
row[j] = closest_to(pixel)
}
}