Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rthz
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
rthz
8mo ago
Have you tried opening an issue about it? Maybe someone would be happy to work on it. I concur that Excel parsing is rather slow.
2.
▲
by
rthz
11mo ago
Nice. It might be worth copying some of the introductory text from the Tauri package explaining what this does. Otherwise a person to lands on the readme gets a lot of technical detail about how it is built without any idea what it actually
3.
▲
by
rthz
1y ago
Interesting problem, not sure it’s worth solving. A larger diameter and slower rotating fan would likely produce less noise for a comparable air flow.
4.
▲
by
rthz
1y ago
On iOS you can use the plappa client. It’s open source and works well in my experience.
5.
▲
by
rthz
3y ago
Pyodide maintainer here, we would have certainly seen more reports if JsDelivr was blocked in UK. That URL works fine for me from France, and when using a UK VPN end point. Maybe something specific about your network (corporate proxy etc)?
6.
▲
by
rthz
3y ago
It's done currently in Pyodide: Python with DOM integration running with WASM. Minimal application with stdlib is around 5.5MB after compression now. Not small but still manageable depending on the use case. Still I agree with your oth
7.
▲
Increasing the Python recursion depth in Pyodide
(blog.pyodide.org)
1 points
by
rthz
5y ago
|
0 comments
8.
▲
by
rthz
5y ago
For people wanting to do more functional programming in Python, have a look at toolz ( https://toolz.readthedocs.io/en/latest/ ). It goes a bit further in that direction.
9.
▲
by
rthz
5y ago
You can work around it by embedding data into HTML files but it's really not recommended https://github.com/pyodide/pyodide/pull/606
10.
▲
by
rthz
5y ago
Concrete Python applications wouldn't be 100x faster if re-coded in some low level language. In most places where performance matter Python packages would be using either C extension, Cython or numba to get near native performance. Py
11.
▲
by
rthz
5y ago
If you just open an HTML file in your browser via its local path (e.g. /home/user/...) the browser will prevent you from loading other files by JS due to CORS. So we need a web-server to set the appropriate CORS headers. Any
12.
▲
by
rthz
5y ago
A chat channel is mentioned in the readme: https://gitter.im/pyodide/community Yes, we are working on adding more examples. Well you need to be able to serve static files. So if you are building locally you need to sta
13.
▲
by
rthz
5y ago
Work on Node.js support is in progress in Pyodide. And as you mentioned there is also the Wasmer build that could be updated.
14.
▲
by
rthz
5y ago
Yes, installing pure Python packages that have wheels from PyPi works. Assuming they don't use functionality that's not supported by the WebAssembly VM such as multiprocessing, threading (for now), and sockets.
15.
▲
by
rthz
5y ago
Because a large part the Python ecosystem uses packages (and stdlib modules) with C extensions and you can't easily transpile those. The end goal of Pyodide is to be able run existing projects mostly without modification in the browse
16.
▲
by
rthz
5y ago
Yes, it was indeed a typo. Thanks!