Skip to content

Instantly share code, notes, and snippets.

View alxekb's full-sized avatar
🏠
Working from home

disassembler alxekb

🏠
Working from home
  • Global
  • 03:37 (UTC +02:00)
View GitHub Profile
@alxekb
alxekb / ruby_meta.md
Created July 13, 2021 12:33 — forked from jamesyang124/ruby_meta.md
Ruby meta programming

#!/bin/ruby --verion => 2.0.0-p353

Self

In Ruby, self is a special variable that always references the current object.

  • Inside class or module definition, self refer to the Class or Module object.
  • Inside instance method, self refer to future instance object.
  • Inside class method, self refer to the class.i
@alxekb
alxekb / fetch_worker.rb
Created August 13, 2020 15:24 — forked from Evshved/fetch_worker.rb
same code
require 'logger'
class FetchContentAdDomainsWorker
include Sidekiq::Worker
extend IntegrationsWrapper
URL = 'https://rest.content.ad/reports/publisher?output=json'.freeze
sidekiq_options retry: 3, queue: :integrations, backtrace: true
wrap_over :network_setting, :content_ad
@alxekb
alxekb / ruby_on_rails_deployment.md
Created February 13, 2020 13:41 — forked from zentetsukenz/ruby_on_rails_deployment.md
Deploy Ruby on Rails application with Docker Compose and Capistrano with ease

Docker

Files and Folders.

|
|\_ app
|...
|\_ docker
| |
@alxekb
alxekb / routes.rb
Created February 7, 2020 09:00 — forked from bitkidd/routes.rb
Интеграция Яндекс.Кассы с Rails
# config/routes.rb
YandexKassaIntegration::Application.routes.draw do
# ...
scope '/yandex_kassa' do
controller 'yandex_kassa', constraints: { subdomain: 'ssl' } do
post :check
post :aviso
get :success
get :fail
FROM ruby:2.6.1
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
ENV RAILS_ROOT /var/www/astecas
RUN mkdir -p $RAILS_ROOT
WORKDIR $RAILS_ROOT
@alxekb
alxekb / nginx.conf
Created November 29, 2019 16:01 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@alxekb
alxekb / curl.md
Created September 6, 2019 05:06 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.