The only elective part is which "faction" of the party the person will be coming from, i.e "Zürich"/"Bern for UDC/SVP.
The study of how different kinds of voting systems work and their advantages, disadvantages and consequences is called social choice theory. There's an interesting theorem called Arrow's theorem that proves that given a certain set of assumptions, there can be no voting system that works exactly as we would like. Sometimes this is used to argue that all systems are equally bad, but I think this is not true at all - even while imperfect, some systems are much better than others.
Edit: I get that people downvote this comment since it's always controversial to ask.
I personally always ask when I am more curious about the answer and am willing to burn any potential karma over it.
Asking for feedback is more important.
I'm just genuinely surprised about the other one.
Previous to 1988 the League of Women Voters[0] handled presidential debates. A fully independent outside organization.
Since then, the Commission on Presidential Debates[1] set rules for admittance to president debates. The CPD was founded jointly by Republicans and Democrats and is controlled solely by both parties.
At best, there _appears_ to be a large, gaping conflict of interest when it comes to admitting candidates to presidential debates. In 1992 Ross Perot was invited to the debates as a third option. In 1996 Clinton and Dole successfully argued for Perot to be excluded from the debates as he had no "realistic chance to win" [2]. Perot aside, what happened was downright anti-democratic and further enforced the two party system.
Now that I'm on this...I'll do another example of this abuse of power. Candidates from third parties have been arrested for protesting outside presidential debates [3,4]. Even if the protests broke the law, arresting opponents for asking to be given a podium to speak at feels bad.
---
[1] https://en.wikipedia.org/wiki/Commission_on_Presidential_Deb...
[2] https://www.washingtonpost.com/archive/politics/1996/09/18/p...
[3] https://www.theguardian.com/commentisfree/2012/oct/18/jill-s...
Yes, the Democratic-Republicans and the Federalists know that they cannot be replaced because of the two party system. (Likewise, neither faces the threat of, if it fails to be replaced, being completely re-oriented in a political realignment.) It's not as if, currently, scholars disagree about whether the US is in its Sixth or Seventh Party system -- the two major parties are dominant, stable, and forever unchanging.
Take any governance system that is in power for too long. It becomes rotten and it serves its own purposes. Democracy breaks that downwards spiral.
It is not a stable system, it is not predictable, it is not cheap to operate, heck it’s not even guaranteed that it will work. But it prevents the certain path to self-destruction.
- ostracism, where the people voted to ban a person who was too mighty or dangerous from the city of Athens for a period of 10 years;
- random selection of (some kind of) representatives. This has predictable downsides, but ensures fair representation and prevents the existence of a political class.
However, if a leader remains in power for decades, it’s highly probable that the establishment has a firm grip on the reins and is unlikely to relinquish control.
If I have to judge what is a democracy, I am going back quite a while to what I learned in high school as the definition of a democracy. "A democracy is a form of government where the three branches of government, the legislative, the executive and the judicial branch are separated and the legislative branch is in the hands of representatives elected by the people."
History presents us with far more examples of successful autocracies.
A royal family can rule for millennia a kingdom that grows smaller and smaller.
In TFA, the author wrote:
Democracy, then, will be stable so long as the expectation of costs and the uncertainty of the future give the losers sufficient incentive to accept that they have lost.
The essence is that all participants must be co-operative in their education, motives, and intentions. And this requires a system of reliable information and agreed laws.Democracy works within the tolerances of reliable information, demonstrable co-operation, and the rule of law.
The US implosion is not yet irreparable, but it is a societal failure.
democracy does not work. Or first, we should clarify the meaning of "it works". IMO, it prevented us from burning the world, this is sufficient to say that in a parallel universe i would bet differently.
https://risk.princeton.edu/img/Historical_Collapse_Resources...
some time ago i discovered Wardley maps [1] (about company's "landscape" and strategy there), and one thing that stick with me was this:
there are 4 levels/stages of development there - genesis, custom-built, product, commodity. With three transitions, made by different kind of people - Pioneers, Settlers, Town-planners. And the last one, mass-production, is about "ruthless removal of deviation".
i guess these "diminishing returns" in keeping long-time same-thing (democracy?) have something in common with the removal of deviations/variety..
[1] https://feststelltaste.github.io/wardley-maps-book/#_the_fir...
Well I do know he's politically active and worked with Yanis Varoufakis and Noam Chomsky. So it's more than a little cheeky.
A democracy doesn't exist in a vacuum; there are competing nations that are at work to undo or subjugate yours, and this never stops. We've lived a charmed life these past 80 years that are unlike any in the history of the planet.
American wealth and power are what brought this unprecedented stability to the western world, but it has been eroding.
As it erodes, the flaws in the American system begin to show, and then fray. The very means by which Americans elect automatically pushes it into a two party system, which is by nature polarizing, especially when external pressures come to bear.
It's also incredibly difficult to change course safely when so many people are involved (this affects all organizations, which is why startups can eat their lunch). Assuming that you can dynamically rise to the challenge is naive at best.
Federation only amplifies the problem, as you simply add more uneven competitors to the national riches.
The linked solution isn't as interesting, mainly because the idea of there being a solution seems the simplistic part. It is a system and it will play out.
The entire world has seen greater technical advances in the past 80 years than any time before, but zero percent of that is related to the politics of any one nation: either causally or effectually.
Contrary to common sentiment, there is nothing about democracy that makes it inherently correct. democracy isn't a religion and the form of governance a nation chooses should be adjusted and tuned over time.
I won't comment on current matters, but I will say that education and press should have been fundamental institutions of the American republic, the same way the supreme court and the house of reps are. It isn't enough that the freedom (and responsibility!) of the press is a right, an organization to manage and protect it should have been established, as should have an organization to maintain and police education.
For a long time, the common practice in live coding, which you might see on platforms like Flok.cc (https://flok.cc) supporting various interesting languages, has been like this: Everyone gets their own 'space' or editor. From there, they send messages to a central audio server to control their own sound synthesis.
This is heavily influenced by architectures like SuperCollider's client-server model, where the server is seen as a neutral entity.
Crucially, this relies a lot on social rules, not system guarantees. You could technically control someone else's track, or even mute everything. People generally restrain themselves.
A downside is that one person's error can sometimes crash the entire server for everyone.
Later, while developing my own live coding language, Glicol (https://glicol.org), I started exploring a different approach, beginning with a very naive version: I implemented a shared editor, much like Google Docs. Everyone types in the same space, and what you see is (ideally) what you hear, a direct code-to-sound mapping.
The problems with this naive system were significant. You couldn't even reliably re-run the code, because you couldn't guarantee if a teammate was halfway through typing 0.1 (maybe they only typed 0.) or had only typed part of a keyword.
So, I improved the Glicol system: We still use a shared interface for coding, but there's a kind of consensus mechanism. When you press Cmd+Enter (or equivalent), the code doesn't execute instantly. Instead, it's like raising your hand – it signals "I'm ready". The code only updates after everyone involved has signaled they are ready. This gives the last person to signal 'ready' a bit more responsibility to ensure the musical code change makes sense.
I'm just sharing these experiences from the music-making side, without judgment on which approach is better.
Politicians who cast such doubt into the democratic principle that a government can lose its power, those politicians are up to destroying democracy and the very principle that they have to step down.
This distinction is useful, because one of the biggest trends of the technological age is the capital-D version supplanting and erasing the small-d version. Almost all of the institutional “defenders of democracy” have essentially no interest in small-d democratization processes, because they are themselves in the driver’s seat in the political democratic system.
This leads them to ignore or disregard the issues of everyday people, which leads to populism, which is of course the biggest global political trend of the last decade.
This is kind of a shame for tech in particular, because for the most part technology has been a democratizing (small-d sense) force throughout history. Phones, computers, cars, on and on: all examples of expensive exclusive technologies that became democratized and accessible to everyone. And yet that same force doesn’t seem to have been applied to the political system itself.
I like this, but a more general point is that at all scales, we need to resolve the tension tension between the singular and the plural, the individual and the group, the `int` and `[int]`.
Results vary between Milton Friedman's famous pencil to the devastation of war.
brazzy•4h ago
Brilliant, and provides a foundation for an idea that I've seen elsewhere: that the true test of a new democracy is not the first democratic elections, but the first transition of power, i.e. the first subsequent election where the incumbent loses.