Skip to content
View xiaoyu2006's full-sized avatar
:shipit:
Professional Github Flight Attendant
:shipit:
Professional Github Flight Attendant

Highlights

  • Pro

Organizations

@ynf-mc
Block or Report

Block or report xiaoyu2006

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
xiaoyu2006/README.md

Pinned

  1. YACE YACE Public

    Yet Another Chip8 Emulator named QChip8.

    C 4 1

  2. xiaoyu2006.github.io xiaoyu2006.github.io Public

    Blog! Yay!

    Ruby 1

  3. Check if a string is bad. Check if a string is bad.
    1
    def is_str_bad(s):
    2
        s = s.lower()
    3
        r = False
    4
        r |= (s.find("political") != -1)
    5
        r |= (s.find("politics") != -1)