Senior Software Architect

Joined February 2008
Photos and videos
I recently launched aip 🚀 CLI project management built for 🤖. Create projects/tasks, track progress, enforce structure. It has been evolved by my own 🤖 based on usage logs. PRs welcome, Let your 🤖 run `aip usage quickstart` and see what it thinks! github.com/flesler/ai-projec…
1
1
67
@NousResearch @Teknium it's been running on my Hermes agent, a nightly cron looks at all terminal calls (aip or not) and suggests improvements and/or new commands. It's been working well! Can use: aip help skill --mode hermes > ~/.hermes/skills/some_toolset/SKILL.md
1
1
61
If you want to see Satoshi AMA, which uses this data and ChatGPT to answer questions using #SatoshiNakamoto’s quotes, here it is flesler.github.io/satoshi-am…

121
Verifying myself: I am flesler on Keybase.io. rUqiY0wPd9F9gHNrfdZnH7wYheiNVwYhzAVr / keybase.io/flesler/sigs/rUqi…

28 Aug 2019
Just ran into git-awards, quite a neat idea! If you are a developer or interested in general, you can check your ranking in there and see something like this: git-awards.com/users/flesler

2
11 Sep 2015
Interesting article about React Native medium.com/ios-os-x-developm…

1
Really wanted to control Netflix with my phone, so I made it. browser-remote.herokuapp.com. It also supports Spotify and YouTube, easy to add more

19 Dec 2014
Found out about libscore, testing it on jquery.scrollTo, pretty satisfied with the results libscore.com/#$.fn.scrollTo

19 Eponymous Laws Of Software Development haacked.com/archive/2007/07/… surprised I've never seen it before, it's hilarious

10 Oct 2014
Ready to kill some noobs tomorrow javascriptbattle.com/

For a project, i've hacked and reported: - A bug in jQuery - A bug in Node - A bug in node-postgres
1
isNaN('') === false; FML
Problem solved. function fixNumber(n) { return Math.floor((n 0.000001) * 10000) / 10000; }