User Scuffia - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:30:44Z http://stackoverflow.com/feeds/user/20991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language 16 Is there a human readable programming language? Scuffia 2008-10-14T20:51:13Z 2009-11-18T23:18:20Z <p>I mean, is there a coded language with human style coding? For example:</p> <pre><code>Create an object called MyVar and initialize it to 10; Take MyVar and call MyMethod() with parameters. . . </code></pre> <p>I know it's not so useful, but it can be interesting to create such a grammar.</p> http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net 14 Why are Exceptions not Checked in .NET? Scuffia 2008-09-23T21:52:24Z 2009-06-12T15:20:43Z <p>I know Googling I can find an appropriate answer, but I prefer listening to your personal (and maybe technical) opinions.<br/> <strong>What is the main reason of the difference between Java and C# in throwing exceptions?</strong><br/> In Java the signature of a method that throws an exception has to use the "throws" keyword, while in C# you don't know in compilation time if an exception could be thrown.</p> http://stackoverflow.com/questions/210650/validate-image-from-file-in-c/210660#210660 1 Answer by Scuffia for Validate image from file in C# Scuffia 2008-10-16T23:38:52Z 2008-10-16T23:38:52Z <p>I would create a method like:</p> <pre><code>Image openImage(string filename); </code></pre> <p>in which I handle the exception. If the returned value is Null, there is an invalid file name / type.</p> http://stackoverflow.com/questions/209212/bundling-net-in-installer/209226#209226 0 Answer by Scuffia for Bundling .NET in installer Scuffia 2008-10-16T16:04:36Z 2008-10-16T16:04:36Z <p>The second one. A customer wants all functioning without putting an hand.</p> http://stackoverflow.com/questions/209045/do-technical-certifications-improve-programming-skills/209073#209073 8 Answer by Scuffia for Do Technical Certifications improve Programming Skills? Scuffia 2008-10-16T15:34:36Z 2008-10-16T15:34:36Z <p>I'm taking some certifications, and I assure you there is a lot that you don't discover working.</p> http://stackoverflow.com/questions/205190/select-from-same-table-as-an-insert-or-update/205234#205234 0 Answer by Scuffia for Select from same table as an Insert or Update Scuffia 2008-10-15T15:42:48Z 2008-10-15T15:42:48Z <p>as soon as the Select is correct you can do this.</p> http://stackoverflow.com/questions/204711/how-should-i-check-if-a-flag-is-set-in-a-flags-enum/204723#204723 3 Answer by Scuffia for How should I check if a flag is set in a flags enum? Scuffia 2008-10-15T13:37:05Z 2008-10-15T13:37:05Z <p>i prefer the first one because it's more readable.</p> http://stackoverflow.com/questions/199177/what-are-the-good-free-programming-text-editors-for-windows/199185#199185 4 Answer by Scuffia for What are the good free programming text editors for Windows? Scuffia 2008-10-13T22:10:39Z 2008-10-13T22:10:39Z <p>I currently use <a href="http://www.contexteditor.org/index.html" rel="nofollow">Context Editor</a>, simple and quick. Try it!</p> http://stackoverflow.com/questions/193351/debugging-break-at-runtime-when-file-is-modified-windows/193381#193381 2 Answer by Scuffia for Debugging: break at runtime when file is modified ? (windows) Scuffia 2008-10-10T23:45:29Z 2008-10-10T23:45:29Z <p>you can use the System.IO.FileSystemWatcher class.</p> <pre><code>FileSystemWatcher watcher = = new FileSystemWatcher(); watcher.Filter = @"myFile.ini"; watcher.Changed += new FileSystemEventHandler(watcher_Changed); </code></pre> <p>and then you implement the delegate of type FileSystemEventHandler:</p> <pre><code>static void watcher_Changed(object sender, FileSystemArgs e) { Console.WriteLine("File {0} has changed.", e.FullPath ); } </code></pre> <p>every time the file you have selected in the filter is modified, you get an alert (you can use both a Debug class or Trace class to output data). Moreover the FileSystemWatcher class has more events (Renamed, Deleted, Created).</p> http://stackoverflow.com/questions/186895/automatic-namespaces-import 1 Automatic namespaces import Scuffia 2008-10-09T11:51:14Z 2008-10-09T11:58:02Z <p>Is there a way in Visual Studio (a hotkey) to automatically import a type (or choosing between known namespaces) like the CTRL+O in Eclipse?</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/167458#167458 0 Answer by Scuffia for What real life bad habits has programming given you? Scuffia 2008-10-03T15:35:33Z 2008-10-03T15:35:33Z <p>my head is every day nearer to my right shoulder</p> http://stackoverflow.com/questions/166134/whats-quicker-including-another-file-or-querying-a-mysql-database-in-php/166142#166142 -3 Answer by Scuffia for What's quicker; including another file or querying a MySQL database in PHP? Scuffia 2008-10-03T09:56:31Z 2008-10-03T09:56:31Z <p>I exactly don't know, but in my opinio using MySQL, even if can be slower, sould be used if the content is dynamic. But I'm pretty sure it is faster, for big contents, using include.</p> http://stackoverflow.com/questions/165075/map-an-object-reference-with-hashtable/165088#165088 1 Answer by Scuffia for Map an object reference with HashTable Scuffia 2008-10-02T23:44:05Z 2008-10-02T23:44:05Z <p>make headers_path be a propriety (with set)</p> http://stackoverflow.com/questions/162367/what-hurts-the-quality-of-your-code-most/162386#162386 4 Answer by Scuffia for What hurts the quality of your code most? Scuffia 2008-10-02T13:54:13Z 2008-10-02T13:54:13Z <p>sometimes, due to not much time, I have insufficient refactoring (when I use "spaghetti coding" to speed up development).</p> http://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162250#162250 -1 Answer by Scuffia for How do I preserve markup tags when using XSLT? Scuffia 2008-10-02T13:26:00Z 2008-10-02T13:35:07Z <p>It is because the engine is interpreting the &lt;p&gt; tag (excluding it for the output). You need to specify you want the content "as it is", using the "disable-output-escaping=yes|no" attribute.</p> <pre><code>&lt;xsl:value-of select="body" disable-output-escaping="yes"/&gt; </code></pre> http://stackoverflow.com/questions/162176/reading-very-large-files-in-php/162227#162227 0 Answer by Scuffia for Reading very large files in PHP Scuffia 2008-10-02T13:21:46Z 2008-10-02T13:21:46Z <p>I used fopen to open video files for streaming, using a php script as a video streaming server, and I had no problem with files of size more than 50/60 MB.</p> http://stackoverflow.com/questions/162159/javascript-clientside-vs-serverside-validation/162166#162166 0 Answer by Scuffia for JavaScript ClientSide vs. ServerSide Validation Scuffia 2008-10-02T13:10:57Z 2008-10-02T13:10:57Z <p>javascript can be disabled</p> http://stackoverflow.com/questions/161417/do-you-think-microsoft-will-port-the-net-framework-to-o-s-s-other-than-windows 1 Do you think Microsoft will port the .NET Framework to O.S.'s other than Windows? Scuffia 2008-10-02T08:52:06Z 2008-10-02T12:59:15Z <p>I mean Microsoft by his will.</p> http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/161785#161785 2 Answer by Scuffia for What is the best IDE for PHP ? Scuffia 2008-10-02T11:20:27Z 2008-10-02T11:20:27Z <p>Eclipse with PDT.</p> http://stackoverflow.com/questions/148407/why-does-the-code-below-return-true-only-for-a-1/148416#148416 -1 Answer by Scuffia for Why does the code below return true only for a = 1? Scuffia 2008-09-29T12:07:22Z 2008-09-29T13:22:33Z <p>something different from 0 (that is false) is not necessary true (that is 1)</p> http://stackoverflow.com/questions/142404/how-to-stop-eclipse-3-4-losing-reference-to-the-jre-in-projects/142441#142441 1 Answer by Scuffia for How to stop Eclipse 3.4 losing reference to the JRE in projects Scuffia 2008-09-26T23:07:11Z 2008-09-26T23:07:11Z <p>It happened to me, but after a reloading of Eclipse all continued working well!</p> http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification 1 Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T22:33:44Z 2008-09-26T22:56:16Z <p>I'll teach in a 3 month course about the basis of .NET Framework, do you think that the Visual Studio Express Edition (both C# and Web development) are sufficient for learning or I need to buy a complete edition license for each guy involved (actually an EDU edition)?</p> http://stackoverflow.com/questions/139650/when-writing-xml-is-it-better-to-hand-write-it-or-to-use-a-generator-such-as-si/139681#139681 1 Answer by Scuffia for When writing XML, is it better to hand write it, or to use a generator such as simpleXML in PHP? Scuffia 2008-09-26T14:01:04Z 2008-09-26T14:01:04Z <p>hand writing isn't always the best practice, because in large XML ou can write wrong tags and can be difficult to find the reason of an error. So I suggest to use XMl parsers to create XML files.</p> http://stackoverflow.com/questions/136977/after-c-python-or-java/137018#137018 3 Answer by Scuffia for After C++ - Python or Java? Scuffia 2008-09-26T00:04:20Z 2008-09-26T00:04:20Z <p>First Java (as you see a semplification in a lot of aspects of C++), and then you will eat Python for breakfast.</p> http://stackoverflow.com/questions/136899/suppress-error-with-operator-in-php/136941#136941 2 Answer by Scuffia for Suppress error with @ operator in PHP Scuffia 2008-09-25T23:45:49Z 2008-09-25T23:45:49Z <p>is there not a way to suppress from the php.ini warnings and errors? in that case you can debug only changing a flag and not trying to discovering which @ is hiding the problem.</p> http://stackoverflow.com/questions/136837/how-do-i-make-sure-a-user-is-only-logged-in-once/136863#136863 1 Answer by Scuffia for How do I make sure a user is only logged in once? Scuffia 2008-09-25T23:27:32Z 2008-09-25T23:27:32Z <p>I've never found a standard solution to this problem. In one of my apps I used a combination of Javascript + Java to ensure that a user could be logged only once from a specified IP (actually it was a session ID), but in the worst case of functioning, for a timeout (set to 2 minutes) the account was not available. I don't why there is not a common way to do it.</p> http://stackoverflow.com/questions/136798/is-it-ethical-to-monitor-users/136821#136821 1 Answer by Scuffia for Is it ethical to monitor users? Scuffia 2008-09-25T23:19:55Z 2008-09-25T23:19:55Z <p>I made a simple CMS in PHP and I had to store all actions of users, but it's a completely different situation. In my opinion what is asking your boss is a bit out of privacy, especially if in your application you don't mention to the user this kind of behavior.</p> http://stackoverflow.com/questions/128042/what-to-do-with-null-fields-in-compare/128065#128065 1 Answer by Scuffia for What to do with null fields in compare() ? Scuffia 2008-09-24T16:03:47Z 2008-09-24T16:03:47Z <p>It seems to me there is not a method to do it, but anyway the code is not so long.</p> http://stackoverflow.com/questions/127027/how-to-check-my-byte-flag/127054#127054 1 Answer by Scuffia for How to check my byte flag? Scuffia 2008-09-24T13:14:46Z 2008-09-24T13:14:46Z <p>you can do as Daok says and you make a bit to bit OR to the resulting of the previous AND operation. In this case you will have a final result of 1 or 0.</p> http://stackoverflow.com/questions/186895/automatic-namespaces-import/186913#186913 Comment by Scuffia on Automatic namespaces import Scuffia 2008-10-09T11:56:00Z 2008-10-09T11:56:00Z tried and never seen. thnks http://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162250#162250 Comment by Scuffia on How do I preserve markup tags when using XSLT? Scuffia 2008-10-02T13:34:36Z 2008-10-02T13:34:36Z another errore...it was YES or NO http://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162250#162250 Comment by Scuffia on How do I preserve markup tags when using XSLT? Scuffia 2008-10-02T13:32:43Z 2008-10-02T13:32:43Z try with false...I always don't remember the correct use http://stackoverflow.com/questions/161417/do-you-think-microsoft-will-port-the-net-framework-to-o-s-s-other-than-windows/161421#161421 Comment by Scuffia on Do you think Microsoft will port the .NET Framework to O.S.'s other than Windows? Scuffia 2008-10-02T08:54:06Z 2008-10-02T08:54:06Z Yes like Silverlight (never tested anywway) http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142422#142422 Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T23:04:35Z 2008-09-26T23:04:35Z never heard about it. Thanks http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142393#142393 Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T22:53:36Z 2008-09-26T22:53:36Z what kind of edition do you think I currently have? :) Anyway during the course I need to be as legal as possible http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142396#142396 Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T22:52:08Z 2008-09-26T22:52:08Z those are the words I wanted to listen to :) I will need also to teach ASP.NET so you're right about the Web Developer edition. The main problem was that I read several times that are not complete editions (of course) and I feared they were not sufficient for learning all MCTS program. http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142393#142393 Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T22:49:51Z 2008-09-26T22:49:51Z you're right but I have to teach also how to use Visual studio (and the MCTS often has reference to specific VS tools and functionalities). Moreover the trial edition is only 90 days and the course will last 3/4 months.