Skip to content

Instantly share code, notes, and snippets.

View xer0times's full-sized avatar
🎯
Focusing

Hamid Rezaei xer0times

🎯
Focusing
View GitHub Profile
@xer0times
xer0times / scitools.understand.refs.name.md
Last active October 5, 2025 14:24
All entity kinds and reference types recognized by SciTools Understand. These lists are language-specific and include every kind and reference the tool supports.

Abort
Access
Access Implicit
AccessAttrTyped
Addr Return
Addr Use
Address Representation Ref
Adopt
set linenumbers
set autoindent
set backup
set backupdir "/tmp"
set casesensitive
set historylog
set nohelp
set softwrap
set tabsize 4
set tabstospaces

Keybase proof

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:

@xer0times
xer0times / install_remove_clang_llvm.sh
Last active September 19, 2023 10:04
ubuntu 22.04
#!/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
@xer0times
xer0times / yocto-cve-parser.py
Created July 30, 2023 11:29
Yocto Project - CVE files parser
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)