Displaying 20 results from an estimated 7000 matches similar to: "Help: Need tips for file manipulation"
2024 Sep 02
2
Strange behaviour with admin/stats.xsl disappearing
Greetings icecasting amigos!
I?ve had an incredibly frustrating journey getting a new icecast origin server going to supplant an older machine set for retirement.
The setup is relatively simple ? a beefy Debian bookworm host running icecast as a relaying slave pulling the streamlist from an icecast2 2.4.4 ingest server, for mass distribution.
The ingest / origin server runs fine.
I opted for
2024 Sep 02
1
Strange behaviour with admin/stats.xsl disappearing
Hi,
On 2 Sep 2024, at 12:19, Marek Dziembowski wrote:
> Greetings icecasting amigos!
>
>
> I?ve had an incredibly frustrating journey getting a new icecast origin server going to supplant an older machine set for retirement.
>
> The setup is relatively simple ? a beefy Debian bookworm host running icecast as a relaying slave pulling the streamlist from an icecast2 2.4.4 ingest
2017 Oct 18
2
rsync ingest to new storage environment
All,
I am seeding a new storage environment (Glusterfs on XFS) and would like to
gather advise on best practices. This data is primarily all media data, so
not good with compression.
I currently have made one pass on at 20TB directory tree into the
environment as:
- nfs mount from old storage to new storage
- rsync -av /old/storage/* /new/storage/directory
Once the directories and files were
2011 Feb 06
3
manipulate dataframe
Hello,
Can someone give me hint to change a data.frame.
I want to split a column in more columns depending on the value of a other
column.
Thanks for the reaction,
Andre
Example:
> dat
x1 x2
1 1 a
2 1 b
3 1 c
4 2 d
5 2 e
6 2 f
7 3 g
8 3 h
9 3 i
in
> dur
d1 d2 d3
1 a d g
2 b e h
3 c f i
[[alternative HTML version deleted]]
2008 Feb 14
2
kickstart file problem
I have a kickstart file that I am using to install multiple machines. If I install with no %post script, everything runs great. When I add the following %post section, if fails.
I have been working on this for a few days now without luck, Any help would be appreciated.
Here is the error, the script follows.
Traceback (most recent call first):
File
2007 Aug 02
1
random code questions
merb_dispatcher.rb:28
controller = klass.build(request.body, request.params, route, response)
Why not just use a typical constructor?
merb_dispatcher.rb:35
raise Merb::HTTPMethodNotAllowed.new(method, allowed)
Why not check for this after the action has been dispatched to the controller?
controller_mixin.rb:149
def query_parse(qs, d = ''&;'')
Why not offload query parsing
2011 May 07
2
hivexml rewrite
Greetings.
I am new to this list.
I am writing to you about hivexml. Richard Jones told me that he was considering abandoning this program. Instead, I am willing to take over maintenance of it.
I am involved in computer forensics. I are in the midst of developing an XML standard to describe the Windows Registry.
There are several programs that export the windows registry at XML. I have
2016 Aug 23
2
[XRay][RFC] Tooling for XRay Trace Analysis
Hi llvm-dev,
I've been implementing a tool for analysing XRay traces. A recap of XRay's original RFC [0] mentions a tool that does function call accounting as a starting point. This is implemented currently in D21987 [1], and is being reviewed by David Blaikie.
One key issue in that review is the dependency between the log format determined by the XRay runtime implementation in
2007 May 31
4
Sample Merb App
I put together a sample app to help people learn Merb:
http://svn.depixelate.com/applications/invoice_tracker/
I also blogged about it here:
http://depixelate.com/2007/5/31/taking-merb-for-a-spin
--
Zack Chandler
http://depixelate.com
2006 May 12
5
Is there a method for incrementing string names?!?
Hello,
I have model which has a property named "name", I want to append a
number to the end of the name when there is similar name in db.
name, name1, name2...
Is there a ready to use method in ruby and/or rails for doing so?
Thanks in advance,
- Dunnil
2017 Oct 19
1
Fwd: rsync ingest to new storage environment
> If rsync isn't doing the networking you are better off with cp -au
> instead of rsync. It should be significantly faster and you can do a
> final pass with rsync to get any files that got truncated by a ^C (cp
> can only skip files that are newer not files that are not different and
> a truncated file will be newer since it never got back-dated).
Thanks, I will run some
2012 Nov 16
3
dovecot: lda(root): Fatal: Invalid user settings. Refer to server log for more information.
I ran dovecot -a and the blizzard of data seemed ok to my limited
knowledge. Is there another log I should look into to trace this error
down?
Dovecot and system info:
thufir at dur:~$
thufir at dur:~$ dovecot --version
2.0.19
thufir at dur:~$
thufir at dur:~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.1
2018 Sep 26
4
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
Hello all,
LLVM-TAPI seeks to decouple the necessary link-time information for a
dynamic shared object from the implementation of the runtime object.
This process will be referred to as dynamic shared object (DSO)
stubbing throughout this proposal. A number of projects have
implemented their own versions of shared object stubbing for a variety
of reasons related to improving the overall linking
2010 Jun 05
1
Write.fwf works from Mac, throws different number of row error in Windows
Hello,
I am having a problem with write.fwf in Windows. I wrote a code to ingest a
number of text files with weather data in them, process them, and then
output a text file with two parts: 1) a set of column names, 2) the
processed data table.
I wrote and tested the program on my Mac, and it worked fine. However, on
the windows machine, where I intend the work to be done, when I run the
2006 Apr 26
1
help using tapply
Dear R-mates,
# Here's what I am trying to do. I have a dataset like this:
id = c(rep(1,8), rep(2,8))
dur1 <- c( 17,18,19,18,24,19,24,24 )
est1 <- c( rep(1,5), rep(2,3) )
dur2 <- c(1,1,3,4,8,12,13,14)
est2 <- rep(1,8)
mydata = data.frame(id,
estat=c(est1, est2),
durat=c(dur1, dur2))
# I want to one have this:
id = c(rep(1,8), rep(2,8))
2007 Jul 19
3
Merb::Controller#url Usage
I have a question about the usage of Merb::Controller#url. When I
have nested resources, requesting the new action works differently
than I expected. I was wondering what the intended usage is.
For example:
Say I have
r.resources :articles do |article|
article.resources :article_attachments
end
irb(main):002:0> show_routes
[:articles, "/articles"]
[:article_attachments,
2009 Dec 08
6
conditionally merging adjacent rows in a data frame
Hi, I have a data frame and want to merge adjacent rows if some condition is
met. There's an obvious solution using a loop but it is prohibitively slow
because my data frame is large. Is there an efficient canonical solution for
that?
> head(d)
rt dur tid mood roi x
55 5523 200 4 subj 9 5
56 5523 52 4 subj 7 31
57 5523 209 4 subj 4 9
58 5523 188 4 subj 4 7
2002 Oct 01
1
Re: BOUNCE vorbis@xiph.org
Majordomo rejected the subject line beginning with 'Help'.
<p>> From: John K Muir <jkmuir@trentu.ca>
> Subject: Help in finding a native Ogg trim, fade & nomalise tool
>
> My specific interest lies in a project which involves the digital ingest of about
> 13,000 CDs, 8000 LPs and various and sundry other tape and disc formats
> into a online intranet
2018 Sep 26
2
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
Absolutely. The goal of the tool is to produce both textual and binary
DSO stubs. This means you could take a DSO, produce a textual stub,
modify it however you wish, and then produce a linkable binary stub
from that modified .tbe. That, or you could bypass the textual portion
altogether and just produce binary stubs from DSOs. While the textual
format is useful, the goal is to make the tool
2010 Jan 26
5
Strange tick in ggplot geom_area; and ordering, again
In the area plots below, I see 4 triangle ticks at both sides of the bar; I
believe these are non-stacked values for p, but they are definitively
confusing.
In addition, I would like to get the order of the colors in the plot the
same as in the legend, and not arranged alphabetically (the factor is
ordered, don't touch my order). Hadley once mentioned an undocumented
aestetics