Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mjs2600
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
12 ms
·
1.
▲
by
mjs2600
4y ago
I found this[1] section in the documentation on interoperability within the JVM. It looks fairly straightforward to work with. I'm not sure about FFI more generally. [1] https://doc.flix.dev/interoperability/
2.
▲
by
mjs2600
7y ago
Enforcing and incentivizing collaboration also seems like a good argument for licensing open source projects with the AGPL. It prevents people who are not willing to contribute things made using your software back to open source from using
3.
▲
by
mjs2600
7y ago
Yep, it works really well for that. https://poetry.eustace.io/docs/cli/#publish
4.
▲
by
mjs2600
8y ago
I don't think he's getting enough credit for this.
5.
▲
by
mjs2600
8y ago
C can compile to WASM, but I have no clue about external tools like BLAS. I'd assume that things like Numpy are able to work without tools like BLAS, but you might also be able to compile the essential ones to WASM as well.
6.
▲
by
mjs2600
8y ago
It definitely seems like it does https://docs.racket-lang.org/guide/parallelism.html
7.
▲
Do Users Need That Feature? We Used Data to Find Out
(verypossible.com)
6 points
by
mjs2600
9y ago
|
0 comments
8.
▲
by
mjs2600
10y ago
The focus on improving reinforcement learning is really exciting. It's the area of machine learning that seems to have the most untapped potential.
9.
▲
by
mjs2600
10y ago
I reloaded and it worked.
10.
▲
by
mjs2600
10y ago
I came back to it recently after a year and a half long break and it has improved dramatically. It's starting to feel like something I'd be comfortable using in production.
11.
▲
by
mjs2600
11y ago
It works, eventually...
12.
▲
Building a Blog with Phoenix and Ember
(maxwellholder.com)
5 points
by
mjs2600
11y ago
|
0 comments
13.
▲
by
mjs2600
11y ago
That's the macros. Phoenix's routing is an awesome example of the power of Elixir macros. It leverages the BEAMs pattern matching capabilities to do the routing, but the syntax is very clear and concise.
14.
▲
by
mjs2600
11y ago
I agree, but as a user you don't have any control over that. Https Everywhere is a solution to the immediate problem.
15.
▲
by
mjs2600
11y ago
https://www.eff.org/https-everywhere/
16.
▲
by
mjs2600
12y ago
It's already in melpa.
17.
▲
by
mjs2600
12y ago
I have a lot less issues with all of my utilities combined than I have with comcast...
18.
▲
by
mjs2600
12y ago
Knoxville is a Comcast test market, so we get data caps. You can buy a faster connection, it just means you hit the cap faster. Just a heads up on what Comcast is planning on doing to you next...
19.
▲
by
mjs2600
12y ago
If you name it readme.org, then github will render it as html.
20.
▲
by
mjs2600
12y ago
Elixir has Lisp-style macros with a Ruby syntax. It's not quite as close to the AST as a Lisp, but I think the trade off hits a sweet spot. For example: quote do 1 + 1 end returns: {:+, [context: Elixir, import: Kernel
21.
▲
by
mjs2600
12y ago
I think you're thinking of LFE, which is another lisp on the BEAM.