- 無我
- the Buddhist doctrine of non-self, meaning that eternal and invariant self, or soul, is illusory
I hereby claim:
- I am omasanori on github.
- I am omasanori (https://keybase.io/omasanori) on keybase.
- I have a public key ASC_x_1I-c-8bnzu_3dBkIdFmXHFpIGQWzwve_EL8dpHJwo
To claim this, I am signing this object:
This file contains 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
if [ -z "$TMUX" ] && [ -n "$SSH_TTY" ] && [[ $- =~ i ]]; then | |
tmux attach-session -t "$USER-ssh" 2> /dev/null || tmux new-session -s "$USER-ssh" || exit $? | |
exit | |
fi |
This file contains 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
processor : 0 | |
vendor_id : GenuineIntel | |
cpu family : 6 | |
model : 14 | |
model name : Genuine Intel(R) CPU U1300 @ 1.06GHz | |
stepping : 8 | |
microcode : 0x39 | |
cpu MHz : 800.000 | |
cache size : 2048 KB | |
physical id : 0 |
This file contains 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 python3 | |
def get_temp(socket_id): | |
thermal_zone = '/sys/class/thermal/thermal_zone' + socket_id | |
with open(thermal_zone + '/temp') as temp: | |
return int(temp.read()) / 1000.0 # + 273.15 | |
if __name__ == '__main__': | |
import json | |
import sys |
This file contains 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
aliBuild can take the following packages from the system and will not build them: | |
FreeType | |
The following packages cannot be taken from the system and will be built: | |
Python-modules, sqlite, CMake, protobuf, Python, GCC-Toolchain, nanomsg, libpng, ZeroMQ, autotools, boost, GSL | |
Packages will be built in the following order: | |
- defaults-o2-daq@v1 | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] |
This file contains 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
\documentclass[unicode]{beamer} | |
\usepackage[no-math,ipaex]{luatexja-preset} | |
\renewcommand{\kanjifamilydefault}{\gtdefault} | |
\usefonttheme{professionalfonts} | |
\usepackage{unicode-math} | |
\setmathfont{xits-math.otf} | |
\begin{document} |
This file contains 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
src/api/fcntl.c: In function 'f': | |
src/api/fcntl.c:30:3: error: 'O_TTY_INIT' undeclared (first use in this function) | |
C(O_TTY_INIT) | |
^ | |
src/api/fcntl.c:5:21: note: in definition of macro 'C' | |
#define C(n) switch(n){case n:;} | |
^ | |
src/api/fcntl.c:30:3: note: each undeclared identifier is reported only once for each function it appears in | |
C(O_TTY_INIT) | |
^ |
This file contains 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
echo | gcc -E -xc -dM - | sort | uniq |
This file contains 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
$ gcc --version | head -n1 | |
gcc (Gentoo 4.9.3 p1.2, pie-0.6.3) 4.9.3 | |
$ gcc -dumpmachine | |
x86_64-pc-linux-gnu | |
$ clang --version | head -n1 | |
clang version 3.7.1 (tags/RELEASE_371/final) | |
$ clang -dumpmachine | |
x86_64-pc-linux-gnu | |
$ cat > test.c | |
#include <stdio.h> |
NewerOlder