User Mithrax - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T22:52:58Zhttp://stackoverflow.com/feeds/user/88470http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1403974/how-can-i-continuously-queueuserworkitems-but-without-queuing-them-all-at-once2How can I continuously QueueUserWorkItems but without queuing them all at once?Mithrax2009-09-10T08:07:30Z2009-10-28T19:54:39Z
<p>I'm working on a multi-threaded scraper for a website and as per a different question I've decided to use the ThreadPool with QueueUserWorkItem().</p>
<p>How can I continually Queue work items without queuing them all at once? I need to queue > 300k items (one for each userID) and if I loop to queue them all I'll run out of memory.</p>
<p>So, what I would like is:</p>
<pre><code>// 1 = startUserID, 300000 = endUserID, 25 = MaxThreads
Scraper webScraper = new Scraper(1, 300000, 25);
webScraper.Start();
// return immediately while webScraper runs in the background
</code></pre>
<p>During this time, webScraper is continuouslly adding all 300000 workItems as threads become available.</p>
<p>Here is what I have so far:</p>
<pre><code>public class Scraper
{
private int MaxUserID { get; set; }
private int MaxThreads { get; set; }
private static int CurrentUserID { get; set; }
private bool Running { get; set; }
private Parser StatsParser = new Parser();
public Scraper()
: this(0, Int32.MaxValue, 25)
{
}
public Scraper(int CurrentUserID, int MaxUserID, int MaxThreads)
{
this.CurrentUserID = CurrentUserID;
this.MaxUserID = MaxUserID;
this.MaxThreads = MaxThreads;
this.Running = false;
ThreadPool.SetMaxThreads(MaxThreads, MaxThreads);
}
public void Start()
{
int availableThreads;
// Need to start a new thread to spawn the new WorkItems so Start() will return right away?
while (Running)
{
// if (!CurrentUserID >= MaxUserID)
// {
// while (availableThreads > 0)
// {
// ThreadPool.QueueUserWorkItem(new WaitCallBack(Process));
// }
// }
// else
// { Running = false; }
}
}
public void Stop()
{
Running = false;
}
public static void process(object state)
{
var userID = Interlocked.Increment(ref CurrentUserID);
... Fetch Stats for userID
}
}
</code></pre>
<p>Is this the right approach? </p>
<p>Can anyone point me in the right direction for handling the creation of my work items while in the background once Start() is called, and not creating all Work items at once?</p>
http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c4When do you want to use pointers vs values in C++?Mithrax2009-10-13T23:44:12Z2009-10-14T09:26:02Z
<p>I'm coming from Java and attempting to learn C++.</p>
<p>As far as I can tell, using Pointers is very similar to how reference variables work in Java, in that you pass a memory address to the value. So I feel like I have gotten a pretty good understanding of them. I also understand that these variables are stored on the heap.</p>
<p>However, I see that there is another way in which you can declare variables in C++, without the new operator/pointers simply doing something like:</p>
<pre><code>Employee boss("Frank");
</code></pre>
<p>Which will create a value of Employee with "Frank" as the parameter. These variables are stored on the stack.</p>
<p>So, you have these 2 very different ways of creating variables and both with their own unique behavior (with memory management as well?). </p>
<p>My question is, when is it appropriate to use pointers VS values? What is the best practice? How should I know in what way I want to declare my variables most of the time?</p>
http://stackoverflow.com/questions/1541497/how-would-you-use-the-mvc-pattern-with-winforms-when-it-comes-to-using-listviews1How would you use the MVC pattern with Winforms when it comes to using ListViews?Mithrax2009-10-09T02:12:50Z2009-10-10T03:36:08Z
<p>My old way of handling WinForms application was throwing all the logic into the form itself.</p>
<p>I'm trying to start utilizing MVC/MVP practices with my WinForms applications.</p>
<p>Can someone show me an example of how I would use MVC/MVP in conjunction with say, a ListView? I use to use the Tag property of the ListView itself to store the objects being represented in the ListView. </p>
<p>I realize this is a bad practice and tightly couples me to my presentation but I have trouble breaking free of it.</p>
<p>For example, I had a "Loot History" ListView that showed a list of items I had looted from an MMO. I was using the "Tag" property of each new ListView item to store the "Loot" object itself. So when I performed a delete or search among the loot I would search the tags of this listview.</p>
<p>What is the correct way to handle this situation?</p>
<p>Should my controller class be holding onto a List of my loot items, and it supplies this to my Form? Does the controller instantiate/own the form? If not, then who instantiates it?</p>
http://stackoverflow.com/questions/1541387/how-can-i-modify-the-backtracking-algorithm-so-it-can-run-on-and-or-graphs0How can I modify the backtracking algorithm so it can run on "and/or" graphs?Mithrax2009-10-09T01:20:05Z2009-10-09T20:41:58Z
<p>In Artificial Intelligence we studied the backtracking algorithm. Here is the pseudocode our book offers:</p>
<pre><code>function backtrack;
begin
SL:= [Start]; NSL := [Start]; DE := [] CS := Start;
while NSL != [] do
begin
if CS = goal (or meets goal description)
then return SL;
if CS has no children (excluding nodes already on DE, SL, and NSL)
then begin
while SL is not empty and CS = the first element of SL do
begin
add CS to DE
remove first element froM SL;
remove first element from NSL;
CS := first element of NSL;
end
add CS to SL;
end
else begin
place children of CS (except nodes already on DE, SL or NSL) on NSL;
CS := first element of NSL;
add CS to SL;
end
end
return FAIL;
end
</code></pre>
<ul>
<li><strong>SL</strong>: the state list, lists the states in the current path being
tried.</li>
<li><strong>NSL</strong>: the new state list, contains nodes awaiting evaluation.</li>
<li><strong>DE</strong>: dead ends, lists states whose descendants have failed to contain a
goal node.</li>
<li><strong>CS</strong>: the current state</li>
</ul>
<p>I understand this and have not only hand run the algorithm but written programs in class that utilize it as well.</p>
<p>However, now we have been tasked with modifying it so it can be run on "and/or" graphs.</p>
<p>(Example and/or graph)
<img src="http://starbase.trincoll.edu/~ram/cpsc352/notes/gifs/whereisfred.gif" alt="alt text" /></p>
<p>The textbook had the following sentence talking about backtracking and/or graphs:</p>
<blockquote>
<p>"And/or graph search requires only
slightly more record keeping than
search in regular graphs, an example
of which was the backtrack algorithm.
The <strong>or</strong> descendants are checked as
they were in backtrack: once a path is
found connecting a goal to a start
node along <strong>or</strong> nodes, the problem
will be solved. If a path leads to a
failure, the algorithm may backtrack
and try another branch. In searching
<strong>and</strong> nodes, however, all of the <strong>and</strong> descendants of a node must be solved (or proved true) to solve the
parent node.</p>
</blockquote>
<p>While I understand what "and/or" graphs are, I'm having trouble modifying the above backtracking algorithm so that it works with "and/or" graphs. As the book says, if they are "OR" nodes, it should proceed as normal but what I'm having difficulty with are "and" nodes. Do I need to do something like:</p>
<pre><code>if CS has children and is "AND" node then
resolve all children of CS
if children are all true, add children to NSL
else backtrack?
</code></pre>
<p>This is as close as I can get conceptually in my head, but it still doesn't feel right. Can anyone help me flesh it out a little further?</p>
http://stackoverflow.com/questions/1542213/how-to-find-the-number-of-cpu-cores-via-net-c/1542222#15422222Answer by Mithrax for How to find the Number of CPU Cores via .NET/C#?Mithrax2009-10-09T07:02:09Z2009-10-09T07:02:09Z<p><a href="http://msdn.microsoft.com/en-us/library/system.environment.processorcount.aspx" rel="nofollow">Environment.ProcessorCount</a> should give you the number of cores on the local machine.</p>
http://stackoverflow.com/questions/1397879/how-can-i-query-rankings-for-the-users-in-my-db-but-only-consider-the-latest-ent3How can I query rankings for the users in my DB, but only consider the latest entry for each user?Mithrax2009-09-09T06:38:51Z2009-09-18T22:35:03Z
<p>Lets say I have a database table called "Scrape" possibly setup like:</p>
<pre><code>UserID (int)
UserName (varchar)
Wins (int)
Losses (int)
ScrapeDate (datetime)
</code></pre>
<p>I'm trying to be able to rank my users based on their Wins/Loss ratio. However, each week I'll be scraping for new data on the users and making another entry in the Scrape table. </p>
<p>How can I query a list of users sorted by wins/losses, but only taking into consideration the most recent entry (ScrapeDate)?</p>
<p>Also, do you think it matters that people will be hitting the site and the scrape may possibly be in the middle of completing?</p>
<p>For example I could have:</p>
<pre><code>1 - Bob - Wins: 320 - Losses: 110 - ScrapeDate: 7/8/09
1 - Bob - Wins: 360 - Losses: 122 - ScrapeDate: 7/17/09
2 - Frank - Wins: 115 - Losses: 20 - ScrapeDate: 7/8/09
</code></pre>
<p>Where, this represents a scrape that has only updated Bob so far, and is in the process of updating Frank but has yet to be inserted. How would you handle this situation as well?</p>
<p>So, my question is:</p>
<ol>
<li>How would you handle querying only the most recent scrape of each user to determine the rankings</li>
<li>Do you think the fact that the database may be in a state of updating (especially if a scrape could take up to 1 day to complete), and not all users have completely updated yet matters? If so, how would you handle this?</li>
</ol>
<p>Thank you, and thank you for your responses you have given me on my related question: </p>
<p><a href="http://stackoverflow.com/questions/1397794/when-scraping-a-lot-of-stats-from-a-webpage-how-often-should-i-insert-the-collec">http://stackoverflow.com/questions/1397794/when-scraping-a-lot-of-stats-from-a-webpage-how-often-should-i-insert-the-collec</a></p>
http://stackoverflow.com/questions/1396558/how-can-i-implement-the-unification-algorithm-in-a-language-like-java-or-c5How can I implement the unification algorithm in a language like Java or C#?Mithrax2009-09-08T22:00:23Z2009-09-10T15:04:55Z
<p>I'm working through my AI textbook I got and I've come to the last homework problem for my section:</p>
<p>"Implement the Unification Algorithm outlined on page 69 in any language of your choice."</p>
<p>On page 69, you have the following pseudo-code for the unification algorithm:</p>
<pre><code>function unify(E1, E2);
begin
case
both E1 and E2 are constants or the empty list:
if E1 = E2 then return {}
else return FAIL;
E1 is a variable:
if E1 occurs in E2 then return FAIL
else return {E2/E1}
E2 is a variable
if E2 occurs in E1 then FAIL
else return {E1/E2}
either E1 or E2 are empty then return FAIL
otherwise:
begin
HE1 := first element of E1;
HE2 := first element of E2;
SUBS1 := unify(HE1, HE2);
if SUBS1 := FAIL then return FAIL;
TE1 := apply(SUBS1, rest of E1);
TE2 := apply(SUBS1, rest of E2);
SUBS2 := unify(TE1, TE2);
if SUBS2 = FAIL then return FAIL;
else return composition(SUBS1, SUBS2)
end
end
end
</code></pre>
<p>Now, I understand the general concept of unification but I have absolutely no idea how I would even begin to implement this in a language like Java or C#. </p>
<p>I'm not even sure what the method signature would look like. What type of variables would it take? I'm fairly certain I need to return lists to represent predicate calculus constructs but that is a guess.</p>
<p>For example, when it says "E1 is a variable", well, if I'm passing it into the Unify method, how could it be anything but? I could check for null but would that be different than "empty list"?</p>
<p>Can anyone help me or point me in the right direction for implementing the Unificaiton algorithm in C# or Java?</p>
http://stackoverflow.com/questions/1402984/how-can-i-have-many-threads-that-need-to-know-the-next-id-to-process-and-then-inc0How can I have many threads that need to know the next ID to process and then increment that number safely?Mithrax2009-09-10T01:34:54Z2009-09-10T01:38:03Z
<p>I'm working a program that will have a bunch of threads processing data.</p>
<p>Each thread needs to grab the next available ID, increment that ID by 1 for the next thread and do this in a thread-safe way.</p>
<p>Is this an instance where I would use a mutex? Should I use a Queue.Synchronized instead and fill it up with all 300,000 ID's or is this unecessary? </p>
<p>Should I just have a single integer and somehow lock the retrieval and updating of that number so thread1 comes in, gets "20" as the next ID and then increments it to "21" while another thread is waiting?</p>
<p>What is the best-practice for this use-case?</p>
http://stackoverflow.com/questions/1397794/when-scraping-a-lot-of-stats-from-a-webpage-how-often-should-i-insert-the-collec2When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?Mithrax2009-09-09T06:05:37Z2009-09-09T16:56:58Z
<p>I'm scraping a website (scripting responsibly by throttling my scraping and with permission) and I'm going to be gathering statistics on 300,000 users.</p>
<p>I plan on storing this data in a SQL Database, and I plan on scraping this data once a week. My question is, how often should I be doing inserts on the database as results come in from the scraper?</p>
<p>Is it best practice to wait till all results are in (keeping them all in memory), and insert them all when the scraping is finished? Or is it better to do an insert on every single result that comes in (coming in at a decent rate)? Or something in between?</p>
<p>If someone could point me in the right direction on how often/when I should be doing this I would appreciate it.</p>
<p>Also, would the answer change if I was storing these results in a flat file vs a database?</p>
<p>Thank you for your time!</p>
http://stackoverflow.com/questions/743085/create-a-chrome-cube-in-opengl-glut2Create a Chrome cube in OpenGL / Glut?Mithrax2009-04-13T05:07:42Z2009-04-26T03:59:28Z
<p>I'm attempting to make a chromed cube in GLUT / OpenGL and I'm not sure exactly how to do it.</p>
<p>I looked up a "Materials Table" in a textbook which showed "Chrome" as being:
Ambient: (0.25, 0.25, 0.25), Diffuse: (0.4, 0.4, 0.4), and Specular: (0.774597,0.774597,0.774597).</p>
<p>My question is, how do I create a simple cube and apply this material/texture to it in Glut/OpenGL?</p>
<p>Do I use "glutSolidCube()"? If so, how do I then apply the chrome texture to it?</p>
<p>Can any GLUT/OpenGL people point me in the right direction?</p>
http://stackoverflow.com/questions/774491/what-are-some-examples-of-how-anonymous-types-are-useful3What are some examples of how anonymous types are useful?Mithrax2009-04-21T20:38:59Z2009-04-21T20:52:53Z
<p>I've read some articles on how to create anonymous types in C#. </p>
<p>What are some use cases for these things? To me, it seems like it might make things a little more difficult to understand declaring objects and their members inline.</p>
<p>When does it make sense to use Anonymous Types?</p>
http://stackoverflow.com/questions/754982/how-do-i-fade-a-div-in-with-jquery2How do I fade a div in with jQuery?Mithrax2009-04-16T06:35:15Z2009-04-20T10:04:21Z
<p>I have a div defined as the following in my css file:</p>
<pre><code> #toolbar
{
position:relative;
top: 0;
height: 50px;
background-color: #F4A83D;
width: 100%;
text-align: center;
display: hidden;
}
</code></pre>
<p>Then, in my HTML file I have:</p>
<pre><code> <div id="toolbar">
TestApp ToolBar
<br />
You are visiting:
<%=ViewData["url"] %>
</div>
</code></pre>
<p>and finally, I have the following script at the top of my html page that I figured would fadeIn my div when the page loads:</p>
<pre><code> <script src="../../Scripts/jquery-1.3.2-vsdoc.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#toolbar").fadeIn("slow");
});
</script>
</code></pre>
<p>What am I doing wrong? It instantly shows up as if it wasn't fading in at all. Am I not accessing my div correctly in the jquery script?</p>
<p><hr /></p>
<p>Based off some of the answers I've changed my div to:</p>
<pre><code><div id="toolbar" style="visibility: hidden">
TestApp ToolBar
<br />
You are visiting:
<%=ViewData["url"] %>
</div>
</code></pre>
<p>With the same script call, and now my div starts out hidden and never shows up. What else am I doing wrong? </p>
http://stackoverflow.com/questions/766104/how-do-i-get-the-highest-currently-used-id-number-in-a-table-with-linq0How do I get the highest currently used ID number in a table with LINQ?Mithrax2009-04-19T21:12:52Z2009-04-19T21:30:43Z
<p>I have a table with a list of names. This table has an ID column that is an autoincremented number. I would like to display on my website something like, </p>
<p>"6,523,213 names created so far."</p>
<p>So, I need to get the highest currently index/ID number from my names table.</p>
<p>I can think of a few ways to do it, I could OrderBy ID by desc and select the first one. But this might not be the fastest way to do this. I could also stick a field some place and increment it every time I insert a new name into the database.</p>
<p>Is there any easier/fast LINQ express to do this?</p>
http://stackoverflow.com/questions/764965/basic-ajax-example-with-asp-net-mvc2Basic AJAX example with ASP.NET MVC?Mithrax2009-04-19T06:33:29Z2009-04-19T19:56:52Z
<p>I'm in the process of making a demo ASP.NET MVC app for educational purposes.</p>
<p>I have an image/link that flags a post as offensive. I would like to request from the server via AJAX to flag offensive and check to make sure that the user has this ability. </p>
<p>If the user does, then I want to flag the post as offensive in the database and return that the flag went through. If the user ends up NOT having the right to flag items then I would like to return a negative message to the client so I can popup a nice jQuery box stating that it didn't go through.</p>
<p>I'm trying to do this all without a full postback/refresh.</p>
<p>Does anyone have any links to examples of simple AJAX requests being made with MVC?</p>
http://stackoverflow.com/questions/763056/how-can-i-rotate-a-line-of-text-each-page-refresh0How can I rotate a line of text each page refresh?Mithrax2009-04-18T06:59:14Z2009-04-19T01:57:04Z
<p>Right now, Reddit is down. Every time you go to it, it displays a logo and below it a funny message. Every time you refresh the page it displays a new message.</p>
<p><img src="http://imgur.com/NS87G.png" alt="alt text" /></p>
<p>How could I write something simple that ~rotates~ (not random) a line of text on the page every refresh?</p>
<p>I'm using ASP.NET MVC but if there is a JavaScript solution to this problem that is fine too.</p>
http://stackoverflow.com/questions/764042/how-can-i-stack-two-arrow-images-upvote-downvote-on-top-of-eachother-using-css1How can I stack two arrow images (upvote/downvote) on top of eachother using CSS?Mithrax2009-04-18T19:43:07Z2009-04-18T20:29:43Z
<p><img src="http://www.reddit.com/static/aupgray.gif" alt="alt text" /><img src="http://www.reddit.com/static/adowngray.gif" alt="alt text" /></p>
<p>uparrow.gif and downarrow.gif</p>
<p>So, it would look like so:<br />
<img src="http://www.reddit.com/static/aupgray.gif" alt="alt text" /><br />
<img src="http://www.reddit.com/static/adowngray.gif" alt="alt text" /> </p>
<p>How can I create 3 divs and style them with CSS so those arrows are positions with the top arrow above the bottom arrow?</p>
<pre><code><div class="vote">
<div class="uparrow" />
<div class="downarrow" />
</div>
</code></pre>
<p>Should I create a "vote" div with restricted width? Would I float: top and float: bottom the two arrow divs with the background set as my two images? I plan on having content directly to the right of the vote arrows so it needs to be restricted and tight.</p>
http://stackoverflow.com/questions/753653/how-should-i-program-a-simulation-of-a-car-moving-along-a-track2How should I program a simulation of a "car" moving along a track?Mithrax2009-04-15T20:48:55Z2009-04-16T23:48:17Z
<p>For Operating Systems class I'm going to write a scheduling simulator entitled "Jurrasic Park".</p>
<p>The ultimate goal is for me to have a series of cars following a set path and passengers waiting in line at a set location for those cars to return to so they can be picked up and be taken on the tour. This will be a simple 2d, top-down view of the track and the cars moving along it.</p>
<p>While I can code this easily without having to visually display anything I'm not quite sure what the best way would be to implement a car moving along a fixed track.</p>
<p>To start out, I'm going to simply use OpenGL to draw my cars as rectangles but I'm still a little confused about how to approach updating the car's position and ensuring it is moving along the set path for the simulated theme park.</p>
<p>Should I store vertices of the track in a list and have each call to <code>update()</code> move the cars a step closer to the next vertex? If anyone can conceptually come up with a design better than this, I would appreciate some feedback.</p>
http://stackoverflow.com/questions/755255/in-a-website-with-no-users-are-cookies-the-only-way-to-prevent-people-from-repea0In a website with no users, are cookies the only way to prevent people from repeating actions?Mithrax2009-04-16T08:43:39Z2009-04-16T21:07:10Z
<p>I'm creating a website and I don't want to have user/membership.</p>
<p>However, people using the site can do things like vote and flag questionable content. Is the only way to identify and prevent users from doing this repeatedly by using cookies?</p>
<p>I realize a user can just clear their cookies but I can't think of another way.</p>
<p>Suggestions for this scenario?</p>
http://stackoverflow.com/questions/754519/how-does-the-diggbar-dynamically-resize-its-iframes-height-based-on-content-not2How does the DiggBar dynamically resize its iframe's height based on content not on their domain?Mithrax2009-04-16T02:23:14Z2009-04-16T15:08:10Z
<p>Someone has already asked, <a href="http://stackoverflow.com/questions/736730/how-does-the-diggbar-work">How does the DiggBar work?</a> in a previous question.</p>
<p>While someone provided a decent answer it didn't address one thing: </p>
<blockquote>
<p>How does Digg dynamically resize their
iframe's height, based on the content
of a site across a different domain?</p>
</blockquote>
<p>There are plenty of questions and answers here on SO for dynamically adjusting an iframes height based off content (using javascript) <strong>as long as the framed url is on your own domain.</strong> However, Digg seems to have solved this problem with websites of any domain.</p>
<p>Do any SO web programmers have any idea how they accomplished that?</p>
<p>Note: The iframe is NOT simply set to 100% height. The iframe tag simply does not work like that. Google "100% height iframe" and you'll see what I mean.</p>
http://stackoverflow.com/questions/750240/how-do-i-set-or-clear-the-first-3-bits-using-bitwise-operations2How do I set or clear the first 3 bits using bitwise operations?Mithrax2009-04-15T03:53:30Z2009-04-15T15:53:03Z
<p>Lets say I have a number like <code>0x448</code>. In binary this is <code>0100 0100 1000</code>.</p>
<p>How do I set the bits 1, 2 and 3 to either all 0's or all 1's using bit-wise operations? When I say the first three, I'm counting the rightmost bit as the zero bit.</p>
<p>So, for example</p>
<p>Bits as 1's:</p>
<pre><code>b12 b0
0100 0100 1110
^^^
</code></pre>
<p>Bits as 0's:</p>
<pre><code>b12 b0
0100 0100 0000
^^^
</code></pre>
<p>I'm guessing that to set them to 1's I use bit-wise OR with a mask of 14 (0x000e)? But if that is the case, how do I do something similar for clearing the bits?</p>
<p><hr /></p>
<p>Related:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c/">How do you set, clear and toggle a single bit in C?</a> (syntax varies, but the operations are the same)</li>
</ul>
http://stackoverflow.com/questions/750013/how-do-i-access-the-state-of-individual-bits-of-a-word-in-mips2How do I access the state of individual bits of a word in MIPS?Mithrax2009-04-15T02:00:59Z2009-04-15T02:51:26Z
<p>I'm writing a program and I need to determine if bits 3 and 6 are set. I know that I can rotate a word or left/right shift it.</p>
<p>But how do I access individual bit's state? Do I use a bitwise operator like and/xor?</p>
http://stackoverflow.com/questions/749068/are-two-int-arrays-of-different-size-type-equivalent-in-c1Are two int arrays of different size "type equivalent" in C?Mithrax2009-04-14T19:43:28Z2009-04-15T00:13:48Z
<p>I'm reading about Type Equivalence in my Programming Languages class and I've come across a situation in C I'm unsure about.</p>
<p>It describes C's "Type Equivalence" as: </p>
<blockquote>
<p>C uses a form of type equivalence that falls between name and structural equivalence, and which can be loosely described as "name equivalence for structs and unions, structural equivalence for everything else."</p>
</blockquote>
<p>So what if I have two arrays of different size, but the same base type:</p>
<pre><code>typedef int A1[10];
typedef int A2[20];
</code></pre>
<p>Since all I need is structural equivalence, could these two be considered structurally equivalent? In C, is the size of the index set part of an array type or no?</p>
http://stackoverflow.com/questions/749199/when-would-i-want-to-use-a-heap2When would I want to use a heap?Mithrax2009-04-14T20:18:16Z2009-04-14T20:56:05Z
<p>Besides the obvious answer of a Priority Queue, when would a heap be useful in my programming adventures?</p>
http://stackoverflow.com/questions/748673/how-can-i-tell-if-a-number-is-a-multiple-of-four-using-only-the-logic-operator-an7How can I tell if a number is a multiple of four using only the logic operator AND?Mithrax2009-04-14T17:47:59Z2009-04-14T18:21:56Z
<p>I'm messing with assembly language programming and I'm curious how I could tell if a number is a multiple of 4 using the logic operator AND?</p>
<p>I know how to do it using "div" or "remainder" instructions but I'm trying to do this with bit manipulation of number/word.</p>
<p>Can anyone point me in the right direction? I'm using MIPs but a Language agnostic answer is fine.</p>
http://stackoverflow.com/questions/744477/why-can-i-not-assign-interchangeably-with-two-structs-that-have-identical-content4Why can I not assign interchangeably with two structs that have identical contents?Mithrax2009-04-13T16:33:28Z2009-04-13T19:19:12Z
<p>I'm trying to learn C and I've come across something weird:</p>
<pre><code>struct
{
int i;
double j;
} x, y;
struct
{
int i;
double j;
} z;
</code></pre>
<p>Here, you can see I created two <code>struct</code>s that are identical in their elements.</p>
<p>Why is it that when I try to assign <code>x = z</code> it will generate a compile error but <code>x = y</code> does not? They have the same contents, so why can't I assign them back and forth with each other, regardless?</p>
<p>Is there any way I can make this so I <strong>can</strong> assign <code>x = z</code>? Or do they simply have to be the same <code>struct</code>.</p>
<p>Can any C gurus point me in the right direction?</p>
http://stackoverflow.com/questions/744536/c-array-declaration-and-assignment2C array declaration and assignment?Mithrax2009-04-13T16:45:19Z2009-04-13T18:22:14Z
<p>I've asked a similar question on structs <a href="http://stackoverflow.com/questions/744477/assignment-and-structs-in-c">here</a> but I'm trying to figure out how C handles things like assigning variables and why it isn't allowed to assign them to eachother if they are functionally the same.</p>
<p>Lets say I have two arrays:</p>
<pre><code>int x[10];
int y[10];
</code></pre>
<p>Why won't x = y compile? If they are both the same "signature" like that, then shouldn't you be able to assign them back and forth?</p>
<p>Can I declare these in a way that would allow me to do that in C? It makes sense to me that you would be able to, but maybe there is a way that this can be done? Typedefs for structs seemed to be the solution, would it be the same for array declaration and assignment?</p>
<p>I appreciate your guys help, I'm new to Stackoverflow but it has been a really good resource for me so far!</p>
http://stackoverflow.com/questions/741293/why-doesnt-this-form-call-my-controller-action-in-asp-net-mvc1Why doesn't this form call my controller action in ASP.NET MVC?Mithrax2009-04-12T05:10:11Z2009-04-12T08:17:53Z
<p>I'm attempting to make a TinyURL clone in ASP.NET MVC as a learning project.</p>
<p>Right now, all I want is to be able to submit new URLs to my /Home/Create action via a form.</p>
<p><img src="http://imgur.com/JJOP0.png" alt="alt text" /></p>
<p>I have my LINQ expression all setup, I have my routing setup, and I have my view setup but something is wrong with my setup. </p>
<p>Routing:</p>
<pre><code> routes.MapRoute(
"Default", // Route name
"", // URL with parameters
new { controller = "Home", action = "Index" } // Parameter defaults
);
routes.MapRoute(
"Redirect",
"{hash}",
new { controller = "Home", action = "RequestLink", hash = "" }
);
</code></pre>
<p>These routes allow me to be able to go to my website, www.tinyurlclone.com/ and if nothing is passed ti will simply go to my Home/Index() action. However, if you put anything after the slash, it will consider that a Link Hash and attempt to retrieve the hash.</p>
<p>My HomeController is as follows:</p>
<pre><code>[HandleError]
public class HomeController : Controller
{
TinyGetRepository repo = new TinyGetRepository();
public ActionResult Index()
{
return View();
}
public ActionResult Create(String url)
{
String hash = repo.addLink(url);
ViewData["LinkHash"] = hash;
return View();
}
public ActionResult RequestLink(String hash)
{
String url = repo.getLink(hash);
return Redirect(url);
}
}
</code></pre>
<p>My repo class has all my LINQ expressions in it for dealing with the database and I don't really need to include them because it isn't relevant to this question.</p>
<p>Finally, my basic Home/Index() view (used for submitting urls) is as follows:</p>
<pre><code><%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Index</title>
</head>
<body>
<div>
<center>
<span style="font-size: 14pt">TinyGet <em>(beta)</em></span><br />
<span style="font-family: Tahoma">Reduce your long links to smaller ones to keep them more memorable....<br />
</span>
<% using(Html.BeginForm("Create", "Home")) %>
<% { %>
<%= Html.TextBox("url") %>
<input type="submit" name="submitButton" value="Shorten Link!" />
<% } %>
</center>
</div>
</body>
</html>
</code></pre>
<p>However, my form simply isn't firing any methods when I click submit.</p>
<p>Furthermore, if I view the source of my generated HTML I can see that it didn't make my Form's action correctly, it reads:</p>
<pre><code><form action="" method="post"><input id="url" name="url" type="text" value="" />
<input type="submit" name="submitButton" value="Shorten Link!" />
</form>
</code></pre>
<p>Why is the HTML helper putting "" as the action when it ~should~ be putting /Home/Create? Why isn't my /Home/Create action method being called? Even if I don't use the Html helpers and specify the <code><form</code>> tag manually it throws errors.</p>
<p>What is wrong here?</p>
<p>Source for project: <a href="http://www.filedropper.com/tinyget" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/733288/when-creating-a-social-voting-system-should-you-keep-track-of-downvotes-and-upvo2When creating a social voting system, should you keep track of downvotes and upvotes separately in the DB?Mithrax2009-04-09T08:07:09Z2009-04-09T18:30:28Z
<p>With things like SO, Digg, Reddit, etc... </p>
<p>Should one keep track of downvotes in the database independent of upvotes? Or should they simply have a "votes" field that is decremented/incremented based off what the user does with no persisting of that?</p>
<p>How should votes be handled?</p>
http://stackoverflow.com/questions/729095/using-html-forms-in-asp-net-mvc0Using HTML forms in ASP.NET MVC?Mithrax2009-04-08T08:47:57Z2009-04-08T16:54:04Z
<p>It seems like everything I look up on this subject has either changed since the release or is wildly different from eachother.</p>
<p>I just want to create a simple form in my view. </p>
<p>Should I be using the Html.BeginForm()/TextBox()/EndForm() methods or should I be using a plain-jane HTML form? Which is preferred?</p>
<p>This is what I have so far: </p>
<pre><code><%=Html.BeginForm("Create", "Product", FormMethod.Post); %>
<%=Html.TextBox("productTextBox", "Enter a shoe name"); %>
<input type="submit" name="createButton" value="Create Me!" />
<%=Html.EndForm(); %>
</code></pre>
<p>What is the "correct" way to create a simple form with a button and textbox in ASP.NET MVC and allow me to submit the data in the form to the /Product/Create action? </p>
<p>How do I then access the form data from within that method? Some people seem to use a "FormCollection" and others just do a Request.Form method. Which way should I use?</p>
<p>Can someone enlighten me?</p>
http://stackoverflow.com/questions/729005/how-do-i-query-only-a-single-item-from-a-database-using-linq2How do I query only a single item from a database using LINQ?Mithrax2009-04-08T08:17:39Z2009-04-08T09:38:03Z
<p>I would like to get a LINQ-to-SQL query that returns only one item, not a collection of them?</p>
<p>For example, I have a list of products with a particular name. There are no products with duplicate names in the database, so I want to be able to query and return just that instance of that product. </p>
<pre><code>Products product = from p in _productContext.Products
where p.name.Equals("BrownShoes")
select p;
</code></pre>
<p>How do I do something like that?</p>
http://stackoverflow.com/questions/1733058/replace-placeholders-with-text-c/1733071#1733071Comment by Mithrax on Replace placeholders with text - C ?Mithrax2009-11-14T03:00:57Z2009-11-14T03:00:57ZThis is a good answer too. Reminds me of my Compiler homework using finite automata.http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-cComment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-14T00:27:21Z2009-10-14T00:27:21Z@GMan, tried to clear it up so you could understand it ;).http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-cComment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-14T00:20:31Z2009-10-14T00:20:31Z@GMan, I made one comparison between them as I found pointers to be similar to Java's Reference Variables. I then stated that I understood the behavior behind the 2 C++ methods of variable creation and the only question I wanted answered was when it was appropriate to use a particular one.http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c/1563582#1563582Comment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-14T00:11:23Z2009-10-14T00:11:23ZI think you are misreading my post. The two different ways of creating variables are Reference variables and Pointers. I don't give an example of pointers in my post. I think you are seeing the 2 employee objects I created in my post and thinking that those are the 2 methods I'm talking about when they are not. That is simply 1 method, which I was demonstrating how it copied the whole object.http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c/1563582#1563582Comment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-14T00:03:48Z2009-10-14T00:03:48ZI think you are missing the word, "However". I first stated that I had read, and understood pointers and how they were similar to Java Reference types. I then went on to describe how there was a ~different~ way of declaring variables. http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c/1563582#1563582Comment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-13T23:59:19Z2009-10-13T23:59:19Z@GMan, This is what I intended, I simply misstated what I was trying to explain. My C++ vocab needs work. In any case, I still understood up to this point. http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-cComment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-13T23:58:12Z2009-10-13T23:58:12Z@John Millikin, thank you for clearing up my post, you got my intention correct. I still sometimes stumble over C++ nomenclature.http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c/1563569#1563569Comment by Mithrax on When do you want to use pointers vs values in C++?Mithrax2009-10-13T23:51:30Z2009-10-13T23:51:30ZWhat do you call "Reference Objects", so I know the proper terminology? I didn't know so I just made something up.http://stackoverflow.com/questions/1401311/could-someone-explain-the-math-behind-how-this-cube-rotating-script-works/1401397#1401397Comment by Mithrax on Could someone explain the math behind how this cube-rotating script works?Mithrax2009-09-09T23:15:05Z2009-09-09T23:15:05Z@Peter Parker, interesting. What do you think needs to be done to resolve the issue in the above script? Divide by z-coord like you suggested or?http://stackoverflow.com/questions/1397794/when-scraping-a-lot-of-stats-from-a-webpage-how-often-should-i-insert-the-collec/1397821#1397821Comment by Mithrax on When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?Mithrax2009-09-09T06:18:15Z2009-09-09T06:18:15ZI'm using MSSQL, so I'm not sure how that will effect things.http://stackoverflow.com/questions/1397794/when-scraping-a-lot-of-stats-from-a-webpage-how-often-should-i-insert-the-collecComment by Mithrax on When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?Mithrax2009-09-09T06:09:15Z2009-09-09T06:09:15ZI'm gathering statistics by visiting profile pages of a niche gaming website. I've gotten permission, as I plan to create a ladder ranking based on certain aspects of the users data each week.http://stackoverflow.com/questions/1365476/should-i-use-a-generic-arraylist-in-java-even-though-it-doesnt-provide-any-perfoComment by Mithrax on Should I use a generic ArrayList in Java even though it doesn't provide any performance benefit?Mithrax2009-09-02T13:46:40Z2009-09-02T13:46:40Z@oxbow_lakes, it seems you simply saw "performance" and "java generics" and ignored the C# reference in the question. The OP stated that he wondered why Java programmers used generics other than type-safety in Java because they <i>dont</i> have a performance improvement like C# does over its non-generic counterparts (by keeping the type information and not performing casts). Granted, type-safety is still reason enough to use them but you seemed of mis-understood the question.http://stackoverflow.com/questions/1365476/should-i-use-a-generic-arraylist-in-java-even-though-it-doesnt-provide-any-perfoComment by Mithrax on Should I use a generic ArrayList in Java even though it doesn't provide any performance benefit?Mithrax2009-09-02T13:37:43Z2009-09-02T13:37:43Z@oxbow_lakes, It isn't just collections of primitives that there is a performance difference. You were most likely downvoted because you stated that generics "have nothing to do with performance" in bold, when this isn't true of C# generics, which was the OPs point. And we aren't talking microseconds of performance, we are talking at least a 2x speed up when doing many operations. Not having the autoboxing / unboxing is huge.http://stackoverflow.com/questions/766048/store-image-in-database-or-in-a-system-fileComment by Mithrax on store image in database or in a system file ?Mithrax2009-04-19T21:16:09Z2009-04-19T21:16:09ZWell, Yassir himself voted to close. So maybe he mis-clicked.http://stackoverflow.com/questions/766059/what-steps-should-you-take-to-protect-your-innovative-look-and-feel/766079#766079Comment by Mithrax on What steps should you take to protect your innovative look and feel?Mithrax2009-04-19T21:13:38Z2009-04-19T21:13:38ZWhat do they do with them? Minify them? Obfuscate them? What?