User Nick Masao - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:23:12Z http://stackoverflow.com/feeds/user/487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1608190/how-to-simplify-this-memorystream-code 2 How to simplify this MemoryStream code Nick Masao 2009-10-22T15:51:55Z 2009-10-22T16:11:10Z <p>This code returns a thumbnail of an image loaded from a byte array. I'm trying to understand why the author is using 4 memory streams and if there is a simple way of rewriting this or if it is okay the way it is.</p> <pre><code>public Image GetThumbnail(int height, int width) { //load the image from a byte array (imageData) using (MemoryStream mem = new MemoryStream(this.imageData)) { // Create a Thumbnail from the image using (Image thumbPhoto = Image.FromStream(mem, true).GetThumbnailImage(height, width, null, new System.IntPtr())) { // Convert the Image object to a byte array using (MemoryStream ms = new MemoryStream()) { thumbPhoto.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); using (MemoryStream m = new MemoryStream(ms.ToArray())) { return Image.FromStream(m, true); } } } } } </code></pre> http://stackoverflow.com/questions/1565100/casting-to-string-versus-calling-tostring/1565450#1565450 0 Answer by Nick Masao for Casting to string versus calling ToString Nick Masao 2009-10-14T10:24:45Z 2009-10-14T10:24:45Z <p>If its any help, you could use the 'as' operator which is similar to the cast but returns null instead of an exception on any conversion failure.</p> <pre><code>string str3 = obj as string; </code></pre> http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/167347#167347 0 Answer by Nick Masao for Language showdown: Convert string of digits to array of integers? Nick Masao 2008-10-03T15:12:07Z 2009-09-29T08:59:59Z <p>In VB.NET:</p> <pre> Dim source As String = "123458796" Dim data() As Char = source.ToCharArray Dim res(source.length - 1) As Integer for i as integer = 0 to Source.length - 1 res(i) = cint(microsoft.visualbasic.val(data(i))) Next </pre> http://stackoverflow.com/questions/1115762/in-c-when-sending-a-parameter-to-a-method-when-should-we-use-ref-and-when/1357083#1357083 1 Answer by Nick Masao for In c# , when sending a parameter to a method, when should we use "ref" and when "out" and when without any of them? Nick Masao 2009-08-31T11:50:21Z 2009-08-31T11:50:21Z <p>In addition to Colin's detailed answer, you could also use out parameters to return multiple values from one method call. See for example the method below which returns 3 values.</p> <pre><code>static void AssignSomeValues(out int first, out bool second, out string third) { first = 12 + 12; second = false; third = "Output parameters are okay"; } </code></pre> <p>You could use it like so</p> <pre><code>static void Main(string[] args) { int i; string s; bool b; AssignSomeValues(out i, out b, out s); Console.WriteLine("Int value: {0}", i); Console.WriteLine("Bool value: {0}", b); Console.WriteLine("String value: {0}", s); //wait for enter key to terminate program Console.ReadLine(); } </code></pre> <p>Just make sure that you assign a valid value to each out parameter to avoid getting an error.</p> http://stackoverflow.com/questions/1041397/alternative-for-report-load-event-in-ms-access-2003 0 Alternative for Report.Load() event in Ms Access 2003 Nick Masao 2009-06-24T22:50:46Z 2009-06-25T03:01:37Z <p>I created an application in Access 2003 and continued to work on it on another computer with Access 2007. I created a report with a method that loads data from a recordset to some unbound fields on the report. This method takes three parameter values from three fields on the report. The report's data source is a query.</p> <p>I call the method in the report's Load() event, like <code>LoadSummary([field1],[field2],[field3])</code> and works fine in Access 2007.</p> <p>I switched back to Access 2003 and the Load event is unavailable. I've tried calling the method using the Open, Page and Activate events but all fail because it seems like when these events fire, the fields have not been populated with the data yet.</p> <p>Please help. How can I get this to work in Access 2003? Any eye openers are welcome. Thanks.</p> http://stackoverflow.com/questions/479865/file-compressed-by-gzip-grows-instead-of-shrinking 1 File Compressed by GZIP grows instead of shrinking Nick Masao 2009-01-26T13:56:33Z 2009-03-06T16:04:30Z <p>I used the code below to compress files and they keep growing instead of shrinking. I comressed a 4 kb file and it became 6. That is understandable for a small file because of the compression overhead. I tried a 400 mb file and it became 628 mb after compressing. What is wrong? See the code. (.net 2.0)</p> <pre><code>Public Sub Compress(ByVal infile As String, ByVal outfile As String) Dim sourceFile As FileStream = File.OpenRead(inFile) Dim destFile As FileStream = File.Create(outfile) Dim compStream As New GZipStream(destFile, CompressionMode.Compress) Dim myByte As Integer = sourceFile.ReadByte() While myByte &lt;&gt; -1 compStream.WriteByte(CType(myByte, Byte)) myByte = sourceFile.ReadByte() End While sourceFile.Close() destFile.Close() End Sub </code></pre> http://stackoverflow.com/questions/12276/what-are-the-most-common-things-you-should-be-able-to-do-in-a-programming-languag/12326#12326 0 Answer by Nick Masao for What are the most common things you should be able to do in a programming language? Nick Masao 2008-08-15T15:03:10Z 2009-01-30T15:09:23Z <p>Larry O'Brien has a list <a href="http://www.knowing.net/index.php/2006/06/16/15-exercises-to-know-a-programming-language-part-2-data-structures/" rel="nofollow">here</a> of 15 exercises for knowing a programming language. If you can successfully do all of them, then I think you are a master of the specific language. I think the list covers most of the essentials.</p> http://stackoverflow.com/questions/479865/file-compressed-by-gzip-grows-instead-of-shrinking/479968#479968 0 Answer by Nick Masao for File Compressed by GZIP grows instead of shrinking Nick Masao 2009-01-26T14:36:21Z 2009-01-26T14:36:21Z <p>Thank you all for good answers. Earlier on I tried to compress .wmv files and one text file. I changed the code to DeflateStream and it seems to work now. Cheers.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166916#166916 29 Answer by Nick Masao for What real life bad habits has programming given you? Nick Masao 2008-10-03T13:41:03Z 2008-10-03T13:41:03Z <p>Pressing Tab too often when I am writting an email expecting some words to autocomple te.</p> http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/8953#8953 15 Answer by Nick Masao for How can you tell whether you're ready to start your own blog? Nick Masao 2008-08-12T15:21:02Z 2008-08-12T15:21:02Z <p>Steve Yegge has a pretty good post here about why you should write blogs. I hope it'll be helpful and answer most of your questions.</p> <p><a href="http://steve.yegge.googlepages.com/you-should-write-blogs" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings"><a href="http://steve.yegge.googlepages.com/you-should-write-blogs" rel="nofollow">http://steve.yegge.googlepages.com/you-should-write-blogs</a></a></p> http://stackoverflow.com/questions/4783/interview-questions-for-an-intern/4876#4876 0 Answer by Nick Masao for Interview Questions for an Intern Nick Masao 2008-08-07T15:47:22Z 2008-08-07T16:21:29Z <P>@stu, For the tournament question,you <B>CAN NOT</B> have 1000 teams, maybe its a trick question.Simple explanation is 1000/2 = 500 (First round) then 500/2 = 250 (Second Round) then 250/2 = 125 ( Third round) then 125/2 = (62.5)???<B> Aha!!</B> so the number of teams has to be 2power(x) and (number mod 4 = 0) should be true. Plus jj33 answer is correct too.</P> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4809#4809 3 Answer by Nick Masao for What are some good free programming books? Nick Masao 2008-08-07T14:50:53Z 2008-08-07T14:50:53Z <P>If you haven't read it yet, I recommend the free PDF download <A href="http://www.greenteapress.com/thinkpython/thinkpython.pdf" rel="nofollow">Think Python</A>. It is a great book.</P> http://stackoverflow.com/questions/3337/what-programming-language-do-you-wish-would-catch-on/3391#3391 1 Answer by Nick Masao for What programming language do you wish would catch on? Nick Masao 2008-08-06T13:45:51Z 2008-08-06T13:45:51Z <P>Python</P> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3228#3228 2 Answer by Nick Masao for C# Convert Integers into Written Numbers Nick Masao 2008-08-06T09:46:18Z 2008-08-06T10:14:12Z <p>I use this code.It is VB code but you can easily translate it to C#. It works</p> <pre><code>Function NumberToText(ByVal n As Integer) As String<br><br> Select Case n<br>Case 0<br> Return ""<br><br>Case 1 To 19<br> Dim arr() As String = {"One","Two","Three","Four","Five","Six","Seven", _<br> "Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen", _<br> "Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"}<br> Return arr(n-1) &amp; " "<br><br>Case 20 to 99<br> Dim arr() as String = {"Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety"}<br> Return arr(n\10 -2) &amp; " " &amp; NumberToText(n Mod 10)<br><br>Case 100 to 199<br> Return "One Hundred " &amp; NumberToText(n Mod 100)<br><br>Case 200 to 999<br> Return NumberToText(n\100) &amp; "Hundreds " &amp; NumberToText(n mod 100)<br><br>Case 1000 to 1999<br> Return "One Thousand " &amp; NumberToText(n Mod 1000)<br><br>Case 2000 to 999999<br> Return NumberToText(n\1000) &amp; "Thousands " &amp; NumberToText(n Mod 1000)<br><br>Case 1000000 to 1999999<br> Return "One Million " &amp; NumberToText(n Mod 1000000)<br><br>Case 1000000 to 999999999<br> Return NumberToText(n\1000000) &amp; "Millions " &amp; NumberToText(n Mod 1000000)<br><br>Case 1000000000 to 1999999999<br> Return "One Billion " &amp; NumberTotext(n Mod 1000000000)<br><br>Case Else<br> Return NumberToText(n\1000000000) &amp; "Billion " _<br> &amp; NumberToText(n mod 1000000000)<br>End Select<br>End Function<br></code></pre> http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc/1707508#1707508 Comment by Nick Masao on What is best book for ASP.NET MVC? Nick Masao 2009-11-10T13:16:48Z 2009-11-10T13:16:48Z I have the book as well. Very well written. I suggest you read the Nerd Dinner sample chapter from the Professional ASP.NET MVC 1.0 before diving into this. Highly recommended. http://stackoverflow.com/questions/1608190/how-to-simplify-this-memorystream-code/1608255#1608255 Comment by Nick Masao on How to simplify this MemoryStream code Nick Masao 2009-10-23T09:57:14Z 2009-10-23T09:57:14Z This did it. Thanks http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556837#1556837 Comment by Nick Masao on Most horrifying line of code you have ever seen? Nick Masao 2009-10-14T14:11:48Z 2009-10-14T14:11:48Z I think this is the best so far http://stackoverflow.com/questions/1041397/alternative-for-report-load-event-in-ms-access-2003/1041968#1041968 Comment by Nick Masao on Alternative for Report.Load() event in Ms Access 2003 Nick Masao 2009-06-25T11:42:41Z 2009-06-25T11:42:41Z Thanks this worked. I had to call the method from both the header and detail section format event. http://stackoverflow.com/questions/305223/jon-skeet-facts/519574#519574 Comment by Nick Masao on Jon Skeet Facts? Nick Masao 2009-02-11T12:54:55Z 2009-02-11T12:54:55Z #2 is really good. http://stackoverflow.com/questions/12276/what-are-the-most-common-things-you-should-be-able-to-do-in-a-programming-languag/12326#12326 Comment by Nick Masao on What are the most common things you should be able to do in a programming language? Nick Masao 2009-01-30T15:13:00Z 2009-01-30T15:13:00Z He moved his blog to wordpress,but I have updated the link. Cheers http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/167347#167347 Comment by Nick Masao on Language showdown: Convert string of digits to array of integers? Nick Masao 2008-10-04T12:57:47Z 2008-10-04T12:57:47Z .net 2.0, but you are right. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164660#164660 Comment by Nick Masao on What real life bad habits has programming given you? Nick Masao 2008-10-03T13:39:13Z 2008-10-03T13:39:13Z I have the manual reading problem too. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88188#88188 Comment by Nick Masao on What's your favorite "programmer" cartoon? Nick Masao 2008-09-18T11:48:36Z 2008-09-18T11:48:36Z me too, the mandatory fun days are'nt that funny.