Your cart is currently empty!
Blog
-
10 Digital Style Guide Examples from Famous Companies such as Apple, Google & Starbucks
If you’ve ever wondered how designers at Apple defined every little element in iOS as they were building it, then you’re in the right place.
As technology is constantly evolving, web design continues to become more formalized. Web designers and developers need to create code that can translate seamlessly from PC to mobile devices, make easy to understand site navigation, and innovate other site capabilities — these are all elements that companies standardize in digital style guides.
Digital style guides have become more useful to a brand’s overall image and memorability on the web because they set the expectations and standards for company web display. They’re especially important for websites and products that need to produce top-notch user experiences.
In this post, we’ll dive into what digital style guides are in detail and show you some impressive examples from famous companies that have done them well.This type of style guide is to be treated as a manual that sets design standards for a company’s digital presence. Its key purpose is to create a universal design style for the brand and ensure consistency across all channels and mediums, where you establish your logo, color palette, typography, imagery guidelines, and so on.
Unlike brand style guides that encapsulate a company’s logo, mission statement, buyer personas and tone of voice, web design style guides are centered on digital presentation like UX/UI.
But, as a UX designer myself, I’ve always been curious, what can you find in the digital style guides of influential companies like Apple, Google, and Starbucks?
Believe it or not, a lot of companies make this information publicly available — they just don’t make it very easy to find. So, every time that I stumble across one, I bookmark it. Here are some of the best ones that I’ve found so far.
Examples of Awesome Digital Style Guides
1. Apple iOS
Apple’s style guide is especially interesting because it details how to design an entire operating system. Monterey, one of the latest versions of Apple’s OS X, has a more simplified user interface than its predecessor, Yosemite. Apple demonstrates this subtle-yet-palpable distinction with really nice graphical comparisons and then goes on to talk about the rationale behind every single aspect of the operating system’s design. It gives you a window into the minds of the designers.2. Google: Material Design
Google pioneered a design style called Material Design, which exists as a hybrid between Skeuomorphic Design (gradients, textures, light elements) and Flat Design (simple, colorful, geometrical.) In doing this, they combined the benefits associated with each design style, while avoiding the drawbacks.
Because Google has been practicing Material Design for a few years now, you’ve probably already interacted with it on a daily basis — Google Calendar app, anyone? This style guide details exactly what Material Design is and how Google uses it. And I have to say that it is, by far, one of the best style guides that I’ve ever come across.3. Starbucks
This is one of the most minimalistic style guides that I’ve seen — and yet, it houses a ton of useful information. It places a heavy emphasis on code and you can tell that it was built by developers, for developers. It lacks brand-related elements, so it walks the line between a website style guide and code library.4. Atlassian
The product suite that Atlassian designs for is gigantic — so, naturally, they have a gigantic style guide. From foundational elements (like color palette and typography) to components (like tables and tooltips) to a full-blown pattern library, this guide has just about everything that you would expect from a product of this size.
Perhaps best of all, the rationale behind the entire style guide is summed up in three deceptively simple terms on the home page.5. Mozilla
This digital style guide is primarily concerned with branding and communications. But with Mozilla taking a “privacy and open web” approach lately, it’s cool to see how they reflect this in their design.
Mozilla’s homepage also does a great job of outlining how its UX/UI is supposed to be accessible to people with visual impairments or disabilities — something inclusive and necessary as technology becomes more innovative.6. Buffer
Buffer’s style guide is small and concise, going from grid through modals all in one place. It’s a friendly reminder that your digital style guide doesn’t have to be flashy if it communicates all the right points. Companies looking for somewhere to begin can take notes from Buffer’s simplistic style guide components and build their own from there.7. Yelp
If you’re looking for a solid example of a website style guide, Yelp’s got that covered. Not only is it thorough, but it explains its Atomic Design system as a cookbook, and divides site elements as ingredients contributing to a dish.
This thing has it all: typography, layout, forms, containers, navigation, and code snippets for each piece. They do a great job of explaining what each element is, where it should be used, and how it should be implemented.8. GOV.UK
England’s government services website has been widely heralded as a prime example of high-quality UX. Why? Because it boasts a simple and easy-to-use design that accommodates excessive amounts of information.
If you’re interested in what makes up a truly clean and effective design (hint: it usually starts with strong color usage, typography, and spacing), then GOV.UK’s style guide is worth taking a close look at. Much like the site, it’s very simple but very informative.9. DeviantArt
The new DeviantArt style guide is unique because it’s more than just a guide — it’s an experience. It tells a story and leverages bold, full-width visuals to immerse the user in the emotional experience of the DeviantArt brand. That being said, it’s strictly a branding style guide, so only items like color and typography are covered.10. Disqus
Color, icons, typography, and logo … Disqus keeps it short and sweet with this guide. But it’s all presented in a very nice, organized manner. This guide could be used as a great example for “where to start” when creating a style guide of your own, as it hits all of the fundamentals.Feeling Inspired to Make Your Own Guide?
Now it’s your turn. By leveraging a digital style guide in your company, you can communicate your brand’s design language to internal designers, agencies, advertising partners, and even customers.
Start with the basic foundational elements (color, typography, logo, imagery), add some usage guidelines (“do and don’t”), and even incorporate some web components if you need to (modules, templates, code snippets. Use examples from other companies to learn from the best. Your team will be cranking out consistent designs in no time. -
An Introductory SQL Tutorial: How to Write Simple Queries
How to Query a SQL Database:
Make sure that you have a database management application (ex. MySQL Workbench, Sequel Pro).
If not, download a database management application and work with your company to connect your database.
Understand your database and its hierarhcy.
Find out which fields are in your tables.
Begin writing a SQL query to pull your desired data.Ever heard of SQL? You may have heard about it in the context of data analysis, but never thought it would apply to you as a marketer. Or, you may have thought, “That’s for the advanced data users. I could never do that.”
Well, you couldn’t be more wrong! The most successful marketers are data-driven, and one of the most important parts of being data-driven is collecting data from databases quickly. SQL is the most popular tool out there for doing just that.
If your company already stores data in a database, you may need to learn SQL to access the data. But not to worry — you’re in the right place to get started. Let’s jump right in.Why Use SQL?
SQL (often pronounced like “sequel”) stands for Structured Query Language, and it’s used when companies have a ton of data that they want to manipulate. The beauty of SQL is that anyone working at a company that stores data in a relational database can use it. (And chances are, yours does.)
For example, if you work for a software company and want to pull usage data on your customers, you can do that with SQL. If you’re helping develop a website for an ecommerce company that has data about customer purchases, you can use SQL to find out which customers are purchasing which products. Of course, these are just a few of many possible applications.
Think about it this way: Have you ever opened a very large data set in Excel, only for your computer to freeze or even shut down? SQL allows you to access only certain parts of your data at a time so you don’t have to download all the data into a CSV, manipulate it, and possibly overload Excel. In other words, SQL takes care of the data analysis that you may be used to doing in Excel.
How to Write Simple SQL Queries
Before we begin, make sure you have a database management application that will allow you to pull data from your database. Some options include MySQL or Sequel Pro.
Start by downloading one of these options, then talk to your company’s IT department about how to connect to your database. The option you choose will depend on your product’s back end, so check with your product team to make sure you select the correct one.
Understand the hierarchy of your database
Next, it’s important to become accustomed to your database and its hierarchy. If you have multiple databases of data, you’ll need to hone in on the location of the data you want to work with.
For example, let’s pretend we’re working with multiple databases about people in the United States. Enter the query “SHOW DATABASES;”. The results may show that you have a couple of databases for different locations, including one for New England.
Within your database, you’ll have different tables containing the data you want to work with. Using the same example above, let’s say we want to find out which information is contained in one of the databases. If we use the query “SHOW TABLES in NewEngland;”, we’ll find that we have tables for each state in New England: people_connecticut, people_maine, people_massachusetts, people_newhampshire, people_rhodeisland, and people_vermont.
Finally, you need to find out which fields are in the tables. Fields are the specific pieces of data that you can pull from your database. For example, if you want to pull someone’s address, the field name may not just be “address” — it may be separated into address_city, address_state, address_zip. In order to figure this out, use the query “Describe people_massachusetts;”. This provides a list of all of the data that you can pull using SQL.
Let’s do a quick review of the hierarchy using our New England example:Our database is: NewEngland.
Our tables within that database are: people_connecticut, people_maine, people_massachusetts, people_newhampshire, people_rhodeisland, and people_vermont.
Our fields within the people_massachusetts table include: address_city, address_state, address_zip, hair_color, age, first_name, and last_name.Now, let’s write some simple SQL queries to pull data from our NewEngland database.
Basic SQL Queries
To learn how to write a SQL query, let’s use the following example:
Who are the people who have red hair in Massachusetts and were born in 2003 organized in alphabetical order?
SELECT
SELECT chooses the fields that you want displayed in your chart. This is the specific piece of information that you want to pull from your database. In the example above, we want to find the people who fit the rest of the criteria.
Here is our SQL query:
SELECT
first_name,
last_name
;
FROM
FROM pinpoints the table that you want to pull the data from. In the earlier section, we learned that there were six tables for each of the six states in New England: people_connecticut, people_maine, people_massachusetts, people_newhampshire, people_rhodeisland, and people_vermont. Because we’re looking for people in Massachusetts specifically, we’ll pull data from that specific table.
Here is our SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
;
WHERE
WHERE allows you to filter a query to be more specific. In our example, we want to filter our query to include only people with red hair who were born in 2003. Let’s start with the red hair filter.
Here is our SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
;
hair_color could have been part of your initial SELECT statement if you’d wanted to look at all of the people in Massachusetts along with their hair color. But if you want to filter to see only people with red hair, you can do so with a WHERE statement.
BETWEEN
Besides equals (=), BETWEEN is another operator you can use for conditional queries. A BETWEEN statement is true for values that fall between the specified minimum and maximum values.
In our case, we can use BETWEEN to pull records from a specific year, like 2003. Here’s the query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
;
AND
AND allows you to add additional criteria to your WHERE statement. Remember, we want to filter by people who had red hair in addition to people who were born in 2003. Since our WHERE statement is taken up by the red hair criteria, how can we filter by a specific year of birth as well?
That’s where the AND statement comes in. In this case, the AND statement is a date property — but it doesn’t necessarily have to be. (Note: Check the format of your dates with your product team to make sure they are in the correct format.)
Here is our SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
;
OR
OR can also be used with a WHERE statement. With AND, both conditions must be true to appear in results (e.g., hair color must be red and must be born in 2003). With OR, either condition must be true to appear in results (e.g., hair color must be red or must be born in 2003).
Here’s what an OR statement looks like in action:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
OR
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
;
NOT
NOT is used in a WHERE statement to display values in which the specified condition is untrue. If we wanted to pull up all Massachusetts residents without red hair, we can use the following query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE NOT
hair_color = ‘red’
;
ORDER BY
Calculations and organization also can be done within a query. That’s where the ORDER BY and GROUP BY functions come in. First, we’ll look at our SQL queries with the ORDER BY and then GROUP BY functions. Then, we’ll take a brief look at the difference between the two.
An ORDER BY clause allows you to sort by any of the fields that you have specified in the SELECT statement. In this case, let’s order by last name.
Here is our SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
ORDER BY
last_name
;
GROUP BY
GROUP BY is similar to ORDER BY, but aggregates data that has similarities. For example, if you have any duplicates in your data, you can use GROUP BY to count the number of duplicates in your fields.
Here is your SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31′
GROUP BY
last_name
;
ORDER BY VS. GROUP BY
To show the difference between an ORDER BY statement and a GROUP BY statement, let’s step outside our Massachusetts example briefly to look at a very simple dataset. Below is a list of four employees’ ID numbers and names.If we were to use an ORDER BY statement on this list, the names of the employees would get sorted in alphabetical order. The result would look like this:
If we were to use a GROUP BY statement instead, the employees would be counted based on the number of times they appeared in the initial table. Note that Peter appeared twice in the initial table, so the result would look like this:
With me so far? Okay, let’s return to the SQL query we’ve been creating about red-haired people in Massachusetts who were born in 2003.
LIMIT
Depending on the amount of data you have in your database, it may take a long time to run your queries. This can be frustrating, especially if you’ve made an error in your query and now need to wait before continuing. If you want to test a query, the LIMIT function lets you limit the number of results you get.
For example, if we suspect there are thousands of people who have red hair in Massachusetts, we may want to test out our query using LIMIT before we run it in full to make sure we’re getting the information we want. Let’s say, for instance, we only want to see the first 100 people in our result.
Here is our SQL query:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
ORDER BY
last_name
LIMIT
100
;
INSERT INTO
In addition to retrieving information from a relational database, SQL can also be used to modify the contents of a database. Of course, you’ll need permissions to make changes to your company’s data. But, in case you’re ever in charge of managing the contents of a database, we’ll share some queries you should know.
First is the INSERT INTO statement, which is for putting new values into your database. If we want to add a new person to the Massachusetts table, we can do so by first providing the name of the table we want to modify, and the fields within the table we want to add to. Next, we write VALUE with each respective value we want to add.
Here’s what that query could look like:
INSERT INTO
people_massachusetts (address_city, address_state, address_zip, hair_color, age, first_name, last_name)
VALUES
(Cambridge, Massachusetts, 02139, blonde, 32, Jane, Doe)
;
Alternatively, if you are adding a value to every field in the table, you don’t need to specify fields. The values will be added to columns in the order that they are listed in the query.
INSERT INTO
people_massachusetts
VALUES
(Cambridge, Massachusetts, 02139, blonde, 32, Jane, Doe)
;
If you only want to add values to specific fields, you must specify these fields. Say we only want to insert a record with first_name, last_name, and address_state — we can use the following query:
INSERT INTO
people_massachusetts (first_name, last_name, address_state)
VALUES
(Jane, Doe, Massachusetts)
;
UPDATE
If you want to replace existing values in your database with different values, you can use UPDATE. What if, for example, someone is recorded in the database as having red hair when they actually have brown hair? We can update this record with UPDATE and WHERE statements:
UPDATE
people_massachusetts
SET
hair_color = ‘brown’
WHERE
first_name = ‘Jane’
AND
last_name = ‘Doe’
;
Or, say there’s a problem in your table where some values for “address_state” appear as “Massachusetts” and others appear as “MA”. To change all instances of “MA” to “Massachusetts” we can use a simple query and update multiple records at once:
UPDATE
people_massachusetts
SET
address_state = ‘Massachusetts’
WHERE
address_state = MA
;
Be careful when using UPDATE. If you don’t specify which records to change with a WHERE statement, you’ll change all values in the table.
DELETE
DELETE removes records from your table. Like with UPDATE, be sure to include a WHERE statement, so you don’t accidentally delete your entire table.
Or, if we happened to find several records in our people_massachusetts table who actually lived in Maine, we can delete these entries quickly by targeting the address_state field, like so:
DELETE FROM
people_massachusetts
WHERE
address_state = ‘maine’
;
Bonus: Advanced SQL Tips
Now that you’ve learned how to create a simple SQL query, let’s discuss some other tricks that you can use to take your queries up a notch, starting with the asterisk.
* (asterisk)
When you add an asterisk character to your SQL query, it tells the query that you want to include all the columns of data in your results.
In the Massachusetts example we’ve been using, we’ve only had two column names: first_name and last_name. But let’s say we had 15 columns of data that we want to see in our results — it would be a pain to type all 15 column names in the SELECT statement. Instead, if you replace the names of those columns with an asterisk, the query will know to pull all of the columns into the results.
Here’s what the SQL query would look like:
SELECT
*
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
ORDER BY
last_name
LIMIT
100
;
% (percent symbol)
The percent symbol is a wildcard character, meaning it can represent one or more characters in a database value. Wildcard characters are helpful for locating records that share common characters. They are typically used with the LIKE operator to find a pattern in the data.
For instance, if we wanted to get the names of every person in our table whose zip code begins with “02”, we can write this query:
SELECT
first_name,
last_name
WHERE
address_zip LIKE ‘02%’
;
Here, “%” stands in for any group of digits that follow “02”, so this query turns up any record with a value for address_zip that begins with “02”.
LAST 30 DAYS
Once I started using SQL regularly, I found that one of my go-to queries involved trying to find which people took an action or fulfilled a certain set of criteria within the last 30 days.
Let’s pretend today is December 1, 2021. You could create these parameters by making the birth_date span between November 1, 2021 and November 30, 2021. That SQL query would look like this:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2021-11-01’ AND ‘2021-11-30’
ORDER BY
last_name
LIMIT
100
;
But, that would require thinking about which dates cover the last 30 days, and you’d have to update this query constantly.
Instead, to make the dates automatically span the last 30 days no matter which day it is, you can type this under AND: birth_date >= (DATE_SUB(CURDATE(),INTERVAL 30))
(Note: You’ll want to double-check this syntax with your product team because it may differ based on the software you use to pull your SQL queries.)
Your full SQL query would therefore look like this:
SELECT
first_name,
last_name
FROM
people_massachusetts
WHERE
hair_color = ‘red’
AND
birth_date >= (DATE_SUB(CURDATE(),INTERVAL 30))
ORDER BY
last_name
LIMIT
100
;
COUNT
In some cases, you may want to count the number of times that a criterion of a field appears. For example, let’s say you want to count the number of times the different hair colors appear for the people you are tallying up from Massachusetts. In this case, COUNT will come in handy so you don’t have to manually add up the number of people who have different hair colors or export that information to Excel.
Here’s what that SQL query would look like:
SELECT
hair_color,
COUNT(hair_color)
FROM
people_massachusetts
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31′
GROUP BY
hair_color
;
AVG
AVG calculates the average of an attribute in the results of your query, excluding NULL values (empty). In our example, we could use AVG to calculate the average age of Massachusetts residents in our query.
Here’s what our SQL query could look like:
SELECT
AVG(age)
FROM
people_massachusetts
;
SUM
SUM is another simple calculation you can do in SQL. It calculates the total value of all attributes from your query. So, if we wanted to add up all the ages of Massachusetts residents, we can use this query:
SELECT
SUM(age)
FROM
people_massachusetts
;
MIN and MAX
MIN and MAX are two SQL functions that give you the smallest and largest values of a given field. We can use it to identify the oldest and youngest members of our Massachusetts table:
This query will give us the record of the oldest:
SELECT
MIN(age)
FROM
people_massachusetts
;
And this query gives us the oldest:
SELECT
MAX(age)
FROM
people_massachusetts
;
JOIN
There may be a time when you need to access information from two different tables in one SQL query. In SQL, you can use a JOIN clause to do this.
(For those familiar with Excel formulas, this is similar to using the VLOOKUP formula when you need to combine information from two different sheets in Excel.)
Let’s say we have one table that has data of all Massachusetts residents’ user IDs and their birthdates. In addition, we have an entirely separate table containing all Massachusetts residents’ user IDs and their hair color.
If we want to figure out the hair color of Massachusetts residents born in the year 2003, we’d need to access information from both tables and combine them. This works because both tables share a matching column: user IDs.
Because we’re calling out fields from two different tables, our SELECT statement is also going to change slightly. Instead of just listing out the fields we want to include in our results, we’ll need to specify which table they’re coming from. (Note: The asterisk function may come in handy here so your query includes both tables in your results.)
To specify a field from a specific table, all we have to do is combine the name of the table with the name of the field. For example, our SELECT statement would say “table.field” — with the period separating the table name and the field name.
We’re also assuming a few things in this case:The Massachusetts birthdate table includes the following fields: first_name, last_name, user_id, birthdate
The Massachusetts hair color table includes the following fields: user_id, hair_colorYour SQL query would therefore look like:
SELECT
birthdate_massachusetts.first_name,
birthdate_massachusetts.last_name
FROM
birthdate_massachusetts JOIN haircolor_massachusetts USING (user_id)
WHERE
hair_color = ‘red’
AND
birth_date BETWEEN ‘2003-01-01’ AND ‘2003-12-31’
ORDER BY
last_name
;
This query would join the two tables using the field “user_id” which appears in both the birthdate_massachusetts table and the haircolor_massachusetts table. You’re then able to see a table of people born in 2003 who have red hair.
CASE
Use a CASE statement when you want to return different results to your query based on which condition is met. Conditions are evaluated in order. Once a condition is met, the corresponding result is returned and all following conditions are skipped over.
You can include an ELSE condition at the end in case no conditions are met. Without an ELSE, the query will return NULL if no conditions are met.
Here’s an example of using CASE to return a string based on the query:
SELECT
first_name,
last_name
FROM
people_massachusetts
CASE
WHEN hair_color = ‘brown’ THEN ‘This person has brown hair.’
WHEN hair_color = ‘blonde’ THEN ‘This person has blonde hair.’
WHEN hair_color = ‘red’ THEN ‘This person has red hair.’
ELSE ‘Hair color not known.’
END
;
Basic SQL Queries Marketers Should Know
Congratulations. you’re ready to run your own SQL queries! While there’s a lot more you can do with SQL, I hope you found this overview of the basics helpful so you can get your hands dirty. With a strong foundation of the basics, you’ll be able to navigate SQL better and work toward some of the more complex examples.
Editor’s note: This post was originally published in March 25 and has been updated for comprehensiveness. -
Salesforce DevOps: Balancing Productivity with Compliance
Since the COVID-19 pandemic began, companies have been accelerating their digital product and service strategies to meet new and growing demands from customers. In order to keep pace, modernizing Salesforce DevOps practices has been critical. There are major productivity and compliance gains to be made… Read More
-
Facing the truth: customer support agent turnover rate is constantly increasing
One of the defining workplace themes of 2021 was the Great Resignation. Employees started leaving their jobs at record rates, with 4.3 million people quitting in September 2021 alone. Shortly after, many employers began forecasting a focus on retaining talent, the likes of which had never been seen before in the corporate world. As the…
The post Facing the truth: customer support agent turnover rate is constantly increasing appeared first on Customer Experience Magazine. -
Peak customer service and the hospitality mindset
Is cheaper better?
Is profit the only thing to be maximized?
For its first decade, Federal Express embraced customer service as a marketing tool. They were competing with the postal service, but more than that, they were trying hard to create a habit that turned 25 cent deliveries into $20 deliveries, particularly among businesses.
They answered the phone on the first ring.
They hired people who cared about the customer experience and gave them tools to keep their promises.
They sacrificed short-term profits in order to build a brand promise that people could trust.
Some organizations end up ingraining this ethos deeply into what they do, and stick with it for the long haul. They have a hospitality mindset. Service isn’t simply the tool to make profits–it’s a key part of why you’re here in the first place.
In the last decade, Fedex (simply to pick a familiar example, they’re by no means unique) decided to take a different path.
They don’t answer the phone easily. When they do, they box their low-paid workers in with scripts and policies that leave little room for human engagement. They remove less profitable dropboxes, and shorten the hours they do pickups. When a package goes awry, they do little to repair the broken trust it creates. I’m sure a McKinsey consultant ran the numbers on all of these changes.
All of these steps add up to slightly more profit in the short run. And, perhaps, over time, people who really care (the difficult customers?) switch to another provider. But the real cost here is to their people, their mission and the culture they seek to build.
Hospitality is a choice, not simply a tactic.
It’s possible to build an organization that does work you’re proud of, surrounded by people who feel the same way. People who care, solving problems and creating connection.
-
[Webinar] 5 Ways to Boost Salesforce Adoption & Training
Whatfix and Salesforce Ben are teaming up to bring you a free webinar about boosting adoption and training in Salesforce. Salesforce powers high-performing sales teams, and its benefits are comprehensive for sales orgs. Salesforce provides better organization flows, cleaner account data, drives sales productivity and… Read More
-
Monitor Platform Event Publishing and Delivery Usage
Last Updated on March 20, 2022 by Rakesh Gupta Big Idea or Enduring Question: How to monitor Platform Events consumption? Objectives: After reading this blog, you’ll be able to: Understand the platform events Different apps to monitor platform event usages Query platform event usages for a given time-frame Business Use
The post Monitor Platform Event Publishing and Delivery Usage appeared first on Automation Champion. -
Email Octopus Review And Tutorial | Free Affiliate Marketing Email Autor…
submitted by /u/Electrical_Pie6659 [link] [comments]
-
The things you can’t see
Do you remember all the elements you didn’t used to notice?
It might be the way you see typography now, or the tuning of an orchestra. Or the alignment in the mouldings of a house you’re inspecting or the way an engine sounds… (or whether you put a ‘u’ in moulding)
Expertise is about learning new ways to notice.
Often, once we learn to see, we assume we’ve always known. And that allows us to believe that the things we can’t see, we’ll never be able to see.
But it doesn’t work that way unless we get complacent.
There’s always something just below the surface, the elements that most people simply don’t notice. But we can if we choose.
-
SpotiCash Review Get Your Free Bonus 2000$
I’m sure you’ve heard of the saying “time is money” and when it comes to music, we can all agree that time is a precious commodity. As I’m sure you’re aware, this statement rings especially true for those who are constantly on the go — whether commuting to work or simply trying to balance work/life. The good news is there is software now available that pays people like us for our time spent listening to music! And no – it’s not a joke – with the software I am introducing today: Spoticash! This software actually pays its listeners in cash for every song they listen to. This means that you can start earning cash without having to do anything extra! Let’s follow me to explore this wonderful tool! https://tescadeux.com/spoticash-review-get-your-free-bonus-2000/ submitted by /u/cycysimba [link] [comments]