Felix's Avatar

Felix

@not-felix.bsky.social

software developer (mostly elixir) working on: ivyreader.com

54 Followers  |  157 Following  |  10 Posts  |  Joined: 01.06.2025  |  2.1694

Latest posts by not-felix.bsky.social on Bluesky

Bluesky is a reformist model of social media.

03.11.2025 20:34 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

me: the AT website refresh doesn't have to look amazing
team: yeah but it be at least as cool as the blacksky website
me: shit

23.10.2025 23:42 β€” πŸ‘ 198    πŸ” 9    πŸ’¬ 5    πŸ“Œ 1

if a tree falls down in the forest, but AWS Dynamodb is unreachable due to us-east-1 DNS issues, does it make a sound?

21.10.2025 17:27 β€” πŸ‘ 23    πŸ” 5    πŸ’¬ 0    πŸ“Œ 0
Post image

Status pages everywhere show green, because Statuspage.io is ALSO down: customers cannot log in to update their status page and indicate the outage their eng teams know about!!

So a fail for Statuspage to depend on an AWS region... or DynamoDB (that seems to depend one AWS region?)

20.10.2025 09:07 β€” πŸ‘ 84    πŸ” 12    πŸ’¬ 4    πŸ“Œ 5
Post image

πŸ’œ @elixir-lang.org v1.19 is the first release with OpenChain certification β€” bringing more transparency and trust to the BEAM ecosystem.

Big thanks to @maennchen.dev and our sponsor Herrmann Ultraschall for making this milestone possible! πŸ‘

πŸ”— elixir-lang.org/blog/2025/02...

#Elixilang

16.10.2025 18:51 β€” πŸ‘ 22    πŸ” 9    πŸ’¬ 0    πŸ“Œ 0
screenshot of a news article banner from abc news: yogurt makes mice slimmer, sexier - abc news

screenshot of a news article banner from abc news: yogurt makes mice slimmer, sexier - abc news

they’re making the mice sexier

28.09.2025 14:04 β€” πŸ‘ 1198    πŸ” 215    πŸ’¬ 55    πŸ“Œ 71

using a self-hosted email server:

"I hope this email finds you,
..."

10.10.2025 10:59 β€” πŸ‘ 240    πŸ” 30    πŸ’¬ 8    πŸ“Œ 0
Video thumbnail

have a look at my standalone #ATProto #PDS server that I made using #elixir and #phoenix

This is part of a project I've been working on for a few days.
github.com/AetherLib/ae...

Also pushed a better abstraction of the common libs used in #atproto to hex.pm hex.pm/packages/aet...

FYI: Very WIP

07.10.2025 23:40 β€” πŸ‘ 9    πŸ” 4    πŸ’¬ 0    πŸ“Œ 1

Is there an overview of the most used atproto lexicons?

06.10.2025 22:36 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Video thumbnail

please enjoy the payday rap scene from community which makes me cry laughing every time

27.09.2025 19:02 β€” πŸ‘ 438    πŸ” 87    πŸ’¬ 28    πŸ“Œ 18

πŸ’« excuse: mount jetstream as a userspace character device on linux.

src: tangled.org/@oppi.li/exc...

here's a breakdown of atproto collection usage in a 5s live tail of the network using only coreutils and jq:

21.09.2025 08:47 β€” πŸ‘ 63    πŸ” 12    πŸ’¬ 1    πŸ“Œ 0
Video thumbnail
21.09.2025 04:21 β€” πŸ‘ 3036    πŸ” 952    πŸ’¬ 61    πŸ“Œ 47

Just a draft, but a very exciting draft to have www.ietf.org/archive/id/d...

15.09.2025 10:36 β€” πŸ‘ 222    πŸ” 45    πŸ’¬ 11    πŸ“Œ 5

If I had more spare time right now I'd build an "overlay appview", that fires queries at two or more appviews and merges their responses.

That way you can have a small appview that only indexes your friends, without being isolated from the rest of the network.

13.09.2025 17:18 β€” πŸ‘ 104    πŸ” 10    πŸ’¬ 9    πŸ“Œ 3

the more app development I do, the more I love web dev

08.09.2025 10:34 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

why in god’s name does my washing machine have a YouTube app

07.09.2025 05:39 β€” πŸ‘ 181    πŸ” 14    πŸ’¬ 10    πŸ“Œ 13

I want erlang, okay? I admit it

03.09.2025 21:20 β€” πŸ‘ 90    πŸ” 7    πŸ’¬ 9    πŸ“Œ 1
Video thumbnail

Did you know your MacBook has a sensor that knows the exact angle of the screen hinge?

It’s not exposed as a public API, but I figured out a way to read it and make it sound like an old wooden door.

