User tanascius - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T18:51:03Zhttp://stackoverflow.com/feeds/user/52444http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903587/c-code-problem-revision-numbers-and-letters/1903622#19036221Answer by tanascius for C# Code Problem: Revision Numbers and Letterstanascius2009-12-14T21:25:54Z2009-12-14T21:34:20Z<p>You can use the modulo operator and division to get your code.<br>
Like 55 / 26 == 2 (that is B) and 55 % 26 = 3 (that is C). It works for two characters. When you have an unknown count of characters, you have to start looping:</p>
<p>[look at Aaron's solution, mine was wrong]</p>
http://stackoverflow.com/questions/1902061/sha-1-based-directory-structure-and-ntfs-limitations/1902373#19023733Answer by tanascius for SHA-1-based directory structure and NTFS limitations?tanascius2009-12-14T17:44:54Z2009-12-14T17:50:59Z<p>Some observations:</p>
<ul>
<li>You split after 4 and 10 more chars. 4 chars on their own can lead to 65536 entries in a directory, 10 chars will lead to 16^10 entries, which is certainly way too much (and there are still more charactes remaining ...)</li>
<li>So the next question is: How did you choose this numbers? They look to me like <em>magic</em> numbers. You seem to <em>hope</em> that your splits will do the work in all cases ...</li>
</ul>
<p>Your question about the directory deepth that can be handled is good - and I can't answer it. But you should have a look, if 20 nested directories are too much to handle, because 20 levels allow you to keep a maximum of 256 entries per level:</p>
<pre><code>xx/xx/xx/xx/xx/...
</code></pre>
<p>On the other hand you could stick with your 4 characters, which would lead to a depth of 10 and 65536 entries maximum:</p>
<pre><code>xxxx/xxxx/xxxx/xxxx/xxxx/...
</code></pre>
<p>However - in both cases I'd probably write a dynamic algorithm, which checks the number of items per level and introduces new subfolders as you need them. So the first 256 (or 65536) items would just go to one directory.</p>
http://stackoverflow.com/questions/1882692/c-constructor-execution-order/1882713#18827132Answer by tanascius for C# constructor execution ordertanascius2009-12-10T17:43:56Z2009-12-10T17:43:56Z<p>The constructor of the baseclass is called first.</p>
http://stackoverflow.com/questions/1881553/building-a-non-sequential-list-of-numbers-from-a-large-range/1881650#18816502Answer by tanascius for Building a non sequential list of numbers (From a large range)tanascius2009-12-10T15:15:28Z2009-12-10T15:15:28Z<p>I understand, that you want to get a random array of lenth 1mio with all numbers from 1 to 1mio. No duplicates, is that right?</p>
<p>You should build up an array with your numbers ranging from 1 to 1mio. Then start shuffling. But it can happen (that is true randomness) that two ore even more numbers are sequential.</p>
<p>Have a look <a href="http://stackoverflow.com/questions/375351/most-efficient-way-to-randomly-sort-shuffle-a-list-of-integers-in-c">here</a></p>
http://stackoverflow.com/questions/1840898/with-git-how-can-i-commit-some-changes-in-the-working-copy-to-a-different-branch/1840962#18409622Answer by tanascius for With Git, how can I commit some changes in the working copy to a different branch?tanascius2009-12-03T16:10:41Z2009-12-03T16:10:41Z<p>You can use <a href="http://www.kernel.org/pub/software/scm/git/docs/git-add.html" rel="nofollow"><code>git add -i</code></a> to use the interactive mode. There you can specify, what to commit and what to skip.</p>
<p>This way you can commit your oneliners as seperate commits. By using <a href="http://www.kernel.org/pub/software/scm/git/docs/git-cherry-pick.html" rel="nofollow"><code>git cherry-pick</code></a> you can merge them to your master, later.</p>
http://stackoverflow.com/questions/1834469/how-to-implement-automatic-properties-in-vs-2005-for-a-delegate-callback/1834521#18345210Answer by tanascius for How to implement automatic properties in VS 2005 for a delegate callbacktanascius2009-12-02T17:30:32Z2009-12-02T17:30:32Z<p>Just use a backing field:</p>
<pre><code>private FilterMessage m_FilterMessageCallback;
public FilterMessage FilterMessageCallback
{
get { return m_FilterMessageCallback; }
set { m_FilterMessageCallback = value; }
}
</code></pre>
<p>The code in your interface</p>
<pre><code>FilterMessage FilterMessageCallback { get; set; }
</code></pre>
<p>has btw. nothing to do with C#2.0/3.0, that is a normal inteface definition with setter and getter.</p>
http://stackoverflow.com/questions/1812010/how-to-implement-this-oscillation-function/1812082#18120822Answer by tanascius for How to implement this oscillation function tanascius2009-11-28T09:24:57Z2009-11-28T09:47:49Z<p>As the commenter points out, you have to know the functions.<br>
The program structure would be something like:</p>
<pre><code>// Use modulo to get the counter within the range of the first duration
var phaseCounter = currentCounter % duration;
// Use the appropriate function
if( phaseCounter < inDuration )
{
return InFunction( phaseCounter, inDuration );
}
if( phaseCounter > duration - outDuration )
{
// Normalize the phaseCounter to the domain of definition for OutFunction()
var outDurationOffset = duration - outDuration;
return OutFuntion( phaseCounter - outDurationOffset, outDuration );
}
return 0;
</code></pre>
<p>As you can see, you have to fill out <code>InFunction()</code> and <code>OutFunction()</code>.<br>
They both get two parameters, the x position <em>in their domain of definition</em> and their domain of definition. This way it should be easy to implement the functions.</p>
<p><strong>EDIT:</strong><br>
The <a href="http://en.wikipedia.org/wiki/Quadratic%5Ffunction" rel="nofollow">quadratic function</a> could be an <em>example</em> for your <code>InFunction</code>:</p>
<pre><code>double InFunction( uint current, uint range )
{
return Math.Pow( ( current / range ) - 1, 2 );
}
</code></pre>
<p>By dividing current by range you get a value between 0 and 1 - which will make sure that the result is between 0 and 1, too (as you specified).</p>
http://stackoverflow.com/questions/1798307/c-initialize-module-variable1C: Initialize module variabletanascius2009-11-25T16:50:39Z2009-11-25T21:22:43Z
<p>Hello,</p>
<p>I got two modules (compile units), both using a module variable with the same name:</p>
<p>FileA.c and<br>
FileB.c both contain:</p>
<pre><code>#includes
int m_Test;
// Functions
</code></pre>
<p>That's no problem, both variables are independent, as expected - but as soon as I assign values to the variables like:</p>
<pre><code>int m_Test = 0;
</code></pre>
<p>I get (using VS2008) the error <code>LNK2005: m_Test already defined in ...</code></p>
<p>So I probably have a problem to understand what I am doing :) What is happening, when I try to initialize a module variable like here? I could not find information about it (google, newsgroup faq, SO).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1797907/which-radio-button-in-the-group-is-checked/1797968#17979680Answer by tanascius for Which Radio button in the group is checked?tanascius2009-11-25T16:03:52Z2009-11-25T16:03:52Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.radiobutton.checkedchanged.aspx" rel="nofollow">CheckedChanged</a> event for all your RadioButtons. <code>Sender</code> will be the unchecked and checked RadioButtons.</p>
http://stackoverflow.com/questions/1795565/multiple-output-paths-for-a-c-project-file/1795572#17955727Answer by tanascius for Multiple Output paths for a C# Project filetanascius2009-11-25T09:05:06Z2009-11-25T09:10:41Z<p>You have a section <code>build events</code> in your project's properties. You can use <code>post-build events</code>to copy your output to different locations. Just press 'Edit Post-build' and 'Macros', so that you can even use shortcuts to your output directory. For more informations have a look <a href="http://msdn.microsoft.com/en-us/library/42x5kfw4.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1761825/referencing-the-child-of-a-commit-in-git/1761855#17618551Answer by tanascius for Referencing the child of a commit in Gittanascius2009-11-19T08:57:05Z2009-11-19T09:10:35Z<p>You can use <code>gitk</code> ... since there can be more than one child there is probably no easy way like <code>HEAD^</code>.</p>
<p>If you want to undo your whole operation you can use the reflog, too. Use <code>git reflog</code> to find your commit’s pointer, which you can use for the <code>reset</code> command. See <a href="http://www.gitready.com/intermediate/2009/02/09/reflog-your-safety-net.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/827454/what-is-the-operator-for/1761689#17616894Answer by tanascius for What is the "??" operator for?tanascius2009-11-19T08:09:29Z2009-11-19T08:09:29Z<p>it checks if category is null - when this is the case the null value is replaced by "Home".</p>
http://stackoverflow.com/questions/1755353/how-do-i-find-all-expression-variable-variable-in-the-visual-studio-2008/1755445#17554456Answer by tanascius for How do I find all expression "variable = variable;" in the Visual Studio 2008?tanascius2009-11-18T11:41:59Z2009-11-18T11:59:01Z<p>Use the Find-dialog with regex ...</p>
<pre><code>{:a+} = \1
</code></pre>
<p>will do the trick.<br>
:a is any alphanumeric character<br>
\1 is a backreference to everything included in {}</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/2k3te2cs%28VS.80%29.aspx" rel="nofollow">here</a> for more infos.</p>
<p><b>EDIT</b> - in reply to the comment:</p>
<pre><code>^:b*{:a+}:b*=:b*\1;
</code></pre>
<p>^ is the beginning of a line<br>
:b is tab/space</p>
<p><b>EDIT2:</b> As Kobi wrote, you should maybe use :i instead of :a</p>
http://stackoverflow.com/questions/1716308/how-does-a-random-number-generator-work/1716419#17164191Answer by tanascius for How does a random number generator work?tanascius2009-11-11T16:35:29Z2009-11-11T16:35:29Z<p>There is a lot of information available about how they are working ... see Konamiman's answer and use google a bit.</p>
<p>Why would you like to write a new random generator? You probably should not try to do so ... until you need something very special. For example in a game you could use a <a href="http://kaioa.com/node/53" rel="nofollow">shuffle bag</a> which produces 'fair' random values - have a look at <a href="http://stackoverflow.com/questions/910215/need-for-predictable-random-generator">this interesting question on SO</a>.<br>
I post this here, because I really liked the idea and implementation when I read about it the first time :)</p>
http://stackoverflow.com/questions/1630803/find-edges-in-32-bits-word-bitpattern/1630830#16308302Answer by tanascius for Find "edges" in 32 bits word bitpatterntanascius2009-10-27T13:34:27Z2009-10-27T13:34:27Z<p>You are looking at only 2 bits during every iteration.<br />
The fastest algorithm would probably be to build a hash table for all possibles values. Since there are 2^32 values that is not the best idea.<br />
But why don't you look at 3, 4, 5 ... bits in one step? You can for instance precalculate for all 4 bit combinations your edgecount. Just take care of possible edges between the pieces.</p>
http://stackoverflow.com/questions/1600613/can-i-use-resharper-4-5-with-visual-studio-2010-beta/1600654#16006540Answer by tanascius for can i use resharper 4.5 with visual studio 2010 betatanascius2009-10-21T12:56:51Z2009-10-21T12:56:51Z<p>In addition to the previous answers ...<br />
When you think about buying ReSharper - just go ahead:</p>
<blockquote>
<p>All ReSharper 4.5 purchases made on or after October 15, 2009, qualify for a FREE upgrade to ReSharper 5.0</p>
</blockquote>
<p><a href="http://www.jetbrains.com/resharper/buy/index.jsp" rel="nofollow">found here</a></p>
http://stackoverflow.com/questions/1565570/net-hash-codes-no-longer-persistent/1566056#15660560Answer by tanascius for .Net Hash Codes no longer persistent???tanascius2009-10-14T12:54:57Z2009-10-14T12:54:57Z<p>You say that you use this hashcode for persistence. This is a bad idea with your current implementation, because you use the <code>ToString()</code> function to generate the hashcode. The result of this function is not connected to persistence, and maybe a developer needs to change it for GUI design or whatever reasons and forgets, that it is used for persistence, too.<br />
In your case I'd look at the result of the <code>ToString()</code> method, maybe it changed. This can happen by changing the culture or by moving an object to another namespace - just have a look, maybe you find a reason.</p>
http://stackoverflow.com/questions/1363590/improve-db4o-linq-query1Improve db4o linq querytanascius2009-09-01T17:07:02Z2009-10-13T10:50:59Z
<p>Hello,</p>
<p>I got a problem with this linq query:</p>
<pre><code>from PersistedFileInfo fi in m_Database
from PersistedCommit commit in m_Database
where commit.FileIDs.Contains( fi.ID )
where fi.Path == <given path>
select new Commit( m_Storage, commit );
</code></pre>
<p>As you can see, every <code>PersistedCommit</code> contains a <code>Collection<int></code> called <code>FileIDs</code> which connects it to its <code>PersistedFileInfo</code>s. I want to select all previous commits of a specific fileInfo (which is identified by its path).</p>
<p>I have about 800 <code>PersistedFileInfo</code>s and 10 <code>PersistedCommit</code>s. The query takes about 1.5 seconds - which is in my opition far too long. The contructor of the <code>Commit</code>-object saves only the two given arguments - so there is no timeloss, here.</p>
<p>My question:<br />
Can this query be rewritten to perform better - or is it a db4o problem (use a SODA query instead)?</p>
http://stackoverflow.com/questions/1532301/visual-studio-tabcontrol-tabpages-insert-not-working/1532485#15324854Answer by tanascius for Visual studio - TabControl.TabPages.Insert not workingtanascius2009-10-07T15:48:09Z2009-10-07T15:48:09Z<p>There is a comment on <a href="http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/5d10fd0c-1aa6-4092-922e-1fd7af979663" rel="nofollow">social.msdn</a> - although I could not find anything like this in the documentation:</p>
<blockquote>
<p>The TabControl's handle must be created for the Insert method to work</p>
</blockquote>
<p>Try the mentioned code</p>
<pre><code>IntPtr h = this.tabControl1.Handle;
</code></pre>
<p>before you loop over your services</p>
http://stackoverflow.com/questions/1460851/coding-style-how-to-improve-coding-styles-and-standards-at-a-company/1460902#14609022Answer by tanascius for Coding-style: How to improve coding-styles and standards at a companytanascius2009-09-22T15:45:26Z2009-09-22T15:45:26Z<p>First, you will always have to enforce the coding styles - there will never be a consent.<br />
That's, why I would try to automate the check for consistency. Depending on your language you can use StyleCop (for .Net) or something like indent under linux.</p>
<p>Every developer can work with his own code style in his environment (the reformat can be very easy, depending on your environment), but all checked-in code has to be of the company's style.</p>
<p>Which style do you choose? Well, often there are already popular styles - depending on the language. For your example (C#) I would choose the Microsoft style. At last: only the project manager (senior programmer) has the right to adjust it.</p>
http://stackoverflow.com/questions/1455113/resharper-code-cleanup-and-blank-lines/1455502#14555022Answer by tanascius for Resharper code cleanup and blank linestanascius2009-09-21T16:40:14Z2009-09-21T16:40:14Z<p>In my opinion you can not do this with the latest ReSharper (4.5.1).<br />
I know the options of the ReSharper very well, but I am not aware of anything that would format the code in a way you'd like.<br />
You are looking for something like "blank lines inside namespace" or "blank lines inside class", which does not exist as an option.</p>
http://stackoverflow.com/questions/1444581/new-line-textbox/1444616#14446162Answer by tanascius for New Line textboxtanascius2009-09-18T13:40:03Z2009-09-18T13:45:58Z<p>Did you set the <a href="http://msdn.microsoft.com/en-us/library/12w624ff.aspx" rel="nofollow">Multiline</a> property?</p>
<pre><code>textBox.Multiline = true;
</code></pre>
http://stackoverflow.com/questions/1443485/c-whats-the-major-problem-solved-by-partial-classes/1443493#14434938Answer by tanascius for C# - what's the major problem solved by "partial" classes?tanascius2009-09-18T09:38:18Z2009-09-18T09:38:18Z<p>The great benifit is to hide computer generated code (by the designer).<br />
Eric Lippert has a recent blog post about the <a href="http://blogs.msdn.com/ericlippert/archive/2009/09/14/what-s-the-difference-between-a-partial-method-and-a-partial-class.aspx" rel="nofollow">partial-keyword</a> in general.</p>
<p>Another usage could be to give nested classes their own file.</p>
http://stackoverflow.com/questions/1443432/detected-dependencies-where-is-each-dependency-coming-from/1443487#14434870Answer by tanascius for Detected Dependencies - Where is each dependency coming from?tanascius2009-09-18T09:37:11Z2009-09-18T09:37:11Z<p>If you are using <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> you can right-click on the dependency and ask for the depenent code fragments.<br />
Otherwise I would remove the dependency and look where the compiler gets errors.</p>
http://stackoverflow.com/questions/1432386/quadratic-probing-fk-aj-bj2-m-how-to-choose-a-and-b/1432775#14327752Answer by tanascius for Quadratic probing: (f(k) + a*j + b*j^2) % M, How to choose a and b?tanascius2009-09-16T12:52:55Z2009-09-16T13:28:50Z<p>There are some values for choosing a and b on <a href="http://en.wikipedia.org/wiki/Quadratic%5Fprobing" rel="nofollow">wikipedia</a>:</p>
<blockquote>
<p>For prime M > 2, most choices of a and b will make f(k,j) distinct for j in [0,(M − 1) / 2]. Such choices include a = b = 1/2, a = b = 1, and a = 0,b = 1. Because there are only about M/2 distinct probes for a given element, it is difficult to guarantee that insertions will succeed when the load factor is > 1/2.</p>
</blockquote>
<p>A proof for the guarantee of finding the empty slots is <a href="http://www.brpreiss.com/books/opus5/html/page241.html" rel="nofollow">here</a> or <a href="http://condor.depaul.edu/~ntomuro/courses/417/notes/qp.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1421064/writing-to-registry-hkeylocalmachine-in-xp/1422173#14221731Answer by tanascius for Writing to Registry (HKEY_LOCAL_MACHINE) in XPtanascius2009-09-14T15:11:01Z2009-09-15T09:35:31Z<p><strong>EDIT</strong>: Removed the idea about partial trust ... it turned out that it had nothing to do with the problem.</p>
<p>I tried your code and got the same error - with some modifications it works:</p>
<pre><code>RegistryKey myKey = Registry.LocalMachine.OpenSubKey( "SYSTEM\\CurrentControlSet\\Enum\\IDE\\" );
foreach( string driveManafacturer in myKey.GetSubKeyNames() )
{
RegistryKey driveKey = myKey.OpenSubKey( driveManafacturer );
foreach( string driveID in driveKey.GetSubKeyNames() )
{
RegistryKey subKey = driveKey.OpenSubKey( driveID );
string driveType = (string)subKey.GetValue( "Class" );
if( driveType == "DiskDrive" )
{
RegistryKey tempKey = subKey.OpenSubKey( "Device Parameters", true );
RegistryKey tempKey2 = tempKey.OpenSubKey( "Disk" );
if( tempKey2 == null )
{
tempKey2 = tempKey.CreateSubKey( "Disk" );
tempKey2.SetValue( "UserWriteCacheSetting", 0x0 );
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1389831/net-bindingsource-filter-syntax-reference/1389856#13898560Answer by tanascius for .NET BindingSource Filter syntax referencetanascius2009-09-07T15:20:28Z2009-09-07T15:20:28Z<p>Have a look at <a href="http://msdn2.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx" rel="nofollow">this msdn article</a>. The described syntax should be valid for your <code>BindingSource</code>, too.</p>
http://stackoverflow.com/questions/1378906/constantly-update-a-form-with-a-processes-standard-output/1378936#13789360Answer by tanascius for Constantly update a form with a processes standard outputtanascius2009-09-04T12:30:54Z2009-09-04T16:01:43Z<p>You have your process which starts the exe:</p>
<pre><code>// Normal creation and initialization of process - additionally:
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.OutputDataReceived += ProcessOnOutputDataReceived;
process.Start();
process.BeginOutputReadLine();
</code></pre>
<p>and the handler:</p>
<pre><code>private void ProcessOnOutputDataReceived( object sender, DataReceivedEventArgs args )
{
// use args.Data
}
</code></pre>
<p><strong>EDIT:</strong><br />
I forgot <code>process.StartInfo.UseShellExecute = false;</code> :/</p>
<p><strong>EDIT:</strong><br />
It turned out, that the exe did not flush the output (see comments)</p>
http://stackoverflow.com/questions/1372363/accessing-all-the-nodes-in-treeview-control/1372393#13723936Answer by tanascius for Accessing all the nodes in TreeView Controltanascius2009-09-03T09:27:00Z2009-09-03T09:27:00Z<p>Don't use nested loops, but go for an recursive solution like:</p>
<pre><code>void ListNodes( TreeNode node )
{
foreach( var subnode in node.Nodes )
{
ListNodes( subnode );
}
// Print out node
}
</code></pre>
<p>Call this function for your root node.</p>
<p>For your additional question: check the <code>FullPath</code> property.</p>
http://stackoverflow.com/questions/1368697/how-to-detect-when-main-thread-terminates/1368744#13687443Answer by tanascius for How to detect when main thread terminates?tanascius2009-09-02T16:23:42Z2009-09-02T16:23:42Z<p>You should have an entry point for your application. Normally you can do there some logging when all tasks are terminated:</p>
<pre><code>static void Main()
{
try
{
Application.Run( .... );
}
finally
{
// logging ...
}
}
</code></pre>
http://stackoverflow.com/questions/1921382/singleton-or-not/1921520#1921520Comment by tanascius on Singleton or nottanascius2009-12-17T15:40:34Z2009-12-17T15:40:34ZThe 2nd article is really a great and understandable example ... I have to keep it by myself ... anyway thanks and +1http://stackoverflow.com/questions/1921382/singleton-or-not/1921520#1921520Comment by tanascius on Singleton or nottanascius2009-12-17T12:46:58Z2009-12-17T12:46:58ZThere are some good questions here on SO - you can google for "singleton considered harmful", too - which should show up interesting discussions, too.http://stackoverflow.com/questions/1921382/singleton-or-not/1921479#1921479Comment by tanascius on Singleton or nottanascius2009-12-17T12:43:30Z2009-12-17T12:43:30ZStackoverflow knows: <a href="http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons" rel="nofollow" title="what is so bad about singletons">stackoverflow.com/questions/137975/…</a>http://stackoverflow.com/questions/1918086/how-do-i-match-this-pattern-what-is-the-correct-algorithm/1918131#1918131Comment by tanascius on How do I match this pattern, what is the correct algorithm?tanascius2009-12-17T08:49:40Z2009-12-17T08:49:40ZIn that context x^0 is not 1, because this describes not numerical mathematics. This is string concatenation - so x^0 = no character. Pete is right, your regex will not recognize 'b', which is a valid input (see the examples in the question).http://stackoverflow.com/questions/1918086/how-do-i-match-this-pattern-what-is-the-correct-algorithmComment by tanascius on How do I match this pattern, what is the correct algorithm?tanascius2009-12-16T22:13:30Z2009-12-16T22:13:30ZBut now he knows that he has to use a pushdown automate and he has some code - a good improvement :)http://stackoverflow.com/questions/1914945/listview-help-windows-forms/1914964#1914964Comment by tanascius on Listview help..(Windows Forms)tanascius2009-12-16T14:37:24Z2009-12-16T14:37:24ZAt first I was not sure, either ^^ but you already got my +1http://stackoverflow.com/questions/1914945/listview-help-windows-forms/1914964#1914964Comment by tanascius on Listview help..(Windows Forms)tanascius2009-12-16T14:31:39Z2009-12-16T14:31:39Zmsdn: "If no items are currently selected, an empty ListView.SelectedListViewItemCollection is returned."http://stackoverflow.com/questions/1914945/listview-help-windows-forms/1914964#1914964Comment by tanascius on Listview help..(Windows Forms)tanascius2009-12-16T14:29:58Z2009-12-16T14:29:58ZAre you sure you have to check for null?http://stackoverflow.com/questions/1902061/sha-1-based-directory-structure-and-ntfs-limitations/1902373#1902373Comment by tanascius on SHA-1-based directory structure and NTFS limitations?tanascius2009-12-15T15:52:50Z2009-12-15T15:52:50ZOk, my point is: don't guess - use a dynamic algorithm which will introduce new levels of hierarchy when neccessary. But I can't provide a number, when your algorithm should do that. Although I'am shure that having 2 or 4 chars per level is no problem :)http://stackoverflow.com/questions/1869363/best-blogging-software-for-developerComment by tanascius on Best blogging software for developertanascius2009-12-08T19:52:54Z2009-12-08T19:52:54Zthat's why I say: should <i>not</i> be closedhttp://stackoverflow.com/questions/1869363/best-blogging-software-for-developerComment by tanascius on Best blogging software for developertanascius2009-12-08T19:47:23Z2009-12-08T19:47:23ZIMHO should this question not be closed as "not programming related", although I think that it is a duplicatehttp://stackoverflow.com/questions/1858610/different-numbers-from-1-to-10-using-vb6/1858645#1858645Comment by tanascius on different numbers from 1 to 10 using vb6tanascius2009-12-07T09:25:27Z2009-12-07T09:25:27ZSome theory: <a href="http://stackoverflow.com/questions/910215/need-for-predictable-random-generator/910340#910340" rel="nofollow" title="need for predictable random generator">stackoverflow.com/questions/910215/…</a> - look at the shuffle bag link.http://stackoverflow.com/questions/1858610/different-numbers-from-1-to-10-using-vb6/1858648#1858648Comment by tanascius on different numbers from 1 to 10 using vb6tanascius2009-12-07T08:40:29Z2009-12-07T08:40:29Z"i want to generate 10 different numbers "http://stackoverflow.com/questions/1858610/different-numbers-from-1-to-10-using-vb6Comment by tanascius on different numbers from 1 to 10 using vb6tanascius2009-12-07T08:36:20Z2009-12-07T08:36:20ZWhen you edit your question - look to the right side: <code>How to Format</code>: • indent code by 4 spaceshttp://stackoverflow.com/questions/1834469/how-to-implement-automatic-properties-in-vs-2005-for-a-delegate-callback/1834521#1834521Comment by tanascius on How to implement automatic properties in VS 2005 for a delegate callbacktanascius2009-12-02T23:00:40Z2009-12-02T23:00:40ZYes, it does quite exactly the same.