This post demonstrates a working setup of React Native project.
Laravel 5.7 – How to use Database Transaction with Eloquent ORM and Query Builder
This post demonstrates how to use database transaction both for Eloquent ORM and Laravel’s Query Builder.
ReactJS – Starter Project
When learning React Native, one has good understanding of the basics of ReactJS. Otherwise, he or she’ll feel lost and may implement a solution that is not in conformity with React (JS or Native). A good starter project for ReactJS is important as it provides an already working initial project so that newbie developers can begin coding right away.
Angular – Bootstrap Another Module other than AppModule
This post demonstrates how to change a newly created Angular project to use another @NgModule other that the default AppModule class.
Install SAP NetWeaver 7 on Windows
SAP NetWeaver Developer Studio Version 7.0.09 for Java is an old application. However, SAP still supports it until the end of 2027. It is an IDE for developing Web Dynpro for Java applications. This post shows how to install SAP
WSDL files using cxf-codegen-plugin
There are many ways to generate Java classes from WSDL files – one of them is using the cxf-codegen-plugin, which comes from the Apache Maven CXF. Note that this post will not work with the JDK version beyond 1.8. (See
Maven – Build Web Service client from WSDL file
Using wsimport on the command prompt allows you to generate a client jar, .java, and or .class files depending on the options you pass to it. To use it in Maven, you need to following stuff in your pom.xml
Rust (Switch) Using Match With Examples
Rust does not have a switch keyword but the match keyword that works like a switch examples in other languages like Java and C++. Generally, the match can run codes or return a single value. It cannot do both at
How To Declare And Use Variables In Rust
Variables in Rust are similar to variables in other high-level programming languages, and how we declare and use them is pretty straightforward. There are several types of variables, and their declaration may differ from each other. Types Of Variables In
Things You Need To Know About Strings When Learning Rust
99% of the time, we deal with strings, which are a sequence of characters, and here are the things you need to know about them when learning Rust. 1. There Are 2 Types of String in Rust: String and str