curl https://raw.githubusercontent.com/imomaliev/tmux-bash-completion/master/completions/tmux > ~/.bash_completion
Category: Development
IntelliJ IDEA 2020.2.3
At the moment, the actual jetbrains-agent can be found in this Telegram channel (see pinned messages).
Enjoy.
Explain linux commands
IntelliJ IDEA 2020.1.2
For IntelliJ IDEA 2020.1.2 - 2020.1.3 we need jetbrains-agent.jar version 3.2.1
NB: does not work for IDEA 2020.1.4!
- download https://gofile.io/d/YODcei
- extract archive, find
jetbrains-agent-2020.1.2/lib/jetbrains-agent.jar
- in IDEA, go to Preferences -> Plugins
- select 'Install plugin from disk...', choose
jetbrains-agent.jar
- choose 'Activate by license server', url https://fls.jetbrains-agent.com
- enjoy
IntelliJ IDEA 2020.1
Good news - IntelliJ IDEA has a major update, and previous solution from Neo Peng still works.
Recipe step by step:
- open https://zhile.io/2018/08/17/jetbrains-license-server-crack.html
- find link to OneDrive(download link)
- download jetbrains-agent-latest.zip
- in IDEA, go to Preferences -> Plugins
- select 'Install plugin from disk...', choose downloaded file
- choose 'Activate by license server'
- enjoy
Supported products:
- IntelliJ IDEA 2020.1 and below
- AppCode 2019.3.7 and below
- CLion 2019.3.5 and below
- DataGrip 2020.1 and below
- GoLand 2020.1 and below
- PhpStorm 2019.3.4 and below
- PyCharm 2020.1 and below
- Rider 2019.3.4 and below
- RubyMine 2019.3.4 and below
- WebStorm 2020.1 and below
UPD: see IntelliJ IDEA 2020.1.2 for latest version solution.
IntelliJ IDEA 2019.3+
Китайцы продолжают нелегкую борьбу с IntelliJ 🙂
Финт с license server уже не работает - на марше jetbrains-agent
Проверено на 2019.3.3 - работает!
UPD: update for 2020.1
UPD: see IntelliJ IDEA 2020.1.2 for latest version solution.
Stop reference spam from *.xyz domains
Add to /var/www/html/.htaccess
following lines:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Block/Forbid Referer Spammers/Referer Phishing
RewriteCond %{HTTP_REFERER} .*\.xyz [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.best [NC]
RewriteRule .* - [F]
</IfModule>
Restart apache
sudo service apache2 restart