-
How to crazy easily speed up your npm install speed
Thanks to Gavin Joyce i recently found out how easily you could speed up your npm install - just do npm set progress=false and you're done! That's so sweet :) Thanks Gavin.…
-
Getting Javascript-Garden as epub
Recently i started to look into Javascript world and one of the nice starters was mentiond Javascript-Garden . I like to read books on my phone or iPad and therefore online versions are not so nice, because you can't put bookmark on where you stopped reading. Thanks to pandoc, this book…
-
Adding Jasmine autocomplete to Intellij IDEA
So, recently i started to learn Javascript and for unit testing i took Karma + Jasmine. But i faced with one problem - in Intellij IDEA there was no autocomplete for Jasmine and all functions were marked as non-existing ones. After some googling i finally managed to find the solution. Here's…
-
Removing "Lock" from files in MaсOS X
Don't know about you, but i keep facing with one problem from time to time in MacOS X. Sometimes i try to delete or modify some files and i get “Operation cannot be completed because the item “File” is in use” or “because the file is locked” message. It can…
-
Making podcast feed out of youtube channel or playlist
For about a year now i'm a big fan of podcasts. Aspecially, when i switched my job and started to bike to the office and back. It's really handy and interesting to listen all kinds of news and discussions about programming, gadgets and IT news, console games etc. One of…
-
How to quickly check if given password is strong enough
Recently i needed to quickly check that password is strong enough in accordance with customer requirements : Passwords will contain at least (1) upper case letter Passwords will contain at least (1) lower case letter Passwords will contain at least (1) number or special character Passwords will contain at least (10)…