|
I'm using DB2, although a solution using any flavor of SQL would likely be easy enough for me to convert.
I didn't design this database, or the application that uses the database. I haven't the power to change this application, how it works, or the data...
Started by srclontz on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
FACILITY_ID, START_DATE, FACILITY_NAME, MIN(END_DATE) as END_DATE from facitities where START_DATE <= @my_date and (@mydate <= END_DATE or END_DATE is null) group by OBJECTID, FACILITY_ID, START_DATE, FACILITY_NAME
....
|
|
Our current co-location facility provides a managed network environment (e.g. firewall, etc.) for our servers. We are considering a new co-location facility that offers us more rack space and higher bandwidth, but it doesn't come with all the managed ...
Started by jholloway7 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
There....
For a start, you almost certainly want redundant firewalls/routers.
This includes any load balancing between redundant network drops from the CoLo .
When doing it your self, you'll need to handle the security, load balancing and routing your self .
|
|
I want to make css file from accessible from everywhere (home, office etc) and ready to edit. and save.
I will do hand coding ,just want syntax highlighting and saving on net facility.
I tried google docs (it's good because i can save online and it has...
Started by jitendra on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Notepad++ Portable
and for addtional use a mozilla firefox browser to... .
Try this portable editor that you can put in your flash drive .
I couldn't recommend it more highly.
Https://bespin.mozilla.com/
Bespin is a mozilla project with a lot of potential .
|
Ask your Facebook Friends
|
Hi guys
I'm fairly new to Castle Windsor and am looking into the in's and out's of the logging facility. It seems fairly impressive but the only thing i can't work out is where Windsor sets the Logger property on my classes. As in the following code will...
Started by vdhant on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The logger is setup by the logging facility, which is in the <facilities> section;/configSections> <Configuration> <castle> <facilities> <facility id="loggingfacility" type, an ILogger which your facility....
|
|
I know how to tell Castle Windsor to resolve a reference from a factory's method using XML, but can I do it programmatically via the Container.AddComponent() interface? If not is there any other way to do it from code?
EDIT: There seems to be some confusion...
Started by George Mauer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the IKernel interface, as in this snippet from something I just found in our repository:
kernel.AddComponent("StatisticsAggregator", typeof(IStatisticsAggregator), typeof(StatisticsAggregator), LifestyleType.Singleton, true);
IWindsorContainer... .
|
|
Hi guys.
Here is the system:
SUSE Linux Enterprise Server 10 syslog-ng with predefined syslog-ng.conf messages in /var/log/messages look like: Feb 8 09:29:53 sles1 sshd[17529]: Accepted keyboard-interactive/pam for root from 10.30.34.64 port 4855 ssh2...
Answer Snippets (Read the full thread at serverfault):
Http://www.balabit.com/support/documentation/?product=syslog-ng
I hope this helps, if I find anything ....
Based on some quick reading I think you want to use the syslog() driver, which si described in section 8.1.6 of the Syslog-ng Administrator's guide .
|
|
In C#4.0 we're going to get dynamic types, or objects whose "static type is dynamic", according to Anders. This will allow any method invocation resolution to happen at runtime rather than compile time. But will there be facility to bind the dynamic object...
Started by Arne Claassen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It probably wouldn't be too hard to use Reflection.Emit to make a class which will generate an implementation of any given... .
I've blogged about the idea , but I don't expect any support .
I'm not aware of anything really resembling duck typing, I'm afraid .
|
|
For Java SE there are several JVM's available for running in production on x86:
IBM J9 Oracle JRockit - http://www.oracle.com/technology/products/jrockit/index.html Apache Harmony - http://harmony.apache.org/ The one in OS X (if a Mac) which appears to...
Started by Thorbjørn Ravn Andersen on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Plus, since it is a true compiler (not just a JIT), you save the... .
It has the advantage of supporting many processors, so if you target one of the embedded processors, gcj may be your only choice .
Not strictly a JVM, but still a Java implementation: gcj .
|
|
Thu Dec 31, 2009 7:52 pm by Graham John Baker
having an add friend facility and chat facility on mas Dear All at MAS
I have been a member of Middle Age Shred for at least two years, I have a couple of suggestions for Middle Age Shred website I feel it...
Started by Graham John Baker on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at middle-age-shred):
Thu Dec 31, 2009 8:19 pm by Woody
Re: having an add friend facility and chat facility on mas We by ChrisK
Re: having an add friend facility and chat facility on mas i don't like anybody on this site: having an add friend ....
|
|
I'm looking for recommendations for a spreadsheet-like input facility to sit in an ASP MVC environment.
The client currently has a large number of very complex interlinked shared spreadsheets (which they are effectively running 90% of their core business...
Started by Cruachan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When asked for a multi-line editable grid, I've done it... .
Check out YUI's datatable, maybe what you need
http://developer.yahoo.com/yui/examples/datatable/dt_cellediting.html
I have used it and its great, very developer friendly and supports pagination .
|