[O] Use CDN for readme.md

This commit is contained in:
Hykilpikonna
2021-12-25 15:43:13 -05:00
parent 78ce2fa5fe
commit 8b2a2dda4a
2 changed files with 2 additions and 81 deletions
-79
View File
@@ -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 <!--{ hideLines(3) }-->
![](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 <!--{ collapseSection() }-->
* 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 <!--{ collapseSection() }-->
* 🇺🇸 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 <!--{ collapseSection() }-->
* Kotlin / Java
* TypeScript / JS
* HTML & SCSS
* Python 3
* Swift
<details><summary style="margin-left: 20px;">More</summary>
<p>
* 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++~~
</p>
</details>
### 🌱 Projects I'm currently working on <!--{ collapseSection() }-->
* `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 <!--{ collapseSection() }-->
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)
+2 -2
View File
@@ -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 `<span class="emoji">${emoji}</span>`
}))))