Displaying 20 results from an estimated 6000 matches similar to: "No subject"
2006 Oct 01
22
41 server under puppet today
Hello there.
Just to let you know i have just put in production mode puppet on 41
freeBSD 4.7 virtual servers (yes not real servers but "jailed ones"). I
had some little problems with facter at first but i have manualy
upgraded the servers that where affected by the little "facter does not
read his facts" problem i had. I should have missed something in my
deploiement.
2007 Oct 02
10
End of file and other errors: solution
For anyone that has experienced the odd End of file or Cannot describe
errors, we''ve found that switching to Mongrel has fixed this problem for
us. We''re currently running 5 instance of puppetmaster under mongrel (with
the apache proxy in front) and things are going great.
For more information on setting up Mongrel, visit:
2010 Oct 16
0
Spatstat Tessellation error
Hello R Users,
I am trying to do a quadrat count defined by covariate properties in
spatstat. I have read my elevation raster into R (from ascii) and converted
to class "im" for use in spatstat.
Now I have point data of class "ppp" which window is the same extent as the
elevation image. I can conveniently plot the image and the points on the
image as follows:
2010 Oct 20
0
Spatstat: tessellation problems.
Hello R Users,
I am trying to do a quadrat count defined by covariate properties in
spatstat. I have read my elevation raster into R (from ascii) and converted
to class "im" for use in spatstat.
Now I have point data of class "ppp" which window is the same extent as the
elevation image. I can conveniently plot the image and the points on the
image as follows:
2006 Jul 18
2
how to generate calculated db fields
I''m trying to generate a "page slug" i.e. a url sanitized id from
some text in my model that I want to be saved into the database and
I''m not seeing how I can do it.
The closest I''ve come to getting this to work has been...
class Page < ActiveRecord::Base
attr :name
before_save :generate_slug
def generate_slug
self.slug = self.name.gsub
2006 Nov 16
0
rsync-ssh problem
I am having a real nightmare getting automated login with ssh to work;
hoping someone can guide me. I am running Ubuntu 6.10.
I have a main machine (called greywolf) which has a partition for
my /home on it. I am doing backups to an extrnal usb drive attached to
a Linksys NSLU2 (called slug) running UnSlung firmware. All hosts,
networking, shares, firewall & such stuff is working fine.
2010 Oct 15
0
tessellation from biological data in spatstat
Hi,
I'm new to this mailing list so apologies if this is too basic. I have
confocal images 512x512 from which I have extracted x,y positions of the
coordiates of labelled cells exported from ImageJ as a.csv file. I also
have images that define an underlying pattern in the tissue defined as
areas of different pixel values 0 or 255 (also 512x512) I've exported
these images as .txt
2019 Jul 30
2
Invalid DW_AT_calling_convention generated for a DW_TAG_class_type
>Downstream object consumers that check to verify that a DWARF attr is appropriate for a given DWARF tag will appropriately flag an error.
Such a downstream consumer is behaving inappropriately. DWARF is a "permissive" standard, and the use of an attribute in a novel situation is explicitly permitted (see section 1.3 of DWARF v4). Consumers are expected to ignore tags and
2005 Mar 05
3
routes inconsistency?
Hello,
As a small excercise in learning rails, I''ve been porting a very
simple website from SSI to rails (yep, a bunch of static files that
were previously served with a tiny bit of SSI magic are now served by
a database-backed rails, it''s total overkill, I know). Part of the
reason is that I''m trying to move from apache to lighttpd, and
lighttpd''s SSI for
2008 Jun 13
0
DRYing some controller code
def index
if not @contest.nil?
@videos = Video.paginate( :all, :include => { :ad
=> :contest }, :page => params[ :page ],
:conditions => [ "videos.state = ''published'' AND
contests.slug = ?", @contest.slug ] )
else
@videos = Video.paginate( :all, :conditions => { :state =>
''published'' }, :page
2003 Jul 28
1
joining samba domain 3-b3 with windows XP Pro
G'day all,
I have Samba 3 beta 3 running on a RH9 box,(OpenLDAP backend)
trying to make it a PDC.
Everything seems to be working ok (see shares, browse etc)
except I cannot add a machine to the domain.
Windows XP Pro as the client, (registry settings changed)
after I enter the admin user account details to join the domain
I get the following error message...
The user name could not be
2004 Nov 16
1
lme, two random effects, poisson distribution
Hello,
I have a dataset concerning slugs. For each slug, the number of
pumps per one time slot was counted. The number of pumps follows
Bi(30, p) where p is very small, thus could be approximated by
Poisson dist. (# of pumps is very often = 0)
The slugs were observed during 12 time slots which are correlated in
time as AR(1). The time slots are divided into two categories:
Resting time
2019 Feb 14
3
[RFC] Potential extension to asm statement functionality
Hi Paul,
Regarding the "No Touchie!" constraint idea for asm statements: would this be a new qualifier (like volatile) that could be applied to the asm statement?
Since the constraint is not necessarily associated with an input or output operand, it seems that introducing the constraint via the qualifier field might work.
All,
The volatile qualifier on an asm statement already
2008 May 14
3
New blog application post slugs
Hello. I''m creating my own RESTful blog app. I am wondering about
creating post slugs. I think Wordpress creates a slug at post
creation time and stores the string in the database, then uses that
for URLs.
I read about the acts_as_sluggable strategy (http://
agilewebdevelopment.com/plugins/acts_as_sluggable) but I don''t like
having a number (the ID) in the URL.
Any
2019 May 07
2
[EXTERNAL] Re: RFC - a proposal to support additional symbol metadata in ELF object files in the ARM compiler
I have the same question as James has. It seems to me that you can name any
address using an absolute symbol, and that should suffice to handle
memory-mapped peripherals and such. If you really need to define data
(whether it's in .data or .bss) or a function at a fixed memory address,
that's not something you can do with absolute symbols (but you can do with
linker scripts), but is this
2007 Nov 28
1
Cross-compiling asterisk-1.4 for Debian on a slug
Hi folks!
I planned to put asterisk-1.4 on my slug (one of these embedded devices).
Since i don't want to compile it natively on this slow processor, i need
a cross-compile toolchain. I tried out several ways such as manually
compiling binutils and gcc, or using scratchbox. All of these with the
result that i got binaries for machines except the one i wanted! :(
I then have been given a link
2019 May 06
2
[EXTERNAL] Re: RFC - a proposal to support additional symbol metadata in ELF object files in the ARM compiler
James,
What you are doing below is tricking the compiler into believing that it is dealing with a real int object that has actual space allocated to it in x2.o, but sym is not defined as a real data object in x1.o
Thanks, but that doesn’t really address my use case. I still contend that associating a placement address with an actual data object (whether it be initialized or not) or function,
2013 Feb 17
1
Error on installation of Ruby On Rails on QNAP TS809U-RP [Linux]
I am not sure where I should even begin troubleshooting this. I know a
little bit about Linux and am comfortable editing files and running
commands however definitely not a Linux guru. I have ipkg already installed
on the QNAP. I know absolutely nothing about ruby on rails. Thanks for any
help.
For those that are not familiar with a QNAP, ipkg is the same as apt-get or
yum in some Linux
2019 May 09
3
[EXTERNAL] Re: RFC - a proposal to support additional symbol metadata in ELF object files in the ARM compiler
*From: *Snider, Todd <t-snider at ti.com>
*Date: *Thu, May 9, 2019 at 3:53 AM
*To: *Rui Ueyama, James Y Knight
*Cc: *llvm-dev
>
> James, Rui,
>
>
>
> If we are only talking about addressable hardware registers, peripherals,
> etc., then the absolute address symbol is one way to facilitate access to a
> symbol associated with a specific address.
>
>
>
>
2009 Feb 03
1
Can't compile on NSLU2 LE
Hi,
I keep getting the following on my slug no matter what version I try (1.2, 1.4, 1.6, 1.6svn):
...
make[2]: Leaving directory `/usr/portage/distfiles/svn/trunk/menuselect/mxml'
gcc -o menuselect menuselect.o strcompat.o menuselect_stub.o mxml/libmxml.a
menuselect.o: file not recognized: File format not recognized
collect2: ld returned 1 exit status
distcc[19221] ERROR: compile (null) on