Friday, September 30, 2016

5 HDR Photos Done Right, and How to Make Your Own

Who Needs AMP? How to Lazy Load Responsive Images Quick and Easy with Layzr.js

Digital Drawing for Beginners: Before You Publish Your Drawing

Competitive Analysis: How to Find Out Who's Buying From Your Competitors

The Designer's Guide to Outsourcing Using Envato Studio & Envato Market

Character Animation: How to Animate a Backflip in Blender

Photoshop in 60 Seconds: Create a Hero Image Using Scene Generators

Get Started With Firebase for Android

Help! How to Fix Your Overheating Media-Making Mac

Wednesday, September 28, 2016

How to Get More Views: 5 Video SEO Strategies

5 Landing Page Templates Available Now From Envato Elements

Control a Droid With Your Mind and IBM Bluemix Internet of Things

Get Started With Angular 2 and TypeScript

Digital Drawing for Beginners: From Sketching to Line Art

CSS Grid Layout: Using Grid Areas

15 Simple Invoice Templates: Made For Microsoft Word

15 Best IFTTT Recipes for Productive Business Automation

How to Create a Stylized Chalk Text Effect in Adobe Photoshop

Create a Pokémon GO Style Augmented Reality Game With Vuforia

How to Customize Your Gmail Interface Look With Themes

Particles.js: Motion and Interaction

Sympli for Developers

Now You See Me: How to Get Started With Instagram Stories

How to Create a Road Text Effect in Adobe Illustrator

Tuesday, September 27, 2016

How to Use Siri on a Mac

How to Create a Photo Collage Effect Using Photoshop Actions

Now Available: Web Templates on Envato Elements

Digital Drawing for Beginners: Before You Start Drawing

What is the Difference Between a CV vs Resume?

Improving Website Performance Through Image Optimization

10 Business Presentation Mistakes (And How to Avoid Them)

Building a Welcome Page for Your WordPress Product: Code Part 2

20 Best Minimal WordPress Themes: With Simple, Elegant Designs

How to Use Gmail Keyboard Shortcuts to Save More Time

How to Build a Striped Navigation With Flexbox

How to Build a Striped Navigation With Flexbox

Thanks to flexbox, nowadays we can build some really attractive and modern layouts with relative ease. In this tutorial we’re going to look at an interface used recently for Google National Parks, and see how flexbox can help us improve on it.

 As always, before going any further, let’s look at what we’ll be building (you may need to check out the larger version as the full effect kicks in on viewports wider than 800px):

Be sure to hover over the links to trigger the corresponding effects. 

The Markup

First, let’s examine the markup we’ll be using to build this layout. We define a div element with five links within it (you can use whichever elements you feel are appropriate). Each of our links contains a div with the class of overlay. Below you can see the skeleton of our code:

Initial CSS Styles

With the markup ready, we start defining some initial CSS styles, specifically:

  • Specify the outermost div as a flex container and set its height equal to the viewport height with height: 100vh;.
  • Set an equal width for all links (flex items). To achieve that, we give them each flex: 1. Additionally, all of our links will have a background image (sourced from unsplash.com) which covers the viewport height. As a fallback (in case an image isn’t available), we also specify a unique background color for each one.
  • When we hover over a link, its size becomes three times bigger relative to the size of the other links. We do this by changing the value of the flex property of the target link. Happily enough this property belongs to the animated CSS properties, so we’re able to generate a smooth transition effect (at least in most recent browsers). 

Here’s part of the CSS code demonstrating what we’ve described above:

So far, if we preview the demo in a browser that supports flexbox, we’ll see this result:

Styling the Overlay

Our next step is to assign a few styles to the overlay. Here’s what we’ll do:

  • Give overlay the same dimensions as the parent link. We can achieve this behavior by positioning it absolutely (relative to the immediate parent) and then specifying zero values for all the offset properties. 
  • Define the overlay as a flex container. This way, we’re able to center its direct child (i.e. .overlay-inner element) vertically and horizontally.
  • Add a semi-transparent grey background to the overlay when we hover over the parent link.

Here are the associated CSS styles:

Inner Overlay

Now, it’s time to style the inner parts of our overlay. By default these are hidden and should appear only when we hover over the corresponding parent link. But not immediately, we’ll reveal them after a small delay. This delay is important; if we don’t define it specifically, the transition effect will look a little bit ugly. Remove it and test the demo to understand what I mean. 

So just to recap, first the link gets bigger, then the overlay elements become visible. Also, we use the translate3d() to create some slide in effects. Last but not least, we use the transform-style: preserve-3d hack (or a similar one) to prevent possible flickering effects across different browsers.

