Wednesday, June 21, 2023
which on linux
which is used to locate a command. which returns the pathnames of the files (or links) which would be executed in the current environment, had its arguments been given as commands in a strictly POSIX-conformant shell. It does this by searching the PATH for executable files matching the names of the arguments. It does not follow symbolic links.
Sunday, June 18, 2023
Wednesday, June 14, 2023
stdc++
use gdbm on ubuntu
First thing you have to do is checking whether gdbm is installed on your system or not.
normally it is installed on /usr/include
find /usr/include *dbm* is the command you can use.
even though gdbm is installed on your machine, you might need to install gdbm_compat if you use ndbm interface.
sudo apt-get install apt-file
apt-file update
apt-file search ndbm.h
then you will see packages that you should install on your machine.
Tuesday, June 6, 2023
Sunday, June 4, 2023
List symbols from object file on linux
search all of the symbols in a program. if you can see any of functions beginning of aio_ then for sure it uses async I/O.
Task in UnrealEngine
https://www.youtube.com/watch?v=1lBadANnJaw
-
Unity released very good FPS example for people and I decided to analysis how they make this. Personally I wanted to show you how I analys...
-
Because nature of rotation angle, when we interpolate angles we could have some problems. For instance we have angle A0 and A1. A0 is -...
-
http://rogerdudler.github.com/git-guide/index.ko.html