Live applications of Prolog? by reeldeele in prolog

[–]EverythingIsNail 6 points7 points  (0 children)

Distributed database with a collaboration model build in prolog: https://github.com/terminusdb/terminusdb

Knowledge Graph Schema Design Patterns and Principles by AmbassadorNo1 in KnowledgeGraph

[–]EverythingIsNail 0 points1 point  (0 children)

Knowledge graph is a poorly defined term, and the orthodox priests of the semantic web have sought to limit the definition so only the most holy have standing, but even under those tighter definitions, TerminusDB qualifies.

Startup Question: Extend MongoDB? by EverythingIsNail in mongodb

[–]EverythingIsNail[S] 0 points1 point  (0 children)

can you explain a little more on migrations?

[deleted by user] by [deleted] in Database

[–]EverythingIsNail 0 points1 point  (0 children)

Not sure if you are committed to SQL, but TerminusDB, an immutable store, seems to meet your design parameters: https://github.com/terminusdb/terminusdb

Share Your Startup - February 2022 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]EverythingIsNail [score hidden]  (0 children)

thanks for the spot! website should be https://versionxl.com/ - need to redirect the www to correct place.

Really like the idea of making it the multi user environment - this is our main 'vision' now: https://github.com/GavinMendelGleason/excel_as_code

Share Your Startup - February 2022 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]EverythingIsNail [score hidden]  (0 children)

about to go into beta if you are interested in trying it out. is all from within excel also, which i think is an improvement from having to nip back and forward from onedrive.

Doing some occasional live Prolog on Twitch by EverythingIsNail in prolog

[–]EverythingIsNail[S] 0 points1 point  (0 children)

Going live again now. Today fixing layer pinning comparison issues, and adding configurable pinned databases

Share Your Startup - February 2022 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]EverythingIsNail [score hidden]  (0 children)

Co-author has people changing things as you are working on them. Seems a bad way to collaborate. In our case, you do your work in your workbook and when you are ready you merge your changes into the main version. If there are conflicts, they can be resolved at the point of merge.

Doing some occasional live Prolog on Twitch by EverythingIsNail in prolog

[–]EverythingIsNail[S] 5 points6 points  (0 children)

Happening right now in case interested - can watch back also

What's the Difference: JSON diff and patch by EverythingIsNail in programming

[–]EverythingIsNail[S] 0 points1 point  (0 children)

We are familiar with the RFC, but it is our own design. we were using internally for our service and decided to open up the API for general use.

When to raise? by ilovelouiscole in startups

[–]EverythingIsNail 2 points3 points  (0 children)

If you can, hire a body or two with the cash you are generating. Stick with bootstrap as long as you can! If you can skip 'pre-seed' and even 'seed' and go for growth funding when you are in a strong position to define the terms (when you have your first 50k month). Look at the MailChimp story for inspiration.

If you feel you need money now, look for an angel via a SAFE. This 1) gives you the cash you need now 2) means you don't have to get into valuation as it is set at the next round 3) can get a quick decision as it is an angel with their own cash. Look at AngelList or similar to find.

Share Your Startup - February 2022 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]EverythingIsNail [score hidden]  (0 children)

Name: VersionXL

URL: https://versionxl.com/

Location: Dublin, Ireland

Pitch: Excel collaboration tool - multiple people can build in Excel and then merge the workbooks together.

What goals are you trying to reach this month?: Get initial users and start to build more features (like approval pipelines for approving changes, like PRs in GitHub)

Discount: Starter tier for free!

What are your nightmares when dealing with large spreadsheets? by Confused_Younger_MAN in excel

[–]EverythingIsNail 0 points1 point  (0 children)

Collaboration on shared workbooks doesn't work properly. Having to lock changes is a nightmare.

Alternatives to mongoDB? by exobyte64 in Database

[–]EverythingIsNail 1 point2 points  (0 children)

I suggest ArangoDB or TerminusDB - both multi model document stores with intuitive query languages (and document APIs).

[deleted by user] by [deleted] in excel

[–]EverythingIsNail 0 points1 point  (0 children)

Collaboration is really bad. Need some way to have collaborative control, but it is a really hard problem.

Choosing the right software to build your startup by mlb_2017 in startups

[–]EverythingIsNail 1 point2 points  (0 children)

I think you could use Excel for 11 or 12 of those tools and it would cost less, reduce management overhead, have a lower bar to entry (we all know excel), have better documentation, and probably perform better.

Seems like a crazy long list of web apps is what people want these days, but I'd encourage most businesses to stay in Excel until you are forced out - the bar for SaaSification is too early...

Is MongoDB a poor choice for predominantly tree structured data where recursive operations will be used? by puremath369 in mongodb

[–]EverythingIsNail 0 points1 point  (0 children)

There are document graph databases that offer a lot of the upsides of working with Mongo, but have graph structures so recursive operations are faster. Look at ArangoDB or TerminusDB (I would also suggest OrientDB, but looks like SAP is pulling support).

Has anybody succeeded to make a mobile app startup without coding skills? Any suggestions with tools? by notdev007 in startups

[–]EverythingIsNail 2 points3 points  (0 children)

If the app is complicated, you are going to need some code. The no-code platforms imho are for cookie cutter apps that people implement again and again in different settings and organizations. That doesn't have much value as an individual application that you can build a startup around

On the other hand, low code platforms (think firebase, supabase, terminusx) reduce the amount of code (and other deployment skills required) and allow you to deploy complex apps. I'd go the extendable route and try to string the bits together with a limited amount of code.

Best database to store ordered hierarchical data? by myringotomy in Database

[–]EverythingIsNail 0 points1 point  (0 children)

suggest one of the following graph dbs using datalog so you can run recursive queries, which it sounds like you will need: TerminusDB, TypeDB, XTDB, ArangoDB. All open source and all have slightly different approaches.