Meaning of “CONTENTS, ALLOC, LOAD, READONLY, CODE” in ELF sections
Once we disassembled the ELF to check the sections using “objdump” command, we can see the lines … Read more
Lynxbee topic
Once we disassembled the ELF to check the sections using “objdump” command, we can see the lines … Read more
In this post, we hope you already have GDB debugging setup already done for your development or … Read more
Category cloud can be added by using the taxonomy argument to cause a cloud of categories to … Read more
Osclass already provides a site description and a `meta_description_filter` extension point. Use a plugin to choose concise page-specific text, leave escaping to one known output boundary, and verify the rendered canonical pages instead of editing core files.
PHP provides simple function to create an array using “array()” API which creates an empty array. In … Read more
On a category archive, WordPress already knows which term is being viewed. Read that queried term, fetch its direct children with `get_terms()`, and render escaped term links—without hard-coding IDs into a fragile copied template.
Adding a Facebook Page plugin to your website is a powerful way to increase engagement and connect … Read more
In Android application, if you are doing some network operations like download from some external website or … Read more
In continuation of demonstrating simple implementation of data structures, as we shown in our last post “How … Read more
Android’s `Build` and `Build.VERSION` APIs expose platform and firmware metadata, but those values serve different purposes. Use the numeric API level for compatibility checks, treat display strings as diagnostics, and avoid turning hardware fields into tracking identifiers.
As we have seen in our post, “How to develop first android Application/App in Android Studio” where … Read more
If you are working in some network related data transfer like sending some commands over socket, then … Read more
In our previous post, we seen how to identify if a file is present or Not using … Read more
A useful contact map does more than draw a pin. This implementation uses Google Maps JavaScript API’s current advanced marker, restricts the browser key, keeps the address usable without JavaScript, and avoids the blank-map mistakes that waste an afternoon.
This post demos how you can get the random number between two numbers in a simple java … Read more
The basic datatype of strings in Kotlin is mostly similar as that of used in java. Only … Read more
This Yocto QA failure is a packaging mismatch: `do_install` placed an artifact under `${D}`, but no output package claimed it. Trace the reported path, package it intentionally or remove it, then inspect the generated package rather than hiding the warning.
The `curl` command is not the libcurl development kit. Current Ubuntu builds normally need `libcurl4-openssl-dev`, which supplies headers and build metadata. Use pkg-config or CMake’s CURL target so transitive link flags and non-default installation paths remain correct.
The OpenSSL command and runtime library are not enough to compile C/C++ code. Ubuntu puts headers, unversioned linker files, and pkg-config metadata in `libssl-dev`. Install it for the correct architecture, then let pkg-config or CMake supply paths instead of hard-coding `/usr/include`.
`atexit()` registers no-argument callbacks for normal program termination. They run in reverse registration order after `main` returns or `exit()` is called—but not after `_Exit()`, `_exit()`, `abort()`, an unhandled fatal signal, a crash, or a forced kill.
Sometimes we want to display certain things only on certain category of pages, for example, on this … Read more
If you need to get the mac address of certain wifi interface using C program, you can … Read more
Start ‘fdisk’. For me, the SD card reader/writer has the SD card show up on /dev/sdc. I … Read more
Electric Fence helps you detect two common programming bugs: software that overruns the boundaries of a malloc() memory … Read more