0%

Quick anwser

.m3u8 is a video streaming file, it plays video and hides the video file

Some application can play the video, or convert it to other file format

Background

I was trying to make an expo application that plays anime from a website

Read more »

Problems

  1. Response code 500 on localhost/dvwa

    There may be some requried php module not being installed. Check all php module status in localhost/dvwa/setup.php

    In my cases, the PHP module mysql is not installed, and I’m solving this by:

    1
    2
    sudo apt-get install php-mysql
    sudo service apache2 restart
  2. Error message: Stopping MariaDB database server: mysqld failed!

    Read more »

2 problems is found today:

  • The github repo name is changed, which also needed to be changed in .travis.yml
  • The travis config: deploy.skip_cleanup (dpl v1), is still being used instead of deploy.cleanup (dpl v2)

As I have encountered some problems when I was using the official Netease Music UWP Client, such as song playing progress loss, sound missing randomly, or no response randomly…

I decided to make myself a new client as an exercise, here is the initial idea

Read more »

It has been around a month since last update, here is the incoming update.

Recent changes

Visual update

  • Icon
  • Splash screen
  • GitHub repo card (Hopefully?)
Read more »

Collection system

In my design, there are 3 types of default collections: Favorite, History, and Next.
Each Collection contains of a comic list and a collection name.
Every Comic added to any collection must also be found in “CachedComic” table, in the Android SQLite database.

Read more »