Top Menu

Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Sunday 14 October 2018

Activate Microsoft Office 2016 without Product Key Free

Microsoft Office 2016 Product Key Free

4HNBK-863MH-6CR6P-GQ6WP-J42C9

6KTFN-PQH9H T8MMB-YG8K4-367TX

PBTFM-WWN3H-2GD9X-VJRMG-C9VTX

DJC4N-DX7PC-GM3GK-V8KKW-XWYGX

Note : If these keys don’t work , you can use new method to active Microsoft Office 2016

Step 1: You copy the code below into a new text document.

Click Here to copy this code

Then you create a new text document.


Step 2: Paste the code into the text file. Then save it as a batch file (named “1click.cmd”).


 Step 3: Run the batch file as administrator.


Please wait…


Done! Your Office is activated successfully.


Then you check the activation status again.




Read more...

Microsoft Office 365 Product Key Free

Microsoft Office 365 Product Key Free

N7PXY-WR4XP-D4FGK-K66JH-CYQ6X

XRNFT-HG2FV-G74BP-7PVDC-JB29K

2MNJP-QY9KX-MKBKM-9VFJ2-CJ9KK

2B8KN-FFK6J-YWMV4-J3DY2-3YF29

N4M7D-PD46X-TJ2HQ-RPDD7-T28P9

Note : If these keys don’t work , you can use new method to active Microsoft Office 365

Step 1: You copy the code below into a new text document.

Click Here to copy this code

Then you create a new text document.


Step 2: Paste the code into the text file. Then save it as a batch file (named “1click.cmd”).


 Step 3: Run the batch file as administrator.


Please wait…


Done! Your Office is activated successfully.


Then you check the activation status again.




Read more...

Sunday 26 November 2017

Circular Button with Icon and Text in Android

Rounded android button can be used for many purposes to make awesome application. We can see many applications that have used circle button or rounded corner. In this tutorial, I am going to show how to make circular android button and to add icons/images and text in the same button.

To make circular button in android app, you don’t need any java code, this can be done by using only XML. Rounded button can also be created by using java code but it is time consuming and need to have advance knowledge of java programming.

Here you will learn to make circular/rounded corner button using XML only.

Android Example: How to Create Circular Button with Icon and Text in Android


First you have to create a new XML file in drawable folder to make rounded button. In this file I have made a rectangle and gave border radius to make circular and fill the background and border color. Following is the complete content of XML drawable file.

res/drawable/ circle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://pkrkinth.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="1000dp" />
<solid android:color="#41ba7a" />
<stroke
android:width="2dip"
android:color="#03ae3c" />
<padding
android:bottom="4dp"
android:left="4dp"
android:right="4dp"
android:top="4dp" />
</shape>
XML Layout File

This is the XML layout file where I have added different buttons with image and text together and set background to the drawable file that we have created above. Following is the complete content of XML layout file.

res/layout/circular_button_with_image_and_text.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://pkrkinth.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
android:padding="16dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/circle"
android:drawableTop="@android:drawable/ic_dialog_email"
android:paddingTop="20dp"
android:text="Contact"
android:textColor="#fff" />
<Button
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="10dp"
android:background="@drawable/circle"
android:drawableTop="@android:drawable/ic_dialog_map"
android:paddingTop="20dp"
android:text="Map"
android:textColor="#fff" />
<Button
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="10dp"
android:background="@drawable/circle"
android:drawableTop="@android:drawable/ic_dialog_info"
android:paddingTop="20dp"
android:text="Info"
android:textColor="#fff" />
</LinearLayout>
</LinearLayout>

Java Activity File


Following is the default code of java activity file.

src/ RoundedAndroidButton.java
package pkrkinth.com.androidxmluserinterfacetutorial;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class RoundedAndroidButton extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.circular_button_with_image_and_text);
}
}

Strings.xml File


res/values/strings.xml
<resources>
<string name="app_name">Circular Button with Icon and Text</string>
</resources>

Now, run your Circular Button with Icon and Text in Android application which will look like above screenshot. If you have any question please mention in the comment box below. 
Read more...

Thursday 9 November 2017

"Geckodriver" execution issue while running Java application from Selenium Automation

You can get this issue most often while running Java application using Selenium IDE for automation testing. The issue look like this:

Exception in thread "main" java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.gecko.driver system property; for more information, see https://github.com/mozilla/geckodriver. The latest version can be downloaded from https://github.com/mozilla/geckodriver/releases

The Selenium client bindings will try to locate the geckodriver executable from the system PATH. You will need to add the directory containing the executable to the system path.
  • On Unix systems you can do the following to append it to your system’s search path, if you’re using a bash-compatible shell:
    export PATH=$PATH:/path/to/geckodriver
  • On Windows you need to update the Path system variable to add the full directory path to the executable. The principle is the same as on Unix.
All below configuration for launching latest firefox using any programming language binding is applicable for Selenium2 to enable Marionette explicitly. With Selenium 3.0 and later, you shouldn't need to do anything to use Marionette, as it's enabled by default.
To use Marionette in your tests you will need to update your desired capabilities to use it.
Java :
As exception is clearly saying you need to download latest geckodriver.exe from here and set downloaded geckodriver.exe path where it's exists in your computer as system property with with variable webdriver.gecko.driver before initiating marionette driver and launching firefox as below :-
//if you didn't update the Path system variable to add the full directory path to the executable as above mentioned then doing this directly through code
System.setProperty("webdriver.gecko.driver", "path/to/geckodriver.exe");

