Skip to content
View iCross's full-sized avatar
🚀
Solving problems with efficiency.
🚀
Solving problems with efficiency.
  • autonomad
  • Taiwan
  • 22:58 - 8h ahead

Organizations

@rubytaiwan

Block or report iCross

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

Hi 👋, I'm Lukas.

A passionate web developer from Taiwan.

Connect with me:

lukastsai lukastsai lukastsai

Languages and Tools:

Programming Languages

ruby python rust javascript php bash zsh coffeescript

Framework

rails electron

Frontend Development

angular bootstrap css3 html5 react sass tailwind

Database

mysql postgresql sqlite redis

DevOps / Infrastructure

aws docker linux nginx azure kubernetes gcp

Testing

jenkins selenium travis puppeteer

Static Site Generators

gatsby hugo

Automation

ifttt zapier zapier

Other

git git

Top Langs

iCross's GitHub stats

GitHub Streak

Pinned Loading

  1. my_choices Public

    Transform default HTML <select> tags with numerous options into Choices.js dropdowns for an enhanced and more manageable user experience.

    JavaScript

  2. brew upgrade and cleanup
    1
    alias brew_cleanup="brew update && brew outdated --verbose && brew upgrade  && brew cleanup -s --prune=all  && brew cleanup && brew autoremove --dry-run"
    2
    
                  
    3
    # brew autoremove
  3. vim-instant-markdown-py Public

    Instant Markdown previews from VIm in Python!

    Python 2

  4. auto-spacing-script Public

    Forked from vikiboss/auto-spacing-script

    Automatically add spaces between CJK and English characters.

    JavaScript

  5. One of my favorite zsh functions all...
    1
    function heic () {
    2
      for f in *.HEIC
    3
      do
    4
        [[ -e $f ]] || { echo "Error: File $f does not exist"; continue; }
    5
        output_file=${f:t:r}.jpg
  6. Optimizing Your Bash Scripts: An Adv...
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    set -o errexit
    4
    set -o nounset
    5
    set -o pipefail