~petersanchez

Los Angeles, CA

https://www.petersanchez.com

LA, CA USA - Managua, Nicaragua

~petersanchez/blog-discussion

~petersanchez/public-inbox

View more

Recent activity

Re: [PATCH links] Support specifying organization when using the Pinboard API bridge. 21 hours ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   ec9ef1c..0b765b2  master -> master

[PATCH links] Support specifying organization when using the Pinboard API bridge. 21 hours ago

From Peter Sanchez to ~netlandish/links-dev

Now you can now do the following to specify a specific organization:

- Use the "use_org" query string parameter in your API calls
- Give the organization slug as the username value when using Basic
  Authorization.

See documention for more details.

References: https://todo.code.netlandish.com/~netlandish/links/76
Changelog-added: Ability to specify organization in Pinboard API bridge
  calls
---
 pinboard/middleware.go  |   2 +
 pinboard/responses.go   |  40 +++++++----
[message trimmed]

links 0.5.0 6 days ago

From Peter Sanchez to ~netlandish/links-dev

Hi all,

I am happy to announce the release of links 0.5.0.

https://git.code.netlandish.com/~netlandish/links/refs/0.5.0

Release highlights:

# Added

- Ability to hide spammers or seo farms from the recent or popular pages.
- Pinboard API to GraphQL bridge

# Fixed

links 0.5.0 6 days ago

From Peter Sanchez to ~netlandish/links-discuss

Hi all,

I am happy to announce the release of links 0.5.0.

https://git.code.netlandish.com/~netlandish/links/refs/0.5.0

Release highlights:

# Added

- Ability to hide spammers or seo farms from the recent or popular pages.
- Pinboard API to GraphQL bridge

# Fixed

Re: [PATCH links] Created Pinboard API to GraphQL bridge. Now you can use any existing Pinboard clients with LinkTaco. 6 days ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   943c898..43ae7d2  master -> master

[PATCH links] Created Pinboard API to GraphQL bridge. Now you can use any existing Pinboard clients with LinkTaco. 6 days ago

From Peter Sanchez to ~netlandish/links-dev

Implements: https://todo.code.netlandish.com/~netlandish/links/76
Changelog-added: Pinboard API to GraphQL bridge
---
 CLAUDE.md               |  116 ++++
 cmd/links/main.go       |    6 +-
 pinboard/input.go       |   47 ++
 pinboard/middleware.go  |   45 ++
 pinboard/responses.go   |  122 ++++
 pinboard/routes.go      |  737 ++++++++++++++++++++++++
 pinboard/routes_test.go | 1168 +++++++++++++++++++++++++++++++++++++++
 pinboard/utils.go       |  145 +++++
 pinboard/utils_test.go  |  112 ++++
 9 files changed, 2496 insertions(+), 2 deletions(-)
 create mode 100644 CLAUDE.md
[message trimmed]

Re: [PATCH links] Update gobwebs-graphql to support max in memory buffer size limitations for graphql file uploads. Update config.example.ini to show the option. 7 days ago

From Peter Sanchez to ~netlandish/links-dev

Applied.

To git@git.code.netlandish.com:~netlandish/links
   af4a4e4..943c898  master -> master

[PATCH links] Update gobwebs-graphql to support max in memory buffer size limitations for graphql file uploads. Update config.example.ini to show the option. 7 days ago

From Peter Sanchez to ~netlandish/links-dev

---
 config.example.ini | 1 +
 go.mod             | 2 +-
 go.sum             | 4 ++--
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/config.example.ini b/config.example.ini
index c26190a..98a7864 100644
--- a/config.example.ini
+++ b/config.example.ini
@@ -119,6 +119,7 @@ entropy=Entropy value
[graphql]
max-complexity=250
max-upload-size=10737418
[message trimmed]

[PATCH links] Fixes issues with autocomplete wonkyness. You can now use arrow keys to navigate dropdown and also use Enter or Tab to select a drop down item once it's been navigated to. 8 days ago

From Peter Sanchez to ~netlandish/links-dev

Fixes: https://todo.code.netlandish.com/~netlandish/links/85
Changelog-fixed: tag autocomplete issues with selection and navigation
  using the keyboard.
---
 static/css/style.css        |   7 ++
 static/js/advancedsearch.js | 223 +++++++++++++++++++++++++++++++-----
 static/js/autocomplete.js   | 170 +++++++++++++++++++++++----
 templates/link_list.html    |   2 +-
 4 files changed, 353 insertions(+), 49 deletions(-)

diff --git a/static/css/style.css b/static/css/style.css
index 36ba467..bd7d408 100644
--- a/static/css/style.css
+++ b/static/css/style.css
[message trimmed]