Skip to content

Instantly share code, notes, and snippets.

View nvurgaft's full-sized avatar
👾
I'm a Megazord

nick nvurgaft

👾
I'm a Megazord
  • Private
  • Israel
View GitHub Profile
@nvurgaft
nvurgaft / BigNumber.java
Last active October 27, 2019 13:08
Example Big Number implementation in Java
/**
* Created by Nick on 1/28/2017.
*/
public class BigNumber {
private Node head = null;
public BigNumber(BigNumber other) {
Node currentOther = other.getHead();
@nvurgaft
nvurgaft / ReportTest.class
Last active December 15, 2020 09:09
An example class that uses DynamicReports to generate demo a report with subreports and a timechart
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Date;
import java.util.stream.Collectors;
import java.util.stream.Stream;