Drulac

Results 12 comments of Drulac

Je vais en traduire une partie aussi :)

https://github.com/jwasham/google-interview-university/pull/149

Ok, I will look to make a PR :-)

You can do it just by precising python3 as python path : ```js var PythonShell = require('python-shell'); var options = { pythonPath: 'python3' }; PythonShell.run('my_script.py', options, function (err, results) {...

can you give me an example of complex condition struct please :-) ?

Oh it's easy to make it with template literal :-) ``` ${(a) ? : 'blablabla' : '' } // or for more complex ${ (()=>{ if (a) { return 'balababala'...

test seem's to have failed because of mocha....

I have the same issu, when i use the CDN, and when I dont use the CDN :/

Hello ! If I run this bunch of code ``` sentenceCase('bon état') sentenceCase('bon etat') camelCase('bon état') ``` It output me ``` Bon tat Bon etat bonEtat ``` I was expecting...