diff --git a/public/README.md b/public/README.md deleted file mode 100644 index 452f717..0000000 --- a/public/README.md +++ /dev/null @@ -1,79 +0,0 @@ -### πŸŽ„ Merry Christmas! - -Here, have some candies 🍬🍬🍬🍬🍬 - -### 🐱 Hi there, I'm Hykilpikonna! - -I'm Hykilpikonna, a first-year undergraduate student at the University of Toronto, majoring in computer science and psychology. I'm interested in web development and machine learning. I'm currently doing research on voice-based gender identification for Chinese speakers. - -I also love cats =^ο½₯-ο½₯^= - - -### 🌷 My overall statistics - -![](https://github-readme-stats.vercel.app/api?username=hykilpikonna&hide=stars&include_all_commits=true&show_icons=true&title_color=ff7d92&text_color=ffb5c2&icon_color=ff869a) - -### πŸ•ŠοΈ You can reach me at - -* Telegram [@hykilpikonna](https://t.me/hykilpikonna) -* Discord `Hykilpikonna#3162` -* Wechat `@hykilp` -* Email me[@](#at)hydev[.](#dot)org -* **NEW!** Anonymous Question Box: https://peing.net/hykilpikonna - -### 🌎 I can speak - -* πŸ‡ΊπŸ‡Έ English - * Shanbay: [13053 Words (97th Percentile)](https://imgur.com/a/jk3tDGi) (Tested on [Shanbay](https://www.shanbay.com/bdc/mobile/vocabtest/), as of Apr. 20, 2021) - * IELTS: 8.0 (Listening: 7.5, Reading: 8.0, Writing: 7.5, Speaking: 8.0, as of Apr. 29, 2021) -* πŸ‡¨πŸ‡³ δΈ­ζ–‡ - * Arealme: [1995 Words (45th Percentile)](https://imgur.com/sxtLGzM) (Tested on [arealme.com](https://www.arealme.com/chinese-vocabulary-size-test/cn/), as of Apr. 20, 2021) -* πŸ‡―πŸ‡΅ ζ—₯本θͺž (Learning) - * `65.3%` toward completing N5 - -### ⭐ I have experience using - -* Kotlin / Java -* TypeScript / JS -* HTML & SCSS -* Python 3 -* Swift - -
More -

- -* Kotlin / Java - * Gradle & Maven - * Spring - * JUnit - * Hibernate - * ... and many others -* TypeScript / JavaScript - * Vue - * Angular - * Ionic / Cordova -* HTML & SCSS / Sass - * ElementUI - * ECharts - * Vuesax -* Python 3 -* Swift -* ~~C++~~ - -

-
- -### 🌱 Projects I'm currently working on - -* `20%` A personal home page / blog -* `20%` A speech gender recognition bot based on ML -* `10%` A RottenTomatoes filter -* `10%` A spaced-repetition vocabulary memorization program optimized for Japanese language study - [NyaaMemo](https://github.com/hykilpikonna/AnkiNG). - -### 🌲 Completed projects - -I mostly publish my projects to [HyDEV (HyDevelop)](https://github.com/hydevelop), a two-person organization of me and my best friend [Vanilla](https://github.com/vergedx). -There is a list of my significant completed projects with English descriptions on my [About-Me website](https://me.hydev.org). -But here is a brief list of my projects with their statistics: - -(Since some of them, such as PicqBotX, is only applicable to a Chinese developer community, their description and documentation shouldn't be in English) diff --git a/src/views/About.vue b/src/views/About.vue index eb0a7a7..373b578 100644 --- a/src/views/About.vue +++ b/src/views/About.vue @@ -26,8 +26,8 @@ export default class About extends Vue mounted(): void { - // TODO: Cloudflare CDN - fetch("/README.md").then(it => it.text()) + // Fetch readme + fetch(`${backendUrl}/profile-readme.md`).then(it => it.text()) .then(it => this.html = marked(parseExtensions(it.replace(emojiRegex(), (emoji) => { return `${emoji}` }))))