User Nick Masao - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:23:12Zhttp://stackoverflow.com/feeds/user/487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1608190/how-to-simplify-this-memorystream-code2How to simplify this MemoryStream codeNick Masao2009-10-22T15:51:55Z2009-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#15654500Answer by Nick Masao for Casting to string versus calling ToStringNick Masao2009-10-14T10:24:45Z2009-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#1673470Answer by Nick Masao for Language showdown: Convert string of digits to array of integers?Nick Masao2008-10-03T15:12:07Z2009-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#13570831Answer 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 Masao2009-08-31T11:50:21Z2009-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-20030Alternative for Report.Load() event in Ms Access 2003Nick Masao2009-06-24T22:50:46Z2009-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-shrinking1File Compressed by GZIP grows instead of shrinkingNick Masao2009-01-26T13:56:33Z2009-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 <> -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#123260Answer by Nick Masao for What are the most common things you should be able to do in a programming language?Nick Masao2008-08-15T15:03:10Z2009-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#4799680Answer by Nick Masao for File Compressed by GZIP grows instead of shrinkingNick Masao2009-01-26T14:36:21Z2009-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#16691629Answer by Nick Masao for What real life bad habits has programming given you?Nick Masao2008-10-03T13:41:03Z2008-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#895315Answer by Nick Masao for How can you tell whether you're ready to start your own blog?Nick Masao2008-08-12T15:21:02Z2008-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#48760Answer by Nick Masao for Interview Questions for an InternNick Masao2008-08-07T15:47:22Z2008-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#48093Answer by Nick Masao for What are some good free programming books?Nick Masao2008-08-07T14:50:53Z2008-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#33911Answer by Nick Masao for What programming language do you wish would catch on?Nick Masao2008-08-06T13:45:51Z2008-08-06T13:45:51Z<P>Python</P>http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3228#32282Answer by Nick Masao for C# Convert Integers into Written NumbersNick Masao2008-08-06T09:46:18Z2008-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) & " "<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) & " " & NumberToText(n Mod 10)<br><br>Case 100 to 199<br> Return "One Hundred " & NumberToText(n Mod 100)<br><br>Case 200 to 999<br> Return NumberToText(n\100) & "Hundreds " & NumberToText(n mod 100)<br><br>Case 1000 to 1999<br> Return "One Thousand " & NumberToText(n Mod 1000)<br><br>Case 2000 to 999999<br> Return NumberToText(n\1000) & "Thousands " & NumberToText(n Mod 1000)<br><br>Case 1000000 to 1999999<br> Return "One Million " & NumberToText(n Mod 1000000)<br><br>Case 1000000 to 999999999<br> Return NumberToText(n\1000000) & "Millions " & NumberToText(n Mod 1000000)<br><br>Case 1000000000 to 1999999999<br> Return "One Billion " & NumberTotext(n Mod 1000000000)<br><br>Case Else<br> Return NumberToText(n\1000000000) & "Billion " _<br> & 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#1707508Comment by Nick Masao on What is best book for ASP.NET MVC?Nick Masao2009-11-10T13:16:48Z2009-11-10T13:16:48ZI 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#1608255Comment by Nick Masao on How to simplify this MemoryStream codeNick Masao2009-10-23T09:57:14Z2009-10-23T09:57:14ZThis did it. Thankshttp://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556837#1556837Comment by Nick Masao on Most horrifying line of code you have ever seen?Nick Masao2009-10-14T14:11:48Z2009-10-14T14:11:48ZI think this is the best so farhttp://stackoverflow.com/questions/1041397/alternative-for-report-load-event-in-ms-access-2003/1041968#1041968Comment by Nick Masao on Alternative for Report.Load() event in Ms Access 2003Nick Masao2009-06-25T11:42:41Z2009-06-25T11:42:41ZThanks 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#519574Comment by Nick Masao on Jon Skeet Facts?Nick Masao2009-02-11T12:54:55Z2009-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#12326Comment by Nick Masao on What are the most common things you should be able to do in a programming language?Nick Masao2009-01-30T15:13:00Z2009-01-30T15:13:00ZHe moved his blog to wordpress,but I have updated the link. Cheershttp://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/167347#167347Comment by Nick Masao on Language showdown: Convert string of digits to array of integers?Nick Masao2008-10-04T12:57:47Z2008-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#164660Comment by Nick Masao on What real life bad habits has programming given you?Nick Masao2008-10-03T13:39:13Z2008-10-03T13:39:13ZI have the manual reading problem too. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88188#88188Comment by Nick Masao on What's your favorite "programmer" cartoon?Nick Masao2008-09-18T11:48:36Z2008-09-18T11:48:36Zme too, the mandatory fun days are'nt that funny.