active questions tagged not-a-question - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T00:16:38Zhttp://stackoverflow.com/feeds/tag/not-a-questionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1907915/using-asp-net-mvc-and-jquery-to-render-partial-view-submit-a-form-without-page-re0Using ASP.NET MVC and jQuery to render partial view/submit a form without page refreshVeli2009-12-15T14:42:58Z2009-12-15T15:04:20Z
<p>Hi, </p>
<p>I'm new to ASP.NET MVC and jQuery, so I thought I'd share how I implemented loading of partial views and submitting forms in a way that doesn't require for the entire page to be refreshed. I hope to get some critique from the experts if there's a better way to do this :) </p>
<p>All the magic is done by 3 javascript functions which I bind to various events, like button click, jQueryUI tab select, etc.</p>
<p>Firstly, this is how I get a partial view:</p>
<pre><code>function showAjaxMessage(targetDiv, ajaxMessage) {
var ajaxLoader = "<img src='Content/loader.gif' alt=''>";
$(targetDiv).html("<p>" + ajaxLoader + " " + ajaxMessage+"</p>");
}
function getPartialView(actionUrl, targetDiv, ajaxMessage, callback) {
showAjaxMessage(targetDiv, ajaxMessage);
$.get(actionUrl, null, function(result) {
$(targetDiv).html(result);
callback();
});
}
</code></pre>
<p>Usage:</p>
<pre><code>getPartialView("MyController/MyAction", "#myDiv", "Loading...", function() { alert('Loaded!'); });
</code></pre>
<p>This will set whatever the action returned (PartialView) as the content of myDiv and then invoke the callback function (in this case, it will just pop up an alert) with a nice "Loading..." message displayed in the div while we wait for the response.</p>
<p>Secondly, submitting a form:</p>
<pre><code>function submitForm(actionUrl, targetDiv, ajaxMessage, form, callback) {
var data = $(form).serialize();
showAjaxMessage(targetDiv, ajaxMessage);
$.post(
actionUrl,
data,
function(data) {
$(targetDiv).html(data);
callback();
}
);
}
</code></pre>
<p>Usage:</p>
<pre><code>submitForm("MyController/MyAction", "#myDiv", "Submitting...", "#myForm", function() { alert('Submitted!'); });
</code></pre>
<p>Once again, this invokes a controller action, but this time it does a POST with the given form's data (<form id="myForm">) serialized as "input1=value1&input2=value2&...&inputn=valuen", allowing the action to do something with the user input, like so:</p>
<pre><code>public ActionResult MyAction(FormCollection form)
{
// eg. TryUpdateModel<MyActionViewModel>(this.myActionViewModel);
// or
// do something with form["input1"] ...
return PartialView("MyPartialView", this.myActionViewModel);
}
</code></pre>
<p>The HTML returned is once again rendered into myDiv and a callback function is invoked.</p>
<p>I haven't added any validation as yet, but the basics work quite nicely, but if there is a better way, please share :)</p>
http://stackoverflow.com/questions/16322/learning-about-linq63Learning about LINQlomaxx2008-08-19T14:50:43Z2009-12-10T21:22:22Z
<h2>Overview</h2>
<p>One of the things I've asked a lot about on this site is <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ</a>. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to consolidate the knowledge I've acquired on Linq I'm posting this question with a view to maintaining and updating it with additional information as I continue to learn about LINQ. </p>
<p>I also hope that it will prove to be a useful resource for other people wanting to learn about LINQ. </p>
<h2>What is LINQ?</h2>
<p>From <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>The LINQ Project is a codename for a
set of extensions to the .NET
Framework that encompass
language-integrated query, set, and
transform operations. It extends C#
and Visual Basic with native language
syntax for queries and provides class
libraries to take advantage of these
capabilities.</p>
</blockquote>
<p>What this means is that LINQ provides a standard way to query a variety of datasources using a common syntax. </p>
<h2>What flavours of LINQ are there?</h2>
<p>Currently there are a few different LINQ providers provided by Microsoft:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/bb397919.aspx" rel="nofollow">Linq to Objects</a> which allows you to execute queries on any IEnumerable object. </li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" rel="nofollow">Linq to SQL</a> which allows you to execute queries against a database in an object oriented manner. </li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb387098.aspx" rel="nofollow">Linq to XML</a> which allows you to query, load, validate, serialize and manipulate XML documents.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb386964.aspx" rel="nofollow">Linq to Entities</a> as suggested by <a href="http://beta.stackoverflow.com/questions/16322/all-about-linq#33588" rel="nofollow">Andrei</a></li>
</ul>
<p>There are quite a few others, many of which are listed <a href="http://blogs.microsoft.co.il/blogs/vardi/archive/2008/10/09/the-linq-list-projects.aspx" rel="nofollow">here</a>.</p>
<h2>What are the benefits?</h2>
<ul>
<li>Standardized way to query multiple datasources</li>
<li>Compile time safety of queries</li>
<li>Optimized way to perform set based operations on in memory objects</li>
<li>Ability to debug queries</li>
</ul>
<h2>So what can I do with LINQ?</h2>
<p><a href="http://beta.stackoverflow.com/users/489/ch00k" rel="nofollow">Chook</a> provides a way to <a href="http://beta.stackoverflow.com/questions/4432/csv-string-handling#4441" rel="nofollow">output CSV files</a><br>
<a href="http://beta.stackoverflow.com/users/1/jeff-atwood" rel="nofollow">Jeff</a> shows how to <a href="http://beta.stackoverflow.com/questions/9673/remove-duplicates-from-array#9685" rel="nofollow">remove duplicates from an array</a><br>
Bob gets a <a href="http://beta.stackoverflow.com/questions/59/how-do-i-get-a-distinct-ordered-list-of-names-from-a-datatable-using-linq#62" rel="nofollow">distinct ordered list from a datatable</a><br>
<a href="http://beta.stackoverflow.com/users/1659/marxidad" rel="nofollow">Marxidad</a> shows how to <a href="http://beta.stackoverflow.com/questions/15486/sorting-an-ilist-in-c#15495" rel="nofollow">sort an array</a><br>
Dana gets help implementing a <a href="http://stackoverflow.com/questions/185072/learning-linq-quicksort">Quick Sort Using Linq</a> </p>
<h2>Where to start?</h2>
<p><strong>A summary of links from <a href="http://beta.stackoverflow.com/questions/8050/beginners-guide-to-linq" rel="nofollow">GateKiller's question</a> are below</strong>:<br>
Scott Guthrie provides an <a href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" rel="nofollow">intro to Linq on his blog</a><br>
An overview of <a href="http://msdn.microsoft.com/en-us/library/bb308959.aspx" rel="nofollow">LINQ on MSDN</a> </p>
<p><strong><a href="http://beta.stackoverflow.com/users/1758/kareena" rel="nofollow">Karina</a> suggests checking out:</strong> </p>
<ul>
<li><a href="http://www.hookedonlinq.com/MainPage.ashx" rel="nofollow">Hooked on Linq</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">101 Linq Samples</a></li>
<li><a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> </li>
</ul>
<h2>What do I need to use LINQ?</h2>
<p>Linq is currently available in VB.Net 9.0 and C# 3.0 so you'll need Visual Studio 2008 or greater to get the full benefits. (You could always write your code in notepad and compile using MSBuild)</p>
<p>There is also a tool called <a href="http://beta.stackoverflow.com/questions/7652/querying-like-linq-when-you-dont-have-linq#7710" rel="nofollow">LinqBridge</a> which will allow you to run Linq like queries in C# 2.0. </p>
<h2>Tips and tricks using LINQ</h2>
<p><a href="http://beta.stackoverflow.com/questions/28858/coolest-c-linqlambdas-trick-youve-ever-pulled" rel="nofollow">This question</a> has some tricky ways to use LINQ</p>
http://stackoverflow.com/questions/1876411/excel-validation-range-limits1Excel validation range limitsrichardtallent2009-12-09T19:56:51Z2009-12-09T20:11:49Z
<p>When Excel saves a file, it attempts to combine identical Validation settings into a single rule with multiple ranges.</p>
<p>This creates one of three issues, depending on the file type you choose to save:</p>
<ol>
<li><p>When saving as a standard Excel file (Office 2000 BIFF), a maximum of <strong>1024 non-contiguous ranges</strong> that can have the same validation setting.</p></li>
<li><p>When saving as a SpreadsheetML (Office 2002/2003 XML) file, you are limited to the number of non-contiguous ranges that can be represented, comma-delimited in R1C1 format, in <strong>1024 characters</strong>.</p></li>
<li><p>When saving as an Open Office XML (Office 2007 *.xlsx), there is a maximum of <strong>511 non-contiguous ranges</strong> that can have the same validation setting. (I don't have Office 2007, I'm using the file converter for Office 2003).</p></li>
</ol>
<p>Once you bust any of these limits, the remaining ranges with the same Validation settings have their Validation settings wiped. For (1) and (3), Excel warns you that it can't save all of the formatting, but for (2) it does not.</p>
http://stackoverflow.com/questions/1822578/any-language-counts-8Any language counts? [closed]g.genexus2009-11-30T21:37:39Z2009-12-07T18:24:25Z
<p>Cualquier idioma en que haga las preguntas será contestada con igual velocidad?</p>
<p>O piensan que algún idioma pueda ser contestado más rápidamente?</p>
<p>Quisiera preguntar sobre GeneXus.</p>
<p>I want ask about GeneXus.</p>
<p>g.g.</p>
http://stackoverflow.com/questions/1802057/my-question-was-moved-to-serverfault-and-not-able-to-comment-on-my-quesion-2My question was moved to serverfault and not able to comment on my quesion [closed]calvin2009-11-26T07:23:51Z2009-11-26T07:30:41Z
<p>My question was moved to serverfault and not able to comment on my question. Please help me out.
<a href="http://stackoverflow.com/questions/1801796/how-to-know-who-is-accessing-my-system-closed">http://stackoverflow.com/questions/1801796/how-to-know-who-is-accessing-my-system-closed</a>
here is my question. Just now I've created account in serverfault, still not able to. :(
Gah, this is bad :(</p>
http://stackoverflow.com/questions/237307/prototypes-versus-classes8prototypes versus classesAnders Rune Jensen2008-10-26T01:08:54Z2009-11-20T03:52:43Z
<p>Steve Yegge recently posted an <a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html" rel="nofollow">interesting blog post</a> on what he calls the universal design pattern. In there he details using prototypes as a modelling tool, instead of classes. I like the way this introduces less coupling compared to inheritance. But that is something one can get with classes as well, by implementing classes in terms of other classes, instead of inheritance. Does anyone else have success stories of using prototypes, and can maybe help explain where using prototypes is advantageous compared to classes. I guess it comes down to static modelling versus dynamic modelling, but more examples would be very welcome.</p>
http://stackoverflow.com/questions/1000457/uibutton-events-with-selector-5uibutton events with @selectorRaju2009-06-16T09:34:54Z2009-11-19T18:54:32Z
<p>-(void)myButton{
UIButton *settingbutton=[UIButton buttonWithType:UIButtonTypeCustom];</p>
<p>[settingbutton setFrame:CGRectMake(15.0f, 330.0f, 150.0f, 32.0f)];</p>
<p>[settingbutton setCenter:CGPointMake(80.0f,390)];</p>
<p>[settingbutton setBackgroundImage: normalImage forState: UIControlStateNormal];</p>
<p>[settingbutton setBackgroundImage: downImage forState: UIControlStateHighlighted];</p>
<p>[settingbutton setBackgroundImage: selectedImage forState: UIControlStateSelected];</p>
<p>[settingbutton setTitle:@"Settings" forState:UIControlStateNormal];</p>
<p>[settingbutton setFont:[UIFont fontWithName: @"Courier-Bold" size:20 ]];</p>
<p>SEL mysel;</p>
<p>NSString *ti=[[NSString alloc]initWithString:@" YES IT IS OKY"];</p>
<p>mysel = @selector(pinSetting:ti:);</p>
<p>forControlEvents:UIControlEventTouchUpInside];</p>
<p>[settingbutton addTarget:self action: mysel forControlEvents:UIControlEventTouchUpInside];
[self.window addSubview:settingbutton];
}</p>
<p>-(void)pinSeting:(NSString*)t{
NSLog(@"\n the value of string : %@",t);
}</p>
<p>/*
here there is two method one is "MyButton" and "pinsetting", in the first method i have coded for one uibutton , when pressed on it , call the method Pinsetting and print the string.. that string is decleared in first method .. name is ti.
pls clear me this code */</p>
http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai188What is the best Battleship AI?John Gietzen2009-10-27T15:02:20Z2009-11-19T03:07:03Z
<p>Battleship!</p>
<p>Back in 2003, (when I was 17,) I competed in a <a href="http://www.xtremevbtalk.com/t89846.html" rel="nofollow">Battleship AI</a> coding competition. Even though I lost that tournament, I had a lot of fun and learned a lot from it.</p>
<p>Now, I would like to resurrect this competition, in the search of the best battleship AI.</p>
<p>Here is the framework: <strong><a href="http://files.lanlordz.net/Crew/otac0n/Battleship.zip" rel="nofollow">Battleship.zip</a></strong></p>
<p><strong>The winner will be awarded +450 reputation!</strong> The competition will be held starting on the <strong>17th of November, 2009</strong>. No entries or edits later than zero-hour on the 17th will be accepted. (Central Standard Time)
Submit your entries early, so you don't miss your opportunity!</p>
<p><em>To keep this <strong>OBJECTIVE</strong>, please follow the spirit of the competition.</em></p>
<p><strong>Rules of the game:</strong></p>
<ol>
<li>The game is be played on a 10x10 grid.</li>
<li>Each competitor will place each of 5 ships (of lengths 2, 3, 3, 4, 5) on their grid.</li>
<li>No ships may overlap, but they may be adjacent.</li>
<li>The competitors then take turns firing single shots at their opponent.
<ul>
<li>A variation on the game allows firing multiple shots per volley, one for each surviving ship.</li>
</ul></li>
<li>The opponent will notify the competitor if the shot sinks, hits, or misses.</li>
<li>Game play ends when all of the ships of any one player are sunk.</li>
</ol>
<p><strong>Rules of the competition:</strong></p>
<ol>
<li>The spirit of the competition is to find the best Battleship algorithm.</li>
<li>Anything that is deemed against the spirit of the competition will be grounds for disqualification.</li>
<li>Interfering with an opponent is against the spirit of the competition.</li>
<li>Multithreading may be used under the following restrictions:
<ul>
<li>No more than one thread may be running while it is not your turn. (Though, any number of threads may be in a "Suspended" state).</li>
<li>No thread may run at a priority other than "Normal".</li>
<li>Given the above two restrictions, you will be guaranteed at least 3 dedicated CPU cores during your turn.</li>
</ul></li>
<li>A limit of 1 second of CPU time per game is allotted to each competitor on the primary thread.</li>
<li>Running out of time results in losing the current game.</li>
<li>Any unhandled exception will result in losing the current game.</li>
<li>Network access and disk access is allowed, but you may find the time restrictions fairly prohibitive. However, a few set-up and tear-down methods have been added to alleviate the time strain.</li>
<li>Code should be posted on stack overflow as an answer, or, if too large, linked.</li>
<li>Max total size (un-compressed) of an entry is 1 MB.</li>
<li>Officially, .Net 2.0 / 3.5 is the only framework requirement.</li>
<li>Your entry must implement the IBattleshipOpponent interface.</li>
</ol>
<p><strong>Scoring:</strong></p>
<ol>
<li>Best 51 games out of 101 games is the winner of a match.</li>
<li>All competitors will play matched against each other, round-robin style.</li>
<li>The best half of the competitors will then play a double-elimination tournament to determine the winner. (Smallest power of two that is greater than or equal to half, actually.)</li>
<li>I will be using the <a href="http://tournaments.codeplex.com/" rel="nofollow">TournamentApi</a> framework for the tournament.</li>
<li>The results will be posted here.</li>
<li>If you submit more than one entry, only your best-scoring entry is eligible for the double-elim.</li>
</ol>
<p>Good luck! Have fun!</p>
<p><hr></p>
<p><strong>EDIT 1:</strong><br/>
Thanks to <a href="http://stackoverflow.com/users/190480/freed">Freed</a>, who has found an error in the <code>Ship.IsValid</code> function. It has been fixed. Please download the updated version of the framework.</p>
<p><strong>EDIT 2:</strong><br/>
Since there has been significant interest in persisting stats to disk and such, I have added a few non-timed set-up and tear-down events that should provide the required functionality. This is a <strong>semi-breaking change</strong>. That is to say: the interface has been modified to add functions, but no body is required for them. Please download the updated version of the framework.</p>
<p><strong>EDIT 3:</strong><br/>
Bug Fix 1: <code>GameWon</code> and <code>GameLost</code> were only getting called in the case of a time out.<br/>
Bug Fix 2: If an engine was timing out every game, the competition would never end.<br/>
Please download the updated version of the framework.</p>
<p><strong>EDIT 4:</strong><br/>
Results!
<img src="http://img39.imageshack.us/img39/3757/tournamente.png" alt="Tournament Results"></p>
http://stackoverflow.com/questions/1751877/could-you-give-me-a-correctly-formatted-program-example-for-this-grammar-1Could you give me a correctly formatted program example for this grammar? [closed]Phenom2009-11-17T21:19:52Z2009-11-17T21:24:40Z
<p>The lex file:</p>
<pre><code>/* C-Minus BNF Grammar */
%{
#include "parser.h"
#include <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
%token RETURN
%token VOID
%token WHILE
%token <symp> ID
%token <intval> NUM
%token LTE
%token GTE
%token EQUAL
%token NOTEQUAL
type <string> paramlist
%%
program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration | fun_declaration ;
var_declaration : type_specifier ID ';' {$2->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2->args = 'a'; printf("Parameters: \n", $2->args); } ;
params : param_list | VOID ;
param_list : param_list ',' param
| param ;
param : type_specifier ID | type_specifier ID '[' ']' ;
compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ;
local_declarations : local_declarations var_declaration
| /* empty */ ;
statement_list : statement_list statement
| /* empty */ ;
statement : expression_stmt
| compound_stmt
| selection_stmt
| iteration_stmt
| return_stmt ;
expression_stmt : expression ';'
| ';' ;
selection_stmt : IF '(' expression ')' statement
| IF '(' expression ')' statement ELSE statement ;
iteration_stmt : WHILE '(' expression ')' statement ;
return_stmt : RETURN ';' | RETURN expression ';' ;
expression : var '=' expression | simple_expression ;
var : ID | ID '[' expression ']' ;
simple_expression : additive_expression relop additive_expression
| additive_expression ;
relop : LTE | '<' | '>' | GTE | EQUAL | NOTEQUAL ;
additive_expression : additive_expression addop term | term ;
addop : '+' | '-' ;
term : term mulop factor | factor ;
mulop : '*' | '/' ;
factor : '(' expression ')' | var | call | NUM ;
call : ID '(' args ')' ;
args : arg_list | /* empty */ ;
arg_list : arg_list ',' expression | expression ;
%%
/* look up a symbol table entry, add if not present */
struct symtab *symlook(char *s) {
printf("Putting %s into the symbol table\n", s);
char *p;
struct symtab *sp;
for(sp = symtab; sp < &symtab[NSYMS]; sp++) {
/* is it already here? */
if(sp->name && !strcmp(sp->name, s))
{
yyerror("already in symbol table\n");
exit(1);
return sp;
}
if(!sp->name) { /* is it free */
sp->name = strdup(s);
return sp;
}
/* otherwise continue to next */
}
yyerror("Too many symbols");
exit(1); /* cannot continue */
} /* symlook */
yyerror(char *s)
{
printf( "yyerror: %s\n", s);
}
</code></pre>
http://stackoverflow.com/questions/726765/cruise-control-net-statistic-publishers3Cruise Control .Net Statistic PublishersRyu2009-04-07T17:24:27Z2009-11-10T10:44:22Z
<p>I thought I'd create a community wiki for everybody to share their clever cruise control .net statistic configurations.</p>
http://stackoverflow.com/questions/416914/optimizing-php-string-concatenation-6Optimizing PHP string concatenationAif2009-01-06T15:16:05Z2009-11-10T09:09:27Z
<p>Hello there,</p>
<p>This post is not really a question, but it could be useful to share some coding tips.</p>
<p>Here is the one I'de like to share with you.
I'm gonna show you 4 examples to do the same thing, but only the last one will be the best.</p>
<pre><code>$foo = 'John SMITH';
echo "Hello $foo, welcome on my website.";
echo "Hello " . $foo . " welcome on my website.";
echo 'Hello ' . $foo . ' welcome on my website.';
echo 'Hello ', $foo , ' welcome on my website.';
</code></pre>
<p>I'm sure you all know that echo '$foo' won't work, but still, I'm pretty sure that you use double quote to display a simple information.
THIS IS BAD.</p>
<p>Well let's begin : The first one is bad (as well as the second) because using double quote forces php to scan the string to look for a substitution to be done (I mean a variable).</p>
<p>The second one is a little better, since php has no replacement to do.</p>
<p>The third one, is better because of simple quote, so that the language knows he can just send the text without processing, but the "bad" thing is the use of concatenation (dot operator, like in the second example).</p>
<p>The last one uses simple quote, and the coma operator. Why is this solution better?</p>
<p>Well, what happens when Using the third solution?</p>
<p>php creates a string, containing "Hello ", then it has to enlarge it, to put the content of foo variable ("John SMITH"), and then, enlarge it again to put " Welcome on my website." sentence.
Then, echo can use this, to ... echo it :)</p>
<p>Whereas in the 4th one, the only thing to do for echo is to send "Hello ", then $foo's content, then " Welcome on my website." to the output, and that is all!
Because echo just has to send the text, without creating a string that will have to be enlarged to contain the whole texte (that would have been concate, which has to be grown (because of concatenation) and then displayed.</p>
<p>I'll try to find back some benchmarks and put them here.</p>
<p>Fell free to comment or react, and excuse my english, this is not my mother thong.</p>
http://stackoverflow.com/questions/1600684/isdir-function-is-stopping-apache-service-5is_dir function is stopping Apache service [closed]Ankita2009-10-21T13:00:14Z2009-10-21T13:10:01Z
<p>is_dir function is stopping Apache service</p>
http://stackoverflow.com/questions/1584705/c-linq-yet-another-brain-teaser0C# /Linq Yet another Brain Teaserlinqfying2009-10-18T11:57:30Z2009-10-18T18:04:59Z
<p>Friends, there is yet another scenario to solve. I am working it out without applying Linq.But I hope it is good opportunity for me to learn Linq if you share your code in Linq.</p>
<p>It is know as <b> FLAMES </b></p>
<p><b>
F - Friend</p>
<p>L - Lover </p>
<p>A - Admirer</p>
<p>M - Marry(Husband)</p>
<p>E - Enemy</p>
<p>S - Sister
</b></p>
<p><strong>Problem description:</strong></p>
<p>Two names will be given (male, female).We have to strike out the common letters from both names. Then we have to count the number of remaining letters after striking out the common characters from both names. Finally we have to iterate the string FLAMES and striking out the letters in FLAMES until we will reach single character left. The remaining single character shows the relationship. I will explain the process more details in the following example.(Ignore cases and spaces).</p>
<p>Example :</p>
<p><strong>Step 1</strong></p>
<p><i></p>
<pre><code>Male : Albert
Female : Hebarna
</code></pre>
<p></i></p>
<p>Letters “a”, “e” ,”b” are common in both names.</p>
<p>( Strike those letters from both string , even the name “Hebarna” contains two “a” you are allowed to strike single “a” from both string because The name “Albert” has only single “a”).</p>
<p>The resultant string is
<i></p>
<pre><code>Male : $ l $ $ r t
Female: H $ $ $ r n a
</code></pre>
<p></i></p>
<p><strong>Step 2:</strong></p>
<p>Count the remaining letters from both strings.</p>
<p>Count : 7</p>
<p><strong>Step 3:</strong></p>
<p>Using the count we have to iterate the string <strong>“FLAMES”</strong> in the following manner</p>
<pre><code>F L A M E S
1 2 3 4 5 6
7
(Here the count 7 ends at F ,so strike F)
</code></pre>
<p>you will get</p>
<pre><code>$ L A M E S
</code></pre>
<p>(Again start your count from immediate next letter (it should not already be hit out) if it is the last letter (“S”) then start from first letter “F” if ‘F” is not already hit out.</p>
<pre><code> $ L A M E S
(igonre) 1 2 3 4 5
(ignore) 6 7
</code></pre>
<p><strong>During counting never consider hit out letters.</strong> </p>
<pre><code>$ L $ M E S
1 2 3
ignore 4 ignore 5 6 7
</code></pre>
<p>"s" will be hit out.</p>
<pre><code>$ L $ M E $
ignore 1 ignore 2 3
4 ignore 5 6
7
</code></pre>
<p>"L" will be hit out</p>
<pre><code>$ $ $ M E $
ignore 1 2 ignore
ignore ignore ignore 3 4 ignore
5 6
7
</code></pre>
<p>Finally "M" will be hit out. Then only remaining letter is "E" So albert is enemy to herbana.</p>
<p><strong>Update :</strong>
Lettter "r" is also common in both names.I forgor to hit it out.Anyhow the process is same as explained.Thanks for pointing it out.</p>
http://stackoverflow.com/questions/1528078/i-have-installed-rational-clearquest-designer-7-1-when-income-can-not-be-display0I have installed Rational ClearQuest Designer 7.1, when income can not be displayed clearQuestWeb patterns changed in ClearQuest Designer ... [closed]Alberto Rojas2009-10-06T21:00:38Z2009-10-06T21:51:16Z
<p>I have installed Rational ClearQuest Designer 7.1, when income can not be displayed clearQuestWeb patterns changed in ClearQuest Designer ...</p>
http://stackoverflow.com/questions/1484036/xmi-metadata-interchange-uml0xmi metadata interchange/umljarope2009-09-27T17:37:18Z2009-09-27T18:07:51Z
<p>One of the purposes for XMI (XML Metadata Interchange) is to allow and easy interchange of metadata between UML modeling tools and MOF- based metadata repositories in distributed heterogeneous environments. Although XMI standard has been designed for the above mentioned purpose, it has been largely ineffective in the interchange of UML 2.x models. This ineffectiveness is due to two major reasons:</p>
<ol>
<li><p>XMI 2.x is large and complex in its own right, since it attempts to solve a technical problem that is more ambitious than exchanging UML 2.x models (omg.org, 2008). Particularly, it tries to provide a mechanism to facilitate the exchange of any arbitrary modelling language defined by the OMG’s Meta-Object Facility.</p></li>
<li><p>The second reason is that the UML 2.x diagram interchange specification lacks adequate information and details to carry out a reliable interchange of UML 2.x notations between the modeling tools. This is a major setback especially for modelers who won’t want to redraw their diagrams, since UML is already a visual modeling language.</p></li>
</ol>
http://stackoverflow.com/questions/1413125/network-programming0Network programming [closed]van 2009-09-11T20:34:27Z2009-09-11T20:46:12Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1407744/network-programming">Network Programming</a> </p>
</blockquote>
<p>I am developing a network game and I want a move made by another player to appear to others players, basically whatever happens on another players screen must be shown to others also.
I want to know what would be the easiest way to do this and how?</p>
<p>Its a card playing game, so when a player clicks or move a card that must be broadcast to all other players engaged in that game</p>
http://stackoverflow.com/questions/1394048/aspsilverlight-3asp:silverlightmeliksahdeniz2009-09-08T13:30:50Z2009-09-08T13:37:48Z
<p>While using </p>
<pre><code><asp:Silverlight ID="Xaml1" runat="server"/>
</code></pre>
<p>an error occurs. What can we do?</p>
http://stackoverflow.com/questions/1392954/about-project-topic-5about project topic [closed]vaishali2009-09-08T09:27:48Z2009-09-08T09:31:26Z
<p>i want project topic based on mobile using anroid which will be completed within 1 month</p>
http://stackoverflow.com/questions/1310295/sql-server-2005-1sql server 2005vigna hari karthik 2009-08-21T06:11:31Z2009-09-08T01:16:17Z
<p>hi friends </p>
<p>I have to update the primary key. When i am inserting in a data grid it newly inserting a record. I am unable to. What is the reason, pls help me.</p>
http://stackoverflow.com/questions/1361351/hi-dear-programers-6Hi dear programers [closed]omaid2009-09-01T08:58:24Z2009-09-01T11:13:23Z
<p>how can i put my c function into c laibrary .
please give me by compleate details answer becuse i am new with c .
thanks </p>
http://stackoverflow.com/questions/1129613/rebol-how-to-write-source-to-the-clipboard0Rebol: how to write source to the clipboard ?reboltutorial2009-07-15T05:52:40Z2009-08-26T06:42:05Z
<pre><code>f: func[][]
write clipboard:// source f
</code></pre>
<p>doesn't seem to please rebol :)</p>
http://stackoverflow.com/questions/1321606/java-web-service-operation0Java Web Service operationAjay2009-08-24T10:33:44Z2009-08-24T11:54:41Z
<p>I have a set of statements to be executed repeatedly every time a web method is called with a new service.I tried writing in the constructor but, the constructor gets invoked only once when the server starts. Instead, I need the set of stmts to be executed each time a Service is created at the client.</p>
http://stackoverflow.com/questions/1038002/how-to-convert-cidr-to-network-and-ip-address-range-in-c0How to convert CIDR to network and IP address range in C#? Kurt2009-06-24T12:16:19Z2009-08-22T19:45:31Z
<p>I have been looking around quite a bit to find some C# code to convert a network in CIDR notation (72.20.10.0/24) to an IP address range, without much luck. There are some threads about CIDR on stackoverlow, but none seems to have any C# code and cover exactly what I need. So I decided to cook it myself, and I did not want the code to rely on System.Net for any conversions in this version. </p>
<p>Perhaps it may be of help to someone. </p>
<p>References: </p>
<p><a href="http://stackoverflow.com/questions/218604/whats-the-best-way-to-convert-from-network-bitcount-to-netmask">http://stackoverflow.com/questions/218604/whats-the-best-way-to-convert-from-network-bitcount-to-netmask</a></p>
<p>"Whatmask" C code from <a href="http://www.laffeycomputer.com/whatmask.html" rel="nofollow">http://www.laffeycomputer.com/whatmask.html</a></p>
<p>Usage: </p>
<pre><code>uint startIP, endIP;
Network2IpRange("72.20.10.0/24", out startIP, out endIP);
</code></pre>
<p>The code assumes 32 bits for everything. </p>
<pre><code> static void Network2IpRange(string sNetwork, out uint startIP, out uint endIP)
{
uint ip, /* ip address */
mask, /* subnet mask */
broadcast, /* Broadcast address */
network; /* Network address */
int bits;
string[] elements = sNetwork.Split(new Char[] { '/' });
ip = IP2Int(elements[0]);
bits = Convert.ToInt32(elements[1]);
mask = ~(0xffffffff >> bits);
network = ip & mask;
broadcast = network + ~mask;
usableIps = (bits >30)?0:(broadcast - network - 1);
if (usableIps <= 0)
{
startIP = endIP = 0;
}
else
{
startIP = network + 1;
endIP = broadcast - 1;
}
}
public static uint IP2Int(string IPNumber)
{
uint ip = 0;
string[] elements = IPNumber.Split(new Char[] { '.' });
if (elements.Length==4)
{
ip = Convert.ToUInt32(elements[0])<<24;
ip += Convert.ToUInt32(elements[1])<<16;
ip += Convert.ToUInt32(elements[2])<<8;
ip += Convert.ToUInt32(elements[3]);
}
return ip;
}
</code></pre>
<p>Feel free to submit your improvements. </p>
http://stackoverflow.com/questions/1298871/jsp-hosting-on-google-app-engine0JSP hosting on Google App Engine?cdb2009-08-19T09:56:40Z2009-08-19T19:26:32Z
<p>Any body hosted JSP in GoogleAppEngine...
I Expect the user experiences from GoogleAppEngine</p>
<p>Is it easy to maintain JSP/Servlet .
I have used another free webhosting service.But it wasnt nice to manage and use.</p>
http://stackoverflow.com/questions/268119/whats-the-worst-piece-of-code-you-have-come-across0Whats the worst piece of code you have come across? [closed]Bijington2008-11-06T09:52:21Z2009-08-05T18:28:36Z
<p>Whether you came across someone elses code, or simply looked back at your own code and thought why the hell did i do that?</p>
http://stackoverflow.com/questions/1199271/php-soap-problem-1Php soap problemrajaneesh2009-07-29T10:29:35Z2009-07-29T12:27:52Z
<p>simple soap program in php where i can send user name and password to soap server and it return Boolean value </p>
http://stackoverflow.com/questions/1176260/difference-between-ms-live-search-and-ms-map-point-service0difference between ms live search AND ms map point servicehrishi2009-07-24T07:40:15Z2009-07-24T08:15:37Z
<p>difference between ms live search AND ms map point service</p>
http://stackoverflow.com/questions/1140620/calculating-svg-paths1Calculating SVG pathsvdh_ant2009-07-16T22:13:08Z2009-07-16T23:35:15Z
<p>Hi guys</p>
<p>I have a quite complex image map (made up of over 150 pieces) and I want to convert the coords within the map to SVG path standard format.</p>
<p>The reason why is I want to use the following instead of an image map <a href="http://raphaeljs.com/australia.html" rel="nofollow">http://raphaeljs.com/australia.html</a>. But I need the coords to be in SVG path standard format.</p>
<p>How can I convert an image map to SVG coordinates?</p>
<p>Cheers Anthony</p>
http://stackoverflow.com/questions/1102091/redirecting-to-a-page0redirecting to a pageha221092009-07-09T06:11:40Z2009-07-09T09:52:26Z
<p>I am facing a problem .I want to give a link in my change form that will redirect to a page which may be simple php page also or any page ,in that page i want to perform some db queries and display them.I also wan to pass id on click.Is it posssible.</p>
<p>in my view.py </p>
<p>i wrote:</p>
<p>from django.shortcuts import render_to_response</p>
<p>from django.template import RequestContext</p>
<p>def MyClass(self,id,request):</p>
<pre><code>return render_to_response('admin/custom_change_form.html')#my template location
</code></pre>
<p>my model and admin files are simple</p>
http://stackoverflow.com/questions/1086910/happy-ole-40-000-day0Happy OLE 40,000 day! [closed]Ian Boyd2009-07-06T13:20:06Z2009-07-06T13:22:43Z
<p>Today is day number 40,000 in the Ole/Com world:</p>
<pre><code>DateTime.Today.ToOADate() = 40,000
</code></pre>
<p>Happy 40,000 day!</p>
<p><hr /></p>
<p><strong>Edit:</strong> SQL Server's is Wednesday July 8, 2009</p>