I hereby claim:
- I am deepaknverma on github.
- I am deepaknverma (https://keybase.io/deepaknverma) on keybase.
- I have a public key ASBh7KmGrczvx_SNO36ID8knesNM6MJX4yorNfuC6KhgKAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Your privacy is important to us. It is Netbeam Technologies' policy to respect your privacy regarding any information we may collect from you through our app, raisingthechild.
We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.
We only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.
We don’t share any personally identifying information publicly or with third-parties, except when required to by law.
Starting with git version 1.7.3 it became possible to pass a strategy option to git rebase command.
The use of -Xtheirs and -Xours appear to be somewhat counterintuitive, so think of it as telling git which branch code to favor when resolving rebase conflicts. For example, when doing
# see current branch
$ git branch
---
* branch-a
...
{ | |
"accountId" : 12345, | |
"sfId" : "sf0000234562553", | |
"url": "https://abc.local" | |
} |
let getPaths = (object) => { | |
var result = []; | |
// Can't pass null here | |
if (object === null) { | |
return; | |
} | |
// Creating local array | |
if(!currentVal) { | |
var currentVal = []; | |
} |
/* | |
Sample Input 0 | |
7 11 | |
5 15 | |
3 2 | |
-2 2 1 | |
5 -6 | |
Explanation: | |
The first line contains two space-separated integers denoting the respective values of s and t. |
/* | |
Sample Output | |
0 2 0 2 0 0 1 0 1 2 1 0 1 1 0 0 2 0 1 0 1 2 1 1 1 3 0 2 0 0 | |
2 0 3 3 1 0 0 0 0 2 2 1 1 1 2 0 2 0 1 0 1 0 0 1 0 0 2 1 0 1 | |
1 1 0 1 0 1 0 2 1 3 2 0 0 2 1 2 1 0 2 2 1 2 1 2 1 1 2 2 0 3 | |
2 1 1 0 1 1 1 0 2 2 | |
Explanation | |
The output states that 0 appears 0 times, 1 appears 2 times, | |
2 appears 0 times, and so on in the given input array. | |
*/ |
##Server: OS : Ubuntu 14.01 docker compose
registry:
restart: always
image: registry:2
ports:
- 5000:5000
environment:
wsdlinterface: | |
build: . | |
hostname: node1 | |
expose: | |
- "3000" | |
ports: | |
- "3000:3000" | |
environment: | |
NODE_ENV: dev | |
working_dir: /var/www |
#! /bin/sh | |
# Starts and stops Node-RED | |
# /etc/init.d/nodered | |
### BEGIN INIT INFO | |
# Provides: node-red | |
# Required-Start: $syslog | |
# Required-Stop: $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Node-RED initialisation |