• We Code
  • We Design
  • We Develope
  • We Write
  • We Share

menu

Monday, June 27, 2016

HTTPS Configuration In Wildfly 9.0.0 Red Hat server

.title{ margin-left: 210px; color: #38302D; } .terminal{ width: 100%; height: auto; background: #181818; margin-top: 50px; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.6); font-family: monaco, monospace; cursor: default; } .navbar{ width: 100%; height: 20px; background: linear-gradient(to bottom, #fff, #808080); border-radius: 3px 3px 0px 0px; } .btn-red{ width: 12px; height: 12px; border-radius: 100px; background: linear-gradient(to bottom, #F68F8E, #E70800); margin-left: 4px; margin-top: -15px; box-shadow: inset 0px 2px 2px -1px rgba(0,0,0,3); } .btn-yellow{ ...
Read more ►

Monday, June 6, 2016

Introduction of the Gulp for the begginers

A front end application required a lot of task from designing the application to deployment application. Some of very common task are watching for any file change , minifying the code, compiling the code and combining the modular code. Before task runner came to the picture there was few tools to do the job.One of them was google's Closure compiler , which was a java application. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes code. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. There was many other...
Read more ►

Monday, May 11, 2015

12 Interesting facts about front end Web technologies

1 . By typing this below you can use your browser window as text editor data:text/html, <html contenteditable=""> </html> 2. By typing below you can quickly run your html without running html file data:text/html,<h1> hay, I am html</h1> 3. By typing below in your browser console you can make page editable document.body.contentEditable='true'; document.designMode='on 4. In mordern browser if you define any element with some Id it create a JS global variable  <div id="IAmaDiv"></div> console.log(IAMaDiv); // <div id="IAmaDiv"></div> 5....
Read more ►

Saturday, May 9, 2015

Webview in PhoneGap/Cordova or Turn your website into mobile application Cordova/phonegap

First of all you need to install Phonegap/Cordova in your system and if not installed you can refer to this link https://cordova.apache.org/docs/en/4.0.0/guide_cli_index.md.html . I hope you are done with the Cordova/Phonegap thing and now you have a link which will open up a website and you want to convert it into an application.Making an application from a web link in just 10-15 minutes don't you think its amazing.So lets start with it. If you are familiar with Cordova or Phonegap then you will definitely know about deviceready Event Listener in Cordova/Phonegap. But if not don't worry...
Read more ►

Wednesday, November 19, 2014

Cordova Contact API example with AngularJS and Onsen UI

This tutorial is divide into three parts. Designing the template with onesen ui cordova contact plugin rendering the contact with angularl First we will design the layout in onsen UI for the application.So first we will create a page holder. Onsen UI provides <ons-navigator> component to serve this purpose.As the page holder is created by <ons-navigator>.Now lets create a page by using <ons-page>.One thing i would like to clear before proceeding ahead <ons-page>  should be used as root element of the page. The whole page will be encapsulated within <ons-page>.We...
Read more ►

Monday, September 1, 2014

AngularJS ui-router tutorial from scratch - Part 1

AngularJS is very powerful framework and provide the solution for almost every challenge without integrating any outside libraries. Angular UI library is broken in many parts so you can pick the feature and include only that in your angularJS application.But still we can add libraries and make the angular application more powerful.ui-router is one of most powerful ui library of the angularJS . Instead for just providing the url route it plays with the state. ui-router provide many extra and more powerful feature. We can have nested views , multiple views on one page or the multiple view wich have...
Read more ►

Sunday, July 20, 2014

Promises in JavaScript: What are they and How to use them?

Asynchrony is unavoidable in any platform these days. Asynchrony doesn’t just help the servers to serve their clients better but it also maximizes effective utilization of the resources. JavaScript is no exception. In recent times, use of asynchronous programming became very important as the expectations out of the software systems that we are writing is went up drastically. And even some of the browser APIs like Indexed DB work on an asynchronous model. Traditional way of handling asynchronous tasks is the callback model. As the asynchronous tasks are handled by a separate thread or a separate...
Read more ►