Displaying 20 results from an estimated 1000 matches similar to: "Centos for Interested Children"
2006 Jun 07
1
Config for powercom 2200
Hey all,
I've tried some very base configs with the powercom 2200, but I can't seem
to get it to work. Has anyone dealt with these UPSes before, or know if
they use the standard powercom drivers?
I'd be more than happy to allow access to my test system so someone more
knowledgeable can take a look (and am also willing to pay something for
the solution of said problem.)
-Dan
2008 May 07
3
Yum + priorities plugin question
Hello all!
I've recently started using the priorities plugin as part of my best
practices. It's very effective, and prevents nasty things from
happening (like atrpms upgrading python and disabling yum.)
I'm wondering if there's a simple and elegant way to allow
package-name-based exclusions. For example: For my mysql cluster, I'd
prefer to have the latest mysql and
2014 Aug 11
2
Centos 6 : ClamAV out-of-date ???
On one Centos 6.5 server, but not on other C 6.5 servers, Logwatch daily
tells me:-
Last Status:
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.98.3 Recommended version: 0.98.4
----------------
: freshclam -V
ClamAV 0.98.4/19275/Sun Aug 10 17:26:35 2014
: clamd -V
ClamAV 0.98.4/19275/Sun Aug 10 17:26:35 2014
: rpm -qa clam\*
clamd-0.98.4-1.el6.rf.x86_64
2018 Jan 24
2
libomptarget code owner.
Hi,
Currently libomptarget has no code owner. Although it is part openmp project the expertise required for libomptarget is different from openmp.
Georgios Rokos from IBM has agreed to be the owner of libomptarget source, so I would like to nominate Georgios Rokos who is a major contributor to libomptarget.
Thanks
Ravi
-------------- next part --------------
An HTML attachment was
2006 Oct 31
7
FXO Cards vs. Channel bank with T1
Is there any advantage of getting a T1 card with a channel bank over 2-3 FXO cards ?
Thanks.
Dovid
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061031/0f74ec67/attachment.htm
2005 Dec 06
1
Win up to $2000 for Asterisk Enterprise References!
Digium is seeking customer success stories. If you have a nominee, you
could win a prize of up to $1000 cash or $2000 in Digium hardware.
Digium would like to contact these customers for possible use as
references for press quotes and case studies. Depending on the customer
and the Asterisk implementation, we will award a prize of up to $2000 in
hardware or $1000 in cash. If you have any
2005 Dec 06
1
Win up to $2000 for Asterisk Enterprise References!
Digium is seeking customer success stories. If you have a nominee, you
could win a prize of up to $1000 cash or $2000 in Digium hardware.
Digium would like to contact these customers for possible use as
references for press quotes and case studies. Depending on the customer
and the Asterisk implementation, we will award a prize of up to $2000 in
hardware or $1000 in cash. If you have any
2008 Oct 31
6
link_to submit form value 2
Hi to all,
I''d like to pass with a link to values inside some form. I''ve read in
other posts that it''s possible if i include the forms inside a html
<div>...
So here it''s my code of the view :
<div id="study">
<table>
<tr><td><label for="study_titolo">Titolo di
2018 Mar 01
0
libomptarget code owner.
Haven't seen any discussions here. Does that mean that everybody agree on appointing George Rokos to be the code owner for the projects/openmp/libomptarget source tree?
If so, can we have kind of formal approval so that the code_owners.txt file is updated and questions on libomptarget go to the right person then.
BTW, the nominee was discussed at the libomptarget developers meeting, and
2015 Jan 07
3
Design changes are done in Fedora
On Tue, 2015-01-06 at 16:07 -0700, Warren Young wrote:
> "There is nothing new to be discovered in physics now. All that
> remains is more and more precise measurement.?
>
> ? William Thomson, Lord Kelvin, 1900
Now means the current time. Now is not, and never will be, The (unknown)
Future.
In the real world of using computers productively for repetitive
2015 Jan 09
3
Design changes are done in Fedora
On Thu, 2015-01-08 at 09:35 -0700, Warren Young wrote:
> Once a thing becomes reliable, it stops being technology.
Oh No. Just because something works well it does not stop being
"technology" unless the USA people, who have decimated my language
(English), have a new definition for "technology".
Warren are you serious that things that do not work well are
2006 Mar 25
2
acts_as_tree wierdness with children.count and children.size
i am making a category tree and i iterate over the category using my
counter_cache however it would show a different number than what was
actually being represetned in the tree.
Here is an example
cat.children = [cat2, cat3]
puts cat.children.size 2
puts cat.children_count 2
cat4.parent_id = cat.id
cat4.save
puts cat.children.size
2006 Jul 20
9
Including children''s children?
a has many b''s
b has many c''s
results = A.find params[:id], :include => :b
How do you also make sure the b''s include the c''s?
Thanks for your help.
Thank You,
Ben Johnson
E: bjohnson@contuitive.com
O: 800-341-6826
M: 817-229-4258
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 11
0
serializing / deserializing active records with children
What is the best approach to serialize / deserialize full blown active
record objects with multiple child objects (one-to-many relations).
YAML::load(), YAML::dump() almost work :) -> loaded object has
children (I see them in breakpoint session: "puts parent"), but when I
am accessing children (e.g: "puts parent.emails") array becomes
cleared - I guess rails are trying to
2006 Jul 17
1
Updating multiple children from one page
Hello,
I have a model called invoice and one called lineitem. An invoice
has_many lineitems, and an lineitem belongs to an invoice. I have a
model method that calculates the price of a lineitem, and one that
calculates all lineitems in an invoice. I want to have an edit page
that lists all the invoices lineitems and their calculated prices, with
a text field for a person to change the
2006 Jun 03
2
Parent listing children.
My database is set up as Categories > Things associated by category_id
and has_many and belongs_to.
How would I go about listing all the categories and under each Category
is it''s children? Is there an easy rails way to do this - preferably
without using acts as tree? Any help is appreciated - thanks!
--
Posted via http://www.ruby-forum.com/.
2006 Jun 12
2
Getting 1 from children of has_many, Noob question...
The ''Agile Web'' book says that you can iterate over a list of children
as so:
order.line-items.each do |li|
etc...
This is fine when you need then all consecuitvely, but I need to pull
the first one for the top of the page and still list all at the bottom.
So, the question is:
How do I reference the first item (child) directly?
Thanks
Lance F. Squire
--
Posted via
2006 Jun 22
1
Active Record question, orphaned children
I have a Deck object and a Card object with their corresponding tables. (You
know a deck of cards.) When I destory a Deck it leaves orphaned cards in
the database. Is there a way to set up the objects with ActiveRecord so that
when a parent object is destoryed the child objects are destroyed as well?
My code below.
class Deck < ActiveRecord::Base
has_many :cards
end
class Card <
2006 May 30
0
Order parents when displaying children question
Hi,
I want to show a series of links belonging to a specific category.
The links will be shown grouped by category, but how can I alter the
order of the categories?
I have a field in my database called position with the order in which
they
should appear.
MODELS:
class Category < ActiveRecord::Base
has_many :links
validates_uniqueness_of :category, :message => "already
2006 Apr 15
0
parent.children not updated (has_many)
Hi guys!
class Parent < ActiveRecord::Base
has_many :children
end
class Child < ActiveRecord::Base
belongs_to :parent
end
I do:
parent = Parent.find(1, :include => :children)
parent.children.find(3).update_attribute(''name'', ''Tom'') (or
parent.children.find(3).name = ''Tom'')
parent.children.find(3).name
=> ''old