This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
1- java bugs - http://bugs.java.com/ | |
2- Ubuntu packages - https://packages.debian.org/wheezy/amd64/sysstat/download | |
3- Icon design apps - http://www.iconarchive.com/show/flatastic-8-icons-by-custom-icon-design.2.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
$ mvn install | |
#Build jar with dependencies | |
$ mvn assembly:assembly -DdescriptorId=jar-with-dependencies | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
GLPK Tutorial | |
Requires Eclipse 3.7 (Indigo). At the moment, there is no official plugin for Juno | |
#Install dependecies | |
> sudo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% | |
% author Huber Flores | |
% | |
%minted | |
-download minted or install it | |
-located the file minted.sty in the working folder | |
-add the arguments -shell-scape to the pdflatex command | |
In Kile(Settings -> Configure Kile -> Tools + Build -> PdfLatex -> "write the command into the box" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
> using 1:3 | |
X Y1 Y2 | |
1 10 100 | |
2 20 200 | |
... | |
#takes 1 as x axis, and 3 as y axis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ee.ut.cs.mc.example; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.ObjectOutputStream; | |
import java.io.Serializable; | |
import java.math.BigInteger; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
import java.util.Random; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
#Instructions to Uninstall in Linux (Debian) | |
#use the utility "purge" | |
#Example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###DO NOT delete header### | |
# | |
# author Huber Flores | |
# | |
#clear screen | |
> command | |
Ctrl + l | |
> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ee.ut.cs.mc.exercise; | |
public class NQueens { | |
static int[] x; | |
public NQueens(int N) { | |
x = new int[N]; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# author Huber Flores | |
# | |
Go to: https://code.google.com/apis/console/ | |
###Server | |
- API access |