User hangy - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-05T21:23:01Z
http://stackoverflow.com/feeds/user/11963
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/259524/problem-using-linq-to-sql-with-one-datacontext-per-atomic-action
1
Problem using LINQ to SQL with one DataContext per atomic action
hangy
2008-11-03T18:32:18Z
2009-09-03T23:28:18Z
<p>I have started using Linq to SQL in a (bit DDD like) system which looks (overly simplified) like this:</p>
<pre><code>public class SomeEntity // Imagine this is a fully mapped linq2sql class.
{
public Guid SomeEntityId { get; set; }
public AnotherEntity Relation { get; set; }
}
public class AnotherEntity // Imagine this is a fully mapped linq2sql class.
{
public Guid AnotherEntityId { get; set; }
}
public interface IRepository<TId, TEntity>
{
Entity Get(TId id);
}
public class SomeEntityRepository : IRepository<Guid, SomeEntity>
{
public SomeEntity Get(Guid id)
{
SomeEntity someEntity = null;
using (DataContext context = new DataContext())
{
someEntity = (
from e in context.SomeEntity
where e.SomeEntityId == id
select e).SingleOrDefault<SomeEntity>();
}
return someEntity;
}
}
</code></pre>
<p>Now, I got a problem. When I try to use SomeEntityRepository like this</p>
<pre><code>public static class Program
{
public static void Main(string[] args)
{
IRepository<Guid, SomeEntity> someEntityRepository = new SomeEntityRepository();
SomeEntity someEntity = someEntityRepository.Get(new Guid("98011F24-6A3D-4f42-8567-4BEF07117F59"));
Console.WriteLine(someEntity.SomeEntityId);
Console.WriteLine(someEntity.Relation.AnotherEntityId);
}
}
</code></pre>
<p>everything works nicely until the program gets to the last WriteLine, because it throws an <code>ObjectDisposedException</code>, because the DataContext does not exist any more.</p>
<p>I do see the actual problem, but how do I solve this? I guess there are several solutions, but none of those I have thought of to date would be good in my situation.</p>
<ul>
<li>Get away from the repository pattern and using a new DataContext for each atomic part of work.
<ul>
<li>I really would not want to do this. A reason is that I do not want to be the applications to be aware of the repository. Another one is that I do not think making linq2sql stuff COM visible would be good.</li>
<li>Also, I think that doing <code>context.SubmitChanges()</code> would probably commit much more than I intended to.</li>
</ul></li>
<li>Specifying DataLoadOptions to fetch related elements.
<ul>
<li>As I want my Business Logic Layer to just reply with some entities in some cases, I do not know which sub-properties they need to use.</li>
</ul></li>
<li>Disabling lazy loading/delayed loading for all properties.
<ul>
<li>Not an option, because there are quite a few tables and they are heavily linked. This could cause a lot of unnecessary traffic and database load.</li>
</ul></li>
<li>Some post on the internet said that using .Single() should help.
<ul>
<li>Apparently it does not ...</li>
</ul></li>
</ul>
<p>Is there any way to solve this misery?</p>
<p>BTW: We decided to use Linq t0 SQL because it is a relatively lightweight ORM solution and included with the .NET framework and Visual Studio. If the .NET Entity Framework would fit better in this pattern, it may be an option to switch to it. (We are not that far in the implementation, yet.)</p>
http://stackoverflow.com/questions/1073338/xml-comments-in-resources-designer-cs
2
XML comments in Resources.Designer.cs?
hangy
2009-07-02T09:15:15Z
2009-07-14T04:08:41Z
<p>In my Visual Studio 2008 project, I have this project with Resources.resx which contains images and strings. In order to force myself and everyone else to write <em>at least</em> the XML comments, I enabled the generation of XML comments in the build tab of the project's property. Now Visual Studio gives me some warnings if there are undocumented classes, methods, … which is great!</p>
<p>However, all of the images in the automatically generated Resources.Designer.cs do not have any XML comments (while the strings do), so I get several compiler warnings of missing XML comments which I actually cannot do anything about, because changes to that file would probably overwritten anyways.</p>
<p>Is there any chance to either</p>
<ul>
<li>tell the compiler to ignore XML comments in designer generated code, or</li>
<li>force Visual Studio 2008 to write the resource comment into the generated code?</li>
</ul>
<p>Thanks for any hint!</p>
http://stackoverflow.com/questions/352703/integrating-hudson-with-ms-test
4
Integrating Hudson with MS Test?
hangy
2008-12-09T13:30:36Z
2009-07-06T17:42:27Z
<p>Is it possible to integrate <a href="http://hudson.dev.java.net/" rel="nofollow" title="hudson: an extensible continuous integration engine">Hudson</a> with MS Test?</p>
<p>I am setting up a smaller CI server on my development machine with Hudson right now, just so that I can have some statistics (ie. <a href="http://blogs.msdn.com/fxcop/" rel="nofollow" title="Code Analysis Team Blog">FxCop</a> and compiler warnings). Of course, it would also be nice if it could just run my unit tests and present their output.</p>
<p>Up to now, I have added the following batch task to Hudson, which makes it run the tests properly.</p>
<pre><code>"%PROGRAMFILES%\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe" /runconfig:LocalTestRun.testrunconfig /testcontainer:Tests\bin\Debug\Tests.dll
</code></pre>
<p>However, as far as I know, Hudson does not support analysis of MS Test results, yet. Does anyone know whether the TRX files generated by <code>MSTest.exe</code> can be transformed to the <a href="http://www.junit.org/" rel="nofollow">JUnit</a> or <a href="http://www.nunit.org/" rel="nofollow">NUnit</a> result format (because those are supported by Hudson), or whether there is any other way to integrate MS Test unit tests with Hudson?</p>
http://stackoverflow.com/questions/1074240/system-text-stringbuilder-limit/1074405#1074405
3
Answer by hangy for System.Text.StringBuilder limit
hangy
2009-07-02T13:41:04Z
2009-07-02T13:41:04Z
<p>This C# code</p>
<pre><code>using System.Text;
internal class Program
{
internal static void Main(string[] args)
{
StringBuilder test = new StringBuilder("ABCDEFGHIJKLMNOP", 16);
test.Append("ABC");
StringBuilder test2 = new StringBuilder("ABCDEFGHIJKLMNOP", 32);
test2.Append("ABC");
}
}
</code></pre>
<p>produces the following IL (according to Reflector):</p>
<pre><code>.class private auto ansi beforefieldinit Program
extends [mscorlib]System.Object
{
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed
{
.maxstack 8
L_0000: ldarg.0
L_0001: call instance void [mscorlib]System.Object::.ctor()
L_0006: ret
}
.method assembly hidebysig static void Main(string[] args) cil managed
{
.entrypoint
.maxstack 3
.locals init (
[0] class [mscorlib]System.Text.StringBuilder test,
[1] class [mscorlib]System.Text.StringBuilder test2)
L_0000: nop
L_0001: ldstr "ABCDEFGHIJKLMNOP"
L_0006: ldc.i4.s 0x10
L_0008: newobj instance void [mscorlib]System.Text.StringBuilder::.ctor(string, int32)
L_000d: stloc.0
L_000e: ldloc.0
L_000f: ldstr "ABC"
L_0014: callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
L_0019: pop
L_001a: ldstr "ABCDEFGHIJKLMNOP"
L_001f: ldc.i4.s 0x20
L_0021: newobj instance void [mscorlib]System.Text.StringBuilder::.ctor(string, int32)
L_0026: stloc.1
L_0027: ldloc.1
L_0028: ldstr "ABC"
L_002d: callvirt instance class [mscorlib]System.Text.StringBuilder [mscorlib]System.Text.StringBuilder::Append(string)
L_0032: pop
L_0033: ret
}
}
</code></pre>
<p>So here, <code>0x10</code> and <code>0x20</code> are used to initalize <code>test</code> and <code>test2</code>, which means you probably looked at the wrong IL in your test?</p>
http://stackoverflow.com/questions/1033201/mysql-match-brand-of-item-that-you-dont-know-brand-of/1033218#1033218
3
Answer by hangy for MySQL match brand of item that you dont know brand of?
hangy
2009-06-23T15:15:53Z
2009-06-23T15:15:53Z
<p>If I understood you correctly, using a subselect might be the easiest way to solve that problem.</p>
<pre><code>SELECT * FROM mytable WHERE brand = (SELECT brand FROM mytable WHERE id = 300 );
</code></pre>
http://stackoverflow.com/questions/194147/are-there-good-reasons-not-to-use-an-orm
16
Are there good reasons not to use an ORM?
hangy
2008-10-11T14:43:03Z
2009-05-20T03:36:40Z
<p>During my apprenticeship, I have used <a href="http://nhibernate.org/" rel="nofollow" title="NHibernate for .NET">NHibernate</a> for some smaller projects which I mostly coded and designed on my own. Now, before starting some bigger project, the discussion arose how to design data access and whether or not to use an ORM layer. As I am still in my apprenticeship and still consider myself a beginner in enterprise programming, I did not really try to push in my opinion, which is that using an object relational mapper to the database can ease development quite a lot. The other coders in the development team are much more experienced than me, so I think I will just do what they say. :-)</p>
<p>However, I do not completely understand two of the main reasons for not using NHibernate or a similar project:</p>
<ol>
<li>One can just build one’s own data access objects with SQL queries and copy those queries out of Microsoft SQL Server Management Studio.</li>
<li>Debugging an ORM can be hard.</li>
</ol>
<p>So, of course I could just build my data access layer with a lot of <code>SELECT</code>s etc, but here I miss the advantage of automatic joins, lazy-loading proxy classes and a lower maintenance effort if a table gets a new column or a column gets renamed. (Updating numerous <code>SELECT</code>, <code>INSERT</code> and <code>UPDATE</code> queries vs. updating the mapping config and possibly refactoring the business classes and DTOs.)</p>
<p>Also, using NHibernate you can run into unforeseen problems if you do not know the framework very well. That could be, for example, trusting the Table.hbm.xml where you set a string’s length to be automatically validated. However, I can also imagine similar bugs in a “simple” SqlConnection query based data access layer.</p>
<p>Finally, are those arguments mentioned above really a good reason not to utilise an ORM for a non-trivial database based enterprise application? Are there probably other arguments they/I might have missed?</p>
<p>(I should probably add that I think this is like the first “big” .NET/C# based application which will require teamwork. Good practices, which are seen as pretty normal on Stack Overflow, such as unit testing or continuous integration, are non-existing here up to now.)</p>
http://stackoverflow.com/questions/214998/dynamically-bind-data-to-dropdownlist-in-asp-net-mvc/215023#215023
7
Answer by hangy for Dynamically bind data to dropdownlist in asp.net mvc
hangy
2008-10-18T13:12:40Z
2009-05-04T12:04:35Z
<p>Just pass the correct IEnumerable as the typed model or ViewData. Try something like this (out of my head):</p>
<pre><code><%= Html.DropDownList(string.Empty,
"myDropDownList",
new SelectList((IEnumerable)ViewData["stuff"],
"DescriptionProperty",
"ValueProperty"))
%>
</code></pre>
<p>With that drop down list helper in MVC, you do not really "bind" data to it in the way it is done in the old ASP.NET.</p>
http://stackoverflow.com/questions/323419/simple-script-to-count-nloc/365745#365745
0
Answer by hangy for Simple script to count NLOC?
hangy
2008-12-13T21:13:39Z
2008-12-13T21:13:39Z
<p><a href="http://www.dwheeler.com/sloccount/" rel="nofollow">SLOCCOunt</a> is not a simple script and does much more than what you need. However, it is a powerful alternative to the already mentioned Ohcount and NLOC. :)</p>
http://stackoverflow.com/questions/359122/dependency-injection-alternatives/359246#359246
1
Answer by hangy for dependency injection alternatives
hangy
2008-12-11T12:55:31Z
2008-12-11T12:55:31Z
<p>If you really do not like injecting this instance in the constructor, you might try to use the <a href="http://www.codeplex.com/CommonServiceLocator" rel="nofollow">CommonServiceLocator</a> with your favourite compatible .NET depedency injection framework. This would allow you to write code like this:</p>
<pre><code>public class BusinessProducts
{
IDataContext _dx;
BusinessProducts()
{
_dx = Microsoft.Practices.ServiceLocation.ServiceLocator.Current.GetInstance<IDataContext>();
}
public List<Product> GetProducts()
{
return dx.GetProducts();
}
}
</code></pre>
<p>However, please beware that this is not what most people would expect when they know that you use a dependency injection framework. I think that it is much more common to use a dependency injection framework and letting it create all objects for you.</p>
<pre><code>BusinessProducts bp = Microsoft.Practices.ServiceLocation.ServiceLocator.Current.GetInstance<BusinessProducts>();
</code></pre>
<p>If you would like to avoid the dependeny injection framework path, using a factory is probably the best way to go.</p>
http://stackoverflow.com/questions/353110/exclude-complete-namespace-from-fxcop-code-analysis
5
Exclude complete namespace from FxCop code analysis?
hangy
2008-12-09T15:26:28Z
2008-12-09T15:34:54Z
<p>Is it possible to exclude a complete namespace from all FxCop analysis while still analyzing the rest of the assembly using the <code>SuppressMessageAttribute</code>?</p>
<p>In my current case, I have a bunch of classes generated by LINQ to SQL which cause a lot of FxCop issues, and obviously, I will not modify all of those to match FxCop standards, as a lot of those modifications would be gone if I re-generated the classes.</p>
<p>I know that FxCop has a project option to suppress analysis on generated code, but it does not seem to recognize the entity and context classes created by LINQ 2 SQL as generated code.</p>
http://stackoverflow.com/questions/344789/php-and-pear/344868#344868
1
Answer by hangy for PHP and PEAR
hangy
2008-12-05T19:28:20Z
2008-12-05T19:28:20Z
<p>The <a href="http://pear.php.net/distributions/manual/pear_manual_en.html.gz" rel="nofollow" title="PEAR Manual">PEAR Manual</a> has a quite extensive list of <a href="http://pear.php.net/distributions/manual/pear_manual_en.html.gz#installation.getting" rel="nofollow" title="Getting the manager">instructions</a> on how to install the PEAR manager on Windows, *NIX and Mac OS X. The manual also has a section on installing <a href="http://pear.php.net/distributions/manual/pear_manual_en.html.gz#AEN1993" rel="nofollow" title="New improved method using PEAR 1.4.3+ and PEAR_RemoteInstaller">PEAR remotely</a>, for example using FTP. Following those instructions, you should be able to install PEAR (nearly) anywhere. :)</p>
http://stackoverflow.com/questions/335863/files-used-by-mount/336818#336818
0
Answer by hangy for Files used by mount
hangy
2008-12-03T10:59:37Z
2008-12-03T10:59:37Z
<p>This seems like a dupe of <a href="http://stackoverflow.com/questions/32230/">Tracking down where disk space has gone on Linux?</a></p>
http://stackoverflow.com/questions/327885/reasoning-behind-asp-net-mvc-actionresult-being-an-abstract-class
1
Reasoning behind ASP.NET MVC ActionResult being an abstract class?
hangy
2008-11-29T19:25:52Z
2008-12-01T19:10:07Z
<p>In <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a>, the <code>ActionResult</code> class, which is the base for all results returned by action methods from a controller, is defined as an abstract class with the single method (© Microsoft):</p>
<pre><code>public abstract void ExecuteResult(ControllerContext context);
</code></pre>
<p>Can you think of any specific reasons for this design? Specifically, it seems a bit weird to me, that</p>
<ul>
<li>there is no <code>IActionResult</code> interface,</li>
<li>and that the class would not be required at all, if there was such an interface.</li>
</ul>
<p>After all, if this was an interface instead of that abstract class, there would be no need to extend a base class in order to create a new <code>ActionResult</code> - one would just have to implement <code>IActionResult</code> properly. In a world, err language, without multiple inheritance, this advantage would seem quite important to me.</p>
http://stackoverflow.com/questions/201457/how-to-implement-url-pattern-interpreter-as-used-by-django-and-ror-in-php/328095#328095
0
Answer by hangy for How to implement URL pattern interpreter as used by Django and RoR in PHP
hangy
2008-11-29T22:29:06Z
2008-11-29T22:29:06Z
<p>What you are describing in your question should actually be the URL mapper part. For that, you could use a PEAR package called <a href="http://pear.php.net/package/Net_URL_Mapper" rel="nofollow" title="PEAR :: Package :: Net_URL_Mapper">Net_URL_Mapper</a>. For some information on how to use that class, have a look at this <a href="http://cvs.php.net/viewvc.cgi/pear/Net_URL_Mapper/tests/RecognitionTest.php?view=markup" rel="nofollow" title="source code of RecognitionTest.php">unit test</a>.</p>
http://stackoverflow.com/questions/323131/what-is-best-way-to-read-csv-data/323222#323222
1
Answer by hangy for What is best way to read CSV data?
hangy
2008-11-27T08:32:34Z
2008-11-27T08:32:34Z
<p>In case that you need a fast sequential access to the CSV file, the <a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow" title="A Fast CSV Reader">Fast CSV Reader</a> could be an option. I have used it on a project some time ago with great success. It is supposed to be optimized quite well and also provides a cached version, if you need it. Additionally, it was updated several times since it was first released back in 2005 (last update in 2008-10-09) and it supports basic databinding by implementing <code>System.Data.IDataReader</code>.</p>
http://stackoverflow.com/questions/317456/is-there-c-look-alike-for-linux/317460#317460
47
Answer by hangy for Is there C# look-alike for Linux?
hangy
2008-11-25T14:11:50Z
2008-11-25T14:11:50Z
<p>You could actually use C# with <a href="http://www.mono-project.com/" rel="nofollow">Mono</a>.</p>
http://stackoverflow.com/questions/286697/nhibernate-performance-insert/311913#311913
0
Answer by hangy for NHibernate performance insert
hangy
2008-11-22T23:44:20Z
2008-11-22T23:44:20Z
<p>According to <a href="http://groups.google.com/group/nhusers/browse_thread/thread/d4c8fd9625ef5f32/55c7a8db66f62a39" rel="nofollow" title="nhusers: batching update/delete statements">this nhusers post</a>, you seeing 1000 inserts in SQL server should not really matter, because the optimization is done on a different level. If you really have no gain in performance, trying the most recent version of NHibernate might help pointing to the resolution.</p>
http://stackoverflow.com/questions/302277/initialize-object-to-test-in-setup-or-during-the-test-method
2
Initialize object to test in SetUp or during the test method?
hangy
2008-11-19T15:33:59Z
2008-11-19T16:43:29Z
<p>I was wondering whether the object to test should be a field and thus set up during a <code>SetUp</code> method (ie. JUnit, nUnit, MS Test, …).</p>
<p>Consider the following examples (this is C♯ with MsTest, but the idea should be similar for any other language and testing framework):</p>
<pre><code>public class SomeStuff
{
public string Value { get; private set; }
public SomeStuff(string value)
{
this.Value = value;
}
}
[TestClass]
public class SomeStuffTestWithSetUp
{
private string value;
private SomeStuff someStuff;
[TestInitialize]
public void MyTestInitialize()
{
this.value = Guid.NewGuid().ToString();
this.someStuff = new SomeStuff(this.value);
}
[TestCleanup]
public void MyTestCleanup()
{
this.someStuff = null;
this.value = string.Empty;
}
[TestMethod]
public void TestGetValue()
{
Assert.AreEqual(this.value, this.someStuff.Value);
}
}
[TestClass]
public class SomeStuffTestWithoutSetup
{
[TestMethod]
public void TestGetValue()
{
string value = Guid.NewGuid().ToString();
SomeStuff someStuff = new SomeStuff(value);
Assert.AreEqual(value, someStuff.Value);
}
}
</code></pre>
<p>Of course, with just one test method, the first example is much too long, but with more test methods, this could be safe quite some redundant code.</p>
<p>What are the pros and cons of each approach? Are there any “Best Practices”?</p>
http://stackoverflow.com/questions/295161/how-to-avoid-filenotfoundexception-if-net-3-5-is-not-installed
1
How to avoid FileNotFoundException if .NET 3.5 is not installed?
hangy
2008-11-17T09:16:27Z
2008-11-17T09:55:23Z
<p>If you try to launch a .NET 3.5 application on a Windows computer which does not have this version of the .NET framework installed, you get a <code>FileNotFoundException</code> for some system assemblies (for example System.Core 3.5.0.0).</p>
<p>Is it possible to catch this exception and tell the user to upgrade their .NET framework or is it thrown too early to handle it?</p>
http://stackoverflow.com/questions/24675/tactics-for-using-php-in-a-high-load-site/294239#294239
0
Answer by hangy for Tactics for using PHP in a high-load site
hangy
2008-11-16T19:07:47Z
2008-11-16T19:07:47Z
<p>A lot of good answers were given already, but I would like to point you to an alternate opcode cache called <a href="http://xcache.lighttpd.net/" rel="nofollow">XCache</a>. It is created by a lighty contributor.</p>
<p>Also, if you may need load balancing your database server in future, <a href="http://jan.kneschke.de/projects/mysql/mysql-proxy/" rel="nofollow">MySQL Proxy</a> could very well help you to achieve this.</p>
<p>Both of those tools should plug into an existing application quite easily, so this optimization can be done when you need it, without too much hassle.</p>
http://stackoverflow.com/questions/293375/how-important-is-to-not-load-unused-scripts-in-php/293392#293392
8
Answer by hangy for How important is to not load unused scripts in PHP?
hangy
2008-11-16T02:57:00Z
2008-11-16T02:57:00Z
<p>I would always try to give a file, class, and method a <a href="http://en.wikipedia.org/wiki/Single_responsibility_principle" rel="nofollow" title="Single responsibility principle - Wikipedia, the free encyclopedia">single responsibility</a>. Because of that, separating the displaying from the editing code could be a good idea in either case.</p>
<p>As for loading libraries, I believe that the performance loss of including non required libraries could be quite irrelevant in a lot of cases. However, <code>include</code>, <code>require</code>, <code>include_once</code>, and <code>require_once</code> are relatively slow as they (obviously) access the file system. If the libraries you do not use on each occasion are quite big and usually include a lot of different files themselves, removing unnecessary includes could help reducing the time spent there. Nonetheless, this cost could also be reduced drastically by using an efficient caching system.</p>
<p>Given you are on PHP5 and your libraries are nicely split up into classes, you could leverage PHP's <a href="http://php.net/autoload" rel="nofollow" title="PHP: Autoloading - Manual">auto loading functionality</a> which includes required classes as the PHP script needs them. That would pretty effectively avoid a lot of non used code to be included.</p>
<p>Finally, if you make any of those changes which could affect your website's performance, run some benchmarks and profile the gain or loss in performance. That way, you do not run into the risk of doing some possibly cool optimization which just costs too much time to fully implement or even degrades performance.</p>
http://stackoverflow.com/questions/293353/fluent-interfaces-method-chaining/293369#293369
4
Answer by hangy for Fluent Interfaces - Method Chaining
hangy
2008-11-16T02:28:42Z
2008-11-16T02:28:42Z
<p>AFAIK, the term fluent interface does not specify a specific technology or framework, but rather a design pattern. Wikipedia does have an extensive <a href="http://en.wikipedia.org/wiki/Fluent_interface#Examples" rel="nofollow" title="Fluent interface - Wikipedia, the free encyclopedia">example of fluent interfaces in C♯</a>.</p>
<p>In a simple setter method, you do not return <code>void</code> but <code>this</code>. That way, you can chain all of the statements on that object which behave like that. Here is a quick example based on your original question:</p>
<pre><code>public class JohnBuilder
{
private IList<string> languages = new List<string>();
private IList<string> fluentInterfaces = new List<string>();
private string butHow = string.Empty;
public JohnBuilder AddSmartCode(string language)
{
this.languages.Add(language);
return this;
}
public JohnBuilder WithFluentInterface(string fluentInterface)
{
this.fluentInterfaces.Add(fluentInterface);
return this;
}
public JohnBuilder ButHow(string butHow)
{
this.butHow = butHow;
return this;
}
}
public static class MyProgram
{
public static void Main(string[] args)
{
JohnBuilder johnBuilder = new JohnBuilder().AddSmartCode("c#").WithFluentInterface("Please").ButHow("Dunno");
}
}
</code></pre>
http://stackoverflow.com/questions/293224/whats-the-best-way-to-test-a-site-which-displays-differently-depending-on-the-cl/293336#293336
0
Answer by hangy for What's the best way to test a site which displays differently depending on the client location?
hangy
2008-11-16T01:27:53Z
2008-11-16T01:27:53Z
<p>If you want to use geo-ip location to detect a user's language, using a proxy probably is the best way to do so.</p>
<p>There are a lot of lists of open proxies on the web, mostly listed with the countries. Google has quite a lot of <a href="http://www.google.com/search?q=proxy+list" rel="nofollow" title="proxy list">search results</a> on this topic. Of the top results, I have used <a href="http://www.samair.ru/" rel="nofollow" title="SAS: SamAir Security. Proxy lists. Proxy tools.">SamAir</a> to test some stuff before.</p>
<p>Searching for a working open proxy with an acceptable speed in the correct country can be a tedious task. Also keep in mind that you should not use any these proxy servers to submit any sensitive data, because you never know who runs them. This could be a kinda trustworthy ISP (ie. not from GB ;D), a honeypot to collect data, or an illegal open proxy hosted by some trojan.</p>
http://stackoverflow.com/questions/293285/want-to-redirect-all-visitors-except-for-me-htaccess/293294#293294
1
Answer by hangy for Want to redirect all visitors except for me [.htaccess]
hangy
2008-11-16T00:34:42Z
2008-11-16T00:34:42Z
<p>Found this via Google: <a href="http://www.webmasterworld.com/forum92/167.htm" rel="nofollow">.htaccess - Redirect everyone but my IP</a></p>
<p>HTH</p>
http://stackoverflow.com/questions/293215/default-properties-in-vb-net/293225#293225
0
Answer by hangy for Default properties in VB.Net?
hangy
2008-11-15T23:26:09Z
2008-11-15T23:31:51Z
<p>There is a <a href="http://msdn.microsoft.com/library/system.componentmodel.defaultpropertyattribute.aspx" rel="nofollow" title="DefaultPropertyAttribute"><code>DefaultProperty</code></a> attribute so your example should be correct, <em>but</em> this seems to be for components which are used in the Windows Forms desinger.</p>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/293201#293201
23
Answer by hangy for What's Your Biggest Visual Studio 2008 Annoyance?
hangy
2008-11-15T23:09:51Z
2008-11-15T23:09:51Z
<blockquote>
<p>The best part ... ReSharper :)</p>
</blockquote>
<p>This is actually one of the big weaknesses of Visual Studio, I think. As far as I have read on SO, a lot of programmers do not want to code without ReSharper any more - the annoyance is that this <em>addon</em> seems to incorporate a lot of functionality which should actually be <em>core</em> components, and <em>are</em> core components in other IDEs.</p>
<p>Disclaimer: I have not used ReSharper, yet, but SO has several questions dealing with stuff like “How can I do Feature X from Eclipse/Netbeans/… in Visual Studio?”, which can quite often be answered with “Visual Studio cannot do this, get ReSharper”.</p>
http://stackoverflow.com/questions/293096/asp-net-dynamic-data-with-access/293141#293141
1
Answer by hangy for asp.net dynamic data with access
hangy
2008-11-15T22:19:35Z
2008-11-15T22:19:35Z
<p>At first I thought that this should be possible, because .NET generally supports <a href="http://msdn.microsoft.com/library/system.data.odbc.odbcconnectionstringbuilder.aspx" rel="nofollow" title="OdbcConnectionStringBuilder">ODBC</a> and thus connecting to a MS Access database. Linq to SQL and the ADO.NET Entity Framework seem to be the most popular data providers for ASP.NET Dynamic Data. However, there seem to be some issues which require modifications to the data providers in order to make them compatible to EF, and Linq 2 Sql supports MS SQL Server only. Because of that, just MS SQL Server and MS SQL Server Compact seem to <a href="http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4015016" rel="nofollow" title="Entity Framework ODBC support">support</a> EF at this moment. There is one last hope, though. According to <a href="http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4015016" rel="nofollow" title="Entity Framework ODBC support">this post</a> on the Microsoft forums, you could implement your own <a href="http://code.msdn.microsoft.com/EFSampleProvider" rel="nofollow" title="Entity Framework Sample Provider">Entity Framework Provider</a> to support Access or ODBC in general.</p>
http://stackoverflow.com/questions/292887/net-store-datetime-in-sql-in-different-timezone-and-different-locale/293025#293025
0
Answer by hangy for .NET Store DateTime in SQL in different timezone and different locale
hangy
2008-11-15T20:38:07Z
2008-11-15T20:38:07Z
<p>If you just save the <code>DateTime</code> in UTC in the database, this should not be an issue and the following should work IMO.</p>
<pre><code>namespace MyNamespace
{
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Globalization;
using System.Threading;
public sealed class MyProgram
{
private DbConnectionStringBuilder connectionStringBuilder;
public static void Main(string[] args)
{
DbConnectionStringBuilder connectionStringBuilder = new SqlConnectionStringBuilder(args[0]);
MyProgram myProgram = new MyProgram(connectionStringBuilder);
myProgram.Run();
}
public MyProgram(DbConnectionStringBuilder connectionStringBuilder)
{
if (null == connectionStringBuilder)
{
throw new ArgumentNullException("connectionStringBuilder");
}
this.connectionStringBuilder = connectionStringBuilder;
}
public void Run()
{
IList<Guid> guids = new List<Guid>(2);
guids.Add(this.Create(DateTime.Now));
Thread.Sleep(new TimeSpan(0, 0, 5)); // I just want to assure there is a different time in the next row. :)
guids.Add(this.Create(DateTime.UtcNow));
foreach(Guid guid in guids)
{
Console.WriteLine(this.Retrieve(guid));
}
}
private Guid Create(DateTime dateTime)
{
Guid result = Guid.Empty;
if (dateTime.Kind == DateTimeKind.Unspecified)
{
throw new ArgumentException("I cannot work with unspecified DateTimeKinds.", "dateTime");
}
else if (dateTime.Kind == DateTimeKind.Local)
{
dateTime = dateTime.ToUniversalTime();
}
using (IDbConnection connection = new SqlConnection(this.connectionStringBuilder.ConnectionString))
{
using (IDbCommand command = connection.CreateCommand())
{
command.CommandText = "INSERT INTO MyTable (MyUtcDate) OUTPUT INSERTED.Id VALUES (@DateTime)";
IDataParameter parameter = command.CreateParameter();
parameter.ParameterName = "DateTime";
parameter.Value = dateTime;
command.Parameters.Add(parameter);
command.Connection.Open();
result = (Guid)command.ExecuteScalar();
}
}
return result;
}
private string Retrieve(Guid id)
{
string result = string.Empty;
using (IDbConnection connection = new SqlConnection(this.connectionStringBuilder.ConnectionString))
{
using (IDbCommand command = connection.CreateCommand())
{
command.CommandText = "SELECT MyUtcDate FROM MyTable WHERE Id = @Id";
IDataParameter parameter = command.CreateParameter();
parameter.ParameterName = "Id";
parameter.Value = id;
command.Parameters.Add(parameter);
command.Connection.Open();
using (IDataReader dataReader = command.ExecuteReader(CommandBehavior.SingleRow))
{
if (dataReader.Read())
{
DateTime myDate = DateTime.SpecifyKind(dataReader.GetDateTime(dataReader.GetOrdinal("myUtcDate")), DateTimeKind.Utc);
result = string.Format(CultureInfo.CurrentCulture, "{0}: {1}, {2}: {3}", TimeZoneInfo.Utc.StandardName, myDate, TimeZoneInfo.Local.StandardName, myDate.ToLocalTime());
}
}
}
}
return result;
}
}
}
</code></pre>
http://stackoverflow.com/questions/290035/how-do-i-get-a-c-webbrowser-control-to-show-jpeg-files-raw/291839#291839
0
Answer by hangy for How do I get a C# WebBrowser control to show jpeg files (raw)?
hangy
2008-11-15T00:12:40Z
2008-11-15T00:12:40Z
<p>I do not know whether the <code>WebBrowser</code> .NET control supports this, but <a href="http://www.ietf.org/rfc/rfc2397.txt" rel="nofollow" title="RFC2397: The "data" URL scheme">RFC2397</a> defines how to use inline images. Using this and a XHTML snippet created on-the-fly, you could possibly assign the image without the need to write it to a file.</p>
<pre><code>Image someImage = Image.FromFile("mypic.jpg");
// Firstly, get the image as a base64 encoded string
ImageConverter imageConverter = new ImageConverter();
byte[] buffer = (byte[])imageConverter.ConvertTo(someImage, typeof(byte[]));
string base64 = Convert.ToBase64String(buffer, Base64FormattingOptions.InsertLineBreaks);
// Then, dynamically create some XHTML for this (as this is just a sample, minimalistic XHTML :D)
string html = "<img src=\"data:image/" . someImage.RawFormat.ToString() . ";base64, " . $base64 . "\">";
// And put it into some stream
using (StreamWriter streamWriter = new StreamWriter(new MemoryStream()))
{
streamWriter.Write(html);
streamWriter.Flush();
webBrowser.DocumentStream = streamWriter.BaseStream;
webBrowser.DocumentType = "text/html";
}
</code></pre>
<p>No idea whether this solution is elegant, but I guess it is not. My excuse for not being sure is that it is late at night. :)</p>
<p>References:</p>
<ul>
<li><a href="http://www.ietf.org/rfc/rfc2397.txt" rel="nofollow" title="RFC2397: The "data" URL scheme">RFC2397</a></li>
<li><a href="http://dotnet-snippets.de/dns/c-image-zu-base64-konvertieren-und-zurueck-SID958.aspx" rel="nofollow" title="C# - Image zu Base64 konvertieren und zurück">Image to base64 encoded string</a></li>
</ul>
http://stackoverflow.com/questions/291675/what-can-i-do-to-optimize-my-net-web-sites-and-applications-for-64-bit/291719#291719
1
Answer by hangy for What can I do to optimize my .NET Web sites and applications for 64-bit?
hangy
2008-11-14T22:58:09Z
2008-11-14T22:58:09Z
<p>I think there is not too much you can optimize in your managed .NET code regarding 32bit vs. 64bit architectures. This is because most of the differences and optimizatinons are most likely already implemented by the underlying VM. As mentioned in <a href="http://stackoverflow.com/questions/280327/programming-for-the-64-bit-platform">Programming for the 64 bit platform</a>, the 64bit VM may perform better on larger data types (as <code>long</code> stored in one register).</p>
http://stackoverflow.com/questions/1783028/c-casting-a-reflection-propertyinfo-object-to-its-type
Comment by hangy on C# - Casting a Reflection.PropertyInfo object to its Type
hangy
2009-11-23T13:24:09Z
2009-11-23T13:24:09Z
If you want to work with it "as if it were the class type", you need to know what it could be - so you could just try casting the object or see if it is what you want with the <code>is</code> operator. If you do not know what it could be, you cannot work with it anyways, right?
http://stackoverflow.com/questions/1074240/system-text-stringbuilder-limit/1074405#1074405
Comment by hangy on System.Text.StringBuilder limit
hangy
2009-07-02T22:08:38Z
2009-07-02T22:08:38Z
0x20 (hex) = 32 dez, 0x10 (hex) = 16 dez :)
I am not really familiar with IL, but I'd assume that's the constructor parameter set in HEX values.
http://stackoverflow.com/questions/1074240/system-text-stringbuilder-limit/1074275#1074275
Comment by hangy on System.Text.StringBuilder limit
hangy
2009-07-02T13:43:51Z
2009-07-02T13:43:51Z
In my understanding the OP's point was that the StringBuilder was created with the same buffer, regardless of whether he used 32 or 16 as that parameter.
http://stackoverflow.com/questions/1073338/xml-comments-in-resources-designer-cs/1073506#1073506
Comment by hangy on XML comments in Resources.Designer.cs?
hangy
2009-07-02T11:06:07Z
2009-07-02T11:06:07Z
Unfortunately, I think this will not help me. Visual Studio tells me that those comments do not exist - I want them to be generated automatically.
Thanks anyways. :)
http://stackoverflow.com/questions/352703/integrating-hudson-with-ms-test/531326#531326
Comment by hangy on Integrating Hudson with MS Test?
hangy
2009-02-18T13:11:05Z
2009-02-18T13:11:05Z
I think this plugin covers my needs pretty much for now. If someone needs something more sophisticated, thouh, give Allen's suggestion a try.
http://stackoverflow.com/questions/352703/integrating-hudson-with-ms-test/531326#531326
Comment by hangy on Integrating Hudson with MS Test?
hangy
2009-02-17T16:23:46Z
2009-02-17T16:23:46Z
Wow, how could I miss this being released? I guess I will give it a try tomorrow.
http://stackoverflow.com/questions/352703/integrating-hudson-with-ms-test/512092#512092
Comment by hangy on Integrating Hudson with MS Test?
hangy
2009-02-17T16:23:14Z
2009-02-17T16:23:14Z
This looks great, thanks! I may give it a try tomorrow, depending on what this new MSTest plugin has to offer.
http://stackoverflow.com/questions/363113/any-good-geeky-baby-names/365193#365193
Comment by hangy on Any good geeky baby names?
hangy
2008-12-13T15:21:55Z
2008-12-13T15:21:55Z
RC1-9, Beta, ... ^^
http://stackoverflow.com/questions/363113/any-good-geeky-baby-names/364293#364293
Comment by hangy on Any good geeky baby names?
hangy
2008-12-13T11:54:25Z
2008-12-13T11:54:25Z
Hoare? If you lived in some English speaking country, that could get your kid into some trouble. :)
http://stackoverflow.com/questions/363113/any-good-geeky-baby-names/363124#363124
Comment by hangy on Any good geeky baby names?
hangy
2008-12-13T11:36:38Z
2008-12-13T11:36:38Z
But Jan's a male name?
http://stackoverflow.com/questions/353110/exclude-complete-namespace-from-fxcop-code-analysis/353145#353145
Comment by hangy on Exclude complete namespace from FxCop code analysis?
hangy
2008-12-09T16:02:24Z
2008-12-09T16:02:24Z
Unfortunately, one cannot add those attributes to namespaces, as far as I know. That would mean I would have to add it to each generated class manually - that cannot be the ideal solution. :D
http://stackoverflow.com/questions/353110/exclude-complete-namespace-from-fxcop-code-analysis/353127#353127
Comment by hangy on Exclude complete namespace from FxCop code analysis?
hangy
2008-12-09T15:49:27Z
2008-12-09T15:49:27Z
There is no such attribute on my LINQ 2 SQL code. I just created it using the visual designer and that is it. Could it be that they changed it with VS2008 SP1? I am still on VS2008 here.
http://stackoverflow.com/questions/352703/integrating-hudson-with-ms-test/352717#352717
Comment by hangy on Integrating Hudson with MS Test?
hangy
2008-12-09T15:18:03Z
2008-12-09T15:18:03Z
Thanks for the hint. This sounds like a last resort - it could possible be easier to transform .TRX (XML) to JUnit/NUnit format using XSLT or so.
http://stackoverflow.com/questions/333946/reimplementing-toupper/333971#333971
Comment by hangy on Reimplementing ToUpper()
hangy
2008-12-03T08:15:11Z
2008-12-03T08:15:11Z
The upper case ß was just added to the Unicode standard by updating some ISO standard back in April, so font support is really rare. :) Also, the Duden has not accepted it into the standard language, yet, so yours <i>is</i> correct. :) Just wanted to point another future possibility.
http://stackoverflow.com/questions/333946/reimplementing-toupper/333971#333971
Comment by hangy on Reimplementing ToUpper()
hangy
2008-12-02T15:17:47Z
2008-12-02T15:17:47Z
(string-upcase "Straße") ⇒ "STRAẞE"