User Amr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T04:26:12Zhttp://stackoverflow.com/feeds/user/463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1521599/how-to-submit-bugs-to-bugtracker-net-from-c-application/1527745#15277450Answer by Amr for How to submit bugs to BugTracker.NET from C# application?Amr2009-10-06T19:57:02Z2009-10-06T19:57:02Z<p>Thank you all for your answers. Using your answers and other resources on the web, I've put together a method for submitting a new bug to BugTracker.NET <br />
The method returns a boolean value indicating success or failure and it displays a message to the user with the status.<br />
This behavior could be changed to match your needs.
The method uses POST method to submit bugs which helps to submit any long text in the comment (I've tried to submit the content of a log file in the comments and it worked). <br /></p>
<p>Here's the code:</p>
<pre><code>public bool SubmitBugToBugTracker(string serverName,
bool useProxy,
string proxyHost,
int proxyPort,
string userName,
string password,
string description,
string comment,
int projectId)
{
if (!serverName.EndsWith(@"/"))
{
serverName += @"/";
}
string requestUrl = serverName + "insert_bug.aspx";
string requestMethod = "POST";
string requestContentType = "application/x-www-form-urlencoded";
string requestParameters = "username=" + userName
+ "&password=" + password
+ "&short_desc=" + description
+ "&comment=" + comment
+ "&projectid=" + projectId;
// POST parameters (postvars)
byte[] buffer = Encoding.ASCII.GetBytes(requestParameters);
// Initialisation
HttpWebRequest WebReq = (HttpWebRequest)WebRequest.Create(requestUrl);
// Add proxy info if used.
if (useProxy)
{
WebReq.Proxy = new WebProxy(proxyHost, proxyPort);
}
// Method is POST
WebReq.Method = requestMethod;
// ContentType, for the postvars.
WebReq.ContentType = requestContentType;
// Length of the buffer (postvars) is used as contentlength.
WebReq.ContentLength = buffer.Length;
// Open a stream for writing the postvars
Stream PostData = WebReq.GetRequestStream();
//Now we write, and afterwards, we close. Closing is always important!
PostData.Write(buffer, 0, buffer.Length);
PostData.Close();
// Get the response handle, we have no true response yet!
HttpWebResponse WebResp = (HttpWebResponse)WebReq.GetResponse();
// Read the response (the string)
Stream Answer = WebResp.GetResponseStream();
StreamReader _Answer = new StreamReader(Answer);
string responseStream = _Answer.ReadToEnd();
// Find out if bug submission was successfull.
if (responseStream.StartsWith("OK:"))
{
MessageBox.Show("Bug submitted successfully.");
return true;
}
else if (responseStream.StartsWith("ERROR:"))
{
MessageBox.Show("Error occured. Bug hasn't been submitted.\nError Message: " + responseStream);
return false;
}
else
{
MessageBox.Show("Error occured. Bug hasn't been submitted.\nError Message: " + responseStream);
return false;
}
}
</code></pre>
http://stackoverflow.com/questions/1521599/how-to-submit-bugs-to-bugtracker-net-from-c-application1How to submit bugs to BugTracker.NET from C# application?Amr2009-10-05T18:17:43Z2009-10-06T19:57:02Z
<p>Reading the documentation page of BugTracker.NET <br />
<a href="http://ifdefined.com/doc%5Fbug%5Ftracker%5Fprogrammers.html#api" rel="nofollow">BugTracker.NET API Documentation</a>
I realized that I need to use GET or POST which, I have to admit, I'm not very good at. I was wondering:</p>
<ul>
<li>Is there a library that could be used to easily submit bugs to BugTracker.NET from a C# application (or VB.NET) ? <br />
Or, <br /></li>
<li>If there's no library. How can use GET or POST to submit bugs to BugTracker.NET ?</li>
</ul>
http://stackoverflow.com/questions/1304591/how-to-find-if-app-has-been-installed-before0How to find if app has been installed before?Amr2009-08-20T07:44:36Z2009-08-20T08:06:37Z
<p>Is it possible for a .NET application to leave a trace so that it can be found if the application is re-installed?
Of course, a trace that is difficult to be removed.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1283508#12835081Answer by Amr for What is your best programmer joke?Amr2009-08-16T05:26:22Z2009-08-16T05:26:22Z<p>A developer finds out that his wife is pregnant so he gives his child-to-be a codename.</p>
http://stackoverflow.com/questions/783155/using-extension-methods-with-net-framework-2-04Using Extension Methods with .NET Framework 2.0Amr2009-04-23T19:15:50Z2009-04-23T19:26:55Z
<p>Under Visual Studio 2008 <br/>
Can I create an Extension Method to work under a .NET Framework 2.0 project? </p>
http://stackoverflow.com/questions/621266/continue-in-while-inside-foreach0Continue in while inside foreachAmr2009-03-07T03:50:46Z2009-03-07T11:12:04Z
<p>In the following C# code snippet<br />
I have a '<code>while</code>' loop inside a '<code>foreach</code>' loop and I wish to jump to the next item in '<code>foreach</code>' when a certain condition occurs.</p>
<pre><code>foreach (string objectName in this.ObjectNames)
{
// Line to jump to when this.MoveToNextObject is true.
this.ExecuteSomeCode();
while (this.boolValue)
{
// 'continue' would jump to here.
this.ExecuteSomeMoreCode();
if (this.MoveToNextObject())
{
// What should go here to jump to next object.
}
this.ExecuteEvenMoreCode();
this.boolValue = this.ResumeWhileLoop();
}
this.ExecuteSomeOtherCode();
}
</code></pre>
<p>'<code>continue</code>' would jump to the beginning of the '<code>while</code>' loop not the '<code>foreach</code>' loop.
Is there's a keyword to use here, or should I just use goto which I don't really like.</p>
http://stackoverflow.com/questions/621265/net-2-0-application-settings-user-config-file-location/621295#6212951Answer by Amr for .NET 2.0 Application Settings (user.config) file locationAmr2009-03-07T04:18:31Z2009-03-07T04:18:31Z<p>The user.config file is stored at <br/></p>
<p><code>
c:\Documents and Settings>\<username>\[Local Settings\]Application Data\<companyname>\<appdomainname>_<eid>_<hash>\<verison>
</code></p>
<p><code><c:\Documents and Settings></code> is the user data directory, either non-roaming (Local Settings above) or roaming.<br/>
<code><username></code> is the user name.<br/>
<code><companyname></code> is the CompanyNameAttribute value, if available. Otherwise, ignore this element.<br/>
<code><appdomainname></code> is the AppDomain.CurrentDomain.FriendlyName. This usually defaults to the .exe name.<br/>
<code><eid></code> is the URL, StrongName, or Path, based on the evidence available to hash.<br/>
<code><hash></code> is a SHA1 hash of evidence gathered from the CurrentDomain, in the following order of preference:<br/>
1. StrongName<br/>
2. URL:<br/>
If neither of these is available, use the .exe path.<br/>
<code><version></code> is the AssemblyInfo's AssemblyVersionAttribute setting.<br/>
<br/>
Full description is here <a href="http://msdn.microsoft.com/en-us/library/ms379611.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms379611.aspx</a></p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/11387#1138728Answer by Amr for Keyboard for programmersAmr2008-08-14T17:28:11Z2009-02-02T15:34:35Z<p>You gotta try my <a href="http://www.logitech.com/index.cfm/keyboards/keyboard/devices/3071&cl=au,en" rel="nofollow">Logitech Wave</a></p>
<p><img src="http://stackpointer.org/blog/wp-content/uploads/2008/05/logitech-wave.jpg"></p>
<p>either corded or cordless. It's really great.</p>
http://stackoverflow.com/questions/5606/license-models4License ModelsAmr2008-08-08T03:03:46Z2008-09-17T02:38:03Z
<p>Pretty much all my career, I worked with building solutions (customized applications for a single customer). Now that my company is going in developing software for the masses, a lot of packaging is waiting for us.<br>
I wanna ask about licensing software. How to generate serial numbers and activation numbers. What are my options for licensing software in general.<br>
I realize that it's sort of a general question but it's a conversation starter.<br></p>
http://stackoverflow.com/questions/13830/what-is-the-best-free-iso-mounting-software/14096#140960Answer by Amr for What is the best free ISO mounting software?Amr2008-08-18T01:59:48Z2008-08-18T01:59:48Z<p>I like <a href="http://www.daemon-tools.cc/" rel="nofollow">Daemon</a></p>
http://stackoverflow.com/questions/6365/why-are-msdn-subscriptions-less-expensive-in-the-us/6385#63850Answer by Amr for Why are MSDN subscriptions less expensive in the US?Amr2008-08-08T21:06:14Z2008-08-08T21:06:14Z<blockquote>
<p>Taxes, import duties, different
perception of market value, exchange
rate fluctuations </p>
</blockquote>
<p><br>
Also, Distributor.<br>
We're using <a href="http://www.esri.com" rel="nofollow">ArcGIS</a> which is a GIS software. Here in Canada it costs 40% than it costs in the US mostly because you can only buy through the distributor.</p>http://stackoverflow.com/questions/5562/do-you-prefer-to-code-on-a-laptop-or-a-desktop-or-both/5586#55861Answer by Amr for Do you prefer to code on a Laptop or a Desktop, or both ?Amr2008-08-08T02:20:26Z2008-08-08T02:20:26Z<p>Desktop.<br>
Coding isn't just about coding. it's also research, trying something, running a virtual machine to see how it works on XP when you're running Vista. A laptop can't do that.<br>
You need large screen, laptop can't do that<br>
Laptops are about portability more than performance. Portability isn't an issue really when you're coding unless you prefer to write code in the park or on a bus.</p>http://stackoverflow.com/questions/5507/does-it-still-make-sense-to-learn-low-level-winapi-programming/5573#55731Answer by Amr for Does it still make sense to learn low level WinAPI programming?Amr2008-08-08T01:56:33Z2008-08-08T01:56:33Z<p>Learning a new programming language or technology is for one of three reasons:<br>
1. Need: you're starting a project for building a web application and you don't know anything about ASP.NET<br>
2. Enthusiasm: you're very excited about ASP.NET MVC. why not try that?<br>
3. Free time: but who has that anyway.</p>
<p>The best reason to learn something new is Need. If you need to do something that the .NET framework can't do (like performance for example) then WinAPI is your solution. Until then we keep ourself busy with learning about .NET</p>http://stackoverflow.com/questions/5527/is-there-a-real-benefit-of-using-j/5536#55364Answer by Amr for Is there a real benefit of using J#?Amr2008-08-08T01:19:01Z2008-08-08T01:19:01Z<p>The whole purpose of J# is to ease the transition of Java developers to the .NET environment which didn't work so well (I guessing here) so Microsoft dropped J# from Visual Studio 2008.
For your question, "Is there a real benefit of using J#?"..
in a nutshell... No..</p>http://stackoverflow.com/questions/1304591/how-to-find-if-app-has-been-installed-before/1304609#1304609Comment by Amr on How to find if app has been installed before?Amr2009-08-20T08:19:45Z2009-08-20T08:19:45ZYes, this is for trial purposes which is why I want it to be something that is harder to be removed.http://stackoverflow.com/questions/1304591/how-to-find-if-app-has-been-installed-before/1304598#1304598Comment by Amr on How to find if app has been installed before?Amr2009-08-20T08:18:40Z2009-08-20T08:18:40ZI'm trying to prevent the application from being re-installed which would renew its trial period.http://stackoverflow.com/questions/621266/continue-in-while-inside-foreach/621273#621273Comment by Amr on Continue in while inside foreachAmr2009-03-07T04:24:31Z2009-03-07T04:24:31ZI'm sorry the code snippet that I first added isn't very accurate. There's more code to skip. Using break won't help.
I've updated the code snippet to be more accurate.