This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
#!/usr/bin/env bash | |
echo -n -e "\033]0;Homebrew Update...\007" | |
brew -v update | |
echo "Press any key to continue..." | |
read -k1 -s | |
echo "Upgrading..." | |
brew -v upgrade | |
echo "Press any key to continue..." |
#!/bin/bash | |
echo "Резервное копирование БД mySQL. Версия 1.0 (20201229)" | |
echo "Автор: Денис Парыгин ([email protected])" | |
echo "" | |
read -p "Укажите путь к архиву: " dest | |
read -p "Имя базы данных: " database | |
read -p "Имя пользователя для БД $database: " user | |
read -sp 'Пароль: ' password |
function uniqid (prefix, more_entropy) { | |
// + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) | |
// + revised by: Kankrelune (http://www.webfaktory.info/) | |
// % note 1: Uses an internal counter (in php_js global) to avoid collision | |
// * example 1: uniqid(); | |
// * returns 1: 'a30285b160c14' | |
// * example 2: uniqid('foo'); | |
// * returns 2: 'fooa30285b1cd361' | |
// * example 3: uniqid('bar', true); | |
// * returns 3: 'bara20285b23dfd1.31879087' |
# Client part | |
// | |
// !Columns | |
// | |
var xrep_Columns = new Ext.grid.ColumnModel({ | |
defaults: { | |
sortable: false | |
}, | |
columns: [{ |
на данный момент обнаружил, что нет только цепочек (chains) вызовов | |
остальное вроде нормально | |
'use strict'; | |
var bag = new window.Bag({ | |
namespace: 'myNS', | |
stores: ['localstore'] | |
}); | |
//bag.clear(false); | |
//throw -1; |