Skip to content
View yuuan's full-sized avatar

Block or report yuuan

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. Zsh で Laravel の artisan コマンドを補完 Zsh で Laravel の artisan コマンドを補完
    1
    #compdef artisan
    2
    
                  
    3
    function __older_than_laravel54() {
    4
    	local version=$(cat composer.lock | jq '.packages[] | select(.name == "laravel/framework").version')
    5
    	echo $version | grep -e 'v5\.[0-3]\.' &> /dev/null
  2. userChrome.css userChrome.css
    1
    @charset "utf-8";
    2
    /*
    3
     * このファイルを編集して、profile-directory/chrome/userChrome.css
    4
     * としてコピーしてください。
    5
     */
  3. Firefox で `ページのソースを表示` したときのデザインを上書き... Firefox で `ページのソースを表示` したときのデザインを上書きするためのスタイルシート
    1
    @-moz-document url-prefix(view-source) {
    2
        body {
    3
            margin: 0;
    4
        }
    5
        #viewsource {
  4. notify-send notify-send
    1
    #!/usr/bin/perl
    2
    
                  
    3
    use common::sense;
    4
    use IPC::System::Simple qw(systemx);
    5
    
                  
  5. tmux-ssh-host tmux-ssh-host Public

    This plugin displays the hostname connect by ssh command.

    Shell 3 1

  6. Zsh で composer コマンドを補完 Zsh で composer コマンドを補完
    1
    #compdef composer
    2
    
                  
    3
    function __composer_get_command_list() {
    4
    	if which composer &> /dev/null && which perl &> /dev/null; then
    5
    		composer list --raw | perl -pe 's/:/\\:/g;s/([a-z\\:-]+)(?:\s+(.*))?/$1:$2/ig;'