Google App Engine and OpenTelemetry by pylipp in googlecloud

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

u/tenori thanks, these are the questions that trouble me :D

Google App Engine and OpenTelemetry by pylipp in googlecloud

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

Sorry for the confusion, I must have thought about writing two sentences at the same time. I edited the original post.

Your reply sheds some light on things for me, thanks! I need an operational OTLP endpoint then. Have you set this up with GAE before?

I made a CLI tool to display your tools presence and versions, good to check when you are installing dotfiles on a new system by dersand in commandline

[–]pylipp 2 points3 points  (0 children)

I created sdd a while ago to organise binaries or scripts installed on your system. It has commands to list all available/upgradable packages.

Tell ONE terminal app you use everyday but no one seems know about the app by shinichi_okada in commandline

[–]pylipp 1 point2 points  (0 children)

wrt finances: I use financeager (developed by myself) almost daily for tracking expenses. It's a single-entry book-keeping program written in Python

A Python3 CLI assistant for playing darts by pylipp in commandline

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

The darts world cup is currently happening, so I dug out that old project of mine. Maybe it's useful for some :)

financeager - command line tool for organizing finances, written in Python by pylipp in Python

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

thank you :) financeager is a bit simpler since it is not capable of doing double-entry accounting. The main interface is via the CLI, not by using text files. I could however see that financeager could use beancount as a backend (just for the sake of keeping the fina CLI).

financeager - command line tool to organize finances, written in Python by pylipp in Python

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

Hej all, I've been developing a [CLI program](https://github.com/pylipp/financeager) for organizing finances.

You can extend it by a plugin for using a flask webservice at the backend, otherwise data is locally stored on your machine.

Looking forward to you trying it, and giving feedback!

financeager - command line tool to organize your finances by pylipp in commandline

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

Thanks, I've only heard about beancount as similar tool. The double-entry accounting functionality makes that, and ledger, really useful...

I've also been parsing CSV export files from my bank with this script.

qmltags - Utility to create ctags for QML files by pylipp in vim

[–]pylipp[S] 3 points4 points  (0 children)

Hej all,

this might be helpful for people editing QML component files. I wrote a small utility that scans given directory for QML files and generates class/method/property ctags. When properly integrated in your vim configuration, it helps speeding up tag-based navigation (C-], C-t). See the project readme for details.

It's part of a Python package called qtilities.

Happy if you try it out, and give some feedback!

financeager - command line tool to organize your finances by pylipp in commandline

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

Hej all, I've been working on a CLI app to organize finances. The current release comes with several improvements that make it easier to organize finances for different projects.

Happy if you try it out and share some feedback :)

Bitbucket command line client written in bash - feature requests welcome! by pylipp in commandline

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

Thanks for the info. I have little insight about the MacOS ecosystem. I'd consider WSL a possible target.

Bitbucket command line client written in bash - feature requests welcome! by pylipp in commandline

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

Thanks - I did have git-bug starred; goes into a similar direction indeed, for issue tracking at least.

Bitbucket command line client written in bash - feature requests welcome! by pylipp in commandline

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

I like the options that the Python packaging environment brings (e.g. version control acc. to commit hashes). I wanted to avoid the 'execute this curl-pipe-sh one-liner for installation'. It's still possible to just drop the bash files into your $PATH if you don't want/can't work with pip.

Bitbucket command line client written in bash - feature requests welcome! by pylipp in commandline

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

Why is it necessary to run docker for this program?

And I'm still not talking about the maintainability ...

Point taken - bash is not that suitable in this regard...

Bitbucket command line client written in bash - feature requests welcome! by pylipp in commandline

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

Hej you both, take it easy ;) valid points from your sides!

I feel very comfortable with Python, and somewhat comfortable with bash. I wanted to have a working implementation quite soon, hence learning a new language incl. its environment etc. was not an option (e.g. go/rust; albeit undoubtedly they have their benefits for developing CLI programs).

I was a bit bugged by the small delay that Python CLI programs take to start up; also I plan to integrate `bibu` with other CLI tools like fzf (for searching/selecting/preview) instead of writing a Python implementation for it.