1
vote
3answers
140 views
How to make this ruby method less ugly (nesting)
I have a helper method that creates navigation links for some controllers.
def gen_associations(controllers)
content_for :leftnav do
sorted_controllers = controllers.sort
returning …
3
votes
3answers
126 views
Is there a cleaner way to chain empty list checks in Python?
I have a fairly complex object (deserialized json, so I don't have too much control over it) that I need to check for the existence of and iterate over a fairly deep elements, so right now I have …
1
vote
3answers
97 views
Reading/writing binary structures: how to simplify this code?
Hi folks, I'm writing a network app, which sends and receives a lot of different kinds of binary packets, and I'm trying to make adding new kinds of packets to my app as easy as possible.
For now, I …
1
vote
5answers
147 views
How to make Ruby’s N ends look better?
As I write some scripts, I usually reach a point where my code looks like this :
end
end
end
end
end
end
I don't know about you, but this look very ugly to me. Can …
1
vote
1answer
76 views
PhysX NxActor Question
Hi.
As far as I know, using the PhysX API, the only way to obtain an NxActor is from an instance of NxScene using the createActor method. This is really bugging me. I want to keep my code clean, …
2
votes
5answers
281 views
What’s the ugliest code you were forced to write by outside limitations?
What is the ugliest code that you wrote - not because you didn't know better, but because of limitations of the software, the hardware or the company policy?
Because of unusual choices in database …
