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 ...
随机推荐
- [不屈的复习] - 安装Java初始化环境
点WIN键->运行(或者使用win+r) 输入cmd命令输入java -version 注: -version是小写,不能使用大写,java后面有一个空格 配置成功后,会出现版本信息 java ...
- Linux——shell简单学习(一)
首先来一个小程序,来查看所在目录,以及该目录下的文件 #!/bin/sh # “#!”指定用sh执行shell脚本 #this is to show workstation # “#” 表示注释 ec ...
- hdu 2795 Billboard 线段树+二分
Billboard Time Limit: 20000/8000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Probl ...
- python 集合取最大最小值
#Create a set seta = , , , , , ]) #Find maximum value print(max(seta)) #Find minimum value print(min ...
- RabbitMQ入门_06_深入了解ack
A. Delivery Tag 参考资料:https://www.rabbitmq.com/confirms.html 仔细查看一下 Consumer 的回调方法: public void handl ...
- Codefores 835C-Star sky
835C-Star sky 思路:dp,预处理一下c+1层前缀和. 代码: #include<bits/stdc++.h> using namespace std; #define ll ...
- Vue项目骨架屏注入实践
相比于早些年前后端代码紧密耦合.后端工程师还得写前端代码的时代,如今已发展到前后端分离,这种开发方式大大提升了前后端项目的可维护性与开发效率,让前后端工程师关注于自己的主业.然而在带来便利的同时,也带 ...
- Redis之有序集合命令
Redis 有序集合(sorted set) Redis 有序集合和集合一样也是string类型元素的集合,且不允许重复的成员. 不同的是每个元素都会关联一个double类型的分数.redis正是通过 ...
- 【python】模块整理
---文件.系统--- import glob # 给定路径下查找符合规则文件.三个匹配符:”*”, “?”, “[]”.”*”匹配0个或多个字符:”?”匹配单个字符:”[]”匹配指定范围内的字符, ...
- C# 中的集合(Array/ArrayList/List<T>/HashTable/Dictionary)
int [] numbers = new int[5]; // 长度为5,元素类型为 int. string[,] names = new string[5,4]; // 5*4 的二维数组 byte ...