User Agent Worm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T19:09:10Zhttp://stackoverflow.com/feeds/user/13064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1574606/is-there-a-way-to-overlay-text-onto-notifyicon0Is there a way to overlay text onto NotifyIcon?Agent Worm2009-10-15T19:43:33Z2009-10-23T01:05:34Z
<p>I'm currently writing an application that has a NotifyIcon and I'm trying to figure out a way to overlay text on to it. So for example, if the icon indicates the number of files open, it has the icon plus the number on top of it. </p>
<p>Is there a way to do that? I've seen instances of the NotifyIcon solely being text, SpeedFan for example. </p>
<p>Any suggestions or references would be appreciated.</p>
http://stackoverflow.com/questions/1574606/is-there-a-way-to-overlay-text-onto-notifyicon/1610895#16108951Answer by Agent Worm for Is there a way to overlay text onto NotifyIcon?Agent Worm2009-10-23T01:05:34Z2009-10-23T01:05:34Z<p>Well, I didn't figure out a good way of doing this, but in the end it didn't matter. I ended up using the BalloonTip which allowed me to provide information. </p>
http://stackoverflow.com/questions/1608102/how-to-add-things-to-a-menustrip-programatically/1608248#16082481Answer by Agent Worm for How to add things to a menustrip programatically?Agent Worm2009-10-22T16:00:31Z2009-10-22T16:00:31Z<p>It's rather straight forward. You can do the following:</p>
<pre><code>ToolStripMenuItem menuItem
foreach (string text in collectionOfText)
{
ToolStripMenuItem foo = new ToolStripMenuItem(text);
foo.Click += new EventHandler(ClickEvent);
menuItem.DropDownItems.Add(foo);
}
</code></pre>
<p>Subsequently, if the Click event doesn't work (I had trouble where it wouldn't detect the correct menu item), you can add a "DropDownItemClicked" event to the menuItem. and to get the text of the item you clicked you do:</p>
<pre><code>private void DropedDownItemClickedEvent(object sender, ToolStripItemClickedEventArgs e)
{
string text = e.ClickedItem.Text;
}
</code></pre>
<p>I hope that helps.</p>
<p>Oh and don't forget to remove the Event as well. I forgot to do that with all the dynamic menus I had created and somehow ended up eating half my memory. :D</p>
http://stackoverflow.com/questions/367140/test-anxiety-and-programming-tests-in-inteviews4Test anxiety and programming tests in inteviewsAgent Worm2008-12-14T23:14:33Z2009-06-29T14:23:32Z
<p>I suffer from bad test anxiety and when it comes to programming tests in interviews I do horrendously. A few months ago I interviewed with a company I was interning at and bombed pretty bad, i.e. it took me a while to solve a simple linked list problem because I was so nervous. </p>
<p>For those of you who have done interviewing, do (or have) you taken that into consideration, if at all? Knowing that there is higher chance of doing bad on that part of the interview, where else could one like me improve to increase the chances of being hired?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/503859#5038593Answer by Agent Worm for Keyboard for programmersAgent Worm2009-02-02T16:44:10Z2009-02-02T16:44:10Z<p>Jeff Atwood's blog inspired me to respond to this thread after his post on keyboards. </p>
<p>Personally, I like laptop style keyboards. I've always loved the look and feel (some more than others, of course). Logitech diNovo Edge was an excellent addition, however the lack of a number pad was annoying. I currently use the Logitech Illuminated Keyboard:
<img src="http://www.logitech.com/repository/1170/jpg/9726.1.0.jpg" alt="alt text" /></p>
<p>It feels great, although a little bit more 'clicky' than I'm used to. It's super thin, but still has a similar layout to old keyboards. </p>
<p>So there are my 2 cents.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization3Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-02T23:26:38Z2008-12-08T17:50:58Z
<p>I was working on some code recently and came across a method that had 3 for-loops that worked on 2 different arrays. </p>
<p>Basically, what was happening was a foreach loop would walk through a vector and convert a DateTime from an object, and then another foreach loop would convert a long value from an object. Each of these loops would store the converted value into lists.</p>
<p>The final loop would go through these two lists and store those values into yet another list because one final conversion needed to be done for the date. </p>
<p>Then after all that is said and done, The final two lists are converted to an array using ToArray().</p>
<p>Ok, bear with me, I'm finally getting to my question. </p>
<p>So, I decided to make a single for loop to replace the first two foreach loops and convert the values in one fell swoop (the third loop is quasi-necessary, although, I'm sure with some working I could also put it into the single loop). </p>
<p>But then I read the article "What your computer does while you wait" by Gustav Duarte and started thinking about memory management and what the data was doing while it's being accessed in the for-loop where two lists are being accessed simultaneously. </p>
<p>So my question is, what is the best approach for something like this? Try to condense the for-loops so it happens in as little loops as possible, causing multiple data access for the different lists. Or, allow the multiple loops and let the system bring in data it's anticipating. These lists and arrays can be potentially large and looping through 3 lists, perhaps 4 depending on how ToArray() is implemented, can get very costy (O(n^3) ??). But from what I understood in said article and from my CS classes, having to fetch data can be expensive too. </p>
<p>Would anyone like to provide any insight? Or have I completely gone off my rocker and need to relearn what I have unlearned?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/350295#3502950Answer by Agent Worm for Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-08T17:50:58Z2008-12-08T17:50:58Z<p>Thank you every one for the information. Thinking in terms of Big-O and how to optimize has never been my strong point. I believe I am going to put the code back to the way it was, I should have trusted the way it was written before instead of jumping on my novice instincts. Also, in the future I will put more reference so everyone can understand what the heck I'm talking about (clarity is also not a strong point of mine :-/).</p>
<p>Thank you again.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/346937#3469371Answer by Agent Worm for Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-06T22:51:16Z2008-12-06T22:51:16Z<p>I apologize for not responding sooner and providing any kind of code. I got sidetracked on my project and had to work on something else.</p>
<p>To answer anyone still monitoring this question;</p>
<p>Yes, like jalf said, the function is something like:</p>
<p><code><pre>
PrepareData(vectorA, VectorB, xArray, yArray):
listA
listB
foreach(value in vectorA)
convert values insert in listA
foreach(value in vectorB)
convert values insert in listB
listC
listD
for(int i = 0; i < listB.count; i++)
listC[i] = listB[i] converted to something
listD[i] = listA[i]
xArray = listC.ToArray()
yArray = listD.ToArray()</p>
<p></pre></code></p>
<p>I changed it to:</p>
<p><code><pre>
PrepareData(vectorA, vectorB, ref xArray, ref yArray):
listA
listB
for(int i = 0; i < vectorA.count && vectorB.count; i++)
convert values insert in listA
convert values insert in listB
listC
listD
for(int i = 0; i < listB.count; i++)
listC[i] = listB[i] converted to something
listD[i] = listA[i]
xArray = listC.ToArray()
yArray = listD.ToArray()
</pre></code> </p>
<p>Keeping in mind that the vectors can potentially have a large number of items. I figured the second one would be better, so that the program wouldnt't have to loop n times 2 or 3 different times. But then I started to wonder about the affects (effects?) of memory fetching, or prefetching, or what have you. </p>
<p>So, I hope this helps to clear up the question, although a good number of you have provided excellent answers.</p>
http://stackoverflow.com/questions/222053/basetype-of-a-basetype4BaseType of a BasetypeAgent Worm2008-10-21T14:21:06Z2008-10-21T15:55:34Z
<p>Hello, this is my first question here so I hope I can articulate it well and hopefully it won't be too mind-numbingly easy.</p>
<p>I have the following class <em>SubSim</em> which extends <em>Sim</em>, which is extending <em>MainSim</em>. In a completely separate class (and library as well) I need to check if an object being passed through is a type of <em>MainSim</em>. So the following is done to check;</p>
<pre>
Type t = GetType(sim);
//in this case, sim = SubSim
if (t != null)
{
return t.BaseType == typeof(MainSim);
}
</pre>
<p>Obviously <em>t.BaseType</em> is going to return <em>Sim</em> since <em>Type.BaseType</em> gets the type from which the current Type directly inherits. </p>
<p>Short of having to do <em>t.BaseType.BaseType</em> to get <em>MainSub</em>, is there any other way to get the proper type using .NET libraries? Or are there overrides that can be redefined to return the main class? </p>
<p>Thank you in advance</p>
http://stackoverflow.com/questions/222053/basetype-of-a-basetype/222226#2222260Answer by Agent Worm for BaseType of a BasetypeAgent Worm2008-10-21T15:09:39Z2008-10-21T15:09:39Z<p>The 'is' option didn't work for me. It gave me the warning; "The given expression is never of the provided ('MainSim') type", I do believe however, the warning had more to do with the framework we have in place. My solution ended up being:</p>
<pre>return t.BaseType == typeof(MainSim) || t.BaseType.IsSubclassof(typeof(MainSim));</pre>
<p>Not as clean as I'd hoped, or as straightforward as your answers seemed. Regardless, thank you everyone for your answers. The simplicity of them makes me realize I have much to learn. </p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/349958#349958Comment by Agent Worm on Keyboard for programmersAgent Worm2009-02-02T16:45:08Z2009-02-02T16:45:08ZThis is one of my favorites too. I used one for about a year. It probably had the best key action I had seen up to that time.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424005#424005Comment by Agent Worm on What's your favorite "programmer ignorance" pet peeve?Agent Worm2009-01-09T15:27:06Z2009-01-09T15:27:06ZI used to do succinct coding like this when I was taking my classes, and somehow, as soon as I got hired, I stopped. I need to start remember all the more better coding I used to in college! (and perhaps my grammer too) :Phttp://stackoverflow.com/questions/367140/test-anxiety-and-programming-tests-in-inteviewsComment by Agent Worm on Test anxiety and programming tests in inteviewsAgent Worm2008-12-15T17:35:08Z2008-12-15T17:35:08ZBut then I would be hurting people. I don't want that on my conscience. http://stackoverflow.com/questions/367140/test-anxiety-and-programming-tests-in-inteviews/367170#367170Comment by Agent Worm on Test anxiety and programming tests in inteviewsAgent Worm2008-12-15T17:32:35Z2008-12-15T17:32:35ZThe place I'm currently working at didn't require a programming test which I was incredibly happy about. But I like your suggestions, thank you.
http://stackoverflow.com/questions/222053/basetype-of-a-basetype/222062#222062Comment by Agent Worm on BaseType of a BasetypeAgent Worm2008-10-21T17:11:30Z2008-10-21T17:11:30ZI like that recursive method, and I think I'm going to try that instead of my solution. Thank you!http://stackoverflow.com/questions/222053/basetype-of-a-basetype/222226#222226Comment by Agent Worm on BaseType of a BasetypeAgent Worm2008-10-21T17:10:51Z2008-10-21T17:10:51ZInitially I did try that, What I left out of my question is that the object 'sim' would be a CollectionRow object, not necessarily a Sim object per se, that is why there is the call Type t = GetType(sim). I tried a couple of other things but it was returning false otherwise.