Tagged Questions
The platform-agnostic tag has no wiki summary.
26
votes
29answers
4k views
What is the worst 'gotcha' you've experienced?
I'd like to hear some of the more pernicious 'gotchas' that exist out there. Any language, system, or library is fine.
19
votes
6answers
1k views
How does Amazon's Statistically Improbable Phrases work?
How does something like Statistically Improbable Phrases work?
According to amazon:
Amazon.com's Statistically Improbable
Phrases, or "SIPs", are the most
distinctive phrases in the text of
...
14
votes
6answers
10k views
What are some GUI clients available for Mercurial?
And where would I find them?
I happen to be stuck with Windows at the moment, but to appeal to general interest, other platforms would be good too.
12
votes
14answers
2k views
How do you evaluate a Software Architect?
What characteristics do you find more valuable in a software architect? How to evaluate one?
For example:
Is in-depth knowledge of a stack more important than a good overall knowledge of different ...
11
votes
4answers
534 views
Why is loading inline JavaScript inside views with AJAX bad?
We have a tabbed interface, inside one of these tabs is a privacy form. This privacy form, as well as using an external JavaScript file for the bulk of its work, also uses inline JavaScript as it ...
8
votes
7answers
471 views
What does “Core” mean in the Context of Library Design?
I often see other developers naming libraries with "CORE". What does it actually mean?
7
votes
5answers
923 views
3D Audio Engine
Despite all the advances in 3D graphic engines, it strikes me as odd that the same level of attention hasn't been given to audio. Modern games do real-time rendering of 3D scenes, yet we still get ...
6
votes
17answers
1k views
Database design for database-agnostic applications
What do I have to consider in database design for a new application which should be able to support the most common relational database systems (SQL Server, MySQL, Oracle, PostgreSQL ...)?
Is it even ...
5
votes
4answers
297 views
Determining whether a file is a duplicate
Is there a reliable way to determine whether or not two files are the same? For example, two files with the same size and type may or may not be the same binarilly (yeah, I know it's not really a ...
5
votes
4answers
416 views
Cloud Agnostic Architecture?
I'm doing some architecture work on a new solution which will initially run in Windows Azure. However I'd like the solution (or at least the architecture/design) to be Cloud Agnostic (to whatever ...
4
votes
2answers
1k views
Encrypted data in URL and salt
When passing symetrically encrypted data in a URL or possibly storing encrypted data in a cookie, is it resonable and/or nessassary and/or possible to also pass the Symetric Encryption IV (Salt) in ...
4
votes
5answers
744 views
URL Design for SSL-Secured SaaS Application
I am developing an application using the ASP.NET MVC platform, which will be exposed as a service over the web (the SaaS model). I am trying to determine the best way to partition the URL namespace ...
4
votes
10answers
702 views
Working without stored procedures or triggers
We have been working on a complex database and client interface for the last 18 months. We are regularly adding new functionnalities to this application, and it is now used by tens of users on a daily ...
4
votes
20answers
837 views
What is the biggest drawback of <your favorite database>?
We all have our favourite database. If you look objectively at your chosen database, what drawbacks does it have and what could be improved?
The rules:
One reply per drawback with;
a short ...
3
votes
2answers
1k views
WCF client (Add Service Reference) hates WebGet and WebInvoke…really, it does
I have been working to create WCF services that will operate independent of .Net clients. Thanks to Google and StackOverflow, I have been able to create both simple xml and json services without Soap ...
3
votes
10answers
2k views
What's the SQL query to list all rows that have 2 column sub-rows as duplicates?
Ok I have a table that has redundant data and I'm trying to identify all rows that have duplicate sub-rows (for lack of a better word). By sub-rows I mean considering COL1 and COL2 only.
So let's ...
3
votes
12answers
545 views
CMS which is not a portal system
this is a repost of a question not correctly answered -- sorry about that.
We are looking for a reasonably priced CMS , with source code, in which we can ditch the portal system. There are notorious ...
2
votes
5answers
181 views
How to determine if app is written with mobile web frameworks?
I'm doing market research of the competition and would like to know whether they have written their apps native or not.
2
votes
4answers
89 views
.NET - Is the MSB of int32 platform agnostic?
I have the following code for getting the MSB (Most Significant Bit) from a non-negative integer, Int32 to be more specific:
private static readonly int[] powersOf2 = new int[]
...
2
votes
7answers
947 views
C++ Converting a time string to seconds from the epoch
I have a string with the following format:
2010-11-04T23:23:01Z
The Z indicates that the time is UTC.
I would rather store this as a epoch time to make comparison easy.
What is the recomended ...
2
votes
2answers
82 views
Precompiling JSPs: Is that server specific?
Since JSPs adhere to a standard API, can I precompile them in my projects and then deploy the result on any server?
Specifically, I'm using Tomcat, JBoss and WebSphere.
2
votes
3answers
133 views
What should not be inside an MVC view?
From the limited amount of people that I've talked to regarding MVC web frameworks, I've heard people say that, forgetting about forms, a view file should ideally contain HTML markup, string ...
2
votes
6answers
129 views
Detecting Overanalysis
How do I know if I am overanalysing?
I've been chasing a problem the last 3 days. I've been through many designs and reached a complex solution using about 3 classes. Having discussed with a ...
1
vote
2answers
335 views
Transaction Processing: When does a rollback occur?
Recently this question was posted about the definition of what a transaction is in a general context. A common answer to this question was that a transaction should be an atomic unit of work
My ...
1
vote
3answers
287 views
Antialiasing alternatives
I've seen antialiasing on Windows using GDI+, Java and also that provided by Photoshop and Gimp. Are there any other libraries out there which provide antialiasing facility without depending on ...
1
vote
2answers
1k views
Bluetooth from the Command Line
How do I access files on another device/machine over Bluetooth from the command line?
1
vote
1answer
187 views
Platform agnostic .NET bitness - from OS or calling application?
I know that platform agnostic .NET applications "float up" to the bitness of the operating system. But what about a .NET assembly that is a library, not an executable, being called from a non-.NET ...
1
vote
4answers
1k views
How do I send a patch to another developer and avoid merge conflicts?
How do I get a patch from a commit in order to send it to another developer? And how do I best avoid a merge conflict with this patch when merging our trees at a later date?
If you know how please ...
1
vote
3answers
235 views
How best to decide on an MVC framework between developers with different backgrounds?
Let's say that Developer Alex has a strong background in Perl and is familiar with the Catalyst framework. Developer Bob, meanwhile, has a strong background in Ruby and is familiar with the Rails ...
0
votes
4answers
47 views
How do I send a value with my HTML that is accessible from Javascript?
Often the Javascript on a webpage will need to be able to access variables that are known on the server. For example, the user's username. Suppose that we don't want to make a JSON/XML request as that ...
0
votes
0answers
14 views
springboard-like smooth snap back for onscreen objects
I'm trying to figure out a nice snap-back method for when an object's momentum (which is illusory, it is just a decrementing increment amount) lands it "off center" onscreen. This is for a cover-flow ...
0
votes
1answer
174 views
When do we have web server and an application server as two separate physical tiers?
Typically when an application is deployed on a server farm, it has a central database, one or more application servers and one or more web servers.
Since all the services in the application tier are ...
0
votes
4answers
978 views
Implementing Clone() method in base class
Here's a Clone() implementation for my class:
MyClass^ Clone(){
return gcnew MyClass(this->member1, this->member2);
}
Now I have about 10 classes derived from MyClass. The ...
0
votes
4answers
211 views
Creating dynamic maps on the web
My company uses a sales model of dealers, territory managers and regional managers, each with a different level of area scope (IE manage based on zips codes, states, or regions.)
I want to create a ...