Tutorial by Topics: cat

An XPath location path is a series of location steps separated by a / character: step1/step2/step3 A location step contains an axis, a node test, and an optional list of predicates. The axis and the node test are separated by two colon characters ::. The predicates are enclosed in square brac...
Host Manager is a web application inside of Tomcat that creates/removes Virtual Hosts within Tomcat. A Virtual Host allows you to define multiple hostnames on a single server, so you can use the same server to handles requests to, for example, ren.myserver.com and stimpy.myserver.com. Unfortunat...
Asset catalogs are way to manage multiple resolutions of iOS image assets. In order to display optimal images, iOS uses 1x, 2x, and 3x versions of each image according to the device's screen density. The 1x version is only for very old, non-retina devices so it isn't necessary for apps only suppor...
//Replace firebase values with your app api values import firebase from 'firebase'; componentWillMount() { firebase.initializeApp({ apiKey: "yourAPIKey", authDomain: "authDomainNAme", databaseURL: "yourDomainBaseURL", projectId: "yourProjectID", storag...
There are a total of 3 cases of communication between React components: Case 1: Parent to Child communication Case 2: Child to Parent communication Case 3: Not-related components (any component to any component) communication

Page 6 of 11