Skip to content

Instantly share code, notes, and snippets.

@alexusmai
alexusmai / CryptoProPHP.md
Created August 31, 2021 09:24
CryptoPro PHP

CryptoPro

  1. устанавливаем необходимые стандартные библиотеки
sudo apt install lsb lsb-core alien
  1. Качаем КриптоПро CSP 4.0R2 linux x64 предварительно зарегистрировавшись
@alexusmai
alexusmai / CryptoProCompile.md
Created August 31, 2021 09:04
CryptoPro компиляция PHP модуля
@alexusmai
alexusmai / Schema.md
Last active May 8, 2019 19:57
Joying JY-UO128N4 optical OUT

Connection schema FotoSchema

Soldered PhotoResult

Back FotoBack

// Mobile menu - nav
document.addEventListener('DOMContentLoaded', function () {
// Get all "navbar-burger" elements
let $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
@alexusmai
alexusmai / pagination.blade.php
Last active December 19, 2017 17:59
Pagination template for Laravel 5 + Bulma
@if ($paginator->hasPages())
<nav class="pagination is-centered" role="navigation" aria-label="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<a class="pagination-previous" disabled>«</a>
@else
<a href="{{ $paginator->previousPageUrl() }}" class="pagination-previous">«</a>
@endif
{{-- Next Page Link --}}