Skip to content

Instantly share code, notes, and snippets.

@fornit1917
fornit1917 / urls-list.txt
Created October 20, 2020 19:00
Just urls list for files downloading
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
{
"editor.tokenColorCustomizations": {
"[Darcula Extra]": {
"textMateRules": [
{
"scope": ["entity.name.type.class.cs", "storage.type.cs"],
"settings": {
"foreground": "#7A9EC2"
}
}
@fornit1917
fornit1917 / settings.json
Last active December 8, 2018 09:21
VS Code: Dark+ to Darcula Soft
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"foreground": "#808080"
}
},
{
"scope": "constant.language",
@fornit1917
fornit1917 / nginx.cfg
Last active May 10, 2018 13:09
Nginx proxy config example (not php)
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;
@fornit1917
fornit1917 / iptables.sh
Last active April 6, 2018 19:09
Close ports by iptables
#!/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
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
@fornit1917
fornit1917 / pom.xml
Last active January 17, 2017 20:37
My template of pom.xml for simple projects
<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>