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的更多相关文章

  1. OrCAD 仿真与仿真模块库介绍

    PSpice A/D9.1个别时候可能会出现异常现象,例如:某一步后,突然电路图的电源极性被自动改变了!造成直流电压和直流电流不正常,输出无波形.所以应该趁正常的时候做好备份是明智的. PSpice ...

随机推荐

  1. ElasticSearch 5.4 安装

        1. 前期准备  环境准备 IP地址 操作系统 内存 192.168.1.10 centos 7 16 192.168.1.11 centos 7 16 192.168.1.12 centos ...

  2. UVa 820 因特网带宽(最大流)

    https://vjudge.net/problem/UVA-820 题意: 给出所有计算机之间的路径和路径容量后求出两个给定结点之间的流通总容量. 思路: 裸的最大流问题.注意有个比较坑的地方,最后 ...

  3. UVa 10618 跳舞机

    https://vjudge.net/problem/UVA-10618 这道题目题意很复杂,代码也是参考了别人的,因为自己实在是写不出.d[i][a][b][s]表示分析到第i个箭头时,此时左脚处于 ...

  4. asp.net webform 自定义 select 绑定数值

    前台: <select id="ddlAddedItemType" runat="server"> <option value="& ...

  5. codevs 1082 线段树练习 3 区间更新+延迟标记

    题目描述 Description 给你N个数,有两种操作: 1:给区间[a,b]的所有数增加X 2:询问区间[a,b]的数的和. 输入描述 Input Description 第一行一个正整数n,接下 ...

  6. shell 输出双引号

    #!/bin/sh your_name='runoob' str="Hello, I know you are \"$your_name\"! \n" echo ...

  7. 《剑指offer》第三十题(包含min函数的栈)

    // 面试题30:包含min函数的栈 // 题目:定义栈的数据结构,请在该类型中实现一个能够得到栈的最小元素的min // 函数.在该栈中,调用min.push及pop的时间复杂度都是O(1). #i ...

  8. nodejs 监听文件夹变化的模块

    使用Node.JS监听文件夹变化 fs.watch 其中Node.JS的文件系统也可侦听某个目录的改变, 如fs.watch   其中fs.watch的最大缺点就是不支持子文件夹的侦听,并且在很多情况 ...

  9. Python 错误与异常

    2017-08-01 13:40:17 在程序运行过程中,总会遇到各种各样的错误. 有的错误是程序编写有问题造成的,比如本来应该输出整数结果输出了字符串,这种错误我们通常称之为bug,bug是必须修复 ...

  10. Servlet / Tomcat / Spring 之间的关系

    0.基础知识 在idea中打开servlet的源码: 可以看见servlet就是一个接口:接口就是规定了一些规范,使得一些具有某些共性的类都能实现这个接口,从而都遵循某些规范. 有的人往往以为就是se ...