Kent Li

Results 17 comments of Kent Li

I think this repo is not active, you can try this: [angular-electron](https://github.com/maximegris/angular-electron).

A way to have Parcel ignore some linked files is needed. However, I don't think it is a good way to add info in HTML files for this. Just keep...

我用的这个:http://www.sozi.cn/ziti/201312024554.html

赞! 没有通用解决方案是最重要的点 让我最有感触的还是题外话

If you are in development, you can try to remove .cache & build folder, and restart the strapi.

I'm late. This issue excites me. I wanna to know any progress about the `react-platform` now?

``` js function isPrime(number){ return !/^1?$|^(11+?)\1+$/.test(new Array(number + 1).join('1')); } ``` 很久前看到的用正则判断的,脑洞大开。 Reference:http://montreal.pm.org/tech/neil_kandalgaonkar.shtml

``` js function fibonacci(num) { num = +num; if (num === 1) { return [0]; } if (num === 2) { return [0, 1]; } if (num > 2) {...

话说,在写答案的时候用 ```js ... ``` 包裹代码,照顾一下看代码的人吧。