- Settings/Preferences
- Editor | Code Style | TypeScript
- "Punctuation" tab | Use SINGLE quotas in new code
- Editor | Code Style | TypeScript
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
# This is a short collection of tools that are useful for managing your | |
# known_hosts file. In this case, I'm using the '-f' flag to specify the | |
# global known_hosts file because I'll be adding many deploy users on this | |
# system. Simply omit the -f flag to operate on ~/.ssh/known_hosts | |
# Add entry for host | |
ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts | |
# Scan known hosts | |
ssh-keygen -f /etc/ssh/ssh_known_hosts -F github.com |
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
# 1. DOWNLOAD AND INSTALL OUTLINE MANAGER | |
# 2. DOWNLOAD AND INSTALL OULINE CLIENT AT ALL CLIENTS | |
# 3. CRAETE VM | |
# AT AWS FOR EXAMPLE, | |
# LIKE LOW COST t3a.micro WITH NETWORK SPEED UPTO 5Gb AND Amazon Linux OS - AMI: amazon/amzn2-ami-hvm-2.0.20220218.3-x86_64-gp2, | |
# OPEN ALL INBOUND TCP PORTS, | |
# CREATE SSH KEYS AND SET `chmode 400` FOR IT | |
# 4. CONNECT AND EXECUTE | |
ssh -i "xxx.pem" [email protected] 'sudo yum update -y; sudo yum install docker -y; sudo systemctl start docker; sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh)"' |
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
.l-vertical { display: flex; flex-direction: column; } | |
.l-horizontal { display: flex; flex-direction: row; } | |
.l-content-packed { justify-content: flex-start;} | |
.l-content-space-between { justify-content: space-between;} | |
.l-content-top-left {} | |
.l-content-top-center {} | |
.l-content-top-right {} | |
.l-content-center-left {} |
- Why we skip Photoshop by Jason Fried of 37signals - http://37signals.com/svn/posts/1061-why-we-skip-photoshop
- Style Tiles - http://styletil.es/
- Gimme Bar : Front end styleguides and pattern libraries - https://gimmebar.com/collection/4ecd439c2f0aaad734000022/front-end-styleguides
- ウェブデザイナーのための便利すぎるツール&リソース20選【最新版】 - http://www.seojapan.com/blog/20-web-design-resources
- CSS Front-end Frameworks with comparison - By usabli.ca - http://usablica.github.io/front-end-frameworks/compare.html?v=2.0
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class EvolutionarySearchAlgorithm<T> { | |
System.Random random = new System.Random(); | |
Func<T, T> mutationFunc; | |
IComparer<T> evaluationFunc; |
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
$('.yap-adtune-icon').click() && $('.yap-abuse-complaint__link:Contains(Не интересуюсь этой темой)').each((e, t) => { t.click()}); | |
$("yatag > yatag > svg").each( | |
(e, t) => { | |
setTimeout(function () { | |
$(t).parent().click(); | |
$('yatag > a:Contains(Не интересуюсь этой темой)').each((e, t) => {t.click()}); | |
}, 1000 * (e + 1)); | |
}); |
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
<html> | |
<head> | |
<script src="https://unpkg.com/vue"></script> | |
</head> | |
<body> | |
<div id="app" v-on:click="sayHello('John', $event)"> | |
{{ message }} | |
</div> |
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
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\New Windows" /f /v PopupMgr /t REG_SZ /d no | |
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\New Windows" /f /v BlockUserInit /t REG_SZ /d no | |
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\New Windows" /f /v UserInitTimeout /t REG_SZ /d no |
NewerOlder