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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm 5.15.129 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110400 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23800 |
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
# kernel jammy-v5.15.74 | |
# ----------------------------------------------------------------------------- | |
# ./check-config.sh | |
# warning: /proc/config.gz does not exist, searching other paths for kernel config ... | |
# info: reading kernel config from ./.config ... | |
# | |
# Generally Necessary: | |
# - cgroup hierarchy: cgroupv2 | |
# Controllers: | |
# - cpu: available |
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/sh | |
# get latest releases version(tag) from github repository | |
# $ ./latest.sh neovim/neovim | |
# v0.3.4 | |
# $ ./latest.sh tus/tusd | |
# 0.11.0 | |
curl --silent "https://api.github.com/repos/$1/releases/latest" | grep "tag_name" | sed -E 's/.*\:\s\"(.*)\",*/\1/' |
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
#!/usr/bin/env python | |
# examples/script-template.py | |
def main(args): | |
if not args: | |
print "Usage: foo ARG1 [ARG2...]" | |
return 2 | |
return 0 |
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
""" | |
20180828 code fixed | |
$ pip freeze | |
numpy==1.15.1 | |
Pillow==5.2.0 | |
pkg-resources==0.0.0 | |
""" |