|
I know I'm pretty allergic to dust. However, dealing with servers and workstations on a day to day basis, I encounter it all the time. How do you deal with dust?
Started by Brett G on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
I pick out the larger dust bunnies before....
As for workstations...
I've had servers running in there for years that are still as clean as when I put them in there .
I put the servers in a server room, which has its air conditioned, filtered and dehumidified .
|
|
Hi,
I've want to know what is the best practice or approach in dealing with multiple and complex columns with a form inside.
here's an example of the form I'm dealing with
http://img96.imageshack.us/img96/5658/complexform.jpg
How to properly write a HTML...
Started by Pennf0lio on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I would probably put each form element in a list item within an unordered list (I think semantically, it is a list of input elements that need to be filled in.)
I would then add classes to them for positioning and width etc - the columned ones would need... .
|
|
I'm having an inconvenient dealing with sessions..
I have this:
www.mydomain.com
sub1.mydomain.com
sub2.mydomain.com
sub3.mydomain.com
and when I log into "www", then I change to "sub2" (for example) I figure out it creates another session :S why is that...
Started by Juan Diego on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are multiple ways to deal with this:
If you are not dealing with a high-value application.
|
Ask your Facebook Friends
|
Does anyone know of a good (preferably open source) library for dealing with the Modbus protocol? I have seen a few libraries, but I am looking for some people's personal experiences, not just the top ten Google hits. I figure there has to be at least...
Started by Geoffrey Chetwood on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
We do communication in a standard and open way using Web Services for Devices(WSD) which is also know as Devices... .
I have done a lot of communication with devices for the past few years, since I work for a home automation company, but we don't use Modbus .
|
|
I wrote a simple PHP application to create salary cheques for the company employees. The interaction between db & app is nice, the data is cached & the performance is high enough. So, what's the problem?
I need to provide the ability to print the whole...
Started by Leszek Laszka on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Using FreePDF library....
Consider using a PDF library to generate a PDF document that could be downloaded and then printed by whomever was doing the printing?
One option is the PHP PDF object , some other options are also listed in the comments on that page .
|
|
Forgive me for asking a rather general question, but how do you psychologically deal with high levels of complexity in software projects?
I'm working on a personal compiler project and am currently trying to understand the unmanaged .net metadata API ...
Started by kronoz on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
The psychological benefit we're inherently good at dealing with things laid out with the relationships represented pysically.
Is available, having a mentor would be a great way to deal with complexity.
|
|
A recent project I worked on was proven to be severely underestimated by the architect. The estimate was out by at least 500%.
Unfortunately I was brought onto the project after the estimate had been signed off with the customer. As senior dev, I quickly...
Started by Ash on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit
Dealing to deal with Project managers who slashed estimates to meet a figure that the sales department thought can’t be bothered reading the entire thing....
You can't win, you can't break even and you can't even get out of the game .
|
|
I have a form that submits a large number of inputs...
<input type="hidden" name="searchTag_happy" value="0" /> <input type="hidden" name="searchTag_sad" value="0" /> <input type="hidden" name="searchTag_ambivalent" value="0" /> etc ...
Started by Travis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Foreach($_REQUEST as $k=>$req) { if(strpos($k,"searchTag_")!==false && $req) { $searchTagArray[]=$req; } }
In this way you loop through the REQUEST array and get only values with a key that contains "searchTag_" and with value=1
Mck89 is nearly right... .
|
|
Some users of our Swing application have reported weird artefacts appearing on the display. This ranges from components not repainting themselves properly for a second or two, right upto whole portions of the application being repainted like tiled wallpaper...
Started by banjollity on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The correct way to handle it is slightly more verbose:
public void... .
According to Filthy Rich Clients, you should not alter the Graphics object passed to you (which sucks as an API, IMO) .
I heard that this has been fixed in jdk-1.6.12, but didn't try it .
|
|
I'm working through a wide variety of procs that have a WHERE clauses that look like this:
WHERE ... AND ( ( myTbl.myValue = 1234) or (myTbl.myValue = 1235) )-- Value = No
I've talked this over with some colleagues and this sort of code seems unavoidable...
Started by jcollum on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Create or replace package MAGIC is function magic_number return number DETERMINISTIC; end; / create or replace package body... .
On Oracle you can set up deterministic functions this kind of functions that notice the RDBMS that only is need to be called once .
|