enable-ssh-support
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
require "openssl" | |
require "digest" | |
def aes128_cbc_encrypt(key, data, iv) | |
key = Digest::MD5.digest(key) if(key.kind_of?(String) && 16 != key.bytesize) | |
iv = Digest::MD5.digest(iv) if(iv.kind_of?(String) && 16 != iv.bytesize) | |
aes = OpenSSL::Cipher.new('AES-128-CBC') | |
aes.encrypt | |
aes.key = key | |
aes.iv = iv |
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
{ | |
"info": { | |
"_postman_id": "32c262fa-7384-4477-a610-cde252c8829e", | |
"name": "Tinxy Open APIs", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Device State", | |
"request": { |
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 | |
rev="12" | |
_log(){ | |
echo "$(date '+%Y-%m-%d %H:%M:%S') - ${streamid} - $1" >> /tmp/ffmpeg.log | |
} | |
_log_para(){ | |
echo "$1" | fold -w 120 | sed "s/^.*$/$(date '+%Y-%m-%d %H:%M:%S') - ${streamid} - = &/" >> /tmp/ffmpeg.log |
I hereby claim:
- I am ashishwadekar on github.
- I am ashishwadekar (https://keybase.io/ashishwadekar) on keybase.
- I have a public key whose fingerprint is E586 022F D1C8 95B1 D535 18D1 EF44 2D74 95D9 530A
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
0-mail.com | |
007addict.com | |
020.co.uk | |
027168.com | |
0815.ru | |
0815.su | |
0clickemail.com | |
0sg.net | |
0wnd.net | |
0wnd.org |
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
Accessing Helper modules in rails | |
http://www.funonrails.com/2010/12/accessing-helper-modules-in-rails.html | |
1. Helper methods all the time for views | |
class ApplicationController < ActionController::Base | |
helper :all# include all helpers, all the time for views | |
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
" Basic Setup | |
set nocompatible | |
syntax enable | |
filetype plugin indent on | |
set background=dark | |
set shell=/bin/bash | |
set linespace=2 | |
set tabstop=2 shiftwidth=2 expandtab | |
set hlsearch | |
set number |
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 hidden characters
{ | |
"auto_complete_commit_on_tab": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", | |
"draw_white_space": "selection", | |
"file_patterns": | |
[ | |
"\\.html\\.erb", | |
"\\.rb", | |
"\\.rake", |
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
module JsonSerializer | |
module_function | |
# | |
# Usage: | |
# JsonSerializer.find_by_id(User, 1, only: [:id, email, :address], except: [:address]) | |
# | |
def find_by_id(klass, id, options = {}) | |
sql = "SELECT row_to_json(results) FROM ( | |
SELECT #{selected_attributes(klass, options)} |
NewerOlder