Skip to content
View yuan-yexi's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report yuan-yexi

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

Pinned Loading

  1. List comprehension to check if one l... List comprehension to check if one list contains element of another list
    1
    seq_nums = [1, 2, 3, 4, 5]
    2
    odd_nums = [1, 3, 5, 7, 9]
    3
    
                  
    4
    even_nums = [t for t in seq_nums if t not in odd_nums]
  2. JavaScript Chunck Array into Groups JavaScript Chunck Array into Groups
    1
    function chunkArrayInGroups(arr, size) {
    2
      const numOfChuncks = arr.length / size
    3
      let arrCopy = arr.slice()
    4
      let chunckedArray = []
    5
      let startSlice = 0
  3. deploy-machine-learning-model deploy-machine-learning-model Public

    Learning to build and deploy a ML model into proudction

    Jupyter Notebook 1

  4. etl-pipeline-demand-data-api etl-pipeline-demand-data-api Public

    Python

  5. youtube_scraper youtube_scraper Public

    Python YouTube scraper using bs4 and selenium

    HTML

  6. hdb_resale_coordinates_api.py hdb_resale_coordinates_api.py
    1
    # This may take a while...
    2
    latitude = []
    3
    longitude = []
    4
    blk_no = []
    5
    road_name = []