User Scuffia - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T07:30:44Zhttp://stackoverflow.com/feeds/user/20991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language16Is there a human readable programming language?Scuffia2008-10-14T20:51:13Z2009-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-net14Why are Exceptions not Checked in .NET?Scuffia2008-09-23T21:52:24Z2009-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#2106601Answer by Scuffia for Validate image from file in C#Scuffia2008-10-16T23:38:52Z2008-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#2092260Answer by Scuffia for Bundling .NET in installerScuffia2008-10-16T16:04:36Z2008-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#2090738Answer by Scuffia for Do Technical Certifications improve Programming Skills? Scuffia2008-10-16T15:34:36Z2008-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#2052340Answer by Scuffia for Select from same table as an Insert or UpdateScuffia2008-10-15T15:42:48Z2008-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#2047233Answer by Scuffia for How should I check if a flag is set in a flags enum?Scuffia2008-10-15T13:37:05Z2008-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#1991854Answer by Scuffia for What are the good free programming text editors for Windows?Scuffia2008-10-13T22:10:39Z2008-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#1933812Answer by Scuffia for Debugging: break at runtime when file is modified ? (windows)Scuffia2008-10-10T23:45:29Z2008-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-import1Automatic namespaces importScuffia2008-10-09T11:51:14Z2008-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#1674580Answer by Scuffia for What real life bad habits has programming given you?Scuffia2008-10-03T15:35:33Z2008-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-3Answer by Scuffia for What's quicker; including another file or querying a MySQL database in PHP?Scuffia2008-10-03T09:56:31Z2008-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#1650881Answer by Scuffia for Map an object reference with HashTableScuffia2008-10-02T23:44:05Z2008-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#1623864Answer by Scuffia for What hurts the quality of your code most?Scuffia2008-10-02T13:54:13Z2008-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-1Answer by Scuffia for How do I preserve markup tags when using XSLT?Scuffia2008-10-02T13:26:00Z2008-10-02T13:35:07Z<p>It is because the engine is interpreting the <p> 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><xsl:value-of select="body" disable-output-escaping="yes"/>
</code></pre>
http://stackoverflow.com/questions/162176/reading-very-large-files-in-php/162227#1622270Answer by Scuffia for Reading very large files in PHPScuffia2008-10-02T13:21:46Z2008-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#1621660Answer by Scuffia for JavaScript ClientSide vs. ServerSide ValidationScuffia2008-10-02T13:10:57Z2008-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-windows1Do you think Microsoft will port the .NET Framework to O.S.'s other than Windows?Scuffia2008-10-02T08:52:06Z2008-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#1617852Answer by Scuffia for What is the best IDE for PHP ?Scuffia2008-10-02T11:20:27Z2008-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-1Answer by Scuffia for Why does the code below return true only for a = 1?Scuffia2008-09-29T12:07:22Z2008-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#1424411Answer by Scuffia for How to stop Eclipse 3.4 losing reference to the JRE in projectsScuffia2008-09-26T23:07:11Z2008-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-certification1Visual Studio Express Edition to get a MCTS Certification?Scuffia2008-09-26T22:33:44Z2008-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#1396811Answer by Scuffia for When writing XML, is it better to hand write it, or to use a generator such as simpleXML in PHP?Scuffia2008-09-26T14:01:04Z2008-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#1370183Answer by Scuffia for After C++ - Python or Java?Scuffia2008-09-26T00:04:20Z2008-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#1369412Answer by Scuffia for Suppress error with @ operator in PHPScuffia2008-09-25T23:45:49Z2008-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#1368631Answer by Scuffia for How do I make sure a user is only logged in once?Scuffia2008-09-25T23:27:32Z2008-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#1368211Answer by Scuffia for Is it ethical to monitor users?Scuffia2008-09-25T23:19:55Z2008-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#1280651Answer by Scuffia for What to do with null fields in compare() ?Scuffia2008-09-24T16:03:47Z2008-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#1270541Answer by Scuffia for How to check my byte flag?Scuffia2008-09-24T13:14:46Z2008-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#186913Comment by Scuffia on Automatic namespaces importScuffia2008-10-09T11:56:00Z2008-10-09T11:56:00Ztried and never seen. thnkshttp://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162250#162250Comment by Scuffia on How do I preserve markup tags when using XSLT?Scuffia2008-10-02T13:34:36Z2008-10-02T13:34:36Zanother errore...it was YES or NOhttp://stackoverflow.com/questions/162225/how-do-i-preserve-markup-tags-when-using-xslt/162250#162250Comment by Scuffia on How do I preserve markup tags when using XSLT?Scuffia2008-10-02T13:32:43Z2008-10-02T13:32:43Ztry 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#161421Comment by Scuffia on Do you think Microsoft will port the .NET Framework to O.S.'s other than Windows?Scuffia2008-10-02T08:54:06Z2008-10-02T08:54:06ZYes like Silverlight (never tested anywway)http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142422#142422Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification?Scuffia2008-09-26T23:04:35Z2008-09-26T23:04:35Znever heard about it. Thankshttp://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142393#142393Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification?Scuffia2008-09-26T22:53:36Z2008-09-26T22:53:36Zwhat kind of edition do you think I currently have? :)
Anyway during the course I need to be as legal as possiblehttp://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification/142396#142396Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification?Scuffia2008-09-26T22:52:08Z2008-09-26T22:52:08Zthose 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#142393Comment by Scuffia on Visual Studio Express Edition to get a MCTS Certification?Scuffia2008-09-26T22:49:51Z2008-09-26T22:49:51Zyou'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.