Skip to content

Instantly share code, notes, and snippets.

View artp1ay's full-sized avatar
🖖

Max artp1ay

🖖
  • Homebrew
  • Moscow, Russia
View GitHub Profile
@artp1ay
artp1ay / helper.scss
Created August 10, 2020 12:53
Bulma padding and margin helper
$size-7: 10px;
$size-6: 20px;
$size-5: 30px;
$size-4: 40px;
$size-3: 50px;
$size-2: 60px;
$size-1: 70px;
$sizes: (1, 2, 3, 4, 5, 6, 7);
$positions: ("top", "left", "bottom", "right");
$bulmaSizes: ($size-1, $size-2, $size-3, $size-4, $size-5, $size-6, $size-7);
@artp1ay
artp1ay / app.service
Last active March 13, 2020 06:21
Шпаргалка Systemd и Journalctl
[Unit]
Description=AppName
After=network.target
[Service]
Type=simple
WorkingDirectory=/home/user/app/
ExecStart=/home/user/.local/bin/pipenv run python /home/user/app/bot.py
Restart=always