Queuing Tasks

One of the most powerful aspects of gulp, is the ability to put multiple tasks together. Doing this allows you, […]

Read More

Using Gulp Libraries

Concat 1- Install the package and add it to the project dependencies npm install gulp-concat –save-dev 2- Replace all of […]

Read More

Gulp Tasks

Your First Task Create a file in the root folder of your project called gulpfile.js ‘use strict’; var gulp = […]

Read More

What Is Gulp?

Gulp is JavaScript task runner. A task runner does what it sounds like. It performs tasks for you and Gulp […]

Read More

Web Design Early Process

1. Discovery There is no one standard design process across the web industry. But the following is a common and […]

Read More

HTTP Requests

Front End Performance Optimization is the modification of HTML, CSS, and JavaScript (and sometimes, server configuration) for the purpose of […]

Read More

12 Principles of UX in Motion

Read More

HTML5 Content Structure

Semantic markup is markup that describes the meaning of content rather than define its presentation is. <header> <h1><a><img> Logo <nav> […]

Read More

Branding Questionnaire

Businesswise Tell me briefly about your company? What is the advantage that your company or product has over others in […]

Read More

Branding Color Psychology

Read More

Compile

Why would you want to compile a pattern with compile() ? It’s going to be used multiple times I want […]

Read More

Groups

We’ve seen it already where our match objects only have one group in them. It’s often really handy to have […]

Read More

Sets & Flags

[abc] – ‘a’, ‘b’, and ‘c’ set of characters It’ll match any of those characters, in any order, but only […]

Read More

Escapes

\w – Word character. That’s any letters, numbers, and the underscore character. \W – Anything but word characters. \s – […]

Read More

Regex Basics

Open a file “basics.txt” and load it into a file object variable. Read the contents of file_object into a new […]

Read More

DateTime EXERCISES

Exercise #1 Create a variable named moscow that holds a datetime.timezone object at +4 hours. Then create a timezone variable […]

Read More

Use pytz Instead

Timezones of pytz Actually, don’t do things manually. The pytz library is here to the rescue. If you don’t already […]

Read More

Timezones

Timezones are variables that hold a value of duration of time (i.e. timedelta), which can be used to calculate how […]

Read More

Challenge: Timed Quiz

aBuild a timed quiz where the user is asked 10 addition and multiplication questions. [questions.py] class Question:     answer = […]

Read More

DateTime Exercises

Exercise #1 Write a function named delorean that takes an integer. Return a datetime that is that many hours ahead […]

Read More