Come on Google, no #driveforlinux?
April 25, 2012 Category :Uncategorized 0
Come on Google, no #driveforlinux?
April 25, 2012 Category :Uncategorized 0
Come on Google, no #driveforlinux?
April 17, 2012 Category :Uncategorized Off
Google BBS
April 10, 2012 Category :Uncategorized Off
September 18, 2011 Category :Java| Source Code 0
A few useful array methods in Java:
ArrayMethods.java
August 21, 2011 Category :Java| Source Code 0
Using quick sort algorithm, this software reads a text file with integers and returns a new text file containing allĀ integersĀ ordered.
Keep in mind that these files were used in class while learning Java. Sometimes they were written under very short deadline, that is, it might not be the most efficient way to write a code, but I hope it helps you as an example.
Feel free to use it.
It uses 3 files: Main.java, Order.java, and Sorter.java
» Continue Reading
August 3, 2011 Category :CSS| Web Devlopment 0
/* 1044s.scss */
/* Config */
$num-cols: 12;
$row-width: 1140px;
$container-lateral-padding: 20px;
$col-margin-right: 3.8%;
$col-unit: (100% + $col-margin-right) / $num-cols;
[..]
.container {
padding-left: $container-lateral-padding;
padding-right: $container-lateral-padding;
}
.row {
width: 100%;
max-width: $row-width;
margin: 0 auto;
overflow: hidden;
}
.col{
margin-right: $col-margin-right;
float: left;
}
@for $i from 1 through $num-cols {
.col-#{$i} { @extend .col;
width: $col-unit * $i - $col-margin-right; }
}
.col-#{$num-cols} {
margin-right: 0px;
}
.last {
margin-right: 0px;
}
img, object, embed {
max-width: 100%;
}