struct PeerId typealias Namespace = Int32 typealias Id = Int32 namespace: Namespace id: Id struct MessageId typealias Namespace = Int32 typealias Id = Int32 peerId: PeerId ...
telegram-account-state
protocol AccountState class AuthorizedAccountState: AccountState class State pts: Int32 qts: Int32 date: Int32 seq: Int32 enum UnauthorizedAccountStateContents ...
git-objects
Git Objects Git is a content-addressable filesystem. Great. What does that mean? It means that at the core of Git is a simple key-value data store. What this means is that you can insert any kind ...
centos-users-management
How To Add and Delete Users on a CentOS 7 Server Adding Users adduser username // add user passwd username // set or change a passwd Granting Sudo Privileges to a User ...
yum-troubleshooting
Fix rpmdb: Thread died in Berkeley DB library description: rpmdb: Thread/process 277623/140429100390144 failed: Thread died in Berkeley DB library error: db3 error(-30974) from dbenv->failchk:...
wp-config
Editing wp-config.php WP_CONTENT_DIR define( 'WP_CONTENT_DIR', dirname(__FILE__) . '/blog/wp-content' ); define( 'WP_CONTENT_URL', 'http://example/blog/wp-content' ); WP_PLUGIN_DIR define( 'WP_P...
wordpress-installation
How to install word-express Download and unzip the WordPress package if you haven’t already. Create a database for WordPress on your web server, as well as a MySQL (or MariaDB) user who has all...
vsftp
WordPress setup on CentOS 6 Install yum install vsftpd chkconfig vsftpd on Create a FTP/SCP user mkdir -p /var/www/vhosts/example.com chmod 755 /var/www/vhosts/example.com useradd -d /var/www...
swift-gitignore
# Xcode # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore ## User settings xcuserdata/ *xcworkspace/xcuserdata/* */.DS_Store .DS_St...
php-config
Installing PHP 7.3 on CentOS 7 sudo yum install epel-release yum-utils sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm sudo yum-config-manager --enable ...