I hereby claim:
- I am gambala on github.
- I am gambala (https://keybase.io/gambala) on keybase.
- I have a public key ASAcNq3bEZkYNOoxulD8WtPjwhUaFzzl4PZQCw3cycIKxwo
To claim this, I am signing this object:
gem 'blueimp-gallery' |
/* https://www.color-hex.com/color-palette/36646 */ | |
html, body, .main_div { | |
background: #4b5162; | |
background: #282A36; | |
background: #3b3d4a; | |
color: #e5e5e5; | |
color: #F8F8F2; | |
} |
# https://stackoverflow.com/a/14061796/2237879 | |
# | |
# This hack allows you to run make commands with any set of arguments. | |
# | |
# For example, these lines are the same: | |
# > make g devise:install | |
# > bundle exec rails generate devise:install | |
# And these: | |
# > make add-migration add_deleted_at_to_users deleted_at:datetime | |
# > bundle exec rails g migration add_deleted_at_to_users deleted_at:datetime |
I hereby claim:
To claim this, I am signing this object:
module ApplicationHelper | |
def http_url(url) | |
return url if Rails.env.development? | |
"/http_proxy?url=#{url}" | |
end | |
end |
inherit_from: .rubocop_todo.yml | |
AllCops: | |
Exclude: | |
- 'bin/*' | |
- 'db/schema.rb' | |
- 'node_modules/**/*' | |
- 'vendor/**/*' | |
TargetRubyVersion: 2.4 | |
Layout/IndentationConsistency: | |
EnforcedStyle: normal |
p = user.ip_addresses.size | |
p = user.ip_addresses.value |
import urlWithParams from 'urlWithParams' | |
fetch( | |
urlWithParams('/api/v1/cities.json', { | |
name: input, | |
city_id: this.state.cityID, | |
}) | |
) | |
.then((response) => response.json()) | |
.then((json) => { |
/* webfont */ | |
@import 'https://fonts.googleapis.com/css?family=Roboto'; | |
body, | |
button, | |
html, | |
input, | |
select, | |
textarea { |
class PalindromSearcher | |
attr_accessor :string | |
def initialize(string) | |
@string = string | |
end | |
def longest | |
return unless all.any? | |
all.max_by(&:length) |