Skip to content

Instantly share code, notes, and snippets.

@mfullen
mfullen / gist:8328365
Created January 9, 2014 02:21
Automated code generated by netbeans from Form Designer
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents()
{
java.awt.GridBagConstraints gridBagConstraints;
jLabel1 = new javax.swing.JLabel();
titleTextField = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
titleTextField1 = new javax.swing.JTextField();
@mfullen
mfullen / gist:8328563
Created January 9, 2014 02:40
Code required to create a Movie panel with Mig Layout
public static JPanel createMigLayoutPanel()
{
JPanel panel = new JPanel();
JTextField title = new JTextField();
JTextField descrption = new JTextField();
JTextField releasedate = new JTextField();
JTextField category = new JTextField();
//allow 2 components per line
@mfullen
mfullen / cs6400-dbsys_docker-compose.yml
Last active August 10, 2017 20:44
cs6400-dbsys Docker LAMP stack
version: "3.3"
services:
mysql:
#image: mysql:5.6.26
build: ./sql
container_name: cs6400-mysql
ports:
- 3306:3306
environment:
MYSQL_USER: "cs6400u"