simo

Results 396 comments of simo
trafficstars

There are certain sites that are not allowed for Chrome extensions like for example the Chrome Store. Having the jCrop plugin initialized on the page and using the Screenshot Capture...

These are not allowed too :) I think there is an option to allow it though. Check out this [answer](http://stackoverflow.com/a/19046796/1260020) on StackOverflow.

That's a good workaround, thanks for sharing it :+1: I'll think about adding it to the extension, but that's not a high priority one too.

Thanks @mike442144, I really appreciate it! The middleware approach is very powerful indeed. The idea here is that you have a simple `compose` function that calls each one of it's...

Yeah, I really do see similarities between Scheme (that is a Lisp) and JavaScript. Plus, the two main ingredients in JavaScript comes from: - Scheme (the FP part, Lisp) -...

Good catch! Also thanks for the kind words, I'm glad you like it :+1:

I have modules in: ``` ~/modules/my-module/node_modules ~/root/node_modules ~.node_modules ``` And I'm trying to run `my-module` devtool is somewhere in `~/.nvm/....` Modules outside of the `~/modules/my-module/node_modules` result in the above error.

Here is how Node [load modules from node_modules](https://nodejs.org/api/modules.html#modules_loading_from_node_modules_folders) It searches in the `.node_modules` as well. This is my development setup and it won't be easy for me to change it...

Here is how I run my module: ``` bash mighty@sky:~/modules/sql-admin$ node index.js ``` Here is how I run it using devtool: ``` bash mighty@sky:~/modules/sql-admin$ devtool index.js -s ``` I have...

It's all in my $HOME `~`, it points to my user's home folder. All of my files are in my home folder. From the [docs](https://nodejs.org/api/modules.html#modules_loading_from_node_modules_folders): > For example, if the...