I hereby claim:
- I am arashm on github.
- I am thearashm (https://keybase.io/thearashm) on keybase.
- I have a public key whose fingerprint is A4E0 F08E DCD6 83C7 2C9A DAEE 4BE1 AC21 B6B6 E8FA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| set fisher_home ~/.local/share/fisherman | |
| set fisher_config ~/.config/fisherman | |
| set -gx EDITOR vim | |
| set -gx GEM_EDITOR vim | |
| set -gx LESSOPEN "| /usr/bin/src-hilite-lesspipe.sh %s" | |
| set -gx LESS ' -R ' | |
| set -gx TERM xterm-256color | |
| set -gx RUST_SRC_PATH $HOME/workspace/NiceProjects/Rust/rust/src | |
| set -gx LANG en_US.utf8 | |
| set -gx LC_ALL en_US.utf8 |
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(query_start, clock_timestamp()), 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(query_start, clock_timestamp()), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| LUG Name | URL |
|---|---|
| Arak | http://tiny.cc/arak |
| Esfehan | http://tiny.cc/esfahan |
| Ahvaz | http://tiny.cc/ahwaz |
| Tehran | http://tiny.cc/teh |
| Zanjan | http://tiny.cc/zanjan |
| Shiraz | http://tiny.cc/shiraz |
| function nginx-enable --argument-names config_name -d "enable the given nginx config" | |
| set nginx_conf_path "/etc/nginx" | |
| set available_directory "servers-available" | |
| set enabled_directory "servers-enabled" | |
| if test ! -n "$config_name" | |
| echo "No config is given." | |
| return | |
| end |
| #!/bin/bash | |
| echo "Generating an SSL private key to sign your certificate..." | |
| openssl genrsa -des3 -out certificate.key 1024 | |
| echo "Generating a Certificate Signing Request..." | |
| openssl req -new -key certificate.key -out certificate.csr | |
| echo "Removing passphrase from key (for nginx)..." | |
| cp -v certificate.{key,org} | |
| openssl rsa -in certificate.org -out certificate.key |
| # frozen_string_literal: true | |
| require 'socket' | |
| class Client | |
| def initialize | |
| @socket = TCPSocket.new('localhost', 2000) | |
| end | |
| def next_line |
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
| #!/usr/bin/env ruby | |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'rest-client' | |
| gem 'colorize' | |
| end |