How do we monitor, watch and inspect a non browser application, eg. a Telegram channel, downloading operation processes in order to find the original/sourced media file URL ?
itil memek cantik's questions
How do we move page 2 to page 5 (3 pages distance) of a Pdf file by pdftk ?
How to create/compile our own libffmpeg.so supporting H264 (or H265 too) codec, just as instruction on
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
is for standalone executable build, no dynamic link build explanation was found. Thanks before
How do we make sure RAM will be made use of as big/much size as possible for caching, etc process for optimization when compiliing C/C++?
though ccache is basically installed on Linux, no definitive way to set it up to work the best,
there's about 7-11 GB ready idle exra Ram.. thanks before.
How to exit from all nested shell script calls once in a single command?
How to make almost all Linux files management such as finding, auto-completion, etc, case-insensitive but its shell/Bash copy and move command 'cp', 'mv' to be case-sensitive?
How can we modify a Makefile script to handle more new pairs of source files indicated by its extension name to be compiled by Make automatically correctly and preferably interactively
#...
objects = a.o b.o c.o d.o e.o f.o main.o h.o i.o
Binary : $(objects)
g++ -o Binary $(objects)
#...
#...
now as below, after the first line ie. original pair, source files should be added such but only one pair replace the previous pair, and the next pair replace the current and so on, with the original pair as the starting point
e.cpp and i.cpp,
e.aaa.cpp and i.aaa.cpp,
e.bbb.cpp and i.bbb.cpp,
e.ccc.cpp and i.ccc.cpp
So we can have Make to produce 4 binaries from those module that is original Makefile script added with 3 pairs of source files while all the rest held still constant