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
| /** | |
| * zQuery v1.0 | |
| * Created By Pro of zetaNetwork for Learning Purposes | |
| * http://s4.zetaboards.com/zetanetwork | |
| */ | |
| (function (window, document, undefined) { | |
| //Constructor with an optional element selector. | |
| var zquery = function (a) { | |
| //If a selector is defined. |
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
| /** | |
| * zQuery v1.0 | |
| * Created By Pro of zetaNetwork for Learning Purposes | |
| * http://s4.zetaboards.com/zetanetwork | |
| */ | |
| (function (window, document, undefined) { | |
| //Constructor with an optional element selector. | |
| var zquery = function (a) { | |
| //If a selector is defined. |
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
| /** | |
| * zQuery v1.0 | |
| * Created By Pro of zetaNetwork for Learning Purposes | |
| * http://s4.zetaboards.com/zetanetwork | |
| */ | |
| (function (window, document, undefined) { | |
| //Constructor with an optional element selector. | |
| var zquery = function (a) { | |
| //No "new" needed. | |
| if(this === window){ |
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
| Noob Greg = new Noob(){ | |
| boolean noob; | |
| boolean inchaos; | |
| { | |
| this.noob = true; | |
| this.inchaos = false; | |
| } | |
| Noob(){ |
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
| public class Gill { | |
| public static void main(String[] args){ | |
| int[][] g = {{100, 100, 33, 10}, {80, 80, 80, 80, 80}, {50, 50, 50}, {90, 95, 100, 45}}; | |
| for(int n = 0, j = g.length; n < j; n++){ | |
| int k = 0, h = g[n].length; | |
| for(int q = 0; q < h; q++){ | |
| k += g[n][q]; | |
| System.out.print(g[n][q] + " " + (q + 1 == h ? "\t|\tAverage\t" + (double) k / h + "\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
| //Imports | |
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| import java.util.*; | |
| public class Dice extends JFrame{ | |
| //Nested die class. | |
| private class Die { | |
| private int val; |
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
| /** | |
| * zQuery v1.0 | |
| * Created By Pro of zetaNetwork for Learning Purposes | |
| * http://s4.zetaboards.com/zetanetwork | |
| */ | |
| (function(window, document, undefined) { | |
| //Constructor with an optional element selector. | |
| var zquery = function(a) { | |
| //No "new" needed. | |
| if (this === window) { |
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 boxx.component; | |
| import java.awt.Color; | |
| import java.awt.Dimension; | |
| import java.awt.Font; | |
| import java.awt.FontMetrics; | |
| import java.awt.Graphics; | |
| import java.awt.Graphics2D; | |
| import java.awt.Image; | |
| import java.awt.Point; |
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
| public class Orthographic { | |
| public static void main(String[] args){ | |
| String[] input = {"F888 1200 1000 1020"}; | |
| for(int n = 0; n < input.length; n++){ | |
| //Split input set up cube. | |
| String[] layers = input[n].split(" "); | |
| String[][][] cube = new String[4][4][4]; | |
| //Fill cube. |
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
| import java.util.ArrayList; | |
| import java.util.Stack; | |
| public class BooleanExtended { | |
| public static void main(String[] args){ | |
| String[] input = { | |
| "AB!", | |
| "ABC$", | |
| "AAA#", | |
| "CAAB$!", |
OlderNewer