HackerTrans
TopNewTrendsCommentsPastAskShowJobs

guidorice

no profile record

comments

guidorice
·hace 2 años·discuss
> Instead, use the black screen screen saver on your server. It uses no CPU.

It also doesn't have all the memory leaks as the 3d pipes screen saver.
guidorice
·hace 2 años·discuss
Big fan of CLIPS! Rule based expert systems are so ubiquitous in business and scientific codes, yet a lot of devs are not even familiar with pattern matching let alone powerful rules engines like CLIPS.
guidorice
·hace 2 años·discuss
> You can't terminate unless the "device is online"

:-O good to know! current subscriber here. yikes indeed.
guidorice
·hace 3 años·discuss
This is the most technical info to drop so far, and good one watch for all those claiming mojo is all hype. :)
guidorice
·hace 3 años·discuss
Look at the guy's open-source contributions https://github.com/lattner I am not too concerned about it.
guidorice
·hace 3 años·discuss
One of the really neat things about mojo is, as a superset of python, things like static typing, and ownership/moving can be gradually adopted. It encourages value semantics, and is borrow-by-default. So you can literally just write pythonic looking `def` functions, but then gradually opt in to the more performant features, e.g. with `fn` functions.

In my mind this is kinda similar to what TypeScript does as a super-set of JavaScript- except that was not about performance, it was about purely about typing.
guidorice
·hace 3 años·discuss
national: (adjective)

relating to a nation; common to or characteristic of a whole nation: this policy may have been in the national interest | a national newspaper. • owned, controlled, or financially supported by the federal government: plans for a national art library.
guidorice
·hace 4 años·discuss
I highly recommend the Ivan Savof books as well. A Statistics title is upcoming.
guidorice
·hace 4 años·discuss
One view from the geospatial, data science, and machine learning world: Python is the most commonly used language, among my peers. However all the heavy lifting is done by C/C++ libraries which Python binds with. NumPy, GDAL, GEOS, Tensorflow, Torch, are all C/C++ libs.

Zig's C-interoperability is actually pretty huge in this context. Not familiar with the other 5 languages the OP listed.