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:43 (UTC +02:00)
View GitHub Profile
@alxekb
alxekb / onboard.js.coffee
Last active April 25, 2019 11:20
Add new row to the onboarding form
//= require jquery.min
//= require jquery-ui
//= require popper.min
//= require js/bootstrap.min
//= require js/select2.full.min
//= require simplebar
//= require jquery.textavatar
//= require tippy.all.min
//= require flatpickr.min
//= require universeadmin/main
@alxekb
alxekb / gist:a94e286057930baa12c25116ea0b07d2
Last active February 25, 2020 16:09
Rail new command
rails new web_app_name --skip-coffee --skip-sprockets --skip-turbolinks --webpack --database=postgresql --skip-bundle -T
rails new web-app-name --api -T
@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.

@alxekb
alxekb / http response codes
Last active September 9, 2019 10:56
HTTP response status codes indicate whether a specific HTTP request has been successfully completed.
# Responses are grouped in five classes:
# Informational responses (100–199),
# Successful responses (200–299),
# Redirects (300–399),
# Client errors (400–499),
# Server errors (500–599).
100 Continue
This interim response indicates that everything so far is OK and that the client should continue the request, or ignore the response if the request is already finished.
heroku buildpacks:clear
heroku buildpacks:set heroku/nodejs
heroku buildpacks:add heroku/ruby --index 2
pkill -9 -f 'rb-fsevent|rails|spring|puma'
$ ps aux | grep puma
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCt6uZeGFdzGbzLnAs7JRNobFHtcqOpQzIjej7ScM1i3FTbxOU3WLesM7hVXA3OJdvSXan7BYrFY3M52h6YiJimg4Whma/4SbBBW/BwEWySPdcjiOkt8/KVL2U+KdQ1wlGhqOB7IBBPPUT5fRejV21sl6aK19sVvAcr3Xy4N0zq0QvQn9IXhg/yMBHTMJrM3un4b5VOTzAQiWVN9MFN7l5Dw2AzOwptd5grD21IPE/S69myqLf09Reuc09mvIqcqH9/r1+7b6HCjLaNid5suJSJO/69tmRSTHmYzwGVQh6lUMPPNGNu0Atekw305lGRpDmPE/QGWuKmsHo/QcTxLVSj [email protected]
@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
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
ARG RUBY_VERSION
# See explanation below
FROM ruby:$RUBY_VERSION-slim-buster
ARG PG_MAJOR
ARG NODE_MAJOR
ARG BUNDLER_VERSION
ARG YARN_VERSION
# Common dependencies