Skip to content

Instantly share code, notes, and snippets.

View A-linea's full-sized avatar
♾️

Yevhen Dmitrievskiy A-linea

♾️
View GitHub Profile
@A-linea
A-linea / reset-trial-navicat.sh
Created September 18, 2025 17:12 — forked from nakamuraos/reset-trial-navicat.sh
Reset trial Navicat 15, Navicat 16, Navicat 17 on Linux
#!/bin/bash
# Author: NakamuraOS <https://github.com/nakamuraos>
# Latest update: 03/19/2025
# Tested on Navicat 15.x, 16.x, 17.x on Debian, Ubuntu.
BGRED="\e[1;97;41m"
ENDCOLOR="\e[0m"
echo -e "${BGRED} ${ENDCOLOR}"
@A-linea
A-linea / laravel_horizon.md
Created June 24, 2021 15:44 — forked from ankurk91/laravel_horizon.md
Laravel Horizon, redis-server, supervisord on Ubuntu 20 server

Laravel Horizon, redis-server, supervisord on Ubuntu server

Laravel 8.x, Horizon 5.x, Redis 6.x

Parepare application

  • Install and configure Laravel Horizon as instructed in docs
  • Make sure you can access the Horizon dashboard like - http://yourapp.com/horizon
  • For now it should show status as inactive on dashbaord

Install redis-server

@A-linea
A-linea / counter.js
Created December 16, 2017 11:11 — forked from agragregra/counter.js
javaScript Counter from Time
function renderCleanCounter()
{
var curDate = new Date();
var counterBlock = $('#counter');
var counterResulte = Math.round((curDate.getTime() - 1429460070577) / 3000) + 23124;
counterBlock.html(counterResulte);
}