I hereby claim:
- I am lewkoo on github.
- I am lewkoo (https://keybase.io/lewkoo) on keybase.
- I have a public key whose fingerprint is FB21 D86F D40C BE2B 42AB 5BEE FF7E 2F5B 2137 632F
To claim this, I am signing this object:
| #!/bin/bash | |
| # Determine CUDA installation | |
| if nvcc --version 2&> /dev/null; then | |
| # Determine CUDA version using default nvcc binary | |
| CUDA_VERSION=$(nvcc --version | sed -n 's/^.*release \([0-9]\+\.[0-9]\+\).*$/\1/p'); | |
| elif /usr/local/cuda/bin/nvcc --version 2&> /dev/null; then | |
| # Determine CUDA version using /usr/local/cuda/bin/nvcc binary | |
| CUDA_VERSION=$(/usr/local/cuda/bin/nvcc --version | sed -n 's/^.*release \([0-9]\+\.[0-9]\+\).*$/\1/p'); | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_size = 4 | |
| indent_style = space | |
| insert_final_newline = false | |
| max_line_length = 120 | |
| tab_width = 4 | |
| ij_continuation_indent_size = 8 | |
| ij_formatter_off_tag = @formatter:off |
| Coverage Badges |
| document.querySelectorAll('[class^="md-icon-button exist-follow-up ico-item md-button md-ink-ripple"]').forEach(element => {element.click();}) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| function find_in_list() | |
| { | |
| [[ "$2" == *"$1"* ]] && return 0 || return 1; | |
| } | |
| function add_path_to_rules() | |
| { | |
| # The idea was to pass an extra path |
| git status -s | grep -e "^\?\?" | cut -c 4- >> .gitignore |