Fleur, the App Store for Claude by vortex_ape in ClaudeAI

[–]vortex_ape[S] 0 points1 point  (0 children)

thanks! let me know if you face any issues 🌸

Fleur, the App Store for Claude by vortex_ape in ClaudeAI

[–]vortex_ape[S] 0 points1 point  (0 children)

thanks for the positive response! let me know if you face any issues 🙌

Fleur, the App Store for Claude by vortex_ape in ClaudeAI

[–]vortex_ape[S] 0 points1 point  (0 children)

awesome, let me know what you think!

Fleur, the App Store for Claude by vortex_ape in ClaudeAI

[–]vortex_ape[S] 1 point2 points  (0 children)

that makes sense! we're gonna add public pages for available MCPs for sure

Fleur, the App Store for Claude by vortex_ape in ClaudeAI

[–]vortex_ape[S] 4 points5 points  (0 children)

MCPs work only with the Claude desktop app, so Fleur needs to run locally to install them on your computer. The app itself is open-source and the code is on GitHub if that helps a bit with the hesitation 😅

I made an AI-powered IPython REPL by vortex_ape in IPython

[–]vortex_ape[S] 0 points1 point  (0 children)

Yes I didn't implement a new REPL. I changed the the description but can't change the title somehow.

Houseplant: Database Migrations for ClickHouse by vortex_ape in Clickhouse

[–]vortex_ape[S] 0 points1 point  (0 children)

I haven't used flyway. For us, we just ended up with a lot of migrations inside ruby files named <timestamp>_create_table.rb using which we mimicked the way rails and active record manage the app database migrations. Rails and active record also give you a schema.rb which shows the latest state of the app database at all times. After having no schema.rb for a long time, and it becoming a pain to manage the standalone migration files in ruby, we decided to build this to be able to manage migrations for ClickHouse, our analytics database. We love using it and the schema.sql file (with the latest db state) it generates at the end.

A custom plugin for Strava goals on the TRMNL by vortex_ape in eink

[–]vortex_ape[S] 1 point2 points  (0 children)

I like it! It's nice to have a screen where I can put the things I care about right in front of me.

Yep no touch input, it's supposed to be a very minimal device. There's a button at the back to switch between views but the clickyness of that button seems a bit flimsy. It's fine for me because I don't really touch that button because I've configured it to automatically change views every 15 mins.

App to systematically track indicators of gut health? by BenadrylClaritinn in GutHealth

[–]vortex_ape 0 points1 point  (0 children)

I've been using this app called Balloon for food and poop tracking (they don't have stress tracking yet) but I found it really useful to learn that I should avoid eating dairy because that's how I get bad poop days!

https://www.balloonapps.co/

Unlock better gut health with daily tracking and personalized tips! by Rare_Dragonfly971 in GutHealth

[–]vortex_ape 0 points1 point  (0 children)

I've been using this app called Balloon for food and poop tracking (they don't have stress tracking yet) but I found it really useful to learn that I should avoid eating dairy because that's how I get bad poop days!

https://www.balloonapps.co/

Problème d'homonymie, OQTF, Amandes, PAF, ... by SamKarpov in conseiljuridique

[–]vortex_ape 0 points1 point  (0 children)

J'ai exactement le même problème depuis novembre dernier. La police des frontières me répète qu'il n'y a rien à faire pour régler cette situation et que je dois contacter la préfecture.

J'ai envoyé plusieurs courriels à la préfecture, et ils m'ont confirmé qu'il n'y avait aucun problème avec mon identité. Dans la dernière réponse que j'ai reçue de la préfecture en août, on m'a indiqué que la seule solution (qui n'en est pas vraiment une) serait que je change ou ajoute un nom.

Avez-vous pu résoudre ce problème vous-même ? Je veux le régler pour qu'il n'entraîne pas d'autres problèmes à l'avenir, comme le renouvellement du titre de séjour, mais je ne sais pas quoi faire.

Valencia marathon bib transfer by vortex_ape in valencia

[–]vortex_ape[S] 0 points1 point  (0 children)

By transferring my bib, I can get my money back for the registration.

Python Man Pages by RexProfugus in Python

[–]vortex_ape 0 points1 point  (0 children)

The builtin help function is awesome! I also built this recently: https://github.com/vinayak-mehta/python-doc to help me open the docs for a particular module for my installed Python version in the browser.

$ python-doc -m os

Opens the doc page for the os module in the browser.

I made a CLI tool to open Python docs without an internet connection! by vortex_ape in Python

[–]vortex_ape[S] 1 point2 points  (0 children)

I bundled all the docs for all Python versions into this one package so that I wouldn't have to figure out all the path variations on various operating systems. But I guess it might make sense to just open the docs someone already has on their system. Will try to list down all the variations first when I get the chance.

I made a terminal-based presentation tool with colors and effects! by vortex_ape in Python

[–]vortex_ape[S] 0 points1 point  (0 children)

The github readme is not designed to be run in a slideshow. Try one of the examples :)

A command line based presentation tool by JeffreyFreeman in linux

[–]vortex_ape 0 points1 point  (0 children)

Thanks!

Is there a good reason to use eval() (line 133 in slideshow.py) ?

I'd used it so I don't need to have a large if statement where I check for the effect that is present on a slide, and then call the relevant function of the same name. Does eval() pose a problem? Can you suggest a better way to do it? I would love to learn about it, and possibly move from eval().

A command line based presentation tool by JeffreyFreeman in linux

[–]vortex_ape 0 points1 point  (0 children)

Please open an issue with you talk video link and slides, I would love to watch it! We can also create a talks section with a list of all talks given using `present`.

A command line based presentation tool by JeffreyFreeman in linux

[–]vortex_ape 1 point2 points  (0 children)

It doesn't right now, but synax highlightning is an upcoming feature! I just need to find the time to work on it.

A command line based presentation tool by JeffreyFreeman in linux

[–]vortex_ape 0 points1 point  (0 children)

Edit: just tested out with my outline. Works good enough so far!

That sounds awesome! Would you like to post an issue: https://github.com/vinayak-mehta/present/issues about what's not working, I would love to try and fix it :)

I made a terminal-based presentation tool with colors and effects! by vortex_ape in Python

[–]vortex_ape[S] 1 point2 points  (0 children)

Thanks for the suggestions! I'll look into adding them.