HackerTrans
TopNewTrendsCommentsPastAskShowJobs

postdb

no profile record

comments

postdb
·3 anni fa·discuss
For many people, light prevents melatonin production. Maybe not for everyone, also know an old friend in school who can sleep through bright sun right in the face.
postdb
·3 anni fa·discuss
The figure is clear. There is NOTHING even comes close to replace $ in terms of volume. Remeber, also took US Dollar a long time to replace the Pound as the reserve currency.

Whenever country like Japan stops using dollar to settle oil purchase, it is another step. With currently development around the multi-polar world, it is likely not one single currency, rather several regional block reserve currencies will arise to replace the Dollar.
postdb
·3 anni fa·discuss
There is the 1k jsx lib: https://nanojsx.io

Then again, if we are at this road now again, maybe they should just bring a lighter version of e4x as part of ES/JS.
postdb
·3 anni fa·discuss
>I used to rant against using socket.io at every possible opportunity. The library has (had) crazy bugs in its reconnection code. In the right circumstances the library would violate ordering and delivery guarantees, or it would lie about messages being received when they hadn't been. But no matter how much I ranted about it, and no matter how many hundreds of issues there were on github, far more people used socket.io than the (much more reliable) alternatives because socket.io had a pretty website, good documentation and it was taught at coding bootcamps. I think the only reason its not as popular now is that you don't need it now that websockets are available everywhere.

That is true. So with the modern browsers now days latest Chrome/Firefox (both desktop and mobile) can support websocket seamlessly? I guess socket.io is kinda like the jquery of ws then? It will take some time to phase out.
postdb
·3 anni fa·discuss
Often these web apps, just doesn't work on iOS. Seen that happen quite a few times. Also keep in mind Safari on iOS has 7-Day Cap on All Script-Writeable Storages such as:

Indexed DB LocalStorage Media keys SessionStorage Service Worker registrations and cache

Unless if the Web Applications was added to the Home Screen.

https://web.dev/storage-for-the-web/
postdb
·3 anni fa·discuss
>Crimes are committed all the time using phones and yet, we do not allow phone companies to monitor, record and report the content of pur phone conversations. And they can't just add a line in a terms of service, they have no legal right to do it. (Ignore the issue of Metadata, I mean the audio portions of our calls)

Are you sure about that? It is my understanding all telco traffic are monitored. Some countries may have laws that prevent real time conversation/sms to be look at for a few months.
postdb
·3 anni fa·discuss
we don't really have a over population issue, unless some how we figured prolong the life span of all people in the next few decade. Countries like China will have population deflation problem in the coming decades.
postdb
·3 anni fa·discuss
For sure, it doesn't matter where you put it if it is in one place. If one look at company like superbase, and their product like PostgresREST. It is just way faster way to develop API, and it will scale too. Often it is about how one 'horizontally' scale.
postdb
·3 anni fa·discuss
This comes a lot from people who want to "horizontal" scaling. The camp that thinks everything should be in the middle tier (Java/C#/). Also cost on AWS is cheap for those, and expensive for RDS. In the end db will be bottle neck. Of course DevOp ppl will can also create cache layer etc to lessen the stress to the db.
postdb
·3 anni fa·discuss
I linked in the sib comment. here it is again: https://stallman.org/facebook-presence.html

Keep in mind, since then FB has disabled the tor for mobile link that Stallman recommended.
postdb
·3 anni fa·discuss
Of course, I should clarify, it is his recommendation if organisations who need a facebook presence, as many small businesses or event organizers struggle to not have a FB/instagram presence.
postdb
·3 anni fa·discuss
https://stallman.org/facebook-presence.html
postdb
·3 anni fa·discuss
Glad someone mentioned this!!! It is one of good reason to self-host! And only send sneak peek to social media sites. Stallman has a recommendation similar to that on what to post to FB.

Only use social media as a notification/publishing/advertising system, post important stuff on your own site.
postdb
·3 anni fa·discuss
Seen that on mattermost, it is poorly written React or other SPA. It is one of reason why SPA get so much hate around.
postdb
·3 anni fa·discuss
it is on the front page of their page: https://memex.marginalia.nu/projects/edge/supporting.gmi
postdb
·3 anni fa·discuss
BTW, AT&T has terrible records for dropping customer's traffic and also email without warning or notices to their customers. Why such terrible company is around amazing how corporation don't really survive by merit in our current world.
postdb
·3 anni fa·discuss
hmmm, IMHO, traffic for video and everything else ought to separated into 2 classes. Video obvious takes much much more bandwidth than other stuff. It would be good to allow none video, smaller assets that are needed to to make a website function to have priority over video files.
postdb
·3 anni fa·discuss
I started with mysql in late 90's, switched to postgre and would prefer that instead of MySQL if it is my decision. MySQL is faster than postgres is a myth. Please see this https://arctype.com/blog/performance-difference-between-post...

One thing mysql is better than postgres is that mysql can fast replicate across different data centers. See this blog: https://www.uber.com/en-DK/blog/postgres-to-mysql-migration/

However what Uber is doing may not be what you doing. So do some research and hire qualified db admin or devop people to make the informed choice.
postdb
·3 anni fa·discuss
>If it's all through a relay it probably isn't very censorship resistant at all. My messages may be signed locally but if the network trends towards mob-based bans and censorship like Mastodon as soon as I get on the wrong side of the network I'll be the only one seeing my signed posts

Well on their page they said" To publish something, you write a post, sign it with your key and send it to multiple relays (servers hosted by someone else, or yourself)."

If you really want to prevent that then it is to also selfhost.
postdb
·3 anni fa·discuss
Good question. Not sure about Nostra, but that is how WebRTC is doing it. If there is only 2 people then it is peer to peer, more parties require some sort 'relay' to facilitate the chats.

However the main issue with peer to peer is not everyone is going to be online all the time, relay serves as a temporary storage place until one of the user/client goes online and get the message.