I found really user-friendly graph online builder – Desmos.
Category Archives: Рекомендую
Mocky – nice HTTP mocking service
I found easy to use mocking service – Mocky – that allows you to check not only with fixed response for GET/POST…, but also to emit any HTTP error and setup custom header.
JSFuck or how I love Javascript endless power
You can write your JS code without any alphabet character, seriously! I would say even more you can write your JS code only with 6! characters: []()!+
You could easily get several string like “true”, “false”, “undefined” and other by doing simple operations with brackets:
and now you can take any letter :
You can try to challenge yourself and convert any JS code into this format (that is called JSFuck) and there is even online converter that will help you with this task.
Git standup to prepare your notes
When you have several projects and lots of small tasks it’s easy to forget something important for standup. git standup command will help you with quick commit notes for X period of time.
angular-cli + `ng eject` => webpack welcome back
Наконец-то(начиная с 1.0.0-beta.32) разработчики angular-cli дали доступ к более тонким настройкам webpack и теперь не нужно выбирать между двумя инструментами. Выполнив команду:
[shell]
ng eject
[/shell]
у вас появится файл вебпак конфига в корне проекта, и теперь вместо команды ng вы запускаете старую добрую npm:
[shell]
ng serve -> npm start
ng build -> npm run build
…
[/shell]
P.S.: Уже наткнулся на проблему с поломанной подстановкой environment файла (issue).
VSCode Slack extension: to send snippets directly from your code
Slack for VSCode – interesting extension I’m playing around which allows you to select some piece of the code and send it to your slack channel directly from editor. Indeed code highlight is missing and channel selection could be more smart, but definitely worth a try.
Get €15 with Booking.com
Booking stats own affiliate program, pretty nice so far: you’ll both get €15 for registration and first hotel reservation. If you don’t have account yet or just want to get €15 you can use my link – https://www.booking.com/s/e166ef98 (and we both get €15).
Angular Material WYSWYG Editors
List of WYSWYG Editors that you can use with Angular Material. Thanks to Tim Brown.
zxcvbn or check your password
zxcvbn is nice open source project from Dropbox that helps you to evaluate strength of your password and also provides some hints how to improve it.
To install via npm:
$ npm install zxcvbn $ node > var zxcvbn = require('zxcvbn'); > zxcvbn('Tr0ub4dour&3');
The True size of countries
Thetruesize opened my eyes to mercator projection topic.