[Java] Use C/C++ DLL from Java with JNA
In this article I will create a simple Calculator for example.- Math function are implemented in DLL (add/sub/mul/dev)- Use java swing to create GUI- Use JNA java libary to call math function from DLL1. Create math C/C++ DLL library- Open Microsoft Visual.
[Java] GUI Application (Swing on Eclipse)
1. Install Eclipse for java Download and install "Eclipse IDE for Java Developers"2. Create new project- Open Eclipse- File > New > Java Project- Fill project name- Click Finish button- New package Right click on.
Tag :
Java
Saturday, December 5, 2020
Windows Batch Script Tutorial
https://www.tutorialspoint.com/batch_script/index.htmhttps://en.wikibooks.org/wiki/Windows_Batch_Scripting
Ex 1:
call :myhead 2
exit /b
:: Function myhead
:: ===============
:: %1 - lines count
:myhead
setlocal EnableDelayedExpansion
set counter=1
set.
Imagekit Cloud Image API

https://docs.imagekit.io/api-reference/api-introduction/sdk
The same with Cloudina.
Thursday, February 20, 2020
Cloudinary Cloud Image API

1.Install
npm install cloudinary
2.API
https://cloudinary.com/documentation/cloudinary_references
nodejs example:
var cloudinary = require('cloudinary').v2;
cloudinary.config({
cloud_name: 'anhcuatui',
api_key: '28648234628',
api_secret:.
Tag :
Cloudinary