Welcome to My Blog
AT&T names three more of the dozen cities to get mobile 5G this year

AT&T promised in January to launch mobile 5G service in a dozen cities by the end of the year, though without naming any of them at the time. It later named three of them, and has now added the next three …
Opinion: It’s long past time for Apple to fix its three biggest iCloud problems

My colleague Bradley Chambers recently wrote that his single biggest disappointment with WWDC was that Apple made no move to announce an upgrade to the 5GB free iCloud tier.
One of our readers, Sahil Malik, made a wry comment on the $6,699 maximum cost of the new MacBook Pro:
I hope it still includes the free 5gb iCloud thing.
As his comment implies, the 5GB free tier is now nothing less than an embarrassment …
The 7 Most Useful Google Sheets Formulas
Lately, the best part of my day has been figuring out the cool new things I can do in Google Sheets — which, yes, definitely means I need to get out more, but also means I can share my favorite formulas with you.
How to Use Formulas for Google Sheets
- Double-click on the cell you want to enter the formula in. (If you want the formula for the entire row, this will probably be the first or second row in a column.)
- Type the equal (=) sign.
- Enter your formula. Depending on the data, Google Sheets might suggest a formula and/or range for you.
V-LOOKUP Google Sheets Formula
V-lookups, are by far, the most useful formula in your tool-kit when you’re working with large amounts of data. The V-lookup formula looks for a data point — like, say, a blog post title or URL — in one sheet, and returns a relevant piece of information for that data point — like monthly views or conversion rate in another sheet.
For example, if I want to see how much traffic a specific set of blog posts got, I’ll export a list from Google Analytics, then put that list in another tab and use the V-LOOKUP function to pull views by URL into the first tab.
The only caveat: The data point must exist in both cells, and it must in the first column of the second sheet.
Formula:
=VLOOKUP(search_criterion, array, index, sort_order)
Let’s walk through an example, which should make this a bit easier to understand.
In the first sheet, I have a list of blog posts, including their titles, URLs and monthly traffic. In the second sheet, I have a report from Google Analytics with average page load time by URL. I want to see if there’s any correlation between page speed and performance.
An example:
=VLOOKUP(A2,’GA Avg. Load Time’’!$1:$1000,2,FALSE)
IFERROR Google Sheets Formula
Any time you’re using a formula where more than 10% of the return values lead to errors, your spreadsheet starts to look really messy (see the above screenshot!).
To give you an idea, maybe you have two columns: one for page views and another for CTA clicks. You want to see the highest-converting pages, so you create a third column for page views divided by CTA clicks (or =B2/C2).
About one-third of your pages, however, don’t have any CTAs — so they haven’t gotten any clicks. This will show up as #VALUE! on your sheet, since you can’t divide by zero.
Using the IFERROR formula lets you replace the VALUE! Status with another value. I typically use a space (“ “) so the sheet is as clean as possible.
Here’s the formula:
=IFERROR(original_formula, value_if_error)
So for the above situation, my formula would be:
=IFERROR((B2/C2, “ “)
COUNTIF Google Sheets Formula
The COUNTIF formula tells you how many how many cells in a given range meet the criteria you’ve specified. With this up your sleeve, you’ll never have to manually count cells again.
Formula:
=COUNTIF(range, criterion)
Let’s say I’m curious how many blog posts received more than 1,000 views for this time period — I’d enter:
=COUNTIF(C2:C500,“>1000”)
Or maybe I want to see how many blog posts were written by Caroline Forsey. If the author was in Column D, my formula would be:
=COUNTIF(D2:D500, “Caroline Forsey”)
LEN Google Sheets Function
Have you noticed Google Analytics cuts off the “http://” or “https://” from every URL? This posed a major issue for me when I wanted to combine data from HubSpot and GA — the V-Lookup function wouldn’t work because the URLs weren’t identical (“https://ift.tt/1y9rdls versus “blog.hubspot.com/marketing).
Luckily, there’s no need to manually change every URL. The LEN function lets you adapt the length of any string.
=LEFT(text,LEN(text)-n)
=RIGHT(text,LEN(text)-n)
So, let’s say the full URL is in column I. To remove the “https://” string and make it identical to the URL in the Google Analytics tab, I’d use:
=RIGHT(I2, LEN(I2)-8)
If you wanted to remove the last characters in a cell, you’d simply change RIGHT to LEFT.
Array Formula for Google Sheets
Rarely do you need to apply a formula to a single cell — you’re usually using it across a row or column. If you copy and paste a formula into a new cell, Google Sheets will automatically change it o reference the right cells; for example, if I enter =A2+B2 in cell C2, then drag the formula down to C3, the formula will become =A3+B3.
But there are a few drawbacks to this. First, if you’re working with a lot of data, having hundreds or thousands of formulas can make Google Sheets a lot slower. Second, if you change the formula — maybe now you want to see =A2*B2 instead — you have to make that change across every formula. Again, that’s time-consuming and requires a lot of processing power. And finally, the formula doesn’t automatically apply to new rows or columns.
An array formula solves these issues. It’s one formula, with one calculation, but the results are sorted into multiple rows or columns. Not only is this more efficient, but any changes will automatically apply to all your data.
ARRAYFORMULA(array_formula)
Let’s suppose I want to see how much non-paid traffic we’d gotten in March and April. That requires subtracting paid traffic from total (column D from column C) and then adding the totals together. Two separate formulas.
Or, I could use an array formula:
=ARRAYFORMULA(SUM(C2:C5-D2:D5)
The second part, SUM(C2:C5-D2:D5), should look somewhat familiar. It’s a traditional addition formula — but it’s applied to a range (cells C2 through C5 and D2 through D5) instead of individual cells.
The first part, =ARRAYFORMULA, tells Google Sheets we’re applying this formula to a range.
I could also use an array formula to look at the non-paid traffic specifically from updates (not new content) in March and April.
Here’s what that would look like:
=ARRAYFORMULA(SUM(C2,C4-D2,D4))
IMPORTRANGE Google Sheets Formula
I use to spend a ton of time (and processing power) manually copying huge amounts of data from one spreadsheet to another. Then I learned about this handy formula, which imports data from a separate Google Sheets spreadsheet.
Suppose our resident historical optimization expert Braden Becker sent me a spreadsheet of the content he updated last month. I want to add that data to a master spreadsheet of all the content (both new and historically optimized) we published. I’d use this formula:
IMPORTRANGE(spreadsheet_url, range_string)
Which would look like:
IMPORTRANGE(“https://ift.tt/1UUAjiF”, “Update Performance!A2:D100”)
How to Split Text in Google Sheets
Splitting text can be incredibly useful when you’re dealing with different versions of the same URLs.
To give you an idea, let’s suppose I’ve created a spreadsheet with every URL that received at least 300 views in January and February. I want to compare the two months to see which blog posts got more views over time, fewer, or around the same.
The problem is, if I do a V-LOOKUP between the two tabs, Google Sheets won’t recognize these as the same URLs:
https://ift.tt/2lKBXsU (regular URL)
https://ift.tt/2uBi3mt (tracking URL)
https://ift.tt/2oivpQp (regular URL)
https://ift.tt/2uBi5e5 (tracking URL)
It would be awesome if I could get delete everything after the question mark in the tracking URLs so they matched the original ones.
That’s where the split text formula comes in.
=SPLIT(text, delimiter, [split_by_each], [remove_empty_text])
Text: The text you want to divide (can be a string of characters, such as https://ift.tt/2uBi5e5, or a cell, like A2)
Delimiter: The characters you want to split the text around.
Split_by_each: Google Sheets considers each character in the delimiter to be separate. That means if you split your text by “utm”, it will split everything around the characters “u”,”t”, and “m”. Include FALSE in your formula to turn this setting off.
In the example above, here’s the formula I’d use to split the first part of the URL from the UTM code:
=SPLIT(A2,“?”)
The first part is now in Column B, and the UTM code is in Column C. I can simply delete everything in Column C, and run the V-LOOKUP on the URLs in Column B.
Alternatively, you can use Google Sheet’s “Split text to columns” feature. Highlight the range of data you want to split, then select “Data” > “Split text to columns.”
Now choose the character you want to delimit by: a colon, semicolon, period, space, or custom character. You can also opt for Google Sheets to figure out which character you want to split by (which it’s smart enough to do if your data is entered uniformly, e.g. every cell follows the same format) by choosing the first option, “detect automatically.”
I hope these Google Sheets formulas are helpful. If you have any other favorites, let me know on Twitter: @ajavuu.
![]()
WhatsApp further restricting message forwarding to address the fake news problem

In the run-up to the US mid-term elections, we’re seeing social media companies making greater efforts to address the problem of fake news. Twitter recently said that it was suspending work on its verification program to devote all its attention to addressing fake news, and WhatsApp has now announced its own measures …
Apple Watch currently set to face 10% import tariff on arrival from China

The original Apple Watch is currently set to face an import tariff of 10% under the latest edition of tariff proposals seen.
While iPhones, iPads and Macs should be exempt, the smartwatch is one of a number of devices currently slated to fall foul of the Trump administration’s trade war with China …
How to Buy Bitcoin Stock
Bitcoin and similar cryptocurrencies behave like the stock market. The more people who buy shares of Bitcoin, the higher the currency’s price. The fewer people who buy Bitcoin, the lower its price.
However, the source of Bitcoin’s value — and how you buy into it — is very different than an investment in the shares of a public company.
What Is Bitcoin?
Bitcoin (often denoted “₿”) is a digital currency that allows you to conduct business and exchange resources securely, but without going through a bank or central payment entity to perform the transaction. Bitcoin can be sold, traded for a product, or bought into like a stock (which this article will teach you how to do).
Think of Bitcoin like a bartering token, only there’s a limited supply of these digital tokens worldwide. Banks and national economies don’t generate Bitcoin — software mines it using a technology called blockchain. Learn more about this concept in the video below.
With Bitcoin being a limited resource, you’d think its value would always be off the charts, but this cryptocurrency is extremely volatile. People can adopt Bitcoin as a means of exchange for many reasons, and as Bitcoin’s usage evolves, so will the reasons people choose to buy into it. Just this week, Bitcoin’s price increased by more than $1000, reaching $7,450 per ₿1 at the time of writing this article (yikes).
How to Buy Bitcoin Stock
Whether you’re looking to invest in Bitcoin for a big sell later, or spend it on various items and assets, there’s a universal process you’ll have to go through to buy stock in it. Let’s dive into that process.
1. Download a Wallet
By “wallet,” we don’t mean the leather one in your pocket, or even credit card reader apps like Google Wallet. A Bitcoin wallet is an online storage place for all your digital currency. It doesn’t just hold your Bitcoin, though. Bitcoin wallets also store your personal “key” — a unique identifier assigned to every Bitcoin owner, consisting of a long string of letters and numbers that keeps your Bitcoin secure. This is essentially your Bitcoin password.
Your first step in buying Bitcoin is to download a Bitcoin wallet and connect your credit or debit card to it. There are more than a dozen Bitcoin wallets you can download, both to your desktop and as an app on your mobile device. Here are the wallets that work with the most devices and operating systems:
Coinbase, the first wallet app on the above list, also offers a “Bitcoin exchange” where you’ll register to buy your first share of Bitcoin. We’ll talk more about exchanges in the second step below.
2. Register With a Bitcoin Exchange
If there are national stock exchanges like NASDAQ, does that mean there’s also a Bitcoin exchange? Yep. Bitcoin trades on a variety of online exchanges around the world, and to start buying and selling Bitcoin, you’ll have to register with one of them. Have your email address and credit or debit card information ready.
Don’t worry, all of your exchange options recognize the same Bitcoin trading price. Each exchange just caters to a different country or continent, and therefore offers an exchange rate that corresponds with the currency you’ll use to buy Bitcoin. For example, while Korean exchanges sell Bitcoin for won (Korea’s main currency), U.K.-based exchanges sell Bitcoin for pounds.
Here are some international Bitcoin exchanges you can register with (these exchanges trade Bitcoin for most currencies across the globe):
Although there are Bitcoin exchanges that specialize in just one country, you might find it easiest to register with an exchange that also supplies you with a Bitcoin wallet so you’re not submitting your bank information to two separate services. Coinbase is one of those options. After downloading the Coinbase wallet, you can move right over to its exchange to buy your Bitcoin stock and fill your wallet.
Now, let’s talk about how to make your first crypto-purchase.
3. Select a Buy-In Amount
Once you’ve selected the exchange where you want to buy your Bitcoin, navigate to the exchange’s “Buy” section and select your buy-in amount. You’ll tether your Bitcoin wallet to this purchase a “bit” differently (pun intended) depending on the exchange you use to buy your Bitcoin.
Nervous? Don’t be — you can buy less than ₿1 if you want to. Bitcoin exchanges sell cryptocurrencies down to several decimal places, so if Bitcoin is trading at $7,450 per ₿1, you can invest $1 and receive .00013 Bitcoin. Then, as Bitcoin’s trading price increases, so does the value of the Bitcoin you bought.
4. Browse a Crypto Marketplace
With your Bitcoin in hand (or rather, in wallet), you can do one of two things with your purchase:
Spend Bitcoin in a Marketplace
Bitcoin has its very own ecommerce marketplaces where you can trade Bitcoin for products. Products include those that are shippable to your door — such as jewelry — and those you can download to your computer, such as Microsoft Office. Remember, no banks are involved in these transactions. The market simply verifies your Bitcoin’s individual blockchain and completes the purchase.
Common Bitcoin marketplaces where you can spend Bitcoin include Bitify, Glyde, and even a Reddit community called BitMarket. Keep in mind you can also sell your own products for Bitcoin, making these marketplaces an easy way to build up your Bitcoin investment.
Buy and Wait
Of course, like any good investor, the key to making money on Bitcoin is to buy in and leave it alone. Cryptocurrencies’ trading prices can fluctuate hundreds of dollars in a single morning, and watching Bitcoin’s value peak and dip every day can drive you nuts.
Bitcoin investors often say that the money you put into Bitcoin should be money you’re willing to lose. With that in mind, the best way to enjoy your investment is to let it sit, try selling personal items that could grow your Bitcoin account, and check the Bitcoin price once in a (long) while.
![]()
Instagram Stories Strategy: How to Make Stories That Benefit Your Business

Want to attract more leads with Instagram? Curious how a story arc on Instagram Stories can help? To explore how to use Instagram Stories for business, I interview Tyler J. McCall. More About This Show The Social Media Marketing podcast is an on-demand talk radio show from Social Media Examiner. It’s designed to help busy […]
The post Instagram Stories Strategy: How to Make Stories That Benefit Your Business appeared first on Social Media Examiner.
from Social Media Examiner https://ift.tt/2L7YRa1
via socialmediaexaminer
How to Unblock Someone on Facebook and Messenger [FAQ]
When you block someone on Facebook, they won’t be able to see anything you post on your profile, tag you in any form of content, invite you to any events or groups, message you, or add you as a friend.
But what happens if you accidentally block someone, or decide you want to unblock someone?
This quick guide will walk you through the process of unblocking someone on Facebook or within the Facebook Messenger app.
It’s important to note that when you block someone on Facebook, you will also automatically unfriend them. Unblocking them will not automatically add them as a friend again — you will need to send them a separate friend request after you unblock them if you wish to be their friend again.
How long do you have to wait before you can unblock someone on Facebook?
If you block someone and then unblock them, you need to wait 48 hours until you can friend them again.
Got it? Let’s jump in.
How to Unblock Someone on Facebook
1. On Facebook, click the down-arrow icon in the top right and then select “Settings”.
2. On the left side of your Settings page, click “Blocking”.
3. Find the “Block users” section, and click the blue “Unblock” link beside the name of the person you want to unblock.
4. Click “Confirm” to officially unblock that person.
How to Unblock Someone on Facebook Messenger
- In the Messenger app, click on your photo icon at the top left corner.
2. Scroll down and click “Account Settings”.
3. Click “Blocking”.
4. If you type a name in the text box, you can click the “Block” button to block them. Below the text box, there’s a list of previously blocked people. To unblock someone, click the “Unblock” button beside their name.
5. Click the blue “Unblock” button to unblock that person.
How do you unblock someone on Facebook on your phone?
On your phone, open your Facebook app and click the three-line icon in the bottom left. Then, select “Settings” and then “Account Settings”. Scroll down and click “Blocking”. Now, you’ll see a list of the people you’ve previously blocked. To unblock one of them, click the “Unblock” button beside their name, and then click “Unblock” again in the pop-up to confirm.
![]()
How to Pick the Perfect Color Combination for Your Data Visualization
Choosing any color scheme — whether for graphics, websites, brands, etc. — is a challenge in and of itself. That choice of colors sets the mood for anything and everything you create.
When it comes to data visualization, color is especially important. The color scheme sets the tone of the imagery and each color serves to represent a unique piece of information.
The colors you use in your data visualizations represent more than just one idea. The color scheme you choose has the power to display the type of data you’re showing, its relationship, the differences between categories, and more.
This post will take you through the process of choosing the perfect color combination for your next data visualization — from understanding your data to finding the right color tool.
How to Pick the Perfect Color Combination for Your Data Visualization
Is Your Data Sequential or Qualitative?
The first step when choosing a color scheme for your data visualization is understanding the data that you’re working with. There are three main categories that matter when choosing color schemes for data: sequential, diverging, and qualitative color schemes.
Sequential color schemes are those schemes that are used to organize quantitative data from high to low using a gradient effect. With quantitative data, you typically want to show a progression rather than a contrast. Using a gradient-based color scheme allows you to show this progression without causing any confusion.

Diverging color schemes allow you to highlight the middle range/extremes of quantitative data by using two contrasting hues on the extremes and a lighter tinted mixture to highlight the middle range.

Qualitative color schemes are used to highlight — you guessed it — qualitative categories. With qualitative data, you typically want to create a lot of contrast, which means using different hues to represent each of your data points.

Note: The images above are from Color Brewer 2.0 — a data visualization color tool designed for working with data mapping. Check it out for your next data map visualization or for grabbing pre-made color schemes to use based on the sequential, diverging, and qualitative models.
How Many Unique Hues Do You Need to Use?
Now that you’ve determined which kind of display you want to use, it’s time to determine the number of hues you need to use.
Your hues are the unique colors (like red or blue) in their purest form (without any tinting or shading). Using unique hues is what creates contrast. In data visualization, creating contrast is highly important because it tells the viewer that the contrasting colors are comparative data points. Contrasting colors suggest that the data points are categorical, not correlated, showing you the difference between them rather than the relationship of progression.
Keep in mind that it’s possible to use both a sequential and qualitative color scheme in the same visualization. And if this is the case, you’ll need to build a scheme that uses both gradients and unique hues.
The Role of Brightness in Color Selection
One very important tip for creating and finding color schemes for you data visualizations concerns understanding and utilizing the brilliance of colors for a purpose.
In the two pie charts below, notice the brightness of the colors used. On the left pie chart, you can see that there are four main hues used and four tints of each hue. This might signify a relationship between the hue and the tints, or it may just be used to draw attention to some sections of the data over the others.

On the right pie chart, all of the eight hues used have the same brightness. None have more white or black added them to create a shade or a tint, which ultimately creates a balanced, contrasting aesthetic.
Shading and brightness is incredibly important to consider when creating data visualizations because it can be easy to skew the interpretation of your data by drawing attention to some data points over others.
For qualitative data, unless you’re trying to point out one specific data point’s significance, try to use equally bright hues with contrasting colors to display your data.
For sequential quantitative data, shading is important because you’re likely using a gradient. Gradients are made up of different shades and tints of a hue to show the progression of one hue from light to dark — much like the progression of the data from high to low.
What Tools Can You Use to Find the Perfect Color Combination?
When it comes to finding the perfect color scheme for your data visualizations, I highly recommend finding a scheme that’s already out there. This isn’t to say that you don’t need to have a strong grasp on basics of color selection, though — even existing color schemes will need to be customized to the data you’re using. In other words, it’s still important that you know your stuff.
Let’s check out a few tools that’ll help you get started …
1) Colorpicker for Data
A fairly simple tool, Colorpicker let’s you hold one color in place while you drag the other locator around to find a multi-hued, gradient-based color scheme. Although this tool is limited in nature, I like that it gives you the option to visualize your color scheme on a map to show you what the scheme looks like in practice.

2) Color Hunt
If you’re just looking for premade color schemes to browse through, Color Hunt is the tool for you. This website is devoted to just color schemes, allowing you to easily gain inspiration and uncover HEX codes.
A caveat, however, is that each of the schemes are limited to four colors. If you’re data visualization requires more hues than four, this may not be the tool for you.

3) Designspiration.net
One of my personal favorite sites for design work, be it data visualization or otherwise, is Designspiration.net. Not only does Designspiration give you thousands of graphics to look through for inspiration, but it also allows you to sort through designs by color.
This is a great tool to use for your data visualization (even if the representations aren’t data-based) because it shows you what colors look like in contrast to one another. The color-sort tool also gives you the HEX codes ready to access, making it really easy to put together a combination that suits your needs.

4) FlatUIColorpicker.com
As a part of Designmodo’s Free User Interface toolkit, they created a tool to help you uncover colors to use in your design process. Although these colors aren’t necessarily part of premade schemes, they are really great for showing you bright, vibrant colors used for user interface design. You can easily browse through their color lists and create your own color schemes using the color picker.

