Skip to content
View iCross's full-sized avatar
๐Ÿš€
Solving problems with efficiency.
๐Ÿš€
Solving problems with efficiency.
  • autonomad
  • Taiwan
  • 20:33 (UTC +08:00)

Organizations

@rubytaiwan
Block or Report

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

  1. my_choices 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 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 vim-instant-markdown-py Public

    Instant Markdown previews from VIm in Python!

    Python 2

  4. auto-spacing-script 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... One of my favorite zsh functions allows me to effortlessly upload .HEIC photos from my iPhone to macOS and automatically convert them to .jpg format. Furthermore, I can then utilize mozjpeg to compress the images, optimizing their size without compromising quality. MIT License.
    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... Optimizing Your Bash Scripts: An Advanced Template and Its Key Features. MIT license.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    set -o errexit
    4
    set -o nounset
    5
    set -o pipefail