Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Top ten extensions in joomla

Below are the Top Ten Joomla Extensions 1. JCE (Joomla Content Editor) Joomla Content Editor (JCE) is probably one of the most popular Joomla extensions. Specially for those who might not be technically inclined or have issues using the...

How to create an "Admin Panel" for a project in cakephp ?

We can use a plugin, that will help us to create an admin panel in a very short span of time. For cakephp framework there is a plugin named as BrowniePHP. Prerequisite: One should know how to create web sites and web applications usi...

Draw shapes using canvas in Android

We can create custom view by extending View class. The most important part of custom view is its appearance. We can give any shape to a custom view by overriding onDraw(Canvas canvas) method. Canvas class provide us many method which help us to d...

CSS3 Selectors

pre{padding:4px;border-radius:0px;} Hi all, Selector are the basic component in the CSS. Here's a definition of the selector from W3C documentation - A Selector represents a structure. This structure can be used as a condition (e.g. in...

Database Testing

Databases are collection of information which stores our data in the form of tables which is organized so that we can easily accessed, managed and updated. For large databases we can suffer many kind of Implementation and integration errors by wh...

website css3 Triangles for website

<section class="col-2 ss-style-triangles"></section> <section class="color"></section> <section class="col-3 ss-style-doublediagonal"></section> *, *:after, *::before { -webkit-box-sizing: borde...

Keyframe animation example using CSS3

Hello Readers! The below code is an example of Keyframe animation using CSS3- HTML- <div class="parent"> <div class="circle bulge"></div> </div> CSS- .parent { display: flex; justify-content: c...

15 HTML5 tags you need to know about

<article> An Independent piece of content of a document such as blog entry newspaper article etc are represented by article tag. In other words we can say that, this tag represent independent piece of content of a document, such as a ...

How to set a type on buttons

The default value is submit, meaning any button in a form can submit the form. Use type="button" for anything that doesn't submit the form and type="submit" for those that do. <button type="submit">Save changes</button> <button...

Encryption/Decryption function in Sql Server

To encrypt and decrypt a string we have a predefined functions in Sql Server 2008 that are easy to use. Suppose we want to save some data that doesn't need to be exposed as a plain text then in such case we can use these functions, in real scenar...

Detect network change using Reachability in ios

Following code will help you to detect the change in network availability. Download the reachablity class from here : https://developer.apple.com/library/ios/samplecode/Reachability/Introduction/Intro.html #import "Reachability.h" Th...

Default Group of all registered users in liferay

New users have no group, even it is created and referenced in portal-ext.properties. 1). Input a list of default group names separated by \n characters that are 2). associated with newly created users. portal-ext.properties #...

How to solve com.siperian.mrm.cleanse.api.CleanseException: -99: SIP-16165