5) Adobe Color CC
A classic tool for designers using Adobe products, Adobe Color CC allows you to create your own color schemes using the mathematical model-based color schemes (monochromatic, analogous, triadic, complementary, etc.). Adobe Color CC also has a great browser section you can use to find premade color schemes.
What If You Still Can’t Find What You Need?
What if you decide you’re really looking for a color scheme that isn’t already out there? What do you do?
Creating a color scheme for data visualizations from scratch can be especially difficult because the colors you use have to either show vast contrast or natural progressions.
A great way to find inspiration for these types of color schemes is to draw on your surroundings. This could be a colorful photo, a mural, a sunset, or anything in nature — you name it. If you look around to find color schemes that appeal to you in your physical surroundings, you can use this to create a color scheme for the virtual.
If you have a good eye, you may even be able to create a color scheme this way by trial and error. However, it’s more likely that you’ll need to use a tool like Adobe Capture CC or Chroma by Softpress to snap a picture and grab the colors from the picture to use in your designs.

When creating data visualizations, the most important part of choosing the right color scheme comes down to understanding your data.
With so many different tools and premade color schemes out there, the hardest part isn’t actually finding the right colors; it’s knowing how to use those colors to display the information in the best way possible.
Now that you know how to find your color schemes, go put your newfound knowledge to work.
20 of the Best Business Card Designs [+ Free Business Card Generator]
The business card isn’t dead yet.
As long as there are parties, industry events, and networking opportunities, there will be business cards. And it’s important that yours isn’t thrown to the bottom of the pile because of a lackluster design.
Whether you work at a bigwig agency or as a freelancer, your business card should make a memorable first impression
To help you out on the inspiration front, we’ve compiled a list of 20 of the best business card designs from agencies, designers, and businesses around the world. Ranging from artistically elaborate to decidedly simple, these examples are certain to inspire your next business card redesign.
20 of the Best Business Card Design Examples
1) Aurora
Featuring a botanical illustration of tropical blooms and a clean sans-serif font, these business cards from Aurora certainly make a stylish first impression. The South African studio specializes in whimsical artwork and design, so it’s fitting that their business cards reflect their unique skill set. The cards were designed in-house and include gold embossed details.
Image via Aurora
2) HubSpot
Don’t have money to spend on a template or professional business card design? Don’t worry. Here’s a colorful sample business card my colleague Carly whipped up using our free Business Card Template Generator.
This free tool let’s you choose from nine fully customizable business card templates, so you’re sure to find one that suits the look and feel of your business. We particularly love the bold shapes and bright colors used in the template below, as it stands out in a pile of plain white business cards.
3) Chomp
In a literal interpretation of the company’s name, London-based agency Chomp designed business cards with a bite-size chunk missing from one corner. The shape of the card stock mimics the detail of their logo — which also bears teeth marks.
Image via How Design
4) Garage Culture
If you want your business card to stand out, non-traditional materials will help you do just that. Designed by Rodrigo Cuberas, this bike garage business card uses cotton paper stock as the base for its stunning, simplistic design.

