Giter VIP home page Giter VIP logo

mcadmin's Introduction

#MCAdmin Remote Minecraft Server Administration Over the Web

##Introduction This program is ment to act as a remote control panel for your Minecraft Server. It features an easy to use web-interface that allows you to manage your server in the simplest way possible.


##Usage When it is finnished, this program will allow you to use the web-interface to install and manage the Minecraft Server.


##Developing IMPORTANT NOTE: PUT THE DATA FOLDER INTO YOUR DEBUG DIRECTORY
Development

Please use the C# Coding Standards document when writing code.

Property modifiers may be on the same line when used as public string Name { get; set; } but not when used as

public string Name
{
get
{
return _name;
}
set
{
_name = value
}
}

Note: in abstract classes, follow this sequence for method/property placement:

public abstract Type PropertyName { get; set; }
protected abstract Type PropertyName { get; set; }
internal abstract Type PropertyName { get; set; }

public abstract type MethodName();
protected abstract type MethodName();
internal abstract type MethodName();

public virtual Type PropertyName { get; set; }
protected virtual Type PropertyName { get; set; }
internal virtual Type PropertyName { get; set; }

public type virtual MethodName()
{ /*...*/ }
protected type virtual MethodName()
{ /*...*/ }
internal type virtual MethodName()
{ /*...*/ }

public Type PropertyName {get; set}
protected Type PropertyName {get; set}
internal Type PropertyName {get; set}
private Type PropertyName {get; set}

public ClassName()
{ /*...*/ }
protected ClassName()
{ /*...*/ }
internal ClassName()
{ /*...*/ }
private ClassName()
{ /*...*/ }

public type MethodName()
{ /*...*/ }
protected type MethodName()
{ /*...*/ }
internal type MethodName()
{ /*...*/ }
private type MethodName()
{ /*...*/ }

etc.


Commiting
Commit messages should follow this template:

Capitalized, short (50 chars or less) summary

More detailed explanatory text, if necessary. Wrap it to about 72 characters or so. In some contexts, the first line is treated as the subject of an email and the rest of the text as the body. The blank line separating the summary from the body is critical (unless you omit the body entirely); tools like rebase can get confused if you run the two together.

Write your commit message in the present tense: "Fix bug" and not "Fixed bug." This convention matches up with commit messages generated by commands like git merge and git revert.

Further paragraphs come after blank lines.

  • Bullet points are okay, too

  • Typically a hyphen or asterisk is used for the bullet, preceded by a single space, with blank lines in between, but conventions vary here

  • Use a hanging indent

(Shamelessly *borrowed* from tbaggery.com.)

mcadmin's People

Contributors

seaboy1234 avatar

Watchers

 avatar

mcadmin's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.