This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nano ~/.local/share/applications/telegramdesktop.desktop | |
= | |
= | |
= | |
[Desktop Entry] | |
Version=1.0 | |
Name=Telegram Desktop | |
Comment=Official desktop version of Telegram messaging app | |
TryExec=/opt/Telegram/Telegram | |
Exec=/opt/Telegram/Telegram -- %u |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
C:\Windows\System32\bash.exe -c "git %*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "...", | |
"host": "....", | |
"protocol": "ftp", | |
"port": 21, | |
"username": "...", | |
"password": "...", | |
"remotePath": "/", | |
"downloadOnOpen": true, | |
"uploadOnSave": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -nv https://download.opensuse.org/repositories/home:manuelschneid3r/xUbuntu_18.04/Release.key -O Release.key | |
sudo apt-key add - < Release.key | |
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/home:manuelschneid3r.list" | |
sudo apt-get update | |
sudo apt-get install albert | |
===================== | |
curl https://build.opensuse.org/projects/home:manuelschneid3r/public_key | sudo apt-key add - | |
echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_20.04/ /' | sudo tee /etc/apt/sources.list.d/home:manuelschneid3r.list | |
sudo wget -nv https://download.opensuse.org/repositories/home:manuelschneid3r/xUbuntu_20.04/Release.key -O "/etc/apt/trusted.gpg.d/home:manuelschneid3r.asc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(function () { | |
let $reCaptchaIframe = $('iframe[title="recaptcha challenge"]'); | |
if ($reCaptchaIframe) { | |
let $reCaptchaOverlay = $reCaptchaIframe.parent(); | |
$reCaptchaOverlay.css({ | |
'height': '100%', | |
'overflow-y': 'auto', | |
'width': 'auto', | |
'background': '#fff' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<picture> | |
<source srcset="[email protected] 1x, [email protected] 2x" media="(max-width: 575px)"> | |
<img src="[email protected]" srcset="[email protected] 2x" alt=""> | |
</picture> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Dracula", | |
"editor.fontSize": 14, | |
"editor.tabSize": 4, | |
"editor.fontFamily": "Roboto Mono", | |
"editor.minimap.enabled": false, | |
"editor.tabCompletion": true, | |
"editor.fontLigatures": true, | |
"terminal.integrated.lineHeight": 1.4, | |
"terminal.integrated.fontSize": 14, |