[Openvpn-devel] [PATCH] Added environment variable for IPv6 route metric.

2020-09-29 Thread Jan Seeger
--- doc/man-sections/script-options.rst | 8 src/openvpn/route.c | 7 +++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/doc/man-sections/script-options.rst b/doc/man-sections/script-options.rst index a4df6732..03b3dd77 100644 --- a/doc/man-sections/s

[Openvpn-devel] [PATCH] Added environment variable for IPv6 route metric.

2020-09-23 Thread Jan Seeger
Hello! Thanks for your feedback. I've added the necessary changes. Best regards, Jan ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

[Openvpn-devel] [PATCH] Added environment variable for IPv6 route metric.

2020-09-23 Thread Jan Seeger
--- doc/man-sections/script-options.rst | 4 ++-- src/openvpn/route.c | 7 +++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/man-sections/script-options.rst b/doc/man-sections/script-options.rst index a4df6732..0bf68c43 100644 --- a/doc/man-sections/script

[Openvpn-devel] [PATCH] Added environment variable for IPv6 route metric.

2020-08-20 Thread Jan Seeger
--- doc/man-sections/script-options.rst | 4 ++-- src/openvpn/route.c | 6 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/doc/man-sections/script-options.rst b/doc/man-sections/script-options.rst index b4bbf52f..062646b2 100644 --- a/doc/man-sections/script-

Bug#954241: backuppc: Missing dependency libfile-rsyncp-perl for rsync backups

2020-03-19 Thread Jan Seeger
Package: backuppc Version: 3.3.2-3 Severity: normal Dear Maintainer, libfile-rsyncp-perl has been removed from Testing for "missing sources" in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=945242. However, this breaks the rsync backup method on backuppc, which is the recommended one for linu

Bug#954165: Supplemental information

2020-03-17 Thread Jan Seeger
Some more information: I've found the possible fix in an upstream bugtracker at https://dev.deluge-torrent.org/ticket/3285. The semantics of the 'encoding' parameter are described at https://docs.python.org/3/library/pickle.html#pickle.Unpickler. The main problem is probably finding out what enco

Bug#954165: deluged: fails to load old torrent.state file with encoding error

2020-03-17 Thread Jan Seeger
Package: deluged Version: 2.0.3-2 Severity: important Tags: upstream patch Dear Maintainer, after upgrading from deluged 1.3 to deluged 2.0, all older torrents had disappeared. This is the result of deluged not being able to read the /var/lib/deluged/state/torrent.state file. This could possibly

bug#35964: TeX-strip-extension not doing what's documented, TeX-master-file always returning relative name

