Viewing profile — andreineculau
andreineculau
HN member- Joined
- Mon, Mar 04, 2013, 1:44 PM UTC
- HN karma
- 261
- Public activity
- 135 items
- HN profile
- View on Hacker News ↗
About andreineculau
http://ysoftware.se http://andreineculau.com
Recent public activity
-
comment
Comment #46192224
I understand the simplicity angle. https://github.com/elasticdog/transcrypt has been around for a long time and strikes that balance very well in my opinion. And it's just a bash s…
-
comment
Comment #42858806
You've got nothing to worry Been doing it for more than a decade and yet to get in trouble. Not one issue. Doing it consistently for my teams as we decrease cognitive load (develop…
-
comment
Comment #41543200
How do these stack up to https://www.timescale.com/ ?
- story
-
comment
Comment #33749093
KATT https://github.com/for-GET/katt is the same concept, but following the pattern matching philosophy. Written in Erlang, available as a CLI tool as well but needs the erlang run…
-
comment
Comment #32263729
Erroneous send out by Apple according to https://www.macrumors.com/2022/07/28/apple-erroneously-sendi...
-
comment
Comment #31699308
That's because there are no arm runners on GitHub actions. So you now emulate arm, thus slow. You can add hosted arm GitHub runners or register arm hosts for docker and see down to…
-
comment
Comment #31674747
This 100!
-
comment
Comment #30860065
I'm happy to see dagger, because it is something that I have been working with since 2016, and ended up creating https://github.com/ysoftwareab/yplatform It uses well-tested softwa…
-
comment
Comment #30746697
I second that. DiffMerge every day for almost 10y
-
comment
Comment #30746686
For diffing yes but for merging... I have never gotten myself to use anything but DiffMerge. And now with their rewrite and price tag... Never ever.
-
comment
Comment #30676811
When you say everything contained in the project, you forget that there's more to life than just node/javascript. Just two silly examples: you cannot run/deploy your API backend wi…
-
comment
Comment #30676745
Nowadays there's Windows Subsystem for Linux. There's no excuse not to successfully run "Linux" scripts on Windows. I've been running very complex build systems via https://github.…
-
comment
Comment #30676699
I have never bumped into that article before, thanks for that. I did implement though that uniform interface in https://github.com/ysoftwareab/yplatform
-
comment
Comment #30676661
https://github.com/ysoftwareab/yplatform that this a notch higher (disclaimer: author here) As others have mentioned on this thread, the problem is not just "use Makefiles instead …
- story
-
comment
Comment #30158163
This is exactly my experience which lead me to create https://github.com/ysoftwareab/yplatform - with a consistent make interface https://github.com/ysoftwareab/yplatform/tree/mast…
-
comment
Comment #30158108
From GNU Make webpage: > GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files. What is idiosyncra…
-
comment
Comment #29528056
Funny but I've also done this. Thanks for sharing! Depending on the context, if you don't want this in git history, and want to handle git submodules, there's also git-archive-all …
-
comment
Comment #29524023
> Professionalizing the role of maintainer My 2c are that the problem is there, not specifically to OSS. The whole industry is looking down on maintenance and maintainers. Keeping …
-
comment
Comment #29441288
I've also been having bash as a strict req for tool language. As you say there are 1% or less cases where you can benefit from using smth else but that's 1%! My team had js as the …
-
comment
Comment #29408337
Thought about that last year. You wouldn't have your solutions public but any chance?
-
comment
Comment #29349364
I can double down on that. I have developed a pattern to use any language (but we used js/python) to generate cloudformation templates. This has started in 2016, long before CDK. T…
-
comment
Comment #29231945
A chatbot as an interface to NLP + searching a comprehensive FAQ ==> yes please! So basically improve on Google search by adding your own ontology. But otherwise, please no. Who ev…
-
comment
Comment #29047633
> For one, it's closer to a proper programming language as opposed to straight up data interchange format. Sure if you write it in YAML than you can take advantage of variables but…