If you want an easy setup for Postgresql you can try this: https://pigsty.io/
YahiaEQ
Posts
-
Which RDBMS? -
Anyone know any motivational techniques?What works for me in such cases: Find a new really exciting project BUT have the discipline to only start working on it AFTER the current/old one is finished.
-
Regex syntax zooI am not really good at regex but what about: Keep your own syntax and offer some sort of "converter" - basically some function that takes a known syntax (POSIX oder .NET or whatever) and returns the "translated" regex which is in your syntax. This way people choose (perhaps based on knowledge or usecase) which syntax they want to use.
-
Odd Behavior With gethostbynametry "ipconfig /flushdns" after adding the secondary address
-
word wrappingDo you know https://github.com/litehtml/litehtml ? this not a browser but just a parser for html and CSS... perhaps this can help...
-
word wrappingTotally - since CSS engines are my bread and butter... not really, I just thought EPUB displays content using something that is capable of CSS...
-
word wrappingCSS schould do the trick automatically, see https://medium.com/clear-left-thinking/all-you-need-to-know-about-hyphenation-in-css-2baee2d89179
-
Which do you prefer? A programming question!Depends on context but esp. in complex scenarios I like the second form because it allows for having clearer understand of the flow while being composable: I could have a bigger methods which calculates certains states and then calls several MayBe-methods... It allows the MayBe-method to be called based on the state which in turn can be easily serialized and deserialized (which is not so easy with an "if"-Statement).