Skip to content

Instantly share code, notes, and snippets.

@dofy
Last active August 29, 2015 14:02
Show Gist options
  • Save dofy/67cc8833ed8658b3a107 to your computer and use it in GitHub Desktop.
Save dofy/67cc8833ed8658b3a107 to your computer and use it in GitHub Desktop.
Who am I.
package org.phpz
{
/**
* Who am I
* @author Seven Yu
*/
public class Me extends Engineer implements IFrontEnd, IBackEnd
{
private var _name:String;
private var _email:String;
private var _uri:String;
private var _blog:String;
private var _isHappy:Boolean;
public function Me()
{
init();
}
private function init():void
{
_name = 'Seven Yu';
_email = 'dofyyu@gmail.com';
_uri = 'http://dofy.net/';
_blog = 'http://blog.dofy.net/';
_isHappy = true;
}
public function get skills():Array
{
return [Node.js, Vim, ActionScript, PHP, JavaScript, jQuery, Html, CSS];
}
public function get name():String
{
return _name;
}
public function get email():String
{
return _email;
}
public function get uri():String
{
return _uri;
}
public function get blog():String
{
return _blog;
}
public function get isHappy():Boolean
{
return _isHappy;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment