Skip to content

Instantly share code, notes, and snippets.

View egorsmkv's full-sized avatar
🌍
world, hello

Yehor Smoliakov egorsmkv

🌍
world, hello
View GitHub Profile
#!/usr/bin/bash
mkdir node_exporter
cd node_exporter/
wget https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz
tar xf node_exporter-1.0.1.linux-amd64.tar.gz
cd node_exporter-1.0.1.linux-amd64
mv node_exporter /usr/bin
<!-- Main Header -->
<header class="main-header">
<!-- Logo -->
<a href="/" class="logo">
<span class="logo-mini"><b>A</b></span>
<span class="logo-lg"><b>ADMIN</b></span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
@egorsmkv
egorsmkv / log.c
Last active July 14, 2019 18:52
Simple logging for C
/*
* Copyright (c) 2017 rxi
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
@egorsmkv
egorsmkv / libra-ecosystem.md
Last active June 25, 2019 18:56
A box with useful links around the Libra ecosystem
@egorsmkv
egorsmkv / check.php
Created May 9, 2019 18:38
A script for checking Laravel requirements
<?php
// This script checks all requirements which a server
// must have for correct work of Laravel 5.8
//
// Author: Yehor Smoliakov
$phpVersion = '7.1.3';
$exts = ['openssl', 'pdo', 'mbstring', 'tokenizer', 'xml', 'ctype', 'json', 'bcmath'];
@egorsmkv
egorsmkv / hebrew-useful-stuff.md
Created January 13, 2019 05:44
Полезные сайты/материалы/сервисы для изучения иврита

Чтобы не забыть и иметь централизованное место для этих полезных вещей.

Переводчики

Название Примечения
Google Translate -
Bing Microsoft Translator есть машинное произношение слов
@egorsmkv
egorsmkv / list.md
Last active March 14, 2023 22:25
Це список платіжних агрегаторів та еквайрингів, які надають послуги з прийому платежів в Україні.
Назва Сайт Тарифи Платіжні картки
LiqPay https://www.liqpay.ua/uk/ https://www.liqpay.ua/uk/tariffs Visa, Mastercard
Portmone https://www.portmone.com.ua/r3/uk/ecommerce https://www.portmone.com.ua/r3/uk/ecommerce Visa, Mastercard, ПРОСТІР
UA Pay http://acquiring.uapay.ua/ у договорі Visa, Mastercard, ПРОСТІР
Platon https://platon.ua/ua https://platon.ua/ua Visa, Visa Checkout, Mastercard, Masterpass, ПРОСТІР
FONDY https://fondy.ua/uk/ https://fondy.ua/uk/tariffs-fondy/ Visa, Mastercard, ПРОСТІР
import hmac
import hashlib
import base64
class ImgProxy:
"""
The class generates a signature for the imgproxy (https://github.com/DarthSim/imgproxy).
Author: Yehor Smoliakov (https://github.com/egorsmkv)
@egorsmkv
egorsmkv / build-git.md
Last active May 5, 2023 04:19
Build git from source code on CentOS 7

Build git from source code

1) Go to https://git-scm.com/ and check out the latest version of Git

Currently, the latest version is 2.18.0. Download and extract it and go to the folder of the source code:

wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.18.0.tar.gz
tar xf git-2.18.0.tar.gz
cd git-2.18.0/