• Home
  • Popular Downloads
  • Contact Us
  • Submit

Softpile

Free Downloads

Main Navigation
  • Home
  • Windows
  • Mac OS X
  • Business
  • Desktop
  • Development
  • Education
  • Games
  • Internet
  • Multimedia
  • Utilities
Home » Linux » Twitter from emacs

Twitter from emacs

April 3, 2008
Twitter from emacs is a script which lets you send messages to your Twitter buddies directly from emacs.
Version:
License: GPL
Operating System: Linux
Homepage: tapsellferrier.hapispace.com
Developed by: Tapsell-Ferrier Limited
Twitter from emacs is a script which lets you send messages to your Twitter buddies directly from emacs.

Source:

;; Copyright (C) 2007 by Tapsell-Ferrier Limited

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301 USA

(require 'json)

(defvar twitter-usernamepassword-history nil)

(defun twitter (msg usernamepassword &optional imagename)
(interactive
(if current-prefix-arg
(append (twitter-ask)
(list (read-file-name "imagename: " "~/twitter/")))
(twitter-ask)))

;; Set the image (maybe)
(if imagename
(let ((resize-mini-windows nil))
(shell-command-to-string (concat "curl -L -s "
(format "-u %s " usernamepassword)
(format "-F "user[profile_image]=@%s" " (expand-file-name imagename))
"http://twitter.com/account/picture"))))
;; Send the entry
(let ((resize-mini-windows nil)
(twitter-return-value
(shell-command-to-string (concat (format "curl -s -u %s " usernamepassword)
(format "-d "status=%s" " msg)
"http://twitter.com/statuses/update.json"))))
(let ((stats (json-read-from-string twitter-return-value)))
(message "%s" stats)
(display-message-or-buffer (format "Created at: %s" (cdr (assoc 'created_at stats)))))))

(defun twitter-ask ()
(list
(read-from-minibuffer "status: ")
(read-from-minibuffer "username:password: "
(car twitter-usernamepassword-history)
nil nil
'twitter-usernamepassword-history)))
;; End
chat emacs micro-blogging service social networking twitter twitter client
Free Download 100% Secure
0
  • Share on:

Twitter from emacs User Reviews

Sponsored

Categories

  • Linux

Related Downloads

Internet Relay Jabber
Internet Relay Jabber (or IRJ) is a Jabber client for IRC.
Pyhoo
Pyhoo is a Python script that converts Yahoo IM logs in .dat files into plain ...
Eggdrop Jabber Bot
The Eggdrop Jabber Bot bridges your Eggdrop IRCbot to the Jabber instant ...
Pwytter
Pwytter is a standalone Twitter GUI client.
GG Transport
GG Transport is a gateway between Jabber/XMPP and Gadu-Gadu.
Copyright © 1999-2017 Softpile Free Downloads
  • Contact Us
  • Submit
  • Privacy Policy
  • Disclaimer
  • Terms of Use