And here are the related CSS styles:

Let’s see what that’s given us.


Going Responsive

The page looks great on large screens, but perhaps on small, or even on medium screens we’ll have to make a few adjustments. For example, here are a few things we can do:

  •  Flip the main-axis of the flex container by adding flex-direction: column to it. In doing so the flex items will flow from top to bottom.
  • Cancel all the transition effects and show the overlay elements by default . 

Our desktop-first media query looks as follows (I’ve used 800px only because that suits the embedded demos in this post–you can choose whatever you feel is best):

Here’s the final appearance of our navigation:

Browser Support

The demo works in all recent browsers that support flexbox. 

In some browsers you may notice that the animation of the flex property isn’t as smooth as it should be, or perhaps doesn’t work at all. For example, IE11 doesn’t animate this property, whereas Edge does. This is reasonable enough, considering the fact that flexbox is a new layout mode which is still gaining traction.

Conclusion

In this tutorial, we improved our flexbox knowledge by learning how to build a stylish navigation layout. Hopefully you enjoyed what we’ve built here and have taken some inspiration for your next projects!

If you build a similar layout, don’t forget to show us the approach (pure CSS or JavaScript-based solution) you used.  

In the Wild   

Before closing, I’d like to share with you a few sites which use a similar layout to what we’ve just created:


Building Your Startup: Exporting iCal Files into Calendar Events

How to Create a Football Text Effect in Adobe Illustrator

Monday, September 26, 2016

Master Color Correction With These Two Courses

Digital Drawing for Beginners: An Introduction to the Tools

15 Professional PowerPoint Templates - For Better Business Presentations

How to Recreate Apple TV’s Parallax Thumbnail Rollover Effect

An Introduction to the UserNotifications Framework

How to Draw a Classic Steam Locomotive From Scratch

Particles.js: Control Particle Count and Shape

How to Pick The Best Way to Print Your Photos

How to Design a Logo When You’re Short on Time!

Thursday, September 22, 2016

How to Create a Presentation From a Google Slides Theme

Photoshop in 60 Seconds: How to Properly Fill a Drawn Outline

10 Creative Presentation Ideas: That Will Inspire Your Audience to Action

How to Set Up Basic Routing in Angular 2

How to Create a 3D Black and Gold Text and Logo Mockup

Exploring Devise, Part 1

Exploring Devise, Part 1

In some of my previous articles about image uploading in Rails, I made mention of Devise but did not go deep into it. In this tutorial, I will be teaching you about Devise.

Ready? Let's get started!

Devise Introduction and Modules

Devise is an authentication solution for Rails built with Warden and provided by the awesome people at Plataformatec. Devise provides different modules:

  • Database Authenticatable: This encrypts and stores a password to the database to validate the authenticity of a user while signing in.
  • Omniauthable: This attaches OmniAuth support to Devise. Users of your application will be able to sign in using accounts such as Facebook, Twitter, and Google.
  • Confirmable: This enables the sending of emails with instructions that will help in the verification of an account.
  • Recoverable: This module helps in times when users forget their password and need to recover it. With this, the user will be able to reset the password.
  • Registerable: This handles the signup of users. It also allows users to edit and delete their accounts.
  • Rememberable: This module makes it possible for your application to remember a logged-in user by storing a cookie.
  • Trackable: This module helps track sign-in count, timestamps, and IP address.
  • Timeoutable: This module is responsible for expiring a session that has not been active for a period of time.
  • Validatable: With this module, email and password get to be validated.
  • Lockable: This provides an extra layer of security—when activated, an account can be locked after a given number of failed sign-in attempts.

Devise Integration

For the purpose of this tutorial, we are going to generate a Rails application that we'll use to check out the workings of Devise. Let's proceed!

rails new devise-app -T

The -T flag tells Rails to generate the application without the default test suite. Navigate to your application directory and drop the following gems into your Gemfile.

Now install the Devise and Bootstrap gems you just added.

bundle install

Rename your app/assets/stylesheets/application.css file to app/assets/stylesheets/application.scss and add the following lines in it:

Open up the app/assets/javascripts/application.js file and require bootstrap-sprockets. Mine looks like this:

Next, you need to run the Rails command to install the configuration files for Devise. You do so by running this command:

rails generate devise:install

The command generates the following on your terminal. You should read it to understand what happened.

The command also generates two files, which you can find in the config directory. It also gives us some instructions on what we should do.