2019-05-28 Thread Jan Seeger
Hey! While trying to get TeX-master-file to produce an absolute path, I found that the `nodir` argument to TeX-strip-extension was not doing what was expected. The filename was still getting stripped, and the code on lines 4393 to 4398 in `tex.el` was responsible for that. `TeX-strip-extensi

[issue36208] AsyncIO V4MAPPED addresses with V6ONLY.

2019-03-06 Thread Jan Seeger
Jan Seeger added the comment: The intention for V4MAPPED is to allow "single-stack" usage of V4 and V6 addresses (or am I misunderstanding the purpose of the V4MAPPED socket option here?). The application only handles V6 addresses, and the system transparently converts from mapped

[issue36208] AsyncIO V4MAPPED addresses with V6ONLY.

2019-03-06 Thread Jan Seeger
New submission from Jan Seeger : I'm working with aiocoap, which uses the AI_V4MAPPED flag to use IPv4-mapped addresses for dual-stack support. When trying to run on Windows, creating a connection fails, because the socket option IPV6_V6ONLY is set to true per default on Windows, wherea

[Async-sig] AI_V4MAPPED on Windows

2019-02-03 Thread Jan Seeger
). If you require any more information, feel free to contact me! Best Regards, Jan Seeger PS: I am not a subscriber of this list, so please leave my address on any replies you send.import asyncio import socket class TestProtocol(asyncio.Protocol): def __init__(self, co

[O] [PATCH] org.el: Fix custom timestamps for date ranges

2017-07-06 Thread Jan Seeger
* org.el (org-activate-dates): Change `org-activate-dates' to activate custom timestamps for both dates in date ranges. Formerly, only the second date would be activated. The reason was a misplaced `if'. Replaced it with `when'. Also added doc comments. TINYCHANGE --- lisp/org.el | 8 +--- 1

[O] [PATCH] Fixed bug in custom timestamps for date ranges.

2017-07-06 Thread Jan Seeger
Changed org-activate-dates to activate custom timestamps for both dates in date ranges. Formerly, only the second date would be activated. The reason was a misplaced "if". Replaced it with "when". --- lisp/org.el | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lisp/org.

Re: [O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-10-12 Thread Jan Seeger
Hello! Attached is the full output of git-format patch (should have done it like that earlier^^). 0001-Reverse-capture-finalize-and-refile-hack-buffer-kill.patch Description: Binary data

Re: [O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-10-05 Thread Jan Seeger
Hello! That might be because I copy-pasted the patch into an email. Sorry for the delay! I attached the patch. Regards, Jan diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 67dc319..b1cda3d 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -792,7 +792,10 @@ already gone

[O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-09-28 Thread Jan Seeger
* org-capture.el (org-capture-refile): Call finalize first, then refile. If the capture buffer needs to be killed afterwards, kill after refiling. Refiling before finalizing led to an incorrect cursor position during refile. Since adjusting the buffer position and bounds for the refiled entry

Re: [O] Bug: org-capture-refile doc inconsistency, refile bug [8.3.1 (8.3.1-129-ga7c8d2-elpaplus @ /home/jeeger/.emacs.d/elpa/org-plus-contrib-20150921/)]

2015-09-25 Thread Jan Seeger
Hello! I've reworked the patch to restore the original order of org-capture-finalize and org-capture-refile, but working around the interaction with :kill-buffer that required reversing the order in the first place. org-capture-finalize requires the capture buffer to be set up correctly, and rest

Re: [O] Bug: org-capture-refile doc inconsistency, refile bug [8.3.1 (8.3.1-129-ga7c8d2-elpaplus @ /home/jeeger/.emacs.d/elpa/org-plus-contrib-20150921/)]

2015-09-25 Thread Jan Seeger
to make a patch for that. Regards, Jan Am 24. September 2015 22:54:38 MESZ, schrieb Nicolas Goaziou : >Hello, > >Jan Seeger writes: > >> I've fixed this bug for me by reversing the order of finalization and >> refiling, as stated in the documentation. I've

[O] Bug: org-capture-refile doc inconsistency, refile bug [8.3.1 (8.3.1-129-ga7c8d2-elpaplus @ /home/jeeger/.emacs.d/elpa/org-plus-contrib-20150921/)]

2015-09-24 Thread Jan Seeger
Greetings! I've discovered that org-capture-refile's documentation states that org-capture-refile finalizes the buffer first, and then refiles the entry. This is incorrect, the implementation of org-capture-refile first refiles the entry and then calls org-capture-finalize. While this is a small

[PATCH] Corrected vimeo parsing.

2014-12-12 Thread Jan Seeger
Hello! A simple patch to make vimeo work again with latest quvi-scripts. The JSON-containing parameter is now called "a" instead of "b". To differentiate from some other a's in the code, I had to add some more context. --- share/media/vimeo.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

[O] Bug: Properties break fontification [8.2.7c (8.2.7c-57-g37bf05-elpa @ /home/jeeger/.emacs.d/elpa/org-20140901/)]

2014-09-04 Thread Jan Seeger
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. --

Re: [laptop-mode] Laptop-mode-tools killing udev and/or acpid

2013-03-29 Thread Jan Seeger
At Sat, 23 Mar 2013 14:58:07 +0530, Ritesh Raj Sarraf wrote: > > It is something else killing udev/acpid. udev/acpid are LMT's parent > calling applications and will not be killed at least, by the spawned child. Hm, yes. Fact is: With laptop-mode-tools, the programs (both udev and acpid) quit, wh

Re: [laptop-mode] Laptop-mode-tools killing udev and/or acpid

2013-03-27 Thread Jan Seeger
At Wed, 27 Mar 2013 18:29:19 +0530, Ritesh Raj Sarraf wrote: > > What does you config file for battery polling look like? > Can you share /etc/laptop-mode/conf.d/battery-level-polling.conf contents? Okay, I'll attach it. > > I have been running LMT with batt poll enabled. I have never had any >

Re: [laptop-mode] Laptop-mode-tools killing udev and/or acpid

2013-03-27 Thread Jan Seeger
At Sat, 23 Mar 2013 14:58:07 +0530, Ritesh Raj Sarraf wrote: > > It is something else killing udev/acpid. udev/acpid are LMT's parent > calling applications and will not be killed at least, by the spawned child. Hm, yes. Fact is: With laptop-mode-tools, the programs (both udev and acpid) quit, wh

[laptop-mode] Laptop-mode-tools killing udev and/or acpid

2013-03-23 Thread Jan Seeger
mode-tools-1.62-r2 installed, udev is version 197-r1, acpid is 2.0.17-r1, and my kernel is 3.8.2. I have no idea what's causing this, and I only know that without laptop-mode-tools calls, none of the two programs quit when docking. My full config is attached. Best regards, Jan Seeger l

Re: [O] [PATCH] European date format

2011-03-04 Thread Jan Seeger
Hey! Ah, I'm sorry. Yeah, european format is Day.Month.Year (optional). And the final trailing dot is intentional, because I think it looks nicer (and I think it simplifies the regex). Also, my last mail was missing a smiley, I was only kidding of course. Regards, Jan

[O] [PATCH] European date format

2011-03-04 Thread Jan Seeger
Greetings! I was annoyed that org only read the bassackwards american date format, and implemented european date format matching. I hope it's correct, it seems to work for dates with and without year. Regards, Jan org-patch.patch Description: Binary data

[Orgmode] [PATCH] Always add sitemap file to project files if sitemap is requested

2011-01-07 Thread Jan Seeger
list of returned files if a sitemap is requested, regardless of if it exists or not. Regards, Jan Seeger diff --git a/lisp/org-publish.el b/lisp/org-publish.el index f29b402..baf282a 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.el @@ -434,6 +434,9 @@ matching filenames

Re: Tmux crashes on attaching

2010-11-15 Thread Jan Seeger
Hey! Yes, that seems to have been the problem. I have installed the tmux cvs version, and now it works without problems. mfg Jan -- Centralized Desktop Delivery: Dell and VMware Reference Architecture Simplifying enterpr

Tmux crashes on attaching

2010-11-12 Thread Jan Seeger
uot; to open a terminal when I press the shortcut. Very often, the attach fails, the xterm appears for a very short time, and then it disappears as tmux has crashed. What could be the problem? Regards, Jan Seeger -- Cent

[Alsa-user] Multi + dmix

2010-09-30 Thread Jan Seeger
evice. By themselves, the dmixed pcms work fine. However, in the multi configuration they do not. Is it possible to use multi with dmix? Regards, Jan Seeger Attached .asoundrc pcm.onboardmixed { type dmix ipc_key 1024 slave.pcm "hw:0,0" bindings {

Re: [Orgmode] Adding HTML into exported files

2009-02-11 Thread Jan Seeger
At Wed, 11 Feb 2009 02:48:26 +0100, Sebastian Rose wrote: > > Jan Seeger writes: > >> and C) > >> > >> This is the cleanest way to do it. > >> > >> #+ATTR_HTML: alt="an image" id="mySpecialImmage" > >> [[./img/a

Re: [Orgmode] Adding HTML into exported files

2009-02-10 Thread Jan Seeger
At Tue, 10 Feb 2009 15:03:47 +0100, Sebastian Rose wrote: > > Hi Jan, > > > there are several possiblities to achive your goal. > > B) > > #+begin_html > > Html code here > > #+end_html Yep, that's what I did. It's somewhat ugly though. > and C) > > This is the cleanest way to do it

Re: [Orgmode] Emacs 23 (cvs), org-mode (git): Bad sexp

2009-01-28 Thread Jan Seeger
At Wed, 28 Jan 2009 12:19:06 +0100, Carsten Dominik wrote: > > > On Jan 28, 2009, at 12:09 PM, Jan Seeger wrote: > > > At Wed, 28 Jan 2009 12:00:56 +0100, > > Carsten Dominik wrote: > >> > >> Looks like the function diary-schedule is defined in some pa

Re: [Orgmode] Emacs 23 (cvs), org-mode (git): Bad sexp

2009-01-28 Thread Jan Seeger
loading org-mode, but it doesn't do anything. The strange thing is that the other days are displayed correctly, only the current day is not shown. Regards, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies

[Orgmode] Emacs 23 (cvs), org-mode (git): Bad sexp

2009-01-28 Thread Jan Seeger
Hey List! I have just installed emacs23 and org-mode has a kink: I use sexp expressions in an org file to put my schedule in the agenda, like this: %%(diary-schedule 13 10 2008 7 2 2009 1) 10:15-12:00 TM1 MW2001 %%(diary-schedule 13 10 2008 7 2 2009 1) 12:15-13:00 CAD+MZ MW2001 %%(diary-schedul

[Orgmode] Syntax highlighting in published output

2009-01-25 Thread Jan Seeger
Hello List! I was just wondering if org-mode can do (programming language) syntax highlighting like muse when publishing to HTML or similar. If yes, how? Greetings, Jan ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the l

Re: [Orgmode] Publishing a HTML wiki

2009-01-22 Thread Jan Seeger
tion. What I meant is: How would I configure org mode to allow easy export of static HTML suitable for a (fishbowled) wiki? Features I would like are easy links inside the wiki, image support (preferably with copyig between source and HTML tree) and folder structure support. R

[Orgmode] Publishing a HTML wiki

2009-01-22 Thread Jan Seeger
Greetings list, Is there a guide anywhere how to use Org Mode to publish a wiki? A howto on how to do something like worg, for example? Regards, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list.

Re: [Orgmode] Length of block separator line/separator char

2009-01-18 Thread Jan Seeger
At Sun, 18 Jan 2009 08:23:28 +0100, Carsten Dominik wrote: > > OK, I have introduced a new variable, org-agenda-block-separator. > It can be a character which then will be used to fill the window > width, or a string of your choice. > > HTH Many thanks for the quick response! Regards, Jan ___

Re: [Orgmode] Length of block separator line/separator char

2009-01-17 Thread Jan Seeger
At Sat, 17 Jan 2009 19:29:02 +0100, Carsten Dominik wrote: > > > On Jan 17, 2009, at 6:52 PM, Jan Seeger wrote: > > > At Sat, 17 Jan 2009 13:35:21 +0100, > > Carsten Dominik wrote: > >> Hi Jan, > >> > >> what kind of options would you like to

Re: [Orgmode] Length of block separator line/separator char

2009-01-17 Thread Jan Seeger
o org-agenda-block-separator-char and org-agenda-block-separator-length (which can be either a function or a number). Regards, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org htt

Re: [Orgmode] Length of block separator line/separator char

2009-01-16 Thread Jan Seeger
At Thu, 15 Jan 2009 22:02:38 +0530, Manish wrote: > > Does customizing variable org-agenda-time-grid help? No, I actually mean the line between the parts of a block agenda (the one which consists of "". Regards, Jan ___ Emacs-orgmode mailin

[Orgmode] Length of block separator line/separator char

2009-01-15 Thread Jan Seeger
Hello list! Is it possible to make the length of the block agenda separator line and the separator char configurable? Looking at the code, it should not be too big a change. Greetings, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply

[Dovecot] [SOLVED] Dovecot error with Symbian mail client

2008-11-17 Thread Jan Seeger
At Thu, 13 Nov 2008 15:52:46 - (UTC), Jan Seeger wrote: > > Greetings list, > > I have recently acquired an Nokia E71 (which comes with Symbian 3rd > edition, feature pack 3 I believe). Accessing my emails has worked > before, but now, I cannot connect to the mail server a

Re: [Dovecot] Dovecot error with Symbian mail client

2008-11-16 Thread Jan Seeger
r (and I can't set it correctly). Could that lead to an ssl problem? I've heard it screws with kerberos, so... Regards, Jan Seeger

Re: [Dovecot] Dovecot error with Symbian mail client

2008-11-14 Thread Jan Seeger
ems not to be possible, so I should probably look into doing a dist-upgrade... Regards, Jan Seeger

Re: [Dovecot] Dovecot error with Symbian mail client

2008-11-14 Thread Jan Seeger
Thanks for the replies. I guess Timo is right, since I already upgraded from 1.0.9 to version 1.0.13. So I probably need to change my openssl version. What would be the easiest way to do that, since I'm on an debian etch server, which (I think) I cant upgrade? Regards, Jan Seeger

Re: [gentoo-user] Gentoo on Centrino 2 -- Have to wait?

2008-09-06 Thread Jan Seeger
with the kernel sources and gcc to compile the network driver for the kernel. I do have another linux machine here, but it's currently only accessible via ssh (no graphics). Would that help me somehow? Regards, Jan Seeger

[Orgmode] Multiple timestamps

2008-09-06 Thread Jan Seeger
this: Someone marries. ). Is it possible to remove all timestamps from the text when showing the event? Regards, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[gentoo-user] Gentoo on Centrino 2 -- Have to wait?

2008-09-05 Thread Jan Seeger
controller) supported in the newest linux kernel or will I have to wait? If it is supported, how would I go about booting with a newer kernel? Regards, Jan Seeger

[Orgmode] Sorting by todo-keyword

2008-08-05 Thread Jan Seeger
I want to sort my todo agenda view by todo keyword. Is that currently possible? It seems from the org-agenda-sorting-strategy keyword, that this is not the case. Regards, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to

Re: [Orgmode] Exporting with block agenda

2008-07-26 Thread Jan Seeger
Yes, that seems to work correctly. Many thanks, Jan Seeger ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[gentoo-user] The day of the living aspell

2008-07-25 Thread Jan Seeger
Greetings, I have recently tasted the superior spelling correction of hunspell, and don't ever want to see aspell on my system again. To that end, I have globally disabled the spell flag. However, kdelibs still seems to depend on aspell, even though I have disabled the flag and even rebuild kdeli

Re: [Orgmode] Exporting with block agenda

2008-07-22 Thread Jan Seeger
Yeah, I'll check, at latest friday. I have an exam tomorrow, so... well. Regards, Jan -- Warning! Erwin Schrödinger will kill you like a cat in a box. Maybe. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-o

Re: [Orgmode] Exporting with block agenda

2008-07-22 Thread Jan Seeger
Yeah, I'll check, at latest friday. I have an exam tomorrow, so... well. Regards, Jan -- Warning! Erwin Schrödinger will kill you like a cat in a box. Maybe. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-o

Re: [Orgmode] Exporting with block agenda

2008-07-22 Thread Jan Seeger
At Tue, 22 Jul 2008 11:09:22 -0700, Carsten Dominik wrote: > > > On Jul 22, 2008, at 10:49 AM, Jan Seeger wrote: > > (setq org-agenda-custom-commands '( > >

[Orgmode] Exporting with block agenda

2008-07-22 Thread Jan Seeger
ion and! customize-variable, file and settings are the third and fourth elements respectively. So I inserted a nil between the commands and the settings, and my block agenda miraculously exported. Is the above setting wrong, or is that a bug in org-mode? (I'

Re: [gentoo-user] Re: Warning: locale not supported by Xlib, locale set to C

2008-07-21 Thread Jan Seeger
At Mon, 21 Jul 2008 08:02:58 +0200, Miernik wrote: > Anyway, why is this we have to choose a territory for our language, I do > not live in any english-speaking territory, nor it is Denmark, and I > don't want to put on my computer on what territory I live, as it is none > of it's business. Couldn

Re: [gentoo-user] Screen-saver annoyance after recent update

2008-07-19 Thread Jan Seeger
I guess that X is blanking the screen (I have a similar problem with blanking). So the correct location to look would be /etc/X11/xorg.conf Regards, Jan Seeger -- Four bits at a time www.thenybble.de

Re: [gentoo-user] no beep in console

2008-07-15 Thread Jan Seeger
At Tue, 15 Jul 2008 23:06:48 -0400, Peter Wood wrote: > > Hi list, > I have been trying to get the console beep working on 2 laptops (one > with a SIS and one with an Intel sound card). pcspkr is compiled as a > kernel module on both laptops and shows as loaded in lspci, but I don't > get any b

Re: [gentoo-user] emerge -avC cdrkit && emerge -av cdrtools

2008-07-09 Thread Jan Seeger
I'd say this has gone on quite long enough. There *were* some nuggets of information among Jörgs lunatic ravings, but I think it would be best if we ended the thread. Also, who would I have to contact to get Jörg removed from the list? Regards, Jan -- Four bits at a time www.thenybble.de -- gentoo

Re: [gentoo-user] Network manager for laptop

2008-05-06 Thread Jan Seeger
At Tue, 6 May 2008 12:42:15 -0300, Daniel da Veiga wrote: > Gentoo networking configuration is OK. It works for the most part, but > you just need something were you can quickly type a password for a > protected WPA network and it connects. Yes, you CAN edit the files by > hand and provide the inf

Re: [gentoo-user] Network manager for laptop

2008-05-05 Thread Jan Seeger
o, and I always found that the gentoo networking scripts where fully sufficient for keeeping me on-line. Okay, the wireless is a bit flaky, but only when connecting. Note: I do not use network manager. What exactly are your problems? Regards, Jan Seeger -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] Encrypted backups under Gentoo

2008-04-17 Thread Jan Seeger
At Thu, 17 Apr 2008 14:37:52 -0400, Chris Walters wrote: > I also use dar, but I don't bother with gpg. I use the '-K:' option of dar, > which provides passphrase protected blowfish protection. I suppose I could > use > gpg, as well, with AES256 or IDEA, but that would be overkill, I think, sinc

Re: [gentoo-user] Encrypted backups under Gentoo

2008-04-17 Thread Jan Seeger
At Thu, 17 Apr 2008 19:16:54 +0200, Florian Philipp wrote: > I personally use dar and gpg. Dar can be used to make incremental > backups which should partly solve your speed problem. Alternatively you > could use tar and gpg or cpio or whatever floats your boat. Duplicity also does incremental bac

[gentoo-user] Encrypted backups under Gentoo

2008-04-17 Thread Jan Seeger
with encryption barring duplicity? Regards, Jan Seeger -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] Re: rhythmbox plays silently

2008-03-31 Thread Jan Seeger
On Mon, 31. Mar, ionut cucu spammed my inbox with > (gramps:) I remember the good old days when a good clean old-fashioned > fight to the death would sort these things out, and the winner would be > right. Now we have reasoning, such a bore. Good one. I lol'ed^^ -- thenybble.de/blog/ -- four bi

Re: [gentoo-user] Re: jffs2 on gentoo

2008-03-17 Thread Jan Seeger
On Sun, 16. Mar, W.Kenworthy spammed my inbox with > I believe that writing a file to a single location is not the way to do > this: you need to write a byte to the usb key in the same location, but > need to ensure it continually changes: perhaps rotating 1's/0's. > Alternatively, the concern is

Re: [gentoo-user] Re: jffs2 on gentoo

2008-03-16 Thread Jan Seeger
As a followup, I have actually written said script (in perl), and would welcome any improvement comments. File size of the test file shouldn't matter, since without wear leveling, the same cells should get written over and over again. Only thing I need to do now is run it for a long time... Unfort

Re: [gentoo-user] Re: jffs2 on gentoo

2008-03-16 Thread Jan Seeger
On Sun, 16. Mar, Stroller spammed my inbox with >> >> Well, I've heard otherwise. Use jffs2 or the CF card will wear out >> prematurely... > > I've "heard" lots about using flashdrives for filesystems, but I've never > read on a mailing list anything actually definitive on the subject. I find

Re: [gentoo-user] iwlwifi & psk auth

2008-03-11 Thread Jan Seeger
On Tue, 11. Mar, Peter Humphrey spammed my inbox with > > #Network configuration > > config_WLAN1=( "192.168.178.25 netmask 255.255.255.0 broadcast > 192.168.178.255" ) > > routes_WLAN1=( "default via 192.168.178.1" ) > > dns_servers_WLAN1=( "192.168.178.1" ) > > gateways_WLAN1=( "192.168.178.1"

Re: [gentoo-user] iwlwifi & psk auth

2008-03-10 Thread Jan Seeger
On Mon, 10. Mar, Sergey Kobzar spammed my inbox with > Hi Jan, > > Monday, March 10, 2008, 10:33:32 PM, you wrote: > > >> My kernel is Linux 2.6.24-gentoo-r3. > >> Unfortunately I can't emerge iwlwifi (but maybe it's not required?): > > Yes, with 2.6.24, iwlwifi is not required anymore. > > Loo

Re: [gentoo-user] iwlwifi & psk auth

2008-03-10 Thread Jan Seeger
On Mon, 10. Mar, Sergey Kobzar spammed my inbox with > My kernel is Linux 2.6.24-gentoo-r3. > Unfortunately I can't emerge iwlwifi (but maybe it's not required?): Yes, with 2.6.24, iwlwifi is not required anymore. > > Also looks like it's impossible to get WPA-PSK working with iwlwifi > driver

Re: [gentoo-user] date and gentoo running under vmplayer

2008-03-06 Thread Jan Seeger
On Thu, 06. Mar, John J. Foster spammed my inbox with > Hi all - it's been awhile > Is this common? > Is there any way around it? I'm not really sure why openntpd didn't > work. I tried out vmware with a windows VM and it was always fast. I have recently read an article on virtualization timing p

Re: [gentoo-user] perl-cleaner won't clean

2008-03-04 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 04. Mar, Rumen Yotov spammed my inbox with > Jan Seeger wrote: > Hi, > > Threading affects only libperl & perl the modules are Ok. > IIRC perl-cleaner is used when upgrading to new perl version to rebuild the > mod

[gentoo-user] perl-cleaner won't clean

2008-03-04 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello list, As per the subject: I recently rebuilt perl from a non-threaded to a threaded version (with ithreads). Libperl-depending ebuilds were rebuilt correctly, but all installed modules need to be r

Re: [gentoo-user] Re: Digest of gentoo-user@lists.gentoo.org issue 1422 (76278-76327)

2008-03-03 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 NOTE: I don't speak spanish. But somehow, I read it thusly: On Mon, 03. Mar, [EMAIL PROTECTED] spammed my inbox with > Por las nuevas políticas de calidad ISO 9001 que la empresa está > implementando, todos los temas relacionados con soporte técnico

[Remind-Fans] German error translation

2008-02-17 Thread Jan Seeger
One boring afternoon, I produced a german translation of the remind errors. Some are untranslated (2 I think), others I am not too sure about. Anyway, attached you will find the attached diff. Regards, Jan Seeger -- thenybble.de/blog/ -- four bits at a time --- src/langs/german.h 2007-08-08 18

Re: [gentoo-user] Re: Horribly off-topic linux distro question...

2008-02-07 Thread Jan Seeger
anything... If your bank doesn't require something like a TAN (transaction number) or ITAN (indexed transaction number), I wouldn't use it at all. So it would probably wiser to get a laptop and take good care of it. Regards Jan Seeger - -- thenybble.de/blog/ -- four bits at a time

Re: [gentoo-user] To x86_64 or not to x86_64

2008-02-06 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 06. Feb, Volker Armin Hemmann spammed my inbox with > On Mittwoch, 6. Februar 2008, Jan Seeger wrote: > > On Wed, 06. Feb, Volker Armin Hemmann spammed my inbox with > > > > > > > not needed anymore either.

Re: [gentoo-user] To x86_64 or not to x86_64

2008-02-06 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 06. Feb, Volker Armin Hemmann spammed my inbox with > not needed anymore either. flash does work in the 'normal' firefox just fine. Come again? I would be very glad to finally ditch the binary firefox, but using nspluginwrapper didn't work.

[Remind-Fans] Omit several days

2008-01-31 Thread Jan Seeger
omits all homework between 9.2.2008 and 29.2.2008. Is there a better way to do this or is this a good idea? Regards, Jan Seeger - -- thenybble.de/blog/ -- four bits at a time -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.7 (GNU/Linux) iD8DBQFHodCFMmLQdC6jvocRAgOdAJ9hyxYkesf1f8DYKGS32S7TuYDYbQC

Re: [Remind-Fans] Omit several days

2008-01-31 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 31. Jan, David F. Skoll spammed my inbox with > Jan Seeger wrote: > > > But since I created a new omit context, this behaviour should be > > limited to this context, shouldn't it? > > You did not create a new

Re: [Remind-Fans] Omit several days

2008-01-31 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 31. Jan, David F. Skoll spammed my inbox with > Jan Seeger wrote: > > > It seems like omitting a range of days is not (yet?) possible in > > remind. I have used the following kludge: > > Omitting a range is not possi

Re: [gentoo-user] Time format in log files

2008-01-29 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 29. Jan, Jan Seeger spammed my inbox with > On Tue, 29. Jan, Peter Humphrey spammed my inbox with > > On Monday 28 January 2008 16:43:29 Jan Seeger wrote: > > > > > Nope. I pasted that into a file called pipe, a

Re: [gentoo-user] Time format in log files

2008-01-29 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 29. Jan, Peter Humphrey spammed my inbox with > On Monday 28 January 2008 16:43:29 Jan Seeger wrote: > > Nope. I pasted that into a file called pipe, and it still returns Unix time > stamps, thus: > > $ grep completed /

Re: [gentoo-user] Time format in log files

2008-01-28 Thread Jan Seeger
g the following jumbled one-liner: perl -npe '/^\[(\d+)\]/; @times = localtime $1; $times[4]++; $times[5]+=1900; s/\[\d+\]/$times[2]:$times[1] $times[3].$times[4].$times[5]/;' Just pipe your log through that and you will get beautiful (european) dates ins

Re: [gentoo-user] tone generator

2008-01-24 Thread Jan Seeger
r-test from alsa-utils can generate sine waves, pink and white noise. Regards, Jan Seeger -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] cron and ssmtp

2008-01-22 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 22. Jan, Ricardo Saffi Marques spammed my inbox with > I think it's not a group issue. I put myself at cron and crontab groups, > just in case. If it was a group thing, you wouldn't even be able to "crontab > -e". > I edit my cron table using:

Re: [gentoo-user] Failed to allocate mem

2007-11-20 Thread Jan Seeger
o handle the RAM. But free shows the full 2048 MB. I'm curious also, since I sort of gave up looking for an answer. Greets Jan Seeger -- thenybble.de/blog/ -- four bits at a time -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] Moving a file using Python and Cron

2007-09-09 Thread Jan Seeger
have no controlling terminal, so that's something which may go awry. HTH Jan Seeger -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFG477iMmLQdC6jvocRAgGKAJ9iali9yPgTUgz68t/Vn5wf9UHWtgCfTVnJ yQmdQd4SmO88bR9W7tIwdD4= =WlTn -END PGP SIGNATURE- -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] Re: [gentoo- user] KDE & HAL: запретить монт ирование определенных р азделов

2007-08-31 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yep, I could proudly display my mad UTF-8 skillz to my GF^^ -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFG1+ogMmLQdC6jvocRAuOFAKCXtron95L96dORFxiWlsfOhwOXmgCdHzBr wcoR12d1d8TweJkTYtyVf+w= =xivi -END PGP SIGNATURE- --

Re: [gentoo-user] Wireless problem

2007-08-22 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yeah, thanks for saying this, it got me thinking too. Emerging iwlwifi rright now. I'll write an article about it in my blog... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFGzKl7MmLQdC6jvocRAuyhAJ4xhQ94jk6k4EHiyTvx0zHd1EO

Re: [gentoo-user] gentoo-wiki.com not responding

2007-08-20 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Uh, right. I'm sorry, but after all the threads asking what happened to packages.gentoo.org and the like, I somehow thought this was another one... And that infrastructure announcement was linked from planet gentoo, this is how I got to read it (rss).

Re: [gentoo-user] gentoo-wiki.com not responding

2007-08-19 Thread Jan Seeger
On planet gentoo, one can read that the cause for the outage was a security issue: http://www.gentoo.org/news/20070814-infrapr.xml Regards, Jan pgp0Q9OVm0ElC.pgp Description: PGP signature

Re: [gentoo-user] Firefox and Synaptics mousepad

2007-08-17 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try to add "HorizScrollDelta0" to your xorg.conf "InputDevice" section for the touchpad. That also annoyued me. Another thing is that, when pasting a URL, Firefox automatically opens it. I rectified that by going to about:config and setting middlem

Re: [gentoo-user] Cannot compile texinfo: Illegal instruction -> Wrong -march and -mtune flags?

2007-08-02 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'd think that using -march overrides -mtune. You cannot at the same time tune for two architectures. To cross-compile, you would need crossdev. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFGsiCaMmLQdC6jvocRAuuSAJ0dMe4r+RXvJH

Re: [gentoo-user] Crap is being added to site-gentoo.el

2007-08-01 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Just add 'dev-util/subversion -emacs' to /etc/portage/package.use. That way, Subversion is installed without emacs support. To get fancy and only disable the emacs flag for one version, try something like '=dev-util/subversion-1.3.2-r4 - -emacs'. Gree

Re: [gentoo-user] Listing packages that depend on specified package

2007-06-17 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try equery d . You need to emerge gentoolkit for that. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFGdVaPMmLQdC6jvocRApGIAJ0RaIBQXOaDUNqRGkO20Ja0ImNwjwCeJ3K9 iyawObvLdHmeoDe0740qhSg= =HpiK -END PGP SIGNATURE- -- [EMA

  1   2   >