Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions docs/assets/css/gradle.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,50 @@ h4 {
}
}
}

.button {
display: inline-block;
min-width: 180px;
padding: 10px 20px;
font-size: 17px;
line-height: 1.4;
text-align: center;
font-size: large;
font-weight: bold;
white-space: nowrap;
cursor: pointer;
border-style: solid;
border-width: 1px;
border-radius: 8px;
transition: background-color .3s ease, border .3s ease;
}

.button--blue,
.button--blue-lite {
color: white;
border-color: transparent;
&:hover {
color: white;
}
}


.button--blue {
border-color: var(--gradle-blue-lite);
background: var(--gradle-blue);
background: linear-gradient(var(--button-gradient-angle), var(--gradle-blue) 0%, var(--gradle-blue-lite) 100%);
transition: none;
&:hover {
background-color: var(--gradle-blue-lite);
color: white;
}
}


.button--blue-lite {
background-color: var(--gradle-bg-gray);
&:hover {
background-color: var(--gradle-blue-lite);
color: white;
}
}
43 changes: 43 additions & 0 deletions docs/surveys/developer-survey/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: "Gradle Build Tool - 2024 Software Developer Survey"
description: >
We're doing a developer survey to prioritize our developer experience work.
To say thank you to developers who complete the survey, we'll be handing out gift cards and special swag!
---

# Gradle Build Tool - Software Developer Survey

The Gradle team is committed to enhancing developer experience,
as one of the top priorities on the [Gradle Roadmap](../..roadmap/README.md/).
Your feedback is crucial in helping us prioritize our efforts!

<a class="button button--blue"
href="https://www.surveymonkey.com/r/7FZPXQZ"
target="_blank">Take the Survey
</a>

## The Survey

![Test](./images/hero.png)

The 2024 survey focuses on Gradle Build Tool developer experience. We're aiming to discover common pain points and understand what use cases are particularly frustrating.
This is why the form is quite long, and we will appreciate your patience.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❗ I don't think we should say this at all. Most of our sample respondents completed the original version in 10-15 min, and we think the version you revised should be even faster than that on average.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything beyond 2 minutes is long. Happy to remove/rework though

Copy link
Member

@tresat tresat Aug 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Regardless of if it is long or not (which I guess depends on how you define long), we shouldn't advertise it as being long, as this might discourage people from responding.

The survey will be open for responses until the end of the year,
and we intend to make it a recurrent event.

<a class="button button--blue"
href="https://www.surveymonkey.com/r/7FZPXQZ"
target="_blank">Take the Survey
</a>

## Swag

We offer a gift card raffle for anonymous responses.
The most active participants, who provide substantial feedback and participate in follow-up interviews with us,
will get special edition Gradle swag.
To participate in the raffle,
submit your feedback by October 31st, 2024.

## Previous Surveys

It is our first one!
Comment on lines +39 to +41
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤔 This seems odd, I'd consider dropping it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was about verify the survey history and link them if I find something

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't feel strongly about this, just pointing out my impressions.

Binary file added docs/surveys/developer-survey/images/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ nav:
- Code of Conduct: dotgithub/CODE_OF_CONDUCT.md
- Events:
- Events Overview: events/README.md
- 2024 Developer Survey: surveys/developer-survey/README.md
- Hacktoberfest: events/hacktoberfest/README.md
- Google Summer of Code: events/gsoc/README.md
- Resources:
Expand Down