Displaying 4 results from an estimated 4 matches for "nononononono".
Did you mean:
nonononono
2006 May 24
3
packages, modules
i cant make sense in my own mind what is happening,
so if someone can explain, it would be appreciated.
I did the following on the command line..
>require ''md5''
=>true
>t = MD5
=>Digest::MD5
>t.md5(''confused'')
=>1a7f2a5ad77128b2f81feddac78df213
# so far so good, now start new command line
# or unload module
>require
2004 Aug 06
5
liveice problem
Hello everybody...
I figure this is not exactly an icecast question, but maybe
someone might be able to help.
Icecast runs nicely as far as I can see, and so does liveice,
apart from the fact I don't get any input signal fed into it. I
think it's due to the fact it expects the signal on line in by
default and the souncard only has a mic in. So I tried to use
the built in mixer mode,
2004 Aug 06
0
liveice problem
...When I touched that, it dumped core instead :-%
>
> Could anybody shed some light on what I should do best - get
> another soundcard ...?
>
> System's FreeBSD 4.2 RELEASE, icecast from a cvsup'd ports tree
> and liveice is the latest version available from the website.
Nononononono
Mixer mode is like a DJ setup with multiple input channels, faders and
speed control - so you can basically mix tracks using mp3 (it's actually
derived from mpegmixer which I wrote back in '95 and used layer 2 audio
- ancient history). To change your soundcard mixer setting just use an
ext...
2004 Nov 29
4
escaping backslash in a string
How can I get a single backslash in a character string?
My goal is to escape dots in a string that will be used as a regular
expression. I thought I could do it this way:
gsub(".", "\\.", x)
Unfortunately, "\\" does not represent a literal backslash as I
expected, but rather a pair of backslashes:
> "\\."
[1] "\\."
> "\\"
[1]