While running match you encounter following error: com.siperian.common.SipRuntimeException: SIP-09069: Failed to execute java null Failed to execute java null at com.siperian.common.SipRuntimeException.createNotExternalized(S...

ERROR: Cannot lock table [TABLE_NAME] because the table is locked by another process

When by mistake we stopped the IBM WAS Server when Match Job was running. It didn't allowed us to run again the Match Job, every time it was giving following error: [ERROR] com.delos.cmx.server.datalayer.repository.object.ReposTableObject$Ta...

Partials in Rails Application

Partials allow us to easily organize and reuse our view code in a Rails application. Partial file names typically start with an underscore (_) and generally end in the .html.erb extension as our views. The .erb extension may vary depending on tem...

Facebook integration with PhoneGap

Hi All, In this blog post we are going to discuss how to integrate Facebook with PhoneGap. To integrate Facebook with Android you need to register your app with Facebook first. To register your App with Facebook follow below steps: 1. Navig...

Events in Unity 3D

Loading Levels, Play,Pause and Exit in Unity 3D scene : Example : btn is a string. void OnClick () { if(btn=="Play") { Application.LoadLevel("MyScene"); } } Play a Game : Time.timeScale=1; Pause a Game : Time.timeScale=...

Java 8 Higher-order functions

Higher-order means that now it is possible to pass the values as well as functions in the Methods same we can return both values and function from the methods. Example: public void show(String name, Function function){ } public ...

PayPal Integration in Android

PayPal Integration : I am introducing step by step points for integrating paypal into your application with understanding of different terms used in programing. Creating developer account in paypal : a. For development purpo...

last online status using xmpp and ios sdk

If you are using xmpp server for live chat messaging and want to know how to get the last online status of your friend. Then use the following method and you will get the dictionary in xmpp delegates method. -(void)getlasttimeActivity:(NSS...

Why does my CHM have a blank content pane?

Hello Readers, Many times I have heard that, many developers finds blank content pane in CHM, so to resolve this Issue, here I am providing the solution Below. First of all lets see what exactly the problem is- Problem: When creating a CHM F...

How to use workflow in liferay 6.2?

Hello Guys Here I am writing for how to use workflow in liferay. A workflow consists of a sequence of connected steps. Workflow is a depiction of a sequence of operations, declared as work(It's manage asset) of a person, a group of persons, an ...

Protecting your CakePhp application against Sql injection

SQL injection is a technique where malicious users can inject the SQL commands /queries into an SQL statement, resulting in false input of the web page and the security of a web application. Eventually CakePhp already protects the application...

Rewrite rules to create user friendly URLS

Rewrite Rule is a directive used in .htaccess file to control the routing of the pages in a webservice, webresource or webapplication and this technique is called URL rewriting. Apache HTTP Server provides the URL rewritting technique via mod...

Check trannsparency of a given pixel in Image using C#

Many a times we come across to situations where we need to find out whether a given pixel in an image is a solid pixel or a Transparent Pixel. Here is how we can check that. We have an image property called alpha value which tells us about the ...

How to develop neurotechnology SDK in liferay?

Hello Guys Neurotechnology Sdk is used for fingerprint, face detection etc.. To develop neurotechnology SDK in liferay, first build maven project and create applet jar and relative jar's using Maven with "clean install -Papplet". Below steps...

How to use applet with portlet in liferay?

Hello Guys Below code will help you to build java applet in liferay portlet. Write below code in view.jsp : <applet name="Demo" id="Demo" code="com.AppletDemo" codebase='<%= themeDisplay.getCDNBaseURL()+"/PortletName" %>' width="4...

Video Tutorial on Photoshop Basics

Hey! This Video explains you the basics of Image, Image size, resolutions, cropping & Straightening.. Hope you find it helpful :-)

Switch list/grid view using jQuery

Hi all, Below is an example of switching between list and grid view using jQuery. $( document ).ready(function() { $('.show-list').click(function(){ $('.wrapper').addClass('list-mode'); }); $('.hide-list').c...

Web Security Testing- How To See The Hidden Form Fields

Hi All, In this video i'll demonstrate you how to see the hidden form fields in web page with help of WebScarab tool. I hope you Like this video. Thanks !

Hide/Show a View with slide up/down animation in Android

In android, we simply hide a view by setting its visibility. We can do this either in programming or in xml. In programming (we can say in Activity, Fragment etc) there is setVisibility(int) method to set or control the visibility of the view. ...

How to implement Change Password functionality in custom portlet in Liferay 6.2

To implement the change password functionality into your custom portlet in Liferay 6.2, just follow the below steps: 1- Write the below line in liferay-portlet.xml file for the portlet in with you want to perform action to change the password ...

How to ACL to your component in Joomla 3

Today we will explore one of the greatest feature of Joomla! that comes built-in with core Joomla. This in-built ACL feature gives you the ability to control to your application exactly what the user can see and what User can do. Before dive i...

Working with migration in Rails

Rails make use of ORM(Object-Relational Mapping) i.e a layer between your actual database and your model logic in the form of Active Record. As rails provide you with ORM in form of Active Record all the code that you need to write to interact wi...

12 Reasons to Choose PHP For Developing Website in 2015

Simplicity As we all know that PHP is quite similar to languages like Pearl and C, and it is extremely easy-to-use and learn that becomes the most beneficial thing about this wonderful language for programming. Any person no matter from whi...

Always ask Keychain Access while compiling the xcode project

Mac OS X wants to use system keychain when compiling the xcode project "Follow below steps" 1.open your key chain access. 2.on top left corner unlock the key chain (if it is locked). 3.click system from top left corner. ...

How to configure apache server using ".htaccess" file ?

Using .htaccess file to provide a directory level configuration in apache such as displaying customized error pages, Redirecting the user from old directory to new directory, authentication system , denying /allowing users from specific IP . Th...

How to save session in Mysql database using CakePhp?

Sometimes the web infrastructure do not share session data with each other. For this reason, sessions may be lost between requests. Using MySQL effectively ripps out this problem, as all session data is directed to and from the database server ...

Proxy Load Balancer settings for apache

Apache server has been most popular web server to host sites and has loads of modules that can be used for the special cases. We once came across a scenario where the IP for the live application was to be changed but that would need the app to...

ASP.net mvc with unit test example

"ASP.net mvc with unit test example" In this blog we will discuss how to write unit tests for the controllers in our ASP.NET MVC applications. We will write following three Test cases: Test for the view returned by a controller action ...

Vector Drawing Techniques : Converting text to Shape

Hello Guys, In this video I am going to show you how to covert an ordinary text in to the shape. I hope you'll find it useful.

How ASP.Net Role management Works

"How ASP.Net Role management Works"      Role Management helps us to manage the roles of the different users (i.e. what will be the role of a particular user in the application),we can restrict some users to access any reso...

REST API in joomla 3.4 with SLIM Framework PART 2

Flowing on from REST API in joomla 3.4 with SLIM Framework PART 1 it's time to to use the real power of Slim Framework. In this second part of tutorial series , we will use SLIM Framework in Joomla way of style to create powerful API. As we le...

Working with Intent

An Android Intent is an object that carries message from one component to another component with-in the application or outside the application. There are three fundamental cases where one can use the Intents: case 1:- To start an activity ...

Custom exception objects in .Net

Hello All, In this blog I'll explain the Custom exception objects in .Net. Basically .net framework contains the all kind of exception which are sufficient in most cases. But in some times we can define custom exceptions in your own applica...

Left side navigation using pure css

Hi all, Below is an example to make left side navigation using pure css. css: .fa { position: relative; display: table-cell; width: 60px; height: 36px; text-align: center; vertical-align: middle; font-s...

Create A Magazine Cover in Photoshop

Hello Fellows in this tutorial we will be creating a magazine cover using text and character tools in photoshop. Designing a magazine cover is a pretty challenging task. You will have as much creativity as you have limitations. You have an appro...

Vector drawing techniques

In this tutorial, and its second counterpart, will walk you through the process of creating a Vector character from start to finish. Here we focus on the line drawing side of it. I am using a sketch for the base layer. This tutorial is aimed to i...
1 238 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: