Hacker Newsnew | past | comments | ask | show | jobs | submit | itherseed's commentslogin

I think this is the important question. I've been searching, but all I found were deprecated and incomplete projects. If anyone knows some actual current development, even incomplete ones, let us know.

It would be nice to at least have a day in the week without AI news. Some kind of "No AI Friday," for example.

It is really good but it needs a dark theme. My eyes!


There is one hidden away in the settings menu if you tap the sunflower top left! Will make it more clear it exists


I want the same. The problem is that this kind of tool is outside the T&C of the platforms, and if they catch you using it, you would probably be banned or suspended. There will be always a small risk of that.


Ok, I'll see it later but please use the 'Release' feature of GitHub. It is the easiest way to tell for your customers that a new release is out. Even GH can send notifications. Thanks.


Summary: "Across 16 experiments with over 27,000 participants, we show that people tend to evaluate creative writing less favorably when they believe it was written by artificial intelligence (AI), because they see it as less authentic than if a human author had produced the exact same work without AI. This bias is persistent and difficult to reduce, even when using techniques that mitigate aversion to AI in other contexts."


Thank you so much for this. I was wondering not so long ago what happened to TheDraw.


Yeah, but the article from biggo is a much better summary that I could do at that moment


In a move that reminiscent of the change of Redis, they removed all the functionality of the UI of the community version and pointed to the paid version.

From the Changelog: (https://github.com/minio/object-browser/blob/master/CHANGELO...)

"Deprecated support of accounts & policies management, this can be managed by using mc admin commands.

Deprecated support of bucket management, this can be managed by using mc commands.

Deprecated support of configuration management, this can be managed by using mc admin config commands. Please refer to the MinIO Client for more information.Deprecated support of accounts & policies management, this can be managed by using mc admin commands.

Deprecated support of bucket management, this can be managed by using mc commands.

Deprecated support of configuration management, this can be managed by using mc admin config commands. "

This PR that removes away all the features in the UI: https://github.com/minio/object-browser/pull/3509 . The discussion around this PR is locked.

I think that "Deprecated support" has another meaning. I hate when this kind of things happens.


Oh good I'll look forward to migrating away from this in the near future then.


The advantage of the original approach is that later, when you need it, you can just add more methods to a class that are private to them. In your approach, if you need a new function, you add it at the global level, which can totally be fine for one or two functions, but with any more you end up with a bunch of functions all at the same level that is no longer obvious the dependency between them.


You can do that with a function too, make it a class with a __call__. If you need it, which you won't for this kind a script.


If you want a function that's private to a function in Python you _could_ also do:

    def foo(context):
    
        def bar(x):
            return x*2
        
        baz = bar(context)

... This is particularly idiomatic for higher order functions, but I think it can be useful for other things if used with restraint.

But if you have functions that only need to be called from one calling function then I why not just inline the code and eschew having a function at all. Long function bodies for the win!


Don’t do this, it makes it a huge pain to test bar().

When you write the initial code to figure out bar, just throw that code in a unit test so you can run it any time. Stop throwing tests away!


Yes, perhaps I wasn’t clear — I’m advocating for just the inlined version, not the nested function in the general case.

The nested function is, I think, fine when it’s so tiny it’s not worth unit testing (like, it-could-have-been-a-lambda small) or when bar is returned by foo (ie foo is higher order), in which case you can test the return value. Apart from that… restraint!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: