Original transcript: http://allisonrandal.com/2012/04/15/open-source-enlightenment/
這幾年來,我慢慢覺得,我們參與開源社群,就像是在一條道路上並肩而行:這不僅讓我們成為更好的程式設計者,也讓我們通過與人合作,而成為更好的人。
您可以將它想成一條修行之道,讓身而為人的我們能夠不斷成長。接下來,我想談談我對開源世界的個人觀點,希望能與您分享。
首先,人是一切開源專案的核心。程式碼是很重要,但最核心的永遠是人。
body { | |
font-family: optima; } | |
iframe { | |
border: none; } | |
.ib { | |
display: inline-block; | |
text-align: center; | |
border: 1px solid #cccccc; |
<masak> I came here because I heard this channel is the only one whose | |
niceness rivals that of #perl6, where I am a regular. | |
<masak> so far, it holds up :) | |
<supplicant> this channel is pretty awesome | |
<cartan> you haven't mentioned mysql yet | |
<oicu> we don't mind people mentioning mysql | |
<supplicant> we'll even try to help you with that problem |
Original transcript: http://allisonrandal.com/2012/04/15/open-source-enlightenment/
這幾年來,我慢慢覺得,我們參與開源社群,就像是在一條道路上並肩而行:這不僅讓我們成為更好的程式設計者,也讓我們通過與人合作,而成為更好的人。
您可以將它想成一條修行之道,讓身而為人的我們能夠不斷成長。接下來,我想談談我對開源世界的個人觀點,希望能與您分享。
首先,人是一切開源專案的核心。程式碼是很重要,但最核心的永遠是人。
.shape{ | |
height: 100%; | |
width: 100%; | |
} | |
.circle { | |
border-radius: 50%/50%; | |
-moz-border-radius: 50%/50%; | |
-webkit-border-radius: 50%/50%; | |
} | |
.hide { |
use 5.14.1; | |
use Moose; | |
has attr => ( | |
isa => 'Str', | |
is => 'rw', | |
required => 1, | |
); | |
__PACKAGE__->meta->make_immutable; |