Skip to content

Instantly share code, notes, and snippets.

View vgaldikas's full-sized avatar

Vytautas vgaldikas

  • Lithuania
View GitHub Profile
<product id="1034">
<title>
<![CDATA[ H 76E 60x/1000 Schlosser gartraukis ]]>
<!--Jeigu yra laukas su H 76E 60x/1000, tada idekita sita i model tag'ą-->
</title>
<description>
<![CDATA[
Oro srautas(m3/val.) 1000"
Plotis (cm) 60
Greičių kiekis 3
body {
padding: 0;
margin: 0;
background: #3FA8C6;
background-image: -moz-linear-gradient(top, #3fa8c6 0%, #3fa8c6 0%, #399ab2 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3fa8c6), color-stop(0%,#3fa8c6), color-stop(100%,#399ab2));
background-image: -webkit-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
background-image: -o-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
background-image: -ms-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
@vgaldikas
vgaldikas / JavaCandR.sublime-build
Created August 22, 2012 20:37 — forked from DevinClark/JavaCandR.sublime-build
This is a build script for Sublime Text 2 that will compile and run the open java file by simply pressing cmd + B. I am very new at Java so feel free to point out problems with this script. You can just drop this file in the User Packges folder and restar
{
"cmd": ["javac", "$file_name"],
"cmd": ["java", "$file_base_name"],
"working_dir": "${project_path:${folder}}",
"selector": "source.java"
}