Valkertown Blog

I used to write about electronics…

Valkertown Blog header image 5

Entries Tagged as 'laconica'

Brainbird’s cleanup maid for laconica

August 20th, 2009 Comments

Well this is a pretty small script written in python to break realtionships in identi.ca, brainbird.co.cc or any other laconi.ca instance by blocking/unblocking users that have been inactive a number of months at discretion of the user.
USAGE:

./maid.py https://instance/api username months [break/ask]

First argument is the laconica instance api url, ie http://identi.ca/api
Your username on that [...]

Tags:   · · ·

Brainbird current features

August 12th, 2009 Comments

Well Brainbird is my own laconica instance where I hack around the code from time to time,
I have added few modifications to the current 0.8.x branch of laconica, you can see them here.
While right now they are exclusive from brainbird there’s nothing stopping anyone to grab my changes and use them as they see fit, [...]

Tags:   · · ·

Small updates for denting mode

February 17th, 2009 Comments

I have just added a small modification to denting-mode:

(defun denting-update-status-from-region (beg end)

  (interactive "r")

  (if (> (- end beg) 140) (setq end (+ beg 140)))

  (if (< (- end beg) -140) (setq beg (+ end 140)))

  (denting-update-status-if-not-blank (buffer-substring beg end)))

This small function will try to post to laconica the region, if the
region is over 140 [...]

Tags:   · · ·