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 |
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
#!/usr/bin/env ruby | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'rest-client' | |
gem 'colorize' | |
end |
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
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 |
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
# frozen_string_literal: true | |
require 'socket' | |
class Client | |
def initialize | |
@socket = TCPSocket.new('localhost', 2000) | |
end | |
def next_line |
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
#!/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 |
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
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 |
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
-- 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%' |
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
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 |
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:
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
#!/usr/bin/env ruby | |
# gem install mechanize | |
require 'mechanize' | |
abort "Usage:\n\tradiojavan.rb \"https://www.radiojavan.com/playlists/playlist/mp3/02596ef9986a\" output_txt" if ARGV.size < 2 | |
playlist_url = ARGV[0] | |
output_file = ARGV[1] | |
HOST = 'https://www.radiojavan.com' |
NewerOlder