PostgreSQL
coub
express.js
freeware
git
jquery
laravel
links
linux
macos
mysql
node.js
php
powershell
python
ubuntu
vim
virtualbox
анекдот
блог
игры
интересно
стихи
цитаты
Xfce Terminal / Terminal Emulator - save tabs config
July 19, 2024
Usually there is a need to save tabs and its folder locations of Terminal to avoid routine everyday actions. There is a different terminals (Windows Terminal is my fav for Win 10), some of them has option to save tabs settings, some of them can't.
In case of Xfce Terminal we have an option to use command line to resolve this issue.
Man is the man, as usual .)
In case of Xfce Terminal we have an option to use command line to resolve this issue.
Man is the man, as usual .)
man xfce4-terminalTons of interesting things there, but for me this simple line is enough
xfce4-terminal --maximize -T "HOST OS" --working-directory=/home/ijin --tab -T "!! GUEST OS !!" --working-directory=/home/ijin/vagrant-vms/tatuinAdded that to launcher and that is it. Fix paths and tab names for yourself.
XFCE: Hide window from Alt+Tab
July 18, 2024
In case you have 2 (or more) monitors using for monitoring/stats/youtube/etc it is often case when you need to reduce windows quantity during Alt+Tab (its comfy).
Unfortunateley, there is no such option in Win10/11.
But, thanks God, we're using XFCE. Here you can easily do this with the command
Just like that. No need permanent running external software.
Unfortunateley, there is no such option in Win10/11.
But, thanks God, we're using XFCE. Here you can easily do this with the command
/usr/bin/wmctrl -r :SELECT: -b toggle,skip_pager # man wmctrl is very interesting too.As for me, i've made a launcher for this, like this:
One TwoCalling this command you'll see changed cursor which you have to use for click on the window you want to show/hide from Alt-Tab.
Just like that. No need permanent running external software.
How to use Webdav with/for Laravel 5 app
January 28, 2018
Not so hard, than you can imagine. I've spent some time and prepared working solution right here. Have a nice day!
Linux: ports state for active internet connections
October 13, 2017
Easy
sudo netstat -atpnOr check exact app by name
sudo netstat -atpn | grep -i nginx
PHP 7.1 with imagick and ms sql (debian jessie compatible, mx 16)
October 13, 2017
Remove your PHP before, if needed, for sure.
## debian sudo echo "deb https://packages.sury.org/php/ jessie main" > /etc/apt/sources.list.d/php71.list ## ubuntu sudo add-apt-repository -y ppa:ondrej/php sudo apt-get update sudo apt-get install php7.1 php7.1-curl php7.1-igbinary php7.1-intl php7.1-mcrypt php7.1-readline php7.1-xml php7.1-cli php7.1-fpm php7.1-imagick php7.1-json php7.1-mysql php7.1-redis php7.1-zip php7.1-common php7.1-gd php7.1-imap php7.1-mbstring php7.1-opcache php7.1-sybaseThat is fine working set for Laravel 5.5