Skip to content

Instantly share code, notes, and snippets.

View smbarbour's full-sized avatar

Scott M. Barbour smbarbour

View GitHub Profile
@DV8FromTheWorld
DV8FromTheWorld / Plugin Features List
Created May 10, 2012 18:50
List of Feature in the "Mail" plugin
All commands and their respective permissions nodes will be listed at the bottom along with what they do.
1) The ability to automatically add users to a "list" when they join.
Players should be removed from this list after X amount of days. This should be configurable.
This list is what the plugin should look to when trying to send mail to a user.
If the user is not on this list, the message will not be sent.
2) Check to see that the message is actually addressed to a real user.
When users send messages, it should check the list for the username that the message is being sent to.
If the username is not present in the list, then it should not send the message to the database for storage
@jewelsea
jewelsea / ModalConfirmExample.java
Created February 22, 2012 21:47
JavaFX Modal Confirm Dialog Box Example
import javafx.application.Application;
import javafx.beans.value.*;
import javafx.concurrent.Worker;
import javafx.event.*;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.effect.BoxBlur;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;