I’m currently working (I’m just at the beginning, and I’m quite slow) on a personal project that will use Keepass files (kdb and kdbx).
I tried to find some documentation about .kdb and .kdbx format, but I didn’t find anything, even in the Keepass official website. I you want to know how these file formats are structured, you must read Keepass’s source code. So I wrote this article that explains how Keepass file format are structured, maybe it will help someone.
#!/bin/bash | |
# Easily generate a 10 year SSL certificate and key for development. It | |
# creates a configuration file for wild card domains, if no argument is passed | |
# in will fallback to "node.a" as the domain to use. | |
# | |
# Upon completion, these files should now exist:: | |
# | |
# * openssl.cnf | |
# * ssl.key | |
# * ssl.crt |
We've created a Bloc Mentor Slack Group. If you want to be added, just send me your email. Either respond directly to this or email me at RRP54@cornell.edu.
Hi teammates,
My name is Ricky. I'm a fellow Rails and iOS Mentor residing in NYC.
It's time! It's time to have our own mentor Slack Group. Students across curriculums have already been using their own Slack Groups to seek help from fellow students, and it's been proving extremely helpful. I'm sure it would do the same for us mentors.
We've created a Bloc Mentor Slack Group. If you want to be added, just send me your email. Either respond directly to this or email me at RRP54@cornell.edu.
Hi teammates,
My name is Ricky. I'm a fellow Rails and iOS Mentor residing in NYC.
It's time! It's time to have our own mentor Slack Group. Students across curriculums have already been using their own Slack Groups to seek help from fellow students, and it's been proving extremely helpful. I'm sure it would do the same for us mentors.
This tuturial will help you configure network for your fresh Proxmox istallation.
Be aware that Proxmox configuration was made using this tutorial.
Backup your current /etc/network/interfaces using this command:
cp /etc/network/interfaces /etc/network/interfaces.backup
This tuturial will help you configure network for your fresh Proxmox istallation.
Be aware that Proxmox configuration was made using this tutorial.
Backup your current /etc/network/interfaces using this command:
cp /etc/network/interfaces /etc/network/interfaces.backup
Lsyncd is a tool used to keep a source directory in sync with other local or remote directories. It is a solution suited keeping directories in sync by batch processing changes over to the synced directories.
So the generic use case is to keep a source directory in sync with one or more local and remote directories.
Lsyncd is a tool used to keep a source directory in sync with other local or remote directories. It is a solution suited keeping directories in sync by batch processing changes over to the synced directories.
So the generic use case is to keep a source directory in sync with one or more local and remote directories.
#!/bin/sh | |
# | |
# A simple Arch Linux backup script. | |
# | |
# Example config that targets external mount, keeping backups for a week and | |
# mirror the backups to local and external disks: | |
# | |
# $ cat /etc/backuprc | |
# backup_target=/mnt/data01/myhost | |
# backup_days_kept=7 |