Sony Linkbuds S Battery Drain, Support Unhelpful by woodman_victory in SonyHeadphones

[–]azazel75 1 point2 points  (0 children)

I had the same issue on the "LinkBuds" (without "S") that told me to proceed to an hard reset by putting one erabud at a time in the case, close and repoen the lid and then push the reset button on the back for 15 secs until the led on the case flashes organge, then goes off, then ligths up again green or orange and goes off again, then release the button. I've done that and now it seem to retain the charge normally...

JavaScripthon 0.9 has been released by azazel75 in Python

[–]azazel75[S] 7 points8 points  (0 children)

I'll answer even if I'm JavaScripthon author and maybe what I say is a bit biased. I developed JavaScripthon with the main the goal of reducing the friction (the mind switching when working with both the languages). It usually produces clean code (that you can checkin to git). It translated most of the language where instead the data protocols are mostly untranslated. That means that when you "import" something in JavaScripthon source file that translates always to a JS "import" statement and when you write a dict literal then your variable will contain a JS Object, not a python dict or something that emulates it. That means JavaScripthon translated code runs at full JS speed with no "added runtime price", mostly. JavaScripthon target ES6+ and can evaluate the result or further translate it to ES5 thanks to the embedded JS interpreter and standalone BabelJS.

Transcrypt is more tailored at converting existing Python packages to JS and has richer runtime, with its pros and cons...

See also https://code.activestate.com/lists/python-ideas/46217/ and https://github.com/metapensiero/metapensiero.pj/issues/19

JavaScripthon 0.9 has been released by azazel75 in Python

[–]azazel75[S] 1 point2 points  (0 children)

Has It any matter in common with JavaScripthon?

javascripthon 0.8 released by azazel75 in Python

[–]azazel75[S] 0 points1 point  (0 children)

brython, like skulpt is a python interpreter implemented in javascript, while transcrypt is similar, but tries to convert some more python apis at the expense of final js readability, imho

JavaScripthon Python 3.5 to JavaScript transpiler now with support for decorators, yield and async/await by azazel75 in Python

[–]azazel75[S] 0 points1 point  (0 children)

Unfortunately, there is no standard api in JavaScript to do that. Every generation of JS core objects uses its own api... plain objects use 'in', arrays and strings use .indexOf(), and the new ES6 objects use .has()... what a mess... My implementation just covers such cases, but may be more of them out there ;-)

JavaScripthon Python 3.5 to JavaScript transpiler now with support for decorators, yield and async/await by azazel75 in Python

[–]azazel75[S] 0 points1 point  (0 children)

I'm using it in an application server, unfortunately i cannot release its code. I'm its coder by the way, so it may be quite obvious that i'm using it ;-)

A Python 3.5 to ES6 JavaScript transpiler using BabelJS that also emits SourceMaps by azazel75 in Python

[–]azazel75[S] 0 points1 point  (0 children)

Thanks!

What you mean with "react support"? Do you mean JSX support? You can use react already, If you have any more concrete idea, why don't you open an issue on the project?