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.
Lenovo ThinkPad T495: DPC WATCHDOG VIOLATION
When Windows 10 Professional shutdowns while on Battery Mode and with Turn on fast startup unchecked. Windows 10 encounters a BSOD with Stop Code DPC WATCHDOG VIOLATION.
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
AWS – Using Load Balancer for Your Domain
Do you want to have an AWS load balancer for your domain? This post shows how to point your domain to an AWS Load Balancer resource using two A Records, and we will use my domain name origdoc.com. NOTE: doing
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