This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [build] | |
| rustflags = [ "--remap-path-prefix", "/home/hanepjiv=~", | |
| "--remap-path-prefix", "/media/hanepjiv=~", | |
| ] | |
| [target.i686-unknown-linux-gnu] | |
| ar = "i686-pc-linux-gnu-clang" | |
| linker = "i686-pc-linux-gnu-clang" | |
| [target.x86_64-unknown-linux-gnu] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- -*- mode:haskell;coding:utf-8-unix; -*- | |
| :set +s | |
| :set +t | |
| :set -XDeriveDataTypeable | |
| :set -XScopedTypeVariables | |
| :set -XOverloadedStrings | |
| :set -XGADTs | |
| :set -XArrows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3 | |
| # -*- mode:python; coding:utf-8-unix; -*- | |
| ''' | |
| rust_forbid.py | |
| Copyright 2018 hanepjiv | |
| @author hanepjiv <hanepjiv@gmail.com> | |
| @copyright The MIT License (MIT) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env bash | |
| # -*-mode:sh;coding:utf-8-unix-*- | |
| ## | |
| ## @file rust_allchecks.sh | |
| ## @brief rust_allchecks.sh | |
| ## | |
| ## # Rust All Checks Script | |
| ## | |
| ## Comprehensive checks for Rust projects |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/env sh | |
| # -*- coding:utf-8-unix; -*- | |
| GIBO=gibo | |
| ${GIBO} update || exit ${?} | |
| ${GIBO} dump \ | |
| Archives \ | |
| Backup \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax: regexp | |
| # ============================================================================= | |
| # SCM | |
| # ----------------------------------------------------------------------------- | |
| ^(.*/)?\.svn/.*$ | |
| ^(.*/)?\.git/.*$ | |
| ^(.*/)?\.bzr/.*$ | |
| # ============================================================================= | |
| # emacs | |
| # ----------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // -*- mode:rust; coding:utf-8-unix; -*- | |
| //! bincode.rs | |
| // Copyright 2017 hanepjiv | |
| // @author hanepjiv <hanepjiv@gmail.com> | |
| // @copyright The MIT License (MIT) / Apache License Version 2.0 | |
| // @since 2018/01/09 | |
| // @date 2018/01/09 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/env python3 | |
| # -*-mode:python;coding:utf-8;-*- | |
| """ | |
| checkuse.py | |
| @author hanepjiv <hanepjiv@gmail.com> | |
| @since 2015/04/06 | |
| @date 2017/12/07 | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3.4 | |
| # -*- mode:python; coding:utf-8; -*- | |
| """ | |
| make10.py | |
| @author hanepjiv <hanepjiv@gmail.com> | |
| @since 2015/06/28 | |
| @date 2015/06/28 | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| # http://hanepjiv.blogspot.jp/2014/11/python-indentchoice.html | |
| from functools import wraps | |
| # ================================================ | |
| def choice(a_Func): | |
| # -------------------------------------------------------------------------- | |
| def loop(*args): | |
| if len(args) is 0: |