Come on Google, no #driveforlinux?

April 25, 2012 Category :Uncategorized 0

Come on Google, no #driveforlinux?

Google BBS :)

April 17, 2012 Category :Uncategorized Off

Google BBS :)

What Google would have looked like in the 80s. A working service after a video by Squirrel-Monkey.com.

Google+ post: No title available…

April 10, 2012 Category :Uncategorized Off

Work in progress :-)

April 10, 2012 Category :Uncategorized Off

Giant kitty :)

February 14, 2012 Category :Uncategorized Off

Giant kitty :)

White Tiger at Houston Aquarium

#UFC on FOX!! :-)

January 29, 2012 Category :Uncategorized Off

Java: Array Methods

September 18, 2011 Category :Java| Source Code 0

A few useful array methods in Java:
ArrayMethods.java

» Continue Reading

Java: Sort integers in a given text file

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

1140 Grid with custom margin-right

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%;
}

How to build a corporate website

February 2, 2011 Category :Web Devlopment 0