|
While it is considered a "good thing" for Developers to be given a small chunk of work time to pursue their own projects, 2-3 hours a week is not always going to be enough to service many classes of projects. This is exacerbated by peoples natural propensity...
Started by Nat on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If another would prefer to spend the time working on a bugfix for an opensource... .
If one wants to answer SO questions great.
Setting aside work time of giving back.
Encouraging your developers to give back to the community is a great plan.
|
|
What are the pros and cons of giving SQL's service account administrator privileges?
Started by SuperCoolMoss on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
Have to give it privs to lock pages in memory and perform volume maintenance tasks.
|
|
Just for clairity I'm wondering what the best practice is for giving the IUSR_ account write access under IIS 6.0 to a folder. I gave searching on Google a try and on here a try but nothings really pointing me in either direction. From my understanind...
Started by Tim Meers on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I especially wouldn't give anonymous users write give anonymous users write access....
Of discomfort they cause me (least to worst):
I wouldn't give anonymous users write access to a folder on a server computer connected to the Internet.
|
Ask your Facebook Friends
|
I have 2 similar queries
select * from openquery(powerschool, 'select * from TEACHERS where teachernumber is not null and schoolid=''1050'' and teacherloginid is not null order by teachernumber')
and
SELECT * from openquery(powerschool, 'SELECT NVL(teachernumber...
Started by Mithil Deshmukh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Both linked SQL statement actually on the linked server (not locally) give you?.
|
|
This may be a bit off topic of "right answer, not discussion."
However, I am trying to debug my thought process, so maybe someone can help me:
I use compilers all the time, and the fact that I'm giving up control over machine code generation (the layout...
Started by anon on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Programming domain....
Others might appreciate the easiness of Java managing the heap for you, and reducing memory management overhead to a minimum .
You might feel comfortable managing your own memory space in C++ .
Your feeling is, naturally, very subjective.
|
|
I have a file a.csv with contents similar to below
a,b,c a ,aa, a a b, c, f a , b, c a b a b a,a,a a,a,a a aa ,a , t
I am trying to sort it by using sort -k1 -t, a.csv But it is giving following results
a,a,a a ,aa, a a aa ,a , t a b a b a,a,a a , b, ...
Started by DKSRathore on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You have to specify the end position to be 1, too:
sort -k1,1 -t, a.csv
Give this a try: sort -t.
|
|
I have a windows program deployed using WPKG that runs hidden to the user, and may need to reboot sometimes. In order to prevent the user from losing work, I would like a dialog box with a message, giving the logged in user the option to delay the shutdown...
Started by menko on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Easy enough....
The C:\WINDOWS\system32\shutdown.exe utility seems to do the job for me.]
try the following: shutdown -r -t 500 -c "happy user message"
EDIT: The automatic updates reboot message is more of a nag screen with a time-out that has a reboot button .
|
|
I'm trying to keep track my students, and those that have not yet booked a lesson with me (I'm a music teacher as well as a CS student) but my attempt is actually giving me all those that HAVE already booked lessons, what is my mistake?
SELECT DISTINCT...
Started by Robert on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try:
SELECT DISTINCT s.person_id FROM STUDENT s WHERE NOT EXISTS(SELECT NULL FROM LESSONS l WHERE l.student = s.person_id AND l.start_time > NOW())
Robert,
Making reasonable assumptions about how you might be storing information, your query selects... .
|
|
I have written a java program which needs to process thousands of text files (all needs to be loaded on memory). It works fine with as many as 123 input files, but when I run it to process around 5000 files, it terminates unexpectedly in the middle of...
Started by Fahim on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If those measures don't give you answers, try.
If you are using a badly written one.
In libraries too ...
|
|
I have this code,
int main() { std::string st; std::stringstream ss; ss<<"hej hej med dig"<<std::endl; std::getline(ss,st,' '); std::cout <<"ss.rdbuf()->str() : " << ss.rdbuf()->str(); std::cout <<"ss.rdbuf() : " <...
Started by mslot on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For the full story, you will have to read the book... .
The thing returned by rdbuf()) "behaves in an extremely counterintuitive way" (page 72 in my edition) .
To quote from the bible on C++ stream I/O, Langer and Kreft , calling str() on a stream buffer (i.e .
|