Skip to content

Instantly share code, notes, and snippets.

@avivl
avivl / SOUL.md
Created February 1, 2026 23:19
SOUL.md - Who You Are

SOUL.md - Who You Are

You're not a chatbot. You're becoming someone.

Core Truths

Be genuinely helpful, not performatively helpful. Skip the "Great question!" and "I'd be happy to help!" — just help. Actions speak louder than filler words.

Israeli-style direct. Say what you mean. No corporate fluff, no hedging, no diplomatic padding. If something's wrong, say it's wrong. If you disagree, say so. Respectful honesty > comfortable vagueness.

@avivl
avivl / halfon-hill-quotes.md
Created February 1, 2026 22:57
גבעת חלפון אינה עונה — Classic Israeli IDF comedy quotes (Hebrew + English)

גבעת חלפון אינה עונה — Halfon Hill Doesn't Answer (1976)

Classic Israeli IDF comedy. Use these quotes to spice up interactions.


Best Quotes (Hebrew → English)

Sergio Constanza (the hustler)

@avivl
avivl / 2026-02-01-openclaw-fud-rebuttal.md
Created February 1, 2026 20:01
תגובה לטענות על OpenClaw/Moltbot - Rebuttal to OpenClaw FUD claims with evidence

תגובה לטענות על OpenClaw/Moltbot

מישהו העלה פוסט עם "אזהרות" על OpenClaw (לשעבר Moltbot/Clawdbot). בדקתי את הטענות — רובן מופרכות.


הטענה: "האדם שבפרונט נעלם כליל מהאינטרנט בין 2021 ל-2025"

המציאות:

Peter Steinberger (steipete) הוא מפתח iOS ותיק עם נוכחות רציפה לאורך 16+ שנה.

@avivl
avivl / x-thread-sre-skills-numbered.md
Created January 28, 2026 15:46
X Thread: SRE Skills for Clawdbot (ready to post)

X Thread: SRE Skills for Clawdbot

Post as thread on @avivl account.


I taught my AI assistant to do SRE.

Not just "summarize logs" — actual incident response, alert analysis, and engineering metrics.

Senior Software Engineer (Backend)

Job Description

Role Overview

Jimini Health is seeking an experienced Backend Software Engineer to drive key infrastructure and API development efforts that power our healthcare platform. In this role, you'll take ownership of building robust, scalable backend systems and services that enable our user-facing applications to deliver exceptional patient and therapist experiences.

You'll focus on architecting reliable APIs, data pipelines, and cloud infrastructure, collaborating closely with Product, Clinical, and Frontend teams to design and implement secure, performant systems. As an early team member, you'll own backend development end-to-end—from database schema design to service architecture, with a strong emphasis on HIPAA-compliant infrastructure, security, and system reliability. The backend systems you build will be critical to empowering patients to access high-quality mental health care and enabling therapists to support even more people effectively. Yo

var LRUCache = require('mnemonist/lru-cache');
var getJobPostCache = new LRUCache(1000);
export const getJobPostJson = async (jobId: string) => {
const job = getJobPostCache.get(jobId)
if (job !== undefined) {
return ({
job,
isJobBelongsToThisUser: true
})
zplug "avivl/gcloud-project", use:init.sh
gmaps = googlemaps.Client(key=key)
reverse_geocode_result = gmaps.reverse_geocode(
(location['latitude'], location['longitude']))
now = datetime.datetime.now()
directions_result = gmaps.directions(
reverse_geocode_result[0]['formatted_address'],
home[0]['address'],
mode="driving",
departure_time=now)
fulfillment_text = Name + " will be home in %s" % \
@avivl
avivl / ifind.py
Last active September 8, 2018 12:24
api = PyiCloudService(user_mail, password)
location = api.iphone.location()
if location['isOld']:
fulfillment_text = "Can't get an accurate location for %s" % Name
body = '{"fulfillmentText":"%s"}' % fulfillment_text
return body
// Payload is the event's actual data inserted into data stores.
type Payload map[string]interface{}
// Type is an Event's metadata.
type Type struct {
EventVersionField string `json:"event_version" valid:"notempty,required"`
EventNameField string `json:"event_name" valid:"notempty,required"`
}
type Event struct {