This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/twittering-mode.el b/twittering-mode.el | |
index 3a34794..143599c 100644 | |
--- a/twittering-mode.el | |
+++ b/twittering-mode.el | |
@@ -428,6 +428,7 @@ StatusNet Service.") | |
(mentions . "statuses/mentions") | |
(public . "statuses/public_timeline") | |
(replies . "statuses/replies") | |
+ (favorites . "favorites") | |
(retweeted_by_me . "statuses/retweeted_by_me") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/r2/r2/templates/base.xml b/r2/r2/templates/base.xml | |
index 8422b2d..11766a4 100644 | |
--- a/r2/r2/templates/base.xml | |
+++ b/r2/r2/templates/base.xml | |
@@ -25,11 +25,13 @@ | |
%> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" | |
- xmlns:media="http://search.yahoo.com/mrss"> | |
+ xmlns:media="http://search.yahoo.com/mrss" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun dump-status-to-buffer () | |
(save-excursion | |
(set-buffer (get-buffer-create "some-buffer")) | |
(loop for status in twittering-new-tweets-statuses | |
do (insert (format "%s\n\n" status))))) | |
(add-hook 'twittering-new-tweets-hook 'dump-status-to-buffer) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Rakefile b/Rakefile | |
index 07c45e7..7a6f08e 100644 | |
--- a/Rakefile | |
+++ b/Rakefile | |
@@ -2,8 +2,9 @@ require 'rubygems' | |
require 'rake' | |
require 'rake/testtask' | |
require 'rake/gempackagetask' | |
+require 'require_all' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio"; | |
"fmt"; | |
"net"; | |
"os"; | |
) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio"; | |
"fmt"; | |
"net"; | |
"os"; | |
) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I haven't followed cameras that much. Generic advice (from an | |
Olympus user): | |
- Olympus makes great lenses. Thus, they are very expensive. There are | |
few/no cheap lenses that will work with Olympus DSLR's. It's a major | |
flaw. If this situation remains, I'll never buy an Olympus DSLR. | |
- In camera image stabilization (Olympus + Pentax) vs in lens | |
stabilization (Canon + Nikon). I don't have either. The latter is | |
"better", but then you have to get a lens that supports it, which I |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: settings.py | |
=================================================================== | |
--- settings.py (revision 117) | |
+++ settings.py (working copy) | |
@@ -372,8 +372,8 @@ | |
# Things to measure to taste | |
MAX_COMMENT_LENGTH = 2000 | |
+MAX_POST_LENGTH = 140 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: js/core.js | |
=================================================================== | |
--- js/core.js (revision 103) | |
+++ js/core.js (working copy) | |
@@ -86,7 +86,7 @@ | |
count: function () { | |
var value = counter.el.value; | |
var count = value.length; | |
- chars_left = 140 - count; | |
+ chars_left = 1024 - count; |