Abort
Access
Access Implicit
AccessAttrTyped
Addr Return
Addr Use
Address Representation Ref
Adopt
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
set linenumbers | |
set autoindent | |
set backup | |
set backupdir "/tmp" | |
set casesensitive | |
set historylog | |
set nohelp | |
set softwrap | |
set tabsize 4 | |
set tabstospaces |
I hereby claim:
- I am xer0times on github.
- I am xer0times (https://keybase.io/xer0times) on keybase.
- I have a public key ASChNKTO7H7zIywX4vVwgE-MlKPOjCNSTBHRwYwywMN7Jgo
To claim this, I am signing this object:
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/bash | |
action=$1 # Get the first argument as action (install or remove) | |
version=$2 # Get the second argument as version (10, 11, 12, etc.) | |
if [ "$action" == "install" ]; then | |
case "$version" in | |
10) | |
apt install clang-10 | |
apt install llvm-10 llvm-10-dev llvm-10-runtime llvm-10-tools |
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
import os | |
import json | |
from prettytable import PrettyTable | |
import sys | |
x = PrettyTable() | |
def search_for_issues(directory): | |
for filename in os.listdir(directory): | |
filepath = os.path.join(directory, filename) |