Posted · Category: Best Collections As a freelance web designer, you no doubt enjoy working to your own schedules. And not having to commute to work, or a boss that likes micromanaging are also good perks. You work hard to improve your skills, and to keep up with the latest trends. As a result, you have little difficulty… Continue reading 5 Ways Freelancers Can Increase Productivity with Pre-Built Websites
Tag: changes
10 Totally Free WordPress Backup Solutions
Backing up your precious data is a common best practice these days. But, what about your WordPress powered website? Yes, most web hosting companies do perform regular system backups. But beware – not every host is reliable when it comes to backups. And you certainly don’t want to wait until disaster strikes to find out… Continue reading 10 Totally Free WordPress Backup Solutions
How to Completely Remove Comments from WordPress
WordPress comments are an integral part of building a community with a WordPress blog. They allow your audience to connect with you by responding directly to your posts. They allow you to extend the conversation surrounding the topic you wrote your post about by letting members of your community pitch in. They even allow members… Continue reading How to Completely Remove Comments from WordPress
How to use breadcrumbs (the right way)
Bread crumbs…they bring up associations with the fairy tale of Hansel and Gretel, where Hansel leaves bread crumbs to help him find his way home again. Although the association with bread crumbs is perhaps still stronger in the realm of Grimm stories, that’s gradually changing as breadcrumbs in navigation help web designers create a better… Continue reading How to use breadcrumbs (the right way)
Making logos work for the web
When you design for the web, no matter the industry, there are expectations that must be met, and realities that must be accounted for. Although this is true for all forms of web design, it is especially true for logo design. This is something we’ve encountered numerous times. Think about the many different conventions of logo… Continue reading Making logos work for the web
The Verge gets a redesign
Okay, let’s just get this out of the way: on this, the verge of a new year, the Verge got a redesign. Now the punnery is over and we can get on with our lives. It had to be done, or I could not call myself a writer. So let’s get to the good bit:… Continue reading The Verge gets a redesign
All the best stuff for web designers announced at Adobe MAX
We’re seeing a lot of interesting competition to Adobe apps these days, but that hasn’t slowed Adobe down at all. (Are you taking notes, Apple?) At this year’s Adobe MAX conference, Adobe has unveiled a slew of awesome updates to all of their CC apps. They’ve done some incredible things all across the board. Since… Continue reading All the best stuff for web designers announced at Adobe MAX
Angular 2 Transclusion using ng-content
Free Course Getting Started with Angular 2 Angular 2 is the shiny new framework that comes with a lot of new concepts. Learn all the great new features. Get Started Wait a minute… What is transclusion? Understanding Transclusion Don’t get confused by the term Transclusion. It’s best explained using an example. Let’s say we have… Continue reading Angular 2 Transclusion using ng-content
Build a Bookshop with React & Redux I: React Redux Flow
At some point in your complex React project, you are going to need a state management library. Redux is a good choice because of it’s simplicity and centralized data management. This piece is a practical approach to the fundamentals of Redux in building React application for managing a book store. If you are unfamiliar with… Continue reading Build a Bookshop with React & Redux I: React Redux Flow
What You Need To Do To Be A Great UX Designer
The concept of user experience design is a relatively new idea, and now it is an appropriate time to find a way of defining it, by identifying UX design skills and by looking at how these need to be put into practice. In design terms, everything that goes into user experience can make UX a… Continue reading What You Need To Do To Be A Great UX Designer
Get Started With Firebase for Android
Mobile applications need a back-end server in order to perform tasks such as authenticating users and synchronizing user data across multiple devices. Creating such a server, however, requires a skill set that most independent app developers lack. Fortunately, there are several back-end as a service platforms, often called BaaS, you can use today. Google’s Firebase… Continue reading Get Started With Firebase for Android
Introducing Divi 3.0
Posted · Category: Information Divi 3.0 introduces a complete new front-end editor that has been re-built from the ground up using React, a modern JavaScript library for user interfaces. This new builder allows users to edit their WordPress pages on the front-end of their website using simple and beautiful visual controls. When you activate the… Continue reading Introducing Divi 3.0
Lerna – A Tool for Managing JavaScript Projects
Posted · Category: Tools Splitting up large codebases into separate independently versioned packages is extremely useful for code sharing. However, making changes across many repositories is messy and difficult to track, and testing across repositories gets complicated really fast. To solve these (and many other) problems, some projects will organize their codebases into multi-package repostories… Continue reading Lerna – A Tool for Managing JavaScript Projects
Rapid, Interactive Prototyping With Xcode Playgrounds
What You’ll Be Creating Introduction Since their introduction in Xcode 6 alongside Swift, to their current iteration in Xcode 7.3.1, playgrounds have come a long way. With new features and better stability, they are evolving into a viable tool for rapid prototyping or quickly hacking together a proof of concept. As a developer, sometimes you have… Continue reading Rapid, Interactive Prototyping With Xcode Playgrounds
Taking Control of the tvOS Focus Engine
Introduction On iOS, users normally interact with your apps via the device’s touch screen. On tvOS, however, user interaction is handled by moving the current focus between views on the screen. Luckily, the tvOS implementations of the UIKit APIs handle the changing of focus between views automatically. While this built-in system works very well, for specific… Continue reading Taking Control of the tvOS Focus Engine
How to Send a Pull Request using the Github Desktop Client
In one of my previous posts, I outlined the process of contributing to open source software with a detailed account of each step. One of those steps was sending a pull request to the owner of the repository you forked from. I showed you how to send a pull request using Github‘s web interface. In… Continue reading How to Send a Pull Request using the Github Desktop Client
10 Indispensable Code Snippets For Your Functions.php
ADVERTISEMENT In this assortment, we are presenting for your function.php 10 outstanding and useful indispensable code snippets. As we all know very well that function.php allows you to make any kind of changes in wordpress themes features such as sidebars, widgets, navigation menus and many more. All these superb code snippets will surely help you… Continue reading 10 Indispensable Code Snippets For Your Functions.php
SpriteKit From Scratch: Visual and Audio Effects
Introduction In this tutorial, the fourth installment of the SpriteKit From Scratch series, we look at the various visual and audio features SpriteKit provides to add some more detail and variety to your games. This includes particle systems, filters, lighting, and audio. To follow along with me, you can either use the project you created in… Continue reading SpriteKit From Scratch: Visual and Audio Effects
Optimizing Google PageSpeed to 100 in WordPress
What You’ll Be Creating How to Reach a PageSpeed of 100 Welcome to part two of our series on Google PageSpeed. In the first episode, I optimized the PageSpeed of my site’s then theme, MySiteMyWay’s Construct. I managed to get to 70 Mobile and 86 Desktop. However, with MySite’s closure, I chose a new theme and reached… Continue reading Optimizing Google PageSpeed to 100 in WordPress
Testing and Dependency Injection With Model View Presenter on Android
We explored the concepts of the Model View Presenter pattern in the first part of this series and we implemented our own version of the pattern in the second part. It’s now time to dig a little deeper. In this tutorial, we focus on the following topics: setting up the test environment and writing unit tests for the… Continue reading Testing and Dependency Injection With Model View Presenter on Android
Android From Scratch: How to Run Your Application on a Physical Device
Most Android phones and tablets can be connected to a computer using a USB cable. However, by default, the USB connection established between an Android device and a computer is limited to file transfer only. Therefore, if you want to use your device for Android application development, you have to make a few configuration changes… Continue reading Android From Scratch: How to Run Your Application on a Physical Device
How to Use BrowserSync for Faster Development
BrowserSync is an automation tool that makes web development faster. In the past we’ve automated a lot of actions like compilation of SASS files, image compression etc. BrowserSync brings a whole new type of automation to the table with batteries included. BrowserSync makes your tweaking and testing faster by synchronizing file changes and interactions across… Continue reading How to Use BrowserSync for Faster Development
Everything You Need to Know About WordPress Child Themes
A child theme is a set of styling guidelines and/or functions which are utilized to incorporate functionality or replace the appearance of an existing WordPress theme. Child themes can be modified without altering the original code of your theme, allowing you to make changes as small as changing a couple of colors, or as extensive… Continue reading Everything You Need to Know About WordPress Child Themes
11 of The Best Wireframe & Prototype Tools for Planning Your Sites & Apps
A wireframe is essentially a web designer’s plan for a web page. This frame can be hand-drawn with simple pen and paper, but wireframing tools are much more effective as they enable you to use drag-and-drop tools, collaborate with other designers and show clients your ideas before you even build them. The designer uses plain… Continue reading 11 of The Best Wireframe & Prototype Tools for Planning Your Sites & Apps