Skip to main content

Proxy Voting Systems

As a senior-level software engineer, I work with political systems every day. When I design a software system, relationships between people drive system requirements - the needs of the stakeholders need to be balanced so that the company can create value. The right system can improve how people work together and reduce infighting. This may include by coordinating user activities or surfacing new analytical information. Usually the kinds of systems I work with and am most interested in involve business activities like extracting data from websites, publishing news articles, selling products or tracking resource allocations.

I don't normally blog about government politics. The occasion for this post is the reopening of the federal government after over two weeks of shutdown and the last-minute aversion of a default on US sovereign debt. On the one hand the crisis was created by a populist movement with some important ideas - but on the other hand the current political system wasn't adequately designed to handle politicians so intent on dismantling the government from within. Having read extensively on the revolutionary war, the constitutional convention and historic US presidents, I cannot imagine this is how the greats of our nation's past envisioned our political future.

The gridlocked national government is unlikely to allow a structural change through constitutional amendments or self-regulation. Special interests, career politicians and the codification of congressional inertia make it difficult for even obvious improvements to happen (consider infrastructure improvements, health care reform and campaign finance reform).

I have been contemplating whether approaches like proxy voting have the potential to change the way politicians and the public interact. Proxy voting allows people to flexibly delegate decisions based on trust relationships. For example, I often ask voting advice from my friend Kevin. He is a licensed social worker, NYU graduate student, director of a shelter for LGTB youth and a close family friend whom I trust implicitly. Kevin sometimes circulates suggestions about upcoming NYC-area elections, and a number of people I know follow these recommendations when voting. Proxy voting takes this a step further by allowing me to designate a person to actually vote on my behalf, called a "proxy". I could have Kevin be my voting proxy on social policy issues. In turn, Kevin could allow some or all of his policy decisions to be delegated to others. I might delegate different policy areas or decisions to different people: I could use Matthew Green and Neil deGrasse Tyson as voting proxies on technology policy. I can always choose to vote directly instead of delegating, and I can employ a combination of delegation and direct voting. I can change the way I delegate at any time - it's not on a multi-year cycle like electing government officials.

One way of using a proxy voting system is to have each legislative vote be determined by proxy voting - elected officials backed by the proxy network would vote as a block based on the decisions of the voting network. In this mode, the representative is simply a facilitator, and all real political power resides in her proxy network. The result may be a "transparty"system, one in which political party affiliation itself is fluid and can vary across different policy areas.

The Pirate Party is the most visible party that uses this voting system; their voting system is LiquidFeedback, an MIT-licensed open source tool written in Lua and PL/SQL. Unfortunately, the Pirate Party does not appear to hold any meaningful seats in my jurisdiction. Without representation, there's not much point to having a proxy system. From my preliminary reading I think it will be a long time before the US mainstream accepts proxy voting, and I believe there needs to be an incremental bridge to build public awareness and trust for such a change. This bridge must work within the confines of the current two party system.

Perhaps proxy voting concepts could be applied to the conventional way we vote for elected officials or referenda. There is no obvious hook for delegated voting: each voter has to vote individually. Yet the proxy voting model could be inverted as a tool to help voters decide how to vote at the polls. In this inversion, I tell the proxy system whom I trust and the system tells me how to vote. I simply take my tablet or a printout with me to the polling place and select the candidates or referenda recommended by my network of experts. The system might also suggest political activities for me to do between elections using a similar model; this could include rallies, speeches, conventions, fundraisers and other forums for political discourse.

I'm really just starting to learn about proxy voting systems and consider how the concept can be applied. If you have an interest in this topic or know of people who would be, please get in touch.

Comments

Popular posts from this blog

ReactJS, NPM and Maven

I'm just starting to get into working with ReactJS, Facebook's open source rendering framework. My project uses SpringBoot for annotation-driven dependency injection and MVC. I thought it would be great if I could use a bit of ReactJS to enhance the application. If you're looking for a basic conceptual intro, I recommend ReactJS for Stupid People and of course the official documentation  is quite good. In full disclosure, I still have no idea how to do "flux" yet. As an experienced Java backend developer, I'm pretty decent at hacking Maven builds - which is precisely what this blog post is going to be about. First, a word about how React likes to be built. Like many front-end tools, there is a toolkit for the node package manager (NPM). From the command prompt, one might run npm install -g react-tools  which installs the jsx command. The  jsx  command provides the ability to transform JSX syntax into ordinary JavaScript, which is precisely what I want. O

Solved: Unable to Locate Spring Namespace Handler

I attempted to run a Spring WebMVC application, and when starting up the application complained that it didn't know how to handle the MVC namespace in my XML configuration. The project runs JDK 7 and Spring 4.0.6 using Maven as the build system. The following is my XML configuration file: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"        xmlns:mvc="http://www.springframework.org/schema/mvc"        xsi:schemaLocation="         http://www.springframework.org/schema/beans         http://www.springframework.org/schema/beans/spring-beans.xsd         http://www.springframework.org/schema/mvc         http://www.springframework.org/schema/mvc/spring-mvc.xsd">          <mvc:annotation-driven/>      </beans> I have a few more beans than this, but their details aren't especially relevant

Spark Cassandra Connector Tip

We're using Databricks as our provider for Spark execution, and we've been struggling to get the Spark Cassandra connector to work outside of the local development environment. The connector was attempting to connect to 127.0.0.1 even though we were passing the new host information into the getOrCreate(..) call. After working with Ganesh at Databricks support, we figured it out. The realization is that in Databricks, calls to getOrCreate() from a fat jar don't create a new SparkContext object. Thus, the configuration passed in gets ignored. If you want to update the Cassandra host information for the connector, you must update it after  the call to getOrCreate() instead. Add the configuration directly to the context and you'll be good to go!