This file contains 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
https://sun9-49.userapi.com/5ORYZm-mry5yqy7CtSKHJTZZHH5r2USfnPCDgw/-2mmyTxTSGU.jpg | |
https://sun9-36.userapi.com/O8I7GssL0yfeaG24Xz9OgsJLXXNHyxGinGq3xg/cdVMq1sDBGw.jpg | |
https://sun9-65.userapi.com/9x1IzxomT2OxvBgOdLKRgL6j2S-SKo_PZm1XQA/jijvQwiDDXQ.jpg | |
https://sun9-65.userapi.com/cDjwGmNpJCPQQmAIP_kUyR5PwjZRbotsKoMxiQ/zOKzI6VjgJk.jpg | |
https://sun9-74.userapi.com/sARZpSzjMITQ8UbXquQTb1eIk8oUREpRVdt5NQ/f6GjC1nlh14.jpg | |
https://sun9-29.userapi.com/uqNtAZl9Q7CyZb9F4pUIAdfyXimXxPlC-CZHoA/Ta1ejaR_d24.jpg | |
https://sun2.informsvyaz.userapi.com/WIYSXulrPFfsXG61rAeWhzGZOUXUQuHkLtxYzQ/SsiCbJREAps.jpg | |
https://sun9-25.userapi.com/kPoZiFoIz0GM8hNvLPTkjKvjN3JQfkhjyWKaWg/R2d1GFhFbfM.jpg | |
https://sun9-43.userapi.com/kHehlsFefnufolbZOcqCpUfsQGcL4VJx3Jya8Q/4LpZLZ99bxw.jpg | |
https://sun9-70.userapi.com/X2hu9W8PLSiaSGO8ATZzen8trg4beOJgnSXu2A/2nQt7KI31Eg.jpg |
This file contains 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
{ | |
"editor.tokenColorCustomizations": { | |
"[Darcula Extra]": { | |
"textMateRules": [ | |
{ | |
"scope": ["entity.name.type.class.cs", "storage.type.cs"], | |
"settings": { | |
"foreground": "#7A9EC2" | |
} | |
} |
This file contains 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
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "comment", | |
"settings": { | |
"foreground": "#808080" | |
} | |
}, | |
{ | |
"scope": "constant.language", |
This file contains 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
upstream app_backend { | |
server 127.0.0.1:8901; | |
keepalive 64; | |
} | |
# redirect from http to https | |
server { | |
listen *:80; | |
server_name example.com www.example.com; |
This file contains 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
#!/bin/bash | |
# | |
# Flush iptables | |
# | |
iptables -F | |
# | |
# Allow SSH, HTTP, HTTPS | |
# | |
iptables -A INPUT -p tcp --dport 22 -j ACCEPT | |
iptables -A INPUT -p tcp --dport 80 -j ACCEPT |
This file contains 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
misc | |
year, 2018 | |
<div id="vk_post_1431411_1690"></div> <script type="text/javascript" src="https://vk.com/js/api/openapi.js?160"></script> <script type="text/javascript"> (function() { VK.Widgets.Post("vk_post_1431411_1690", 1431411, 1690, 'k22tX7iNOqPHDXHQaezo_wnDRg', {width: 500}); }()); </script> | |
metal | |
Pure Wrath, black, atmospheric | |
<div id="vk_post_-8881618_405045"></div> <script type="text/javascript" src="https://vk.com/js/api/openapi.js?159"></script> <script type="text/javascript"> (function() { VK.Widgets.Post("vk_post_-8881618_405045", -8881618, 405045, '3K6D--so4jAYEZkmvYa93tgHQw', {width: 500}); }()); </script> | |
post | |
There's A Light |
This file contains 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>jlearn</groupId> | |
<artifactId>jlearn-parser</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>jlearn-parser</name> |