Skip to content

Instantly share code, notes, and snippets.

View sadfuzzy's full-sized avatar
🎯
Focusing

Denis Savitskiy sadfuzzy

🎯
Focusing
View GitHub Profile
@sadfuzzy
sadfuzzy / styles.css
Last active January 31, 2020 05:35
/bitrix/templates/ishop/css
/*base styles*/
body {
font: 12px/16px "Roboto", Arial, Tahoma, Verdana, sans-serif;
text-rendering: geometricPrecision;
}
h1,
h2,
h3,
h4 {
@sadfuzzy
sadfuzzy / dashboard.html
Last active June 5, 2019 13:12
Dashboard
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DASHBOARD</title>
<meta name="description" content="DASHBOARD">
<meta name="author" content="D">
</head>
config.log_level = :info
config.lograge.enabled = true
config.log_formatter = ::Logger::Formatter.new
config.action_mailer.default_url_options = { host: 'goody.im', protocol: :https }
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
openssl_verify_mode: 'none',
tls: false,
@sadfuzzy
sadfuzzy / Brewfile
Last active August 26, 2019 07:12
My brew dump
tap "adoptopenjdk/openjdk"
tap "caskroom/cask"
tap "caskroom/versions"
tap "heroku/brew"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
tap "homebrew/services"
cask "osxfuse"
brew "openssl"
@sadfuzzy
sadfuzzy / test_task.rb
Created March 11, 2019 15:38
test task
class Developer
# You need to implement Developer class so DataBase#find_developer method would not fail.
end
class DataBase
def find_developer(platform: :ruby, region: :london)
all_developers(platform, region).select do |you|
@sadfuzzy
sadfuzzy / cloudSettings
Last active March 27, 2019 09:16
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-03-24T19:37:10.866Z","extensionVersion":"v3.2.7"}
action="https://mycabinet.online/prepare" method="post"
input type="hidden" name="pid" value="#{@nko.pid}"
input type="hidden" name="sid" value="#{@nko.sid}"
input type="hidden" name="oid" value="#{Текущее время, unix формат}"
input type="hidden" name="rid" value="#{@publisher.id}"
input type="hidden" name="backurl" value="https://www.goody.im/pages/thankyou?nko_id=#{@nko.id}&nko_number=#{@nko.number}&orderid=#{orderid}&nko_title=#{@nko.title}&publisher_id=#{@publisher.id}&publisher_title=СуперТаня"
input type="hidden" name="nkoid" value="#{@nko.number}"
input type='text' name='sum' pattern="[0-9]{1,9}"
input type='text' name='payeer' placeholder='Имя' required=true
input type='text' name='email' placeholder='E–mail' required=true pattern=/\S+@\S+\.\S+/

Keybase proof

I hereby claim:

  • I am sadfuzzy on github.
  • I am sadfuzzy (https://keybase.io/sadfuzzy) on keybase.
  • I have a public key ASBZfIRsmYU8jDwYvVOY2ubquZ-TjEWGB1qZ_L4J6l3Ffwo

To claim this, I am signing this object:

@sadfuzzy
sadfuzzy / links.txt
Last active October 23, 2017 20:42
links
@sadfuzzy
sadfuzzy / .rubocop.yml
Created March 22, 2017 15:01 — forked from kovalevsky/.rubocop.yml
HttpLab common rubocop config
AllCops:
TargetRubyVersion: 2.3
Exclude:
- 'db/schema.rb'
- 'vendor/**/*'
- 'tmp/**/*'
- 'bin/*'
- 'docs/**/*'
Metrics/LineLength: