Since recently I struggled with:
$ urxvt
urxvt: can't initialize pseudo-tty, aborting.
$ sudo mount -a
mount: none is already mounted or /dev/pts busy
| #!/bin/sh | |
| echo 'dependencies {' | |
| xmlstarlet sel -T \ | |
| -N pom="http://maven.apache.org/POM/4.0.0" \ | |
| -t -m '//pom:dependency' \ | |
| -o " compile '" \ | |
| -v 'pom:groupId' \ | |
| -o ':' \ | |
| -v 'pom:artifactId' \ | |
| -o ':' \ |
| # Contributor: Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt do de> | |
| pkgname=tpfanco-svn | |
| pkgver=89 | |
| pkgrel=5 | |
| pkgdesc="Monitors temperatures and controls fan speed of IBM/Lenovo ThinkPad notebooks." | |
| replaces=('tpfand') | |
| provides=('tpfanco') | |
| conflicts=('tpfanco' 'tpfand-no-hal' 'tpfand' 'tpfand-profiles' 'tpfan-admin') | |
| depends=('python2-dmidecode-git' 'python2-dbus' 'pygtk' 'python2-rsvg' 'python2-dbus') |
Since recently I struggled with:
$ urxvt
urxvt: can't initialize pseudo-tty, aborting.
$ sudo mount -a
mount: none is already mounted or /dev/pts busy
I struggled with with the jar MANIFEST file built with Gradle containing an empty Class-Path. I traced down the problem to the order of the dependencies and jar blocks in the build.gradle file:
Wrong (jar before dependencies):
jar {
manifest.attributes(| # $Id: PKGBUILD 80202 2012-11-17 15:45:28Z eric $ | |
| # Maintainer: Tobias Powalowski <[email protected]> | |
| pkgname=pmount | |
| pkgver=0.9.23 | |
| pkgrel=9 | |
| pkgdesc="mount removable devices as normal user" | |
| arch=(i686 x86_64) | |
| license=('GPL2') | |
| url="http://pmount.alioth.debian.org/" |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html;charset=utf-8"> | |
| <link rel="stylesheet" href="http://josm.openstreetmap.de/mapsviewdata/ol.css" type="text/css"> | |
| <link rel="stylesheet" href="http://josm.openstreetmap.de/mapsview.css" type="text/css"> | |
| <script src="http://josm.openstreetmap.de/mapsviewdata/ol.js" type="text/javascript"></script> | |
| <title>Geoimage.at MaxRes - JOSM - Imagery Preview</title> | |
| </head> |
I tried to get rid of the following messages by the Apache odfdom library.
Aug 20, 2014 8:55:45 AM org.odftoolkit.odfdom.pkg.OdfXMLFactory newOdfAttribute
INFO: None-ODF attribute created for calcext:value-type
Strangely, this did not work out …
java.util.logging.Logger.getLogger("org.odftoolkit").setLevel(java.util.logging.Level.WARNING);| #!/bin/bash | |
| # Author: Simon Legner <[email protected]> | |
| convert () { | |
| in="$1" | |
| out="${in%.m4a}.ogg" | |
| ffmpeg -i "$in" \ | |
| -acodec libvorbis -aq 4 -vn -ac 2 \ | |
| -map_metadata 0 \ | |
| "$out" |
| angular.module('A').controller('C', function(data) { | |
| document.write(data.x); | |
| }); |
| { | |
| "dependencies": { | |
| "lodash": "^3.10.1", | |
| "yamljs": "^0.2.3" | |
| } | |
| } |