Skip to content

Instantly share code, notes, and snippets.

View PlugIN73's full-sized avatar
πŸ’­
πŸƒβ€β™‚οΈ

Alexander Vagin PlugIN73

πŸ’­
πŸƒβ€β™‚οΈ
  • Ulyanovsk, Russia
View GitHub Profile

VPN-сСрвисы

БущСствуСт ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство VPN-сСрвисов. Π’ΠΎΡ‚ Π΄Π²Π° популярных Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°:

  1. https://nordvpn.com/ большиС скидки ΠΏΡ€ΠΈ ΠΎΠΏΠ»Π°Ρ‚Π΅ Π·Π° 2 ΠΈ 3 Π³ΠΎΠ΄Π°, Π²ΠΎΠ·Π²Ρ€Π°Ρ‚ Π΄Π΅Π½Π΅Π³ Π² Ρ‚Π΅Ρ‡Π΅Π½ΠΈΠ΅ 30 Π΄Π½Π΅ΠΉ (Ссли Π·Π°ΠΉΡ‚ΠΈ Π½Π° https://nordvpn.com/features/ ΠΈ ΠΏΡ€ΠΎΠ»ΠΈΡΡ‚Π°Ρ‚ΡŒ Π²Π½ΠΈΠ·, Ρ‚ΠΎ появится ΠΏΠΎΠΏΠ°ΠΏ со скидкой 77% β€” $99 Π·Π° Ρ‚Ρ€ΠΈ Π³ΠΎΠ΄Π°)
  2. https://www.privateinternetaccess.com/ старый, Π΄ΠΎΠ±Ρ€ΠΎΡ‚Π½Ρ‹ΠΉ

Π’Π°Π±Π»ΠΈΡ†Π° сравнСния ΠΊΡƒΡ‡ΠΈ VPN-сСрвисов https://thatoneprivacysite.net/vpn-comparison-chart/

Π‘ΠΌ. Ρ‚Π°ΠΊΠΆΠ΅:

@anildigital
anildigital / gist:862675ec1b7bccabc311
Created July 26, 2014 18:27
Remove dangling docker images
docker rmi $(docker images -q -f dangling=true)
@mokevnin
mokevnin / playbook
Last active December 31, 2015 20:39
---
-
hosts: default
vars:
database:
password: my_secret_password
# server_name: "codebattle.me"
erlang:
directory: ~/.kerl/erlangs
@ubermuda
ubermuda / nginx.conf
Created November 5, 2013 22:13
Proxy a unix socket HTTP server to a tcp port using nginx.
server {
listen 127.0.0.1:9000;
location / {
proxy_pass http://unix:/var/run/docker.sock:/;
}
}
@nblumoe
nblumoe / vim_fireplace_paredit_cheat_sheet.md
Created April 24, 2013 06:41
Simple cheat sheet for vim fireplace and paredit

fireplace

  • cpr => (require ... :reload)
  • cpR => (require ... :reload-all)

Evaluation

  • :Eval (clojure code) => runs (clojure code) in repl
  • cpp => evaluate inn-most expessions under cursor
  • cp<movement> => evaluate text described by <movement>
  • cqp => opens quasi-repl
  • cqc => quasi-repl command line window
@Andrew8xx8
Andrew8xx8 / terminal-open.sh
Created December 1, 2012 17:17
Opens terminal with specified tabs
#!/bin/bash
USAGE="Usage: -p Project path"
while getopts p: options; do
case $options in
p ) PROJECT="$OPTARG";;
esac
done
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active March 14, 2026 17:03
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
@tobyhede
tobyhede / gist:3179978
Created July 26, 2012 02:53
Ruby/Rails date format cheat sheet
From http://linux.die.net/man/3/strftime
%a - The abbreviated weekday name (``Sun'')
%A - The full weekday name (``Sunday'')
%b - The abbreviated month name (``Jan'')
%B - The full month name (``January'')
%c - The preferred local date and time representation
%d - Day of the month (01..31)
%e - Day of the month without leading 0 (1..31)
%g - Year in YY (00-99)
@jlong
jlong / uri.js
Created April 20, 2012 13:29
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"
@tonywok
tonywok / results.md
Created September 15, 2011 01:33
Rails 3.1 Callbacks
s = Test.new(:name => "foo")

# ActiveRecord::Test after_initialize
# ActiveRecord::Test after_initialize, :on => :update
# ActiveRecord::Test after_initialize, :on => :create
# ActiveRecord::TestObserver after_initialize

# ===> #<Test id: nil, name: "foo", created_at: nil, updated_at: nil>