06.09.2025 20:44 β€” πŸ‘ 7651    πŸ” 1968    πŸ’¬ 114    πŸ“Œ 170
defmodule Claude do
  def sample_function do
    # You can call this from bash using the command
    #
    # $ mix run -e "IO.inspect(Claude.sample_function())"
    #
    # It should output
    #     {"Yeah", :stuff}
    {"Yeah", :stuff}
  end

defmodule Claude do def sample_function do # You can call this from bash using the command # # $ mix run -e "IO.inspect(Claude.sample_function())" # # It should output # {"Yeah", :stuff} {"Yeah", :stuff} end

<!-- usage-rules-start -->
<!-- usage-rules-header -->
# Usage Rules

## Running own sample code

The file `lib/claude.ex` contains a module where an agentic system like Claude 
can store own debug functions. 
You can add own functions, like `def foo, do: "Hello"`, and within the shell, you can call

```bash
mix run -e "IO.inspect(Claude.foo())"
```

which should give you the result on the console.

<!-- usage-rules-start --> <!-- usage-rules-header --> # Usage Rules ## Running own sample code The file `lib/claude.ex` contains a module where an agentic system like Claude can store own debug functions. You can add own functions, like `def foo, do: "Hello"`, and within the shell, you can call ```bash mix run -e "IO.inspect(Claude.foo())" ``` which should give you the result on the console.

Giving Claude a little module to party in is working nicely, also codified in usage_rules.

04.09.2025 11:43 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
Wherever you get your Podcasts Language in a decentralized future.

This one was quick and a bit loose but I think there's something there.

23.08.2025 21:05 β€” πŸ‘ 84    πŸ” 25    πŸ’¬ 7    πŸ“Œ 4

when it comes to cross-protocol flame wars, the real winner is bridgy

25.08.2025 00:21 β€” πŸ‘ 131    πŸ” 5    πŸ’¬ 3    πŸ“Œ 2

i want MITπŸ€ͺ, which is basically MIT with emojis

24.08.2025 13:14 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
A Google user review rating the Air Horn app 4 out of 5 stars reads: 

"One suggestion I'd like to see is a "lock out" option. I enjoy this app but friends have give non verbal feedback as well as verbal feedback that I'm horning too frequently. My solution is a timed lockout. The beauty of a timed lockout is the impact of horning after the lockout. Let the user set the lock out time."

A Google user review rating the Air Horn app 4 out of 5 stars reads: "One suggestion I'd like to see is a "lock out" option. I enjoy this app but friends have give non verbal feedback as well as verbal feedback that I'm horning too frequently. My solution is a timed lockout. The beauty of a timed lockout is the impact of horning after the lockout. Let the user set the lock out time."

A review of an app called "air horn"

23.08.2025 16:33 β€” πŸ‘ 839    πŸ” 151    πŸ’¬ 7    πŸ“Œ 13

isn't that nix?

20.08.2025 22:52 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

A principle that I think needs to get more widely circulated is that if someone is selling you a way to make money, it means the method isn't making enough money for them.

17.08.2025 19:27 β€” πŸ‘ 313    πŸ” 80    πŸ’¬ 8    πŸ“Œ 7
Bluesky Video Service A video streaming service for the Bluesky app

omg πŸ’€πŸ’€πŸ’€ video.bsky.app

17.08.2025 15:14 β€” πŸ‘ 10    πŸ” 3    πŸ’¬ 0    πŸ“Œ 0
this post, printed out

this post, printed out

16.08.2025 22:31 β€” πŸ‘ 336    πŸ” 49    πŸ’¬ 13    πŸ“Œ 5
a pixel art painting by sid of a kaiju styled Clippy the paperclip destroying a city with flaming breath

a pixel art painting by sid of a kaiju styled Clippy the paperclip destroying a city with flaming breath

β€œIt looks like you are trying to stop me”

#originalart #pixelart #art

16.08.2025 23:05 β€” πŸ‘ 3239    πŸ” 833    πŸ’¬ 35    πŸ“Œ 22

(about to ruin a salad) let's add onions

15.08.2025 17:29 β€” πŸ‘ 245    πŸ” 6    πŸ’¬ 40    πŸ“Œ 4
Preview
Report: 250 Million Americans Still Need Guests On Their Podcasts This Week WASHINGTONβ€”According to a report out today, 250 million Americans are still scrambling to find someone to appear on their podcasts this week, as the guests they would normally book either just appeare...

Report: 250 Million Americans Still Need Guests On Their Podcasts This Week

06.08.2025 15:02 β€” πŸ‘ 2873    πŸ” 319    πŸ’¬ 29    πŸ“Œ 43

@not-felix is following 20 prominent accounts