var fDesc=new Array();
fDesc[0] = "Web platform to manage your code snippets directly from your preferred IDE: collect, organize and share with your friends and colleagues the few lines that actually solve your coding issue. Publish your solutions and scale-up the ranking! The more snippets you publish, the more reputation you receive, and the more chances of getting voted and becoming the most popular snipper of our 50k+ monthly active users community!
If you are a private developer, just join our large community of experts and software gurus: learn by quality examples of talented people, and help other guys with your precious pearls of wisdom.
If you are in a software team, you can convey the best practices and guidelines of your team(s) in a centralized store, always available from everywhere, with a complete set of tools to manage the editing/viewing privileges in a hierarchical way: with Snip2Code, your software product lifecycle will be shorten by a 20% in terms of delivery time and developing costs. And the knowledge of each single member will become a perpetual asset of the company. No more time-consuming searches on Google, or browsing of repositories: with Snip2Code the best snippet you need now is available in a couple of seconds!";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}