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; |
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
{ | |
"_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
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
### | |
The code below repesents a section in the configuration. | |
### | |
section database { | |
var (host) = '127.0.0.1' % The host. | |
var (username) = 'root' % The username. | |
var (password) = 'admin' % The password. | |
var (schema) = 'test' % The schema. | |
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
#include "example.h" | |
Person* Person__create(char* firstName, char* lastName, unsigned int age) { | |
printf("Creating person with name \"%s %s\" and age %d.", firstName, lastName, age); | |
Person* person = malloc(sizeof(Person)); | |
person->firstName = firstName; | |
person->lastName = lastName; | |
person.age = age; | |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>{{ PROJECT_GROUPID }}</groupId> | |
<artifactId>{{ PROJECT_ARTIFACTID }}</artifactId> | |
<version>{{ PROJECT_VERSION }}</version> | |
<properties> | |
<encoding>UTF-8</encoding> | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Assignment 1</title> | |
<style type="text/css"> | |
.container { | |
width: 240px; | |
height: 120px; | |
position: relative; |
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; | |
server_name <DOMAIN>; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl http2; | |
server_name <DOMAIN>; |
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; | |
server_name <DOMAIN>; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl http2; | |
server_name <DOMAIN>; |
OlderNewer