Skip to content

Instantly share code, notes, and snippets.

View AlexeyShepelev's full-sized avatar

Alexey Shepelev AlexeyShepelev

  • San Francisco Bay Area
  • 12:45 (UTC -07:00)
View GitHub Profile
0xabc3fc7e128527f856a66d763fd9927c4973a33d
0x146a1f1a03cad757D489de1549C881A039b95236
0x146a1f1a03cad757D489de1549C881A039b95236
require "net/http"
# You can get the api_gateway_id value from your gateway's info
# in the dashboard panel.
gateway_id = 17171
# It determines the amount to be paid for this order.
amount_in_btc = 2.5
# When a callback request is issued, this callback_data param will
@AlexeyShepelev
AlexeyShepelev / instructions.md
Last active October 1, 2022 21:53
Ruby on Rails for Beginners

Installing Ruby on Rails on Ubuntu 20.10

Installing required libraries

sudo apt install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt-get update