Webpack has not enough watchers

Not enough watchers Verify that if you have enough available watchers in your system. If this value is too low, the file watcher in Webpack won’t recognize the changes:

cat /proc/sys/fs/inotify/max_user_watches

Arch users, add fs.inotify.max_user_watches=524288 to /etc/sysctl.d/99-sysctl.conf and then execute sysctl –system.

Ubuntu users (and possibly others):

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

Source

Neural turing machines

[https://arxiv.org/abs/1410.5401](Neural Turing Machines)

We extend the capabilities of neural networks by coupling them to external memory resources, which they can interact with by attentional processes. The combined system is analogous to a Turing Machine or Von Neumann architecture but is differentiable end-to-end, allowing it to be efficiently trained with gradient descent. Preliminary results demonstrate that Neural Turing Machines can infer simple algorithms such as copying, sorting, and associative recall from input and output examples.

Bye octopress, hello hugo

This tiny blog has just been migrated from octropress to hugo.

Pros:

  1. service code and content (blog posts) are not mixed
  2. easy installation and configuration/customization process
  3. no more any troubles with ruby (on mac in particular)
  4. speed

Generator is written in go lang :-), maybe for someone this is an additional argument.

Cons: … cant see, at least now

Good day!

Install matplotlib on mac sierra

During matplotlib installation (for python3) some error may occured:
‘The following required packages can not be built:

  • freetype
  • png’

Thats why some additional steps may be required:

  1. install homebrew

  2. install pkg-config

brew install pkg-config
  1. install freetype
brew install freetype
  1. install matplotlib
pip3 install matplotlib

Enjoy!