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

Gemini Advanced doesn't has an API yet, nor do we have Gemini 1.5 Pro available.


Typical Google.


Thanks.




There is no [official] answer there. Dang [1]?

[1] https://news.ycombinator.com/user?id=dang



If it is a matter of [human] resources I can put engineers to work on this as an open data good.


You might have missed it in all the links but the data set and its maintenance is a Google thing not an HN thing so those are the people you need to get in touch with.


So I assume your feedback is official right? I understand now that it could be an interesting contribution to have a similar database to be used, for example, for machine learning? Do you agree?


"random internet busybody" official, yes. If you want to talk to HN people about it, you can email them, I'm just pointing out their description of the situation is already quite plain and public.


Again features nobody cares about


Incredible, I will use it!


Pretty cool application


Awesome, thanks for sharing!


Thank you


worrydream.com - Bret Victor


Amazing work, just bought


Thank you!


great work, quite happy to see adoption of rebol's syntax


thanks a lot for your kind words. Arturo is a love child of mine and a project I've been working on in the past many years.

Rebol has absolutely been an inspiration. But I'm just trying a different take on it - a bit more flexible, more dynamic and with more modern programming language features.

Any idea/comment/suggestion or even code contribution is more than welcome! :)


FYI, I've just published the first complete reference (language reference + full library reference, with tons of examples): https://github.com/arturo-lang/arturo/wiki

Let me know what you think! :)


Which is in fact Logo's syntax. I don't see any literal forms for IP addresses, URLs, e-mails, dates, @references and hashtags in Arturo, which are historically present in Rebol and which make it unique.


No, Arturo has a wide range of built-in datatypes but no literal forms of IP addresses or URLs or e-mails or so.

And that was a conscious choice. Having different forms of declaring literals, in my eyes simply "litters" the language.

What Arturo does instead is use simple strings... And the interpreter internally tries to make out what they are automatically.

For example: the 'do' function can take pretty much anything. If it is a block, it executes it. If it is a string, it executes it too - but depending on what it is. If it is a url, it executes the remote script. If it's a local file, it executes the file. If it's Arturo code, it executes it as Arturo code.

The interpreter identifies what it is automatically. Why have different data types for that, pre-built in the language?


I see, so strings act as implicit "constructors" for datatypes (which are not even datatypes per se, just encoded information within a given string datatype), depending on their usage? This is indeed an interesting design choice. Rebol in such cases requires explicit conversion from string to a target type.


Yes, you are right.

And this is the way it works throughout, with different functions - 'do' aside, that is.

For example, there is the very powerful 'read' function.

This may take a simple string (text), a file location or a URL. You obviously know what it is and the interpreter will figure it out itself as well.

Now, let's say you want to read a file:

read "myfile.txt"

"Reading" a webpage:

read "http://somewebsite.com/somewebpage"

Parsing JSON from a remote source:

read.json "http://somewebsite.com/data.json"

Or parsing it from a string:

read.json "[1,2,3]"

And 'read' also can take different attributes, e.g. .csv (for parsing CSV files), .html etc etc...

Basically you pass a string with its options and the interpreter figures out where to get it from and what to do with it... :)


Well, the main difference is that - although we do use strings (for files, urls, etc) - the appropriate datatypes are constructed implicitly, that is: no need for newFile("someFile") or %someFile. "someFile", if it is a file path, will be automatically handled as such. If it is a url, accordingly.

The point is to keep the syntax clean. (Ok, that would be an argument of going all the way, like Tcl, where everything ends up being a string - but let's just get the best of every world without overdoing it :) )


Good point about Tcl, that now makes sense. Thanks for elaborating!


(I'm replying here, since I don't seem to be able to reply directly)

@9214 Since you are knowledgeable about the topic (included but not limited to Rebol/Red), I would be glad if you joined the effort. Even testing bits here and there would be great. You're welcome :)


Alright, but personally I fail to see how is that qualitatively different from all the other mainstream languages that use strings as a compensatory kitchen sink to encode literals not present by default.


FYI, I've just published the first complete reference (language reference + full library reference, with tons of examples): https://github.com/arturo-lang/arturo/wiki

Let me know what you think! :)


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

Search: