Accéder au contenu principal

Do you believe in Democracy ? [Part 1]

"No, you believe that it makes no difference in which country and among what people the rights of Roman citizens are violated: wherever this happens, it affects the freedom and standing of all citizens equally."
- Cicero : In Verrem II.5 in "Cicero Political Speeches" trans. D. H. Berry

Do you believe in Democracy? A simple question, but a question which needs a complicated answer. Why ? I will ask then, what is Democracy ? Are we that sure of the unicity of the concept, when using the word ? No body is certain. There is something we need to investigate before jumping to Pros and Cons : the nature of the concept.

Is democracy, or should it be, the reign of the people ? If you think so, I will only make a simple comment : you are in a real trouble. You can't then observe the real paradox of this horrible regime that the "reign of people" is. At the individual level, there is superficial conception of authority, that may hurt the exterior other. No, democracy is not the simple act of giving power to the simple citizen, in the plural version.

My first attempt to explain my view will be based on this truth : when defending the above version, you don't believe in democracy, but in the modest popular explanation of it. This is what I will call the "Word-to-Word Explanation Syndrome" or WWES. Unfortunately, WWES affects every type of domain in our life. May be I will dedicate a concise and precise article to it in the future.

With the evidence of WWES, I will propose this question : Do you believe in a version of Democracy where power doesn't belong to the people ? This weird question is the key of my current article : Me, I do !

Are you ready to observe this possibility? I think it is time to be. Democracy is not about voting, or insulting some politician, or saying you are free to choose. In fact, choices in democracy should be filtered : no minority should be persecuted or descriminated due to the number of votes. That's what I call Democracy : whatever was your ethnic group or your intellectual type of thinking, you should be safe, if those specification are not to conspire about democracy itself or about the right to live, to work, to possess or to express harmless ideology.

Democracy starts with the legislation. That's why, I ask every person to read the constitution of the United States and the famous Declaration of Independance. There is some charming concepts there. However, nothing is perfect. Perfect doesn't exist.

But if the people of our fictious nation are so fascinated with some social phobias and clichés, there will be no use of law. Remember the interpretation of these revolutionary texts mentioned above in the United States of the XIX century : when said : "We hold these truths to be self-evident, that all men are created equal...", the explanation by the average white man of that time is : "We hold these truths to be self-evident, that all white men are created equal..." and there is a very inspiring coïncidence : the DEMOCRAT party of the era was the racist one !

That's how, the relative context of the era affects the comprehension of the concept... People are equal unless the explanation make them so.. This simple and well-known example demonstrates that the problem is not about law in general (except for some countries like Iran or Saudi Arabia, where civil rights are not something else than the extreme explanation of a religion) but is about education. When no education is offered, when no tradition is made, you can't imagine what is the next type of extremist you will need to fight.

Commentaires

Posts les plus consultés de ce blog

GNS3: Simulating a 100% opensource site2site VPN using Wireguard, VyOS and OpenVSwitch

 This is something I had in mind but didn't find the time to accomplish before. It just took a very cold day to convince me that I have to play with Wireguard on VyOS. I used GNS3 of course, on my personal Linux laptop to create this setup. Of course the performance was not that great since it is just a simulation.  In real life, I am using Wireguard on a 10 years old Raspberry Pi Model B and amazingly with just a 700MHz single core ARM CPU and less than 512 MB of RAM I had a decent and stable permanent Wireguard tunnel. (My bandwidth would reach 24 Mbps without issue) Back to my simulation, this is what it looks like : Quick explanation: the VYOS routers labeled IPERF1 and IPERF2 are only used for an iperf3 test, which was able to reach about 50 to 60 Mbps each time. It ain't much but it was honest (and free) secure bandwidth! I won't get into the details of this setup but I will just post the two most important configurations : R-East and R-West : #### VYOS WireGuard Site...

GNS3 on Manjaro/Arch Linux: How to create virbr0 for NAT to work

Problem: You can't add a NAT connection to your GNS3 simulation, and you get the error : "ERROR template_manager:226 Error while creating node from template: NAT interface virbr0 is missing, please install libvirt" Steps to resolve: 1- Create a file named /tmp/default.xml 2- Paste this content and save: <network>   <name>default</name>   <bridge name="virbr0"/>   <forward mode="nat"/>   <ip address="192.168.123.1" netmask="255.255.255.0">     <dhcp>       <range start="192.168.123.2" end="192.168.123.254"/>     </dhcp>   </ip> </network> 3- Execute the following commands in your shell : virsh net-define /tmp/default.xml sudo virsh net-start default sudo virsh net-autostart default  

AutoWG: a simple Bash script to connect two devices with Wireguard

 I made today a quite simple BASH script that allows to connect two devices running Wireguard (tested with Debian Linux 12, but should work with any device) You can check it out (and fork it if you want) in this Gitlab Page This is the source code as of now, but I could modify it later (any suggestions are welcome) : #!/bin/bash # # AUTOWG written by Hamdi KADRI  # No copyright in any form or kind # This script is intended to create configurations for  # a point-to-point Wireguard connection between a server # and a client (/30 network) # # Step zero: declare configurations as variables servercfg="[Interface] Address = <serverwgIP> SaveConfig = true ListenPort = <port> PrivateKey = <server-privatekey> [Peer] PublicKey = <client-pubkey> AllowedIPs = <clientwgIP> " clientcfg="[Interface] PrivateKey = <client-privatekey> Address = <clientwgIP> [Peer] PublicKey = <server-pubkey> AllowedIPs = 0.0.0.0/0 EndPoint = <serverIP...