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
| const messages = { | |
| en: defaultMessages, | |
| hi: deepmerge(JSON.parse(JSON.stringify(defaultMessages)), { | |
| pages: { | |
| identification: { | |
| step: 'स्टेप', | |
| step1Title: 'इंटरनेट से जुड़ने के लिए अपना फोन नंबर सत्यापित करें।', | |
| step2Title: 'SMS से प्राप्त कोड डालें।', | |
| successTitle: 'आपका फोन नंबर सफलतापूर्वक सत्यापित हो गया है।', |
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
| /*base styles*/ | |
| body { | |
| font: 12px/16px "Roboto", Arial, Tahoma, Verdana, sans-serif; | |
| text-rendering: geometricPrecision; | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4 { |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>DASHBOARD</title> | |
| <meta name="description" content="DASHBOARD"> | |
| <meta name="author" content="D"> | |
| </head> |
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
| 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, |
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
| 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" |
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
| 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| |
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
| {"lastUpload":"2019-03-24T19:37:10.866Z","extensionVersion":"v3.2.7"} |
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
| 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+/ |
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
| http://www.skype.com/go/getskype-sse | |
| https://pcsupport.lenovo.com/ru/en/products/LAPTOPS-AND-NETBOOKS/100-SERIES/110-15IBR/downloads/DS112993 | |
| http://mpc-hc.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
| AllCops: | |
| TargetRubyVersion: 2.3 | |
| Exclude: | |
| - 'db/schema.rb' | |
| - 'vendor/**/*' | |
| - 'tmp/**/*' | |
| - 'bin/*' | |
| - 'docs/**/*' | |
| Metrics/LineLength: |