PintSizedCat

2,183
reputation
402 views

Registered User

name PintSizedCat
member for 1 year
seen 2 hours ago
website
location London
age 26
Java Programmer by trade (not choice) Passion in x86 and low level programming
Nov
23
awarded  Favorite Question
Nov
19
comment C++ Object without new
If this creates an object on the stack can it live past the function it was created in's scope?
Nov
19
comment C++ Object without new
Brilliant, thanks.
Nov
19
asked C++ Object without new
Oct
22
awarded  Popular Question
Oct
15
awarded  Nice Answer
Oct
15
revised Listing files in Java without using java.io
added 197 characters in body
Oct
15
answered Listing files in Java without using java.io
Oct
15
comment Listing files in Java without using java.io
This is a pretty crazy homework assignment if it is one. If it's not it's a pretty crazy requirement. Makes no sense at all.
Oct
15
answered How to match book title and isbn with regex?
Oct
15
comment How to create a excel file with sheets in C#?
This should be how you do it, don't use any kind of third party libraries. The PIAs are really easy to use though you have to make sure of the releasing at the end see support.microsoft.com/default.aspx?scid=kb;en-us;… .
Oct
15
answered Passing large C structure through JNI efficiently
Oct
8
awarded  Popular Question
Oct
5
awarded  Nice Answer
Oct
1
awarded  Necromancer
Sep
16
awarded  Yearling
Sep
2
awarded  Nice Answer
Aug
31
awarded  Popular Question
Aug
27
comment Optimize memory usage of a collection of Strings in Java
Interning a string will not mean that it will 'never go away', you can garbage collect the perm gen though it may not be so efficient it can and will get garbage collected if there are no strong references to it.
Jul
21
comment WinForms Combox - Adding item to a databound list and then setting that to be the selecteditem
Why are you doing Count + 1, I thought Count would be 1 base at least so if anything it'd be Count -1.
Jul
21
comment Why use Finally in Try … Catch
Well, you can do something about it, you can design/write your code so it doesn't use Exceptions for flow control and don't use the finally block for similar things. Finally should be used for cleaning up, which should always occur.