Jeffry Angtoni

Results 8 comments of Jeffry Angtoni
trafficstars

Solved!!!! I just add these code to the beginning line of angular-timer.min.js ``` var humanizeDuration = require("humanize-duration"); // same like my requirejs shim. Also from the humanizeDuration docs at https://github.com/EvanHahn/HumanizeDuration.js...

Hmm... just a question, does asdf support migrating global packages into the new nodejs installation, such us: `nvm install node --reinstall-packages-from=node` in `nvm`. For example: I installed `eslint` globally in...

cc: @Stratus3D. Here's my result. asdf-vm: `v0.7.8-4a3e3d6` asdf-nodejs: `cd8dc32e82507a229fe90c0b01d1089a3ac6844c` nodejs: v12.16.2 ### Plan/Execution Step I have `create-next-app` global cli in nodejs v12.16.2 LTS. Now, I want to upgrade my nodejs...

Currently, the workaround solution is opting-out `gpg` module from `~/.zpreztorc` and manually adding below script inside `~/.zprofile` file. ```sh # ~/.zshprofile unset SSH_AGENT_PID if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then...

Same... I'm currently using this framework for my side project. Maybe I and other people can together help improving this project. Thank you.. :bowing_man:

If anyone using `tsc --init` to generate the configuration file, the #16 will appear. This fix should repair that issue.

From my experiment, I got `ReferenceError: window is not defined` when running `next build` if I implemented custom `_app.js` file with some server-side data fetching method, such as `getInitialProps`. The...

Finally, I used cancellablePromise, React Mutable Ref, and dynamic import to solve that. But, currently I'm facing a performance issue when rendering more than 10 CKEditor with dynamic import, this...