PostgreSQL
coub
express.js
freeware
git
jquery
laravel
links
linux
macos
mysql
node.js
php
powershell
python
ubuntu
vim
virtualbox
анекдот
блог
игры
интересно
стихи
цитаты
Chrome: How to register Gmail as a default "mailto:" handler
April 05, 2017
1. First, open up a Gmail tab. You must do this from the Gmail tab, not your html5rocks one. :)
2. Open your javascript console (cmd-opt-j on Mac, ctrl-shift-j on Windows or Linux) and enter:
3. Click this mailto: link to test out your new Gmail mailto hookup!
Original article by Paul Irish
2. Open your javascript console (cmd-opt-j on Mac, ctrl-shift-j on Windows or Linux) and enter:
navigator.registerProtocolHandler("mailto", "https://mail.google.com/mail/?extsrc=mailto&url=%s", "Gmail");Accept the confirmation from the browser.
3. Click this mailto: link to test out your new Gmail mailto hookup!
Original article by Paul Irish
DeaDBeeF - The Ultimate Music Player for linux
August 06, 2016
How cool is your linux music player should be? As for me - i prefer minimal quantity of "cool features", playlists from folders, basic controls sometimes equaliser and that's it. DeaDBeeF is my choice. It simply works. Long live to project.
deadbeef.sourceforge.net
deadbeef.sourceforge.net
Visual studio code
August 06, 2016
1
I'm really impressed and super surprised. Don't know how happened that i've missed that before. Microsoft looks alive again. Linux & MacOS supported (!!!). WOW. Try it. Give it a chance.
code.visualstudio.com
code.visualstudio.com
XFCE: change first day of week to monday for calendar panel item
August 03, 2016
Simply change one setting in locale config
sudo vim /usr/share/i18n/locales/en_USFind section
week 7;19971130;7 first_weekday 1 first_workday 2Set first_weekday equal 2.
sudo locale-genRestart (full or XFCE session).
Nginx: how to set default server
August 01, 2016
Sometimes it's conveniently to set up default server, that gonna try to serve request by default. Originally, if your server got a request by IP address (for example) and can't get any requested hostname, it takes first server description from your config and tries to serve request with this server.
You can change this behavior. It's really easy. Just use default_server parameter, like this.
You can change this behavior. It's really easy. Just use default_server parameter, like this.
server { listen 80 default_server; server_name example.net www.example.net; ... }