Skip to content
View aztice's full-sized avatar
😜
Your call, feel free to reach out to me via email/others.
😜
Your call, feel free to reach out to me via email/others.

Organizations

@LightDevTeam

Block or report aztice

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
aztice/README.md




<?php
// yup, there was a little bit of situation changed.
// it seems that i changed my self-introduction (?
// a new style will be shown.
// also my lover, PHP.
class Profile{
  public function __construct() {
    $funcs = [
      [$this, "greeting"],
      [$this, "interests"],
      [$this, "dreams"],
      [$this, "promotion"]
    ];
    $contents = "";
    foreach ($funcs as $fn) {
      $contents .= $fn();
    }
    $contents = $this -> docsify($contents);
    exit($contents);
  }
  public function docsify($str) : string {
    $filter = ["[+]" => "\n"];
    foreach($filter as $target => $replaced) {
      $str = str_replace($target, $replaced, $str);
    }
    return $str;
  }
  public function greeting() : string {
    return "Hi there, im ice";
  }
  public function interests() : string {
    return "### My interest [+]
 - PHP (Without frame, i hate this)
 - HTML+CSS+JS (No Vue cause i love flexible and tiny one)
 - Python (Mainly BigData)
 - SCP:SL Plugins' Development (i like to do so without rs)[+]";
  }
  public function dreams() : string {
    return "### Dreams [+]
 - Be a real Ai Researcher which never take a back seat.
 - Got a nice Offer From enterprise || maybe i will set up a start-up?
 - Find the one who can engage me doing the followings, both `bro` and `GF`[+]";
  }
  public function promotion() : string {
    return "> btw, i found a dev team when i were a primary stu., if u are interested in, feel free to reach out us via our qq group (`494512016`)";
  }
}
new Profile();

Popular repositories Loading

  1. LightPyBuilder LightPyBuilder Public

    A Builder that allows user to build python application to exe online.

    PHP 1 1

  2. JsonDB JsonDB Public

    PHP 1 1

  3. pywin pywin Public

    一个基于tkinter二次封装的库,优化tkinter的通病,并自动执行自适应。

    Python 1

  4. main main Public

    HTML

  5. aztice aztice Public

    A description of aztice

  6. turtle-polygon turtle-polygon Public

    A module that can make polygon in turtle easily!

    Python