Free Republic
Browse · Search
Bloggers & Personal
Topics · Post Article

Dreaming this up tells me I have been sitting at home way too long ;-)
1 posted on 11/22/2009 8:28:11 PM PST by neverhome
[ Post Reply | Private Reply | View Replies ]


To: neverhome

***in the process of writing all this massive, mindless legislation, they invariably create a brand new mess of problems.

And of course, they now feel the need to write yet more laws to solve the new problems (that they caused), and the vicious circle continues.**

OH, like the Microsoft SERVICE PACKS????


2 posted on 11/22/2009 8:31:29 PM PST by gwilhelm56 (Pray for Obama: Psalm 109:8 "Let his days be few; and let another take his office. ")
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome

I beg to argue with this. I know when I enter:
if(budget <= expenses){
break;
}

politicians don’t understand simple logic like that


4 posted on 11/22/2009 8:46:12 PM PST by smith288 (Peace at all costs gives you tyranny free of charge)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome
I still say that we should have a constitutional amendment that restricts all legislation to a certain number of words, such as 100. If you have a complicated problem, you'll simply have to pass more than one piece of legislation to get it addressed, but all pieces of legislation must be voted on individually. So, if you want to, say, build a bridge, you might have to pass bill to authorize the building of the bridge, with the whens and wheres, and another bill to authorize money for the project. This would avoid the monstrosities such as the healthcare bill which are designed specifically to be ambiguous and indecipherable so that the legal class can then claim that it says whatever they want it to say, and who would know better?

The programming analogy works perfectly - the 100 word limit would be modular programming vs. spaghetti programming. Any programmer knows that when a segment of code gets too long it becomes unwieldly and, if long enough, will be almost impossible to debug if it is all one module. Break it down into modules, and it becomes far more manageable.
6 posted on 11/22/2009 8:53:30 PM PST by fr_freak
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome

Hockey Moms make he best legislators!


7 posted on 11/22/2009 8:54:24 PM PST by Longhair_and_Leather (Don't send a boy to do a man's job, send a woman--Sarah 2012!)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome

I agree with you... the big problem in DC is that apparently nobody there thinks in terms of “cause -> effect” (ie logic) or “if X happens, what caused X?’.... *sigh*


12 posted on 11/22/2009 9:15:16 PM PST by OneWingedShark (Q: Why am I here? A: To do Justly, to love mercy, and to walk humbly with my God.)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome

Okay, wait just one minute. What’s the monetary pay off for the body odor, junk food left overs, and over all gender neutral whateverness of the coding world?


16 posted on 11/22/2009 9:44:28 PM PST by concentric circles
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome
Not a bad idea. Programmers could also code in referential integrity for any new law (or old law) such that it would have to comply with the US Constitution.

That right there would diminish the US Code to a very small stack of paper.

18 posted on 11/22/2009 10:09:05 PM PST by meadsjn (Sarah 2012, or sooner)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome
My proposal:
public class Gridlock {
    static class Friend {
        private final String name;
        public Friend(String name) {
            this.name = name;
        }
        public String getName() {
            return this.name;
        }
        public synchronized void bow(Friend bower) {
            System.out.format("%s: %s has bowed to me!%n", 
                    this.name, bower.getName());
            bower.bowBack(this);
        }
        public synchronized void bowBack(Friend bower) {
            System.out.format("%s: %s has bowed back to me!%n",
                    this.name, bower.getName());
        }
    }

    public static void main(String[] args) {
        final Friend alphonse = new Friend("Alphonse");
        final Friend gaston = new Friend("Gaston");
        new Thread(new Runnable() {
            public void run() { alphonse.bow(gaston); }
        }).start();
        new Thread(new Runnable() {
            public void run() { gaston.bow(alphonse); }
        }).start();
    }
}

}

25 posted on 11/22/2009 10:25:30 PM PST by dfwgator
[ Post Reply | Private Reply | To 1 | View Replies ]

To: neverhome

Neverhome has been spending too much time at home?!? ;-P


30 posted on 11/23/2009 6:30:36 AM PST by MortMan (Stubbing one's toes is a valid (if painful) way of locating furniture in the dark.)
[ Post Reply | Private Reply | To 1 | View Replies ]

Free Republic
Browse · Search
Bloggers & Personal
Topics · Post Article


FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson