HackerTrans
TopNewTrendsCommentsPastAskShowJobs

itayd

no profile record

Submissions

[untitled]

1 points·by itayd·5 maanden geleden·0 comments

Show HN: Gocat – URL shortener using Google Sheets

github.com
1 points·by itayd·8 maanden geleden·0 comments

Show HN: Ask questions your Slack Threads

github.com
1 points·by itayd·8 maanden geleden·0 comments

KitteHub: Python projects in the cloud in a few clicks

github.com
1 points·by itayd·8 maanden geleden·0 comments

Leash: Spreadsheet Based PagerDuty Alternative

github.com
5 points·by itayd·9 maanden geleden·2 comments

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

github.com
4 points·by itayd·9 maanden geleden·1 comments

Show HN: Leash: Replace PagerDuty with a Spreadsheet

github.com
1 points·by itayd·9 maanden geleden·0 comments

KitteHub: Workflow as Python code using AutoKitteh

github.com
9 points·by itayd·9 maanden geleden·1 comments

Long Running OpenAI Agent Researcher

github.com
1 points·by itayd·10 maanden geleden·0 comments

[untitled]

1 points·by itayd·vorig jaar·0 comments

Show HN: Durable Python Workflows

github.com
64 points·by itayd·vorig jaar·14 comments

[untitled]

1 points·by itayd·vorig jaar·0 comments

[untitled]

1 points·by itayd·vorig jaar·0 comments

Interactive OpenAI Agent Researcher

github.com
2 points·by itayd·vorig jaar·0 comments

[untitled]

1 points·by itayd·vorig jaar·0 comments

Show HN: AutoKitteh, Durable Workflows in Python

github.com
4 points·by itayd·vorig jaar·0 comments

[untitled]

1 points·by itayd·vorig jaar·0 comments

[untitled]

1 points·by itayd·2 jaar geleden·0 comments

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

github.com
4 points·by itayd·2 jaar geleden·0 comments

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

autokitteh.com
2 points·by itayd·2 jaar geleden·0 comments

comments

itayd
·4 maanden geleden·discuss
best molly-guard depicited in "The Good Place": https://www.youtube.com/watch?v=etJ6RmMPGko
itayd
·7 maanden geleden·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 maanden geleden·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 maanden geleden·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 maanden geleden·discuss
You can also try https://github.com/autokitteh/autokitteh. Python based, completely open source. Got inter workflow storage as well
itayd
·vorig jaar·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
·vorig jaar·discuss
yup!
itayd
·vorig jaar·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
·vorig jaar·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
·vorig jaar·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
·vorig jaar·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 jaar geleden·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 jaar geleden·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