pbh101

1,098
reputation
86 views

Registered User

name pbh101
member for 1 year
seen Dec 18 at 22:45
website
location US
age 22
Software developer for IMC-Chicago. '09 CS Notre Dame grad.

Enjoy coding in C# and Python.

On my (proximate) coding todo list: Lisp, SICP, jQuery, Refactoring, and Design Patterns.
Nov
15
comment Is a makefile basically the same thing as a batch file?
Makefiles are a language to describe dependencies. Although they are frequently used to build a project, they are actually a generic dependency-management tool.
Nov
6
revised javascript if alternative
edited tags
Nov
2
comment looping through enum values
It also answers the question for people searching for it in Obj-C. Added that tag back.
Oct
30
awarded  Popular Question
Oct
21
comment C# equivalent of python slice operation
What type is newlist before the .ToList(). That var isn't helping readability :).
Oct
21
comment filtering lists in python
Never mind. I totally missed the membership test in the if statement the first seven or so times I read the function. Yep, O(n^2).
Oct
21
comment filtering lists in python
@Chris - I believe Triptych and hughdbrown are pointing out the append operation on bar is likely not constant time (a quick but unmotivated docs.python.org check didn't find much). And I do think SilentGhost meant a constant.
Oct
5
awarded  Nice Question
Sep
11
answered Please explain C# syntax to a vb-er
Sep
3
comment Which Database can i Safely use a GUID as Primary Key besides SQL Server?
are they all identical implementations of the same algorithm? can you mix MS-sourced GUIDs and Oracle-sourced SYS_GUIDs without fear of conflicts?
Sep
2
answered Which Database can i Safely use a GUID as Primary Key besides SQL Server?
Sep
2
comment Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>
@TomHawtin. Understood, but I'm fairly new at Java and my expectation, based on generic type syntax and C++, was that the generics go after the name. So, not an irregularity per se, but maybe a mismatch between syntax and my mental model based on prior, partial experience.
Sep
2
comment Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>
Thanks much! CompositeKey is actually a wrapper around an ordered collection and a hashcode() override. Here I was using the composite key essentially as the primary key for mapping a domain from one representation (in-house software) into another (3rd-party). So CompositeKey / T, in this case, is just temporary glue to get K and V aligned.
Sep
1
comment Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>
Well, I've pretty much only read complaints about Java generics. This syntax irregularity gives me a reason too. I was trying: Mpa<K, V> mergeMaps<T, K, V>(Map<...>, Map<...>) Thanks much!
Sep
1
comment Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>
haven't compiled yet, but IntelliJ stopped complaining :)
Sep
1
asked Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>
Aug
15
awarded  Yearling