├── .gitignore ├── LICENSE ├── README.md └── While there's life, there's hope.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | node_modules 4 | .idea 5 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | SAY NO TO SUICIDE PUBLIC LICENSE 2 | 3 | Version 1.0, September 2017 4 | 5 | https://github.com/unbug/snts 6 | 7 | Copyright (C) [year] [fullname] 8 | 9 | Everyone is permitted to copy and distribute verbatim copies 10 | of this license document. 11 | 12 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, MODIFICATION, AND DISTRIBUTION 13 | 14 | 1. You can do anything with the original copy, 15 | whenever, whatever, no limitation. 16 | 17 | 2. When you are in despair, just talk to someone you trust, 18 | someone you love. Getting help from your family, your friends, 19 | the police, the community, the public. 20 | 21 | 3. Keep yourself alive and say no to suicide. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 对自杀说不 开源协议 2 | 3 | We've lost so many genius developers, who committed suicide, 4 | such as [Aaron Hillel Swartz (November 8, 1986 – January 11, 2013)](https://en.wikipedia.org/wiki/Aaron_Swartz). 5 | 已经有很多开发者自己选择离开了世界,比如[亚伦·希勒尔·斯沃茨(1986年11月8日-2013年1月11日)](https://zh.wikipedia.org/wiki/%E4%BA%9A%E4%BC%A6%C2%B7%E6%96%AF%E6%B2%83%E8%8C%A8), 6 | 7 | 这对我们来说是非常沉重的损失。 8 | 9 | As a developer, the community needs you, the world needs you, please keep yourself alive. 10 | 作为一名开发者,社区需要你,世界需要你,请不要离开我们。 11 | 12 | ``` 13 | SAY NO TO SUICIDE PUBLIC LICENSE 14 | 对自杀说不 开源协议 15 | 16 | Version 1.0, 9 2017 17 | 18 | Copyright (C) [year] [fullname] 19 | 20 | Everyone is permitted to copy and distribute verbatim copies 21 | of this license document. 22 | 授权每个人可逐字逐句地复制与分发 23 | 24 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, MODIFICATION, AND DISTRIBUTION 25 | 使用、复制、修改、分发条款 26 | 27 | 1. You can do anything with the original copy, 28 | whenever, whatever, no limitation. 29 |  可对原版副本做任意修改 30 | 31 | 2. When you are in despair, just talk to someone you trust, 32 | someone you love. Getting help from your family, your friends, 33 | the police, the community, the public. 34 |  当你处于绝望中的时候,向你信任的人,你爱的人倾诉 35 | 向家庭、朋友、警察、社区、社会寻求帮助 36 | 37 | 3. Keep yourself alive and say no to suicide. 38 |  坚强地活下去,对自杀说不 39 | ``` 40 | 41 | ## Translations 42 | - [简体中文](https://github.com/Artwalk/snts) by [@Artwalk](https://github.com/Artwalk) 43 | ​ 44 | 45 | -------------------------------------------------------------------------------- /While there's life, there's hope.md: -------------------------------------------------------------------------------- 1 | 开发者碍于编程思维,往往过于注重逻辑 2 | 3 | 因不喜社交,平时遇到最难相处的,也许只是产品、运营之类的同事 4 | 5 | 6 | 7 | 然而这个世界是由众多麻瓜们构成的 8 | 9 | 缺少与这些普通人有效的沟通,便无法理解他们的意图与目的 10 | 11 | 每当大型公司爆料新闻时,我们也常常会看到背锅开发者的身影 12 | 13 | 网络暴力又呈指数级的放大了影响 14 | 15 | 16 | 17 | 如果说数年前富士康员工们的一连串的悲剧离我们还尚且遥远 18 | 19 | 如今当一个又一个的开发者们早早的告别了我们,匆匆离开世界 20 | 21 | 这已迫在眉睫并与我们息息相关 22 | 23 | 24 | 25 | 正如英国诗人 约翰·多恩 写到: 26 | 27 | > 没有人是自成一体、 28 | > 29 | > 与世隔绝的孤岛, 30 | > 31 | > 每一个人都是广袤大陆的一部份。 32 | > 33 | > ... 34 | > 35 | > 每个人的死亡都是我的哀伤, 36 | > 37 | > 因为我是人类的一员。 38 | > 39 | > 所以, 40 | > 41 | > 不要问丧钟为谁而鸣, 42 | > 43 | > 它就为你而鸣! 44 | 45 | 46 | 47 | 为此海鸣威写下了 48 | 49 | > 这个世界是一个美好的地方,值得你为之奋斗。我非常不想离开这个世界 50 | 51 | 52 | 53 | 今天很残酷,明天很残酷 54 | 55 | 是的,那又怎么样呢,那又怎么样呢,万物皆有裂痕,那是光进来的地方 56 | 57 | 58 | 59 | 拥有钢铁般坚韧的意志,stiff upper lip ,不死在明天的夜里,后天会很美好 60 | 61 | 62 | 63 | 尼采说 64 | 65 | > 凡不能毁灭我的,必将使我强大 66 | 67 | 68 | 69 | 70 | 纵观历史,在绝望中寻找希望,以个人之力摆脱了命运的枷锁,即为人类群星闪耀时 71 | 72 | 73 | 74 | 因此,我们绝不会向命运低头,我们会对自杀说不 75 | 76 | 毕竟, 77 | 78 | > 活着就有希望 ——馬庫斯·圖利烏斯·西塞罗 79 | --------------------------------------------------------------------------------