# isn't

Published articles for isn't.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Making Websites Better through Accessibility

DevFeed: [Making Websites Better through Accessibility](<https://devfeed.tech/articles/making-websites-better-through-accessibility-31281.md>)

Original publisher: [Read original article](<https://nystudio107.com/blog/making-websites-accessible-americans-with-disabilities-act-ada>)

Author: andrew@nystudio107.com (Andrew Welch)

Published: 2017-07-23T22:42:00Z

Content type: article

Language: en

Sources: [nystudio107 | Articles on modern web development.](<https://devfeed.tech/sources/nystudio107-articles-on-modern-web-development.md>)

Topics: [Accessibility](<https://devfeed.tech/topics/accessibility.md>), [Website](<https://devfeed.tech/topics/website.md>), [Development](<https://devfeed.tech/topics/development.md>), [User interface design](<https://devfeed.tech/topics/ui-design.md>)

Tags: [accessibility](<https://devfeed.tech/tags/accessibility.md>), [accessible](<https://devfeed.tech/tags/accessible.md>), [away](<https://devfeed.tech/tags/away.md>), [compliance](<https://devfeed.tech/tags/compliance.md>), [customers](<https://devfeed.tech/tags/customers.md>), [development](<https://devfeed.tech/tags/development.md>), [insights](<https://devfeed.tech/tags/insights.md>), [isn-t](<https://devfeed.tech/tags/isn-t.md>), [just](<https://devfeed.tech/tags/just.md>), [legal](<https://devfeed.tech/tags/legal.md>), [making](<https://devfeed.tech/tags/making.md>), [means](<https://devfeed.tech/tags/means.md>), [turning](<https://devfeed.tech/tags/turning.md>), [ux](<https://devfeed.tech/tags/ux.md>), [wants](<https://devfeed.tech/tags/wants.md>), [website](<https://devfeed.tech/tags/website.md>)

### AI overview

The article explains that website accessibility helps organizations reach more people, avoid excluding customers, and support inclusive products and services. It discusses legal requirements under the Americans with Disabilities Act in the United States and recommends integrating accessibility into design and development workflows.

### Source excerpt

Making your website accessible isn't just about legal compliance, it also means not turning away customers. Because who wants to do that?

## A Deeper Look at AutoValue

DevFeed: [A Deeper Look at AutoValue](<https://devfeed.tech/articles/a-deeper-look-at-autovalue-30585.md>)

Original publisher: [Read original article](<https://ryanharter.com/blog/2016/04/a-deeper-look-at-autovalue/>)

Published: 2016-04-08T07:00:00Z

Content type: tutorial

Language: en

Sources: [Blogs on Ryan Harter](<https://devfeed.tech/sources/blogs-on-ryan-harter.md>)

Topics: [Java](<https://devfeed.tech/topics/java.md>), [Code](<https://devfeed.tech/topics/code.md>), [Android](<https://devfeed.tech/topics/android.md>), [Gradle](<https://devfeed.tech/topics/gradle.md>), [Maven](<https://devfeed.tech/topics/maven.md>)

Tags: [annotation-processor](<https://devfeed.tech/tags/annotation-processor.md>), [code-completion](<https://devfeed.tech/tags/code-completion.md>), [dependencies](<https://devfeed.tech/tags/dependencies.md>), [gradle](<https://devfeed.tech/tags/gradle.md>), [isn-t](<https://devfeed.tech/tags/isn-t.md>), [java](<https://devfeed.tech/tags/java.md>), [maven](<https://devfeed.tech/tags/maven.md>)

### AI overview

This tutorial examines how AutoValue works as a compile-time Java annotation processor. It explains the effects of generated code on application size and performance, and describes configuring AutoValue correctly for Android Gradle projects and Maven builds to avoid bundling processing dependencies in the final application.

### Source excerpt

In my last article, I gave a basic introduction to AutoValue, the code generating annotation processor that makes immutable value types in Java easy. Now I'd like to take a bit of a deeper look at AutoValue and how it works. Compile Time Annotation Processing First things first, AutoValue is a compile time annotation processor. This means that it only runs when you compile your code, as opposed to when your app is running. This has a few implications for your app, namely that including AutoValue doesn't significantly effect your application's performance or size.