[go: nahoru, domu]

Skip to content
View halsoo's full-sized avatar
🤯
Back to Sogang
🤯
Back to Sogang
  • Sogang University
  • Seoul, South Korea
Block or Report

Block or report halsoo

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
halsoo/README.md

Hi, I'm DongMin Kim

You can also call me Halsoo

  • 👷‍♂️ masters student @ MALer Lab, Sogang Univ, Seoul.

  • 🤔 research interests: neural DSP, neural synthesizer, synthetic dataset

  • 💬 please contact me freely about research, collab opportunities, etc.

  • 📫 dmkim@sogang.ac.kr

Pinned Loading

  1. Blues-Machine Blues-Machine Public

    Jupyter Notebook

  2. finding-tori-demo finding-tori-demo Public

    JavaScript 1

  3. Simplified HTML template parser with... Simplified HTML template parser with some markdown syntax
    1
    import json
    2
    import regex as re # regex module with infinite width lookbehind
    3
    
                  
    4
    # parse plain text with template syntax
    5
    class Parser:
  4. byte counter for KR + EN text byte counter for KR + EN text
    1
    const charToByte = {
    2
        2: char => char>>7 ? 2 : 1, // count one korean letter as 2 bytes
    3
        3: char => char>>11 ? 3 : char>>7 ? 2 : 1 // count one korean letter as 3 bytes utf-16
    4
    }
    5
    
                  
  5. Fit SVG image to parent Fit SVG image to parent
    1
    import { useState, useEffect, useRef } from 'react';
    2
    import { fitSvg } from 'fitSvg.js'
    3
    import icons from 'imgs/icons.svg'
    4
    
                  
    5
    const useSkipFirstEffect = (func, deps) => {