HackerTrans
TopNewTrendsCommentsPastAskShowJobs

COMMENT___

no profile record

Submissions

I got scammed for $157 000 for trying to revive my favorite videogame

phack-the-publisher.com
5 points·by COMMENT___·8 माह पहले·0 comments

comments

COMMENT___
·4 माह पहले·discuss
Oh, an actual "modern engineering marvel". What a novelty, what a discovery!
COMMENT___
·6 माह पहले·discuss
Your point is quite good. I like it!
COMMENT___
·6 माह पहले·discuss
Oh, now HN is discussing a meaningless copy-pasted self promotion blog post. I guess this says something about the current state of the HN community.
COMMENT___
·6 माह पहले·discuss
So how do I call Word now? Microsoft Copilot app Word?
COMMENT___
·2 वर्ष पहले·discuss
You wanna let them inhale mercurial?
COMMENT___
·2 वर्ष पहले·discuss
This “ironic” and “humorous” style of errors and UI captions is the actual new corporate speak. I’d prefer dumb error messages rather than some shit someone over the ocean thinks is smart and humorous. And it’s not funny at all when it’s a global outage impacting my business and my $$$.
COMMENT___
·2 वर्ष पहले·discuss
Yes yes. Pushing and pulling all the day. Modern day sisiphus.
COMMENT___
·2 वर्ष पहले·discuss
The new command is named “sudo” because customer feedback and because MUSCLE MEMORY:

I hear you! We thought about some of the options you’re calling out here. A lot of customers voiced having the muscle memory of doing similar flows on various operating systems was more important to them and that’s where we landed. I totally understand your perspective and I do really appreciate the feedback. I’m always trying to learn from people like you so I can help to build things that will make your life better.

From https://devblogs.microsoft.com/commandline/introducing-sudo-...
COMMENT___
·2 वर्ष पहले·discuss
My first thought was that this article is about Obsidian Entertainment (videogame development company).
COMMENT___
·3 वर्ष पहले·discuss
Or in serverless mode without any server at all. Just open the repository via file://.
COMMENT___
·3 वर्ष पहले·discuss
No, this isn’t true. You can deploy your SVN server with ‘svnserve’ in just a few minutes.

https://svnbook.red-bean.com/en/1.8/svn.serverconfig.svnserv...
COMMENT___
·3 वर्ष पहले·discuss
> A github server is much easier to set up than a subversion server.

Oh here we go again. You are wrong my friend. Firing up a basic SVN server is a matter of minutes. You just need to run several simple commands.
COMMENT___
·3 वर्ष पहले·discuss
Besides running Windows 11 VM, I use UTM to run Windows 98 on ARM-based MacBook. Great for playing old games on modern Mac devices.
COMMENT___
·3 वर्ष पहले·discuss
This has happened only in BG3 with GFN for me. All other titles run perfectly or OK-ish.

It appears that there is some problem with BG3 on GFN. The game’s launcher constantly complains about “corrupt data files” and cloud saves take some time to sync from and to Steam.
COMMENT___
·3 वर्ष पहले·discuss
I think it’s fun to use names or captions of UI elements as a display name / username. Look at mine.
COMMENT___
·3 वर्ष पहले·discuss
> recommended for beginners

This is fabulous. They even draw a "learning path" from beginner to expert (sorry, who?). It looks almost natural for inexperienced users.

This whole "home antivirus" business reminds me of SoftRAM. It's just a few steps away from being a scam.
COMMENT___
·3 वर्ष पहले·discuss
So? You've just described exactly the what's achievable with Subversion. The only missing part is adding remote repositories.

> You don't have to set up a database for Git, either, and it works entirely locally.

What database? Subversion doesn't need any special database to work. Just the repository and its working copy. Both can be local and can be created with two commands.
COMMENT___
·3 वर्ष पहले·discuss
Subversion's CLI is actually sane and much easier compared to the abomination provided by Git. Additionally, Subversion can be used entirely locally, without the need to deploy and configure any server application.

It seems that you are comparing apples to oranges. Building your own SVN server from the ground up can indeed require some effort. Doing the same for Git demands more or less the same level of effort on your part. So, I believe you are comparing building an SVN server from the ground up to something like installing Gitea or GitLab, or using Git locally.

Again, you don’t have to install an SVN server. Just run `svnadmin create REPONAME` and use the `svn` client to import your data into the repository.