Navigate to your application layout, app/views/layouts/application.html.erb, and make it look like what I have below:

You need to define the default URL options for your development environment. Add the code below in config/environments/development.rb.

Now you need to create a User model for Devise. You can do so using your terminal.

rails generate devise User

This will generate a user.rb file in your app/models directory. The file generated will look like this:

You can see that it contains the default modules I mentioned above. The command you ran also modified your config/routes.rb file by adding a route for devise. You should check that out.

At this point, you need to migrate your database. You do so by running: 

rake db:migrate

Authentication Using Devise

Now you need to create a PagesController and wrap Devise authentication around it—this will prevent unauthorized persons from seeing the page.

rails generate controller Pages index

Open up your routes file and set the root of your application.

Open up your PagesController and add authentication for your index and new pages.

The code shows that the index and new pages are accessible only to registered users. Open up your terminal and start your rails server. Point your browser to http://localhost:3000 and you will automatically be redirected to the Devise sign-in page.

Signing in Without Using Email

The default means of signing into Devise involves the use of email address and password. What if you want to enable users to sign in with their unique username? If that is what you want, it is possible. Let's see how.

Run the command:

rails generate migration AddUsernameToUSers username:string

This will add a new column for username in your users table. Migrate your database.

rake db:migrate

You need to add a field to your views where your users can enter their username. When you go to your app/views directory, you will not find any file that renders the Devise views. This is because Devise loads the views from its gemset. To customize it, you have to generate copies of the views. The command below does the magic.

rails generate devise:views

This will generate some folders and files in your app/views directory.

You will need to edit the page for signing in, signing up, and updating user information. Just paste the blocks of code below into their respective files.

Sign-Up

Edit

Sign-In

Using your text editor, navigate to app/controllers/application_controller.rb. You need to modify it to permit the use of username. Modify it to look like this:

Now a user can sign in with his/her username. At this point there is something not right about your application. When a user signs in, there is no way of signing out. This does not result in a great user experience. I'll show you how to fix that.

From your terminal, create a new directory called shared in your app/views folder.

The file you created above is a partial where the code for your navigation bar will be written. Drop in the following code.

Now you need to render the navigation bar in your application layout. Open up app/views/layouts/application.html.erb and drop in the code to render your navigation bar.

Conclusion

In this part you learned how to install Devise and add authentication to your pages. I also made mention of a partial. I will cover that in a separate tutorial. 

In the next part, we will cover some areas more advanced than this. I hope this was worth your time!


Creating Custom WordPress Administration Pages, Part 3

CSS Grid Layout: Fluid Columns and Better Gutters

CSS Grid Layout: Fluid Columns and Better Gutters

In this tutorial we’re going to take the grid from our previous tutorial and use it as a playground to explore different units of measurement and Grid’s properties. 

Flexible Units

The whole point of Grid is to enable us to properly control layout on the web, so let’s make our static grid fluid before we go any further. If you recall, we were defining our grid with static pixel measurements:

It’s quite possible to use other units here too, such as ems, or rems for example. Or even more unusual units like vh and vmin

In this case we’re going to change our pixel units for percentages. As we’re defining our column widths and our gutter widths manually we have to make sure the total values equal 100%:

Mind the Gap

There does exist a newer, more efficient way to declare gutter measurements, and that’s with a purpose-made property. We can use grid-column-gap and grid-row-gap, or the shorthand grid-gap property instead. 

Using this means we no longer need to include grid tracks to accommodate our gutters, we only need to declare the columns and rows, so in our case that means three of each:

Hmm, that’s a bit messy, but it sort of does the job. The difference you’ll notice is that the column widths now add up to 100%; our gutters will actually be subtracted from them automatically. 

Repeat

Let’s write this is a neater way, using the repeat() function:

This states “repeat 33.33% three times” giving us three columns. And we don’t even need the grid-template-rows declaration because the auto value is assigned as default anyway. Now we just need to state how big we want our gutters:

grid-gap will accept fixed or flexible units, which means we can perfectly combine fluid columns and fixed gutters without any complex calculations on our part.

Resetting Our grid-column and grid-row Values

Something is amiss: we still have a load of grid-column and grid-row declarations on our grid items, but they’re all wrong because we no longer have as many grid tracks. Happily, because we’re using grid-gap to define our gutters, we can leave positioning of the items to automatic placement–items will no longer fall into the gutters. For now, remove all the positioning:

The fr Unit

One final improvement can be made to our simple grid; we’re going to introduce the fr, or fraction unit. A single fr unit describes “one piece of however many pieces we’re splitting this into”. For example, we could declare our columns using:

Here there’s a total of three fr units, so each column would be one third wide. Here’s another example:

Now there’s a total of four fr units, so the first column would take up half the available width, with the other two columns each taking a quarter.

These units are really powerful, especially in combination with other units of measurement:

Here we’ve declared four columns: 

  • the first is fixed at 300px wide
  • the last is a flexible 20% of the grid container element wide
  • then the fr units are calculated, leaving the second column with one piece of the remaining space
  • and the third with three pieces.

It looks like this, perfectly highlighting auto-placement as our nine items shift to fill the gaps:

But back to our original grid. Let’s replace the clumsy and inaccurate 33.33% value with 1fr: 

Finished pen:

Conclusion

So, to recap:

  1. Grid will accept flexible units in combination with fixed units of measurements.
  2. We needn’t declare gutters within our grid-template, we can use the grid-gap properties instead.
  3. grid-gap means we are less bound to positioning our grid items–we can hand more responsibility over to auto-placement.
  4. The repeat() function will save us time and keep our stylesheets maintainable.
  5. The fr, or fraction unit is a very powerful way of describing grid templates.

We’ve come a long way in just two tutorials, but you’re now the proud owner of a very neat and concise grid! In the next tutorial we’ll explore grid areas, taking a look at the span keyword and some practical layouts.

Useful Resources


How to Create a Set of Retro Media Icons in Affinity Designer

How to Organize Your Pictures for Free With Daminion

Sunday, September 18, 2016

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 InfluenceHumans You’re smashing! ;) Why… https://t.co/JmgRHzcGfJ


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 AndorWP You’re smashing! ;) Why not sub… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 MkCreativehouse You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 mimosamermaids You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 FolhaPsi You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Bytron_Awesome You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 danisabrosinho You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 kieronjkevan You’re smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Frank_Sinatra07 You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 zelnote You’re smashing! ;) Why not sub… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 webdev463 You’re smashing! ;) Why not s… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 RiannaMau5G You’re smashing! ;) Why not… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Amoli You’re smashing! ;) Why not subsc… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 josettehsm87 You’re smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 floraffw31 You’re smashing! ;) Why not … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 razvancaliman You’re smashing! ;) Why n… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 claudiahaon You’re smashing! ;) Why not… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 GreenbitMy You’re smashing! ;) Why not … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 munkikk You’re smashing! ;) Why not sub… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 RT razvancaliman: Skeleton screens impr… https://t.co/5esYC0RcKG


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 webprofessiona3 You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 BeautifulLeeya You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 ebrunborg gabischiopu anna_debenham brucel just arrived. Let's s…


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 gp_toys You’re smashing! ;) Why not sub… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 shahriez10_stra You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 lalbabu_hwf You’re smashing! ;) Why not… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 maglecka You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Bearded_Foodies You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Mrsyedwaseem You’re smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 celestegau83 You’re smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 ewposters You’re smashing! ;) Why not s… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 vinn_oliveira You’re smashing! ;) Why n… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 lavaneradi You’re smashing! ;) Why not … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Yssa_xoxo You’re smashing! ;) Why not s… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 GrafficT You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 menmybrand You’re smashing! ;) Why not … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 mlsitess You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 siddhshanidham You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 SheannSheann You’re smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 RubyLibHunt You’re smashing! ;) Why not… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 pdamindanuwan You’re smashing! ;) Why n… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 anamartinez_lan You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 MedAbderrahim12 You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Huang_Cloud001 You’re smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Jean07za You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Lalithgc You’re smashing! ;) Why not su… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 _IDNews You’re smashing! ;) Why not sub… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Oseiphilip125 You’re smashing! ;) Why n… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 narendrasawalk8 You’re smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 felicitysofts You’re smashing! ;) Why n… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

Saturday, September 17, 2016

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 velasqueziris60 You’re quite smashing! … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 zovlqa You’re quite smashing! ;) Why no… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 sweetrevengebtq You’re quite smashing! … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 shawneks1 You’re quite smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 masterkeyhelene You’re quite smashing! … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 projx2go You’re quite smashing! ;) Why … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 Super_johnmike You’re quite smashing! ;… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 shevenszheng You’re quite smashing! ;) … https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 GwynethCheever You’re quite smashing! ;… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u

#webdevelopment #webdesign #Html #Javascripts #css #php #ruby #code #HTML5 danthonyl You’re quite smashing! ;) Why… https://t.co/JmgRHyV5ob


from Twitter https://twitter.com/webdevgeek4u