I hereby claim:
- I am ptico on github.
- I am ptico (https://keybase.io/ptico) on keybase.
- I have a public key ASD84JPGkyH33x0DJUEohQ0xz_lTuCLfGUu9cIAdS9XoIgo
To claim this, I am signing this object:
/* How to calculate postgreSQL database size in disk ? */ | |
SELECT pg_size_pretty(pg_database_size('thedbname')); | |
/* Calculate size of a table including or excluding the index */ | |
SELECT pg_size_pretty(pg_total_relation_size('big_table')); | |
SELECT pg_size_pretty(pg_relation_size('big_table')); /* without index */ | |
/* See indexes on a table with `\d tablename` */ |
require 'benchmark' | |
require 'benchmark/ips' | |
require 'benchmark/memory' | |
require 'faker' | |
class Bench | |
attr_reader :benchmarks | |
attr_accessor :bmbm_iters |
AddressSchema = Dry::Schema.Params do | |
required(:street).filled(:string) | |
required(:city).filled(:string) | |
required(:zipcode).filled(:string) | |
required(:email).filled(:string) | |
end | |
# ... | |
# CREATE { street: 'Baker Street', city: 'London', zipcode: 'NW1/W1', email: '[email protected]' } |
class Parts | |
def initialize(parts) | |
@parts = parts | |
end | |
def join(part_divider, word_divider='') | |
@parts.map do |word| | |
word.join(word_divider) | |
end.join(part_divider) | |
end |
{ | |
"plugins": | |
[ | |
"transform-undefined-to-void", | |
"transform-es2015-arrow-functions", | |
"transform-es2015-block-scoping", | |
"transform-es2015-block-scoped-functions", | |
"transform-es2015-constants", | |
"transform-es2015-destructuring", | |
"transform-es2015-parameters", |
I hereby claim:
To claim this, I am signing this object:
source 'https://rubygems.org' | |
BUNDLE_RAILS_VERSION = '~> 4.2.4' | |
# Rails | |
gem 'railties', BUNDLE_RAILS_VERSION | |
gem 'activesupport', BUNDLE_RAILS_VERSION | |
gem 'actionpack', BUNDLE_RAILS_VERSION | |
gem 'actionmailer', BUNDLE_RAILS_VERSION | |
gem 'activejob', BUNDLE_RAILS_VERSION |
# read more at https://terrty.net/2014/ssl-tls-in-nginx/ | |
# latest version on https://gist.github.com/paskal/628882bee1948ef126dd/126e4d1daeb5244aacbbd847c5247c2e293f6adf | |
# security test score: https://www.ssllabs.com/ssltest/analyze.html?d=terrty.net | |
# your nginx version might not have all directives included, test this configuration before using in production against your nginx: | |
# $ nginx -c /etc/nginx/nginx.conf -t | |
server { | |
# public key, contains your public key and class 1 certificate, to create: | |
# (example for startssl) | |
# $ (cat example.com.pem & wget -O - https://www.startssl.com/certs/class1/sha2/pem/sub.class1.server.sha2.ca.pem) | tee -a /etc/nginx/ssl/domain.pem > /dev/null |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.pretty-form { | |
input { | |
&[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="month"], &[type="number"], &[type="search"], &[type="tel"], &[type="week"] { | |
&:invalid, .invalid & { | |
color: red; | |
} |