Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Sure! https://github.com/snoonan77/boss.py -- Mac specific though easily tweaked if you have a working TTS command line tool floating around.


sort by: page size:

I do something like this with a script called "boss.py'.

It regex matches time patterns from a dict and yells out the value by calling the mac 'say' command. I have it configured to yell at me to focus every 5 minutes and to lock me into a pomodoro-like work cycle. I run it on days I can't seem to get going.


unfortunately not on python 2.4, which is the version we have on our production servers (2 yr old Linux)

Looks nice.

Maybe some kind of GUI would be better, as a way to ease typing commands.

Something like Pythonista or Lisping on iOS.


Unfortunately where this typically comes up is at work where I'm stuck on Windows, but I'll check out your python script!

I've been teaching myself python on the side in order to automate parts of my job so it would be neat to see it used here.


I do! The one here is BBEdit which you can extend by writing - ready for this? - command line programs. It didn’t come with a built-in JavaScript formatted, so I wrote a shell script that runs Prettier on its input, and told BBEdit to run that script when I hit F1. Voila. JavaScript formatting. It’s also incredibly fast and responsive.

If I can’t get it working to write Python the way I want, I’m going back to Emacs. It’s not a “native” Mac app, but doesn’t fall into the uncanny valley the way things like VSCode do.


I keep telling myself I'm going to make a command line tool to do just this kind of thing and upload it to pypi. One day.

Anything similar to this in python? My brother is a new programmer working on a python project and wants to be building a UI and I don't really want to point him to the cocoa scripting bridge as the solution.

How would you do this on macOS with just the built-in Python or Ruby?

Awesome! I've wanted some better command line tools for python for a while now. I'll certainly kick the tires. Any plans to make tab-completion a bit smoother than it is by hand w/ readline?

I'll try that.

I use python because is easy to make a script cross-platform and because python have "batteries included". I think it would be interesting to have a tool like this that depends only on python.


I don't see why not. You'd probably just change this code:

    (with-local-quit
      (call-process "wizardcoder-python-34b-v1.0.Q5_K_M.llamafile"
                    nil (list (current-buffer) nil) t
                    "--prompt-cache" cash
                    "--prompt-cache-all"
                    "--silent-prompt"
                    "--temp" "0"
                    "-c" "1024"
                    "-ngl" "35"
                    "-r" "```"
                    "-r" "\n}"
                    "-f" hist))
To be something like this instead:

    (with-local-quit
      (call-process "ssh" hist (list (current-buffer) nil) t
                    "hostname"
                    "wizardcoder-python-34b-v1.0.Q5_K_M.llamafile"
                    "--prompt-cache" cash
                    "--prompt-cache-all"
                    "--silent-prompt"
                    "--temp" "0"
                    "-c" "1024"
                    "-ngl" "35"
                    "-r" "```"
                    "-r" "\n}"
                    "-f" "/dev/stdin"))
I'd also change `cash` to replace '/' with '_' and prefix it with "/tmp/" so remote collective caching just works.

OT

Is there something like this for Python? I know Curses module exists, but this seems more full featured.


Nice idea, I like it. I have no use for Python functions however, and the startup time of the interpreter will likely get in the way since I need a tool I can invoke many times in scripts as well.

Will try it for sure though, thank you for the link.


Very neat. I have written custom Ruby scripts for this kind of thing in the past. There's also an `sh` library for Python that makes it easier to call external commands inline, although it has some issues in non-trivial cases. Thanks for sharing!

Yeah. That's the hack I use, but it makes it a bit no pythonic.

If you're not, you're going to endlessly frustrate yourself when this doesn't do exactly what you need it to.

I guess I'd be more interested if the tool generated python code or something, and then I can manually edit it, or one of my friends could send it to me so I can edit it. Don't get me wrong if this idea worked in practice I'd be all over it, but I don't think it will.


I did want and get slash-commands through a plugin called discord-py-slash-commands. It was fairly painless and just built on top of my existing bot.

Yes! Plus if you have a syntax error Python will catch it for you. Peewee works the same way.

I recommend having a look at pipenv for doing this for python tools, I think for this kind of thing it is pretty ideal.
next

Legal | privacy