James Schek
|
Registered User
|
I work on GIS-enabled applications.
In a past life, I worked on radiation sensors, command and control systems, supercomputing and massively parallel applications, and a smattering of other small projects.
|
|
Dec 3 |
answered | Java Error using Vectors: unchecked call to add(E) |
|
Dec 2 |
answered | How to be a senior developer and career move? |
|
Nov 30 |
comment |
C# Creating a log system Chainsaw + log4net = Awsome. |
|
Nov 20 |
comment |
Why doesn’t C++ reimplement C standard functions with C++ elements/style? "...Today, we think iterators are so 1990..." I hate to break it to you, but many C++, C#, and Java developers are still living in the 80's. If I have to explain one more time why int i=0; for(i=0;...) is bad, I'm going to scream! |
|
Nov 20 |
comment |
How to manage a dictionary of lazily created objects in a multithreaded environment in .NET? @Skirwan: that's a fiarly important constraint that needs to be added to the question. |
|
Nov 19 |
answered | Is compiler allowed to ignore inline in case of template specialization? |
|
Nov 19 |
answered | asp.net or silverlight map viewer with offline support? |
|
Nov 17 |
comment |
SQL Server Spatial Datatypes You have to pay special attention to argument ordering in SQL Server. I believe the x,y ordering is different between geometry and geography (or it was during the beta releases). |
|
Nov 16 |
answered | Why not catch general Exceptions |
|
Nov 16 |
answered | std::vector::reserve performance penalty |
|
Nov 9 |
comment |
How to convert string[] to ArrayList? Why not just leave it as the Array (or more accurately, IEnumerable<string>) and use the LINQ Extensions? |
|
Nov 9 |
comment |
Issue with Zipped Streams from .Net and reading them from Java @Stan, Please post your code. |
|
Nov 9 |
revised |
Creating custom Google (or OpenLayers?) maps added 1215 characters in body |
|
Nov 9 |
answered | Creating custom Google (or OpenLayers?) maps |
|
Nov 5 |
comment |
Developing ArcMap extension .Net books? @emptyset Which workshop? One of the multiday classes or a 1-hour session at the User Conference? |
|
Nov 3 |
comment |
Should I inherit from std::exception? It's especially painful for Java developers where rethrow is done using "throw e;" |
|
Nov 3 |
comment |
Should I inherit from std::exception? I think the take away is that "throw e;" is evil, and "throw;" is ok. |
|
Nov 3 |
answered | Should I inherit from std::exception? |
|
Nov 2 |
answered | What silverlight dev must learn to use arcGIS silverlight? |
|
Nov 2 |
answered | Writing an image processing application for analysis of satellite imagery |
|
Oct 27 |
accepted | IBM Websphere OutOfMemoryException. |
|
Oct 22 |
awarded | ● Nice Answer |
|
Oct 20 |
answered | Subversion repository back up |
|
Oct 12 |
answered | How do you know what SRID to use for a shp file? |
|
Oct 5 |
comment |
How to test GUI for color blind person? This is an important subject for all developers to consider. In the US, most businesses producing software are subject to Section 508 regulations. Even in industiries that have exemptions (i.e. military), there is still a lot of value in considering UI accessibility. |
|
Oct 5 |
revised |
How to test GUI for color blind person? edited tags |
|
Oct 1 |
comment |
What advantages can I get from learning C++ if I’m mainly a C# Programmer? + For the after thought. ANY langauge can be learned in a few months, but mastering a language takes years. Look around at the number of "senior" level developers who struggle with concepts such as generic, template, or declaritive programming which are key concepts in C# or C++. |
|
Oct 1 |
answered | What advantages can I get from learning C++ if I’m mainly a C# Programmer? |
|
Sep 30 |
comment |
Can anyone explain to me(beginner) in plain english what “Schema” means? @Zaki--A schema is a "definition" of sorts of data, such as XML file or database. In that regard, semantic is similar to schema, but they are not the same. |
|
Sep 30 |
comment |
Can anyone explain to me(beginner) in plain english what “Schema” means? Somehow, this reminds me of the question "what's the meaning of semantic"? |
|
Sep 29 |
comment |
Memory corrupt in adding string to vector<string> loop I thought with VS2008 it uses 0xCDCDCDCD for heap and 0xCCCCCCCC for stack? |
|
Sep 29 |
answered | reading a jpeg file in c#. |
|
Sep 28 |
comment |
Do threads clean-up after themselves in Win32/MFC and POSIX? Mark: Sounds like the standard memory management rules apply. The only "resources" that is specific to the thread itself is its stack and you are saying that the thread's stack is cleaned up. As far as the other resources, I'm using RIAA techniques (or equivalent wrappers) to avoid leaks. |
|
Sep 28 |
revised |
Do threads clean-up after themselves in Win32/MFC and POSIX? added 405 characters in body |
|
Sep 28 |
comment |
Do threads clean-up after themselves in Win32/MFC and POSIX? Basically, I wanted to make sure there wasn't a "destory thread" method that I should have been calling that I overlooked. |
|
Sep 28 |
asked | Do threads clean-up after themselves in Win32/MFC and POSIX? |
|
Sep 28 |
comment |
Garbage collection vs. non garbage collection programming languages SP != GC. GC generally involves an active process of findng and reclaiming of unused memory. SP is a passive mechanism that extends RAII semantics to the heap. They are both forms of automatic memory management, but garbage collection is distinctly different than smart pointers. The regular "pointers" (i.e. referenes) in Java are not "smart" in any way like C++ smart pointers. |
|
Sep 23 |
revised |
Closest grid square to a point in spherical coordinates Added GIS tag to help get more hits. |
|
Sep 19 |
awarded | ● Yearling |
|
Sep 17 |
comment |
Hiring a Boss: Looking For The Right Attitude I don't think that warrants a down vote when I'm pointing at the primary source of that info, but I've provided an alternative link that does not require registration. |
|
Sep 17 |
revised |
Hiring a Boss: Looking For The Right Attitude provided alternative link |
|
Sep 15 |
comment |
What software/components do I need to build windows froms application hosts ESRI maps Ahmed--you need to describe your application in more detail. |
|
Sep 15 |
comment |
why is this namespace added by default “System.Collections.Generic”? If you are given a non-generic collection, you can still invoke collection.Cast<TYPE>() to get back a strongly typed enumerator. |
|
Sep 15 |
answered | Garbage collection vs. non garbage collection programming languages |
|
Sep 15 |
comment |
How to become a “faster” programmer? LOL--I know what you're saying. But you'll be amazed by often this slips by unnoticed, as opposed to saying "multiply by 4". |
|
Sep 11 |
comment |
In Java, should variables be declared at the top of a function, or as they’re needed? Most of the IDE tools I've seen won't catch a conceptually-not-used, such as "MyObject o = new MyObject(); o.SetFlag(true);" and then never used again. Sure, it was technically used, but may not serve any real purpose. |
|
Sep 11 |
comment |
How to become a “faster” programmer? +1 This is so true. It doesn't mean you have to be "perfect"; all of us will make mistakes. But if we do things the best way possible the first time, the consequence of those mistakes will be much smaller. |
|
Sep 11 |
answered | How to become a “faster” programmer? |
|
Sep 11 |
answered | In Java, should variables be declared at the top of a function, or as they’re needed? |
|
Sep 9 |
comment |
Meaning of “this” for a struct (C#) I felt a great disturbance in the Force, as if millions of voices suddenly cried out in terror and were calling for const correctness. Please don't show this to my C++ coworkers. :-) |
