Posts
Showing posts from February, 2018
How to Make Living Still Images With Looping Photo Animator for After Effects
- Get link
- X
- Other Apps
How to Make an Educational PowerPoint Presentation - Quickly
- Get link
- X
- Other Apps
20 Free Google Sheets Business Templates to Use in 2018
- Get link
- X
- Other Apps
A Gentle Introduction to Higher-Order Components in React: Best Practices
- Get link
- X
- Other Apps
This is the third part of the series on Higher-Order Components. In the first tutorial, we started from ground zero. We learned the basics of ES6 syntax, higher-order functions, and higher-order components. The higher-order component pattern is useful for creating abstract components—you can use them to share data (state and behavior) with your existing components. In the second part of the series, I demonstrated practical examples of code using this pattern. This includes protected routes, creating a configurable generic container, attaching a loading indicator to a component, etc. In this tutorial, we will have a look at some best practices and dos and don'ts that you should look into while writing HOCs. Introduction React previously had something called Mixins, which worked great with the React.createClass method. Mixins allowed developers to share code between components. However, they had some drawbacks, and the idea was dropped eventually. Mixins were not upgraded to
How to Use Luma Matte Video Transitions in Premiere Pro
- Get link
- X
- Other Apps
10 Easy Animated Infographic Video Templates for After Effects
- Get link
- X
- Other Apps
Storing Data Securely on Android
- Get link
- X
- Other Apps
An app's credibility today highly depends on how the user's private data is managed. The Android stack has many powerful APIs surrounding credential and key storage, with specific features only available in certain versions. This short series will start off with a simple approach to get up and running by looking at the storage system and how to encrypt and store sensitive data via a user-supplied passcode. In the second tutorial, we will look at more complex ways of protecting keys and credentials. The Basics The first question to think about is how much data you actually need to acquire. A good approach is to avoid storing private data if you don't really have to. For data that you must store, the Android architecture is ready to help. Since 6.0 Marshmellow, full-disk encryption is enabled by default, for devices with the capability. Files and SharedPreferences that are saved by the app are automatically set with the MODE_PRIVATE constant. This means the data can be a
How to Define a Target Audience (For Your Marketing Plans)
- Get link
- X
- Other Apps
Eloquent Mutators and Accessors in Laravel
- Get link
- X
- Other Apps
In this article, we'll go through mutators and accessors of the Eloquent ORM in the Laravel web framework. After the introduction, we'll go through a handful of examples to understand these concepts. In Laravel, mutators and accessors allow you to alter data before it's saved to and fetched from a database. To be specific, the mutator allows you to alter data before it's saved to a database. On the other hand, the accessor allows you to alter data after it's fetched from a database. In fact, the Laravel model is the central place where you can create mutator and accessor methods. And of course, it's nice to have all your modifications in a single place rather than scattered over different places. Create Accessors and Mutators in a Model Class As you're familiar with the basic concept of mutators and accessors now, we'll go ahead and develop a real-world example to demonstrate it. I assume that you're aware of the Eloquent model in Laravel, and w
18 Best Photoshop (PSD) Resume Templates (With Photo Formats)
- Get link
- X
- Other Apps
A Gentle Introduction to HOC in React: Learn by Example
- Get link
- X
- Other Apps
How to Create a Portrait With One Colour in Adobe Illustrator
- Get link
- X
- Other Apps
Code a Widget for Your Android App: Updating the Widget
- Get link
- X
- Other Apps
New Course: Code a Registration Form Using Bootstrap and jQuery
- Get link
- X
- Other Apps
Code an App With GraphQL, React Native and AWS AppSync: the App
- Get link
- X
- Other Apps
Why Are My Mobile Phone Images Rotated on My Desktop?
- Get link
- X
- Other Apps
A Gentle Introduction to Higher-Order Components in React
- Get link
- X
- Other Apps
Efficiency Tips for Working With Sketch Artboards and Layers
- Get link
- X
- Other Apps
How to Draw Heart-Shaped Daisies in Adobe Illustrator
- Get link
- X
- Other Apps
How to Create a Dark Photo Effect Action for Beginners in Adobe Photoshop
- Get link
- X
- Other Apps
CMYK Process Printing for the Emerging T-Shirt Designer
- Get link
- X
- Other Apps
New Course: 10 Essential Design Tips in Adobe Illustrator
- Get link
- X
- Other Apps
How to Write a Short Professional Bio (With Templates and Examples)
- Get link
- X
- Other Apps
How to Retouch Photos With the Visualize Spots Tool in Adobe Lightroom
- Get link
- X
- Other Apps
15+ Best Personal Finance & Budgeting Software for 2018
- Get link
- X
- Other Apps
Meet 5 Hot New Video Artists on Envato Market This Month (February 2018)
- Get link
- X
- Other Apps
How to Design Flat Icons in Affinity Designer: Cargo Truck Icon
- Get link
- X
- Other Apps
Top 40 Inspirational Quotes of Black Entrepreneurs & Leaders
- Get link
- X
- Other Apps
Creating a Sense of 3D With the Perspective Property of CSS3
- Get link
- X
- Other Apps
How to Create a Black History Month Collage in Adobe Photoshop & Lightroom
- Get link
- X
- Other Apps
Learn How to Create an Online Store With Shopify in Our New Course
- Get link
- X
- Other Apps
How to Use Your Reflector When Filming in Tough Outdoor Environments
- Get link
- X
- Other Apps
How to Design Flat Icons in Affinity Designer: Shopping Basket and Dress Icons
- Get link
- X
- Other Apps
How to Apply Instagram Filters in the Browser Using Pure CSS
- Get link
- X
- Other Apps
How to Edit & Format Cells in Google Sheets Spreadsheets
- Get link
- X
- Other Apps
How to Create Five On-Trend ASE Color Palettes in Adobe Software
- Get link
- X
- Other Apps
How to Design Flat Icons in Affinity Designer: Discount Badge and Hanger Icons
- Get link
- X
- Other Apps
How to Create a Modern Restaurant Website (11 Top Tips)
- Get link
- X
- Other Apps
JSON Serialization With Golang
- Get link
- X
- Other Apps
Overview JSON is one of the most popular serialization formats. It is human readable, reasonably concise, and can be parsed easily by any web application using JavaScript. Go as a modern programming language has first-class support for JSON serialization in its standard library. But there are some nooks and crannies. In this tutorial you'll learn how to effectively serialize and deserialize arbitrary as well as structured data to/from JSON. You will also learn how to deal with advanced scenarios such as serialization enums. The json Package Go supports several serialization formats in the encoding package of its standard library. One of these is the popular JSON format. You serialize Golang values using the Marshal() function into a slice of bytes. You deserialize a slice of bytes into a Golang value using the Unmarshal() function. It's that simple. The following terms are equivalent in the context of this article: Serialization/Encoding/Marshalling Deserialization/Deco
Stimulus: A JavaScript Framework for People Who Love HTML
- Get link
- X
- Other Apps
How to Create a Surreal Stitched Portrait in Adobe Photoshop
- Get link
- X
- Other Apps
My Favorite Front-End Development Extensions for Visual Studio Code
- Get link
- X
- Other Apps
How to Design Flat Icons in Affinity Designer: Introduction
- Get link
- X
- Other Apps
20 Top Graphic Design (Branding) Project Proposal Templates
- Get link
- X
- Other Apps
Introduction to Multiprocessing in Python
- Get link
- X
- Other Apps
The multiprocessing package supports spawning processes using an API similar to the threading module. It also offers both local and remote concurrency. This tutorial will discuss multiprocessing in Python and how to use multiprocessing to communicate between processes and perform synchronization between processes, as well as logging. Introduction to Multiprocessing Multiprocessing works by creating a Process object and then calling its start() method as shown below. from multiprocessing import Process def greeting(): print 'hello world' if __name__ == '__main__': p = Process(target=greeting) p.start() p.join() In the example code above, we first import the Process class and then instantiate the Process object with the greeting function which we want to run. We then tell the process to begin using the start() method, and we finally complete the process with the join() method. Additionally, you can also pass arguments to the function by prov
How to Get a More Powerful Mix by Adding White Noise to Synths
- Get link
- X
- Other Apps
20 Awesome WordPress Podcast Themes to Make Audio Sites
- Get link
- X
- Other Apps
Custom Events in Laravel
- Get link
- X
- Other Apps
In this article, we are going to explore the basics of event management in Laravel. It's one of the important features that you, as a developer, should have in your arsenal in your desired framework. As we move on, we'll also grab this opportunity to create a real-world example of a custom event and listener, and that's the ultimate goal of this article as well. The concept of events in Laravel is based on a very popular software design pattern—the observer pattern. In this pattern, the system is supposed to raise events when something happens, and you could define listeners that listen to these events and react accordingly. It's a really useful feature in a way that allows you to decouple components in a system that otherwise would have resulted in tightly coupled code. For example, say you want to notify all modules in a system when someone logs into your site. Thus, it allows them to react to this login event, whether it's about sending an email or in-app notif
How to Make a Table of Contents in PowerPoint in 60 Seconds
- Get link
- X
- Other Apps
Creating a Blogging App Using Angular & MongoDB: Delete Post
- Get link
- X
- Other Apps
How to Turn a Photo Into Comic Book Art in Adobe Photoshop
- Get link
- X
- Other Apps
How to Become a Better Writer: 10 Steps (Good to Great)
- Get link
- X
- Other Apps
How to Always Leave Work on Time Every Day (No Matter What)
- Get link
- X
- Other Apps
Connect Android Things to a Smartphone With Nearby Connections 2.0
- Get link
- X
- Other Apps
30 Top Items From the VideoHive Front Page (Winter 2018)
- Get link
- X
- Other Apps
25 Creative Photo Collage Templates for Adobe Photoshop
- Get link
- X
- Other Apps
Code an App With GraphQL, React Native and AWS AppSync: the Back-End
- Get link
- X
- Other Apps
Google Sheets to Excel: How to Move Back & Forth Between Spreadsheets
- Get link
- X
- Other Apps
Creating a Blogging App Using Angular & MongoDB: Edit Post
- Get link
- X
- Other Apps
How to Email Large Files as Attachments in MS Outlook
- Get link
- X
- Other Apps
Creating a Blogging App Using Angular & MongoDB: Add Post
- Get link
- X
- Other Apps
How to Create a Sari-Inspired Text Effect in Adobe Illustrator
- Get link
- X
- Other Apps
How to Create a Modern Retro Magazine Layout in Adobe InDesign
- Get link
- X
- Other Apps
How to Create a Harry Potter and the Mirror of Erised Illustration in Adobe Photoshop
- Get link
- X
- Other Apps
How to Create a Harry Potter and the Mirror of Erised Illustration in Adobe Photoshop
- Get link
- X
- Other Apps
Introduction to Mocking in Python
- Get link
- X
- Other Apps
Mocking is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they have been used. This tutorial will discuss in detail what mocking is and how to use it in Python applications. What Is Mocking? Mocking is a library for testing in Python which allows you to replace parts of your system under test with mock objects and make assertions about how they have been used. In Python, mocking is accomplished by replacing parts of your system with mock objects using the unittest.mock module. This module contains a number of useful classes and functions, namely the patch function (as decorator and context manager) and the MagicMock class. These two components are very important in achieving mocking in Python. A mock function call usually returns a predefined value immediately. A mock object's attributes and methods are defined in the test as well, without creating the real object. Mocking also allows y