User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T06:57:39Zhttp://stackoverflow.com/feeds/user/16522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1640022/adsi-library-control-for-net0ADSI Library/Control for .NETnsr812009-10-28T20:48:59Z2009-10-28T21:44:33Z
<p>Is there an ADSI Library out there for .NET/C#? I have been able to find bits and pieces of code to do some tasks but nothing comprehensive. </p>
<p>I'm looking for a library that I can just drop into my code and run without having to do too much customization? I'm thinking something along the lines of <a href="http://www.iquinox.nl/" rel="nofollow">MEMM for Excel</a></p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1546226/the-shortest-way-to-remove-multiple-spaces-in-a-string-in-python/1546245#15462459Answer by nsr81 for The SHORTEST way to remove multiple spaces in a string in Pythonnsr812009-10-09T21:52:30Z2009-10-09T21:52:30Z<pre><code>import re
s = "The fox jumped over the log."
re.sub("\s\s+" , " ", s)
</code></pre>
http://stackoverflow.com/questions/1541455/unable-to-make-2-parallel-tcp-requests-to-the-same-tcp-client/1541503#15415030Answer by nsr81 for Unable to make 2 parallel TCP requests to the same TCP Clientnsr812009-10-09T02:14:10Z2009-10-09T02:14:10Z<p>Just a thought.</p>
<p>If your server takes 2seconds to response, shouldn't the Timeout values be 2000, instead of 20000 (which is 20 seconds)? First argument for AsyncWaitHandle.WaitOne() is in milliseconds.</p>
<p>If you are waiting 20 seconds, may be your server is disconnecting you for being idle?</p>
http://stackoverflow.com/questions/1538663/newbie-question-why-are-python-strings-and-tuples-are-made-immutable/1538685#153868511Answer by nsr81 for newbie question: why are python strings and tuples are made immutable?nsr812009-10-08T15:51:29Z2009-10-08T15:51:29Z<blockquote>
<p>One is performance: knowing that a
string is immutable makes it easy to
lay it out at construction time —
fixed and unchanging storage
requirements. This is also one of the
reasons for the distinction between
tuples and lists. This also allows the
implementation to safely reuse string
objects. For example, the CPython
implemenation uses pre-allocated
objects for single-character strings,
and usually returns the original
string for string operations that
doesn’t change the content.</p>
<p>The other is that strings in Python
are considered as "elemental" as
numbers. No amount of activity will
change the value 8 to anything else,
and in Python, no amount of activity
will change the string “eight” to
anything else.</p>
</blockquote>
<p><a href="http://effbot.org/pyfaq/why-are-python-strings-immutable.htm" rel="nofollow">http://effbot.org/pyfaq/why-are-python-strings-immutable.htm</a></p>
http://stackoverflow.com/questions/1527790/c-write-to-excel-using-linq/1527857#15278571Answer by nsr81 for C# write to Excel using Linqnsr812009-10-06T20:13:50Z2009-10-06T20:13:50Z<p>You can:</p>
<ul>
<li>Create a CSV file, which is associated with Excel on most systems.</li>
<li>Create Excel Worksheet object and populate it manually. <a href="http://www.google.com/search?hl=en&q=C%23+create+excel+file+programmatically&aq=f&oq=&aqi=" rel="nofollow">Google Search</a></li>
<li>Using an XLS/XLSX generating Control. I have use Spire.XLS from <a href="http://www.e-iceblue.com/xls/xlsintro.htm" rel="nofollow">http://www.e-iceblue.com/xls/xlsintro.htm</a></li>
</ul>
http://stackoverflow.com/questions/916745/data-collection-from-multiple-workstations0Data Collection from multiple workstationsnsr812009-05-27T16:30:46Z2009-10-06T20:07:15Z
<p>Hi All,</p>
<p>I'm currently working on developing a windows service which will be deployed to all the workstation within the company. The purpose of the service is to collect various statistics and record them in a central location.</p>
<p>for the first iteration, the service is doing direct call to SQL to record the every time there is data to record. Testing it on about 120 workstation told me that it is not a good idea and won't scale. </p>
<p>Can someone recommend an alternative strategy for collecting the data in question which won't overload the database server? This will be deployed to about 2000 machines.</p>
<p>I'm working with C#.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/916745/data-collection-from-multiple-workstations/1527812#15278120Answer by nsr81 for Data Collection from multiple workstationsnsr812009-10-06T20:07:15Z2009-10-06T20:07:15Z<p>Just answering to wrap up the question. Here is how I ended up implementing it.</p>
<p><strong>Data Collection</strong></p>
<ul>
<li>A C# service runs on the workstations. At different intervals (not predetermined, based on certain events on the system) it fires off data collection. </li>
<li>Data is written to a file on the local workstation.</li>
<li>Data file is then copied to a network location.</li>
</ul>
<p><strong>Data Parsing</strong></p>
<ul>
<li>An "importer" program runs on a schedule. It goes through all the text files created since it last ran, parses them and imports them into SQL.</li>
</ul>
<p>The reason I implemented it this way is to:</p>
<ul>
<li>Avoid resource issues with my SQL server that I mentioned in the original question.</li>
<li>Files created are really small, 1-2KB</li>
<li>Importer runs a couple of minutes in the past to avoid colliding with any copies in progress.</li>
<li>Importer deletes the files which have been processed and skips the files which are not within it's "lastscantime" and "currentTime-Xminute" window.</li>
</ul>
http://stackoverflow.com/questions/1527393/what-is-orthogonality/1527420#15274201Answer by nsr81 for What is "Orthogonality"?nsr812009-10-06T19:00:18Z2009-10-06T19:00:18Z<p>First time hearing the word, but Wikipedia seems to have something on it:</p>
<p><a href="http://en.wikipedia.org/wiki/Orthogonality#Computer%5Fscience" rel="nofollow">http://en.wikipedia.org/wiki/Orthogonality#Computer%5Fscience</a></p>
http://stackoverflow.com/questions/1526028/how-can-i-work-with-active-directory-from-perl/1526049#15260490Answer by nsr81 for How can I work with Active Directory from Perl?nsr812009-10-06T14:47:33Z2009-10-06T14:47:33Z<p>From what I understand, there are two options:</p>
<ul>
<li>Win32::OLE module </li>
<li>Execute external tools (suchs DSQuery, DSGet, etc) and parse the output.</li>
</ul>
<p>I don't have much experience with Win32::Ole, may be someone else can elaborate on that a bit.</p>
http://stackoverflow.com/questions/1505266/java-or-python-for-an-intermediate-php-guy-career-advice/1525513#15255130Answer by nsr81 for Java or Python for an intermediate PHP guy. Career advice.nsr812009-10-06T13:15:20Z2009-10-06T13:15:20Z<p>As many others have noted, if you are learning a new language in order to land a job, Java would be your best bet, closely followed by .NET set of languages.</p>
<p>That being said, there's nothing that'd stop you from from picking up Python. I'm currently working on a couple of projects using C#, but I'm also dabbling in Python & Perl.</p>
http://stackoverflow.com/questions/1513921/what-does-senior-software-developer-mean/1513944#15139443Answer by nsr81 for What does "Senior Software Developer" mean?nsr812009-10-03T14:50:13Z2009-10-03T14:50:13Z<p>To me, it can be a combination of a few things:</p>
<ol>
<li>They've been there longer compared to some other team members.</li>
<li>They have more experience (might also imply age).</li>
<li>They have more responsibilities, such as managing project, instead of day-to-day "grunt" work.</li>
<li>They have a say in the direction of the projects, if not the company's.</li>
</ol>
<p>But again, depending on the company they are working for, the job description will vary.</p>
http://stackoverflow.com/questions/1501155/php-rand-array/1501173#15011730Answer by nsr81 for php rand() arraynsr812009-09-30T23:21:37Z2009-09-30T23:21:37Z<p>You are correct.</p>
<p>according to <a href="http://us3.php.net/manual/en/function.array-rand.php" rel="nofollow">http://us3.php.net/manual/en/function.array-rand.php</a></p>
<p>you can do:</p>
<pre><code><?php
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "\n";
echo $input[$rand_keys[1]] . "\n";
?>
</code></pre>
http://stackoverflow.com/questions/441900/most-used-ide-keyboard-shortcut/443117#4431170Answer by nsr81 for Most used IDE Keyboard Shortcutnsr812009-01-14T14:26:29Z2009-01-14T14:26:29Z<p>In Visual Studio, </p>
<p><b>CTRL+K, D</b> to format the entire document.<br />
<b>F5</b> and <b>CTRL+F5</b> to run solution with or without debugging.<br />
<b>CTRL+Space</b> Trigger Intellisense dropdown.<br />
<b>"<i>prop</i>" TAB TAB</b> for easy properties. </p>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/432216#4322161Answer by nsr81 for What was your first computer game that got you interested in computers?nsr812009-01-11T02:24:47Z2009-01-11T02:24:47Z<p>Prince of Persia (the very first one)<br />
<a href="http://en.wikipedia.org/wiki/Dangerous_Dave_in_the_Haunted_Mansion" rel="nofollow">Dangerous Dave in the Haunted Mansion</a> </p>
http://stackoverflow.com/questions/428529/asp-net-output-expense-report-in-excel/428605#4286050Answer by nsr81 for ASP.NET output expense report in Excelnsr812009-01-09T15:57:43Z2009-01-09T15:57:43Z<p>You can try Spire.XLS ( <a href="http://www.e-iceblue.com/xls/xlsintro.htm" rel="nofollow">http://www.e-iceblue.com/xls/xlsintro.htm</a> )</p>
<p>It's not free, but does a great job of reading and creating XLS documents without having to have Excel present on the server.</p>
http://stackoverflow.com/questions/426070/programming-manuals-on-the-web/426104#4261042Answer by nsr81 for programming manuals on the webnsr812009-01-08T21:39:22Z2009-01-08T21:39:22Z<p>First: Google</p>
<p>If I can't find specific stuff on Google, then I start hitting specific forums/sites, sitepoint.com, stackoverflow.com, msdn, asp.net, etc.</p>
http://stackoverflow.com/questions/422411/linq-to-sql-generalization1LINQ to SQL, Generalizationnsr812009-01-07T22:20:07Z2009-01-07T22:42:08Z
<p>Hi All,</p>
<p>I am struggling a bit to figure this one out. </p>
<p>I'm working on an ASP.NET MVC project, using LINQ to SQL for my data layer. The database consists of 10 or so different "exceptions" tables, e.g. "Exceptions.LADM", "Exceptions.USB", "Exceptions.GPO". Basically these tables are tracking user+machine information for relaxation of various security procedures.</p>
<p>My LINQ to SQL model has been generated. I have different classes for each table available to me. However, I am not sure how to use them in controller without having to generate separate Controller Actions for each exception type. For <code>List</code> action, I want to do something like this: </p>
<pre><code>// Example Request: /Exceptions/List/ladm
// Routing: Controller = "Exceptions", Action = "List", type = "ladm"
// Controller Action:
public ActionResult List(string type)
{
string viewname = "List-" + type; // refer to "List-ladm" view.
if(type == "ladm")
{
var items = _repository.ListAllLADMExceptions();
}
return View(viewname, items);
}
</code></pre>
<p>My repository implements <code>ListAll<XXXXXX>Exceptions</code> methods for each table. Is there a way to avoid 10 different if/else statements? It looks ugly and I'm sure there is a better way that I cannot think of. May be I'm approaching it from incorrect angle.</p>
<p>Any suggestions would be welcomed.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/167294/how-to-get-https-url-content/167417#1674171Answer by nsr81 for How to get Https URL contentnsr812008-10-03T15:25:56Z2008-10-03T15:25:56Z<p>cURL or wget with SSL support. </p>
<p>cURL, you can run either through the compiled PHP library or call the executable from PHP.</p>
<p>Wget, you will have to call the executable.</p>
http://stackoverflow.com/questions/154698/how-can-i-keep-a-class-from-being-inherited-in-c/154770#1547702Answer by nsr81 for How can I keep a class from being inherited in C#?nsr812008-09-30T20:09:02Z2008-09-30T20:09:02Z<p>As Joel already advised, you can use <code>sealed</code> instead of <code>final</code> in C#.</p>
<p><a href="http://en.csharp-online.net/CSharp_FAQ:_Does_CSharp_support_final_classes" rel="nofollow">http://en.csharp-online.net/CSharp_FAQ:_Does_CSharp_support_final_classes</a></p>
http://stackoverflow.com/questions/150339/generating-an-excel-file-in-asp-net/153518#1535180Answer by nsr81 for Generating an Excel file in ASP.NETnsr812008-09-30T15:18:56Z2008-09-30T15:18:56Z<p>You can of course always go for a third party components. Personally, I have had a good experience with Spire.XLS <a href="http://www.e-iceblue.com/xls/xlsintro.htm" rel="nofollow">http://www.e-iceblue.com/xls/xlsintro.htm</a></p>
<p>The component is pretty easy to use within your application:</p>
<pre><code> Workbook workbook = new Workbook();
//Load workbook from disk.
workbook.LoadFromFile(@"Data\EditSheetSample.xls");
//Initailize worksheet
Worksheet sheet = workbook.Worksheets[0];
//Writes string
sheet.Range["B1"].Text = "Hello,World!";
//Writes number
sheet.Range["B2"].NumberValue = 1234.5678;
//Writes date
sheet.Range["B3"].DateTimeValue = System.DateTime.Now;
//Writes formula
sheet.Range["B4"].Formula = "=1111*11111";
workbook.SaveToFile("Sample.xls");
</code></pre>
http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file/130155#1301550Answer by nsr81 for DOS batch command(s) to read first line from text filensr812008-09-24T21:42:55Z2008-09-24T21:42:55Z<p>Try GNU32 "head" utility. Don't think what you are after will be easily accomplished by just DOS Batch.</p>
http://stackoverflow.com/questions/105645/injecting-a-user-account-into-mysql3Injecting a user account into mySQLnsr812008-09-19T21:09:32Z2008-09-19T21:31:37Z
<p>Hi all,</p>
<p>Tackling a strange scenario here. </p>
<p>We use a proprietary workstation management application which uses mySQL to store its data. Within the application they provide number of reports, such as which user logged into which machine at what time, all the software products installed on the monitored machines, so on and so forth. We are looking to do a different set of reports, however, they do not support custom reports.</p>
<p>Since their data is being stored in mySQL, I gather I can do the reporting manually. I don't have valid credentials to connect to the mySQL server though. <b>Is there anyway for me to create a user account in the mySQL server?</b> I do not want to reset the root password or anything account that might be in there, as it might break the application.</p>
<p>Thanks for your help.</p>
<p><hr /></p>
<p>I have full access to the Windows 2003 server. I can stop and restart services, including the mySQL server. To the actual mySQL server, I only have basic access through the GUI provided by the software. I can't connect to it directly through CLI or through another tool (due to the lack of credentials). </p>
<p><hr /></p>
<p>I apologize if it came off as if I'm trying to get unauthorized access to the mySQL server. I have contacted the software company, and as of today it's been two weeks without a response from them. I need to get to the data. I have full access to the physical box, I have admin privileges on it.</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/88004#8800419Answer by nsr81 for What is the single most effective thing you did to improve your programming skills?nsr812008-09-17T21:45:51Z2008-09-17T21:45:51Z<p>The basic things that helped me as a programmer:</p>
<ul>
<li>Learned Touch Typing. </li>
<li>Learned to overcome shyness and ask
question.</li>
</ul>
<p>Typing for a programmer is essential. Everyone has had a "programmer" coworker who typed using exactly two fingers and had to look at the keyboard for everything. Not fun. Learning to touch type give a huge boost to your productivity as a programmer.</p>
<p>And if you don't ask, no one is gonna tell you. </p>
http://stackoverflow.com/questions/85034/sqlserver-create-table-with-mysql-like-autoincrement-primary-key/85858#858581Answer by nsr81 for SqlServer create table with MySql like auto_increment primary keynsr812008-09-17T17:55:57Z2008-09-17T17:55:57Z<p>As advised above, use an IDENTITY field.</p>
<pre><code>CREATE TABLE foo
(
user_id int IDENTITY(1,1) NOT NULL,
name varchar(50)
)
</code></pre>
http://stackoverflow.com/questions/1640022/adsi-library-control-for-net/1640316#1640316Comment by on ADSI Library/Control for .NET2009-10-29T10:58:40Z2009-10-29T10:58:40ZGuess I'm rolling my own :-) Thanks for the links and information.http://stackoverflow.com/questions/1546226/the-shortest-way-to-remove-multiple-spaces-in-a-string-in-python/1546245#1546245Comment by on The SHORTEST way to remove multiple spaces in a string in Python2009-10-09T21:56:46Z2009-10-09T21:56:46Zupdated. thanks for pointing that out.http://stackoverflow.com/questions/1546226/the-shortest-way-to-remove-multiple-spaces-in-a-string-in-python/1546251#1546251Comment by on The SHORTEST way to remove multiple spaces in a string in Python2009-10-09T21:53:40Z2009-10-09T21:53:40Zdoesn't strip() only do leading & trailing spaces? http://stackoverflow.com/questions/1527969/file-echo-loop-with-extra-final-iterationComment by on File echo loop with extra final iteration2009-10-06T20:38:17Z2009-10-06T20:38:17ZCan you confirm that "dictionary.txt" doesn't have a new-line at the end? Because your code seems to be straight forward read-in, write-out.
http://stackoverflow.com/questions/916745/data-collection-from-multiple-workstations/916911#916911Comment by on Data Collection from multiple workstations2009-10-06T20:08:38Z2009-10-06T20:08:38ZI ended up implementing it in two phases. see the details in my answer below. As far commercial products, I couldn't find any that would accomodate very special needs that I was asked to satisfy.
thanks though.http://stackoverflow.com/questions/1520726/suggested-second-step-textbook-for-self-educating-programmer/1520762#1520762Comment by on Suggested second-step textbook for self-educating programmer?2009-10-06T13:08:40Z2009-10-06T13:08:40Zdefinitely one the best books I bought during my undergrad days. A must read for anyone thinking about getting into programming.http://stackoverflow.com/questions/1497414/getting-the-text-from-a-selected-item-in-a-radiobuttonlist-in-a-gridview-in-asp-nComment by on Getting the Text from a Selected Item in a RadioButtonList in a GridView in ASP.NET2009-09-30T11:10:03Z2009-09-30T11:10:03ZIs the error with Label portion or with the RadioButtonList portion? Also, what is the value of "strAnswer" after
string strAnswer = rblAnswer.SelectedValue;
Is it a valid integer which can be parsed into an "int"?
http://stackoverflow.com/questions/441900/most-used-ide-keyboard-shortcut/441932#441932Comment by on Most used IDE Keyboard Shortcut2009-01-14T14:24:05Z2009-01-14T14:24:05ZIt must be an editor option, because my VS seems to adjust indentation and formatting when pasting code in. http://stackoverflow.com/questions/439265/how-do-i-add-an-empty-first-entry-do-an-aspdropdownlist/439285#439285Comment by on How do I add an empty first entry do an <asp:DropDownList>?2009-01-13T15:42:47Z2009-01-13T15:42:47ZYou have to be careful with this one. Make sure that your don't databind every time page loads, otherwise your dropdown list will get appended to every time the page loads.http://stackoverflow.com/questions/422411/linq-to-sql-generalization/422466#422466Comment by on LINQ to SQL, Generalization2009-01-08T20:24:40Z2009-01-08T20:24:40ZAccepting it as final as reflection seems to be a better fit in this scenario. I will benchmark and see how expensive it is compared to if/else or case/switch. Thanks.http://stackoverflow.com/questions/423965/software-robots-processes-or-work-automation/424033#424033Comment by on Software "Robots" - Processes or work automation2009-01-08T12:30:09Z2009-01-08T12:30:09ZI don't think telling the poster to switch OS is going to help. Will all his tools work in *nix? What about the learning curve of a new OS?
good scripting solutions are available for windows, e.g. VBScript, Powershell, WinBatch, Perl, Python. as well as automation programs, e.g. AutoHotkey, AutoIt.http://stackoverflow.com/questions/192366/how-to-grab-ad-credentials-from-client-machine-in-a-web-application/192416#192416Comment by on How to grab AD credentials from client machine in a web application.2008-10-10T21:24:47Z2008-10-10T21:24:47ZThe original poster mentioned that the site will be hosted on client's intranet. Your point about security is moot.http://stackoverflow.com/questions/105645/injecting-a-user-account-into-mysql/105804#105804Comment by on Injecting a user account into mySQL2008-09-19T21:37:01Z2008-09-19T21:37:01ZThat is exactly what I was looking for. Thank you.