Catan is the game that got me into modern board games 20 years ago. Following board game nights made me meet people who are still close friends today and introduced me to the mother of my children.
My life would have been so different without Mr Teuber creations. Thank you and reset in peace.
I've been using GoAccess because of this exact line of thinking (logs over js pixel tracker). GoAccess comes with a really nice TUI, a built-in web server, and can export to csv and other formats. It's pretty robust. You just pipe logs right into it and it starts crunching.
This is an honest question, in my opinion the only way to make Google more friendly with self-hosted mail servers is their users complaining about or leaving Gmail.
Is there an API to programmatically retrieve secrets or is it CLI only?
On a previous project I used the HVAC python library to get secrets from Vault and configure a Django project. (thus not using env vars at all)
It would be nice to be able to do the same with Infisical.
There is a backend API (that the web UI and CLI connect to) but it's not yet publicly documented. We've wanted to do that for a while now but have just been swamped with requests for features honestly — It's just a matter of time :)
Would love to keep you updated with the progress of that over at our Slack community!
This is something that we are actively thinking about actually! It's currently CLI only. API's definitely quite a lot of work, but it's probably worth it. Could you please create an issue for it here: https://github.com/Infisical/infisical/issues
This way, you can stay updated about when it's ready. Thank you!
No, our CLI is connecting to our backend service which then connects to our database. The backend is not ready to be used by the public as it's not super user-friendly and not well-documented; however, this is a great idea and would increase the use case for Infisical
I am a Thunderbird user on desktop but I had been using Blue Mail on Android for several years and had been pretty happy with it. I may switch to Thunderbird when they have the sync feature implemented.
I used blue mail for years and recommended it to my wife and some of her friends. Everyone likes it. I, however, moved to fairmail and been very happy with it. Reason: its foss and much better than k9. Have a look at its feature set and UI.
K9 already exists today if you want to switch which is "thunderbird for android" with a different name, but what do you mean with sync feature? That it shows notifications, or fetches all your email for offline reading or so?
Basically, Firefox Sync allows you to sync certain things across your devices (bookmarks, tabs, etc) and they are going to implement similar functionality in Thunderbird.
One problem I had with WebSockets is you can not set custom HTTP headers when opening the connection. I wanted to implement a JWT based authentication in my backend and had to pass the token either as a query parameter or in a cookie.
Anyone knows the rationale behind this limitation?
The workaround/hack is to send your token via the "Sec-WebSocket-Protocol" header, which is the one header you're allowed to set in browser when opening a connection. The catch is that your WebSocket server needs to echo this back on a successful connection.