RSSAmplifier

Blog

Félix's Blog

{{ posts }}...

blog.xfe.liRSS feed ↗5 posts

Latest posts

Trust the first pass

Timebox: 30 minutes I see roughly four different modes of expression in my day-to-day: Extractive , where I verbalize what is “on my mind,” with activities like focusing or thinking by writing Emphatic , I focus on what the other thinks or feels instead of what I feel, the mode I’m in when I edit text Imitative , where I’m sharing what is “on my mind” without thinking too much about it, like in…

Involve communications as early as possible.

What is communication The role of communication is to advance the strategic goals of the organization using offerings. It does this in two ways: Reputation management with stakeholders Attracting, serving, and retaining stakeholders. What does this look like? Take policy-makers. To inform their decisions – a strategic goal –, you need to: Be a credible source of information (reputation management)…

Cloudflare's Email Protection provides dubious value

I always assumed that their email protection relied on their Bot Detection, but no, it just encodes emails. It replaces emails with a data-cfemail attribute that contains a trivial encoding of the email (see below) def decode_cloudflare_email ( encoded : str ) -> str : """Decode Cloudflare-protected email from data-cfemail attribute.""" try : r = int ( encoded [: 2 ], 16 ) return "" . join ( chr (…

Using Claude Code programmatically

There are some one-off tasks that can't be easily generalized to a proper agent but that are still so tedious that I want to automate them. Creating an agent with Claude Code SDK or Microsoft Agent Framework is nice but takes time. It turns out Claude Code by itself is a solid agent and I don't have to pay anything beyond $200/mo. claude -p \ # print mode, non-interactive --output-format json \…

An introduction to double-entry bookkeeping

As a stakeholder in an organization, we want to answer two questions: What does our entity own and owe at this moment? The answer describes the entity’s position . We measure this by looking at the entity’s assets, liabilities, and equity. Over this period, how did the entity perform? The answer describes the entity’s performance over an interval. We measure this by looking at how value has…