Moishe

1,095
Reputation
56 views

Registered User

Name Moishe
Member for 1 year
Seen 28 mins ago
Website
Location Kirkland, WA
Age 38
I've been writing software professionally since 1987. I got my start in a mix of Turbo Pascal & 8086 Assembly, moved on to C++, and now I write code primarily in Java and Javascript.
23h
accepted Whats happening when switching themes in Sugar CRM or similar kind of application
2d
comment Algorithm - How to delete duplicate elements in a list efficiently?
I was about to downvote based on your first sentence "if no ordering you're stuck with O(n^2)" b/c you can solve it with a hashtable. Then I saw your last section about the ArrayList of a HashSet and, well, there ya go. Maybe downvoters didn't read your whole response...?
2d
comment Pathfinding with weighted routes
Doesn't the "movement only towards destination" restriction negate the possibility of looping?
Nov
23
comment C++ passing const string references in methods?
Maybe my C++ is too rusty. But if you do: "std::string& name; name = inTextureName;" and then inTextureName goes out of scope, won't name be pointing at something random on the stack?
Nov
23
answered C++ passing const string references in methods?
Nov
23
comment Programmatically check if a number is a palindrome
You can do this without allocating memory by eliminating the array, if you understand what the string conversion is doing. That's what I was trying to show.
Nov
23
answered Programmatically check if a number is a palindrome
Nov
22
accepted What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Nov
22
answered What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Nov
22
answered How to access Google/Gmail/Gchat/Reader user icons
Nov
20
comment Code Golf: Perfect Tic-Tac-Toe
I think "artificial-intelligence" isn't a correct tag for this. There are only 2^9 possible board combos (2^7 with 4-way rotation, 2^6 with mirroring). The whole table (input & output) can fit into 96 bytes. "A curious game, the only winning move is not to play."
Nov
19
answered Any great books of algorithm puzzles to practice whiteboard coding with?
Nov
16
answered Validating user input with JavaScript
Nov
13
comment From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values
Upvoted for concise example where it doesn't work
Nov
13
comment From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values
Can you give an example where you'd be throwing out "good values" on other columns when you delete a row? I'm pretty sure it doesn't work that way.
Nov
13
answered “ghost” form submissions
Nov
13
answered Memory Leak Analysis
Nov
12
answered When career conflicts with company
Nov
12
answered Preparation for a c++ interview
Nov
12
answered Tips on rendering html on client
Nov
12
answered XMPP chat sent/received message synchronization
Nov
12
answered communication between Java and C#
Nov
12
answered Best approach to parse text files that contain multiple types of delimiters?
Nov
11
accepted introductory google maps
Nov
11
answered Passing variable with javacript function
Nov
11
answered What is rgb formula for a gradient going from white to blue?
Nov
11
answered Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped?
Nov
11
answered What is the complexity of this algorithm?
Nov
11
comment How do you get a data value associated with a specific col,row from a 2-d array in java?
Are you trying to implement a sparse 2d array? You could use a Map<Pair<int,int>,int> to do that.
Nov
11
comment How do you get a data value associated with a specific col,row from a 2-d array in java?
Not sure what 'colArray' does in this code.
Nov
11
comment How do you get a data value associated with a specific col,row from a 2-d array in java?
Even with a linked list, you need a column for every row. You need m x n collections, not 2.
Nov
11
revised How do you get a data value associated with a specific col,row from a 2-d array in java?
added 11 characters in body
Nov
11
comment Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?
You're right. That doesn't work. I tried it with eval() and Firebug will let you set a breakpoint when you use that. Is there a reason you can't use eval() and need to set a script tag? Even more generally, is there a reason you can't serve this dynamic javascript as a separate .js file on your server? What problem are you trying to solve?
Nov
11
comment Is there a known implementation of an indexed linked list?
I think what you're describing is the first step towards a skip list.
Nov
11
answered Is there a known implementation of an indexed linked list?
Nov
11
answered How do you get a data value associated with a specific col,row from a 2-d array in java?
Nov
10
comment Whats happening when switching themes in Sugar CRM or similar kind of application
Just conjecture, they could use XHR to post the new theme back and/or retrieve existing themes.
Nov
10
answered Whats happening when switching themes in Sugar CRM or similar kind of application
Nov
10
answered Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?
Nov
9
answered How to remove HTML tag in Java
Nov
9
revised static functions in JScript?
added 3 characters in body
Nov
9
answered static functions in JScript?
Nov
8
answered Resume question regarding relocation
Nov
8
answered What’s the difference between a derived object and a base object in c++?
Nov
8
comment How to gracefully handle iframe breaker?
Caja re-writes javascript to sanitize it and only allow it access to a subset of the DOM. One of the things the cajoled code is not allowed access to is 'top'. This is a good solution when the author of the iframe you're embedding knows their content is going to be embedded, because you need some standards around what you'll expose to their code. A good example of this is Apache Shindig (incubator.apache.org/shindig), which allows gadget embedding and cajoling.
Nov
8
answered How to answer what are your strengths and what are your weakness question during Interview ?
Nov
8
revised What is a good (coding) platform to use for telephone coding interview?
deleted 160 characters in body
Nov
8
answered What types of topics, and questions can be expected when interviewing for entry level programming/IT positions?
Nov
8
answered What is a good (coding) platform to use for telephone coding interview?
Nov
8
answered How to gracefully handle iframe breaker?