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
| function replyAtMention($action) { | |
| $action->inlineScript('(function ($) { | |
| SN.U.NoticeReply = function () {}; | |
| $("#content .notice_reply").die("click") | |
| .live("click", function (e) { | |
| e.preventDefault(); | |
| var $notice = $(this).closest("li.notice"), | |
| replyNick = "@" + $notice.find(".vcard.author a.url").attr("title"); |
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
| #!/bin/bash | |
| # gnufm script | |
| # NOTE: Change these: | |
| fmuser=gnufm_username # Your gnu-fm username | |
| fmhost=gnufm_host # Your gnu-fm host (ex: libre.fm) | |
| snuser=sn_username # Your SN username | |
| snpass=sn_password # Your SN password | |
| snhost=sn_host # Your SN host (ex: identi.ca) |
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
| <?php | |
| /** | |
| * Quick and dirty script to import StatusNet group aliases to your local instance. | |
| * Could definitely use some improvements, but it seems to works okay for my needs. | |
| * | |
| * HOWTO: | |
| * Change the four variables below to match your configurations and run the script. | |
| */ |