Viewing profile — iveqy
iveqy
HN member- Joined
- Sat, Jun 29, 2013, 11:05 PM UTC
- HN karma
- 504
- Public activity
- 140 items
- HN profile
- View on Hacker News ↗
About iveqy
No profile information was provided.
Recent public activity
-
comment
Comment #48573145
The way I usually solve this is by using git submodules.
-
comment
Comment #48081524
It does not solve all supply chain issues, it do solve some supply chain issues. Not being able to see if the source code shipped is the same as been used for creating the binary i…
-
comment
Comment #46098637
Seems as a good idea to pitch git-appraise https://github.com/google/git-appraise I'm not part of the project at all, but this is the only offline code review system I've found.
-
comment
Comment #45824362
I built my own ERP system for handling my business. It's also an TUI and has been here on Hacker News a few times. About training new staff, there's actually studies done on it: ht…
-
comment
Comment #43892645
I'm looking for something that you can embedd in your own application. LaTeX would be great but it's not really nice to have WEB code in your C application. It's also has a bit tro…
-
comment
Comment #43857110
I hope you've found https://stackoverflow.com/questions/1711631/improve-insert-p... It's a very good writeup on how to do fast inserts in sqlite3
-
comment
Comment #43820451
Om working om a distributed erp system. The goal being native ui in android, iOS, Mac OS, web, windows, Linux and curses with crazy fast response times. No user operation takes lon…
-
comment
Comment #42221459
I'm working with SBoM, one fun side effect is that you can scan SBoM's for vulnerabilities. Suddenly hackers, your customers and your competitors starts do to this and you need to …
-
comment
Comment #42004304
I also switch between a lot of computers (work computer at home/work computer at work) but have to develop on "big powerful machine at work". My current solution is tmux + nvim and…
-
comment
Comment #41643466
I think you'll like dwm and other suckless tools. They have configuration as code and require a recompile after a configuration change.
-
comment
Comment #41612034
I strongly disagree. You should always keep the code as simple as possible and only add abstractions once you really need them. Too many times I've found huge applications that it …
-
comment
Comment #41097888
This seems to be almost the same as androids repo tool. https://android.googlesource.com/tools/repo Personally I don't see the difference between this and submodules. Repo stores t…
-
comment
Comment #40848247
The beauty with a static site is that if you have a copy of the generated output, using the site generator becomes optional. You can always move away from using it (but not moving …
-
comment
Comment #40327353
Git is actually using that approach which means that libgit is pretty useless to embed, which noone does anyway since it's GPL and everyone instead uses libgit2.
-
comment
Comment #40291739
I'm actually developing this as a ERP system. It has been featured here a few years ago, and old demo can be found here: https://www.youtube.com/watch?v=W3kpD7om_aQ The goal is to …
-
comment
Comment #39103708
PlasticSCM has semantic merge that does something like that: https://docs.plasticscm.com/semanticmerge/intro-guide/semant...
-
comment
Comment #38593375
I would really love to read a comparison with sourcehut
-
comment
Comment #38301831
Developers has solved this is most VCS by merging changes. The trouble with merging is that it's hard to explain and hard to visualize for non technical users. Once that problem is…
-
comment
Comment #37567908
There more I work the less I care about no-code or development languages. The cost is in requirements and dependencies. The tools and implementation is the cheap part.
-
comment
Comment #36484840
Isn't it a huge performance problem? Running a headless browser is quite heavy?
-
comment
Comment #36484808
So far it's an one person thing, I've been working on it on and off for 11 years. It has a this UI layer meaning that I so far has a text interface (that you can see a demo of here…
-
comment
Comment #36484733
I would love to but I'm planning to make it a living off it and haven't really figured that part out yet. https://www.youtube.com/watch?v=W3kpD7om_aQ
-
comment
Comment #36479063
Unfortunately not, it’s a complicated process. I’m working with a software that does this and is using wktmltopdf and it’s a real mess
-
comment
Comment #36478060
Really nice to see! Since the past several years I'm working on a text based ERP system (that of course do invoicing as well). Nice to see that there's a demand!
-
comment
Comment #36149209
I'm curious about the security implications with using distcc. Doesn't this mean that if one computer gets compromised, the attacker can run code on all other computers using distc…