Cadre (politics)

In political contexts a cadre (UK: /ˈkɑːdər/ or US: /ˈkædr/) consists of a small group of people. The word may also refer to a single member of such a group.

Revolutionary socialist usage

For revolutionary socialists (Including Leninists), and some anarchists, a cadre is a group of committed, active, and experienced intellectuals who share political beliefs and participate in the revolutionary movements they see the most promise in. It can also refer to a member of said group.[1]

Cadre policies in states

A cadre policy as a political mechanism may take one of two forms:

  1. Cadre deployment: The appointment by a government's governing party of a loyalist to an institution, as a means of circumventing public reporting-lines and bringing that institution under the control of the party, as opposed to the state. It involves the creation of a parallel power-structure to a constitution, so that party members answer first to the party and second to the public. In turn, that party advances its own interests ahead of those of the public.
  2. Cadre employment: Economic patronage dispensed to individuals, companies and agencies, by the government, not on merit but on the basis that they enjoy some political connection to the governing party.

Under cadre policies, every level of government acts to reward loyalists with tenders and with government contracts. The African National Congress government in South Africa commonly practises this form of tenderpreneurship. Together with Black Economic Empowerment policies, cadre policy is used to address the injustices of the former apartheid system in South Africa.[2]

gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
gollark: I mean, you could use PHP too. I don't like it. But you could.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.
gollark: And you want to be able to upload pictures to some sort of web thing to send to the ESP?

References

  1. Twala, Chitja (2014-11-01). "The African National Congress (ANC) and the Cadre Deployment Policy in the Postapartheid South Africa: A Product of Democratic Centralisation or a Recipe for a Constitutional Crisis?". Journal of Social Sciences. 41 (2): 159–165. doi:10.1080/09718923.2014.11893352. ISSN 0971-8923.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.