L208
A hundred years ago it was assumed and scientifically “proved” by economists that the laws of society made it necessary to have a vast army of poor and jobless people in order to
keep the economy going. Today, hardly anybody would dare to voice this principle. It is generally accepted that nobody should be excluded from the wealth Western industrialized countries, a system of insurance has been introduced which guarantees everyone a minimum of subsistence (生活维持费) in case of unemployment, sickness and old age. I would go one step further and argue that,even if these conditions are not present, everyone has the right to receive the means to subsist, in other words, he can claim this subsistence minimum without having to have any“reason”. I would suggest, however, that it should be limited to a definite period of time,let’s say two years, so as to avoid the encouraging of an abnormal attitude which refused any kind of social obligation.
This may sound like a fantastic proposal, but so, I think, our insurance system would have sounded to people a hundred years ago. The main objection to such a scheme would be that if each person were entitled to receive minimum support, people would not work. This assumption rests on the fallacy of the inherent laziness in human nature, actually, aside from abnormally lazy people, there would be very few who would not want to earn more than the minimum, and who would prefer to do nothing rather than work.
However, the suspicions against a system of guaranteed subsistence minimum are not groundless, from the standpoint of those who want to use ownership of capital for the purpose of forcing others to accept the work conditions they offer. If nobody were forced to accept work in order not to starve, work would have to be sufficiently interesting and attractive to induce one to accept it. Freedom of contract is possible only if both parties are free to accept and reject it; in the present capitalist system this is not the case.
But such a system would not only be the beginning of real freedom of contract between employers and employees, its principal advantage would be the improvement of freedom in inter-personal relationships in every sphere of daily life.
L208的更多相关文章
- OrCAD 仿真与仿真模块库介绍
PSpice A/D9.1个别时候可能会出现异常现象,例如:某一步后,突然电路图的电源极性被自动改变了!造成直流电压和直流电流不正常,输出无波形.所以应该趁正常的时候做好备份是明智的. PSpice ...
随机推荐
- Sass常用写法
Sass使用变量,变量以$开头 $bgcolor:#f40; background-color:$bgcolor; 如果变量需要嵌套在字符串当中,就需要写在#{}之中 $direction:left; ...
- java 正则表达式验证邮箱格式是否合规 以及 正则表达式元字符
package com.ykmimi.testtest; /** * 测试邮箱地址是否合规 * @author ukyor * */ public class EmailTest { public s ...
- UVa 1451 平均值
https://vjudge.net/problem/UVA-1451 题意:给定长度为n的01串,选一个长度至少为L的连续子串,使得子串中数字的平均值最大. 思路:这题需要数形结合,真的是很灵活. ...
- MVC ---- 增删改成 EF6
1.MVC EF6的增删改成小练习 namespace T4Demo { public partial class Form1 : Form { NBEntities nb = new NBEntit ...
- 在Windows上面使用QT5 (without QTcreator or VS 2017)
在Windows上面使用QT5 (without QTcreator or VS 2017) 本文环境: 最新版 QT 5.12.1 Windows 10 64位 仅考虑动态链接,静态链接不在本文讨论 ...
- 转载: 华为内部Web安全测试原则
原链接:http://www.ha97.com/5520.html Web安全原则 1.认证模块必须采用防暴力破解机制,例如:验证码或者多次连续尝试登录失败后锁定帐号或IP. 说明:如采用多次连续尝试 ...
- django URL路由基础
URL是Web服务的入口,用户通过浏览器发送过来的任何请求,都是发送到一个指定的URL地址,然后被响应. 在Django项目中编写路由,就是向外暴露我们接收哪些URL的请求,除此之外的任何URL都不被 ...
- [原][译][lua][luabridge]一个简单的luabridge与c++例子结合例子
参考:https://eliasdaler.wordpress.com/tag/luabridge/ https://eliasdaler.wordpress.com/2015/08/10/using ...
- const 学习笔记
#include<stdlib.h> #include<iostream> using namespace std; int main(){ // const 仅仅起到是否为常 ...
- C#中正确使用enum做Key的姿势
C#中自定义enum,然后将其作为Dictionary的Key,通常的做法如下: using System; using System.Text; using System.Collections.G ...