Skip to content
View n-at-han-k's full-sized avatar
๐Ÿš€
๐Ÿš€

Highlights

  • Pro

Block or report n-at-han-k

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
n-at-han-k/README.md

๐Ÿ‘‹

Solve problems using ruby.

Pinned Loading

  1. ruby-twilio-openai-realtime-example ruby-twilio-openai-realtime-example Public

    Example Rack App for connecting the OpenAI realtime API to twilio using Falcon server.

    Ruby 2

  2. teapot-cloudflare-worker teapot-cloudflare-worker Public

    Cloudflare Worker that simply returns: 418 - I'm a teapot

    JavaScript

  3. dwm-rice dwm-rice Public

    My suckless rice

    C

  4. Bash shell script to quickly push al... Bash shell script to quickly push all changes to git in one command from any sub-directory.
    1
    #!/bin/bash
    2
    
                  
    3
    GIT=`which git`
    4
    REPO_DIR=`${GIT} rev-parse --show-toplevel`
    5
    cd ${REPO_DIR}
  5. Script to enable keyboard backlight ... Script to enable keyboard backlight on Apple Macbook Air (Intel)
    1
    #!/bin/bash
    2
    
                  
    3
    set +o noclobber
    4
    modprobe applesmc
    5
    echo 10 > /sys/class/leds/smc::kbd_backlight/brightness
  6. Ruby strftime cheatsheet ๐Ÿ’Žโฐ Ruby strftime cheatsheet ๐Ÿ’Žโฐ
    1
    # Additional reference here:
    2
    # https://strftime.org
    3
    
                  
    4
    require 'active_support/core_ext/integer/inflections' # To use .ordinalize() outside of rails
    5