Image via Behance
5) Matheus Dacosta
Brazilian designer Matheus Dacosta puts an artistic spin on traditional business cards, adding kaleidoscopic, hand-painted designs to every individual card. Each miniature work of art is sure to make a memorable impact — or at the very least, make the recipient reluctant to simply toss it.

Images via Design Milk
6) Trick & Treat
Here’s a great example of a business that played to its strengths. Trick & Treat— and branded entertainment company — offers one of the most creative business cards we’ve ever seen. The design transforms into a tabletop game, which aligns perfectly with Trick & Treat’s playful brand.

Image via Behance
7) Nymbl
Nymbl, a 3D design and virtual reality studio, wanted to project a more accessible, playful image in their new marketing materials. To get the job done right, they turned to UK-based agency Big Fan, who spun up a bold, two-tone business card design concept as part of their new branding. The cards feature paper cut-outs on royal purple stock.
Image via Big Fan
8) Wendigo
This video production agency may get its name from a spooky folk creature, but the quality of their business card design is far from terrifying. Designed by the talented folks at The Distillery, these unusual cards put the focus on meticulously detailed, embossed illustration: a feather, a piece of wood, and a beastly skull can be seen behind the contact information. A pair of interlocking antlers — presumably from the feared Wendigo itself — form the “W” in the agency’s name.
Image via The Distillery
9) Brathw8 Studios
These gold-foiled business cards designed for a professional photographer serve as a great example of how to effectively marry pattern, texture, and simplicity. We especially love how they cut the pattern in the middle to create a clean canvas for the contact information. Tastefully done.

