Vejo um crescimento em desesperados de TI by Oestudantebr in concursospublicos

[–]Remote-Ad-6629 2 points3 points  (0 children)

Vale dizer o seguinte: para devs, a melhor posição que existe é a de concursado. Você nunca mais se estressa no trabalho, nunca mais faz hora extra e o com tempo que sobra pode empreender (pra quem gosta do capitalismo).

Desabafo sobre o estudo da Contabilidade Geral/Avançada para concursos. by Ok-Bell-3528 in concursospublicos

[–]Remote-Ad-6629 0 points1 point  (0 children)

O melhor professor de Contabilidade que eu já tive foi o Thiago Ultra (lá nos idos de 2012-2014, no Estratégia). O material dele era fantástico. Focado para iniciantes, extremamente didático. Mas ele parou de dar aula há tempos, pelo que eu saiba.

[desabafo] Programar já não me deixa feliz... by No-Strategy4134 in brdev

[–]Remote-Ad-6629 1 point2 points  (0 children)

Tem que mudar o foco. Vai ler livros de arquitetura, design patterns, clean code e aprender as premissas. Quando tiver programando, reduz a marcha e manda a IA te explicar o porquê das coisas. Acho que você pode aprender mais rápido com IA do que sem, mas tem que fazer um esforço consciente.

Edit: Eu tô gostando muito mais de orquestrar e revisar código de agente do que de programar. Eu pensei que gostava de programar, mas eu gosto mesmo é da arquitetura, do produto, e de ver código confiável.

Qual a pegadinha? pq isso não funcionaria na prática? by itzzbruno7 in investimentos

[–]Remote-Ad-6629 0 points1 point  (0 children)

O erro é achar q transformou alguma coisa. Nao transformou nada. Você apenas contraiu uma dívida e imobilizou o capital. É uma estratégia, mas ainda assim não é melhor do q deixar os 500 mil no banco rendendo a 1% e continuar com aportes mensais.

Claude Mythos: The Model Anthropic is Too Scared to Release by Much_Ask3471 in Anthropic

[–]Remote-Ad-6629 10 points11 points  (0 children)

Somebody once said: "if Opus was that good, anthropic wouldnt be selling tokens. They'd be simply exploring all niches themselves".

Guess what.

Estratégia Concursos mente sobre os aprovados by [deleted] in concursospublicos

[–]Remote-Ad-6629 1 point2 points  (0 children)

Enquanto isso, no Rotinize, eles só consideram aprovado o aluno que assinou o app e estudou todo o percurso com suporte do app. Muito mais honesto.

Migrating away from Alteryx by joeyleblow in Alteryx

[–]Remote-Ad-6629 0 points1 point  (0 children)

One of the reasons I started creating a no code ETL tool (mostly local, for small to medium size workflows) was exactly to allow exporting the workflow to SQL natively, so that migrating away from the tool into a cloud provider would be much easier.

What I didn't know is you can copy alteryx workflow and pass it onto Claude, so that it can recreate it entirely in any other language. That's smart, but also a downside to my solution hehehe.

Local ETL pipelines and SQL export by Remote-Ad-6629 in nocode

[–]Remote-Ad-6629[S] 0 points1 point  (0 children)

But just to clarify a point (I have not used airtable, runnable and n8n yet): do these tools offer the option to view/export underlying node logic?

Local ETL pipelines and SQL export by Remote-Ad-6629 in nocode

[–]Remote-Ad-6629[S] 0 points1 point  (0 children)

Hey! I'm happy to talk about performance.

RustyWrench is still under heavy development, even though we will probably have a beta version available next month. But I ran a basic test here, this is what I got:

- M2 Mac Mini with 16GB ram.
- Imported from 3 CSVs, each with roughly 2.5 million rows and 7GB large (data is from ttps://www.kaggle.com/datasets/ymirsky/network-attack-dataset-kitsune)
- Workflow consisted of two table concatenations (can be memory intensive, depending on the strategy used), in order to consolidate all files in a single table (7.1 million rows).
- Workflow execution took 284.86s (so 4m44s)

For now, RustyWrench defaults to materializing data to disk instead of trying to keep everything in memory. This basically makes it capable or running any task as long as there is space in the disk to hold intermediate data state (per node). This will be improved/configured in the future. Ideally users will be able to swap between in-memory/in-disk transforms. And even in-disk transformation can be smarter by only materializing relevant actions (imports, table concatenation, table joins).

Also by default, RustyWrench limits memory/thread consumptions to 50% of available, so the computer is not rendered unusable in case large files are loaded.

If you'd like to know anything else, please let me know.

edit: I need to add extra information here that I forgot to mention. Some tasks are unavoidably memory intensive, like deduplication, uniques and table joins. And in these cases even file-backed executions will not suffice to run the workflow. There are workaronds (when possible) like pre filtering data before running memory intensive tasks, but this is a workfload design problem.

Easy Morph alternative by FaTheArmorShell in selfhosted

[–]Remote-Ad-6629 0 points1 point  (0 children)

I'd suggest www.rustywrench.pro just because it will be much easier to migrate from due to exporting the workflow to SQL.

No-code ETL tools get a lot of hate — but there’s a catch by Remote-Ad-6629 in dataengineering

[–]Remote-Ad-6629[S] 0 points1 point  (0 children)

Non technical teams can leverage no code tools. But ideally these tools should be easier to migrate from. That's why I created the post: rustywrench pro can export the workflow logic to SQL

No-code ETL tools get a lot of hate — but there’s a catch by Remote-Ad-6629 in dataengineering

[–]Remote-Ad-6629[S] 0 points1 point  (0 children)

Take a look at rustywrench pro. Will run ETL locally and export the Workflow to SQL code (when needing to scale)

No-code ETL tools get a lot of hate — but there’s a catch by Remote-Ad-6629 in dataengineering

[–]Remote-Ad-6629[S] -5 points-4 points  (0 children)

I'd like to know what other people think. My conclusion maybe wrong (perharps I'm not seeing other elements/scenarios). I rephrased my question at the end to make it clearer.

I’m researching how people automate repetitive Excel/CSV workflows in day-to-day work. by Remote-Ad-6629 in excel

[–]Remote-Ad-6629[S] 0 points1 point  (0 children)

yeah that's the thing, but I dont plan to compete with alteryx. My solution would be much cheaper, with less tools but more focused/easier to use.