Skip to content

Instantly share code, notes, and snippets.

View carneeki's full-sized avatar

Adam carneeki

View GitHub Profile
@carneeki
carneeki / TEAM-4774-JAVATUT-001-LoopWhile.java
Last active December 10, 2015 09:08
Demonstrate loops using while
/*
* loopWhile
* Demonstrate loops using the 'while' structure
*/
class loopWhile
{
public static void main (String[] args)
{
int i=1; // here we create our counter called i.
@carneeki
carneeki / TEAM-4774-JAVATUT-002-LoopFor.java
Last active December 10, 2015 09:09
Demonstrate loops using for() syntax
class LoopFor
{
public static void main (String[] args)
{
for(int i=1; i<=10; i++) // here we create our counter, then set the condition,
// and finally increment the counter all in one line
{
System.out.println(i); // this is where we do our stuff
}
}
@carneeki
carneeki / rtm.tex
Created October 4, 2012 19:47
Requirements Traceability Matrix
\chapter{Requirements Traceability Matrix}
\begin{table}[!htb]
\rowcolors{2}{gray!12.5}{white}
\begin{tabularx}{\linewidth}{ c c c l c X }
ID & From-ID & To-ID & Type & Build \# & Use Case/Class etc\ldots \\ \hline
\texttt{X-YY-nn} & \texttt{X-YY-nn} & \texttt{X-YY-nn} & Type & Build Number &
Use Case Name \\
\texttt{X-YY-nn} & \texttt{X-YY-nn} & \texttt{X-YY-nn} & Type & Build Number &
Use Case Name \\
\texttt{X-YY-nn} & \texttt{X-YY-nn} & \texttt{X-YY-nn} & Type & Build Number &
@carneeki
carneeki / numbering systems
Created July 25, 2012 13:06 — forked from anonymous/numbering systems
numbering systems section
\part{Number Systems, Operations, and Codes}
\section{Number Systems}
For most of us we have only ever known one numbering system, decimal
and for that reason it can be easy to overlook the arbitrary nature
of such a system but more importantly it can be easy to overlook the
fact it isn't the only one.