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
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
root /var/www/html; | |
index index.php index.html index.htm index.nginx-debian.html; | |
server_name server_domain_or_IP; | |
location / { |
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
{ | |
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", | |
"meta": { | |
"version": "PTDL_v1" | |
}, | |
"exported_at": "2018-03-03T14:41:28-05:00", | |
"name": "GMOD-@ID@", | |
"author": "[email protected]", | |
"description": "Garry's Mod server for @PLAYERS@ players.", | |
"image": "quay.io\/pterodactyl\/core:source", |
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 NumberFormatTest { | |
private static enum Unit { | |
K(4, 6, "K"), | |
M(7, 9, "M"), | |
B(9, 12, "B"); | |
private int min, max; | |
private String unitChar; |
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 com.azoraqua.passwordgenerator.gui; | |
import com.azoraqua.passwordgenerator.generator.password.CharacterSet; | |
import com.azoraqua.passwordgenerator.generator.password.PasswordGenerator; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.datatransfer.Clipboard; | |
import java.awt.datatransfer.StringSelection; | |
import java.awt.event.MouseAdapter; |
NewerOlder