|
Http://www.bbc.co.uk/news/science-environment-16916474
Quote: :
For the first time, scientists at Exeter University have captured on film the process by which plants alert each other to possible dangers.
When a plant is under attack it releases a gas ...
Started by MoFayah!! on
, 15 posts
by 8 people.
Answer Snippets (Read the full thread at projectcovo):
It appears at the end of the day, our narcissistic approach to intelligent... .
They even move, roots and all
crazy they got a visual though
Got freakin Tree beards roaming the earth .
|
|
I must firstly appologise on behalf of the admin team for the nottinghamshire region, its been a bit slack in 2011, due to one thing and another with all of us, but if the members want we can try and start 2012 on a high.
So what have we missed?
Started by M7R on
, 14 posts
by 8 people.
Answer Snippets (Read the full thread at com):
Me too, I'm bits deep in the next car so I'll make a fresh... .
I'm up for any meet next year as I want to become more involved on many levels .
Bad show and all that.
Count me in for 2012 I've just gone red so I really must make an effort and get to a meet .
|
|
I know to start using areas, you have to establish parent/child relationships. I have a couple areas setup and their controllers are hitting just fine, the problem is some Views are not found. I'm trying to gain an understanding of what's happening to...
Started by RailRhoad on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Phil Haack wrote a great blog entry on Areas....
Check to make sure you a registering all of your routes correctly (There's a couple extra things you need to account for when you are using Areas) .
My guess is that maybe it is something to do with the routes .
|
Ask your Facebook Friends
|
I'm refactoring some code, converting a number of related updates into a single transaction.
This is using JDBC, MySQL, InnoDB.
I believe there is an unwanted COMMIT still happening somewhere in the (rather large and undocumented) library or application...
Started by Alex R on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, since you're using JDBC, make sure autocommit is false, as in
connection.setAutoCommit(false);
I am not an expert with mysql, but there should be a possibility ... .
Check out this page in the MySQL docs for statements that cause an implicit commit .
|
|
I have a website built on an old pigg version (from 2006). The site is hosted on dreamhost shared server. This morning I found that the main database of my site was completely erased.
How can I confirm whether it was a hacker or something else has caused...
Started by Niro on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at serverfault):
Also, to mitigate the damage caused if it does happen again, you need to prevent that exact same thing happening....
It happening again (or at least minimising the risk as much as possible) you need to ensure to be publicly available.
|
|
I'm experiencing an issue with ActiveMQ and would like to trace/view all ActiveMQ activity. The only log file I can find is one associated with persistent data (if this is turned on). Are there any other log files I view or generate to tell me what's ...
Started by Dr Dork on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I find it excellent....
Http://activemq.apache.org/jmx.html
Has all the details to get you started.
This gives us access to consumer counts messages queued dequeue and all sorts of data on memory usage etc .
Activemq has a jmx interface that you can connect to .
|
|
One of our wcf service applications calls a seperate third party web service to submit information.
We are getting the following error every so often, but not all the time:
System.Net.WebException: The remote name could not be resolved: 'ws.examplesite...
Started by ansleygal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That will straight away tell you whether a DNS request is failing or whether the web service request is... .
The first thing I would do is get out WireShark or some other packet tracer and check excatly what is being sent when the web service request fails .
|
|
I am trying to add some logic to a wordpress template. I want to build a simple if conditional which will check if a variable equals 26. The variable "$value" must contain some extra hidden characters, because when I echo the content... 26 appears before...
Started by panofish on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
And find out where.
Teh wordpress source code you could probably fuind exactly what is happening...
|
|
I just run into the weirdest thing I've ever encounter.
Consider this test page:
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title></title> <script language=javascript> function test(myParameter) { alert(myParameter...
Started by Juan Manuel Formoso on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
044024 oct to dec is 18452
Numbers prefixed with 0 are considered to be in octal (base 8)
When you write a number with 0 as its first digit, it's an octal number... .
Javascript is interpreting the symbol 044024 as an octal value because of the leading 0 .
|
|
I have a repeater control on an ASP.NET 2.0 web form.
As I understanding it, all of the page's data-bound controls fire their binding events somewhere in between the Page_Load and the Page_PreRender events.
However, my repeater's ItemDataBound event appears...
Started by Matias Nino on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you specifically binding your repeater (myRepeater.DataBind();) in your code behind file (for example... .
I think I had a similar situation, and my option was to FORCE the controls to bind themselves, by calling EnsureChildControls or some similar method .
|