Tagged Questions
The simplicity tag has no wiki summary.
96
votes
39answers
10k views
Why do people use Java?
I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level. A good language ...
17
votes
22answers
636 views
What is “Simple”?
I've been thinking about the definition of "simple" for a while now, spurred by things like "Real Simple" magazine, which is essentially a vehicle for advertisements for more stuff to buy that clutter ...
12
votes
6answers
5k views
SQLAlchemy is convoluted?
This may seems rather argumentative, but I just went through SQLAlchemy's ORM tutorial and ended up with the following code:
from sqlalchemy import create_engine
from sqlalchemy import Table, Column, ...
8
votes
12answers
835 views
What's a programming example of: “If you hear hooves, think horses not zebras”?
In medical school they teach students:
"If you hear hooves, think horses not zebras".
In other words, look first at the simplest explanation for a problem.
What's a programming example of this?
8
votes
5answers
5k views
What XNA based 3D terrain and physics libraries exist?
I'm planning on creating a game that contains a landscape with objects on it. The landscape will be defined using a heightfield, and the objects will move about on top of, and fly over the terrain. If ...
5
votes
2answers
161 views
Should you avoid object inheritence when persisting to an RDBMS solution
While looking at this question: Why all the Active Record hate? I found myself thinking of a general theme that ActiveRecord pattern is good when you have little or no inheritence in your objects, and ...
2
votes
2answers
256 views
Is it suggested to use h:outputText for everything?
I'm new to JSF (just started learning about it 4 days ago) and I'm a bit confused about the usage of h:outputText. I know that is a simple tag, but in most examples I've seen, it's used to output very ...
2
votes
2answers
140 views
Best db for writing a simple document CMS in Ruby (learning project)
I want to write a simple content management system in Ruby as a project to learn more Ruby programming.
But I am having trouble deciding on what database solution should be used to store the ...
2
votes
1answer
54 views
Elegant representations of graphs in R^3
If I have a graph of a reasonable size (e.g. ~100 nodes, ~40 edges coming out of each node) and I want to represent it in R^3 (i.e. map each node to a point in R^3 and draw a straight line between any ...
2
votes
1answer
249 views
What code could be used as a string aggregator for Sybase? (Like Oracle's stragg)
In my travels in Oracle, the 'stragg' function, or 'String Aggregator' was life-saving when I had to create dynamic SQL queries on the fly.
You can read up about it here: ...
1
vote
3answers
37 views
How do I make an easy-to-update makefile?
My makefile looks something like this:
FOO_OBJECT_FILES := $(OBJDIR)/Foo.cpp.o
BAR_OBJECT_FILES := $(OBJDIR)/Bar.cpp.o $(OBJDIR)Bar.c.o
ALL_OBJECT_FILES := $(FOO_OBJECT_FILES) $(BAR_OBJECT_FILES)
...
1
vote
1answer
48 views
Looking for neat, intuitive, idiomatic way to clip the values I set in NumericUpDown control using C#?
I am using the code below to achieve the functionality I desire: when the user is editing a value in a particular NumericUpDown control, and presses either k, K, m, or M, I want the currently entered ...
1
vote
2answers
107 views
Why are Functional lists always so simple?
Most functional languages seem to define thier main and most frequently used list data structure as head:h2:h3:last:nil.
No tail pointer or size attribute just a singly linked list with some sort of ...
1
vote
3answers
172 views
Most developer & user friendly language similar to Python?
I've switched languages a million times already (well, four is a big number) while coding mainly GUI applications, and now I want to finally end my nomadic ways.
Before I try to learn another ...
1
vote
8answers
2k views
multi-dimensional ArrayList
Just a very small question... I seem to run into too much complexity here: I have to realize an index-structure like {42, someString}. I tried:
Object entry[][] = new Object[1][1];
...
0
votes
2answers
116 views
Modern functional language with simple syntax? [closed]
I'm interested in trying to learn some modern/advanced features of functional languages. I have some basic knowledge of some simple functional concepts like closures etc. from Lua, Go and from trying ...
0
votes
2answers
49 views
More simple logic condition to check non-empty requirements
I have some simple logic to check if the field is valid:
private boolean isValidIfRequired(Object value) {
return
(required && !isEmpty(value)) || !required;
}
it tells that the ...
0
votes
1answer
74 views
Uncover content hidden by keyboard on iPad
I have a view with multiple UITextViews which need to be tappable to the user to begin editing. However, in the landscape view of this UIView, the keyboard covers up more than half of these fields. ...
0
votes
0answers
72 views
What is the best way to transfer a file via email easily and securely? [closed]
I went to my tax adviser today and have to send in some more files. I want to send them encrypted by email. GPG comes to mind, but it requires some technical prerequisites on both sides. Is there ...
0
votes
1answer
743 views
Android Lockscreen Tutorial
Hi so I have been doing some android development for quite some time now and I have come to find that every lockscreen program on the market absolutely sucks. I want a lockscreen that if i need to ...
0
votes
3answers
437 views
Most efficient way to count number of weeks between two datetimes
Exactly what it says on the tin. I just need the most efficiant way of counting weeks(and weeks alone) between two dates in C#.
0
votes
0answers
123 views
How can I make simple games in C#? [closed]
I wanna know if i can simply download free software for C# and make cool stuff like games and animations and video editing ....
0
votes
2answers
382 views
2d graphics effects 101: throwing something
I have a page in my desktop app, and I've implemented simple grab-and-pan. It works great.
When you are panning in this way and you are release, the page stops dead where you dropped it.
I'd like ...