Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:You think this is a Game? (Score 1) 483

If DNS providers would provide a standardised API (or even allow standard dynamic updates with TSIG) it would make it a lot easier to use multiple providers. The two main problems I have come across are that the providers often do not let you add any NS records other than their own servers (so when a resolver caches the NS records and that provider goes down, it won't try using the other provider until the TTL expires), and updating records is painful because it involves logging into each of your providers websites to make the changes.

Comment Asset labels (Score 1) 429

No longer an admin, but I have always given servers names based on their asset label, e.g. SV-0700543. The benefit of this is that the servers must be recorded in the asset register before they can be set up. When it comes to virtual machines I simply used a counter, e.g. VM-000001. The important ones (fsmo roles, database servers, app servers, etc) get friendly names with dns cname records.

Comment Re:Unsurprising (Score 1) 325

Quite. It would make sense to simply use directshow or mediafoundation for decoding video so that any format for which the user has a codec installed would be supported. QtWebKit does this for example, so any web browser using Qt can take advantage of all the system codecs (as well as other pluggable backends, for example vlc).

Comment paperkey and libdmtx (Score 3, Informative) 232

See http://www.mail-archive.com/gnupg-users@gnupg.org/msg10827.html.

The original paperkey software takes out the redundant key material for a smaller amount of data. You can restore the original key by combining the output with the public key.

To encode:

gpg --export-secret-key (thekey) | paperkey --output-type raw | dmtxwrite -e8 -f pdf > my_pdf_file.pdf

You can pass pdf, eps, svg, etc, to the -f option. Use 'dmtxwrite -l' to get a list of all supported image formats.

To decode:

dmtxread -N1 my_pdf_file.pdf | paperkey --pubring ~/.gnupg/pubring.gpg > my_new_secret_key.gpg

Comment Re:Worst ask slashdot ever (Score 1) 688

At my last place we assigned names to workstations of the form "WS-[badge number]". This had the advantage that the computer has to be put on the asset management system before it can be attached to the network, and for the vast majority of the time, this was the case. Our asset management system was intelligent enough that it could automatically update the location when the computer moved since every switch port was mapped to a location in the database (by room, floor, building, site).
Programming

Submission + - PySide - Python bindings for Qt (pyside.org)

Luciano Wolf writes: "This is the first public release of PySide, a project providing an LGPL'd set of Python bindings for the Qt framework. The code and resources released so far comprise several man-years worth of effort and we're extremely proud to be able to share this effort with the Python and Qt communities."
Programming

Submission + - Clutter 1.0 arrives (moblin.org)

moblinzone writes: The Moblin project has achieved the first stable release of Clutter, an innovative 3D graphics library aimed at helping UI developers exploit graphics hardware acceleration without using the low-level OpenGL APIs. The arrival of Clutter 1.0 means application developers can now add the appealing Moblin graphics technology to new and existing apps in confidence that the APIs will not change prior to the next major version number (i.e., the arrival of Clutter 2.0).

Slashdot Top Deals

Stellar rays prove fibbing never pays. Embezzlement is another matter.

Working...