Laptop Config Process (Catness)

Submitted by code_admin on Wed, 07/25/2018 - 15:14

Steps I followed when setting up my Laptop.

Laptop: Dell XPS 15
Spec:
Processor: 6th Generation Intel® Core™ i7-6700HQ Quad Core (6M Cache, up to 3.5 GHz)
Installed OS: Windows 10 Home 64-bit English
Monitor: 15.6" 4K Ultra HD (3840 x 2160) InfinityEdge touch
Ram: 32GB Dual Channel DDR4 2133Mhz (16GBx2)
Hard Drive: 1TB PCIe Solid State Drive (Dell Part number 400-AJBS)
Graphics Chip: NVIDIA® GeForce® GTX 960M with 2GB GDDR5
Battery: (84Whr battery version)
Wireless: DW1830 3x3 802.11ac 2.4/5GHz + Bluetooth 4.1
Webcam: ??

Tags

Maven Notes

Submitted by code_admin on Wed, 07/25/2018 - 10:43

My Group ID's

metcarob.com.practice

Executing

Windows - need bat file for running maven

Command to execute by ID:
mvn exec:exec@first-execution

Releasing

Do one at a time and check each stage

Tags

JQuery Click Events

Submitted by code_admin on Wed, 07/25/2018 - 10:36

The way I use to register an event.
1. Events have unique names (click.NAME)
2. Call document.off to prevent mutiple registration mistakes.
3. Call document.on to register

$(document).off('component_viewer_res_schedule_detail');
$(document).on('click.component_viewer_res_schedule_detail', "a[href$='#component_viewer_res_schedule_detail_recalc']", function (event) {
    component_viewer_res_process_ScheduleResourses();
    component_viewer_res_displayRES("ScheduleDetail");
    event.preventDefault();
});

Creating Composites with Maven

Submitted by code_admin on Wed, 07/25/2018 - 10:35

Create example repo file on machine with SOA installed

Reference: https://docs.oracle.com/middleware/1212/core/MAVEN/config_maven.htm#MAV…

I used the VM to install it.
The VM has maven installed on it in this directory:
/u01/fmw/soa/oracle_common/modules/org.apache.maven_3.0.5/bin

I added the following to ~/.bash_profile
export M2_HOME=/u01/fmw/soa/oracle_common/modules/org.apache.maven_3.0.5
export PATH=${M2_HOME}/bin:$PATH