User Tobias - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:47:17Z http://stackoverflow.com/feeds/user/14027 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1443666/net-deployment-project-custom-action-that-cancels-uninstaller/1632065#1632065 1 Answer by Tobias for .NET Deployment project: Custom Action that cancels uninstaller Tobias 2009-10-27T16:31:39Z 2009-10-27T16:31:39Z <p>The answer is actually quite easy but also quite ugly.</p> <p>At the point in the custom action where I want to cancel the uninstallation I just throw an <code>ApplicationException</code>:</p> <pre><code>//Nono. Don't uninstall. To abort uninstall, throw an exception throw new ApplicationException(Constants.CONST_APP_NAME + @" can't be uninstalled because the preparation hasn't been completed."); </code></pre> http://stackoverflow.com/questions/1443666/net-deployment-project-custom-action-that-cancels-uninstaller 1 .NET Deployment project: Custom Action that cancels uninstaller Tobias 2009-09-18T10:19:21Z 2009-10-27T16:31:39Z <p>I have a .NET deployment project. I would like to add a custom uninstall action that checks certain conditions and optionally cancels the uninstallation. Is that possible?</p> <p>As far as I figured out, it's only possible to define custom actions that cannot influence the main installer itself. </p> http://stackoverflow.com/questions/1394167/how-to-use-webservice-of-sql-server-2008-reporting-services 0 How to use WebService of SQL Server 2008 Reporting Services Tobias 2009-09-08T13:54:49Z 2009-10-03T19:42:31Z <p>I created a report and published it to the Report Server 2008 that worked fine. I can call <strong>http://<em>servername</em>:81/Reports</strong> in my browser and view and export the reports. What I want to do now is write an application that uses the report to create a Excel file out of it.</p> <p>According to the Reporting Services Configuration Manager the WebService of that Report Server is located at <strong>http://<em>servername</em>:81/ReportServer</strong>. When I open the link in my browser I can see the folders of the projects I created and deployed using Visual Studio.</p> <p>But I can't find a web service endpoint there. In VS when I try to add a web reference no web service can be found there either.</p> <p>What am I missing here?</p> http://stackoverflow.com/questions/1444528/why-is-this-code-so-slow/1444559#1444559 0 Answer by Tobias for Why is this code so slow? Tobias 2009-09-18T13:30:18Z 2009-09-18T13:30:18Z <p>I'm nor sure of what type <code>vals</code> is but <code>vals.at(row).size()</code> could take a long time if itself iterates through the collection. Store that value in a variable. Otherwise it could make the algorithm more like O(n³) than O(n²)</p> http://stackoverflow.com/questions/125730/why-do-i-get-an-error-when-starting-ruby-on-rails-app-with-mongrelrails 1 Why do I get an error when starting ruby on rails app with mongrel_rails Tobias 2008-09-24T06:44:49Z 2009-08-19T18:47:08Z <p>Why do I get following error when trying to start a ruby on rails application with <pre>mongrel_rails start</pre>?</p> <pre> C:\RailsTest\cookbook2>mongrel_rails start ** WARNING: Win32 does not support daemon mode. ** Daemonized, any open files are closed. Look at log/mongrel.pid and log/mongr el.log for info. ** Starting Mongrel listening at 0.0.0.0:3000 c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../lib/mongrel/t cphack.rb:12:in `initialize_without_backlog': Only one usage of each socket addr ess (protocol/network address/port) is normally permitted. - bind(2) (Errno::EAD DRINUSE) from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/tcphack.rb:12:in `initialize' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel.rb:93:in `new' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel.rb:93:in `initialize' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/configurator.rb:139:in `new' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/configurator.rb:139:in `listener' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon grel_rails:99:in `cloaker_' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/configurator.rb:50:in `call' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/configurator.rb:50:in `initialize' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon grel_rails:84:in `new' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon grel_rails:84:in `run' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/../ lib/mongrel/command.rb:212:in `run' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/bin/mon grel_rails:281 from c:/ruby/bin/mongrel_rails:19:in `load' from c:/ruby/bin/mongrel_rails:19 </pre> http://stackoverflow.com/questions/1018137/net-how-to-print-files-w-o-opening-them 0 .NET: How to print files w/o opening them Tobias 2009-06-19T14:06:21Z 2009-07-29T09:59:52Z <p>Hello,</p> <p>We have an application that basically archives files and we give the user the possibility to print these files. They can be .txt, .doc, .pdf, .jpg nothing fancy. Is there a .NET way to send these files to the printer without handling them further, ie opening them?</p> <p>I already tried creating a process with the StartInfo.Verb = "print"</p> <pre><code>Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.CreateNoWindow = true; p.StartInfo.FileName = fileName; p.StartInfo.Verb = "print" p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden p.Start(); </code></pre> <p>It still opens the file which I don't want. Can someone help?</p> <p>Any help would be appreciated. Tobi</p> http://stackoverflow.com/questions/1195198/can-i-restrict-generic-method-to-more-than-one-interface 4 Can I restrict generic method to more than one interface? Tobias 2009-07-28T16:21:46Z 2009-07-29T07:18:44Z <p>Hello,</p> <p>I have a generic method</p> <pre><code>public static void DoSomething&lt;T&gt;() {...} </code></pre> <p>. Now I want to restrict that T.</p> <pre><code>public static void DoSomething&lt;T&gt;() where T: IInterface1 {...} </code></pre> <p>But what I really want is allowing multiple interfaces, something like</p> <pre><code>public static void DoSomething&lt;T&gt;() where T: IInterface1, IInterface2 {...} </code></pre> <p>But that doesn't work. Compiler says something like</p> <blockquote> <p>There's no implicit conversion from IInterface1 to IInterface2</p> <p>There's no implicit conversion from IInterface2 to IInterface1</p> </blockquote> <p>I thought about letting the classes implement a common interface which I can refer to but I don't have access to the classes.</p> <p>What possibilities do I have to allow multiple Interfaces?</p> <p>Thanks, Tobi</p> <p><strong>Edit:</strong> Here's what I wanted to do. I'm developing an Outlook-Add-In. I use this piece of code below quite often. </p> <pre><code> public static object GetItemMAPIProperty&lt;T&gt;(AddinExpress.MAPI.ADXMAPIStoreAccessor adxmapiStoreAccessor, object outlookItem, uint property) where T: Outlook.MailItem, Outlook.JournalItem { AddinExpress.MAPI.MapiItem mapiItem; mapiItem = adxmapiStoreAccessor.GetMapiItem(((T)outlookItem)); return mapiItem != null ? mapiItem.GetProperty(property) : null; } </code></pre> <p>The method GetMapiItem takes an object as long as it's one of Outlook's items (Journal, Mail, Contact,...). That's why I was restricting T. Because it cannot be, say, Outlook.MAPIFolder.</p> <p>No I've changed the method to</p> <pre><code> public static object GetItemMAPIProperty&lt;T&gt;(AddinExpress.MAPI.ADXMAPIStoreAccessor adxmapiStoreAccessor, T outlookItem, uint property) { AddinExpress.MAPI.MapiItem mapiItem; mapiItem = adxmapiStoreAccessor.GetMapiItem(((T)outlookItem)); return mapiItem.GetProperty(property); } </code></pre> <p>but the developer (In this case I) can give it any Type because the method GetMapiItem accepts an object. I hope that makes sense. I'm not sure if it does for that example but I guess restricting a generic method to multiple Types (with OR) can be a good idea.</p> http://stackoverflow.com/questions/210826/assembly-is-not-signed-correctly-warning 3 Assembly "is not signed correctly." Warning Tobias 2008-10-17T01:22:42Z 2009-04-25T12:29:30Z <p>I have a mobile .NET solution and decided to sign the assemblies. Compilation completes without errors but gives the warning</p> <p><strong>'CompactUI.Business.PocketPC.asmmeta, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not signed correctly.</strong></p> <p>The application is working fine but I can't open the designer for forms using this assembly anymore. Again the designer says</p> <p><strong>'CompactUI.Business.PocketPC.asmmeta, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not signed correctly.</strong> </p> <p>with the stack information: </p> <p>at Microsoft.CompactFramework.Build.AsmmetaBindingService.GetAsmmetaAssembly(String sourceAssemblyPath, Boolean verify) at Microsoft.CompactFramework.Build.AsmmetaBindingService.LoadAsmMetaAssembly(Assembly sourceAssembly, String hintPath, IDeviceTypeResolutionService resolver) at Microsoft.CompactFramework.Build.MetadataService.GetAsmmetaType(Type sourceType) at Microsoft.CompactFramework.Build.MetadataService.GetTypeAttributes(Type desktopType) at Microsoft.CompactFramework.Design.DeviceCustomTypeDescriptor.GetAttributes() ...</p> <p>What is causing this? </p> <p><strong>Edit: Nicholas suggestion is not solving the problem</strong></p> <p>I've got a Form that contains common properties which is base for every form in the presentation layer</p> <pre><code>public class CustomForm : Form { ... } </code></pre> <p>This form is in the business layer that causes the warning. Every form that inherits from this base form causes the problem when viewing in the designer.</p> http://stackoverflow.com/questions/509495/asp-net-reference-required-to-assembly-error 0 ASP.NET "Reference required to assembly" error. Tobias 2009-02-03T23:39:59Z 2009-04-25T09:58:26Z <p>I have an ASP.NET page <strong>A</strong> that uses a data layer assembly <strong>DAL</strong>. I reference the <strong>DAL</strong> assembly with a<br /> <code>&lt;%@ Assembly Name="NGC.DAL" %&gt;</code> tag since there is no project to add the reference to. The assembly itself I copied to the pages' bin folder.</p> <p>The assembly DAL is a project that references <code>System</code> and <code>System.Data</code>.</p> <p>Now when A calls a method in DAL, the compiler gives the error </p> <p><strong>BC30652: Reference required to assembly 'System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes' containing the type 'System.Data.IDbConnection'. Add one to your project.</strong></p> <p>I tried referencing the assembly <code>System.Data</code> with a <code>&lt;%@Import Namespace="System.Data" %&gt;</code> tag and I tried copying it to the bin folder and referencing it with a<br /> <code>&lt;%@ Assembly Name="System.Data" %&gt;</code> tag, both in A directly. Nothing worked.</p> <p>Why would a project A that uses project B which uses project C require a reference to B <strong>and</strong> C rather than just B and why does the way above not work?</p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/6a31606f-baf1-4c64-9008-41e1219d437c/" rel="nofollow">This</a> MSDN thread covers the problem but shows no solution that works.</p> <p>EDIT: As Robert Wagner suggested I added the reference to the web.config. Now I get another error message. <strong>BC30560: 'CommandBehavior' is ambiguous in the namespace 'System.Data'.</strong> which is odd because the one in the web.config is the only one I reference inside the page.</p> <p>Maybe it's worth mentioning that the <code>System.Data</code> referenced and used in the DAL assembly is from the compact framwork. But since it's the only one I use, where does the ambiguity come from? </p> http://stackoverflow.com/questions/160433/what-exactly-do-you-do-when-your-team-leader-is-incompetent/160462#160462 27 Answer by Tobias for What exactly do you do when your team leader is incompetent? Tobias 2008-10-02T01:15:09Z 2009-02-27T04:57:22Z <p>Show competence yourself and don't ever let the project suffer because of a disagreement in your team. Show your boss that you or someone else might be a better choice for that role. Hang in there and try not to lose your passion. Stick to your ethics and do your work well. But if there's absolutely no change in sight, you might want to look for something else.</p> http://stackoverflow.com/questions/348363/what-is-the-best-practice-for-storing-uploaded-images 6 What is the best practice for storing uploaded images? Tobias 2008-12-07T23:55:39Z 2008-12-09T05:15:10Z <p>I'm writing an application that allows users to upload images onto the server. I expect about 20 images per day all jpeg and probably not edited/resized. (This is another question, how to resize the images on the server side before storing. Maybe someone can please drop a .NET resource for that in the comment or so). I wonder now what the best practice for storing uploaded images is.</p> <p>Is it <strong>a) I store the images as a file in the file system and create a record in a table with the exact path to that image.</strong></p> <p>or <strong>b) I store the image itself in a table using an "image" or "binary data" data type of the database server.</strong></p> <p>I see advantages and disadvantages in both. I like a) because I can easily relocate the files and just have to change the table entry. On the other hand I don't like storing business data on the web server and I don't really want to connect the web server to any other datasource that holds business data (for security reasons) I like b) because all the information is in one place and easily accessible by a query. On the other hand the database will get very big very soon. Outsourcing that data could be more difficult.</p> <p>Cheers, Tobias</p> <p>Edit: <a href="http://stackoverflow.com/questions/3748/storing-images-in-db-yea-or-nay">http://stackoverflow.com/questions/3748/storing-images-in-db-yea-or-nay</a></p> http://stackoverflow.com/questions/294760/how-do-you-show-animated-gifs-with-net-compact-framework 2 How do you show animated gifs with .NET Compact Framework Tobias 2008-11-17T02:34:45Z 2008-11-17T06:49:33Z <p>Hello,</p> <p>I would like to display an animated gif on a .NET Compact <code>Form</code>. Currently I use a <code>PictureBox</code> control and toggle between <code>.Visible = true</code> and <code>.Visible = false</code>.</p> <p>After <code>.Visible = true</code> the gif is shown however it's not animated. How can I get the .NET Compact Framework to animate it?</p> <p>I already tried <a href="http://stackoverflow.com/questions/165735/how-do-you-show-animated-gifs-on-a-windows-form-c">this</a> but it doesn't work.</p> http://stackoverflow.com/questions/270401/is-oslo-going-to-make-the-role-of-developer-obsolete/270489#270489 2 Answer by Tobias for Is Oslo going to make the role of developer obsolete? Tobias 2008-11-06T22:01:33Z 2008-11-06T22:01:33Z <blockquote> <p>Many people are saying that because of tools like Oslo making Model Driven Development >easier, "business people" will be writing applications via modeling tools instead of >coders writing code.</p> </blockquote> <p>Everyone that has developed for "Business People" knows that the developer will never be obsolete. Maybe the developer as we know it today and in terms of "writing code" but software applications won't be "clicked together" anytime soon.</p> http://stackoverflow.com/questions/214836/whats-the-most-unsound-program-youve-had-to-maintain/217285#217285 0 Answer by Tobias for What's the most unsound program you've had to maintain? Tobias 2008-10-20T01:13:31Z 2008-10-20T01:13:31Z <p>I'm maintaining a scheduling web-application we use in our intranet. When I've been asked if I could remove an agent from the scheduler I thought, sure why not. When I took a look into the source code I figured out that every hour of this agent's day was coded separately. So was every day of his week. And so was every week of every agent of this region. And so was every region of about 5 regions. Html fies that hold asp-code all over the place. </p> <p>One day I took some time to guess how many lines of code are in these various files and I estimated about 300000. Three-hundred thousand lines of code of once handwritten and then copy and pasted code.</p> <p>But this number convinced my manager pretty quickly that we would need a new scheduling app very quickly.</p> http://stackoverflow.com/questions/189943/how-can-i-quantify-difference-between-two-images/189977#189977 0 Answer by Tobias for How can I quantify difference between two images? Tobias 2008-10-10T02:53:30Z 2008-10-10T02:53:30Z <p>What about calculating the <a href="http://en.wikipedia.org/wiki/Manhattan_distance" rel="nofollow">Manhattan Distance</a> of the two images. That gives you n*n values. Then you could do something like an row average to reduce to n values and a function over that to get one single value.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164700#164700 1 Answer by Tobias for What real life bad habits has programming given you? Tobias 2008-10-02T21:31:25Z 2008-10-02T21:31:25Z <p>I agree with <strong>Glomek</strong>. I tend to be precise in what I say and also expect others to be. I too often hear what people say and not what they mean. Well most times I know what they mean I just ignore it...</p> <p>Also I started hating quick dirty fixes of problems. If I want to solve a problem I schedule it to find a time and then totally commit to it and do it right. In real life that means that I either clean the whole room rather than just cleaning up one corner. My girlfriend doesn't like that.</p> <p>BTW: It's a real relief to read that other programmers also expierenced this. I immediately forwarded this post to my girlfriend.</p> http://stackoverflow.com/questions/160514/partial-classes-in-c/160562#160562 0 Answer by Tobias for Partial Classes in C# Tobias 2008-10-02T02:01:22Z 2008-10-02T02:01:22Z <p>I use it in a data access layer. The generated classes like the mapper and queries a partial. If I need to add a mapper method for example to do a fancy load that's not generated I add it to the custom class.</p> <p>At the end the programmer that uses the data layer in the business layer only sees one class with all the functionality he or she needs. And if the data source changes the generic parts can easily be generated without overwriting custom stuff.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160450#160450 0 Answer by Tobias for What do you consider the 1st principle(s) of programming? Tobias 2008-10-02T01:06:30Z 2008-10-02T01:06:30Z <p>Don't repeat yourself!</p> http://stackoverflow.com/questions/160222/asp-net-web-app-undo-support/160234#160234 0 Answer by Tobias for ASP.net Web App undo support Tobias 2008-10-01T23:33:30Z 2008-10-02T00:47:56Z <p>One way would be to store changes to a table in another table together with a timestamp and a identifier for that application instance. If you want to undo changes since a specific time you just traverse the list backwards until that date for that identifier.</p> http://stackoverflow.com/questions/46541/when-should-you-use-the-singleton-pattern-instead-of-a-static-class/151332#151332 9 Answer by Tobias for When should you use the singleton pattern instead of a static class? Tobias 2008-09-30T00:43:21Z 2008-09-30T00:43:21Z <ul> <li>Singletons can implement interfaces and inherit from other classes</li> <li>A singletons can be lazy loaded. Only when it is actually needed. That's very handy if the initialisation includes expensive resource loading or database connections.</li> <li>Singeltons offer an actual object</li> <li>Singletons can be extended into a factory. The object management behind the scenes is abstract so it's better maintainable and results in better code.</li> </ul> http://stackoverflow.com/questions/87551/how-do-you-respond-when-an-it-manager-asks-you-what-is-firefox/87572#87572 1 Answer by Tobias for How do you respond when an IT manager asks you, "What is Firefox?" Tobias 2008-09-17T20:55:17Z 2008-09-17T20:55:17Z <p>A web browser.</p> http://stackoverflow.com/questions/1444528/why-is-this-code-so-slow/1444559#1444559 Comment by Tobias on Why is this code so slow? Tobias 2009-09-21T10:55:45Z 2009-09-21T10:55:45Z Thanks, wasn't sure if he used std::vector. http://stackoverflow.com/questions/1394167/how-to-use-webservice-of-sql-server-2008-reporting-services/1394278#1394278 Comment by Tobias on How to use WebService of SQL Server 2008 Reporting Services Tobias 2009-09-08T14:55:20Z 2009-09-08T14:55:20Z The web service turned out to be located at ReportService2005.asmx and ReportExecution2005.asmx. The definition is available at ReportService2005.asmx?wsdl and ReportExecution2005.asmx?wsdl. The example here (<a href="http://msdn.microsoft.com/en-us/library/reportexecution2005.reportexecutionservice.render.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>) describes how to retrieve PDF/Excel/HTML/... data from your reports. Thank you very much for pointing me there!!! http://stackoverflow.com/questions/526903/web-service-and-report-manager-dont-load-sql-server-express-2008-with-reporting/526966#526966 Comment by Tobias on Web Service and Report Manager don't load (Sql Server Express 2008 with Reporting Services) Tobias 2009-09-08T13:08:13Z 2009-09-08T13:08:13Z Changing the port numbers where? In the Reporting Services Configuration Manager? http://stackoverflow.com/questions/53132/mouse-for-programmer/79564#79564 Comment by Tobias on Mouse for programmer Tobias 2009-09-07T11:16:28Z 2009-09-07T11:16:28Z Weird, I just searched for this very thread because the Microsoft Wheel Mouse Optical gives me a lot of pain... http://stackoverflow.com/questions/1195198/can-i-restrict-generic-method-to-more-than-one-interface/1195559#1195559 Comment by Tobias on Can I restrict generic method to more than one interface? Tobias 2009-07-28T18:06:51Z 2009-07-28T18:06:51Z I could do that but I would have to write an implementation for each Interface. That's why I wanted to use generics in the first place. http://stackoverflow.com/questions/1195198/can-i-restrict-generic-method-to-more-than-one-interface Comment by Tobias on Can I restrict generic method to more than one interface? Tobias 2009-07-28T18:01:28Z 2009-07-28T18:01:28Z I want to say that T can be IInterface1 or IInterface2. I'm using VS2008 but I compile for .NET 2.0 http://stackoverflow.com/questions/1018137/net-how-to-print-files-w-o-opening-them/1018342#1018342 Comment by Tobias on .NET: How to print files w/o opening them Tobias 2009-06-20T09:16:14Z 2009-06-20T09:16:14Z sorry, accidentally switched to german... http://stackoverflow.com/questions/1018137/net-how-to-print-files-w-o-opening-them/1018342#1018342 Comment by Tobias on .NET: How to print files w/o opening them Tobias 2009-06-19T16:05:29Z 2009-06-19T16:05:29Z Das sieht gut aus. Jedenfalls f&#252;r jpegs. http://stackoverflow.com/questions/1018137/net-how-to-print-files-w-o-opening-them/1018154#1018154 Comment by Tobias on .NET: How to print files w/o opening them Tobias 2009-06-19T14:10:30Z 2009-06-19T14:10:30Z Good point, thanks. Is there a way then to do this truely hidden? http://stackoverflow.com/questions/273675/print-existing-pdf-or-other-files-in-c Comment by Tobias on Print existing PDF (or other files) in C# Tobias 2009-06-19T13:55:59Z 2009-06-19T13:55:59Z Anyone here who knows how to print random files, not just pdfs? Tobi http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64187#64187 Comment by Tobias on Confessions of your worst WTF Moment. (What not to do.) Tobias 2009-01-21T21:13:40Z 2009-01-21T21:13:40Z Most of the times rewriting something is a very bad idea. Especially when it's because it's &quot;messy&quot;. Here in our company there is a reason why it's messy. Because of dozens of exceptions from the rules. But they are there for a reason as I found out... No rewriting since then. http://stackoverflow.com/questions/348363/what-is-the-best-practice-for-storing-uploaded-images Comment by Tobias on What is the best practice for storing uploaded images? Tobias 2008-12-08T03:40:43Z 2008-12-08T03:40:43Z True, didn't find that. Thanks http://stackoverflow.com/questions/348363/what-is-the-best-practice-for-storing-uploaded-images Comment by Tobias on What is the best practice for storing uploaded images? Tobias 2008-12-08T00:00:55Z 2008-12-08T00:00:55Z I didn't find it, where? http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/263847#263847 Comment by Tobias on What is the worst interviewee answer? Tobias 2008-11-24T22:18:10Z 2008-11-24T22:18:10Z me too. You are not alone. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/265032#265032 Comment by Tobias on What is the worst interviewee answer? Tobias 2008-11-24T22:15:52Z 2008-11-24T22:15:52Z Solving a problem by not letting it occur in the first place. What a genius.