Let’s assume you are working for ABC Group. And they have ABC America airline, ABM Mobile, ABC Money, ABC Hotel, etc. ABC this and that. So you got multiple data sources. They have different types/columns. So you can’t run single Hadoop Job on all the data. You got several data files from all these businesses. (Edited this data file 33 ...
One of my colleagues wanted to write a JMeter script to test IMAP. But that code failed. So I also got involved in that. JMeter BeanShell uses Java in the backend. First I tried with a Maven project. Finally, I could write code to list the IMAP folders. Java implementation is shown below. Then we wrote a code to print ...
One of my colleagues wanted to write a JMeter script to test IMAP. But that code failed. So I also got involved in that. JMeter BeanShell uses Java in the backend. First I tried with a Maven project. Finally, I could write code to list the IMAP folders. Java implementation is shown below. Then we wrote a code to print ...
One of my colleagues wanted to write a JMeter script to test IMAP. But that code failed. So I also got involved in that. JMeter BeanShell uses Java in the backend. First I tried with a Maven project. Finally I could write a code to list the IMAP folders. Java implementation is shown below. Then we wrote a code to ...
Last post I showed how to create multiple nodes in a single Vagrant project. Usually "ubuntu/trusty64" box comes with 500MB. For some developers need more RAM, more CPUs. From this post I'm going to show how to increase the memory and number of CPUs in a vagrant project. Run below commands mkdir testProject1cd testProject1vagrant initThen edit the Vagrant file like ...
Last post I showed how to create multiple nodes in a single Vagrant project. Usually “ubuntu/trusty64” box comes with 500MB. For some developers need more RAM, more CPUs. From this post, I’m going to show how to increase the memory and number of CPUs in a vagrant project. Run below commands: $ mkdir testProject1 $ cd testProject1 $ vagrant init ...
Last post I showed how to create multiple nodes in a single Vagrant project. Usually “ubuntu/trusty64” box comes with 500MB. For some developers need more RAM, more CPUs. From this post, I’m going to show how to increase the memory and number of CPUs in a vagrant project. Run below commands: $ mkdir testProject1 $ cd testProject1 $ vagrant init ...
Recently I started working with Vagrant. A vagrant is a good tool that you can use for development. From this post, I’m going to explain how to create multiple nodes on the Vagrant project. $ mkdir testProject $ cd testProject $ vagrant init If you run above commands, it will create a Vagrant project for you. Now we have to ...
Recently I started working with Vagrant. A vagrant is a good tool that you can use for development. From this post, I’m going to explain how to create multiple nodes on the Vagrant project. $ mkdir testProject $ cd testProject $ vagrant init If you run above commands, it will create a Vagrant project for you. Now we have to ...
Recently I started working with Vagrant. Vagrant is a good tool that you can use for development. From this post I'm going to explain how to create multiple nodes on Vagrant project. mkdir testProjectcd testProjectvagrant initIf you run above commands, it will create a Vagrant project for you. Now we have to do changes to the vagrant file. Your initial ...
I recently installed Alfresco for testing in vagrant instance. I used Ubuntu image for the vagrant instance. But I forgot to install all the libraries which is necessary to be installed on Ubuntu before you install alfresco. But fortunately alfresco worked with out those dependencies.http://docs.alfresco.com/5.0/concepts/install-lolibfiles.htmlAbove link gives you what are the libraries you should install before you install Alfresco. You ...
I recently installed Alfresco for testing in the vagrant instance. I used the Ubuntu image for the vagrant instance. But I forgot to install all the libraries which are necessary to be installed on Ubuntu before you install alfresco. But fortunately alfresco worked without those dependencies. http://docs.alfresco.com/5.0/concepts/install-lolibfiles.html Above link gives you what are the libraries you should install before you ...
I recently installed Alfresco for testing in the vagrant instance. I used the Ubuntu image for the vagrant instance. But I forgot to install all the libraries which are necessary to be installed on Ubuntu before you install alfresco. But fortunately alfresco worked without those dependencies. http://docs.alfresco.com/5.0/concepts/install-lolibfiles.html Above link gives you what are the libraries you should install before you ...
People hate Yosemite. But I don’t know why. I like Yosemite more than Mavericks. But Yosemite has a problem with Maximize button. (Zoom) As you click Zoom or maximize button it will go to full-screen mode. To avoid this press zoom while you are pressing Option (key). If you want to maximize Chrome click zoom while you are pressing Option + Shift
People hate Yosemite. But I don't know why. I like Yosemite more than Mavericks. But Yosemite has a problem with Maximize button.(Zoom) As you click Zoom or maximize button it will go to full screen mode.To avoid thispress zoom while you are pressing Alt (key).Enjoy yosemite!
People hate Yosemite. But I don’t know why. I like Yosemite more than Mavericks. But Yosemite has a problem with Maximize button. (Zoom) As you click Zoom or maximize button it will go to full-screen mode. To avoid this press zoom while you are pressing Option (key). If you want to maximize Chrome click zoom while you are pressing Option + Shift
This comparison is an outdated comparison. I think Neo4J has improved a lot with the time. But I’m posting this because a person who wants to compare both of these technologies, can get an idea about the aspects they need to focus. If you know something is outdated please feel free to suggest using comments. I’ll update the blog post ...
This comparison is an outdated comparison. I think Neo4J has improved a lot with the time. But I'm posting this because a person who wants to compare both of these technologies, can get an idea about the aspects they need to focus. If you know something is outdated please feel free to suggest using comments. I'll update the blog post ...
This comparison is an outdated comparison. I think Neo4J has improved a lot with the time. But I’m posting this because a person who wants to compare both of these technologies, can get an idea about the aspects they need to focus. If you know something is outdated please feel free to suggest using comments. I’ll update the blog post ...
If you want to develop new feature for Alfresco best way is WebScript! Let's start with a simple Alfresco web script. First you need to create an Alfresco AMP maven project using archetype. In this example I'll use the latest alfresco version 5.0.First I generated Alfresco All-in-One AMP. (Please refer my blog post on generating AMP projects.)If you go through ...