HackerTrans
TopNewTrendsCommentsPastAskShowJobs

itayd

no profile record

Submissions

[untitled]

1 points·by itayd·5 месяцев назад·0 comments

Show HN: Gocat – URL shortener using Google Sheets

github.com
1 points·by itayd·8 месяцев назад·0 comments

Show HN: Ask questions your Slack Threads

github.com
1 points·by itayd·8 месяцев назад·0 comments

KitteHub: Python projects in the cloud in a few clicks

github.com
1 points·by itayd·8 месяцев назад·0 comments

Leash: Spreadsheet Based PagerDuty Alternative

github.com
5 points·by itayd·9 месяцев назад·2 comments

Show HN: Gocat – URL shortener using Google Sheets as a database

github.com
4 points·by itayd·9 месяцев назад·1 comments

Show HN: Leash: Replace PagerDuty with a Spreadsheet

github.com
1 points·by itayd·9 месяцев назад·0 comments

KitteHub: Workflow as Python code using AutoKitteh

github.com
9 points·by itayd·9 месяцев назад·1 comments

Long Running OpenAI Agent Researcher

github.com
1 points·by itayd·10 месяцев назад·0 comments

[untitled]

1 points·by itayd·в прошлом году·0 comments

Show HN: Durable Python Workflows

github.com
64 points·by itayd·в прошлом году·14 comments

[untitled]

1 points·by itayd·в прошлом году·0 comments

[untitled]

1 points·by itayd·в прошлом году·0 comments

Interactive OpenAI Agent Researcher

github.com
2 points·by itayd·в прошлом году·0 comments

[untitled]

1 points·by itayd·в прошлом году·0 comments

Show HN: AutoKitteh, Durable Workflows in Python

github.com
4 points·by itayd·в прошлом году·0 comments

[untitled]

1 points·by itayd·в прошлом году·0 comments

[untitled]

1 points·by itayd·2 года назад·0 comments

Show HN: AI Driven Slack Support in a few lines of code

github.com
4 points·by itayd·2 года назад·0 comments

Durable Python: Reliable, Long-Running Workflows with Just a Few Lines of Code

autokitteh.com
2 points·by itayd·2 года назад·0 comments

comments

itayd
·4 месяца назад·discuss
best molly-guard depicited in "The Good Place": https://www.youtube.com/watch?v=etJ6RmMPGko
itayd
·7 месяцев назад·discuss
Hey - could be a good use case for https://github.com/autokitteh/autokitteh - which gives you durable workflows over python. Since your logic is deterministic it's a simple python script that stores the history in memory, and autokitteh will take care of the persistancy aspect.
itayd
·9 месяцев назад·discuss
Leash – I built an incident management system in ~200 lines of Python, production ready.

Tired of paying per-user for PagerDuty? I built an open-source alternative that handles on-call rotation, escalation, and multi-channel alerts (Slack/Email/SMS).

Workflows that wait hours for responses survive restarts without needing message queues or state machines. And your team edits schedules directly in Google Sheets instead of clicking through admin UIs.
itayd
·9 месяцев назад·discuss
Yes, we're built more for people who want to build using code, so the UI is different. That said, our road plan includes more UI features.
itayd
·9 месяцев назад·discuss
You can also try https://github.com/autokitteh/autokitteh. Python based, completely open source. Got inter workflow storage as well
itayd
·в прошлом году·discuss
You actually don't need to self import these. Usually Safeway (is it only a west coast thing?) always have these stocked in the Kosher section.
itayd
·в прошлом году·discuss
yup!
itayd
·в прошлом году·discuss
hi - this is not a library. this is a platform that you upload vanilla python code to it and it makes it run in a durable manner.
itayd
·в прошлом году·discuss
Hey, author here. We love durable functions and the ease it provides for building stuff. We provide an OSS as well as SaaS "serverless" platform to easily get started with durable functions using vanilla python.

Please take a look as well at https://github.com/autokitteh/kittehub which is full of examples. Also you can use https://autokitteh.cloud for free with some limits.
itayd
·в прошлом году·discuss
Hiding is actually not the main thing here. AK allows you to "deploy in a click" instead of deploying the actual workers. We also provide integrations with built in authentication for external services such as Slack, JIRA, etc.
itayd
·в прошлом году·discuss
In previous life I've been self hosting Cadence and it worked quite well. We then moved to Temporal cloud which was even easier.

That said, if you use autokitteh.cloud, you don't need to worry about Temporal as we're doing all that management behind the scenes.
itayd
·2 года назад·discuss
the go implementation, at least, allows you to enable while loops among others, which makes it turing complete and not guaranteed to complete. obviously you should never turn this on for configuration, but it is useful for general scripting usage.
itayd
·2 года назад·discuss
Starlark is awesome. We studied the language quite a lot, Alan Donovan did awesome work on its golang runtime [1] and there are more implementations in rust [2] and others.

Since the language and the backend allow to write deterministic functions, we found it's really suited well for automations written as durable functions. We implemented exactly that [3] over Temporal [4], though we also support Python as well among other runtimes.

[1] https://github.com/google/starlark-go

[2] https://github.com/facebook/starlark-rust

[3] https://autokitteh.com, https://github.com/autokitteh/autokitteh

[4] https://temporal.io