- Research: quantifying GitHub Copilot’s impact on developer productivity and happiness
- The Good Day Project
- Rethinking Productivity in Software Development
- Software developers' perceptions of productivity
- The SPACE of Developer Productivity
- Yes, good DevEx increases productivity. Here is the data.
- DevEx in Action - A study of its tangible impacts
- The best talks are an overlap of what you know, what you are passionate about, and what the audience cares about
- Iterate on your talks and deliver them multiple times
- Dump ideas into a notepad somewhere and let them congeal into talks
- Lean into your persona and try not to be someone you're not
- Who is it for?
function getInboxUnreadCount() { | |
Logger.log(GmailApp.getInboxUnreadCount() + " unread emails"); | |
} | |
function setAllUnreadNonStarredAsRead() { | |
// Define the search string to identify emails | |
var searchString = "is:unread -is:starred in:inbox"; | |
// Get all threads matching search string | |
var threads = GmailApp.search(searchString,0,500); |
NOTE: THIS IS GENERATED BY AN AI AND IS EXTREMELY INACCURATE! | |
Damian Brady is a software engineer and technical leader from Sydney, Australia. He is best known for his work on the DevOps movement, and for his contributions to the development of continuous delivery and infrastructure-as-code practices. | |
Brady was born in Sydney, and grew up in the inner-west suburb of Glebe. He studied computer science at the University of New South Wales, graduating in 2001. After graduation, he joined the software development team at Westpac Bank, where he worked on a number of high-profile projects including the development of an online banking platform. | |
In 2008, Brady joined ThoughtWorks, a global technology consultancy, where he worked on a number of large-scale software development projects for clients including the Australian Government and major banks. It was during this time that he became interested in the DevOps movement, which seeks to improve the collaboration between software development and operations teams. | |
In |
Disclaimer: I'm not an expert, and this is what I've gathered to the best of my ability. I could be wrong in parts. I'm almost certainly missing some detail and have some terminology wrong.
If you end up in hospital for a procedure, you'll incur a number of costs. Insurance generally breaks these down into Hospital Expenses, and Medical Expenses. Hospital expenses are things like your bed on the ward, operating theatre fees, and administrative fees. Medical expenses are what your doctors charge - if it's an operation, that'll be your surgeon and the anaesthetist.
If you're a public patient at a public hospital, Medicare will pay for both of these. You shouldn't be out of pocket at all. But if you're a private patient at a public or private hospital, Medicare will only pay some. This is where private health insurance comes in. Private health insurance also means you
# ASP.NET | |
# Build and test ASP.NET projects. | |
# Add steps that publish symbols, save build artifacts, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 | |
trigger: | |
branches: | |
include: | |
- master | |
paths: |
# ASP.NET Core | |
# Build and test ASP.NET Core projects targeting .NET Core. | |
# Add steps that run tests, create a NuGet package, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core | |
pool: | |
vmImage: 'Ubuntu 16.04' | |
variables: | |
buildConfiguration: 'Release' |