WordCamp US 2022 Publishes Speaker Schedule, Livestream Will Be Available
WordCamp US (WCUS) kicks off one month from today in San Diego, CA, and organizers have published the full schedule for all sessions. The three-day event will feature three tracks with a combination of lightning talks (15 min), standard talks (45 min), and workshops (1 hr+).
This year’s lineup is heavy on educating professionals on building with blocks. Attendees and livestream viewers can expect to learn how to customize core blocks for clients and create a custom block in 15 minutes. Speakers will also offer a glimpse into the future of designing themes for the block editor, the foundational concepts of the new era of block themes, and demonstrate how to build a block theme.
Block themes and plugins aren’t the only things on the menu for WCUS attendees. The event will include a diverse range of topics, including WordPress and the creator economy, accessibility, multichannel e-commerce, performance, community, and creating editorial experiences.
The sessions begin on September 9, and continue through the next day, capped off with a chat with Matt Mullenweg, who will also answer live questions from the audience. Contributor Day is scheduled for Sunday, September 11.
Unfortunately, for many hoping to attend, all 650 of the available tickets sold out within the first day. Everyone else across the world of WordPress will need to tune into the livestream, which organizers expect will be fairly popular this year due to the limited in-person tickets. The sessions in Sun track and Palm track will be live streamed, but the Surf track workshops will not. The livestream page is already published and no special tickets will be required.
Committing CSS Crimes
The time for CSS-Tricks is over. Now is the time for CSS Crimes!
In this current landscape of content service providers, users are often limited to expressing themselves in text, links, and images. Sanitization rules tend to strip out HTML, JavaScript, and various attributes.
Social media service Cohost allows users to have greater freedom with markup and inline styles than we may be typically used to. Some users have taken advantage of this freedom to commit CSS Crimes! It has resulted in creative recreations of familiar interfaces and interactive games by using properties in unconventional ways.
Blackle Mori created a contraption where pulling a handle slowly turns a series of gears, pulleys, and chains. Eventually an aperture opens to reveal the site’s mascot (“eggbug”) and the proclamation “Good Job!”. I have stared at this in Developer Tools and it is an amazing combination of grid
, resize
, transform
, and calc()
. I ended up adding a border
to all <div>
s to try and get a better understanding of how each individual element moved.
- Several other CSS Crimes use
resize
to allow viewers rudimentary click and drag functionality. - Other CSS Crimes create limited interaction through
<details>
and<summary>
. - Some members of the community have taken Andrew Siller’s technique from “Night of the Living GIF: Making Interactive Multiplayer Experiences” to create a multiplayer Pokemon experience!
There have been situations in the past where I have been restricted from using the full toolkit of HTML, JavaScript, and CSS. There have been many instances of using decorative CSS shapes to get around images. I have used :hover
as a workaround for mouseenter
and mouseleave
. I have used input:checked
as a sibling selector for toggling.
While CSS Crimes are probably not something you would want to employ on a regular basis, we should embrace experiments within constraints that can foster creative solutions.
To Shared Link — Permalink on CSS-Tricks
Committing CSS Crimes originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter.
12+ WordPress Plugins for Your LearnDash Website
3CX Live Chat for Better WordPress Communication
Live chat is one of the most effective and easiest ways to connect with your customers. Unlike most other support channels, such as email, you can offer your customers faster support and solve their problems quickly to boost your conversion rates. Other than that, you can also improve brand credibility, offer 24/7 support if need […]
The post 3CX Live Chat for Better WordPress Communication appeared first on WPExplorer.
Worrying Trends in Drug Use in America Today
This article will explore some of the most worrying drug trends in the US today, providing important insights into the various different types of drugs that are causing health epidemics in America right now. See...
The post Worrying Trends in Drug Use in America Today appeared first on 85ideas.com.
Incorporation Vs. Corporation
While the two terms are often used interchangeably, there is a big difference between incorporation and corporation. Incorporation is the …
Incorporation Vs. Corporation Read More »
The post Incorporation Vs. Corporation appeared first on .
Send Push Notifications to Users of Another App
As online shopping for products and services becomes more and more popular, new business opportunities have also arisen. To seize such opportunities, I recently developed an online shopping app, which I shall refer to in this article as "app B". Once you have developed an app, the next thing that you need to do is to promote the app and attract more users to use it. Since sending push messages to users is a widely used method for promoting apps and improving user engagement, I decided to do the same for my new app in order to deliver promotional information and various coupons to users, which hopefully should increase their engagement and interest.
However, I discovered a glaring problem straightaway. Since the app has just been released, it has few registered users, making it hard to achieve the desired promotional effect by just sending push messages to these users. What I needed to do was to send push messages to a large pool of existing users in order to get them to try out my new app. It suddenly occurred to me that I once developed a very popular short video app (which I shall refer to as "app A"), which has now accumulated thousands of registered users. Wouldn't it be great if there was a one-stop service that I can use to get app B to send push messages to the wide user base of app A, thus attracting users of app A to use app B?
How to Find Your Long-Lost Friends and Relatives
Relationships are easy to break and hard to mend. Over time you might find it difficult to cope with a person, and thus, you might lose contact with them. Or maybe the circumstances and obstacles...
The post How to Find Your Long-Lost Friends and Relatives appeared first on 85ideas.com.
LLC Vs. Nonprofit
If you’re starting a company, you may be wondering what kind of business entity to form. Two common options for …
The post LLC Vs. Nonprofit appeared first on .
Actually, the San Francisco Typeface Does Ship as a Variable Font
Apple unveiled an expanded version of its San Francisco system font at WWDC 2022. Then, last month, Jim Nielsen zeroed in on the font’s variations, explaining how the font provides a spectrum of variations based on the width and weight. It’s a remarkable read if you haven’t checked it.
With all of these great new options, you might be tempted to use them in a web design. Chris was ogling over the expanded sets as well over on his personal blog and pondered:
But it’s not year clear how we might tap into the condensed, compressed, and expanded varieties in CSS, or if there is even a plan to allow that. I suppose we can peek around Apple.com eventually and see how they do it if they start using them there.
Doesn’t this make perfect sense to construct as a variable font and ship the whole kit and kaboodle that way?
Turns out, yes. It does make perfect sense. Chris follows up in a new post:
But just yesterday I randomly stumbled across the fact that the built-in San Francisco font (on the Apple devices that have it built-in) is already variable (!!). See, I was derping around with Roboto Flex, and had
system-ui
as the fallback font, and I was noticing that during the FOUT, thefont-variation-settings
I was using had an effect on the fallback font, which renders as San Francisco on my Mac. Which… unless I’m daft… means that San Francisco is a variable font.
So, as for using it? Chris has a demo, of course:
There are some gotchas to all this, the most significant being fallbacks for non-Apple devices. After all, that demo is simply calling system-ui
for the font family — it’s not telling the browser to download a font file or anything and who knows if Apple is gonna ever ship a variable font file we can serve up as an actual custom web font.
The other interesting thing? Chris did some sleuthing and counted 35 layout featured included in that system font. Go read the rest of the post to see ’em all (and to get a good ol’ dose of Chris-isms — I know I miss them!).
To Shared Link — Permalink on CSS-Tricks
Actually, the San Francisco Typeface Does Ship as a Variable Font originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter.
Stripe vs. Square for WordPress eCommerce
Today payment solutions online have reached a highly convenient stage, where the customer has endless options available. However, the downfall of several small to medium businesses is that they don’t pay attention to this Aspect, losing out on customers. Not only can this deter new visitors from subscribing to your services or buying your products, […]
The post Stripe vs. Square for WordPress eCommerce appeared first on WPExplorer.
Difference Between Data Mining and Data Warehousing
Data mining and warehousing are two processes essential for any organization that wants to be recognized on a global or national level. Both techniques help prevent data fraud and improve managerial statistics and rankings. Data mining is used to detect significant patterns by relying on the data gathered during the data warehousing phase.
Data mining and data warehousing are both considered as part of data analysis. But they work in different ways. This blog will look at the differences between the two and whether or not one can exist without the other.
CSS Toggle Switch
Today, we’ll go over how we can transform a regular checkbox input element to a responsive toggle switch. It’s not as hard as you may think and only involves CSS. No JavaScript. So let’s get into it! If you get...
The post CSS Toggle Switch appeared first on Treehouse Blog.
IntelliJ Integration for Mockito
Mockitools is an IntelliJ plugin that provides integration for Mockito.
In this article, I’d like to show you the major features of the plugin (and some of the minor ones, too) and how they can be useful when working with Mockito test code.
Search Engine Optimization Strategy
What is the best search engine optimization strategy you are using in 2022 for rank your site high in search engines?
Developing a Cloud Adoption Strategy
The value of technology in businesses and organisations cannot be underestimated, and there was nothing like the COVID-19 pandemic for us to see its value first-hand.
Overnight, the way we interact with and operate businesses was forcefully changed forever, effectively accelerating our journey towards digitally transforming our organisations. According to a 2020 McKinsey report, companies were able to adopt digital changes 20-25 times faster than they would have anticipated.
What are 4 benefits of digital marketing?
What are the 4 benefits of digital marketing?
Image results for digital marketing importance
Top Advantages of Digital Marketing
Global Reach. Traditional marketing is restricted by geography and creating an international marketing campaign can be hard, expensive, as well as labor-intensive.
Local Reach.
Lower Cost.
Easy to Learn.
Effective Targeting.
Multiple Strategies.
Multiple Content Types.
Increased Engagement.