Fulltext results:
- Travian Map Download Script @z:travian
- oad the map.sql from Travian and import it to the database. ===== config.inc ===== <code bash> # # database DB_USER="travian" # set this to your database user DB_PASS="travian" # set this to your database password DB_INST="travian" # set this to you
- Debug Server Certificate from Client @info:cryptography:openssl
- --- Certificate chain 0 s:/OU=Domain Control Validated/OU=PositiveSSL/CN=www.andunix.net i:/C=GB/S... ZWQxGTAXBgNV BAMTEFBvc2l0aXZlU1NMIENBIDIwHhcNMTMxMDA4MDAwMDAwWhcNMTQxMDA4MjM1 OTU5WjBTMSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxFDASBgNV BAsTC1Bvc2l0aXZ
- Formatting Syntax @wiki
- e simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing... = == Headline Level 5 == By using four or more dashes, you can make a horizontal line: ---- =====... ava></nowiki>''. <code java> /** * The HelloWorldApp class implements an application that * simply
- VBoxManage (The VirtualBox CLI) @info:virtualbox
- details] [--machinereadable] showvminfo <uuid>|<name> --l... one|<name>] [--bridgeadapter<1-N> none|<devicename>] [--hostonlyadapter<1-N> none|<devicename>] ... [--audiocontroller ac97|hda|sb16] [--clipboard di
- DynDNS Updates without a Client @info:script
- ====== DynDNS Updates without a Client ====== My new hosting provide Strato offers DynDNS. I was sear... as good as any other client. <code bash dyndns-update.sh> #! /bin/bash . ${HOME}/.dyndns.cfg DOMAINS=$(cat ${HOME}/.dyndns.domains) echo "$(date '+%Y-%m-%d %H:%M') $(basename $0)" for domain i... lent --show-error --insecure --user ${LOGIN} "${UPDATE_URL}?hostname=${domain}" done </code> First, t
- Project PDA @blog:2011
- ~~META:date created = 2011-10-27 22:48~~ ====== Project PDA ====== I'm currently working on a project called 'PDA'. PDA stands for "Personal Digital Assistant". I used several PDAs over the last two decades, from Sh
- Compare a Key with its Certificate @info:cryptography:openssl
- r Modulus=C8B04B9D50386C0B22296B181046712B83DB624DA4AA9B9CA78453DC78DA26D2295FDF79 A544CBF8013138FB0EDFD8F0CB13E2FBF8883263442AEA549450737360A2C4F607D2E4DADEA3E501 15DA6315BA3829A2F3E5D87293835D3F909234541F508FCFED435CCCD73880A6BCC488ABB8C6F3D8 0E55F5DC528A
- MySQL: Backup @info:mysql:database
- ====== MySQL: Backup ====== ===== Export a Database ===== <code bash> # set or replace the variables... ${USER} -p${PASS} ${DB} </code> ===== Export all Databases individually ===== <code bash> # set or replace the variables $USER and $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show databas
- Generate a Test Key @info:cryptography:openssl
- te a Test Key ====== openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout testkey.key -out t... [[http://www.openssl.org/docs/apps/req.html#item__days|-days 365]]'': when the -x509 option is being used this specifies the number of days to certify the certificate for. The default is
- CloudTable @z:cloudtable
- ~~META:date created = 2010-02-02 18:04~~ ====== CloudTable ====== ===== Big Picture ===== This conce... ications. Also the users will be stored here. The data store stores the "payload" data. These two are separated to enable usage of diffentent databases or even techniques. This could be files fo
- Oracle: Recovery Manager @info:oracle
- === Delete all archive logs but keep the last 45 days: <code sql> DELETE ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> To remove archive logs older than 3 days without prompting, e.g. via cron, after backup ... LETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> A sample script could be (deleti
- ZFS Playground @blog:2009
- ~~META:date created = 2009-08-11 17:06~~ ====== ZFS Playground ====== This small demo shows the basic... d0 ONLINE 0 0 0 errors: No known data errors </code> I will omit the ''errors: No known data errors'' in all following outputs. Also, the '... have to force adding a vdev with a different redundancy. It's recommendend to have the same type of re
- Android Apps @info:android
- tore/apps/details?id=de.fun2code.android.webdrive|DavDrive]] / [[https://play.google.com/store/apps/details?id=de.fun2code.android.lite.webdrive|DavDrive Lite]] * [[https://play.google.com/store/... .google.com/store/apps/details?id=com.schimera.webdavnav|WebDAV Navigator]] / [[https://play.google.com/store/apps/details?id=com.schimera.webdavnavlite|W
- Project PDA @p:pda
- ====== Project PDA ====== The Project PDA aims to build a real Personal Digital Assistant. * [[.:dc:|Data Collector]]: Collection of API Implementations to connect to several (Web-)Services and access data there * [[.:blackbox:|Blackbox]]: Entity Stor
- MySQL: Create Database @info:mysql:database
- ====== MySQL: Create Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and Grant Rights to a User ==== <code sql>