Image via CardObserver
10) Katsy Garcia
Illustrator and graphic designer Katsy Garcia whipped up this simple but effective business card concept for her own personal branding. Instead of displaying her contact information in the usual straightforward format, Garcia serves up a fresh twist, displaying hers in an instantly recognizable text message composition. The resulting effect is equal parts charming and sharply clever.
Image via Katsy Garcia’s Behance Portfolio
11) Omelet
In a nod to their native L.A., Omelet created business cards centered around sleek city imagery. The photographs are artfully silhouetted by their company logo — which if you look closely, is actually an ambigram.
Image via Digiday
12) Counter Creatives
Designed to resemble a classic take-a-number ticket, this inventive business card was devised for Dutch agency Counter Creatives by designer and art director Valery Overhoff. The compact format and unconventional shape called for a creative use of space, and Overhoff manages to feature multiple typefaces and both vertical and horizontal text.
Image via Valery Overhoff’s Cargo Collective Portfolio
13) IS Creative Studio
Thanks to airy swipes of neon spray paint, these otherwise minimal business cards from IS Creative Studio make a big impact. The Peru-based agency has developed three iterations of these award-winning cards, increasing the breadth and intensity of the color pallette each time. This most recent version highlights everything from electric pinks to vibrant greens.

Images via IS Creative Studio’s Behance Portfolio
14) Confetti Studio
These business cards from Confetti Studio combine two powerful elements — punchy orange card stock and gold embossed metallics — to a create a mesmerizing and modern effect. One side of the card is completely covered in gilded speckles, while the other side displays the agency’s logo and contact information — also gilded. They fittingly call the end result “cardfetti.”
Image via Confetti Studio
15) Tricota
Buenos Aires-based agency Tricota found an interesting way to highlight the two sides of their business: perforated cards that split in half. Once side features information for their communications and graphic design services, while info for their illustration services appear on the other side. Each half includes a variation of their “T” logo: a typeface “T” for their communications side and and an hand-drawn “T” for their illustration side.
Image via Tricota’s Behance Portfolio
16) Tait
When this design studio wanted to give their corporate identity a facelift, they turned to fresh card stock in yellow, smokey blue, and azure. Using minimal text against a sophisticated color palette yields sleek results.
Image via Tait’s Behance Portfolio
17) Claire Bruining
Graphic designer Claire Bruining developed these playful business cards for her own personal branding. Splashes of overlapping patterns and colors appear on one side, and Bruining’s contact information appears on the reverse in a clean sans serif font. The dark blue text and border adds an unexpected pop to the basic layout.
Image via Claire Bruining’s Behance Portfolio
18) Don’t Try Studio
Monge Quentin, the Parisian illustrator behind Don’t Try Studio, created these lively and colorful business cards to promote his design work. Thanks to an embossing technique, the face of the cards are embellished with confetti-like brush strokes and shapes in a muted orange and blue color scheme. His name appears in a handwritten print.
Image via Don’t Try Studio
19) Bespoke
The logo on these business cards for digital production studio Bespoke is so large, it actually wraps around from the front of the card to the back. A fellow New York agency — Studio Newwork — designed these cards to be both minimal and unexpected.
Image via Studio Newwork
20) Atelier Irradié
At first glance, the face of these Atelier Irradié business cards look like otherworldly color swatches. In stark contrast to the metallic, jewel-toned gradient on the front, the back of these cards don’t even use ink — just simple, imprinted text displaying their contact information.

