Create a curve using the pen tool

Hit escape and select the Selection Tool and selec the curve
Continue reading How to Make a Curved Arrow in Adobe Illustrator
Create a curve using the pen tool

Hit escape and select the Selection Tool and selec the curve
Continue reading How to Make a Curved Arrow in Adobe Illustrator

When you’re doing recording your voice for the slide, click the Esc key to stop recording for that slide.

If you want to just merge two mp4 videos, use the free MP4Joiner.
If you want to just split your mp4 videos, use the free MP4Splitter.
The forEach() method calls a provided function once for each element in an array, in order.
Note: forEach() does not execute the function for array elements without values.
The map() method creates a new array with the results of calling a function for every array element.
The map() method calls the provided function once for each element in an array, in order.
Note: map() does not execute the function for array elements without values.
Note: map() does not change the original array.
https://www.w3schools.com/jsref/jsref_map.asp
Using a named function
Using an anonymous function
Using shorthand pointer notation
Using an array of JSON objects
Using an array of JSON objects
The filter() method creates an array filled with all array elements that pass a test (provided as a function).
Note: filter() does not execute the function for array elements without values.
Note: filter() does not change the original array.
https://www.w3schools.com/jsref/jsref_filter.asp
Using a named function
Using an anonymous function
Using an array of JSON objects
The reduce() method reduces the array to a single value.
The reduce() method executes a provided function for each value of the array (from left-to-right).
The return value of the function is stored in an accumulator (result/total).
Note: reduce() does not execute the function for array elements without values.
https://www.w3schools.com/jsref/jsref_reduce.asp
Using a named function
Using an anonymous function
Using an array of JSON objects
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
If you open your circuit breaker, you’ll see a bunch of breakers with tabs. Each breaker controls a circuit for a certain part of your house, e.g. a circuit for the kitchen, a circuit for the bathroom, etc. Each breaker has a max amp rating, e.g. 15A or 20A. If you multiply the amp rating by 120 volts, you’ll get the max wattage the circuit can handle. e.g. 20×120 = 2400 watts. So if you have 14 circuit breakers that each can support a maximum of 20 amps (or 2400 watts), then your entire circuit breaker panel for your house can handle 14 x 2400 watts = 33,600 watts. However, this is all theoretical. If someone replaced a 15A breaker with a 20A breaker, you’ll have problems, e.g. a possible fire.


When deciding on lighting for a particular room, it helps to see how light from different types of light bulbs placed at different locations will look, e.g. do you want a bunch of spot lights or a few flood lights? Below is a simple setup showing how you can attach lights to your ceiling for testing purposes.
Buy these long pendant lights. They’re available on Amazon for $13 for a pack of two.
If you need to upscale images without losing much quality, this free tool called Let’s Enhance does a pretty amazing job.

Animating elements can be done simply with linear speed. However, you can achieve some very interesting effects using different bezier curves. Many popular easing functions and how to use them can be found at Eastings.net. If that’s not enough, you can play around with creating custom easing functions at Cubic-Bezier.com.
Continue reading CSS Transitions / Animations with Different Easing Functions