Creating your own meme generator

Almost every time a new meme pops up in my Twitter feed, I think of a witty version to create. I’m not alone in this. Memes are often a way to acknowledge a shared experience or idea. In a variation of the “Is this a pigeon” meme that has been making the rounds online, a designer Daryl Ginn joked about the elementary nature of most applications that say they use artificial intelligence.

pic.twitter.com/nAHki0YFyV

— Daryl Ginn (@darylginn) May 16, 2018

The post Creating your own meme generator appeared first on CSS-Tricks.

Read more

Questions to Ask a WordPress Developer You Want to Hire

It’s been 15 years since WordPress first launched. Back then, there were limited demands and limited choices when it came to WordPress development services. Since then, the CMS has grown to power over 30 percent of the web and there are a lot more developers to choose from. Because WordPress is so customizable, it can …
The post Questions to Ask a WordPress Developer You Want to Hire appeared first on Torque.
Read more

More Unicode Patterns

Creating is the most intense excitement one can come to know.

Anni Albers, On Designing

I recently wrote a post — that was shared here on CSS-Tricks — where I looked at ways to use Unicode characters to create interesting (and random) patterns. Since then, I’ve continued to seek new characters to build new patterns. I even borrowed a book about Unicode from a local library.

(That’s a really thick book, by the way.)

It’s all up to …

The post More Unicode Patterns appeared first on CSS-Tricks.

Read more

Watch WordCamp EU for Free via Livestream

WordCamp EU 2018 is scheduled to take place this weekend in Belgrade, Serbia. Although the event is sold out, you can watch the event for free via livestream. Simply visit the WCEU tickets page and register a livestream ticket. Sessions begin on Friday, June 15th. To see a list of (more…)
Read more

Advanced OOP For WordPress Part 6: Continuous Integration For WordPress Plugins

This article is a part of a series on writing object-oriented PHP for WordPress development. So far, we’ve spent two articles on writing the code and now we will test the code and systems. It takes an enormous amount of tooling to write code and back in my day I walked uphill both ways, in …
The post Advanced OOP For WordPress Part 6: Continuous Integration For WordPress Plugins appeared first on Torque.
Read more

Understanding the Almighty Reducer

I was recently mentoring someone who had trouble with the .reduce() method in JavaScript. Namely, how you get from this:

const nums = [1, 2, 3]
let value = 0

for (let i = 0; i < nums.length; i++) {
value += nums[i]
}

…to this:

const nums = [1, 2, 3]
const value = nums.reduce((ac, next) => ac + next, 0)

They are functionally equivalent and they both sum up all the numbers in the array, but there is …

The post Understanding the Almighty Reducer appeared first on CSS-Tricks.

Read more

5 Reasons to Use a Responsive Mockup Template

If you aren’t using responsive mockup templates to showcase your website and app design projects, you’re missing out! A mockup template provides a realistic or stylized shell to highlight a design, and choosing a responsive template can beautifully show your design’s versatility. Most designers use a mockup template to place a website design into a […]
Read more