Image via Atelier Irradié’s Behance Portfolio
21) Kristin Tora
Designed by luxury printing studio, Elegante Press, these business cards offer an unexpected twist: each one can be painted with watercolors to create a unique

Feature image credit: Atelier Irradié’s Behance Portfolio
![]()
1Password for iOS updated with rich text support in notes, sticker pack for Messages, much more
Apple continues to expand the cast of its upcoming ‘Are You Sleeping?’ drama
These are the winners of the 11th annual iPhone Photography Awards [Gallery]
The annual iPhone Photography Awards have recognized the best images taken with the iPhone over the last 11 years, and now the winners of this year have been unveiled. As revealed on the IPPA website, this year’s winners were selected from “thousands of entries” across 140 countries around the world…
Apple promotes iPhone privacy and sustainability in new animated ads

Apple is highlighting some of the iPhone’s key differentiators with a new webpage and several fun animations posted on YouTube. The page is currently live on Apple’s German website, and will likely roll out to other countries soon.
Review goes hands-on w/ a fake $100 iPhone X & the grave security holes that come with it
The market of counterfeit Apple products has been well documented in the past, with offerings ranging from knockoff AirPods to deceivingly well-designed Apple Watch clones. Now, a new report from Motherboard examines a counterfeit iPhone X purchased for $100…
iPhone & iPad: How to enable data roaming

Carriers are now offering ways to let customers use their phones while abroad without getting charged an absurd amount of money. While both iOS and Android still throw up huge warnings against doing so, it is possible to enable data roaming on your iPhone or iPad.
Apple Pay Summertime promo offers discounts on Fandango, Groupon, and more
iPhone: How to disable volume buttons from changing ringtones and text alerts

Do you find yourself accidentally changing your ringtone volume level with the physical buttons on your iPhone in your pocket, bag, or purse? Follow along for how to keep your ringtone volume fixed for calls, texts, and more.










.png?t=1532058945985&width=669&name=businessCard%20(6).png)