//Now you can Initialize marionette driver to launch firefox
DesiredCapabilities capabilities = DesiredCapabilities.firefox();
capabilities.setCapability("marionette", true);
WebDriver driver = new MarionetteDriver(capabilities); 
And for Selenium3 use as :-
WebDriver driver = new FirefoxDriver();
Note : Just like the other drivers available to Selenium from other browser vendors, Mozilla has released now an executable that will run alongside the browser. Follow this for more details.

There is way to solve this issue

You are using latest version of Selenium WebDriver i.e. Selenium 3.x, this version of webdriver doesn't support direct firefox launch. You have to set the SystemProperty for webdriver.gecko.driver.
Replace the Code:-
WebDriver driver;
driver =new FirefoxDriver();
With This code:-
WebDriver driver;
System.setProperty("webdriver.gecko.driver", "<Path to your WebDriver>");
driver =new FirefoxDriver();
You can get the information about latest changes here
You can download the latest Gecko driver from here


Read more...

Sunday 29 October 2017

Marketing Plan Template


Marketing Plan Template
[Company Name] Marketing Plan
20XX


Introduction/Goals
Start your plan off with a brief introduction including background on your company and your overall marketing goals for the year. In the introduction, you can highlight areas of your plan that you think are the most important or discuss particular opportunities, threats or market trends that will be significant in the coming year.


Competitive Analysis
Here you can state your overall observations of the competitive landscape and particular opportunities or threats within this landscape. Also mention any trends you have noticed competitors adopting. List out your top competitors.


SWOT Analysis
List out the specific strengths, weaknesses, opportunities and threats within your market. If there are areas that are particularly notable that will be a prime area of focus, expand upon those areas in this introduction. You may also want to list out any environmental challenges as a separate list.

Strengths (Internal advantages, things the business is already doing well, the company’s competitive edge):

1.
2.
3.
4.
5.


Weaknesses (Internal inefficiencies, areas where the business is falling behind the competition or is lacking resources):

1.
2.
3.
4.
5.

Opportunities (External areas within the marketplace where the competition is weak and your business has potential. Use the PEST (political, economical, social, technological) analysis to cover all the bases):

1.
2.
3.
4.
5.

Threats (External areas where the competition is strong or there is a market trend with the potential to harm your business. Again, use the PEST analysis here):

1.
2.
3.
4.
5.

Target Market
In this section, give a synopsis of your buyer personas. You should discuss why these are your target buyers as well as the types of buyers you want to avoid. Remember, you can have as many buyer personas as you feel necessary.


Buying Cycle
In this section, you will discuss the buying cycle of your customers. Through your research, you should have discovered how, when, where and why they buy. This is crucial to your strategy, which you will also need to explain here. Discuss what your strategy is for converting leads through each phase of the buying cycle - awareness, consideration, decision (as coined by HubSpot).


Unique Selling Proposition (USP)
This section is pretty straightforward. Explain your unique selling proposition and how you differ from the competition. You can also discuss how you will incorporate this USP into all your messaging to ensure it is communicated through your brand to the end buyer.

Brand
Discuss your brand and how it will be communicated as well as protected. Any changes or strategies you are hoping to develop around your brand should be included here. You should discuss how your brand is currently perceived in the marketplace and how you plan to ensure the brand stays strong, as well as how you plan to increase its visibility and recognition or repair a brand that has an image issue. You can also discuss PR here and how you plan to respond to any negative publicity or events.


Website
In this section, discuss how you plan to improve/optimize your current site or explain your plans for a new site, if that is your intention. You should mention why your website is so important and the role it plays in attracting and converting buyers. If you will need additional resources for your web plans list that here. You should also add how you will measure your efforts and what success will look like by listing goals around number of new web visitors, visitor to lead conversion rate, number of web leads, lead to sales conversion rate and number of website sales.

Content Marketing
In this section, discuss the important role content will play in your strategy. Explain how it will be used, who will be creating it and why it will improve search and attract buyers. You should discuss any changes from the previous year, list KPIs, explain how content will be distributed and outline your rough goals for the plan. If you will need additional resources, list those as well.

Social Media Marketing
Explain here how you will be either launching or maintaining social media channels. Include the strategies – how you will keep a consistent presence, build relationships, gain followers, get likes, etc. – and goals for each social media account, plus how you will keep your brand consistent across all accounts. Explain the role social will play in distributing content and bringing buyers back to the website.

Email Marketing
In this section, explain the role your email marketing will play. Explain your strategy, goals and KPIs along with any system changes (i.e. if you are using Exact Target but planning to switch to MailChimp). Explain the importance of measurement and testing in email marketing. You may also want to discuss how you will use personalization and segmentation and how email will be incorporated into your overall campaigns.

SEO
In this section, discuss your SEO strategy and its importance to your overall goals. You can discuss how it will be incorporated throughout your website, social media and content marketing efforts.

Measurement and KPIs
For inbound marketers, measurement is hugely important. Here, list out how and when you plan to measure your efforts, the KPIs you will use and what success ultimately looks like. Success should tie back to the business objectives and marketing goals.

Marketing Strategy and Tactics
In this section list your overarching strategy. Everything you have just written out is part of your strategy, but here you will recap it all in a brief synopsis. This is also a good place to explain how marketing and sales will work together. If you are focusing on certain tactics as a part of that strategy, list those here as well and explain each one briefly. It is often helpful to have 4 or 5 main tactical initiatives to focus on, which will help you reach the goals you listed out in the beginning of this plan. Examples: re-vamp the blog, build a microsite and improve SEO.

Download document - https://drive.google.com/open?id=0B4nT5aTUneiISl9VdTJWbTN3YWs


Read more...