Fulltext results:
- Formatting Syntax @wiki
- f line. This is some text with some linebreaks\\ Note that the two backslashes are only recognized at ... t it. This is some text with some linebreaks\\ Note that the two backslashes are only recognized a... o lowercase automatically, special characters are not allowed. You can use [[some:namespaces]] by usin... This links to [[syntax#internal|this Section]]. Notes: * Links to [[syntax|existing pages]] are sh
- Travian Map Download Script @z:travian
- es -- CREATE TABLE ${TEMP_TABLE} ( fid int(11) NOT NULL, x smallint(6) NOT NULL, y smallint(6) NOT NULL, tid int(11) NOT NULL, vid int(11) NOT NULL, villagename varchar(255) NOT NULL, uid int(1
- ZFS Playground @blog:2009
- LINE 0 0 0 73K resilvered </code> Note that the ''zpool status'' output now shows a mirror over two files. Also note the ''resilver completed'' message. This tells y... NE 0 0 0 83,5K resilvered </code> Note that the new "disk" c1d0 also had to be resilver... n this case, the scrub didn't find any errors, so nothig needed to be repaired. ===== Clean Up =====
- base-exec-user @z:relax:api:base
- ser. Command is executed using ssh if the user is not on localhost. ===== Usage ===== base-exec-use... * ''HOST_REF'' (required if ''REMOTE_HOST'' is not set): A key to a host definition in the repositor... ''REMOTE_HOST'' (optional): If ''REMOTE_HOST'' is not defined, ''HOST_REF'' must be present. * ''RE... ional): The user execute the command remotely. If not present, same as local user will be taken. * ''
- Git @info:code
- ranches === List branches with commits, which are not in branch REF: git branch --no-merged REF For example, list unmerged branches, which are not in ''develop'': git branch --no-merged develop ... mits === List commits in branch BRANCH, which are not in branch REF: git cherry -v REF BRANCH For exa... mple, list commits in a feature branch, which are not in ''develop'': git cherry -v develop feature/F
- Cleanup Packages @info:linux:debian
- old stuff, you can ge a list of uninstalled (but not purged) packages with this command: <code bash> ... e packages are in. --no-show-section Do not show sections. --show-size, -z Show i... --all-packages, -a Compare all packages, not just libs. --exclude, -e LIST Work as if packages in LIST were not installed. --force-hold, -H Ignore hol
- base-ssh-login @z:relax:api:base
- * ''HOST_REF'' (required if ''REMOTE_HOST'' is not set): A key to a host definition in the repositor... ''REMOTE_HOST'' (optional): If ''REMOTE_HOST'' is not defined, ''HOST_REF'' must be present. * ''RE... ional): The user execute the command remotely. If not present, same as local user will be taken. * ''COMMAND'': a command to be executed. If not present, an interactive shell will be opened by '
- IPS Repository Appliance @blog:2010
- -x86.iso * Repository osol-repo-0906-full.iso <note> The links above don't work any more and were removed. </note> ===== Setup VirtualBox VM ===== Create a new ... media/*/repo </code> {{osolrepo06.png?nolink|}} NOTE: You need to execute the following commands with
- Generate a Test Key @info:cryptography:openssl
- pecified then if a private key is created it will not be encrypted. * ''[[http://www.openssl.org/docs... e newly created private key to. If this option is not specified then the filename present in the config... estkey.key]]'': file to read private key from. If not present then a private key must be present in the
- How To Create a Moveable VM with VirtualBox @blog:2010
- r in the latest version. Please keep in mind that not all written here may be true for the later as the... = The Future ====== There are some things, which not yet work as I want them to. * The VM must not have snapshots. * You have to shut down the VM. If
- MySQL: Create User @info:mysql:user
- 0 MAX_USER_CONNECTIONS 0 ; CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{db}` . ... mpler Alternative: <code sql> CREATE DATABASE IF NOT EXISTS `dbname` DEFAULT CHARACTER SET = 'utf8'; G
- DokuWiki @wiki
- (c) Andreas Gohr <andi@splitbrain.org>((Please do not contact me for help and support -- use the [[doku... nsider [[doku>donate|donating]] a few bucks ;-). Not sure what this means? See the [[doku>faq:license|
- Specify Java VM for Eclipse @info:code:eclipse
- irectory: <code> -vm /opt/jdk/bin/java </code> <note important>It is important that the ''-vm'' and t... executeable are specified in two separate lines!</note> Source: [[http://wiki.eclipse.org/Eclipse.ini#
- Android Apps @info:android
- om/store/apps/details?id=de.softxperience.android.noteeverything|Note Everything]] * [[https://play.google.com/store/apps/details?id=de.schildbach.oeffi|Ö
- MySQL: Create Database @info:mysql:database
- eate Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and ... hts to a User ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{db}` . *