Skip to content

Instantly share code, notes, and snippets.

View micronull's full-sized avatar
☮️

Stepan I. micronull

☮️
View GitHub Profile
@micronull
micronull / check_domain.sh
Created November 1, 2018 06:40
Bash script how many days are left before the domain expires.
#!/bin/bash
# Bash script how many days are left before the domain expires.
# Скрипт выводит количество дней до окончания регистрации домена.
# Initial source code: https://mnorin.com/monitoring-daty-prodleniya-domennogo-imeni.html
if [ "$1" == "" ]
then
cat << EOF
Script that monitors how many days left until domain registration ends.
Usage: $(basename $0) domain.name
@micronull
micronull / Dockerfile
Last active September 18, 2017 05:58
gbot-trader-docker
# version 1.0
# for https://github.com/steeply/gbot-trader
FROM node:8-alpine
MAINTAINER Stepan Ipatyev <istepan@yandex.ru>
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh && \
cd $HOME && \
git clone https://github.com/steeply/gbot-trader.git && \
cd gbot-trader && \
npm i && \
@micronull
micronull / gist:63efc2208db3bf8c17d7
Created November 10, 2014 13:21
Bootstrap Portal Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Bootply.com - Bootstrap Portal Template</title>
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">