~sen

Recent activity

[PATCH] fix postgres/StoreNetwork positional arguments 7 months ago

From sentriz to ~emersion/soju-dev

---
hi! when updating a network i was getting this error:

    [728] ERROR:  inconsistent types deduced for parameter $14 at character 290
    [728] DETAIL:  bytea versus boolean
    [728] STATEMENT:  
        UPDATE "Network"
        SET name = $2, addr = $3, nick = $4, username = $5, realname = $6, certfp = $7, pass = $8,
                connect_commands = $9, sasl_mechanism = $10, sasl_plain_username = $11,
                sasl_plain_password = $12, sasl_external_cert = $13, sasl_external_key = $14,
                auto_away = $14, enabled = $15
        WHERE id = $1

it looks like in the postgres StoreNetwork query we have arg $14 listed twice.
[message trimmed]

[PATCH] Store and recall last 5 messages per buffer with arrow keys 1 year, 7 months ago

From sentriz to ~emersion/public-inbox

Hi! This patch let's you use the arrow keys up/down to recall the last
5 messages sent on a per-buffer basis. The lines are kept in a new localStorage
key. (I can also reuse one of the existing localStorage keys if you like)

A side-effect of this change (and actually lead to simpler implementation)
is that unsent message drafts are stored as well. Eg. you can start typing
a message a message to a user, then switch to a different buffer or even
reload gamja, then go back to the buffer and sent the message.

(this required that a `key` prop is passed to <Composer /> so that we get a
unique render per buffer, giving it a chance to fetch from localStorage again)

Thanks!
---
[message trimmed]

[PATCH] Hello 1 year, 7 months ago

From sentriz to ~sircmpwn/email-test-drive

some extra
some extra
some extra
---
 billy-bob | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 billy-bob

diff --git a/billy-bob b/billy-bob
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
@@ -0,0 +1 @@
[message trimmed]

[PATCH] Add Dockerfile 3 years ago

From sentriz to ~migadu/alps-devel

example docker-compose:

```yml
alps:
  build: alps
  expose:
  - 80
  restart: unless-stopped
  command:
    - -theme
    - alps
    - imaps://imap.fastmail.com:993
    - smtps://smtp.fastmail.com:465
```
[message trimmed]