Sketch Review, An Essential Responsive Web Design Tools

Sketch essential responsive web design tools

Changing your old tool to a new one is a smart way to achieve a better result. If you are web designers, considering a new design tool will be captivating. In fact, there are plenty of design tools that you can use, instead of the most familiar one, Adobe Photoshop. Another tool that we will discuss about is Sketch, it is a web design tool which offers you with a good UI result. But before you are interested enough about trying the new one, we suggest you to read our review below, so you can find out if it is a new tool that you need.

  1. Bugs

The only thing that is very annoying in Sketch is that it has bugs which happen part of the time. No wonder that some of the designers are always teased to go back to PS as this problem will make them throw out some swear words. Here are some of the bugs which are frequently occurred:

  • The whole sentence sometimes disappears as a rendering bug when you type and it only reappears after you finish typing.
  • Sometimes the unsaved data will be gone and there is no way to find them again unless you saved them somewhere on your computer.
  • At some points, it has slow respond, so you need to click even twice or 3 times before it works. It isn’t as smooth as “forward” and “back” in Adobe apps.
  • It is provided with autosaves and version control, but both of them only make a medium large size sketch document works really slow. Therefore, trying to disable autosaves and versioning will make it work better. However, the data loss will still happen every time I do not save my works.

2.  Sketch is better for UI Design Products

Even though, Sketch comes with some disadvantages, but still it is better for our product’s UI design since when you try to import SVG into PS you will realize that PS does not open SVGs, you cannot exporting something as the drag and drop feature is not available there for us which makes you need to do more clicks to perform tasks in PS rather than in Sketch. Thus, even though it may contain bugs that occur sometimes but it still feels right.

3.  Benefits of Sketch

Sketch is seen as more connected to data, code and development. Besides, while people appraise for the new art boards in Photoshop, Sketch already has it. The sketch community is already working on an amazing plug-ins to combine real live data and integrate code into Sketch when Adobe is working on features that Sketch already has. Therefore, I think Sketch is better as it is always one step ahead from adobe PS.

Introducing Tutorial of WordPress Management with WP-CLI

Advanced wordpress management with WP-CLI

Create a code in your website by using command line interface has always been popular among developers, as it can lift up productivity and speed up the development process.  If you are already getting used to with graphical interface, you may feel a bit difficult in using command line to perform certain tasks. Therefore, we are going to prove that this statement is not all true, at least for WordPress tasks.

For a long time, a graphical user interface in WordPress has helped to make it the most popular content management system on the website development, as this command graphic is provided in every administrative task. However, in terms of productivity, working with the command line allows you to manage a lot of tasks more quickly and efficiently.

So, what WP-CLI is actually?

WP-CLI is a set of command-line tools that provide such functionality for managing WordPress websites. Therefore, in this tutorial, I’m going to describe how to run the common tasks in WP-CLI, by showing you several advanced commands, so you can quickly understand how to operate it.

Common Tasks

This article is intended to give you some basic usages of WP-CLI, let’s check some tasks that can be performed on the command line.

INSTALL A WORDPRESS WEBSITE
core is a basic of WP-CLI command, which offers a set of powerful tools for managing WordPress installations. The first step in setting up a new WordPress website is by downloading the package. Direct to the preference directory and type:

1

This will download the latest version of WordPress in English (en_US). Another version or language also can be downloaded by using the –version and –locale parameters. For example, to use the Greek localization and 4.2.2 version, you would type:

2

Once the download is finished, you can create the wp-config.php file using the core config command:

3

This command will use the arguments and create a wp-config.php file. Eventually, to install WordPress, apply the core install command:

4

UPDATE CORE

If you need an update for your WordPress installation, use the wp core update and wp core update-db subcommands to update the core files and the database (if the database needs to be updated). WordPress updates, especially security fixes, are important. To make them happen more quickly, use the core update command and (if needed) the core update-db command:

If you want to know the current version of your installation using core version:

5

Initially, updating in the command line might not seem more efficient than doing it from the dashboard, but if you’re maintaining multiple WordPress installations, but in order to save time and clicks, you can maintain multiple WordPress installations. You can create a script and update them all at once:

7

In any case, before any update process is recommended you need to backing up your database:

8

MANAGE PLUGINS

Managing plugins is a matter of a single command. For instance, plugin status returns information about installed plugins and their status- A means active, I means inactive and UA means update available-work like this:

9

Other plugin-related subcommands are install, activate,deactivate, update, delete and search, which can be used like in the following example:

10

MANAGES THEMES

You can use the same basic commands like you usually use to handle a website’s theme by just replacing plugin with theme. One noteworthy command is scaffold, which creates an empty child theme, making that process much shorter:

11