I hereby claim:
- I am atomicules on github.
- I am atomicules (https://keybase.io/atomicules) on keybase.
- I have a public key ASBni4NmxizXOetsZ-hSo_BsUcy1AgtbNdlY7YZT_8_9aAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| $ Patch for daylight savings time | |
| --- src/recur.cpp.orig | |
| +++ src/recur.cpp | |
| @@ -215,6 +215,7 @@ ISO8601d getNextRecurrence (ISO8601d& current, std::string& period) | |
| int m = current.month (); | |
| int d = current.day (); | |
| int y = current.year (); | |
| + ISO8601d recurrence_date; | |
| // Some periods are difficult, because they can be vague. |
| <?xml version="1.0"?> | |
| <!-- Atom to RSS 1.0 Transformation, written by Rene Puls ([email protected]) --> | |
| <!-- Snownews filter command for this extension: "xsltproc /path/to/atom2rss -" --> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:atom="http://www.w3.org/2005/Atom" | |
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
| $NetBSD$ | |
| --- config.h.orig 2009-09-17 06:44:28.000000000 +0000 | |
| +++ config.h | |
| @@ -61,6 +61,7 @@ struct newsitem { | |
| struct newsdata { | |
| struct feed *parent; | |
| int readstatus; /* 0: unread, 1: read */ | |
| + int prevreadstatus; /* 0: unread, 1: read */ | |
| char *title; |
| #!/usr/bin/perl -s | |
| ######################################################################### | |
| # | |
| # TTYtter v2.1 (c)2007-2012 cameron kaiser (and contributors). | |
| # all rights reserved. | |
| # http://www.floodgap.com/software/ttytter/ | |
| # | |
| # distributed under the floodgap free software license | |
| # http://www.floodgap.com/software/ffsl/ | |
| # |
| diff --git a/sic.c b/sic.c | |
| index d93c2ec..bc09eee 100644 | |
| --- a/sic.c | |
| +++ b/sic.c | |
| @@ -118,7 +118,7 @@ parsesrv(char *cmd) { | |
| par = skip(cmd, ' '); | |
| txt = skip(par, ':'); | |
| trim(par); | |
| - if(!strcmp("PONG", cmd)) | |
| + if(!strcmp("PONG", cmd) || !strcmp("QUIT", cmd) || !strcmp("JOIN", cmd)) |
| -- pinboard username and password | |
| property pbuser : "" | |
| property pbpass : "" | |
| --Download bookmarks via curl to desktop (because can use shortcut when selecting file for import via UI scripting) | |
| do shell script ("cd ~/Desktop; curl https://" & pbuser & ":" & pbpass & "@pinboard.in/export/ -o pinboard.html") | |
| --import bookmarks via UI scripting | |
| tell application "System Events" |
| --- | |
| interface.c | 8 +++----- | |
| 1 file changed, 3 insertions(+), 5 deletions(-) | |
| diff --git a/interface.c b/interface.c | |
| index 6b28a51..78ca3c2 100644 | |
| --- a/interface.c | |
| +++ b/interface.c | |
| @@ -289,7 +289,7 @@ void UIDisplayItem (struct newsitem * current_item, struct feed * current_feed, |
| diff -crB stfl-0.22-orig/Makefile stfl-0.22/Makefile | |
| *** stfl-0.22-orig/Makefile 2012-08-27 10:41:35.000000000 +0100 | |
| --- stfl-0.22/Makefile 2012-08-27 10:59:33.000000000 +0100 | |
| *************** | |
| *** 20,33 **** | |
| include Makefile.cfg | |
| - export CC = gcc -pthread | |
| export CFLAGS += -I. -Wall -Os -ggdb -D_GNU_SOURCE -fPIC |