Viewing profile — azazel75
azazel75
HN member- Joined
- Tue, Jun 18, 2013, 12:54 PM UTC
- HN karma
- 79
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About azazel75
No profile information was provided.
Recent public activity
-
comment
Comment #45725383
[flagged]
-
comment
Comment #43679547
[flagged]
-
comment
Comment #39153982
Some years ago with a friend we built a Lasersaur ( https://lasersaur.com ) from scratch. It is equipped with a 130 w CO2 laser. Amazing open source project. Unfortunately the guy …
-
comment
Comment #38536558
The license kinda sucks though: ``` 3. USE RESTRICTIONS Licensee is expressly forbidden from: (a) Incorporating, modifying, or using the Software as part of any other product or se…
-
comment
Comment #20962871
"Before Ethernet was common, BNC coaxial cables were used on some NICs as well" Yes, at that time Ethernet was coaxial as well, the 10Base2
-
comment
Comment #19862927
So we live in a society that isn't able to find the resources to teach someone how to read and get free... Instead that people can buy an Android phone and become a slave of the te…
- story
-
comment
Comment #14471111
That's like a Google tax, with the plus that you consciously agree to let it track you more than ever... wtf!
-
comment
Comment #11400109
I could assure you that even transcrypt cannot transpile Django. It does multiple inheritance with a polyfill and overally is much more "fatter" than JavaScripthon. But with JavaSc…
- comment
-
comment
Comment #11399875
It's in development, as many others software projects are, and is far from complete. The goal is to translate as much of core semantics as possible, but i doubt that all the core s…
-
comment
Comment #11397913
It cannot be used to convert python frameworks to javascript, nor Django nor any other
-
comment
Comment #11397540
Good :-) Do you have any link for this chrome detail about optimization? str(x) conversion is missing... i'll will implement it asap
-
comment
Comment #11397522
The main reason is... context switching, also i'm a big fan of python's standard library, but I have yet to do any complete work just with it.
-
comment
Comment #11397238
1) it renders import and from...import statements to equivalent ES6 imports. If you use something like Webpack down the pipeline you can already mix ES6 imports and CommonJS requir…
-
comment
Comment #11397183
I'm a big fan of RapydScript, unfortunately it requires nodejs and I would prefer not have to.. but hey, there is a space for everybody ;-)
-
comment
Comment #11397155
It's implementable really and it is half-implemented, have a look at the call conventions... additional keyword arguments can be specified without any problem The problem is that t…
-
comment
Comment #11397109
Yes, I drink it everyday
-
comment
Comment #11396883
Your post seems quite imprecise about Python's semantics...
-
comment
Comment #11396767
ops, sorry for that. Issues are enabled now ;-)
-
comment
Comment #11396655
For-of only works for iterable sources, it would not be a complete replacement of for...in, also it seems a bit slower that for...in as of now.. see https://kpdecker.github.io/six-…
-
comment
Comment #11396628
If jQuery is installed globally, without package management, just use: from __globals__ import jQuery .... jQuery('#an_id')...
-
comment
Comment #11396608
Javascripthon supports converting either a python source file or a python function object directly, but actually using the embedded js interpreter to do the transpilation takes som…
-
comment
Comment #11396548
Python lists are supported: * as literals; * in for loops; Keyword arguments accumulator has no corresponding feature in the ES6 world, as far as I know....
-
comment
Comment #11396392
Have a look at the example! ;-)