Skip to content

Instantly share code, notes, and snippets.

View pandamako's full-sized avatar
🔭

Artem pandamako

🔭
View GitHub Profile
@pandamako
pandamako / readme.md
Created December 18, 2023 20:00
Как забрать данные о товарах с Озона

Товар получаем из списка товаров

https://api-seller.ozon.ru/v2/product/list

{
  "product_id": 748631760,
  "offer_id": "2589",
  "is_fbo_visible": true,
  "is_fbs_visible": true,
  "archived": false,
@pandamako
pandamako / dron-composer.yml
Created July 1, 2017 06:54
docker-compoer файл для запуска drone-ci с gitlab
version: '2'
services:
drone-server:
image: drone/drone:latest
ports:
- 80:8000
volumes:
- /var/lib/drone:/var/lib/drone/
restart: always

Artem Bykov

System Architect, RubyOnRails

Designing and development of any services and projects.
Experience web development 9 years. RoR experience 3 years. Prior to this, 6 years used C# and .net.

Experience of Scrum 2 years, Kanban 1.5 years.

Technologies used

@pandamako
pandamako / cv.MD
Last active April 8, 2026 19:36
Резюме

Артем Быков

CTO, Системный архитектор, разработчик RubyOnRails, Elixir, Golang

Опыт веб разработки 20 лет. Опыт Ruby on Rails 10 лет. Опыт Elixir 6 года. Опыт Golang 4 года. Опыт ReactNative 3 года

@pandamako
pandamako / linkedin_users_parse.js
Last active August 5, 2016 11:04
parse some info from users list page
items = $('.content-wrapper')
results = []
result_strings = []
domain = 'https://www.linkedin.com'
for (var i = 0; i < items.length; i++) {
item = items[i]
link = $('a.profile-link', item).attr('href')
name = $('a.name-link', item).text()
company_name = $('.company-name', item).text()
company_link = $('a.company-link', item).attr('href')

If you get OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

It's for you:

$ brew update
$ brew install openssl
$ brew link openssl --force
$ rvm remove 2.2.3
$ rvm install 2.2.3 --disable-binary
@pandamako
pandamako / init.sh
Last active July 26, 2023 20:15 — forked from morr/init.sh
настройка ruby окружения с нуля с mac os
# запустить app store
# установить xcode из апстора и запустить его один раз что бы принять лицензию
# в консоли:
# homebrew
~ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
~ brew install curl
~ brew install libyaml
~ brew doctor
# исправить все проблемы, о которых сообщил brew-doctor