Posts

Showing posts from September, 2021

Best JavaScript rich text editor frameworks in 2025

Image
TinyMce Editor Javascript When it comes to popular JavaScript rich text editor frameworks in 2025, a few stand out due to their features, flexibility, and broad adoption across platforms. Here’s a breakdown of the most widely used and recommended editors: 1. TinyMCE One of the most popular and widely adopted rich text editors, TinyMCE is used by major companies like WordPress, Shopify, and Squarespace. It offers extensive formatting options, media embedding, and cross-browser compatibility. It also supports over 50 plugins, making it highly customizable for various use cases. 2. CKEditor CKEditor is another top contender, known for its advanced features, including collaboration tools, image handling, and real-time editing. With its long-standing reputation and widespread use by companies like IBM and Microsoft, CKEditor is particularly powerful for projects needing high flexibility and performance. 3. Quill Quill is favored for its lightweight, clean design and simple API.

Get started Oracle DB Express for development

Image
Oracle database is a Relational database developed by Oracle, Oracle DB provides high performance with failure recovery features, easy to manage the database, and has a good reputation for supporting Enterprise level applications. For you database admin or software developer that are newly using Oracle database, you can follow this simple get started guide. Follow each one of the instructions from installation to launch and create a new database table. Download and install Oracle DB Download the oracle database express edition from the following link : https://www.oracle.com/database/technologies/xe-downloads.html When the installation process is running, then you should set the default password that you will use for login. Login using SqlPlus Open terminal or command prompt and type "sqlplus”. Then enter the username SYSTEM and password you choose on the installation step earlier. Create new user Before the SYSTEM user can create new user, you have to execute this command: alter

Upload and Download Rest API using Spring Boot Reactive WebFlux

Image
Reactive Spring Logo This is maybe a very simple task, but for those of you that may not be familiar with WebFlux found it difficult to create a Rest API that handles upload and download in Reactive spring application. Create the skeleton Spring project Create a new project, go to start.spring.io , on the dependencies section, add Spring Reactive Web. Generate and extract it into your desired project location. Instead of using spring-boot-starter-web, use spring-boot-starter-webflux instead in your pom.xml. Here’s the pom.xml for our Reactive Rest API project. Create our Rest controller Now that you have set to use WebFlux instead of the usual web, we have to change a little bit in the Controller class that handles the API endpoints. It doesn’t change much but you have to wrap the Response in Mono and the request parameter to FilePart. So our upload and download file controller will look like this. Create utility to handle file upload We need to structure our project better, so we cr

Popular posts from this blog

ERROR 1348 Column Password Is Not Updatable When Updating MySQL Root Password

How To Create Spring Boot Project Using Netbeans

How To Connect SSH Using PEM Certificate On Windows