Sometimes a good poem will be intellectually somewhat ambiguous
Well that's a poetic way of putting it.

Don't get me wrong, I'm not against people amusing themselves by writing and reading poetry if they want to, but to make poetry mandatory as proof of suitability for high office is totally wrong-headed. Keep intellectual ambiguity right out of politics.
There is a subset of English (and I expect all other languages) that we might call Plain English, where words only have ONE meaning, and this should be used for writing all laws. The fact that current laws are NOT written in Plain English is proof that politicians are on the fiddle somehow - and gives rise to lawyers, endless court cases and surprising judgments. People should be able to read and understand the laws they live under, and defend themselves in court.
Computer languages can only be interpreted one way by the computer, and so Plain English could theoretically be used as a computer language - COBOL was an attempt at this. Can you understand this? (hint, you can) :
MULTIPLY radius BY 2 GIVING temp.
MULTIPLY temp BY PI GIVING circumference.Unfortunately in the decades since I used to earn a living writing this stuff, COBOL has faded away and PHP has become popular:
$temp = $radius * 2 ;
$circumference = $temp * M_PI ;and woe betide you if you forget that first semi-colon, because the program will stop with the error message:
unexpected T_STRING '$circumference' on line 2The C language is even more complicated as you have to declare what types of data "radius" and "circumference" (and don't forget "temp" ! ) are before you can use them. To me this is a step backwards in language development, and I refuse to use it.
Anyway, since I am in charge of computer security, I would start by enacting this law, from Bulgaria of all places:
http://thehackernews.com/2016/07/open-source-software-govt.htmlBulgaria passes Law that mandates Government Software must be Open SourceJuly 07, 2016
Mohit Kumar
Do you have any idea what the software you have installed is doing stealthily in the background? If it's not an open source software, can you find out?
Usually, the answer is no.
After Edward Snowdens revelations, it's clear that how desperately government agencies wants to put secret backdoors in your network, devices, and software.
However, Bulgaria has come forward with an all new set of laws that would be appreciated by privacy lovers and open-source community.
The Bulgarian Parliament has passed legislative amendments to its Electronic Governance Act that require all software written for the country's government to be fully open-sourced and developed in the public Github repository.
This means that source code of software developed for the Bulgarian government would be accessible to everyone and provided free for use without limitations.
Article 58A of the Electronic Governance Act states that administrative authorities must include the following requirements for procuring software:
"When the subject of the contract includes the development of computer programs, computer programs must meet the criteria for open-source software; all copyright and related rights on the relevant computer programs, their source code, the design of interfaces, and databases which are subject to the order should arise for the principal in full, without limitations in the use, modification, and distribution; and development should be done in the repository maintained by the agency in accordance with Art 7c pt. 18."
However, it does not mean that Bulgaria is going to shift to Linux overnight. It means that whatever computer software, code, databases and programming interfaces the government procures will be freely available for others to read, modify and use, said Bulgarian government adviser Bozhidar Bozhanov.
"Existing solutions are purchased on licensing terms, and they remain unaffected (although we strongly encourage the use of open source solutions for that as well)," Bozhanov said in a blog post.
He added that the decision "is a good step for better government software and less abandonware, and I hope other countries follow our somewhat 'radical' approach of putting it in the law."
The move will also allow researchers and white hat hackers to report security loopholes and vulnerabilities in government websites that are left unpatched for years, helping the government to detect bad security practices earlier.
However, criminal mind people could also use the flaws for malicious purpose rather than reporting it to the government.
With the new amendments, Bulgaria becomes the first country to make a law out of open source governance, and we hope that other nations follow this suit.