Wednesday, September 30, 2015

Actuate.js : jQuery wrapper for Animate.css

A jQuery wrapper for animate.css that makes it one line easy to start using css animations. The plugin includes a bunch of swaggy animations but can be used to initialise any animation you like.

The post Actuate.js : jQuery wrapper for Animate.css appeared first on jQuery Rain.


by Admin via jQuery Rain

Tuesday, September 29, 2015

62 Models

Founded in the mid 90s, 62 Models & Talent is New Zealand’s premiere boutique modeling agency. With strong global relationships and longstanding local connections 62’s booking team has a wealth of experience. Our goal is to manage each model’s career in a way that reflects their goals and ambitions in a realistic and honest way.
by via Awwwards - Sites of the day

How To Create Simple Image Slideshow

In this tutorial you’ll learn how to create a simple image slider using GreenSock’s TweenLite and TimelineLite with cool tilt effect.


by via jQuery-Plugins.net RSS Feed

Amazon Underground's New Model for Mobile App Revenue

Why Do People Uninstall Mobile Apps? - #infographic

Why mobile apps are being uninstalled - infographic

Getting new customers to download your app is only one part of making your app a globe conquering success. The really big apps specialise in longevity. If you want your app to become a global brand, it’s all about staying power.

That’s why doing your research into the reasons people get rid of apps is key to a deeper understanding of the motivation behind pressing the delete button. It’s a busy market place out there and it’s the fine margins that make all the difference. So, it really pays to know your stuff. Luckily for you, ITR.co.uk have done all the hard work for you.

Check out their detailed infographic (featured below) about the main reasons people uninstall. Whether you’re a gaming, business or education app, there are very clear reasons why apps rarely last longer than a few months. Avoid making these development mistakes and you could transform your app from minor success into a textbook global business case study.

by Irfan Ahmad via Digital Information World

Developing in the Cloud: an Introduction

people developing in the cloud

Every web developer needs to set up a development environment—a set of tools to work with, such as

  • a code editor
  • a version control system (such as Git or SVN)
  • build tools and/or package managers
  • DevOps and provision tools (Docker, Puppet, Ansible, Vagrant)

… and so on. Having a good setup is crucial for maximizing productivity.

Development stacks vary from developer to developer, and can depend a lot on a developer's field of work. However, there are some pretty typical setups. SitePoint has recently published examples of local development environments for Linux, Windows and Mac.

In this article, I'll take a look at a fourth kind of development environment—one that's based wholly in the cloud. This will normally happen through a third party service, and there are quite a few to choose from—such as Cloud9, Codenvy and Nitrous.

Advantages of Developing in the Cloud

When using a cloud development environment, you're actually a client of a development platform as a service (dPaaS)—which offers a lot more than just an online code editor.

Faster setup
Firstly, developing in the cloud reduces the setup time. Usually you can use your framework of choice, or use boilerplate code structured as it should be, and all that is done by only clicking some buttons.

Access from Anywhere
You can code from any computer, as long as you have an internet connection—whether you're using the latest iMac, an old Netbook or even a tablet.

Remote Pairing
One of the features I love about these environments is remote pair programming. Cloud IDEs allow more than one developer to access the source code at the same time. You can see each other write code, test and chat in real time.

Multiple Installs
I recently had a problem with a Scala application. The dependencies just wouldn't install. It turned out to be because I had Java 8 installed, while some of the dependencies required Java 7. I did't want to downgrade, since it would probably affect other applications, so I decided to go on with a Vagrant config. Well, if you're in the cloud, you don't have to do that. You can require a container for each application you develop, and the container will be just like you want it to be (Java 7 in this case).

Continue reading %Developing in the Cloud: an Introduction%


by Aldo Ziflaj via SitePoint

Better Password Masking in Your WordPress Forms

Password masking is a technique used by developers to prevent someone from reading the password on the screen while the user is typing the password. However, password masking ends up causing many problems when it comes to the user experience. In this article, we will outline some of these issues caused by password masking and also some solutions.

In particular, we will focus on the user experience problems relating to password masking on the WordPress admin login and password reset forms. We will also create a WordPress plugin which adds a checkbox to the login and password reset forms to show or hide text in a masked password field.

[author_more]

What Is Password Masking?

Password masking is a practice of obscuring all the characters of a password field. This is done to prevent someone from reading the password on the screen while the user is typing it.

Here is how a masked password field looks:

Login Form

However, in practice this can cause usability problems in many modern computing devices which have either smaller keys for typing are using touch screens.

Continue reading %Better Password Masking in Your WordPress Forms%


by Narayan Prusty via SitePoint