Skip to content

Instantly share code, notes, and snippets.

View audreyt's full-sized avatar

唐鳳 audreyt

View GitHub Profile
@zbryikt
zbryikt / index.css
Last active December 27, 2015 11:29
write svg with jade, sass, livescript!
body {
font-family: optima; }
iframe {
border: none; }
.ib {
display: inline-block;
text-align: center;
border: 1px solid #cccccc;
@masak
masak / chat_log.txt
Created July 13, 2012 20:39
Meanwhile, on #postgresql
<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/

這幾年來,我慢慢覺得,我們參與開源社群,就像是在一條道路上並肩而行:這不僅讓我們成為更好的程式設計者,也讓我們通過與人合作,而成為更好的人。

您可以將它想成一條修行之道,讓身而為人的我們能夠不斷成長。接下來,我想談談我對開源世界的個人觀點,希望能與您分享。

首先,人是一切開源專案的核心。程式碼是很重要,但最核心的永遠是人。

@nakhli
nakhli / editor.css
Last active October 22, 2019 21:06
Backbone.js tutorial - Part 1 - www.sinbadsoft.com
.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;