Web Developer, Photography Hobbyist, Technology Enthusiast, Open Source Addict, Linux Evangelist and a self-declared Geek.
Relentless problem solver; applying analytical, design and technical skills with expertise in a diverse range of technologies to find answers.
I'm The Director of Web Services at Viigo
Code in Chaos is my one-man company.
In the spirit of Open Source, a number of VC funding documents are popping up around the web. Here are four worth looking at:
- TechStars Model Seed Funding Documents (by Cooley)
- Y Combinator Series AA Equity Financing Documents (by WSGR)
- Founders Institute Plain Preferred Term Sheet (by WSGR)
- Series Seed Financing Documents (by Fenwick & West)
I’m not sure that the concept of “open source” funding documents will ever take off, but I have seen some pretty convoluted and arcane docs in my time, so at a minimum, I do like the idea of a repository of “best practice” or even “sample” documents being readily available, transparent and subject to open debate.
I do hope that better visibility and open discourse lead to improvements in the clarity and simplicity of these types of documents. Sometimes I am stunned at how poorly written funding documents are, as the institutional memory of all things that have gone bump in the night before, gets cobbled together into the text like some sort of Dr. Seuss contraption.
There are many cross-browser issues and transparency is one of the weird issues among them. All the browsers treat transparency in a different way to overcome this issue we need to define three different properties. The below properties are specific to a browser.
.trans{
opacity: 0.5;
filter:alpha(opacity=50);
-moz-opacity:0.5;
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
-khtml-opacity: 0.5;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
Semi-transparent backgrounds are nice. They would be more popular, but Internet Explorer doesn’t support .png transparency. There are a few clunky workarounds. Here’s another that’s a little less clunky.
for this technique you have to need 2 images.
.trans_1 {
font-family:tahoma;
font-weight:bold;
padding:50px;
border:solid 3px #00ff00;
/* Mozilla ignores crazy MS image filters, so it will skip the following */
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='/ trans-bg.png');
}
/* IE ignores styles with [attributes], so it will skip the following. */
.trans_1[class] {
background-image:url(/trans-bg.png);
}
<div style="float:left;background-image:url(/background.jpg);border:solid 3px #000;padding:10px;">
<div style="float:left;">DesignDazzling.com.</div>
<div style="float:left;">TutorialsPalace.com.</div>
<div style="float:left;"><a target="_blank" href="http://www.trendyshowcase.com"> Latest Websites Gallery</a></div>
(via juliasegal)
Really cool travel coffee mug made to look like a Canon EF 70-200mm f/4L lens given out to...
Copyright © 2003–2010 Ahmad Nassri. Some rights reserved.
Postage Theme by Greg Cooper. Icons by P.J. Onori.
Comments