1,691 reputation
111
bio website
location
age
visits member for 1 year, 10 months
seen 15 hours ago
stats profile views 69

May
8
comment How to resolve all merge conflicts in favor of the just-popped stash?
Do you have git configured to use a merge tool like KDiff3?
May
8
comment What programming language compiles to Java?
This question makes no sense. You might want to reword it. You don't compile something into a programming language.
May
6
answered Is it possible to have different types of nodes in a neo4j graph database
May
3
comment Why (not how) must an Object conform to the javadoc of equals()?
This is a strange question. It's so that you always know what you're getting when you call .equals() on an Object. Without a set of rules, you wouldn't really know what .equals() was giving you. But that seems fairly obvious, so I'm not really sure what you're looking for.
May
1
answered C# LINQ EntityFramework trouble
Apr
26
comment C# NullReferenceException in class validation method
This will throw an exception if a caller attempts to set AgentId=null;
Apr
26
answered C# NullReferenceException in class validation method
Apr
19
comment (C#) Reading a part of a line
What's the problem that you're having? It doesn't look like you've tried to implement that logic at all.
Apr
19
comment Checking event entries/writing to event log only once
The snippet you provided is confusing.. That foreach will never do anything since there are no entries in your eventLog object.
Apr
5
comment Object reference not set to an instance of an object with class
Just instantiate an array in the ProdData constructor.
Apr
5
answered java.lang.NullPointerException when doing .getImage
Apr
3
comment C# Asp.net call a method every x minutes
System.Threading.Timer
Apr
3
comment The type or namespace name 'type/namespace' could not be found.. - Asp.Net - C#
Are you uploading all of the proper binaries?
Apr
3
comment Getting unique hardware ID changes everytime C#
Not to mention the fact that tying a piece of software to one machine is pretty shitty.
Apr
2
comment Is it a good practice to use keyword “this” to access instance function or members?
More or less a matter of personal preference.
Mar
15
comment Controlling a local redis server from python code
Try to connect to it and see if your connection is denied? Ask the sentinels which master they know about? There are a few options here.
Mar
15
comment How to tell a Client where the new Redis master is using Sentinel
You wouldn't want to load balance using the slave. If you want load balancing, you should have multiple nodes running and come up with logic in your client to handle which keys will go into which nodes.
Mar
15
answered How to tell a Client where the new Redis master is using Sentinel
Mar
7
comment Method: Not all code paths return a value
You should thing about making bounds an out parameter.
Mar
7
comment How can I get the name of a class from inside the base class?
You'd have to override the method in your subclass.