Advanced Search
Search Results
215 total results found
XTEInk4
The XTEInk4 is a budget e-ink ebook reader that is smaller and thinner than a modern smartphone. Crosspoint Reader On Github This is a community-provided open source reader firmware for the XTEink4 that can be flashed via the web flasher.
Cognitive Behavioural Therapy
CBT Techniques - Worry Time Reference Material Get Self Help Website https://www.getselfhelp.co.uk/
Ravpower Filehub RP-WD009
Manufacturer's Manual Installing OpenWRT You can install OpenWRT on Ravpower Filehub - instructions can be found on the OpenWRT Wiki here and archived here
Worry Time
Worry Time and Worry TreeThese are my personal notes from talking to a CBT professional. I am not a trained CBT professional so please do not blindly use these notes without speaking to someone who is.In a nutshell worry time and worry tree techniques allow us...
OpenCode
OpenCode is a tool for AI driven development. It allows you to set up a web-ui or a TUI and talk to an agent. You can also review outputs and directly run bash commands. OpenCode with LiteLLM LiteLLM provides a way to connect your environment to multiple dif...
Evaluating AGENTS.md: Are Repository-Level Context Files Helpful for Coding Agents?
Paper: 2602.11988 Authors: Thibaud Gloaguen, Niels Mündler, Mark Müller, Veselin Raychev, Martin Vechev Published: February 2026 Summary This paper evaluates whether repository-level context files (like ) actually help coding agents perform better on real-worl...
ZSH and Unraid
This set of instructions is 95% based on this reddit thread (see below for an archived version if the link doesn't work) Install un-get plugin (using plugin manager, copy and paste the raw link to the .plg from github) Install zsh: un-get update && un-get...
Node Python and Corporate Firewalls (ZScaler)
Node Custom CA Certificate Assuming the corporate CA certificate is already installed on your system, you can use export NODE_OPTIONS="--use-system-ca" to ensure that node applications use the corporate cert instead. Python Reference See ZScaler trust...
Samsung Chromebook XE303C12
First generation chromebook from Samsung in 2012. Cannot boot from the USB 3.0 port (blue) - USB boot is only available from the 2.0 port. Press CTRL + U to boot from USB or CTRL + D to boot from internal disk low beep indicates that the machine cannot...
Gemma 4
Gemma 4 Released March 31, 2026 by Google DeepMind. Apache 2.0 licensed. Multimodal (text + image, audio on small models). Model Sizes Model Type Effective Params Context Modalities E2B Dense 2.3B (5.1B w/ embeddings) 128K Text, Image, Audio E4B Dense...
Overview & Quick Start
Go Proton API Overview github.com/ProtonMail/go-proton-api is the official Go library implementing a client for (a subset of) the Proton REST API. It covers Mail, Contacts, Calendar, Drive Shares, and core account operations. Built on resty/v2 for HTTP communi...
Mail & Messages
Mail & Messages Complete mail operations: fetching messages (metadata + full bodies), labeling, marking read/unread/forwarded, deleting, creating/updating/sending drafts, importing messages, building RFC822 MIME messages, and encrypting/decrypting with PGP. Fe...
Contacts
Contacts CRUD operations for contacts and contact emails via /contacts/v4. Operations Get Contacts // Single contact by ID contact, err := c.GetContact(ctx, contactID) // Count contacts count, err := c.CountContacts(ctx) // Paginated listing contacts, err :=...
Calendar
Calendar Calendar and calendar event retrieval via /calendar/v1. Includes key management for encrypted calendar data. Operations Calendars // List all calendars calendars, err := c.GetCalendars(ctx) // Get a single calendar cal, err := c.GetCalendar(ctx, cale...
Labels & Addresses
Labels Label (category/folder) management via /core/v4/labels. Operations // Fetch labels filtered by type(s) labels, err := c.GetLabels(ctx, proton.LabelLabel, proton.LabelFolder) // Find a specific label by ID label, err := c.GetLabel(ctx, labelID, proton.L...
Attachments & Drive Shares
Attachments Attachment upload and download via /mail/v4/attachments. Upload attachment, err := c.UploadAttachment(ctx, addrKR, proton.CreateAttachmentReq{ MessageID: "message-id", Filename: "document.pdf", MIMEType: "application/pdf", Disp...
Real-time Events & User Account
Real-time Events Event polling and streaming for real-time notifications via /core/v4/events. Event Streaming // Get the latest event ID fromEventID, err := c.GetLatestEventID(context.Background()) // Create a new event streamer for event := range c.NewEventS...
Authentication & Sessions
Authentication & Sessions The library handles the full authentication lifecycle: SRP-based login, 2FA/FIDO2, token refresh, session management, and user creation. Login Methods SRP Login (Username/Password) Full Secure Remote Password login flow -- zero-knowle...
Configuring Custom Models: Vision & Parallel Tool Calls
Overview This page documents configuration patterns for using custom models (e.g. Qwen, custom fine-tunes) with LiteLLM as a proxy and OpenCode as the agentic frontend. When using non-standard models, both LiteLLM and OpenCode require explicit configuration to...
Generic Packages in CI/CD
Forgejo (and Gitea) provide a generic package registry that allows you to publish arbitrary files from CI/CD pipelines — ideal for distributing compiled binaries, configuration files, or any static assets. Authentication Forgejo requires Basic authentication f...