Category Archives: raph’s

Run as invoker for Windows tip.

      Comments Off on Run as invoker for Windows tip.

You might be seen UAC controlled or WIndows defender protection dialog for some application for Windows as like this: – or – It meant your application requires administrator privilege but doesn’t contained secured certification information in manifest block of EXE inside resource. Here’s an application to testing a simple cmd… Read more »

Realtek 8152 GbE USB kernel driver for RK3399

      Comments Off on Realtek 8152 GbE USB kernel driver for RK3399

If you have trouble with Realtek 8152 GbE USB device on your Rock960A/B/C board with error of “unnmaed net_device” ? It is reason of built in r8152 driver is too old in Rock960a/b/c (even all kernel driver of Rockchip) kernel source. Here’s my modified driver from latest version of r8152… Read more »

Good bye, no-ip!

      Comments Off on Good bye, no-ip!

No more no-ip, A day ago, no-ip stopped to update my dynamic IP address by reason of “disabled account” without any noticement, no actual reason. My ddns address soon activated again by claiming what kind of reason makes violating your terms – but actually there’s nothing like violating any terms… Read more »

Make Image ‘O HDR fresh updated!

      Comments Off on Make Image ‘O HDR fresh updated!

‘Make Image ‘O HDR’ has been updated to version 0.2.20.70, and it provides save current setting to user’s space – it is each different place for platform types; Windows, Linux and MacOSX. You can clone sources or, download binary image here: https://bitbucket.org/rageworx/make_img_o_hdr/src/master/  Strongly recommend to build source code if your… Read more »

Graphical CPU and GPU monitoring utility

      Comments Off on Graphical CPU and GPU monitoring utility

Before start to read this, it is an utility for Embedded Linux users.If you don’t know about Linux, it should be skipped for next time. Introduction It was made for monitoring CPU and GPU temperature with maximum clocks goes thresholded in Rockchip RK3399 embedded system at first time. First version… Read more »

A simple utility for monitoring CPU clocks and temperature for embedded system.

      Comments Off on A simple utility for monitoring CPU clocks and temperature for embedded system.

This simple console based application is an open source for monitoring current CPU clocks and temperature include GPU if availed. Repository URL : https://bitbucket.org/rageworx_embedded/cpuclkmon You can clone, or download source and build own yourself, or just download pre-compiled binary and launch it for your system.

Writing RGB or GREY buffer into a JPEG file

      Comments Off on Writing RGB or GREY buffer into a JPEG file

Import issue: This example code is for Linux ( or possible for MacOSX ). and .. Fixed some wrong code Makefile It must be declared to link with jpeg library in system, or it should not be switched with turbo-jpeg. LFLAGS += -ljpeg Code for jpeglib. #include <jpeglib.h> int writejpeg(… Read more »