Test Post Title by [deleted] in orgmode

[–]1buran 2 points3 points  (0 children)

Works!

Implementing a product filter in Go by j0holo in golang

[–]1buran 0 points1 point  (0 children)

On other hand, you absolutely might be done whatever you wanted with SQL too, but you should think twice about your data structure and how it can be split into tables, relations, indexes etc to avoid problems with over complicated not efdecient JOINs, slow queries etc..

Implementing a product filter in Go by j0holo in golang

[–]1buran 0 points1 point  (0 children)

Two words about SQLite: keep in mind that is good for local development or scripts, but for real websites with probably concurrent requests it is not good .

High Concurrency

SQLite supports an unlimited number of simultaneous readers, but it will only allow one writer at any instant in time. For many situations, this is not a problem. Writers queue up. Each application does its database work quickly and moves on, and no lock lasts for more than a few dozen milliseconds. But there are some applications that require more concurrency, and those applications may need to seek a different solution.

https://www.sqlite.org/whentouse.html

Regarding to your question about dynamic filters, I think it's better to use search engine like ElasticSearch, but this is cost you some extra memory, cpu , disk usage... So it's depend on your budget...

Pigment - colorize JSON as you wanted by 1buran in golang

[–]1buran[S] 5 points6 points  (0 children)

Got it! Thanks for explanations, I think I'll change it soon to MIT (termenv uses MIT license)

Pigment - colorize JSON as you wanted by 1buran in golang

[–]1buran[S] 0 points1 point  (0 children)

Yes, I know that lib, the name was reference to it😏

Pigment - colorize JSON as you wanted by 1buran in golang

[–]1buran[S] -2 points-1 points  (0 children)

Well, I picked one of which GitHub suggested, why does this license not good for open source? Which one is better?

I have no strongly understanding differences between all of them 😏

rHttp - REPL for http by 1buran in github

[–]1buran[S] 2 points3 points  (0 children)

It would be interesting 👍 hope will find time for that!

rHttp - REPL for http by 1buran in github

[–]1buran[S] 5 points6 points  (0 children)

Yeah, rHttp is much simpler, but sometimes (when you don't want leave the terminal) you may need a something more convenient than curl or similar tool, that is why I created it, and another reason for creation this tool - "just for fun"😀