• 20 Posts
  • 280 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle





  • Even if your numbers are true. Mastodon has existed for 7 years. Bluesky for less than one.

    That doesn’t matter, because most users just came in the last year. Just shortly after Mastodon begun to explode in 2023 from 2 million to over 10 (and now seemingly over 15 million) registrations, Bluesky came in. So the 7 years comparison doesn’t matter here.

    So logically the precentage of users to active users should be much higher on Bluesky.

    Probably, but without statistics its just our gut feeling. And as you saw a few minutes ago, your gut feeling can be drastically wrong. My point was not here to race count Mastodon vs Bluesky, but to point your estimation of Mastodon accounts being vastly underestimated.

    According to Wikipedia Bluesky has 10 million users and 5 million monthly active: https://en.wikipedia.org/wiki/Bluesky That would be about what Mastodon has, if we believe those numbers. My point is, you totally over estimate Bluesky and underestimate Mastodon. The exact numbers does not matter here, what matters is my point that the user base is split into these two worlds.







  • pcloud

    I’m not much of a Cloud Drive user, but experimented with pcloud. It has a CLI tool and the ability to show up in the local filesystem, so you can browse through with your graphical filemanager: https://www.pcloud.com/download-free-online-cloud-file-storage.html

    Free Tier

    I only used the Free Tier without time limitation. Just logged in to the web client in browser to see if my files are still there, and I still have my files uploaded 2 years ago. I think Free Tier starts with 1 GB of free space and you can unlock more and more if you do some tasks like installing the CLI tool and such (I have 5 GB of space without time limtations). And the files are stored in European servers; not sure if I had a choice at account creation time or if this is tied to the location where I am.

    If you want more space, you can either pay annually or a one time payment for lifetime access (500gb for 200 Euros, 2 TB for 400 Euros…).



  • So yeah, exception as part of explicit function signature is a vast improvement, I completely agree

    Hmm, I’m not sure if you are being sarcastic. In my reply I didn’t meant encoding Exceptions into Type system. Is this a type and you probably meant “Error Types as part of” instead “exception as part of”?

    Honestly I don’t know how Exceptions as part of type system would even look like. Because each function call in a chain would need to have all information from previous function call, otherwise that information gets lost to the next caller. The problem is the hierarchy of function and method calls. Somewhere some objects and functions can be edited to Throw a new Exception, that is not handled through the entire chain. And for the higher function caller, there is 0% way of knowing that (through code, besides documentation off course).


  • Read my reply with a handful of sea salt. I just read tutorials and documentation a bit and did Hello World.

    Zig is pretty cool too! It can run C code directly just like C++ does (I think), kind of drop in replacement. From my reading so far, Error Handling is kind of a marriage between Go’s and Rust’s Error handling. Actually pretty cool. It has Error Types, but is kept relatively simple and doesn’t force to do all the stuff. It has Try and Catch keywords to handle errors elegantly, but don’t be fooled, this has nothing to do with Try…Catch blocks for Exceptions. Zigs Try and Catch are more like Rusts Result type handling, at least from what I read so far.

    I lean more towards Zig than Go, but it still has not reached stable 1.0 release.


  • My anecdotal experience is that Rust code, for example, has more calls to unwrap than I’d like. The problem here is that simply unwrapping results will crash the program on errors that could have been a user-visible error message with exceptions.

    unwrap() is explicitly not handling the error in a Result type. If you must do this, then at least use except(), to unwrap the code but with an error message if program crashes. Its the equivalent of having Exceptions and then not handling that exception. Therefore your critique is not valid here.

    One problem with Exceptions is, you never know what code your function or library calls that can produce an exception. It’s not encoded in the type system or signature of the function. So you need to pray and try catch all possible exceptions (I look at this from Pythons perspective), if you don’t want a Catch…All, which then you wouldn’t know what error this actually is. And you still don’t know where this error came from or happened in the code, how deep in the function call chain? Instead Errors as Values means its encoded in type system and you can directly see what errors the function can cause and (in Rusts case) you must handle the error, otherwise program won’t compile. You don’t need to handle anything else in this context. Compiler ensures that all possible errors are handled (again within context of our discussion). Vast improvement!







  • AI is fed by human input. If humans start and use AI more and more, and less human generated content, then soon AI will be fed by AI content. With each step of the feeding stage will amplify hallucinations and problems. Which will not help in the slightest with fake news and information, as fact checking could potentially be a source of fakes too. Only corporations have the money and resources to create the biggest LLMs, which means they will be the entities controlling everything.

    We don’t know if AI will grow exponentially forever. There are lot of downsides and its likely that countries in the world will ban AI. AI is already transformative technology, as we have seen. Partly because the world was not ready for how fast they improved and because no legislation exist. The question is, if AI is a bubble for short time and how long it will last. Maybe the next big AI improvements are done with Quantum Computers in a few decades from now. Who knows.