idproject
int64
7.76k
28.8M
issuekey
int64
675k
128M
created
stringlengths
19
32
title
stringlengths
4
226
description
stringlengths
2
154k
storypoints
float64
0
300
7,603,319
99,104,583
2021-12-15 18:17:31.244
Add a default logging.yaml when `meltano init` is invoked
### Problem to solve Now that structured logs have been added to Meltano by https://gitlab.com/meltano/meltano/-/issues/2772, it'd be good if new Meltano projects were initialized with a `logging.yaml` containing some good defaults. ### Target audience Users starting fresh new Meltano projects. ### Further details - Logging configuration is present from the start - Users are aware of configurable logging by virtue of the file being present ### Proposal The initial `logging.yaml` should probably have both the option for colored logs during development, and JSON logs for production scenarios. The file should probably include a header with some instructions, links, etc. ### What does success look like, and how can we measure that? Users start using and configuring structured logging in their Meltano projects. This increased use should bring more contributions as bug reports and feature proposals. ### Regression test (Ensure the feature doesn't cause any regressions) - [ ] Write adequate test cases and submit test results - [ ] Test results should be reviewed by a person from the team ### Links / references _Please note that this was taken from GitLab, to be changed accordingly_
4
7,603,319
99,035,176
2021-12-14 18:52:17.350
Deprecate `env_aliases` from Meltano
Our latest `discovery.yml` file contains ~~36 refs to `env:` and~~ 73 references to `env_aliases:`. I propose we remove these from `discovery.yml` and instead direct users to use the explicit environment variable logic: `<plugin_name>_<setting_name>`. Optionally, we can preserve this functionality in case users want to add their own mappings within their `meltano.yml` files, but to my understanding, this is fully redundant with just setting the config value to be equal to the value (e.g. `value: $MY_ENV_VAL` is basically equivalent to adding the `env: MY_ENV_VAL` or `env_aliases: [MY_ENV_VAL]`). As I understand the evolution of this featureset, the custom-named env variable aliases existing prior to the newer `<plugin_name>_<setting_name>` parsing convention. Since adding that newer convention, I think we have seen this convention go mainstream for most use cases, and we run into problems with those legacy variable names being confusing user experience if the ingestion is not expected, and/or if the order of resolution is surprising to users. See #2984 for more info on this. ## Update (2022-01-24) Following from the notes in !2507+, we think that `env:` is serving a different function, and so this deprecation should only affect `env_aliases`. Further discussion re: `env:` can happen in !2507 and then we'll feed the findings/outcomes back into this issue. ## Best reason not to build This is a breaking change for users who are using the older (custom) environment variable names for their projects. That said, it should be a simple fix to _either_ add the alias back to the `meltano.yml` file (as the `value:` or mapped in `env:`/`env_aliases:`) or just use the newer `<plugin_name>_<setting_name>` variable names.
8
7,603,319
98,980,367
2021-12-14 03:36:02.867
Research spike: can targets be tested with a zero-length input stream?
In regards to applying a generic test to targets, there is some discussion regarding whether we would need to physically create a new table in the target in order to perform the test. Douwe had posited that it may be possible to test basic connectivity information by simply sending a zero-length input stream. I (AJ) hadn't considered that option before, and it seems a simple enough test/spike to perform before implementing a version that would necessarily create side-effects in data landing zones which are likely considered "production" by our users. Discussion here on a side-effect-free approach: https://gitlab.com/meltano/meltano/-/issues/1370#note_748076418 And "Option B" here: https://gitlab.com/meltano/meltano/-/issues/1370#note_747150933
1
7,603,319
98,904,180
2021-12-12 21:32:56.794
hardcoded decoding as ascii when log-level=debug
<!--- Please read this! Before opening a new issue, make sure to search for keywords in the issues filtered by the "regression" or "bug" label and verify the issue you're about to submit isn't a duplicate. If you are submitting an issue with a tap, please include: - account details - target details - entities selected with meltano select (if you have selected any entities), as the bug may be related to a specific entity - the full elt command you are running - full output of the meltano elt command. Logs can get pretty long, so you can add the full log as a snippet in the Meltano project and add a link in the issue. ---> ### What is the current *bug* behavior? I'm running ``` meltano --log-level=debug select tap-google-sheets --list --all ``` on a sheet that contains emoji characters, Meltano CLI crashes trying to decode UTF stream as ASCII. ### What is the expected *correct* behavior? Meltano shouldn't crash when handling non-ascii stream in debug mode ### Steps to reproduce retrieve a catalog that contains non-ascii characters, in debug mode ### Relevant logs and/or screenshots ``` Traceback (most recent call last): File "/home/matte/.local/pipx/venvs/meltano/lib/python3.9/site-packages/meltano/cli/__init__.py", line 53, in main raise CliError(str(err)) from err meltano.cli.utils.CliError: 'ascii' codec can't decode byte 0xc3 in position 83: ordinal not in range(128) ``` ### Possible fixes https://gitlab.com/meltano/meltano/-/blob/master/src/meltano/core/plugin/singer/tap.py#L45 `file_like_obj.write(data.decode("ascii") if write_str else data)` I guess the encoding should be read from the environment? ### Further regression test _Ensure we automatically catch similar issues in the future_ - [ ] Write additional adequate test cases and submit test results - [ ] Test results should be reviewed by a person from the team
2
7,603,319
98,849,479
2021-12-10 18:39:21.266
Multi-yaml Config does not respect the $MELTANO_PROJECT_ROOT env var
<!--- Please read this! Before opening a new issue, make sure to search for keywords in the issues filtered by the "regression" or "bug" label and verify the issue you're about to submit isn't a duplicate. If you are submitting an issue with a tap, please include: - account details - target details - entities selected with meltano select (if you have selected any entities), as the bug may be related to a specific entity - the full elt command you are running - full output of the meltano elt command. Logs can get pretty long, so you can add the full log as a snippet in the Meltano project and add a link in the issue. ---> ### What is the current *bug* behavior? Multi-yaml Config glob resolves relative to _current_ dir even when the Meltano Project root is overridden using `$MELTANO_PROJECT_ROOT` env var. ```yaml include_paths: - ./*.meltano.yml ``` ![Screenshot_2021-12-10_at_18.08.22](/uploads/1bad0dd929c8424f8288ed01762d3efc/Screenshot_2021-12-10_at_18.08.22.png) ### What is the expected *correct* behavior? Globs should be relative to `$MELTANO_PROJECT_ROOT` if it is provided. ### Steps to reproduce See example above 👆 ### Relevant logs and/or screenshots _Please use code blocks (\`\`\`) to format console output_ ### Possible fixes _If you can, link to the line of code that might be responsible for the problem or suggest a fix_ Probably need to do some path munging [here](https://gitlab.com/meltano/meltano/-/blob/master/src/meltano/core/project_files.py#L93) to produce absolute paths relative to the defined project root. ### Further regression test _Ensure we automatically catch similar issues in the future_ - [ ] Write additional adequate test cases and submit test results - [ ] Test results should be reviewed by a person from the team
4
7,603,319
98,775,777
2021-12-09 19:29:35.351
Pin meltano/tap-salesforce to tag v1.4.27
An update to allow schema selection [might soon be merged](https://gitlab.com/meltano/tap-salesforce/-/merge_requests/14) and it may not be considered a simple patch, so we should pin the current latest ([`v1.14.7`](https://gitlab.com/meltano/tap-salesforce/-/tags/v1.4.27)) tag so users migrate at their own pace to the newer version that supports schema selection.
2
7,603,319
98,720,552
2021-12-09 03:11:00.514
Pinned git tag adswerve/target-bigquery does not exist
<!--- Please read this! Before opening a new issue, make sure to search for keywords in the issues filtered by the "regression" or "bug" label and verify the issue you're about to submit isn't a duplicate. If you are submitting an issue with a tap, please include: - account details - target details - entities selected with meltano select (if you have selected any entities), as the bug may be related to a specific entity - the full elt command you are running - full output of the meltano elt command. Logs can get pretty long, so you can add the full log as a snippet in the Meltano project and add a link in the issue. ---> ### What is the current *bug* behavior? Users are not able to install the pinned version/tag of `adswerve/target-bigquery` ### What is the expected *correct* behavior? Users should be able to install `target-bigquery`. ### Steps to reproduce 1. Try installing the `adswerve` variant of `target-bigquery` with the default _discovered_ `pip_url`. ### Relevant logs and/or screenshots ```shell Loader 'target-bigquery' could not be installed: failed to install plugin 'target-bigquery'. Running command git clone --filter=blob:none -q https://github.com/adswerve/target-bigquery.git /private/var/folders/w4/qkk0hzgd7h59kkrlkxr9ly380000gq/T/pip-req-build-qi2be3sa WARNING: Did not find branch or tag 'v0.11.3', assuming revision or ref. Running command git checkout -q v0.11.3 error: pathspec 'v0.11.3' did not match any file(s) known to git WARNING: Discarding git+https://github.com/adswerve/target-bigquery.git@v0.11.3. Command errored out with exit status 1: git checkout -q v0.11.3 Check the logs for full command output. ERROR: Command errored out with exit status 1: git checkout -q v0.11.3 Check the logs for full command output. Failed to install plugin(s) ``` Slack conversation: https://meltano.slack.com/archives/C01TCRBBJD7/p1639015962380400 ### Possible fixes It's a typo, so pin the `0.11.3` tag instead. ### Further regression test - [ ] Write additional adequate test cases and submit test results - [ ] Test results should be reviewed by a person from the team
1
7,603,319
98,558,010
2021-12-06 22:48:32.028
Move to adapter-specific installations of dbt (Snowflake)
_Note: In addition to the below description, this proposal is intended to resolve https://gitlab.com/meltano/meltano/-/issues/3098+_ -------------------------- The dbt docs are now recommending users to install an adapter-specific version of dbt rather than the generic `dbt` or `dbt-core` packages. This is true even for mainstream packages like Postgres. https://docs.getdbt.com/dbt-cli/install/pip ## Proposal: use an adapter-specific plugin name These examples all use Snowflake as an example, but we would support 4 adapters at launch (same as supported today): - `dbt-bigquery` - `dbt-redshift` - `dbt-postgres` - `dbt-snowflake` ### Installation ```console > meltano add transformer dbt-snowflake Installing `dbt-snowflake`... Install completed. ``` ### New user experience 1. A new user installing `dbt-snowflake` for the first time, would following the installation instructions above: `meltano add transformer dbt-snowflake`. 2. After installing the dbt-snowflake transformer, they'd have 3 auto-created profiles in the auto-installed `profiles.yml` for `dbt`: 'prod', 'beta', and 'dev' - defaulting to `dev`. 3. Without any changes to `profiles.yml`, without setting any environment variables, and without needing to invoke a tap or target, they'd have their dbt environment configurable via the `config:` block in the `dbt-snowflake` plugin definition, inside `meltano.yml`. ### Migration experience 1. An existing Meltano user who already has the dbt plugin installed will perform a new install: `meltano install transformer dbt-snowflake`. 2. This will keep their existing `meltano.yml` file as-is and will likewise not affect their existing profiles file. 3. They will now have a new `dbt-snowflake` plugin and a new profiles file: `${MELTANO_PROJECT_ROOT}/transforms/profiles/snowflake/profiles.yml`. 4. The `dbt-snowflake` plugin will point to the _new_ profiles directory and the old `dbt` plugin will still point to the _old_ profiles directory. 5. As a one time config, the user will set any necessary config in `meltano.yml` in order to properly seed dbt profile info with the `dbt-snowflake` settings config. 6. Whenever the user is ready, they may optionally uninstall their older `dbt` plugin entry and delete the older `profiles.yml` file. (Side-by-side execution should work in the meanwhile.) ## As related to #3098 and missing special environment variables: If we do this right, it's very likely we can also solve #3098 at the same time as launching new adapter-specific dbt plugins. - All env variables currently injected by the `extractor` or `loader` will instead be declared as `settings` registered with `env:` mappings, with their values set via standard `config:` blocks. - Aka: No "magic" environment variables are needed, all settings go through through plugin config. - Migrating to adapter-specific dbt entries comes along with new adapter-specific `profiles.yml` files. - The migration from generic `dbt` plugin to the adapter specific ones is a one-time breaking change which allows us to flush the tech debt without breaking existing installations using the legacy `dbt` plugin definition. ### Messaging re `meltano run dbt:run` After releasing this, we'd recommend users to migrate to adapter-specific dbt plugins if they want to use `dbt:run` and other dbt-related invocations as part of `meltano run`. (Hence, a resolution to #3098.) This would be a one time and _voluntary_ breaking change, after which they'd (1) be on the latest version of dbt and (2) have a more resilient and robust `dbt` experience in Meltano overall. ## Python updates under the hood Internally: Any logic internal to Meltano core which is hardcoded to the `dbt` plugin name would need to be replaced with logic that accepts plugins with the name `dbt*`. ## Pointing to adapter-specific profiles folders Important to note is that dbt only accepts overrides for the _directory_ containing `profiles.yml`, and does not allow you to point directly to a single file. For this reason I'm proposing the files bundles have `profiles.yml` files with paths in the format `${MELTANO_PROJECT_ROOT}/transform/profiles/<adapter>/profiles.yml` and then `DBT_PROFILES_DIR` for `dbt-snowflake` (for instance) would default to the directory `${MELTANO_PROJECT_ROOT}/transform/profiles/snowflake`. ## Accompanying `files` Bundles: This should be reviewed and tested along with: - `files-dbt-biquery`: TODO - `files-dbt-postgres`: TODO - `files-dbt-redshift`: TODO - `files-dbt-snowflake`: https://gitlab.com/meltano/files-dbt-snowflake/-/merge_requests/2 ## Usability: Invocation via `dbt:run` vs `dbt-snowflake:run` If we install adapter-specific plugins as distinct `transformer` plugins, presumably this also makes their invocation slightly more verbose. - On the 'pros' side: this makes it very simple to support multiple dbt adapters in a single project, with no ambiguity. For instance: `dbt-snowflake:run` and `dbt-athena:run` would both "just work". - On the 'cons' side: invocation is more wordy, and any sample code like `meltano run dbt:run dbt:test` is no longer copy-paste-able to other projects. @kgpayne's suggestion in #3220+ could mitigate this. Ideally, if dev time were not a factor, we'd probably alias the first dbt installation as 'dbt' and then subsequent installations would _not_ be aliased. ## Previous proposals: <details><summary>Click to expand</summary> ### Option 1: Prompt during installation. (Replaced with 1B) <details><summary>Click to expand</summary> ```console > meltano add transformer dbt Please select from the following list: 1. Redshift 2. Snowflake 3. Postgres 4. BigQuery 5. SQLite To install more than one adapter, use commas as separators. > 5 Installing `dbt-sqlite`... Install completed. ``` ```console > meltano add transformer dbt --adapter=snowflake Installing `dbt-snowflake`... Install completed. ``` ### Option 2: Read from meltano environment. If we add the ability to specific a `primary_loader` to each environment, we can then check if the required adapter is installed in the `dbt` venv, installing it if not yet added. This could also be used to select or generate a proper profile from the target definition (more discussion about auto-managed profiles in #3104). </details>
8
7,764
29,688,087
2020-01-17 00:50:48.022
Update templates for website merge requests
Relates to &232 and #6109 Goals: * Automatically add relevant details if possible (labels, pings, etc) * Improve clarity of issues * Reduce grooming time * Ensure that all issues contain the [The Five W's](https://en.wikipedia.org/wiki/Five_Ws) : who, what, when, where, why, and how. * Request [MoSCoW](https://en.wikipedia.org/wiki/MoSCoW_method) information when possible. Implementation Details: - [ ] Update the default MR template. - [ ] Explore the use of checklists in MR templates.
1
7,764
29,682,716
2020-01-16 19:21:38.595
Make sure that we Capture Advanced Search in our feature and feature comparison pages
This was raised in the PM & Engineering meeting agenda. https://docs.google.com/document/d/1D9rW65d4w0UwSRw_0jJMRk5wAxdhAd4ynrHLbMMwIjo/edit#bookmark=id.nif5uubi5a0 > It is under Advanced Global Search https://about.gitlab.com/features/ > Sid: We need it to be added to the feature comparison page, let’s check if there are other items missing. > Sid: Which plan is it in? Can't find on https://about.gitlab.com/pricing/gitlab-com/feature-comparison/ => Add here. ### Tasks - [ ] Add elastic search to the feature comparison page - [ ] Check if there is anything else that is missing from the feature comparison page
1
7,764
29,644,971
2020-01-15 21:17:03.379
Propose new IA for Brand and Digital Handbook
## Goals Propose new IA for Brand and Digital Handbook content, including existing content and foreseeable content updates. May require migrating Brand and Digital content currently spread across other team pages to a new, centralized [Brand and Digital Handbook location](https://about.gitlab.com/handbook/marketing/brand-and-digital-design/). * Some content will apply to entire Brand and Digital team, such as shared labels, whereas other content will be specific to Brand or Design * Embrace Handbook IA conventions and only stray with strategic intent * Solve for integration with other handbook sections and pages (i.e. cross-links) * Make it easy for users looking for content in old locations to find that content in its new location (i.e. cross-links) * Optimize IA and content for stakeholders AND our team * Avoid duplicate content wherever possible * Announce change via appropriate channels ## Proposed tasks * [x] Team - Identify existing Brand and Digital content * [x] Shane & TBD Partner - Facilitate collaborative IA exercise in Mural or Figma, using digital post-its to represent existing and foreseeable content simply, and then organizing that content into a site map with arrows representing cross-links. * [x] @skarpeles - create a spreadsheet of which topics each person should handle * [x] Team review * [x] Implement in follow-on Issues/MRs ## How to contribute If you have additional ideas or comments about what's mentioned in this description, please add them to this issue! * Start a new thread for your idea/topic * Keep comments relevant to the thread they're in * As these discussions evolve, the brand team will review and add approved suggestions to the description and mark the thread with a :white_check_mark: ## Mural Board Link to Mural board of visual page hierarchy: https://app.mural.co/t/gitlab2474/m/gitlab2474/1579534915496/530305c8bd3e3e1831f08ad402b46926283f805c ## Spreadsheet of Pages Spreadsheet of pages to complete, and who is responsible for each: https://docs.google.com/spreadsheets/d/1_QCkndT-6mR0wfuGxiLrFeWHG5RyTN6rYdR3cJHOEsw/edit#gid=0 ## Google Doc of Content Migration https://docs.google.com/document/d/1Tt9kODKAcecCvXsc6msu5j4yr448c0S8I3Mgffp4NNE/edit @luke @brandon_lyon @skarpeles @monica_galletto @vicbell
1
7,764
29,494,181
2020-01-10 19:20:50.351
Cache `node_modules` for www-gitlab-com pipelines
# UPDATE NOTE: This MR will not be implemented. After looking at the initial numbers, the amount of additional time taken by the additional cache push/pull (~18500 files in `node_modules`, about ~8 seconds to push and ~8 seconds to pull) would eat up most of the gains caused by eliminating the `yarn install` (which takes ~20 seconds). This seems to indicate that the Yarn/NPM network download time is normally very fast (probably due to CDN/etc, and yarn optimizations), almost as fast as downloading and unzipping the files from disk. https://gitlab.com/gitlab-com/www-gitlab-com/issues/6358 still offers opportunities to do this caching via docker, though. We currently don't put the downloaded node_modules in the cache, like we do for the bundler vendor directory containing gems. This would probably be an easy and quick win to save 20-30 seconds, and also reduce the possibility of flaky builds (if the download happens to fail for network/etc issues - I'm not sure if we are using a local pass-through caching proxy or not) POTENTIAL IMPROVEMENT: Small, probably 20-30 seconds for jobs which need this. PROS: * Easy to implement, low risk, same as we are already doing for gems
1
7,764
29,437,529
2020-01-09 10:26:51.545
Disable all remaining unnecessary jobs in pipeline when merging to master
Similar to https://gitlab.com/gitlab-com/www-gitlab-com/issues/6161 we should disable all remaining quality and spec related jobs when running a pipeline against master, because they are guaranteed to have already run as part of a Merge Request. The only jobs to run for a merge to master should be build and deploy.
1
7,764
29,358,963
2020-01-07 08:35:44.768
Disable unnecessary jobs in pipeline when merging to master
As discussed in https://gitlab.com/gitlab-com/www-gitlab-com/issues/5983#note_267627509 we currently run the code_quality and dependency_scanning jobs for both MRs and merges to master. Since no direct commits to master is allowed and MRs can't be merged until the pipeline passes it is sufficient to only run these two jobs on the MR pipeline. This will [improve pipeline speed](https://app.periscopedata.com/app/gitlab/561277) by eliminating jobs on master which only need to run once for each commit, and should have already been run as part of a merge request. See also more similar follow-on work in https://gitlab.com/gitlab-com/www-gitlab-com/issues/6190
1
7,764
29,336,665
2020-01-06 15:52:03.947
Propose an A/B Testing Framework for about.gitlab.com (Spike)
## Goals Propose an A/B testing framework for testing conversion MVCs on about.gitlab.com so we can iterate, learn and increase conversions faster - and with more apples to apples data than comparing time periods. ## Requirements * **Collaborate with appropriate stakeholders on MVC A/B test solution** ## Proposed Tasks * Collaborate to identify potential requirements * Set MVC requirements * Collaborate on brainstorming technology solutions (consider build vs. buy) * Propose a solution ## Follow-on Issue Create an A/B testing framework for testing conversion MVCs on about.gitlab.com so we can iterate, learn and increase conversions faster - and with more apples to apples data than comparing time periods. * Co-design, develop and test solution on conversion MVC @brandon_lyon @laurenbarker @shanerice @jjcordz @s_awezec @jackib
3
7,764
29,315,321
2020-01-06 05:36:36.472
Demo Landing Page Conversion MVC
## Goals Increase Demo landing page conversion rate on about.gitlab.com with collaborative, data-driven MVC. ## Requirements Must Have * **Co-design an improved and compliant solution** - Co-design a conversion-driven MVC that meets or exceeds the design and usability the current state solution. The MVC should be informed by conversion best practices, marketing strategy and brand and website standards. Consider page speed, content and form optimization. * **Set KPIs** - Set MVC KPIs in order to test the positive and negative impacts of your change - especially marketing KPIs. How might your changes negatively affect experiences and metrics? * **Validate performance** If testing proves the MVC is positive change, share demonstrable data, merge, and ensure health monitoring and reporting. * **Share change events** - Document and share change events and results with relevant GitLab teams. Should Have Could Have Wont Have * **Non-cohesive demo experience** - Ensure the new landing page experience is aligned to the overall demo workflow (i.e. continuous content and design experience). ## KPIs Design KR: Increase Demo landing page conversion rate by 50%. Current State Benchmark: Conversion rate is 9.5% (23,821 unique pageviews QTD; 2,272 unique submit events) ## Proposed Tasks * [ ] WIP: Conversion audit & recommendations (Shane) * [x] KPI's * [ ] Planning * [ ] MVC Requirements * [x] Iterative Co-Design * [x] Build the page @skarpeles * [x] Test * [ ] If success: Merge, monitor and report * [ ] Create follow-on issues, as needed. @brandon_lyon @skarpeles @shanerice @jjcordz <!-- Please leave the label below on this issue -->
4
7,764
29,310,187
2020-01-05 23:28:12.894
Home Page Conversion MVC
## Goals Increase Home page conversion rate on about.gitlab.com with collaborative, data-driven MVC. ## Requirements * **Co-design an informed solution** - Co-design a conversion-driven MVC that meets or exceeds the design and usability the current state solution. The MVC should be informed by conversion best practices, marketing strategy and brand and website standards. * **Set KPIs** - Set MVC KPIs in order to test the positive and negative impacts of your change - especially marketing KPIs. How might your changes negatively affect experiences and metrics? * **Validate performance** If testing proves the MVC is positive change, share demonstrable data, merge, and ensure health monitoring and reporting. * **Share change events** - Document and share change events and results with relevant GitLab teams. Should Have ## Proposed Tasks * [x] @sbouchard1 Conversion audit & recommendations * [ ] @shanerice KPI's * [ ] Planning * [ ] MVC Requirements * [ ] Iterative Co-Design * [ ] Development @skarpeles * [ ] Test * [ ] If success: Merge, monitor and report * [ ] Create follow-on issues, as needed. @brandon_lyon @skarpeles @shanerice @jjcordz <!-- Please leave the label below on this issue -->
4
7,764
29,244,082
2020-01-02 18:01:24.330
GitHub and Azure DevOps links should go to sections on comparison pages
### Acceptance Criteria: The logos on https://about.gitlab.com/devops-tools/ should link to related tabs on the resulting page. - [x] Clicking on the "Azure devops" logo under the "create" column should link to `https://about.gitlab.com/devops-tools/azure-devops-vs-gitlab.html#create` - [x] URL hashes should be manually navigable, ie typing in the URL manually links to that spot. For now this will only apply to two rows: GitHub and Azure. ### Problem Statement: ``` via @tbarr The GitHub and Azure DevOps logos link to this page: https://about.gitlab.com/devops-tools/github-vs-gitlab.html or this page: https://about.gitlab.com/devops-tools/azure-devops-vs-gitlab.html The logos in the Comparison chart should deep-link into the section that is relevant. For example, if you click on the GitHub logo under PACKAGE, it should take you to: https://about.gitlab.com/devops-tools/github-vs-gitlab.html#package There also seems to be a problem that even if you paste that link, it doesn't take you to package until you click. cc @mskumar ```
2
7,764
28,955,401
2019-12-20 15:55:24.511
Add CTA to Global Website Nav
## Goals Increase online conversions by adding a call-to-action (CTA) element to the about.gitlab.com global nav. ## Requirements Must have * **Stand out CTA element** - Next to the GitLab logo, the CTA is a stand out element on the global nav. * **Co-design an informed solution** - Co-design a conversion-driven MVC that meets or exceeds the design and usability the current state solution. The MVC should be informed by conversion best practices, marketing strategy, and brand and website standards. * **Stand out CTA element** - Pick CTA to try (will impact KPIs) * **Set KPIs** - Set MVC KPIs in order to test the positive and negative impacts of your change - especially marketing KPIs. For example, if changing other elements is required to fit the new CTA, how might that negatively impact other experiences and metrics? * **Validate performance** If testing proves the MVC is positive change, share demonstrable data, merge, and implement health monitoring and reporting. * **Share change events** - Document and share change events and results with relevant GitLab teams. Should have * **Ability to opt-out of CTA** - For example, an important content funnel where the primary goal is the content download. ## Tasks * [x] @shanerice KPIs (add 5,600 `/free-trial/` pageviews per month) * [x] WIP: Co-design * [x] Dev * [ ] @shanerice @brandon_lyon Test @s_awezec @matejlatin @brandon_lyon @shanerice @jjcordz @skarpeles
4
7,764
28,649,592
2019-12-14 01:18:33.903
Add tests and validation logic to greenhouse integration
The Greenhouse integration code is brittle. It has broken all builds on `www-gitlab-com`- see slack thread below. Per @stanhu 's suggestion, it needs to be improved and tests need to be added. In particular: https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/helpers/jobs_helpers.rb cc @brandon_lyon ### Slack thread <details> <summary> Conversation on slack </summary> From this thread in slack: https://gitlab.slack.com/archives/CETG54GQ0/p1576276480021000 Thread is-this-known Thread is-this-known Brandon Lyon 1 hour ago Scrolling through the error, it seems to happen around `block in show_childs' on public/jobs/apply/index. I'll take a peek at the code and see if I notice anything unusual to do with child elements. (edited) Brandon Lyon 1 hour ago Looks related to the partial builds process, at least that's the test that's failing ( build_proxy_resource ) Brandon Lyon 1 hour ago Yeah something to do with the data being pulled from greenhouse possibly. The job apply template appears to source its data through jobs_listing.rb which sources the data from the greenhouse_io gem Brandon Lyon 1 hour ago I'm trying to run the test locally to see if it fails or passes from my machine :thank-you: 1 Brendan 1 hour ago A property to toggle wouldn’t be super hard. I can take a swing at that :dancingpenguin: 1 joshua 1 hour ago We can’t break our jobs site though Brandon Lyon 1 hour ago Yeah the test fails on my local machine in the same spot Brendan 1 hour ago Is the jobs site working? Brandon Lyon 1 hour ago On another tangent, the job listing library hasn't been updated in 4 months so that's probably not the file responsible. The job page template hasn't been updated in weeks so I don't think that's it either. Brandon Lyon 1 hour ago It looks like there's a difference between jobs appearing in greenhouse and jobs appearing on-site at the moment. I'm not sure what the cause is for the difference. William 1 hour ago Local build also fails for me in the same spot Brandon Lyon 1 hour ago I've exhausted my investigatory skills and knowledge of the site. It's probably time to call in more knowledgeable people. The failing line numbers in question appear to be around one of these two spots but I'm not sure which: https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/source/jobs/apply/template.html.haml#L37 https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/source/jobs/apply/template.html.haml#L48 (edited) Brandon Lyon 1 hour ago Actually I do have a theory I can test first. William 1 hour ago I’m looking at the same 2 lines… looks like Tony from ROIDNA built the template https://gitlab.com/gitlab-com/www-gitlab-com/commit/601c8ccbf90c813adcc047270ebbef32ca832f1c @stanhu @rspeicher any thoughts on troubleshooting the show_childs method? GitLabGitLab Resolve "Jobs Page Update Supporting Subcategory Listings" (601c8ccb) · Commits · GitLab.com / www-gitlab-com Source for https://about.gitlab.com/ Brandon Lyon 43 minutes ago My theory didn't pan out stanhu 42 minutes ago sounds like res.first is nil for some reason. Let's see if we can run this locally Brandon Lyon 41 minutes ago code name sounds like first result nil? Darren Murph:car: 38 minutes ago (Thanks all who are working on this by the way, much appreciated :collaboration-value: ) :collaboration-value: 1 Brandon Lyon 30 minutes ago The show_childs method has the following options def show_childs(data, item, arr, show_list, depth, dept_id, result, teams) (edited) stanhu 29 minutes ago I think I have a fix. I don't completely understand the data, but we're just getting a single blank array under the engineering department job listing for one of the listings (edited) :yay: 2 :bulb: 1 :star2: 1 Brandon Lyon 27 minutes ago I suspected the data but wasn't sure how to test it. Although in retrospect I probably could have looked at greenhouses documentation to figure out their API and tried postman. (edited) stanhu 27 minutes ago whatever child ID 4034708002 is Darren Murph:car: 27 minutes ago When it’s all said and done, sounds like we’ll chalk it up to excessive greenhouse gas emissions mucking things up :lol: 1 Brandon Lyon 26 minutes ago Out of curiosity would the fix be in job_helpers.rb? William 26 minutes ago I suspect that there’s either a bug in greenhouse, or a job was posted where there’s an expected/required field and it was omitted. (edited) :100: 1 Brandon Lyon 25 minutes ago Interesting, going to the URL manually says that job is not found https://boards.greenhouse.io/gitlab/jobs/4034708002 stanhu 22 minutes ago not sure if that's an actual job ID stanhu 22 minutes ago Ironically, it's barfing on child_id 4034708002 for https://boards.greenhouse.io/gitlab/jobs/4465197002 boards.greenhouse.io Backend Engineer, Static Site Editor Remote :rolling_on_the_floor_laughing: 2 Brandon Lyon 21 minutes ago ah gotcha joshua 20 minutes ago It knows stanhu 19 minutes ago pushing up a merge request now. This code needs serious improvements and testing :slightly_smiling_face: stanhu 19 minutes ago I think this is Greenhouse's way of saying we need to hire someone to maintain this page Brandon Lyon 17 minutes ago I pinged peopleops to see if they have any ideas because the greenhouse listing does look a bit different from some others stanhu 16 minutes ago https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/36883/diffs GitLabGitLab Fix broken Greenhouse job generation (!36883) · Merge Requests · GitLab.com / www-gitlab-com Child ID 4034708002 did not exist, and the code did not handle this properly. Author Stan Hu Assignee Stan Hu :thank-you: 2 William 8 minutes ago Looks like it choked on rubocop - I committed the suggested fix </details>
2
7,764
28,639,095
2019-12-13 17:50:04.691
Remove use of alt-link and ensure homepage displays appropriate category links
From [scaling agenda](https://docs.google.com/document/d/1nMJzrDfG7C14WP5v7P226oPFuXkwqIk7bdIT8ai0DNU/edit#bookmark=id.yqcc4osgu9vm): > KENNY EricB Sid: Can we ensure that every shipped feature in the table on https://about.gitlab.com/ links to the docs? Usability testing linked to https://about.gitlab.com/direction/verify/usability_testing/ so please test others. > EricB: I’ll take this one for the team and get a MR out today > Here’s the MR: https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/35049 > EricB: I’ve asked Todd B to merge as it changes our homepage > Reverted in https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/36826 > Kenny: We need to adjust the logic for how the link is selected on the homepage to select Product link first, then docs, then vision based on availability and remove the use of the alt-link. > Also give error if it is no longer planned but there is no docs link. > Kenny: Thumbs up, I’ll add the lint. ## Tasks * [x] Banish Alt_Link - https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/36915 * [x] Add CI Check on categories.yml file - https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/37335
1
7,764
28,332,457
2019-12-11 22:01:26.769
Update Periscope handbook page with Data Team issue template usage
This issue tracks the work done to the handbook for the related issues
1
7,764
28,287,210
2019-12-10 20:40:43.305
Increase width of org chart
### Problem to solve As GitLab grows more layers of management, our fixed width org chart page is cutting off certain individuals. ### Further details ![image](/uploads/4b07470c82bd298959e4258d43a0d74d/image.png) ### Proposal Increase the width of the org chart page or allow it be side scrolled.
1
7,764
28,276,378
2019-12-10 15:24:45.661
Add tweet button when highlighting text in the handbook
### Problem to solve In order to increase reach of the GitLab handbook, we should make it easy to tweet out highlighted text. ### Proposal When a user highlights text, let's pop up a twitter button. When a user clicks that button it takes them to a separate page to tweet out the quote with a link back to the handbook page where the text was. [Medium](https://medium.com/darklang/how-dark-deploys-code-in-50ms-771c6dd60671) has a similar feature. ![image](/uploads/2bc4afa929f2ff19479ad66ccd1cc1a3/image.png) ### Implementation details The share link to use is, `https://twitter.com/intent/tweet?url=$URL&text=$text&hashtags=$tags`, where: 1. `$url` is a URI encoded string of the handbook page the user is currently on 1. `$text` is a URI encoded string of the text the user has selected 1. `$tags` is a comma separated list of the hashtags to add to the tweet. Propose defaulting to `gitlab,handbook`
3
7,764
28,151,002
2019-12-09 20:48:59.595
Create handbook page which documents all steps in the existing handbook build, test, and deploy process
### Problem to solve It is hard to understand which steps are happening in the build, test, and deploy process of the handbook. ### Proposal Let's document the steps as a handbook page.
2
7,764
27,056,389
2019-11-14 15:34:05.000
Remove the feature flag for upstream date updates
Remove the feature flag for epic upstream dates update from https://gitlab.com/gitlab-org/gitlab/blob/master/ee/app/services/epics/update_dates_service.rb#L23
1
7,764
29,981,332
2019-11-07 16:30:03.630
Investigate open source static site editors for use with the GitLab handbook
### Problem to solve Editing the handbook for non-tech users is harder than it needs to be. Static site editors provide more WYSIWYG editing experiences. ### Proposal TBD
1
7,764
26,539,898
2019-10-31 21:06:56.308
AUP Layout change and minor update
### Description Currently section 3 of the [Gitlab Website Terms of Service](https://about.gitlab.com/terms/#gitlab_com) is not formatted in a way that is easy to read and does not include the term `Spam`. Checklist when modifying an existing page: - [ ] What is the goal of changing the page? - [ ] What metrics are we trying to affect? - [ ] How will we decide if the change was successful or not? - [ ] Would we revert the changes if we decided that it was not a success? - [ ] Make sure events are reflected in Google Analytics/Marketo if the page is changed - [ ] Make sure redirection is done if we change the page so email newsletters do not contain dead link ### Proposal Update the AUP to make it easier to read and include the term `Spam`. Proposed change/format below: ### Acceptable Use of Your Account and the Website By accepting this Agreement you agree not to use, encourage, promote, or facilitate others to use the Website or your account in a way that is harmful or disruptive to others ("Acceptable Use"). Examples of harmful or disruptive use include, but are not limited to: * engaging in illegal or fraudulent activities. * infringing upon others' intellectual property rights. * distributing harmful or offensive content that is defamatory, obscene, abusive, an invasion of privacy or harassing. * the distribution of malicious/commercial Spam * violating the security or integrity of any computer, network or communications system. * taxing Gitlab resources with activities such as cryptocurrency mining. * conducting [external scans](https://about.gitlab.com/security/#external-testing) of any kind against GitLab.com infrastructure without written permission from GitLab. Furthermore, account name squatting is prohibited by GitLab. Account names on GitLab are administered to users on a first-come, first-serve basis. Accordingly, account names cannot be held or remain inactive for future use. Any attempts to purchase, solicit, or sell account names in any form may result in the permanent suspension of the account. GitLab reserves the right to remove, rename, or close inactive accounts at its discretion. If you believe that an account is in violation of these terms, please visit our [Abuse Reports](https://docs.gitlab.com/ee/user/abuse_reports.html) page for reporting instructions. ### Links / references https://about.gitlab.com/terms/#gitlab_com cc @gl-website cc @jhurewitz @cciresi
1
7,764
26,165,001
2019-10-21 15:24:44.282
How to update CTAs in existing blog posts
Gang, we've promoted Brooklyn and London and now need to push SF but we have a whole lot of blog posts with CTAs to finished events. It would be nice to see if we could find a way to automatically update the CTAs to reflect current priorities. @gl-website @brandon_lyon cc @erica
2
7,764
26,089,422
2019-10-18 16:21:26.043
Wide tables are causing page display issues for the about.gitlab.com on mobile
<!--Bug Report--> <!--Please remember this are suggestions. Any extra information you provide is beneficial.--> <!-- Edit this file at : https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/.gitlab/issue_templates/Bug-Report.md --> <!-- Template code owner: @brandon_lyon, marketing web designer/developer --> ### What is/are the relevant URLs or emails? Any page with a table wider than a mobile device, e.g.: * https://about.gitlab.com/handbook/engineering/security/vulnerability_management/ * https://about.gitlab.com/handbook/product/product-management/#product-management-career-development-framework * https://about.gitlab.com/devops-tools/azure_devops/azure-devops-overview/ ### Briefly describe the bug Pages with wide tables cause the responsive mobile view to be wider than the header, and thus scroll horizontally ### What are the steps to reproduce the bug * Use a on a narrow mobile device, e.g. iPhone X. * Go to a page which has a wide table. E.g. one of URLs above ### What is the observed behavior? Be specific. * Zoom out/scroll to the right, see grey area * Scroll down to table, and see that it is the cause of the too-wide behavior ### What is the expected behavior? Be specific. * Table is sized to device width, and page is not scrollable horizontally. ### Please provide any relevant screenshots ![mobile_rendering](/uploads/2442980a31d45f72e0e0019c71ab7959/mobile_rendering.png) For reference - here is what Desktop looks like: ![Screen_Shot_2019-10-18_at_12.31.10_PM](/uploads/1a3b73f049fa857af705d3abff4e4891/Screen_Shot_2019-10-18_at_12.31.10_PM.png) ### What is your window size, browser, operating system, and versions Safari 13, iOS 13.1 414px by 896px Also tested on an Android device ### What device are you using * iPhone 11 pro max * iPhone X in Chrome developer tools responsive emulator
2
7,764
25,706,100
2019-10-08 01:25:51.758
Add Periscope Charts to Engineering Productivity PIs
We should add Periscope charts to the Engineering Productivity team KPIs The following was added with https://gitlab.com/gitlab-com/www-gitlab-com/commit/f192317d7669dd70fc9b70b4d8219245af4472b7 ``` periscope_data: chart: 6114177 dashboard: 463858 embed: v2 ```
1
7,764
25,127,034
2019-09-23 17:54:15.208
Add External Pipeline for Marketing Site
### Problem to solve Local development of this repo is slow and cumbersome. Production build times for Middleman are also slow. ### Proposal Let's move frontend asset builds out of Middleman and into an `external_pipeline`. This will allow Middleman to do what it does best - compile the HTML. For our `external_pipeline`, lets have it complete the following tasks: - preprocess scss - minify css - minify js - bundle js - sourcemaps - copy web fonts, icons - image resizing and processing* (depending on speed) - browser reload (local dev) (local dev) ### What does success look like, and how can we measure that? Faster local development for developers. Faster deployment times. Reduced publishing time for blog, handbook, and marketing webpages. ### Iterative Approach 1. Process Stylsheets with Webpack first, introducing build to system 1. Monitor and fix edgecases 1. Add javascript bundling to Webpack second 1. Monitor and fix egecases 1. Migrate rollup to Webpack for vue component bundles 1. Monitor and fix edgecases 1. Add image process to Webpack cc @gl-website
8
7,764
24,977,120
2019-09-19 07:51:58.581
Add a Collapse All / Expand all button to the company org chart
Add a button at the top of the org chart that allows the user to toggle between collapsing/expanding all the nodes by clicking on the button. Default org chart state should be to be fully expanded. Button text: - If all nodes are expanded: Collapse all - If any node is collapsed: Expand all Reference: https://gitlab.slack.com/archives/C3MAZRM8W/p1568416800345400?thread_ts=1568366463.339100&cid=C3MAZRM8W
1
7,764
23,937,187
2019-08-19 20:53:10.463
Finish aligning PIs with Job Families (Infrastructure::Delivery)
While working on #5041, I noticed we don't seem to have specific specialties defines for Backend Engineer, Delivery and Engineering Manager, Delivery. We need to sort out said roles and link their appropriate PIs.
2
7,764
23,359,700
2019-07-31 18:42:37.555
FY20-Q3 Infrastructure IACV OKR: Raise GitLab.com Availability from 96.64% to a consistent 99.95% => 0%
* [ ] Key result: MTTD, MTTR, MTBF, and MTTP PIs to be at OK health and a minimum of level 2 maturity `=> 0%, comment` * [ ] Key result: 100% of services have fully defined and observable service levels, error budgets, and capacity planning `=> 0%, comment` * [ ] Key result: 50% of services running on Kubernetes `=> 0%, comment`
8
7,764
23,265,646
2019-07-29 13:56:19.921
Add Plan team section to Product
# Why * There is a Plan engineering team section, but not holistic plan team section to collaborate on cross-functional processes. # What * Add page and create first pass content.
1
7,764
23,161,389
2019-07-25 14:14:08.763
What is accessibility testing and why is no one doing it?
### Proposal Assigned to @skassabian as this was the jumping off point for her survey on accessibility. I'm on unclear on time frame but put June 2020 as a placeholder. ### Checklist - [ ] If you have a specific publish date in mind (please allow 3 weeks' lead time) - [ ] Include it in the issue title - [ ] Give the issue a due date of a minimum of 2 working days prior - [ ] If your post is likely to be >2,000 words, give a due date of a minimum of 4 working days prior - [ ] If [time sensitive](https://about.gitlab.com/handbook/marketing/blog/#time-sensitive-posts-official-announcements-company-updates-breaking-changes-and-news) - [ ] Added ~"priority" label and supplied rationale in description - [ ] Mentioned `@rebecca` to give her a heads up ASAP - [ ] If wide-spread customer impacting or sensitive - [ ] Add ~"sensitive" label - [ ] Mention `@nwoods` to give her a heads up ASAP - [ ] If the post is about one of GitLab's Technology Partners, including integration partners, mention `@TinaS` and see the [blog handbook for more on third-party posts](https://about.gitlab.com/handbook/marketing/blog/index.html#third-party-posts) - [ ] Indicate if supporting an event or campaign - [ ] Indicate if this post requires additional approval from internal or external parties before publishing (please provide details in a comment)
3
7,764
21,879,252
2019-06-13 14:25:16.421
Encode devops stages parent/child structure in either categories.yml or stages.yml
With the process of building our dashboards and label migration. We should store the single source of truth on devops stage parent-child structure in the handbook project. Context: * https://gitlab.com/gitlab-org/quality/triage-ops/issues/172#mapping * https://quality-dashboard.gitlap.com/groups/gitlab-org/stages Comments from the dev metrics meeting. > Jason: Idea is to encode this in data in the handbook. => Lyle: isn’t it categories.yml and stages.yml. => Jason: There is no label field. We should extend it.
3
7,764
77,860,388
2019-04-18 17:15:53.908
Quality Engineering KPI - Build bug first triage (with stage/group and severity) metric into Periscope
### Overview Measure our speed to triage new issues. We currently have ~400 new issues every week in CE/EE. We need to go through all of them and identify valid issues and high severity bugs. ## Measurement definition The duration from issue creation to partial triage time for all gitlab-org/quality/team-tasks~2278648 issues in `gitlab-org/gitlab`. This will be visualized as a Time Series chart showing the average duration by month. Next steps: - [x] Define an automated mechanism to detect first triage of a GitLab team member. - starting with description in https://gitlab.com/gitlab-org/quality/team-tasks/issues/136#note_211116724 - [ ] Define measure mechanism and establish threshold. - [ ] Fan-out triaging to all of engineering. First triage is mostly on the Quality Dept Eng Prod team. - [ ] Expand this into first scheduled milestone. We need to build this in Periscope and respect/update https://about.gitlab.com/handbook/engineering/quality/performance-indicators/. Once finalized, the chart should go into https://app.periscopedata.com/app/gitlab/516343/Quality-KPIs.
3
7,764
20,078,014
2019-04-15 16:21:48.461
Remove Stage Dependency on Competitor Field
@atkach1 Can you take this on? Please remove the field dependency on the Competitor object. Right now, Competitor is controlled by the Stage field, when it should not. However, we do want a validation rule in place for any deal in Stage 2 or higher that requires a Competitor, except for Web Portal deals.
1
7,764
20,053,287
2019-04-15 07:24:30.956
Geo blog post: what we've learned about FDW
We could write a nice technical blog post about how we use FDW, how we set it up, which challenges we encountered, and what we did to improve performance. Also writing about our ActiveRecord model could be interesting. But since we seem to be moving away from it, it might be better to just list the lessons we've learned from it. cc `@geo-team`
3
7,764
19,272,292
2019-03-19 23:49:48.496
update python style guide
related to issue: https://gitlab.com/gitlab-data/analytics/issues/1003
1
7,764
19,089,877
2019-03-13 23:24:20.905
Geo: Write blog post "How to install GitLab 11.9 with Geo on AWS" tutorial
- [ ] Follow up https://gitlab.com/gitlab-org/gitlab-ee/issues/7360#note_150168367: >>> I had an idea. Do we need some kind of initiative like DigitalOcean seems to have for writing tutorial-style blog posts? Similar to https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-gitlab-on-ubuntu-18-04. `How to install GitLab 11.9 with Geo on AWS` sounds attractive. We can only do so much to make our docs apply generally *and* add cloud-provider-specific exceptions *and* keep them up-to-date. I'd like to avoid making our general docs more confusing with too much specificity. But without specificity, the sysadmin needs to learn how the whole system works. Blog posts like this acknowledge this problem. They are hyper-specific. They go out-of-date, but the type of people installing GitLab should understand that, and should be able to adapt these tutorials to their purposes until a better one comes along that bumps the old one down the Google results. Would a blog post resolve this issue? >>>
3
7,764
17,658,350
2019-01-25 10:57:29.376
Designing with a vision in mind
<!-- See https://about.gitlab.com/handbook/marketing/blog/ for details on the blog process --> ### Proposal Write about how we set our vision for the things we design, how it adapts through time but most importantly, how it guides us towards better solutions. ### Checklist - [ ] Due date and milestone added for the desired publish date - [ ] If [time sensitive](https://about.gitlab.com/handbook/marketing/blog/#time-sensitive-posts-official-announcements-company-updates-breaking-changes-and-news) - [ ] Added ~"priority" label - [ ] Mentioned `@rebecca` to give her a heads up ASAP
2
7,764
17,281,234
2019-01-11 21:12:16.144
"GitLab workflow" link at the "Engineering workflow" page seems to be dead
The [engineering workflow page](https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/source/handbook/engineering/workflow/index.html.md) refers to the "GitLab workflow" (at [this line](https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/source/handbook/engineering/workflow/index.html.md#L103) and more). But the corresponding link `/handbook/communication/#gitlab-workflow` is dead - no such anchor at the ["Communication"](https://about.gitlab.com/handbook/communication/) page of the handbook. What was meant by this link? Should this reference be removed or updated with anything else?
1
7,764
16,199,303
2018-11-28 22:35:11.373
Add additional categories to the Monitor Comparison
Add additional categories to the Monitor Comparison
10
7,764
16,198,959
2018-11-28 22:01:47.714
IBM Monitor Competitor Page
IBM APM Monitor Competitor Page
10
7,764
16,165,368
2018-11-27 23:58:17.118
Broadcom (CA) APM Monitor Competitor Page
Broadcom (CA) APM Competitor Page
10
7,764
16,163,761
2018-11-27 21:22:47.098
Datadog Monitor Competitor Page
Datadog Monitor Competitor Page
10
7,764
14,983,229
2018-10-16 09:11:51.873
Geo blog post: Repository verification
Write an article explaining the thinking process behind the Repository Verification feature. Ideally should cover: - Problem it solves - Reasoning and thinking process that leads us to the decision to make it the way it is - Evolution since the first iteration - Performance vs Accuracy - Visual representation of important parts of the algorithm
5
7,764
14,707,232
2018-10-05 02:27:48.729
Manually select related posts
Add a setting to the blog front matter so that related posts can be chosen manually. The setting should be `related:` and take a comma-separated list of one, two, or three relative URLs. Depends on https://gitlab.com/gitlab-com/www-gitlab-com/issues/2450 cc @rebecca
2
7,764
14,707,104
2018-10-05 02:13:27.278
Show title on previous and next posts
At the bottom of a blog post are "next" and "previous" links: ![image](/uploads/a5cd29478d3db1c8e397628c51147b50/image.png) Update so that they include the title of the blog post. ## Todo - [ ] Make a mockup of what the previous/next button should look like - [ ] Implement the logic to add the title - [ ] Build the CSS to make the buttons match the mockup cc @rebecca
2
7,764
14,621,265
2018-10-02 07:51:56.648
Add an email signature example to the tools-and-tips page
### Description In the `tools-and-tips` section I want to add an email signature example to make it easier for the reader to setup a GitLab email signature. Checklist when modifying an existing page: - [ ] What is the goal of changing the page? **To make it easier for the reader to setup a GitLab email signature.** - [ ] Would we revert the changes if we decided that it was not a success? **Yes** ### Proposal ![Screenshot_2018-10-02_at_09.47.44](/uploads/a85d888730506c258bb248bda5d74643/Screenshot_2018-10-02_at_09.47.44.png) ### Links / references https://about.gitlab.com/handbook/tools-and-tips/#email-signature
1
7,764
14,620,587
2018-10-02 07:25:33.152
Fix spelling errors on tools-and-tips page
### Description I found some spelling errors while reading throigh the `tools-and-tips` section of the handbook. Checklist when modifying an existing page: - [ ] What is the goal of changing the page? **To fix spelling errors** - [ ] How will we decide if the change was successful or not? **Check for spelling errors** - [ ] Would we revert the changes if we decided that it was not a success? **Yes** ### Proposal stereoids -> steroids manpulations -> manipulations dirctory -> directory ### Links / references https://about.gitlab.com/handbook/tools-and-tips/
1
7,764
5,988,498
2017-07-05 23:48:49.195
Borken image of DT on Team Page due to filename extension
Saved as .jpg but entered as .png. doh!
1
7,764
5,444,968
2017-05-18 23:53:38.973
GitLab Issue
Hello World! :wave: This is my issue's description, written in markdown (GitLab Flavored Markdown). ### This is an `<h3>` > _Let's quote someone here_ Add a task list: - [ ] Task 1 - [ ] Task 2 Mention merge requests (https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1784) and issues (https://gitlab.com/gitlab-org/gitlab-ee/issues/2101) and hover over them to see their titles. Invite users to collaborate with `@mentions`: @marcia
3
7,764
2,589,860
2016-06-23 14:36:37.432
Communicate between Programmers.
* For medium sized issues there will always be a frontend or backend. * For bigger issues there should be a whole team. UX, Frontend, Backend, Product * If you are starting on a new feature that is sizable you should expect at least a FE and BE programmer. If for some reason there isn’t than make sure you ask why there isn’t. If it is a bigger (direction/large customer) issue then expect a whole team. * Make a call with your team when you start. * Communicate throughout the whole process. So that when the MR comes in there will be less questions in the end. Questions can be brought up in the beginning and during the process.
1
7,764
2,340,172
2016-06-01 16:13:57.663
Add Apply button to description on job
Currently to apply to a job you can't do it to a description. Add the apply button to the description. cc @JobV @markpundsack @iamphill @annabeldunstone
1
7,764
1,469,501
2016-04-11 08:57:01.694
404 error on GitLab Features PDF
Twitter: http://www.twitter.com/ccellar/status/718398387238924289 Clicking on the `Download the feature comparison table as a PDF` link on the bottom of the about.gitlab.com/features page returns a 404 error
1
7,764
1,227,378
2016-02-18 01:47:53.837
Feature to Feature Comparison to BitBucket
Looking to establish a page or section on gitlab.com with an apples-to-apples comparison between GitLab EE and Atlasssian products. The goal is to have a more direct comparison to features and the advantages we hold over Atlassian. The current comparison here(https://about.gitlab.com/comparison/#gitlab-vs-bitbucket-server) is a bit outdated according to conversations with prospects, and does not highlight the feature-to-feature comparisons in depth. The goal is for the sales team to be able to send a link(s) to prospects/customers considering BitBucket so they can clearly see the differences in more detail. I've talked with Job about this this morning and he is putting a few things together to update the website. Thoughts are always welcome! @ChadMalchow @AshleyS @jwrede @ronstroschein @sytses @malessio @balameb @JobV
7
7,764
1,111,849
2016-01-29 18:56:47.369
Remove 3d card flip
@JobV Let's remove the 3d card flip from the profile cards and replace it with an actual link to a user's card. > deprecated feature!
3
7,764
995,533
2016-01-05 18:50:24.135
Changing Enterprise Trial Duration from 30 days to 14 days
Hey Ashley, Can you please reduce the number of days for trails to 14? Thanks!
7
7,764
984,482
2016-01-01 18:55:51.941
Document merge request review workflow (endbosses)
We should write in handbook that we have endbosses now, and that each merge request should be reviewed by an endboss. We should also document how to choose an endboss: https://gitlab.slack.com/archives/development/p1451384205002259
1
7,764
69,754,853
2020-08-12 09:44:23.978
Release post tier badge text is misaligned
#### What is/are the relevant URLs or emails? Any release page, e.g.: https://about.gitlab.com/releases/2020/07/22/gitlab-13-2-released/ #### Briefly describe the bug The tier badges' texts are misaligned. #### What are the steps to reproduce the bug 1. Visit any release page, e.g.: https://about.gitlab.com/releases/2020/07/22/gitlab-13-2-released/ 1. Look at the tier badges under a feature headline #### Please provide any relevant screenshots or screencasts ![Screenshot_from_2020-08-12_10-33-40](/uploads/e5f772c69afd65ef91fa70ab17d097a1/Screenshot_from_2020-08-12_10-33-40.png) #### What is your window size, browser, operating system, and versions Tested in Firefox 79.0 and Chromium Version 84.0.4147.105 (Official Build) snap (64-bit) on Ubuntu 20.04.1 LTS #### Possible fix The badges have a fixed width of `60px`, which is not enough to contain the longer strings like `ULTIMATE`. Two possible fixes: 1. Rely on a `display: table` layout more for these badges, without setting a fixed width on each badge 1. Use `display: grid` :tada: <!-- If you do not want to ping the website team, please remove the following cc --> /cc @gl-website <!-- These labels will be automatically applied unless you edit or delete the following section -->
1
7,764
69,740,173
2020-08-11 21:51:38.477
Newsletter subscription form white text white background
<!-- This template is for filing a bug report related to the logged out [marketing website](https://about.gitlab.com/) and [company handbook](https://about.gitlab.com/handbook/). This is not the correct repository for requests related to docs.gitlab.com, the GitLab product, or other items. For information regarding working on the about website please visit the [Brand and Digital Handbook](https://about.gitlab.com/handbook/marketing/growth-marketing/brand-and-digital-design/) You may link to this issue template using the following URL: https://gitlab.com/gitlab-com/www-gitlab-com/issues/new?issuable_template=-website-bug-report --> #### What is/are the relevant URLs or emails? <!-- Example: https://about.gitlab.com/something/etc/ --> https://about.gitlab.com/events/commit/ #### Briefly describe the bug <!-- Example: A link is broken and when hovering over it the color is the wrong color and poorly aligned. --> The newsletter subscription form has white text over a white background and therefore is practically invisible. It technically still functions but this bug is likely be a barrier to use. #### Please provide any relevant screenshots or screencasts ![Greenshot_2020-08-11_14.49.11](/uploads/5aaa60cbd519210c1e075b48778ab9ab/Greenshot_2020-08-11_14.49.11.png) #### What is your window size, browser, operating system, and versions <!-- Please use the following website to determine your browser specifications and provide a link developers can follow [What is my browser](https://www.whatsmybrowser.org) Example: Chrome 77, macOS 10.15.0, 944px by 977px, https://whatsmybrowser.org/b/MPC757K --> https://www.whatsmybrowser.org/b/4YUV8SF #### What device are you using <!-- Example: Samsung Galaxy S 10 Plus --> Macbook Pro 15" 2019 #### Have you tried a fresh incognito window? Could this be related to cookies or account type/state? <!-- Examples: * I tried a fresh incognito window & it had no impact. * The problem goes away when using an incognito window. * It only happens when YYYYYY cookies are set to ZZZZZZ. --> N/A #### What browser plugins do you have enabled? <!-- Example: Adblock, noscript, ghostery, safe browsing. Why?: Certain website bugs may be caused by plugins. --> N/A #### What is your geographic location <!-- Why?: Certain bugs may be geographically related. For example, if you're in the European Union, it could be related to GDPR policy and cookies. --> California #### What type of network are you connected to? <!-- Examples: * Wired corporate network. * Wifi at home. * Restaurant wifi. * AT&T 4G. --> Home cable <!-- These labels will be automatically applied unless you edit or delete the following section -->
1
7,764
69,669,963
2020-08-10 23:33:35.585
Adjust pricing page popups take3
<!-- This template is for requesting work to an existing webpage [marketing website](https://about.gitlab.com/) , or logged out gitlab.com. DO NOT use this for: New webpages, docs.gitlab.com, the GitLab product (In app), the handbook or other items. For information regarding working on the about website please visit the [Brand and Digital Handbook](https://about.gitlab.com/handbook/marketing/growth-marketing/brand-and-digital-design/#digital-team) TITLE THIS ISSUE: Page Update: [Your Relevant Title] --> ## Overview This is related to https://gitlab.com/gitlab-com/marketing/growth-marketing/brand-and-digital/brand-and-digital/-/issues/212#note_389216039 #### Briefly describe your request What is going to be added/removed, etc. <!-- Example: Update existing information. Some examples of this are for changes in direction, programs, partnerships, or annual updates. --> `Add more style emphasis to the links, continuing work from` https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8584 #### Describe why this update is being requested: What problem(s) are you trying to solve? What are the goals? <!-- Examples: * Users can't find what they're looking for. --> * `Users would like a quick look "does this tier have the features I need for a specific category/topic?"` * `The quicker a user sees what they want, the more likely they are to buy.` #### What is/are the relevant URL(s) `https://about.gitlab.com/pricing/` <!-- Example: https://about.gitlab.com/etc/ --> _________ ## Project Management #### What is the due date AND WHY? Dates without reason are difficult to prioritize. If there is no due date, please be as specific as possible about a timeframe and need. `2020-08-13. We're reusing code but adding some CSS so it should be quick.` <!-- Please note: Without sufficient lead time we will likely be unable to meet your deadline. Marketing web development is currently an impacted resource. Example: Our due date is XXXX-XX-XX. We want to launch this page before a trade show happens on YYYY-YY-YY. We need a week of lead time to coordinate a press release before the event. --> #### Please identify the directly responsible individual (DRI), stakeholders, and roles <!-- Who should we be asking for questions and reviews? --> |Name|Role| |------|------| | `@tbarr` | DRI | | `@sytses` | Primary stakeholder | | `@rreich` | Project facilitator | | `@brandon_lyon` | Marketing developer lead for this week's MVC | | `@shanerice` | Development partner, testing/analytics/seo, guidance/coordination | | `@skarpeles` | Marketing developer lead during prior iterations | | `@jstava` | Growth group stakeholder | ____________ ## Audience #### Who is primarily looking at this page AND what will they they be doing with it/what do we want them to do? Write specifics AND check off below anything relevant **Specific Details** <!-- Write in specifics. Example: People looking for more info about devsecops", or "potential event attendees vs event sponsors. Want them to sign up for event" --> `Users who are ready to buy but need to know which version to purchase` **Person** - [x] Individual (looking for information on GitLab features, events, community, documentation) - [x] Person representing company (looking for a solution for DevOps, getting a trial, etc) - [ ] PR/Media - [ ] Investors/Board members **How much do they know about GitLab?** - [x] Very new or first time visiting (most likely came from ads or search) - [x] Has been here a few times - [ ] Very familiar (likely looking for documentation, resources, new features, community projects, etc. ) **Special Considerations (check if applicable):** - [ ] Government - [ ] Outside U.S. (primary) - [ ] Direct Competitive (ex: OctoCat Campaign} ___________ ## Promotion and Measurable Goals #### What are the measurable key performance indicators (KPI)? * `Same performance metrics currently measured on that page` <!-- Examples: * Email subscriptions * Attendee signups --> #### Where do you expect traffic to come from? * `The usual` <!-- Examples: * Organic Social media campaign * Paid Targeted ads --> ## Relevant Documents/Information * [Pricing capabilities YML](https://gitlab.com/gitlab-com/marketing/growth-marketing/brand-and-digital/brand-and-digital/uploads/33772b260e9c36753dba3dc778a1b8f0/pricing_capabilities.yml). * [Related merge request with relevant code](https://gitlab.com/gitlab-com/www-gitlab-com/-/merge_requests/58002). ## Project Deliverables #### What are the project must-haves? <!-- Please try to keep this list as short as possible. Items the project cannot launch without. (Example must-haves) * [ ] Sign-up form * [ ] CTA for proposals --> * [ ] Reusing work from the [previous iteration](https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8584) * [ ] Add styles to the links to attempt to improve engagement. #### What are the project could-haves? <!-- These are desirable but not necessary. If an opengraph is needed for social sharing please add as a COULD-HAVE deliverable. (Example could-haves) * Sliders * Animations * "Bells-and-whistles" --> * [ ] A/B test implemented. ## Requestor Checklist * [x] All sections have been filled out * [x] All media and relevant documents have been linked or added * [x] A due date and rationale for the due date has been added * [x] Your team labels have been added
1
7,764
69,668,521
2020-08-10 21:57:58.092
Commit event sponsors update August week 1
Ongoing work related to https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/164 This MR adds the following logos to the sponsor section: * Accurics * Epsagon * ServiceNow * Drupal
1
7,764
69,553,366
2020-08-07 17:35:52.475
Disable the design test on pricing page
Relates to https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/289
1
7,764
69,479,787
2020-08-05 20:55:09.568
Generate Release Notes in GitLab Releases
<!-- The first three sections: "Problem to solve", "Intended users" and "Proposal", are strongly recommended, while the rest of the sections can be filled out during the problem validation or breakdown phase. However, keep in mind that providing complete and relevant information early helps our product team validate the problem and start working on a solution. --> ### Problem to solve Gitlab users want to easily find/read release notes relevant to them, such as tier, the stages they use or specific items of interest (upgrades, deprecations and removals) in release announcements. Gitlab team members (such as Marketing and Sales) want to successfully find/share relevant release notes with Gitlab users and prospects. The following pages deliver Gitlab's release notes organized in various ways, forcing internal and external Gitlab users to reference various pages to collect the information they seek: - **Release Post Marketing Blog"**: https://about.gitlab.com/releases/2020/06/22/gitlab-13-1-released/ - **Gitlab Releases"** https://about.gitlab.com/releases/ archived ==> https://web.archive.org/web/20200714130736/https://about.gitlab.com/releases/ - **GitLab upcoming releases"** https://about.gitlab.com/upcoming-releases/ - **Upcoming features for paid tiers"** https://about.gitlab.com/direction/paid_tiers/ - **X-Y Preview"** https://about.gitlab.com/releases/gitlab-com/ - **Gitlab releases"** https://gitlab.com/gitlab-org/gitlab/-/releases/v12.10.0-ee ### Intended users Current users, prospects, internal Gitlab team members ### Proposal Improve and leverage Gitlab's in product Release feature https://gitlab.com/gitlab-org/gitlab/-/releases to serve as the "go to" SSOT for both SaaS and Self-hosted release notes, such that it can essentially replace the need for the various pages listed above. **Benefits** - Deliver a better user release notes experience internally/externally - Boost process efficiency by decoupling the requirements of "release notes" from a "marketing blog post" - Enable Product team to focus on feature/supporting content success - Enable Marketing to focus on how, when and where else to best expose the release notes as part - Enable Sales to clearly communicate via one thorough/sortable SSOT for existing and potential customers **Requirements:** To successfully replace the various release pages listed above, the Release feature https://gitlab.com/gitlab-org/gitlab/-/releases needs to: | | Requirement | | |---|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 1 | Display or provide quick access to content blocks that currently only surface in the [Release Post Marketing Blog](https://about.gitlab.com/releases/2020/06/22/gitlab-13-1-released/) | - primary features<br>- secondary features (inclusive of recurring release notes such as Omnibus, Chart and Runner improvements)<br>- bugs<br>- performance improvements<br>- upgrades<br>- removals<br>- deprecations <br> - Issue to follow: https://gitlab.com/gitlab-org/gitlab/-/issues/234009 | | 2 | Individual items should link through to: | - changelogs<br>- documentation<br>- epics <br>- issues <br> Issue to follow: https://gitlab.com/gitlab-org/gitlab/-/issues/217145 | | 3 | The page should be sortable / filterable by: | - version<br>- plan type<br>- stage<br>- category <br> Issue to follow: https://gitlab.com/gitlab-org/gitlab/-/issues/234007 | | 4 | Be continually up to date with features as they become available for SaaS (similar to or link to... https://about.gitlab.com/releases/gitlab-com/) | Epic to follow: https://gitlab.com/groups/gitlab-org/-/epics/4160 | | 5 | Include a way to highlight "Upcoming" features for Self-hosted, which currently happens on https://about.gitlab.com/releases/gitlab-com/ but is hard to discern | Epic to follow: https://gitlab.com/groups/gitlab-org/-/epics/4160 | | 6 | Include a way to search release notes | <br> - Issue to follow: https://gitlab.com/gitlab-org/gitlab/-/issues/227178 | | 7 | Include a way to still be able to pull content blocks and generate the Marketing release post blog in it's current format | <br> - Issue to follow: https://gitlab.com/gitlab-org/gitlab/-/issues/234009 |
8
7,764
69,427,832
2020-08-04 20:16:02.673
What are Versioned Tests and why should you use them?
<!-- PLEASE READ: See https://about.gitlab.com/handbook/marketing/blog/ for details on the blog process. Unless you are just suggesting a blog post idea, you will need to create the formatted merge request for your blog post in order for it to be reviewed and published. --> ### Proposal Versioned tests are listed as one of the highlighted features of GitLab CI/CD, but it doesn't look like we use that term or have fully explained what that looks like and what that means. I would like to make a post that talks about versioned tests and what they are, what they do, how to set them up, and why they're a good feature. This is for the CI Use Case Campaign. Publish date is not time-sensitive, anytime in Q3 is fine. ### Checklist - [ ] If you have a specific publish date in mind (please allow 3 weeks' lead time) - [ ] Include it in the issue title - [ ] Give the issue a due date of a minimum of 2 working days prior - [ ] If your post is likely to be >2,000 words, give a due date of a minimum of 4 working days prior - [ ] If [time sensitive](https://about.gitlab.com/handbook/marketing/blog/#process-for-time-sensitive-posts) - [ ] Add ~"Blog: Priority" label and supplied rationale in description - [ ] Mention `@rebecca` to give her a heads up ASAP - [ ] If wide-spread customer impacting or sensitive, mention `@nwoods` to give her a heads up ASAP, apply the ~"sensitive" label, and check the [PR handbook](http://about.gitlab.com/handbook/marketing/corporate-marketing/#requests-for-announcements) in case you need to open an announcement request instead of a blog post issue - [ ] If the post is about one of GitLab's Technology Partners, including integration partners, mention `@TinaS`, apply the ~"Partner Marketing" label, and see the [blog handbook for more on third-party posts](https://about.gitlab.com/handbook/marketing/blog/index.html#third-party-posts) - [ ] If the post is about one of GitLab's customers, mention `@KimLock` and `@FionaOKeeffe`, apply the ~"Customer Reference Program" label, and see the [blog handbook for more on third-party posts](https://about.gitlab.com/handbook/marketing/blog/index.html#third-party-posts) - [x] Indicate if supporting an event or campaign - [ ] Indicate if this post requires additional approval from internal or external parties before publishing (please provide details in a comment)
2
7,764
69,374,021
2020-08-03 17:03:38.023
Adjust pricing page popups
<!-- This template is for requesting work to an existing webpage [marketing website](https://about.gitlab.com/) , or logged out gitlab.com. DO NOT use this for: New webpages, docs.gitlab.com, the GitLab product (In app), the handbook or other items. For information regarding working on the about website please visit the [Brand and Digital Handbook](https://about.gitlab.com/handbook/marketing/growth-marketing/brand-and-digital-design/#digital-team) TITLE THIS ISSUE: Page Update: [Your Relevant Title] --> ## Overview This is related to https://gitlab.com/gitlab-com/marketing/growth-marketing/brand-and-digital/brand-and-digital/-/issues/212#note_389216039 #### Briefly describe your request What is going to be added/removed, etc. <!-- Example: Update existing information. Some examples of this are for changes in direction, programs, partnerships, or annual updates. --> `Update the popups per direction from management, following this spreadsheet` https://docs.google.com/spreadsheets/d/1P58q76cyAqgyAUM5P-WaCdcmXkNQWNML3mKAmabTadk/edit#gid=2024575769 #### Describe why this update is being requested: What problem(s) are you trying to solve? What are the goals? <!-- Examples: * Users can't find what they're looking for. --> * `Users would like a quick look "does this tier have the features I need for a specific category/topic?"` * `The quicker a user sees what they want, the more likely they are to buy.` #### What is/are the relevant URL(s) `https://about.gitlab.com/pricing/` <!-- Example: https://about.gitlab.com/etc/ --> _________ ## Project Management #### What is the due date AND WHY? Dates without reason are difficult to prioritize. If there is no due date, please be as specific as possible about a timeframe and need. `2020-08-07` <!-- Please note: Without sufficient lead time we will likely be unable to meet your deadline. Marketing web development is currently an impacted resource. Example: Our due date is XXXX-XX-XX. We want to launch this page before a trade show happens on YYYY-YY-YY. We need a week of lead time to coordinate a press release before the event. --> #### Please identify the directly responsible individual (DRI), stakeholders, and roles <!-- Who should we be asking for questions and reviews? --> |Name|Role| |------|------| | `@tbarr` | DRI | | `@sytses` | Primary stakeholder | | `@rreich` | Project facilitator | | `@brandon_lyon` | Marketing developer lead for this week's MVC | | `@shanerice` | Development partner, testing/analytics/seo, guidance/coordination | | `@skarpeles` | Marketing developer lead during prior iterations | | `@jstava` | Growth group stakeholder | ____________ ## Audience #### Who is primarily looking at this page AND what will they they be doing with it/what do we want them to do? Write specifics AND check off below anything relevant **Specific Details** <!-- Write in specifics. Example: People looking for more info about devsecops", or "potential event attendees vs event sponsors. Want them to sign up for event" --> `Users who are ready to buy but need to know which version to purchase` **Person** - [x] Individual (looking for information on GitLab features, events, community, documentation) - [x] Person representing company (looking for a solution for DevOps, getting a trial, etc) - [ ] PR/Media - [ ] Investors/Board members **How much do they know about GitLab?** - [x] Very new or first time visiting (most likely came from ads or search) - [x] Has been here a few times - [ ] Very familiar (likely looking for documentation, resources, new features, community projects, etc. ) **Special Considerations (check if applicable):** - [ ] Government - [ ] Outside U.S. (primary) - [ ] Direct Competitive (ex: OctoCat Campaign} ___________ ## Promotion and Measurable Goals #### What are the measurable key performance indicators (KPI)? * `Same performance metrics currently measured on that page` <!-- Examples: * Email subscriptions * Attendee signups --> #### Where do you expect traffic to come from? * `The usual` <!-- Examples: * Organic Social media campaign * Paid Targeted ads --> ## Relevant Documents/Information * [Pricing capabilities YML](https://gitlab.com/gitlab-com/marketing/growth-marketing/brand-and-digital/brand-and-digital/uploads/33772b260e9c36753dba3dc778a1b8f0/pricing_capabilities.yml). * [Related merge request with relevant code](https://gitlab.com/gitlab-com/www-gitlab-com/-/merge_requests/58002). ## Project Deliverables #### What are the project must-haves? <!-- Please try to keep this list as short as possible. Items the project cannot launch without. (Example must-haves) * [ ] Sign-up form * [ ] CTA for proposals --> * [ ] Replace the "compare features" links on the bottom of the pricing matrix with links from each item on the feature list where the popup is [filtered to that specific feature](https://docs.google.com/spreadsheets/d/1P58q76cyAqgyAUM5P-WaCdcmXkNQWNML3mKAmabTadk/edit#gid=2024575769). * [ ] Remove the popup graphic, title, and description paragraph. * [ ] Popup buttons are moved below the feature list. ![interstitial_round3](/uploads/c390d0a80b0c2a6b4b53a8e6e57b8063/interstitial_round3.png) #### What are the project could-haves? <!-- These are desirable but not necessary. If an opengraph is needed for social sharing please add as a COULD-HAVE deliverable. (Example could-haves) * Sliders * Animations * "Bells-and-whistles" --> * [ ] A/B test implemented. ## Requestor Checklist * [x] All sections have been filled out * [x] All media and relevant documents have been linked or added * [x] A due date and rationale for the due date has been added * [x] Your team labels have been added
5
7,764
69,372,467
2020-08-03 16:07:06.912
Investigate using a serverless app to process Marketo forms
`@jeanduplessis` recently pointed out a potential way to process Marketo forms without a server is via a serverless application such as Lambda. This would allow us to combine the best of both worlds, our static website and a dynamic server. We should investigate and see if this is something we could potentially use to fix our Marketo privacy issues. Due to cost and time required, before we do this we should try other solutions first: * https://gitlab.com/gitlab-com/marketing/growth-marketing/brand-and-digital/brand-and-digital/-/issues/256 * https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/214 <!-- These labels will be automatically applied unless you edit or delete the following section -->
10
7,764
69,305,752
2020-07-31 16:38:34.806
Commit event sponsors update July week5
Ongoing work related to https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/164 This MR adds the following logos to the sponsor section: * mabl * Oracle * DataDog
1
7,764
69,237,754
2020-07-30 15:05:07.858
Update default MR template
## Please update the default MR template ``` <!--Before proceeding, please check if you need to apply a specific MR description template from the dropdown menu above next to `Description` (e.g. blog post, website bug report).--> ## Why is this change being made? <!-- Provide a detailed answer to question on why this change is being proposed, in accordance with our value of [Transparency][transparency]. --> ## Author Checklist - [ ] Provided a concise title for the MR - [ ] Added a description to this MR explaining the reasons for the proposed change, per [say-why-not-just-what][transparency] - [ ] Assign this change to the correct DRI - If the DRI for the page/s being updated isn’t immediately clear, then assign it to your manager. - If your manager does not have merge rights, please ask someone to merge it AFTER it has been approved by your manager in [#mr-buddies][mr-buddies-slack]. - If the changes relate to any part of the project other than updates to content and/or data files please make sure to ping `@gl-static-site-editor` in a comment for a review and merge. For example changes to `.gitlab-ci.yml`, JavaScript/CSS/Ruby code or the layout files. ```
1
7,764
69,142,279
2020-07-28 21:11:27.885
Remove JS files from blog post and move blog post to correct directory
#### What is/are the relevant URLs or emails? This blog post does not have a current URL because it is in the depreciated `source/posts` directory. The blog post also references javascript files uploaded directly to its image directory. ``` source/images/blogimages/gitlab-daily-tools/Handy GitLab actions.user.js source/images/blogimages/gitlab-daily-tools/GitLab filters.user.js ``` Having javascript files located in the image directory will confuse linters and filters. #### Where is the blog post located https://gitlab.com/gitlab-com/www-gitlab-com/-/blob/master/source/posts/2019-11-26-gitlab-daily-tools.html.md <!-- If you do not want to ping the website team, please remove the following cc --> /cc @gl-website <!-- These labels will be automatically applied unless you edit or delete the following section -->
1
7,764
69,119,383
2020-07-28 12:12:51.717
Team map not loading in Safari
#### What is/are the relevant URLs or emails? https://about.gitlab.com/company/team/ #### Briefly describe the bug Team map not loading in Safari. #### Please provide any relevant screenshots or screencasts ![image](/uploads/383afca895ff6b22b513e8b8d7651d38/image.png) #### What is your window size, browser, operating system, and versions Mojave 10.14.5 and Safari 13.1.1 #### What device are you using Macbook Pro
2
7,764
69,066,803
2020-07-27 20:31:34.705
Phase 2 Website Update - search
``` BL notes to self: * The parts left for me are outlined in a comment near the bottom https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8470#note_422300928 ``` This template if for the Marketing Growth Team for their Phase 2 Webpage updates Title this issue: Phase 2 Website Update - (Page Name) [Phase 2 Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) ## Metadata for page - **Intent:** - **Goal:** - **Who is code owner:** - **SME Group:** ## Adjustments to be made: These adjustments are from this audit round - [x] Add metadata - [ ] Swapping content or content links - [ ] Adding pathfactory link - [ ] Adjusting SEO - [x] Adding CTA buttons - [ ] Adjusting copy on CTA buttons - [x] Adjusting old/erroneous messaging - [ ] Improve mobile optimization - [ ] Clean up alignment - [ ] Adjust color schemes - [x] Swap out old assets ## Relevant Links: - [Page Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) - [Survey](https://docs.google.com/forms/d/1GsZ4IoIAeLssROY_JfoWuOFPWyO5M4ykgYBNhD5sU8o/edit) ## Roles and Responsibilities | Role | DRI | | ------ | ------ | | Project DRI | @rreich | | Marketing Analytics | @shanerice | | Content/Messaging | @erica| | Web Dev | @skarpeles | | Brand/Design | @luke | | GM Stakeholder | @dmor | ## Production **Project DRI** - [x] Add design to design tab - [ ] Decide on audit items and check-off - [ ] Assign to relevant Team Leads for visibility - [ ] Make relevant WIP MRs - [ ] Add this issue to the page epic description - [ ] Close issue once set of MRs is complete **Team Leads** You may make comments in the design tab for tracking, but conversations on updates should be kept to the relevant MRs
1
7,764
69,047,497
2020-07-27 19:09:14.553
Phase 2 Website Update - community/index
This template if for the Marketing Growth Team for their Phase 2 Webpage updates Title this issue: Phase 2 Website Update - (Page Name) [Phase 2 Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) ## Metadata for page - **Intent:** - **Goal:** - **Who is code owner:** Growth Marketing - **SME Group:** Community Team ## Adjustments to be made: These adjustments are from this audit round - [x] Add metadata - [ ] Swapping content or content links - [ ] Adding pathfactory link - [x] Adjusting SEO - [x] Adding CTA buttons - [x] Adjusting copy on CTA buttons - [x] Adjusting old/erroneous messaging - [ ] Improve mobile optimization - [x] Clean up alignment - [ ] Adjust color schemes - [x] Swap out old assets ## Relevant Links: - [Page Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) ## Roles and Responsibilities | Role | DRI | | ------ | ------ | | Project DRI | @rreich | | Marketing Analytics | @shanerice | | Content/Messaging | @erica| | Web Dev | @skarpeles | | Brand/Design | @luke | | GM Stakeholder | @dmor | ## Production **Project DRI** - [x] Add design to design tab - [x] Decide on audit items and check-off - [x] Assign to relevant Team Leads for visibility - [x] Make relevant WIP MRs - [x] Add this issue to the page epic description - [ ] Close issue once set of MRs is complete **Team Leads** You may make comments in the design tab for tracking, but conversations on updates should be kept to the relevant MRs
1
7,764
69,045,016
2020-07-27 18:57:10.331
Change all mentions of WIP to Draft in Blog Handbook
#### Briefly describe the update WIP prefix for merge request has been depreciated in favor of using Draft instead. This was documented here https://gitlab.com/gitlab-org/gitlab/-/issues/228685 Let's change all documentation in the handbook related to creating abd publishing blog posts to use the new prefix. This will apply to the following pages: https://about.gitlab.com/handbook/marketing/blog/ More TBD <!-- These labels will be automatically applied unless you edit or delete the following section -->
1
7,764
69,032,896
2020-07-27 17:13:37.143
Phase 2 Website Update - what-is-gitlab/index
This template if for the Marketing Growth Team for their Phase 2 Webpage updates Title this issue: Phase 2 Website Update - (Page Name) [Phase 2 Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) ## Metadata for page - **Intent:** About GitLab the company - **Goal:** Learn more about GitLab the company - **Who is code owner:** Growth Marketing - **SME Group:** Corporate Marketing ## Adjustments to be made: These adjustments are from this audit round - [x] Add metadata - [x] Swapping content or content links - [ ] Adding pathfactory link - [ ] Adjusting SEO - [x] Adding CTA buttons - [x] Adjusting copy on CTA buttons - [x] Adjusting old/erroneous messaging - [ ] Improve mobile optimization - [ ] Clean up alignment - [ ] Adjust color schemes - [ ] Swap out old assets ## Relevant Links: - [Page Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/23) ## Roles and Responsibilities | Role | DRI | | ------ | ------ | | Project DRI | @rreich | | Marketing Analytics | @shanerice | | Content/Messaging | @erica| | Web Dev | @skarpeles | | Brand/Design UX Desktop and Mobile | @sbouchard | | Brand/Design Dev | @mpreuss22 | | GM Stakeholder | @dmor | ## Production **Project DRI** - [x] Add design to design tab - [x] Decide on audit items and check-off - [x] Assign to relevant Team Leads for visibility - [x] Make relevant WIP MRs - [x] Add this issue to the page epic description - [x] Close issue once set of MRs is complete **Team Leads** You may make comments in the design tab for tracking, but conversations on updates should be kept to the relevant MRs
4
7,764
68,959,758
2020-07-24 19:07:54.145
Investigate deferring the load of below-the-fold images in marketing site
Can we dramatically improve performance by deferring the load of below-the-fold images and third-party <iframe> in the marketing website? During this investigation of [this issue](https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/6665), it was found that images are a significant factor to long page load times. What methods exist today for this? What solutions would work well with our stack?
2
7,764
68,955,903
2020-07-24 16:10:57.048
Update sponsors display on commit event
Updating the sectional formatting for the sponsors list on /events/commit/
1
7,764
68,926,080
2020-07-23 21:13:39.994
Can we get rid of https://about.staging.gitlab.com/ entirely?
The staging environment and its deploy job ~~continues to add extra complexity for the work @cwoolley-gitlab is doing in the CI file related to https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8302~~ has been removed from the CI/CD deploy process and has not been updated for years. Is it possible to have redirect testing done via the review app? Are testing redirects the only reason staging is used? Let's identify who, when, and why the staging area is used. Because every MR fires up it's own dedicated review app, seems that we may be able to remove the staging URL entirely. The staging URL: https://about.staging.gitlab.com/ Related https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8337 Related https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8302
3
7,764
68,925,274
2020-07-23 20:41:56.886
Commit event sponsors update july week4
Ongoing work related to https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/164 This MR adds the following logos to the sponsor section: * RedHat * Gnome * Pulumi * VMWare Tanzu * StackHawk * OverOps * Chef
1
7,764
69,316,879
2020-07-22 16:14:07.848
Friday: Investigate refresh loop fix
Noting to myself to try a new fix on Friday afternoon when fewer people are using the site. I have a new idea about how to potentially fix the refresh loop. This investigation relates to https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8052 and https://gitlab.com/groups/gitlab-com/-/epics/681 ```javascript window.addEventListener('CookiebotOnAccept', function (e) { if (Cookiebot.changed) { isCookieConsentStillRequired = getCookie("CookieConsent"); isMarketingStillTrue = isCookieConsentStillRequired.includes('marketing:true'); //console.log('cookie changed to ' + isCookieConsentStillRequired); if (isMarketingStillTrue == true) { //console.log('On change marketing is ' + isMarketingStillTrue); document.location.reload(); }; } }); ```
1
7,764
68,806,710
2020-07-21 14:45:34.803
Phase 2 Website Update - free-trial page
This template if for the Marketing Growth Team for their Phase 2 Webpage updates Title this issue: Phase 2 Website Update - (Page Name) ## Metadata for page - Intent: Free trial MQL (WIP) - Goal: User clicks free trial (WIP) - Who is code owner: Growth Marketing - SME Group: Product Marketing ## Adjustments to be made: These adjustments are from this audit round - [x] Add metadata - [ ] Swapping content or content links - [ ] Adding pathfactory link - [x] Adjusting SEO - [x] Adding CTA buttons - [x] Adjusting copy on CTA buttons - [x] Adjusting old/erroneous messaging - [ ] Improve mobile optimization - [ ] Clean up alignment - [ ] Adjust color schemes - [x] Swap out old assets ## Relevant Links: - [Page Epic](https://gitlab.com/groups/gitlab-com/marketing/growth-marketing/-/epics/66) ## Roles and Responsibilities | Role | DRI | | ------ | ------ | | Project DRI | @rreich | | Marketing Analytics | @shanerice | | Content/Messaging | @erica| | Web Dev | @brandon_lyon | | Brand/Design Desktop and Mobile | @sbouchard | | Website DRI (Intent, Goal, Oversight)| @mpreuss22 | | GM Stakeholder | @dmor | ## To Do - [x] Add relevant WIP MRs - [x] Add this issue to the page epic description - [ ] Close issue once set of MRs is complete label ~"mktg-growth" ~"mktg-website" ~"mktg-status::wip" ~"Global Content" ~"mktg-analytics"
1
7,764
68,778,273
2020-07-21 12:59:50.271
Update secondary button style on homepage hero
#### What is/are the relevant URLs or emails? https://about.gitlab.com/ #### Briefly describe the bug Secondary CTA button in hero homepage should be white outlined with white text (not white background). #### Please provide any relevant screenshots or screencasts ![image](/uploads/d8d24eb68aedbeabd7b8e37824c8bcb7/image.png) #### Design Based on Figma file here: https://www.figma.com/file/gvc1olvwp99YncG2EgihK8/Home-Page-Merchandising-Spec?node-id=61%3A99
1
7,764
68,269,001
2020-07-20 20:17:47.722
Turn Page off: https://about.gitlab.com/solutions/enterprise-class/
Turn this page off per this comment from the owner: https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/8254#note_382538838 https://about.gitlab.com/solutions/enterprise-class/
1
7,764
68,200,053
2020-07-20 17:55:16.824
Blog Post (Unfiltered): Tips and habits for efficient Code Reviews
<!-- PLEASE READ: See https://about.gitlab.com/handbook/marketing/blog/unfiltered for details on the Unfiltered blog process.--> ### Proposal <!-- What do you want to blog about? Add your description here --> Write down several habits, tips and suggestions that make for an efficient code review process from the perspective of the reviewer. In specific, from the perspective of a long time frontend maintainer: @iamphill
2
7,764
68,062,470
2020-07-20 12:09:07.277
Composable Sitemap
@shanerice please verify if the changes to the sitemap in https://gitlab.com/gitlab-com/www-gitlab-com/-/merge_requests/56731 behave as expected and if anything needs changing.
1
7,764
59,456,401
2020-07-15 16:59:22.837
Test a Marketo form without cookies
## Overview #### Briefly describe your request Implement a page where we can test theories related to marketo forms. In particular, the use of Marketo forms without tracking cookies. #### Describe why this update is being requested: What problem(s) are you trying to solve? What are the goals? 1. Marketo is a third party marketing tool. 2. Third party marketing tools are blocked by privacy strict browsers, adblockers, firewalls, and impacted by cookie consent legislation such as GDPR / CCPA. #### What is/are the relevant URL(s) `https://about.gitlab.com/handbook/marketing/growth-marketing/marketo-test-cookies/` _________ ## Project Management #### What is the due date AND WHY? Dates without reason are difficult to prioritize. If there is no due date, please be as specific as possible about a timeframe and need. No specific due date but the sooner the better since forms directly impact growth. #### Please identify the directly responsible individual (DRI), stakeholders, and roles |Name|Role| |------|------| | `???` | DRI | | `@brandon_lyon` | Marketing web developer | | `@amy.waller` | Marketo tool lead | | `@shanerice` | Analytics | | `@j.carey` | Analyst | | `@jstava` | Product growth | ____________ ## Audience All visitors to about.gitlab.com ___________ ## Promotion and Measurable Goals #### What are the measurable key performance indicators (KPI)? * `Form completions` * `Self-managed trial signups` _____________ ## Relevant Documents/Information * [Code snippet for conditionally deferred cookies](https://blog.teknkl.com/conditionally-loading-munchkin-on-marketo-lps-for-gdpr-related-policies/) * [Why to defer cookies and how it works](https://nation.marketo.com/t5/Product-Discussions/Preventing-embed-forms-from-setting-cookies-tracking-before/td-p/201848). _____________ ## Requestor Checklist * [x] All sections have been filled out * [x] All media and relevant documents have been linked or added * [x] A due date and rationale for the due date has been added * [x] Your team labels have been added
2
7,764
56,004,715
2020-07-13 21:34:56.560
Competitive Comparison pages don't render correctly in PDF view
<!-- This template is for filing a bug report related to the logged out [marketing website](https://about.gitlab.com/) and [company handbook](https://about.gitlab.com/handbook/). This is not the correct repository for requests related to docs.gitlab.com, the GitLab product, or other items. For information regarding working on the about website please visit the [Brand and Digital Handbook](https://about.gitlab.com/handbook/marketing/growth-marketing/brand-and-digital-design/) You may link to this issue template using the following URL: https://gitlab.com/gitlab-com/www-gitlab-com/issues/new?issuable_template=-website-bug-report --> #### What is/are the relevant URLs or emails? These two pages should render the same content - https://about.gitlab.com/devops-tools/ca-veracode-vs-gitlab.html - https://about.gitlab.com/devops-tools/pdfs/ca-veracode-vs-gitlab.html #### Briefly describe the bug Rendering a comparison with details doesn't properly work for the PDF render. [Example features.yml line](https://gitlab.com/gitlab-com/www-gitlab-com/-/blob/master/data/features.yml#L5903) ``` gitlab_ci: true blackduck: false synopsys: valid: true details: 'supports 20 languages' # https://www.synopsys.com/content/dam/synopsys/sig-assets/datasheets/SAST-Coverity-datasheet.pdf snyk: false ca_veracode: true ``` #### What are the steps to reproduce the bug View both of the pages listed above. #### Please provide any relevant screenshots or screencasts https://about.gitlab.com/devops-tools/ca-veracode-vs-gitlab.html ![Screen_Shot_2020-07-13_at_4.31.27_PM](/uploads/420e1ac2ba82ed1413300d7eac5f74f5/Screen_Shot_2020-07-13_at_4.31.27_PM.png) https://about.gitlab.com/devops-tools/pdfs/ca-veracode-vs-gitlab.html ![Screen_Shot_2020-07-13_at_4.31.22_PM](/uploads/703cb5314369b82a34b129b812d3deb3/Screen_Shot_2020-07-13_at_4.31.22_PM.png) <!-- If you do not want to ping the website team, please remove the following cc --> /cc @gl-website <!-- These labels will be automatically applied unless you edit or delete the following section -->
2
7,764
54,108,988
2020-07-08 16:26:30.016
/multicloud topics page update
## Issue purpose Update the [/multicloud](https://about.gitlab.com/multicloud/) topic page to incorporate SEO strategy. ## Types of changes requested - add/remove sections - edit copy within existing sections - add links to bottom of sections ### [COPY doc with final changes](https://docs.google.com/document/d/1zV7vT6Z1l_Of-HCqdN9T4jtvpA8Tnuao0rKqzN40cZ8/edit#)
2
7,764
54,107,736
2020-07-08 16:01:00.146
Running blog post only pipeline breaks
We have setting that enables blog post authors to build only the blog and preview just that in review apps. This is done by adding "blog post" to the MR title. At some point, this became broken. Let's fix it.
2
7,764
54,047,356
2020-07-07 15:10:07.197
Solutions page Red Hat
Relates to https://gitlab.com/gitlab-com/marketing/growth-marketing/growth/-/issues/91
2
7,764
53,976,963
2020-07-06 15:05:03.046
Demo form not working
#### What is/are the relevant URLs or emails? https://about.gitlab.com/demo/ #### Briefly describe the bug Filling out and submitting the form leaves the button hanging at "Please Wait" #### Please provide any relevant screenshots or screencasts ![Greenshot_2020-07-06_07.59.36](/uploads/0bfec39d4d59b1dba16c520e5b6b1e71/Greenshot_2020-07-06_07.59.36.png) #### What is your window size, browser, operating system, and versions https://www.whatsmybrowser.org/b/4YUV8SF #### What device are you using Macbook Pro 2019 15" #### Have you tried a fresh incognito window? Could this be related to cookies or account type/state? Yes, this reproduces incognito after cookie consent. #### What browser plugins do you have enabled? None #### What is your geographic location * (native) CA, USA * (VPN) Frankfurt, Germany #### What type of network are you connected to? Wired at home <!-- These labels will be automatically applied unless you edit or delete the following section -->
1
7,764
53,902,109
2020-07-04 02:27:50.851
Incorrect notation for PG upgrade on "Release post - GitLab 13.0"
In !48201 (13.0 release note), we made an incorrect notation around automatic upgrade of PostgreSQL in upgrading omnibus package from 12.x to 13.0 without either PG HA or Geo configurations or opt-out with `/etc/gitlab/disable-postgresql-upgrade`. We should rewrite it along with the omnibus implementation. See [the thread](https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/5412#note_372826639) for the confirmation.
2
7,764
52,605,932
2020-07-01 00:08:28.962
Team page - compress images
<!-- This template is for filing a bug report related to the logged out [marketing website](https://about.gitlab.com/) and [company handbook](https://about.gitlab.com/handbook/). This is not the correct repository for requests related to docs.gitlab.com, the GitLab product, or other items. For information regarding working on the about website please visit the [Brand and Digital Handbook](https://about.gitlab.com/handbook/marketing/growth-marketing/brand-and-digital-design/) You may link to this issue template using the following URL: https://gitlab.com/gitlab-com/www-gitlab-com/issues/new?issuable_template=-website-bug-report --> #### What is/are the relevant URLs or emails? https://about.gitlab.com/company/team/ #### Briefly describe the bug https://about.gitlab.com/company/team/ is loading 5MB of images which could be comprised down to 600KB #### What are the steps to reproduce the bug See https://www.webpagetest.org/performance_optimization.php?test=200630_5S_0c124d4eca8e69e9779dfd811b5918e8&run=1#compress_images or https://webspeedtest.cloudinary.com/results/200630_5S_0c124d4eca8e69e9779dfd811b5918e8 #### Please provide any relevant screenshots or screencasts See list of potential savings <details> ``` 20,452.3 KB total in images, target size = 17,032.1 KB - potential savings = 3,420.2 KB WARNING - (33.2 KB, compressed = 27.0 KB - savings of 6.2 KB) - https://about.gitlab.com/images/team/giorgenesgelatti-crop.jpg WARNING - (36.0 KB, compressed = 29.9 KB - savings of 6.0 KB) - https://about.gitlab.com/images/team/ddesanto-crop.jpg WARNING - (35.4 KB, compressed = 29.7 KB - savings of 5.6 KB) - https://about.gitlab.com/images/team/davepisek-crop.jpg WARNING - (28.9 KB, compressed = 23.5 KB - savings of 5.4 KB) - https://about.gitlab.com/images/team/ruben-crop.jpg WARNING - (27.2 KB, compressed = 22.0 KB - savings of 5.2 KB) - https://about.gitlab.com/images/team/jonathanfullam-crop.jpg WARNING - (30.4 KB, compressed = 25.1 KB - savings of 5.2 KB) - https://about.gitlab.com/images/team/nathanblack-crop.jpg WARNING - (31.8 KB, compressed = 26.5 KB - savings of 5.2 KB) - https://about.gitlab.com/images/team/joern-crop.jpg WARNING - (31.9 KB, compressed = 26.7 KB - savings of 5.2 KB) - https://about.gitlab.com/images/team/tetianachupryna-crop.jpg WARNING - (29.1 KB, compressed = 24.0 KB - savings of 5.1 KB) - https://about.gitlab.com/images/team/simon-crop.jpg WARNING - (27.5 KB, compressed = 22.4 KB - savings of 5.1 KB) - https://about.gitlab.com/images/team/Laureneconway__1_-crop.jpg WARNING - (29.6 KB, compressed = 24.6 KB - savings of 5.0 KB) - https://about.gitlab.com/images/team/maxwellpower-crop.jpg WARNING - (27.8 KB, compressed = 22.8 KB - savings of 5.0 KB) - https://about.gitlab.com/images/team/nupursharma-crop.jpg WARNING - (30.7 KB, compressed = 25.7 KB - savings of 5.0 KB) - https://about.gitlab.com/images/team/christiaanconover-crop.jpg WARNING - (25.2 KB, compressed = 20.3 KB - savings of 4.9 KB) - https://about.gitlab.com/images/team/ibaum-crop.jpg WARNING - (29.9 KB, compressed = 25.1 KB - savings of 4.9 KB) - https://about.gitlab.com/images/team/FirdausSyeda-crop.jpg WARNING - (28.6 KB, compressed = 23.8 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/helenortel-crop.jpg WARNING - (28.3 KB, compressed = 23.5 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/AishwaryaSubramanian-crop.jpg WARNING - (26.9 KB, compressed = 22.1 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/drivey1-crop.jpg WARNING - (30.3 KB, compressed = 25.5 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/mlindsay-crop.jpg WARNING - (28.9 KB, compressed = 24.2 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/johnblevins-crop.jpg WARNING - (28.6 KB, compressed = 23.9 KB - savings of 4.8 KB) - https://about.gitlab.com/images/team/leematos-crop.jpg WARNING - (23.4 KB, compressed = 18.7 KB - savings of 4.7 KB) - https://about.gitlab.com/images/team/muhamedhuseinbasic-crop.jpg WARNING - (28.9 KB, compressed = 24.3 KB - savings of 4.7 KB) - https://about.gitlab.com/images/team/TanujaParuchuri-crop.jpg WARNING - (28.6 KB, compressed = 23.9 KB - savings of 4.7 KB) - https://about.gitlab.com/images/team/marklapierre-crop.jpg WARNING - (28.7 KB, compressed = 24.1 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/katrinleinweber-crop.jpg WARNING - (25.5 KB, compressed = 20.9 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/LilliePhillips-crop.jpg WARNING - (28.3 KB, compressed = 23.7 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/hmeyer-crop.jpg WARNING - (28.2 KB, compressed = 23.6 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/mhennessy-gl-photo-crop.jpg WARNING - (27.4 KB, compressed = 22.9 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/chloe-crop.jpg WARNING - (27.7 KB, compressed = 23.1 KB - savings of 4.6 KB) - https://about.gitlab.com/images/team/craig-pepper-crop.jpg WARNING - (22.0 KB, compressed = 17.5 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/manojmj-crop.jpg WARNING - (28.7 KB, compressed = 24.2 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/hosseinpursultani-crop.jpg WARNING - (25.7 KB, compressed = 21.2 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/sarahchia-crop.jpg WARNING - (23.9 KB, compressed = 19.4 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/kanwalmatharu-crop.jpg WARNING - (28.0 KB, compressed = 23.5 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/markuskoller-crop.jpg WARNING - (27.8 KB, compressed = 23.3 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/simonwilliams-crop.jpg WARNING - (27.9 KB, compressed = 23.5 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/jbernstein-crop.jpg WARNING - (27.5 KB, compressed = 23.0 KB - savings of 4.5 KB) - https://about.gitlab.com/images/team/michaelsnow-crop.jpg WARNING - (21.6 KB, compressed = 17.2 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/stevenchallis-crop.jpg WARNING - (27.8 KB, compressed = 23.4 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/ericschurter-crop.jpg WARNING - (26.4 KB, compressed = 22.0 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/andrewglidden-crop.jpg WARNING - (23.6 KB, compressed = 19.2 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/brookewilliamson-crop.jpg WARNING - (25.8 KB, compressed = 21.5 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/vicbell-crop.jpg WARNING - (24.4 KB, compressed = 20.1 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/himanshukapoor-crop.jpg WARNING - (26.6 KB, compressed = 22.2 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/patricksteinhardt-crop.jpg WARNING - (23.2 KB, compressed = 18.8 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/acaiazza-crop.jpg WARNING - (24.9 KB, compressed = 20.6 KB - savings of 4.4 KB) - https://about.gitlab.com/images/team/keanonokeefe-crop.jpg WARNING - (24.3 KB, compressed = 19.9 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/Aletha_Alfarania-crop.jpg WARNING - (24.4 KB, compressed = 20.0 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/israelweeks-crop.jpg WARNING - (22.2 KB, compressed = 17.9 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/danielmarquard-crop.jpg WARNING - (25.7 KB, compressed = 21.4 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/haseebkhan1-crop.jpg WARNING - (27.2 KB, compressed = 22.9 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/nicholas-klick-crop.jpg WARNING - (24.9 KB, compressed = 20.6 KB - savings of 4.3 KB) - https://about.gitlab.com/images/team/mario-crop.jpg WARNING - (26.5 KB, compressed = 22.3 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/loriewhitaker-crop.jpg WARNING - (26.4 KB, compressed = 22.1 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/glopezfernandez-crop.jpg WARNING - (23.5 KB, compressed = 19.3 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/davidsmith-crop.jpg WARNING - (25.9 KB, compressed = 21.7 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/simonmansfield-crop.jpg WARNING - (21.1 KB, compressed = 16.9 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/kylesmith-crop.jpg WARNING - (24.1 KB, compressed = 20.0 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/aricbuerer-crop.jpg WARNING - (25.4 KB, compressed = 21.3 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/franciscojavierlopez-crop.jpg WARNING - (23.9 KB, compressed = 19.7 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/smcgivern-crop.jpg WARNING - (25.3 KB, compressed = 21.2 KB - savings of 4.2 KB) - https://about.gitlab.com/images/team/sidreddy-crop.jpg WARNING - (25.7 KB, compressed = 21.5 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/georgekoltsov-crop.jpg WARNING - (23.0 KB, compressed = 18.8 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/cwang-crop.jpg WARNING - (22.6 KB, compressed = 18.4 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/dgriffith-crop.jpg WARNING - (23.6 KB, compressed = 19.5 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/mikemiranda-crop.jpg WARNING - (24.6 KB, compressed = 20.5 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/kaleyjohnson-crop.jpg WARNING - (25.6 KB, compressed = 21.5 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/tuckcodes-crop.jpg WARNING - (23.6 KB, compressed = 19.5 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/igor_gm-crop.jpg WARNING - (25.3 KB, compressed = 21.2 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/derekatwood-crop.jpg WARNING - (25.0 KB, compressed = 20.9 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/lvidemsky-crop.jpg WARNING - (24.9 KB, compressed = 20.8 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/davidhornik-crop.jpg WARNING - (25.7 KB, compressed = 21.6 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/NicoOchoa-crop.jpg WARNING - (24.8 KB, compressed = 20.7 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/kaiarmstrong-crop.jpg WARNING - (25.1 KB, compressed = 21.0 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/astrachan-crop.jpg WARNING - (24.1 KB, compressed = 20.1 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/pharrison-crop.jpg WARNING - (23.7 KB, compressed = 19.6 KB - savings of 4.1 KB) - https://about.gitlab.com/images/team/craignorris-crop.jpg WARNING - (23.6 KB, compressed = 19.6 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/andrewkelly-crop.jpg WARNING - (24.7 KB, compressed = 20.7 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/markloveless-crop.jpg WARNING - (24.6 KB, compressed = 20.6 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/grzegorz-crop.jpg WARNING - (21.3 KB, compressed = 17.3 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/Dash-crop.jpg WARNING - (25.0 KB, compressed = 21.0 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/tomasz-crop.jpg WARNING - (23.5 KB, compressed = 19.5 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/james-crop.jpg WARNING - (23.4 KB, compressed = 19.4 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/trevorknudsen-crop.jpg WARNING - (24.2 KB, compressed = 20.2 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/johnlong-crop.jpg WARNING - (25.5 KB, compressed = 21.5 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/lukebabb-crop.jpg WARNING - (23.9 KB, compressed = 19.9 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/chrismaurer-crop.jpg WARNING - (22.0 KB, compressed = 18.0 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/michaelle-crop.jpg WARNING - (22.8 KB, compressed = 18.9 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/dgruzd-crop.jpg WARNING - (24.1 KB, compressed = 20.2 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/vitormeirelesdesousa-crop.jpg WARNING - (22.9 KB, compressed = 19.0 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/corinapatachia-crop.jpg WARNING - (25.0 KB, compressed = 21.0 KB - savings of 4.0 KB) - https://about.gitlab.com/images/team/mohammedalkobaisy-crop.jpg WARNING - (24.7 KB, compressed = 20.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/michaeljbradley-crop.jpg WARNING - (22.8 KB, compressed = 18.8 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/paulgascouvaillancourt-crop.jpg WARNING - (21.5 KB, compressed = 17.6 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/arickaflowers-crop.jpg WARNING - (23.7 KB, compressed = 19.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/jdalex-crop.jpg WARNING - (23.9 KB, compressed = 20.0 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/peterleitzen-crop.jpg WARNING - (21.8 KB, compressed = 17.8 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/LisavandeKooij-crop.jpg WARNING - (23.2 KB, compressed = 19.3 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/philzona-crop.jpg WARNING - (22.3 KB, compressed = 18.3 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/SaumyaUpadhyaya-crop.jpg WARNING - (24.6 KB, compressed = 20.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/charlieablett-crop.jpg WARNING - (23.5 KB, compressed = 19.6 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/bmiller-crop.jpg WARNING - (24.8 KB, compressed = 20.8 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/taylormurphy-crop.jpg WARNING - (24.0 KB, compressed = 20.1 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/cvillanueva1-crop.jpg WARNING - (22.6 KB, compressed = 18.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/andrewfontaine-crop.jpg WARNING - (23.5 KB, compressed = 19.6 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/collen-crop.jpg WARNING - (22.1 KB, compressed = 18.2 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/juliannegendrano-crop.jpg WARNING - (23.6 KB, compressed = 19.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/Shiloh_Barry-crop.jpg WARNING - (22.1 KB, compressed = 18.2 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/MinsuHan-crop.jpg WARNING - (23.1 KB, compressed = 19.2 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/sloyd-crop.jpg WARNING - (21.5 KB, compressed = 17.6 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/cherylli-crop.jpg WARNING - (23.6 KB, compressed = 19.7 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/monmayuriray-crop.jpg WARNING - (24.3 KB, compressed = 20.4 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/Kathleen_Tam-crop.jpg WARNING - (23.0 KB, compressed = 19.1 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/christielenneville-crop.jpg WARNING - (21.7 KB, compressed = 17.8 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/larissalane-crop.jpg WARNING - (22.8 KB, compressed = 18.9 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/nikola-crop.jpg WARNING - (23.1 KB, compressed = 19.2 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/vickkelkar-crop.jpg WARNING - (23.8 KB, compressed = 20.0 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/BrianGlanz_bglanz_400x400-crop.jpg WARNING - (22.4 KB, compressed = 18.5 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/lilymai-crop.jpg WARNING - (21.3 KB, compressed = 17.4 KB - savings of 3.9 KB) - https://about.gitlab.com/images/team/tonycarella-crop.jpg WARNING - (22.7 KB, compressed = 18.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/stefaniehaynes-crop.jpg WARNING - (21.9 KB, compressed = 18.1 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/samihiltunen-crop.jpg WARNING - (24.4 KB, compressed = 20.5 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/kevenhughes-crop.jpg WARNING - (23.8 KB, compressed = 20.0 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/lienvdsteen-crop.jpg WARNING - (23.5 KB, compressed = 19.6 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/emilysybrant-crop.jpg WARNING - (23.8 KB, compressed = 20.0 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/christinaweaver-crop.jpg WARNING - (23.2 KB, compressed = 19.4 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/iaincamacho-crop.jpg WARNING - (24.3 KB, compressed = 20.4 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/roostakken-crop.jpg WARNING - (21.3 KB, compressed = 17.5 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/nadiasotnikova-crop.jpg WARNING - (23.7 KB, compressed = 19.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/sarahwaldner-crop.jpg WARNING - (19.8 KB, compressed = 16.0 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/johnhope-crop.jpg WARNING - (23.7 KB, compressed = 19.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/vladlenashumilo-crop.jpg WARNING - (24.7 KB, compressed = 20.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/davidfisher-crop.jpg WARNING - (21.3 KB, compressed = 17.4 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/ScottStern-crop.jpg WARNING - (21.1 KB, compressed = 17.3 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/melissarodriguez-crop.jpg WARNING - (22.7 KB, compressed = 18.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/nicholelarue-crop.jpg WARNING - (20.1 KB, compressed = 16.3 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/parulluthra-crop.jpg WARNING - (20.4 KB, compressed = 16.6 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/lyubomirraykov-crop.jpg WARNING - (23.0 KB, compressed = 19.2 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/aliciageaneas-crop.jpg WARNING - (23.3 KB, compressed = 19.5 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/michaelkarampalas-crop.jpg WARNING - (20.6 KB, compressed = 16.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/amandahughes-crop.jpg WARNING - (24.6 KB, compressed = 20.8 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/joshua-crop.jpg WARNING - (19.9 KB, compressed = 16.2 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/alexandrucroitor-crop.jpg WARNING - (20.8 KB, compressed = 17.0 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/jshackelford-crop.jpg WARNING - (23.4 KB, compressed = 19.7 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/marsjajones-crop.jpg WARNING - (22.2 KB, compressed = 18.4 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/susanhill-crop.jpg WARNING - (19.4 KB, compressed = 15.6 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/honoraduncan-crop.jpg WARNING - (20.3 KB, compressed = 16.5 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/erich-crop.jpg WARNING - (20.3 KB, compressed = 16.5 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/tiffanysaunders-crop.jpg WARNING - (23.0 KB, compressed = 19.2 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/mattpetrovick-crop.jpg WARNING - (22.7 KB, compressed = 18.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/vadimrusin-crop.jpg WARNING - (22.6 KB, compressed = 18.9 KB - savings of 3.8 KB) - https://about.gitlab.com/images/team/christopherlefelhocz-crop.jpg WARNING - (22.2 KB, compressed = 18.5 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/vasilii-iakliushin-crop.jpg WARNING - (23.1 KB, compressed = 19.3 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/ZamirMartinsFilho-crop.jpg WARNING - (21.4 KB, compressed = 17.7 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/ericrosenberg-crop.jpg WARNING - (22.5 KB, compressed = 18.7 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/nickwestbury-crop.jpg WARNING - (21.7 KB, compressed = 17.9 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/giulianalucchesi-crop.jpg WARNING - (22.9 KB, compressed = 19.2 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/phillipknorr-crop.jpg WARNING - (23.5 KB, compressed = 19.8 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/AntonSmith-crop.jpg WARNING - (22.4 KB, compressed = 18.7 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/erica-crop.jpg WARNING - (22.8 KB, compressed = 19.1 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/craigbarrett-crop.jpg WARNING - (21.8 KB, compressed = 18.1 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/alex-crop.jpg WARNING - (22.4 KB, compressed = 18.7 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/stanhu-crop.jpg WARNING - (22.0 KB, compressed = 18.4 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/CTeskey-sq-crop.jpg WARNING - (20.4 KB, compressed = 16.7 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/tigerwatson-crop.jpg WARNING - (21.8 KB, compressed = 18.1 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/tyleramos-crop.jpg WARNING - (20.8 KB, compressed = 17.2 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/thiagofigueiro-crop.jpg WARNING - (21.0 KB, compressed = 17.3 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/jrabbits-crop.jpg WARNING - (22.1 KB, compressed = 18.5 KB - savings of 3.7 KB) - https://about.gitlab.com/images/team/gregjohnson-crop.jpg WARNING - (20.6 KB, compressed = 17.0 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/BenjaminMa3-crop.jpg WARNING - (22.9 KB, compressed = 19.3 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/jackbrennan-crop.jpg WARNING - (23.0 KB, compressed = 19.4 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/brittanyrohde-crop.jpg WARNING - (22.2 KB, compressed = 18.5 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/zachrice-crop.jpg WARNING - (21.7 KB, compressed = 18.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/Alexandra_Venter-crop.jpg WARNING - (20.2 KB, compressed = 16.5 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/alexwestbrook-crop.jpg WARNING - (22.1 KB, compressed = 18.4 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/zacbadgley_copy-crop.jpg WARNING - (20.2 KB, compressed = 16.6 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/katherineokpara-crop.jpg WARNING - (21.7 KB, compressed = 18.0 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/davinwalker-crop.jpg WARNING - (19.9 KB, compressed = 16.3 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/belsingh-crop.jpg WARNING - (21.7 KB, compressed = 18.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/kaandemircan-crop.jpg WARNING - (21.8 KB, compressed = 18.2 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/sophiepouliquen-crop.jpg WARNING - (21.7 KB, compressed = 18.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/jamesjohnson-crop.jpg WARNING - (22.7 KB, compressed = 19.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/mayanktahil-crop.jpg WARNING - (22.0 KB, compressed = 18.4 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/johnfeeney-crop.jpg WARNING - (21.9 KB, compressed = 18.3 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/nitin_upadhyay-crop.jpg WARNING - (21.7 KB, compressed = 18.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/scotthampton-crop.jpg WARNING - (21.2 KB, compressed = 17.6 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/jstark_sq-crop.jpg WARNING - (20.6 KB, compressed = 17.0 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/helenadixon-crop.jpg WARNING - (21.9 KB, compressed = 18.3 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/remy-crop.jpg WARNING - (20.2 KB, compressed = 16.7 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/meliavilain-crop.jpg WARNING - (22.6 KB, compressed = 19.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/bjk-crop.jpg WARNING - (20.5 KB, compressed = 16.9 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/kripajoshi-crop.jpg WARNING - (20.7 KB, compressed = 17.1 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/QingyuZhao-crop.jpg WARNING - (22.2 KB, compressed = 18.7 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/Loredana-crop.jpg WARNING - (21.2 KB, compressed = 17.6 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/alexisginsberg-crop.jpg WARNING - (18.9 KB, compressed = 15.3 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/Joe_Miklos_Profile-crop.jpg WARNING - (21.4 KB, compressed = 17.8 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/mitchellnielsen-crop.jpg WARNING - (20.9 KB, compressed = 17.4 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/imrefarkas-crop.jpg WARNING - (20.3 KB, compressed = 16.8 KB - savings of 3.6 KB) - https://about.gitlab.com/images/team/JoeFenter2-crop.jpg WARNING - (20.6 KB, compressed = 17.0 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/kathrynsteffenson-crop.jpg WARNING - (20.6 KB, compressed = 17.1 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/davidplanella-crop.jpg WARNING - (20.4 KB, compressed = 16.9 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/leetickett-crop.jpg WARNING - (20.8 KB, compressed = 17.3 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/sascha_scholing-crop.jpg WARNING - (21.0 KB, compressed = 17.4 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/shemgyll-crop.jpg WARNING - (20.8 KB, compressed = 17.2 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/danielfoley-crop.jpg WARNING - (21.4 KB, compressed = 17.9 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/shinya-crop.jpg WARNING - (20.7 KB, compressed = 17.2 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/jenniferblanco-crop.jpg WARNING - (20.3 KB, compressed = 16.8 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/andrewthomas-crop.jpg WARNING - (21.8 KB, compressed = 18.3 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/pierreattouche-crop.jpg WARNING - (21.5 KB, compressed = 18.0 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/jameson-crop.jpg WARNING - (21.8 KB, compressed = 18.3 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/tavscott-crop.jpg WARNING - (19.5 KB, compressed = 16.0 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/issac_pic-crop.jpg WARNING - (20.8 KB, compressed = 17.4 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/rajatjain-crop.jpg WARNING - (18.1 KB, compressed = 14.6 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/evanwhelchel-crop.jpg WARNING - (20.9 KB, compressed = 17.4 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/rebeccaspainhower400x400-crop.jpg WARNING - (21.0 KB, compressed = 17.5 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/sunjung-crop.jpg WARNING - (20.5 KB, compressed = 17.0 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/michaeleddington-crop.jpg WARNING - (22.0 KB, compressed = 18.5 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/nadiaudalova-crop.jpg WARNING - (19.5 KB, compressed = 16.0 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/pavelshutsin-crop.jpg WARNING - (19.9 KB, compressed = 16.4 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/EmilyChin-crop.jpg WARNING - (20.7 KB, compressed = 17.3 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/bcupini1-crop.jpg WARNING - (20.1 KB, compressed = 16.6 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/doniquesmit-crop.jpg WARNING - (19.5 KB, compressed = 16.1 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/mirandafluharty-crop.jpg WARNING - (21.2 KB, compressed = 17.8 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/amarbayaramarsanaa-crop.jpg WARNING - (20.3 KB, compressed = 16.9 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/fabiopitino-crop.jpg WARNING - (21.9 KB, compressed = 18.4 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/sebastianarcilavalenzuela-crop.jpg WARNING - (21.5 KB, compressed = 18.1 KB - savings of 3.5 KB) - https://about.gitlab.com/images/team/dmishunov-crop.jpg WARNING - (21.0 KB, compressed = 17.5 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/nmezzopera-crop.jpg WARNING - (20.4 KB, compressed = 17.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/grantyoung-crop.jpg WARNING - (20.5 KB, compressed = 17.1 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/robertmarshall-crop.jpg WARNING - (18.9 KB, compressed = 15.4 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/NoutBoctorSmith-crop.jpg WARNING - (20.8 KB, compressed = 17.4 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/kristenreynolds-crop.jpg WARNING - (21.2 KB, compressed = 17.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/justin_haley-crop.jpg WARNING - (22.2 KB, compressed = 18.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/stevexu-crop.jpg WARNING - (19.7 KB, compressed = 16.2 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/dianastanley-crop.jpg WARNING - (19.5 KB, compressed = 16.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/philcalder-crop.jpg WARNING - (21.1 KB, compressed = 17.7 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/davidoregan-crop.jpg WARNING - (18.4 KB, compressed = 15.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/melani_ross-crop.jpg WARNING - (20.9 KB, compressed = 17.5 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/picture_yorick-crop.jpg WARNING - (20.9 KB, compressed = 17.5 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/xiaoheli-crop.jpg WARNING - (20.5 KB, compressed = 17.1 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/markorogge-crop.jpg WARNING - (19.0 KB, compressed = 15.6 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/cristinesotomango-crop.jpg WARNING - (21.2 KB, compressed = 17.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/matthewwalsh-crop.jpg WARNING - (20.6 KB, compressed = 17.2 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/eli-crop.jpg WARNING - (19.8 KB, compressed = 16.4 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/peteraumann-crop.jpg WARNING - (21.1 KB, compressed = 17.6 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/oswaldo-crop.jpg WARNING - (19.7 KB, compressed = 16.3 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/richkahn-crop.jpg WARNING - (21.5 KB, compressed = 18.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/yolandafeldstein-crop.jpg WARNING - (21.2 KB, compressed = 17.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/kevincomoli-crop.jpg WARNING - (19.6 KB, compressed = 16.2 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/ricardoleite-crop.jpg WARNING - (21.3 KB, compressed = 17.9 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/jennytiemann-crop.jpg WARNING - (21.0 KB, compressed = 17.6 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/joerandazzo-crop.jpg WARNING - (20.6 KB, compressed = 17.2 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/rgravel-crop.jpg WARNING - (21.4 KB, compressed = 18.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/natashawoods-crop.jpg WARNING - (21.3 KB, compressed = 17.9 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/caitlinankney-crop.jpg WARNING - (20.8 KB, compressed = 17.4 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/hphilipps-crop.jpg WARNING - (20.4 KB, compressed = 17.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/andreluis-crop.jpg WARNING - (20.2 KB, compressed = 16.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/cassianagudgenov-crop.jpg WARNING - (20.5 KB, compressed = 17.1 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/msmiley-crop.jpg WARNING - (19.7 KB, compressed = 16.4 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/bartekmarnane-crop.jpg WARNING - (21.7 KB, compressed = 18.3 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/fernandoarias-crop.jpg WARNING - (20.4 KB, compressed = 17.0 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/emilycook-crop.jpg WARNING - (20.1 KB, compressed = 16.7 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/DavidMack-crop.jpg WARNING - (19.1 KB, compressed = 15.7 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/abrandl-crop.jpg WARNING - (20.3 KB, compressed = 16.9 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/ronniealfaro-crop.jpg WARNING - (19.0 KB, compressed = 15.7 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/seanarnold-crop.jpg WARNING - (20.6 KB, compressed = 17.2 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/WestleyvandenBerg-crop.jpg WARNING - (20.8 KB, compressed = 17.5 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/barbararoncato-crop.jpg WARNING - (20.9 KB, compressed = 17.5 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/kellyhair-crop.jpg WARNING - (17.9 KB, compressed = 14.6 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/amywaller-crop.jpg WARNING - (20.0 KB, compressed = 16.7 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/debbie-harris-crop.jpg WARNING - (20.3 KB, compressed = 16.9 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/alexgroleau-crop.jpg WARNING - (20.2 KB, compressed = 16.8 KB - savings of 3.4 KB) - https://about.gitlab.com/images/team/miketerhar-crop.jpg WARNING - (20.6 KB, compressed = 17.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/timrizzi-crop.jpg WARNING - (18.9 KB, compressed = 15.6 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/stephsarff-crop.jpg WARNING - (20.1 KB, compressed = 16.7 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/mattkasa-crop.jpg WARNING - (20.1 KB, compressed = 16.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/daisymiclat-crop.jpg WARNING - (20.3 KB, compressed = 17.0 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/hannah-crop.jpg WARNING - (20.1 KB, compressed = 16.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/anntiseo-crop.jpg WARNING - (19.2 KB, compressed = 15.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/edmondchan-crop.jpg WARNING - (20.5 KB, compressed = 17.2 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/Tye_Davis_Profile-crop.jpg WARNING - (18.6 KB, compressed = 15.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/EmilyPlotkin-crop.jpg WARNING - (19.9 KB, compressed = 16.6 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/heathersimpson-crop.jpg WARNING - (19.4 KB, compressed = 16.1 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/aleshiahansen-crop.jpg WARNING - (20.1 KB, compressed = 16.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/dara-crop.jpg WARNING - (18.8 KB, compressed = 15.5 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/Siddharth_Malik-crop.jpg WARNING - (18.5 KB, compressed = 15.2 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/marcshaw-crop.jpg WARNING - (19.2 KB, compressed = 15.9 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/eirinipan-crop.jpg WARNING - (19.4 KB, compressed = 16.1 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/mscarnato-crop.jpg WARNING - (19.6 KB, compressed = 16.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/cathyhilling-crop.jpg WARNING - (19.5 KB, compressed = 16.2 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/sethberger-crop.jpg WARNING - (18.3 KB, compressed = 15.0 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/BlakeChalfantKero-crop.jpg WARNING - (19.6 KB, compressed = 16.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/sarahghp-crop.jpg WARNING - (18.1 KB, compressed = 14.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/MattMalcolm-crop.jpg WARNING - (19.8 KB, compressed = 16.5 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/mikelebeau-crop.jpg WARNING - (17.8 KB, compressed = 14.5 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/tomcooney-crop.jpg WARNING - (20.7 KB, compressed = 17.4 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/jschafer-crop.jpg WARNING - (17.3 KB, compressed = 14.0 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/jeremyjackson-crop.jpg WARNING - (20.4 KB, compressed = 17.1 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/thomasrandolph-crop.jpg WARNING - (18.6 KB, compressed = 15.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/devinsylva-crop.jpg WARNING - (19.1 KB, compressed = 15.8 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/aviellewolfe-crop.jpg WARNING - (19.6 KB, compressed = 16.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/emvonhoffmann-crop.jpg WARNING - (19.5 KB, compressed = 16.3 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/SamerAkkoub-crop.jpg WARNING - (18.2 KB, compressed = 15.0 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/ian_moore-crop.jpg WARNING - (19.9 KB, compressed = 16.6 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/pilarmejia-crop.jpg WARNING - (17.4 KB, compressed = 14.2 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/fredericloudet-crop.jpg WARNING - (18.7 KB, compressed = 15.4 KB - savings of 3.3 KB) - https://about.gitlab.com/images/team/blairlunceford-crop.jpg WARNING - (19.3 KB, compressed = 16.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/chrischiappe-crop.jpg WARNING - (19.4 KB, compressed = 16.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/andreistoicescu-crop.jpg WARNING - (19.3 KB, compressed = 16.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/JessicaMitchell-crop.jpg WARNING - (19.9 KB, compressed = 16.6 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/JoeDavidson-crop.jpg WARNING - (19.2 KB, compressed = 15.9 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/steveabrams-crop.jpg WARNING - (18.8 KB, compressed = 15.6 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/kgodoy-crop.jpg WARNING - (19.5 KB, compressed = 16.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/andyvolpe-crop.jpg WARNING - (19.4 KB, compressed = 16.2 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/mkhan-crop.jpg WARNING - (19.8 KB, compressed = 16.5 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/samanthaming-crop.jpg WARNING - (20.0 KB, compressed = 16.7 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/alekseilipniagov-crop.jpg WARNING - (18.9 KB, compressed = 15.7 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/danielsearles-crop.jpg WARNING - (19.4 KB, compressed = 16.2 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/robertkohnke-crop.jpg WARNING - (19.5 KB, compressed = 16.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/aturinske-crop.jpg WARNING - (19.5 KB, compressed = 16.2 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/robertmay-crop.jpg WARNING - (18.4 KB, compressed = 15.2 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/dcouture-crop.jpg WARNING - (18.5 KB, compressed = 15.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/fabianzimmer-crop.jpg WARNING - (19.5 KB, compressed = 16.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/jramsay-crop.jpg WARNING - (18.3 KB, compressed = 15.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/mrincon-crop.jpg WARNING - (19.3 KB, compressed = 16.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/jasoncolyer-crop.jpg WARNING - (17.5 KB, compressed = 14.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/JordanGoodwin-crop.jpg WARNING - (18.6 KB, compressed = 15.4 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/marcelamirault-crop.jpg WARNING - (19.2 KB, compressed = 16.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/glenmiller-crop.jpg WARNING - (19.3 KB, compressed = 16.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/AndrejKiripolsky-crop.jpg WARNING - (20.2 KB, compressed = 17.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/zeffmorgan-crop.jpg WARNING - (18.5 KB, compressed = 15.4 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/nelsnelson-crop.jpg WARNING - (20.1 KB, compressed = 16.9 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/chrisanderton-crop.jpg WARNING - (19.2 KB, compressed = 16.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/michael-kozono-crop.jpg WARNING - (18.9 KB, compressed = 15.8 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/craigmestel-crop.jpg WARNING - (19.1 KB, compressed = 16.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/johncai-crop.jpg WARNING - (20.3 KB, compressed = 17.1 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/clement-crop.jpg WARNING - (19.1 KB, compressed = 16.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/mattwilson-crop.jpg WARNING - (19.7 KB, compressed = 16.5 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/christinahupy-crop.jpg WARNING - (19.4 KB, compressed = 16.2 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/alexives-crop.jpg WARNING - (19.6 KB, compressed = 16.4 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/michellehodges-crop.jpg WARNING - (17.2 KB, compressed = 14.0 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/ErikaGraves-crop.jpg WARNING - (19.4 KB, compressed = 16.3 KB - savings of 3.2 KB) - https://about.gitlab.com/images/team/nicknguyen-crop.jpg WARNING - (18.3 KB, compressed = 15.2 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/mekstittri-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/matthewbadeau-crop.jpg WARNING - (18.0 KB, compressed = 14.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/SaraKassabian-crop.jpg WARNING - (19.3 KB, compressed = 16.2 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/miguelsilva-crop.jpg WARNING - (18.8 KB, compressed = 15.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/annierooke-crop.jpg WARNING - (19.3 KB, compressed = 16.2 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/markCesario-crop.jpg WARNING - (16.6 KB, compressed = 13.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/aleetabell-crop.jpg WARNING - (16.9 KB, compressed = 13.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/breinmatturro-crop.jpg WARNING - (18.5 KB, compressed = 15.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/ethanstrike-crop.jpg WARNING - (18.0 KB, compressed = 14.8 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/PaulDuffy-crop.jpg WARNING - (17.9 KB, compressed = 14.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/kirstiecook-crop.jpg WARNING - (18.6 KB, compressed = 15.5 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/colinfletcher-crop.jpg WARNING - (17.5 KB, compressed = 14.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/Laura.Shand-crop.jpg WARNING - (18.9 KB, compressed = 15.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/Pyle2-crop.jpg WARNING - (17.7 KB, compressed = 14.5 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/amandarueda-crop.jpg WARNING - (19.7 KB, compressed = 16.6 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/bhavadeep-crop.jpg WARNING - (18.8 KB, compressed = 15.6 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/RREICH_TEAM-crop.jpg WARNING - (19.1 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/jomarquez-crop.jpg WARNING - (18.7 KB, compressed = 15.6 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/sambeckham-crop.jpg WARNING - (17.7 KB, compressed = 14.6 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/Nix_Taharah-crop.jpg WARNING - (16.5 KB, compressed = 13.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/parkerennis-crop.jpg WARNING - (17.9 KB, compressed = 14.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/axil-crop.jpg WARNING - (17.7 KB, compressed = 14.6 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/toddlauver-crop.jpg WARNING - (16.8 KB, compressed = 13.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/erickbajao-crop.jpg WARNING - (17.4 KB, compressed = 14.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/alexanderdietrich-crop.jpg WARNING - (17.2 KB, compressed = 14.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/teaganshurtleff-crop.jpg WARNING - (19.5 KB, compressed = 16.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/erickbanks-crop.jpg WARNING - (19.4 KB, compressed = 16.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/douwe-crop.jpg WARNING - (19.0 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/chrisnightingale-crop.jpg WARNING - (19.1 KB, compressed = 16.0 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/adamhegyi-crop.jpg WARNING - (18.6 KB, compressed = 15.5 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/kristiemcgoldrick-crop.jpg WARNING - (17.9 KB, compressed = 14.8 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/cngo-crop.jpg WARNING - (19.1 KB, compressed = 16.0 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/liammcandrew-crop.jpg WARNING - (19.0 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/brendan-crop.jpg WARNING - (18.4 KB, compressed = 15.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/igordrozdov-crop.jpg WARNING - (19.2 KB, compressed = 16.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/lizcoleman-crop.jpg WARNING - (20.3 KB, compressed = 17.2 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/alyssabelardi-crop.jpg WARNING - (17.5 KB, compressed = 14.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/kevinchasse-crop.jpg WARNING - (19.0 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/SamAwezecHeadshot-crop.jpg WARNING - (19.0 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/williamga-crop.jpg WARNING - (18.4 KB, compressed = 15.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/Ryan_Headshot-crop.jpg WARNING - (17.9 KB, compressed = 14.8 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/anastasiapshegodskaya-crop.jpg WARNING - (17.1 KB, compressed = 14.0 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/luisvazquez-crop.jpg WARNING - (18.8 KB, compressed = 15.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/leopard-crop.jpg WARNING - (19.0 KB, compressed = 15.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/mattnohr-crop.jpg WARNING - (18.4 KB, compressed = 15.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/tristanread-crop.jpg WARNING - (17.3 KB, compressed = 14.2 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/balasankarc-crop.jpg WARNING - (18.0 KB, compressed = 14.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/micaelbergeron-crop.jpg WARNING - (19.2 KB, compressed = 16.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/HeatherFrancisco-crop.jpg WARNING - (17.8 KB, compressed = 14.7 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/AriahCurtis-crop.jpg WARNING - (18.9 KB, compressed = 15.8 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/derekferguson-crop.jpg WARNING - (18.5 KB, compressed = 15.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/paulalmeida-crop.jpg WARNING - (17.4 KB, compressed = 14.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/jeffburrows-crop.jpg WARNING - (18.4 KB, compressed = 15.3 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/romankuba-crop.jpg WARNING - (18.5 KB, compressed = 15.4 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/IMG_20191103_133732_677-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/magdalenasendal-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/Larry-GitLab-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/dj-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/zackcuddy-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/douglasrobbin-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/jeromeuy-crop.jpg WARNING - (17.0 KB, compressed = 13.9 KB - savings of 3.1 KB) - https://about.gitlab.com/images/team/rashadbartholomew-crop.jpg WARNING - (18.3 KB, compressed = 15.2 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/adampestreich-crop.jpg WARNING - (17.1 KB, compressed = 14.0 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/melissaushakov-crop.jpg WARNING - (17.7 KB, compressed = 14.6 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/brandonbrooks-crop.jpg WARNING - (19.1 KB, compressed = 16.0 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/jameslopes-crop.jpg WARNING - (18.5 KB, compressed = 15.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/JennaMcCarthy-crop.jpg WARNING - (18.4 KB, compressed = 15.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/cynthiang-crop.jpg WARNING - (18.2 KB, compressed = 15.1 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/AdrianSmolski-crop.jpg WARNING - (16.8 KB, compressed = 13.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/LSTP-crop.jpg WARNING - (16.9 KB, compressed = 13.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/pedropombeiro-crop.jpg WARNING - (17.9 KB, compressed = 14.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/JesseMuehlbauer-crop.jpg WARNING - (18.6 KB, compressed = 15.6 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/natehouston-crop.jpg WARNING - (18.1 KB, compressed = 15.0 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/emilyring-crop.jpg WARNING - (17.7 KB, compressed = 14.7 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/GaryHoltz-crop.jpg WARNING - (17.8 KB, compressed = 14.7 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/alin-crop.jpg WARNING - (17.8 KB, compressed = 14.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/ggeorgiev_-crop.jpg WARNING - (18.2 KB, compressed = 15.2 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/francispotter-crop.jpg WARNING - (17.8 KB, compressed = 14.7 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/maciejparuszewski-crop.jpg WARNING - (19.8 KB, compressed = 16.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/weimenglee-crop.jpg WARNING - (18.9 KB, compressed = 15.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/PegSheridan-crop.jpg WARNING - (17.9 KB, compressed = 14.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/samantha_lee-crop.jpg WARNING - (17.4 KB, compressed = 14.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/chenje-crop.jpg WARNING - (18.0 KB, compressed = 15.0 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/scottmckee-crop.jpg WARNING - (17.8 KB, compressed = 14.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/farnooshseifoddini-crop.jpg WARNING - (18.2 KB, compressed = 15.2 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/rspeicher-crop.jpg WARNING - (18.3 KB, compressed = 15.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/robynhartough-crop.jpg WARNING - (18.4 KB, compressed = 15.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/matthiaskaeppler-crop.jpg WARNING - (17.2 KB, compressed = 14.2 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/katiegammon-crop.jpg WARNING - (17.7 KB, compressed = 14.7 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/IMG_0824-crop.jpg WARNING - (18.3 KB, compressed = 15.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/brettwalker-crop.jpg WARNING - (18.9 KB, compressed = 15.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/alexandriacurtis-crop.jpg WARNING - (17.3 KB, compressed = 14.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/egrieff-crop.jpg WARNING - (18.3 KB, compressed = 15.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/Goran-crop.jpg WARNING - (17.4 KB, compressed = 14.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/allisonbrowne-crop.jpg WARNING - (18.5 KB, compressed = 15.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/ahmad-crop.jpg WARNING - (17.9 KB, compressed = 14.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/Anja-crop.jpg WARNING - (17.6 KB, compressed = 14.6 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/christendybenko-crop.jpg WARNING - (15.3 KB, compressed = 12.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/lincwilliams-crop.jpg WARNING - (17.3 KB, compressed = 14.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/jeffmartin-crop.jpg WARNING - (16.2 KB, compressed = 13.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/joannamichniewicz-crop.jpg WARNING - (18.5 KB, compressed = 15.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/Julie_Samson-crop.jpg WARNING - (18.5 KB, compressed = 15.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/mathieupeychet-crop.jpg WARNING - (18.5 KB, compressed = 15.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/davidwells-crop.jpg WARNING - (18.1 KB, compressed = 15.1 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/StevenWilson-crop.jpg WARNING - (18.9 KB, compressed = 15.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/eric-crop.jpg WARNING - (16.4 KB, compressed = 13.4 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/Helen_Mason-crop.jpg WARNING - (17.8 KB, compressed = 14.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/justinho-crop.jpg WARNING - (18.1 KB, compressed = 15.1 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/simonpoon-crop.jpg WARNING - (17.9 KB, compressed = 14.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/adammulvany-crop.jpg WARNING - (16.5 KB, compressed = 13.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/jordanbushong-crop.jpg WARNING - (17.7 KB, compressed = 14.7 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/jennybeauregard-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/romerg-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/jarv-crop.jpg WARNING - (16.6 KB, compressed = 13.6 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/harish-ramachandran-crop.jpg WARNING - (17.5 KB, compressed = 14.5 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/russelldickenson-crop.jpg WARNING - (16.8 KB, compressed = 13.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/mikelong-crop.jpg WARNING - (18.1 KB, compressed = 15.1 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/darreneastman-crop.jpg WARNING - (17.6 KB, compressed = 14.6 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/Ross_Mawhinney-crop.jpg WARNING - (17.9 KB, compressed = 14.9 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/donaldcook-crop.jpg WARNING - (17.2 KB, compressed = 14.3 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/dansamson-crop.jpg WARNING - (17.7 KB, compressed = 14.8 KB - savings of 3.0 KB) - https://about.gitlab.com/images/team/clevelandbledsoe-crop.jpg WARNING - (17.5 KB, compressed = 14.6 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/glennperez-crop.jpg WARNING - (17.5 KB, compressed = 14.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/xiaogang-crop.jpg WARNING - (18.6 KB, compressed = 15.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/annapiaseczna-crop.jpg WARNING - (15.6 KB, compressed = 12.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/fionaokeeffe-crop.jpg WARNING - (18.2 KB, compressed = 15.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/rayanaverissimo-crop.jpg WARNING - (17.1 KB, compressed = 14.2 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/paul-crop.jpg WARNING - (17.0 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/stephaniegarza-crop.jpg WARNING - (16.1 KB, compressed = 13.1 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/jarka-crop.jpg WARNING - (17.6 KB, compressed = 14.6 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/jackibauer-crop.jpg WARNING - (18.0 KB, compressed = 15.1 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/rschilling-crop.jpg WARNING - (15.7 KB, compressed = 12.8 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/viktornagy-crop.jpg WARNING - (17.4 KB, compressed = 14.4 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/tiffanyrea-crop.jpg WARNING - (17.5 KB, compressed = 14.6 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/kikeadio-crop.jpg WARNING - (17.8 KB, compressed = 14.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/JenniferKenneySmith-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/vladimirshushlin-crop.jpg WARNING - (18.4 KB, compressed = 15.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/kristofgoossens-crop.jpg WARNING - (16.2 KB, compressed = 13.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/joycetompsett-crop.jpg WARNING - (17.6 KB, compressed = 14.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/stanbrower-crop.jpg WARNING - (16.8 KB, compressed = 13.8 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/ashleymjones-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/nuritzisanchez-crop.jpg WARNING - (18.2 KB, compressed = 15.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/Paulius_Laurinavicius-crop.jpg WARNING - (16.1 KB, compressed = 13.1 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/talilavi-crop.jpg WARNING - (15.2 KB, compressed = 12.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/joaocunha-crop.jpg WARNING - (15.8 KB, compressed = 12.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/asandoval-crop.jpg WARNING - (16.1 KB, compressed = 13.2 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/magdalenafrankiewicz-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/reneverschoor-crop.jpg WARNING - (17.2 KB, compressed = 14.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/raypaik-crop.jpg WARNING - (17.8 KB, compressed = 14.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/simonuhegbu-crop.jpg WARNING - (15.8 KB, compressed = 13.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/jeffcrow-crop.jpg WARNING - (17.3 KB, compressed = 14.4 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/DashaYarmusik-crop.jpg WARNING - (16.6 KB, compressed = 13.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/jeffreysmits-crop.jpg WARNING - (17.2 KB, compressed = 14.3 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/peterhegman-crop.jpg WARNING - (16.3 KB, compressed = 13.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/KelseyCImage-crop.jpg WARNING - (17.3 KB, compressed = 14.4 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/kelleyshirazi-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/jayswain-crop.jpg WARNING - (16.5 KB, compressed = 13.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/harinakshi_pic_for_team_page-crop.jpg WARNING - (15.7 KB, compressed = 12.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/Soares_Melinda-crop.jpg WARNING - (16.8 KB, compressed = 13.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/davidsakamoto-crop.jpg WARNING - (17.0 KB, compressed = 14.1 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/josiannehyson-crop.jpg WARNING - (16.4 KB, compressed = 13.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/anadesai-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/LisaPuzar-crop.jpg WARNING - (16.6 KB, compressed = 13.7 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/danielcroft-crop.jpg WARNING - (16.7 KB, compressed = 13.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/monicajacob-crop.jpg WARNING - (16.3 KB, compressed = 13.4 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/carlosbazan-crop.jpg WARNING - (17.4 KB, compressed = 14.6 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/edslatt-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/antony-saba-crop.jpg WARNING - (17.4 KB, compressed = 14.5 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/bryanmay-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/amyqualls-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/marcia-crop.jpg WARNING - (16.9 KB, compressed = 14.1 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/blyon-crop.jpg WARNING - (16.6 KB, compressed = 13.8 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/christineyoshida-crop.jpg WARNING - (18.6 KB, compressed = 15.8 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/markbell-crop.jpg WARNING - (16.7 KB, compressed = 13.9 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/ashishkuthiala-crop.jpg WARNING - (17.7 KB, compressed = 14.8 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/rwilliams-crop.jpg WARNING - (16.4 KB, compressed = 13.6 KB - savings of 2.9 KB) - https://about.gitlab.com/images/team/timmideker-crop.jpg WARNING - (16.4 KB, compressed = 13.6 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/mayra-crop.jpg WARNING - (16.8 KB, compressed = 13.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/ChunDu-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/kerri-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/samgoldstein-crop.jpg WARNING - (14.3 KB, compressed = 11.4 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/picture_jacob-crop.jpg WARNING - (15.0 KB, compressed = 12.2 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/amberlammers-crop.jpg WARNING - (17.6 KB, compressed = 14.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/lisbethvinueza-crop.jpg WARNING - (18.1 KB, compressed = 15.3 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/nicoleschwartz-crop.jpg WARNING - (17.7 KB, compressed = 14.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/DannyPetronio-crop.jpg WARNING - (17.7 KB, compressed = 14.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/billduncan-crop.jpg WARNING - (16.8 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/chadwoolley-crop.jpg WARNING - (16.9 KB, compressed = 14.1 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/valerie-crop.jpg WARNING - (16.7 KB, compressed = 13.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jenniferparker-crop.jpg WARNING - (16.9 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/johnskarbek-crop.jpg WARNING - (16.1 KB, compressed = 13.3 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/Frederick_Kurniadi-crop.jpg WARNING - (17.3 KB, compressed = 14.4 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/Karen-Kwentus-crop.jpg WARNING - (17.4 KB, compressed = 14.6 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/steventerhar-crop.jpg WARNING - (16.4 KB, compressed = 13.6 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/stevetruong-crop.jpg WARNING - (15.5 KB, compressed = 12.7 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/neilmccorrison-crop.jpg WARNING - (17.3 KB, compressed = 14.5 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/toddbarr-crop.jpg WARNING - (17.3 KB, compressed = 14.5 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/ameliabauerly-crop.jpg WARNING - (15.9 KB, compressed = 13.1 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/dennisappelt-crop.jpg WARNING - (15.7 KB, compressed = 12.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/vijayhawoldar-crop.jpg WARNING - (17.1 KB, compressed = 14.3 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/taylormedlin-crop.jpg WARNING - (17.3 KB, compressed = 14.5 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jamesfargher-crop.jpg WARNING - (14.6 KB, compressed = 11.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/reb-crop.jpg WARNING - (17.9 KB, compressed = 15.1 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/krasimirangelov-crop.jpg WARNING - (16.0 KB, compressed = 13.2 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/georgehoyem-crop.jpg WARNING - (17.5 KB, compressed = 14.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/michellegill-crop.jpg WARNING - (17.7 KB, compressed = 14.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/nicolasdular-crop.jpg WARNING - (16.2 KB, compressed = 13.4 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/yisun-crop.jpg WARNING - (14.9 KB, compressed = 12.1 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/danielgruesso-crop.jpg WARNING - (16.4 KB, compressed = 13.7 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/briecarranza-crop.jpg WARNING - (15.8 KB, compressed = 13.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/paytonburdette-crop.jpg WARNING - (17.1 KB, compressed = 14.3 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/chrismoberly-crop.jpg WARNING - (15.5 KB, compressed = 12.7 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jessicareeder-crop.jpg WARNING - (15.0 KB, compressed = 12.2 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/osnatvider-crop.jpg WARNING - (16.5 KB, compressed = 13.7 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/craigfurman-crop.jpg WARNING - (17.6 KB, compressed = 14.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/seanhoyle-crop.jpg WARNING - (18.1 KB, compressed = 15.3 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/akohlbecker-crop.jpg WARNING - (16.6 KB, compressed = 13.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/christinemachado-crop.jpg WARNING - (17.8 KB, compressed = 15.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/elsje-crop.jpg WARNING - (16.6 KB, compressed = 13.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/dandavison-crop.jpg WARNING - (17.3 KB, compressed = 14.6 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/ash-mckenzie-crop.jpg WARNING - (16.8 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/AmparoLuna-crop.jpg WARNING - (16.6 KB, compressed = 13.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/KristenLawrence.2-crop.jpg WARNING - (16.9 KB, compressed = 14.1 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/adamcohen-crop.jpg WARNING - (16.8 KB, compressed = 14.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/mlockhart-crop.jpg WARNING - (16.5 KB, compressed = 13.7 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/Mdisabatino-crop.jpg WARNING - (16.6 KB, compressed = 13.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/christinesaah-crop.jpg WARNING - (16.2 KB, compressed = 13.4 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/sahbabou-crop.jpg WARNING - (16.2 KB, compressed = 13.5 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jmandell-crop.jpg WARNING - (16.5 KB, compressed = 13.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/sherrodpatching-crop.jpg WARNING - (15.5 KB, compressed = 12.8 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/morganwilkins-crop.jpg WARNING - (14.8 KB, compressed = 12.0 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jen-shin-crop.jpg WARNING - (15.6 KB, compressed = 12.9 KB - savings of 2.8 KB) - https://about.gitlab.com/images/team/jacopobeschi-crop.jpg WARNING - (17.5 KB, compressed = 14.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/kennyjohnston-crop.jpg WARNING - (15.0 KB, compressed = 12.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/pavlostrokov-crop.jpg WARNING - (17.5 KB, compressed = 14.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/suzanneselhorn-crop.jpg WARNING - (16.9 KB, compressed = 14.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/vdzalbo-crop.jpg WARNING - (16.4 KB, compressed = 13.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/andrewwinata-crop.jpg WARNING - (16.6 KB, compressed = 13.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/nilankadesilva-crop.jpg WARNING - (16.6 KB, compressed = 13.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/Katie-evans-crop.jpg WARNING - (16.3 KB, compressed = 13.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/mariaszucs-crop.jpg WARNING - (16.1 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/stephengraham-crop.jpg WARNING - (16.7 KB, compressed = 13.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/timhey-crop.jpg WARNING - (16.5 KB, compressed = 13.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/alexkalderimis-crop.jpg WARNING - (16.7 KB, compressed = 13.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/suripatel-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/benprescott-crop.jpg WARNING - (16.8 KB, compressed = 14.0 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/pedro-crop.jpg WARNING - (15.9 KB, compressed = 13.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/maxwoolf-crop.jpg WARNING - (16.8 KB, compressed = 14.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/ethanurie-crop.jpg WARNING - (15.8 KB, compressed = 13.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/zsuzsannakovacs-crop.jpg WARNING - (15.4 KB, compressed = 12.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/terrichu-crop.jpg WARNING - (17.5 KB, compressed = 14.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/fern-crop.jpg WARNING - (16.8 KB, compressed = 14.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/jamesritchey-crop.jpg WARNING - (15.6 KB, compressed = 12.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/ryandemmer-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/gabriel-crop.jpg WARNING - (16.7 KB, compressed = 14.0 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/mcmahon_gitlab_headshot-crop.jpg WARNING - (17.1 KB, compressed = 14.4 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/toddstadelhofer-crop.jpg WARNING - (15.6 KB, compressed = 12.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/jrreid-crop.jpg WARNING - (17.2 KB, compressed = 14.5 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/laurencebierner-crop.jpg WARNING - (16.9 KB, compressed = 14.2 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/jeffersonjones-crop.jpg WARNING - (15.7 KB, compressed = 13.0 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/steveazzopardi-crop.jpg WARNING - (15.8 KB, compressed = 13.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/shawnsichak-crop.jpg WARNING - (15.8 KB, compressed = 13.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/vladimirten-crop.jpg WARNING - (16.3 KB, compressed = 13.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/rshah-crop.jpg WARNING - (15.4 KB, compressed = 12.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/fabiencatteau-crop.jpg WARNING - (16.9 KB, compressed = 14.2 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/jonscadden-crop.jpg WARNING - (16.4 KB, compressed = 13.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/Godfrey-Sullivan-crop.jpg WARNING - (16.5 KB, compressed = 13.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/kritidsouza-crop.jpg WARNING - (17.3 KB, compressed = 14.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/Gabor-crop.jpg WARNING - (16.2 KB, compressed = 13.5 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/F2F0F7B1-BE0A-4BEC-BF6B-2C78E5C8AEC0_1_201_a-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/ginnyreib-crop.jpg WARNING - (15.3 KB, compressed = 12.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/gerardhickey-crop.jpg WARNING - (16.3 KB, compressed = 13.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/Jada_Rogers-crop.jpg WARNING - (15.7 KB, compressed = 13.0 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/brandonlabuschagne-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/chrisbaus-crop.jpg WARNING - (16.4 KB, compressed = 13.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/cormacfoster-crop.jpg WARNING - (15.5 KB, compressed = 12.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/elliotrushton-crop.jpg WARNING - (15.4 KB, compressed = 12.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/jennynguyen-crop.jpg WARNING - (16.5 KB, compressed = 13.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/mikegreiling-crop.jpg WARNING - (16.2 KB, compressed = 13.5 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/chrisnovello-crop.jpg WARNING - (16.5 KB, compressed = 13.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/brianwald-crop.jpg WARNING - (17.1 KB, compressed = 14.4 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/shanerice-crop.jpg WARNING - (16.2 KB, compressed = 13.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/ashleycampbell-crop.jpg WARNING - (16.3 KB, compressed = 13.6 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/pdeuley-crop.jpg WARNING - (16.1 KB, compressed = 13.5 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/codywest-crop.jpg WARNING - (14.7 KB, compressed = 12.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/peterkaldis-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/kyla-crop.jpg WARNING - (16.3 KB, compressed = 13.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/vladbudica-crop.jpg WARNING - (15.9 KB, compressed = 13.2 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/adrianwaters-crop.jpg WARNING - (16.3 KB, compressed = 13.7 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/cheriholmes-crop.jpg WARNING - (15.5 KB, compressed = 12.8 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/tinasturgis-crop.jpg WARNING - (14.7 KB, compressed = 12.1 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/joshswann-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.7 KB) - https://about.gitlab.com/images/team/charldewit-crop.jpg WARNING - (14.6 KB, compressed = 12.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/nailiaiskhakova-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/oliviergonzalez-crop.jpg WARNING - (16.3 KB, compressed = 13.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/michalwasilewski-crop.jpg WARNING - (15.8 KB, compressed = 13.2 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/joemckairnes-crop.jpg WARNING - (15.3 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/mattclyne-crop.jpg WARNING - (16.2 KB, compressed = 13.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/vanessawegner-crop.jpg WARNING - (15.6 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/kennethaguilar-crop.jpg WARNING - (13.5 KB, compressed = 10.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/sofiavistas-crop.jpg WARNING - (16.2 KB, compressed = 13.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/CGomes-crop.jpg WARNING - (15.6 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/joelkrooswyk-crop.jpg WARNING - (16.0 KB, compressed = 13.4 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/lornawebster-crop.jpg WARNING - (16.3 KB, compressed = 13.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/jensen-stava-crop.jpg WARNING - (15.5 KB, compressed = 12.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/joedrumtra-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/patrickharlan-crop.jpg WARNING - (15.3 KB, compressed = 12.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/jamesaltheide-crop.jpg WARNING - (14.3 KB, compressed = 11.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/susantacker-crop.jpg WARNING - (15.9 KB, compressed = 13.3 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/kurtdusek-crop.jpg WARNING - (15.0 KB, compressed = 12.4 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/Aashish-Sharma-crop.jpg WARNING - (15.6 KB, compressed = 13.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/desireechevalier-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/julialake-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/julietwanjohi-crop.jpg WARNING - (15.7 KB, compressed = 13.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/ShakarraMcGuire-crop.jpg WARNING - (16.0 KB, compressed = 13.3 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/iyoo-crop.jpg WARNING - (15.6 KB, compressed = 13.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/alisharashidi-crop.jpg WARNING - (17.1 KB, compressed = 14.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/AndrzejWieckowski-crop.jpg WARNING - (16.0 KB, compressed = 13.4 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/drewcimino-crop.jpg WARNING - (15.3 KB, compressed = 12.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/aakritigupta-crop.jpg WARNING - (13.7 KB, compressed = 11.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/lbrown-crop.jpg WARNING - (16.1 KB, compressed = 13.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/chris_willis-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/jasonlenny-crop.jpg WARNING - (16.4 KB, compressed = 13.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/arihant-crop.jpg WARNING - (15.1 KB, compressed = 12.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/chrissiebuchanan-crop.jpg WARNING - (15.1 KB, compressed = 12.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/pete_mccracken-crop.jpg WARNING - (16.4 KB, compressed = 13.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/karliakue-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/christiancouder-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/michaelhamilton-crop.jpg WARNING - (15.7 KB, compressed = 13.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/msedlakjakubowski-crop.jpg WARNING - (16.0 KB, compressed = 13.4 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/kelseysteyn-crop.jpg WARNING - (16.1 KB, compressed = 13.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/shreyasagarwal-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/jakelear-crop.jpg WARNING - (14.9 KB, compressed = 12.3 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/emilykyle-crop.jpg WARNING - (15.5 KB, compressed = 13.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/josefinotto-crop.jpg WARNING - (13.6 KB, compressed = 11.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/woosanglee-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/sue_bostrom-crop.jpg WARNING - (15.4 KB, compressed = 12.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/joaopereira-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/Evan-Mathis-crop.jpg WARNING - (15.8 KB, compressed = 13.2 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/dallasreedy-crop.jpg WARNING - (15.7 KB, compressed = 13.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/nickbrandt-crop.jpg WARNING - (15.7 KB, compressed = 13.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/Becka_headshot-crop.jpg WARNING - (15.4 KB, compressed = 12.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/lindsaykerr-crop.jpg WARNING - (16.2 KB, compressed = 13.7 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/dheerajjoshi-crop.jpg WARNING - (15.4 KB, compressed = 12.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/sheilawalsh-crop.jpg WARNING - (15.6 KB, compressed = 13.0 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/dbrown-crop.jpg WARNING - (14.8 KB, compressed = 12.3 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/ricardoamarilla-crop.jpg WARNING - (15.4 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/picture_andrew-crop.jpg WARNING - (15.5 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/suzannaverdin-crop.jpg WARNING - (16.0 KB, compressed = 13.4 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/monicagallettogitlab-crop.jpg WARNING - (15.1 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/asoiron-crop.jpg WARNING - (15.8 KB, compressed = 13.2 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/ramyaauthappan-crop.jpg WARNING - (15.4 KB, compressed = 12.9 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/davidcoy-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/amytroschinetz-crop.jpg WARNING - (14.6 KB, compressed = 12.1 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/RachelHill-crop.jpg WARNING - (15.0 KB, compressed = 12.5 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/igorfrenkel-crop.jpg WARNING - (16.3 KB, compressed = 13.8 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/taylormccaslin-crop.jpg WARNING - (14.8 KB, compressed = 12.3 KB - savings of 2.6 KB) - https://about.gitlab.com/images/team/arranwalker-crop.jpg WARNING - (15.6 KB, compressed = 13.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/alexisdshaw-crop.jpg WARNING - (15.2 KB, compressed = 12.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/HarisDelalic-crop.jpg WARNING - (14.8 KB, compressed = 12.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/amybrandenburg-crop.jpg WARNING - (14.6 KB, compressed = 12.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/alexbuijs-crop.jpg WARNING - (14.5 KB, compressed = 12.0 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/stephenkarpeles-crop.jpg WARNING - (15.4 KB, compressed = 12.9 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/Headshot_dcs-crop.jpg WARNING - (14.1 KB, compressed = 11.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/kristensundberg-crop.jpg WARNING - (15.8 KB, compressed = 13.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/carrienicholson-crop.jpg WARNING - (17.0 KB, compressed = 14.5 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/kevinmckinley-crop.jpg WARNING - (14.5 KB, compressed = 12.0 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/cindy-crop.jpg WARNING - (14.2 KB, compressed = 11.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/lauramontemayor-crop.jpg WARNING - (15.4 KB, compressed = 12.9 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/kengrabowski1-crop.jpg WARNING - (15.8 KB, compressed = 13.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/alexandertanayno-crop.jpg WARNING - (14.7 KB, compressed = 12.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/viviangoetz-crop.jpg WARNING - (15.4 KB, compressed = 12.8 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/oveheigre-crop.jpg WARNING - (14.3 KB, compressed = 11.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/tonysilveira-crop.jpg WARNING - (14.9 KB, compressed = 12.4 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/nicolewilliams-crop.jpg WARNING - (14.8 KB, compressed = 12.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/alancooke-crop.jpg WARNING - (13.9 KB, compressed = 11.4 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/boughtycanton-crop.jpg WARNING - (14.8 KB, compressed = 12.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/pauloakley-crop.jpg WARNING - (14.9 KB, compressed = 12.4 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/claudiacheong-crop.jpg WARNING - (15.2 KB, compressed = 12.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/jpotter1_PHOTO-crop.jpg WARNING - (15.2 KB, compressed = 12.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/patrickbajao-crop.jpg WARNING - (14.6 KB, compressed = 12.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/liborvanc-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/christophergraham-crop.jpg WARNING - (13.6 KB, compressed = 11.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/nataliatepluhina-crop.jpg WARNING - (15.2 KB, compressed = 12.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/MichaelDunninger-crop.jpg WARNING - (14.4 KB, compressed = 11.9 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/malgorzataksionek-crop.jpg WARNING - (14.9 KB, compressed = 12.4 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/byrner-crop.jpg WARNING - (14.7 KB, compressed = 12.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/justinfarris-crop.jpg WARNING - (13.8 KB, compressed = 11.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/jaimemartinez-crop.jpg WARNING - (15.0 KB, compressed = 12.5 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/julianthome-crop.jpg WARNING - (15.6 KB, compressed = 13.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/renehoferichter-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/liammcnally-crop.jpg WARNING - (14.4 KB, compressed = 11.9 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/bruce-crop.jpg WARNING - (15.5 KB, compressed = 13.0 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/jwatson-crop.jpg WARNING - (13.5 KB, compressed = 11.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/leslieblanchard-crop.jpg WARNING - (15.7 KB, compressed = 13.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/markrobinson-crop.jpg WARNING - (14.7 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/cyndi-walsh-crop.jpg WARNING - (15.2 KB, compressed = 12.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/kaitlynchappell-crop.jpg WARNING - (14.6 KB, compressed = 12.1 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/ronaldvanzon-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/matija-crop.jpg WARNING - (15.0 KB, compressed = 12.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/dsharris-crop.jpg WARNING - (14.0 KB, compressed = 11.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/SujeevanVijayakumaran-crop.jpg WARNING - (14.3 KB, compressed = 11.8 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/lauren_barker-crop.jpg WARNING - (14.7 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/jackiemeshell-crop.jpg WARNING - (15.8 KB, compressed = 13.3 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/taurie-crop.jpg WARNING - (15.1 KB, compressed = 12.7 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/adrianofonseca-crop.jpg WARNING - (14.1 KB, compressed = 11.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/joshdowney-crop.jpg WARNING - (15.0 KB, compressed = 12.6 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/chrismayer-crop.jpg WARNING - (14.6 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/magali_bressan-crop.jpg WARNING - (15.3 KB, compressed = 12.8 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/camelliaxueyiyang-crop.jpg WARNING - (14.7 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/caneldem-crop.jpg WARNING - (14.6 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/frederic-caplette-crop.jpg WARNING - (13.9 KB, compressed = 11.5 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/matt_kreuch-crop.jpg WARNING - (14.7 KB, compressed = 12.2 KB - savings of 2.5 KB) - https://about.gitlab.com/images/team/marcusstangl-crop.jpg WARNING - (13.6 KB, compressed = 11.2 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/NikSarosy-crop.jpg WARNING - (15.0 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/cameronmcfarland-crop.jpg WARNING - (15.1 KB, compressed = 12.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kalebhill-crop.jpg WARNING - (14.9 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mikelewis-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/toon-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/rachelappleby-crop.jpg WARNING - (14.2 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/alejandro-crop.jpg WARNING - (15.3 KB, compressed = 12.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/morgensmith-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/dave_lewis-crop.jpg WARNING - (14.9 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/jsalazar-crop.jpg WARNING - (14.7 KB, compressed = 12.3 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mattallen-crop.jpg WARNING - (15.3 KB, compressed = 12.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/marckriz-crop.jpg WARNING - (14.7 KB, compressed = 12.2 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/jacquelinehogue-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/stevegrossman-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/BettiGal-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/jaythomasburrows-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/dhershkovitch-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/ashleyjameson-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/tkuper-crop.jpg WARNING - (13.9 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/bdowney-sq-crop.jpg WARNING - (14.3 KB, compressed = 11.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mikolajwawrzyniak-crop.jpg WARNING - (15.2 KB, compressed = 12.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/nassermohunlol-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/Divya-Vishwanadh-crop.jpg WARNING - (14.1 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/hughchristey-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kasimahmad-crop.jpg WARNING - (15.8 KB, compressed = 13.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/fullsizeoutput_14-crop.jpg WARNING - (14.0 KB, compressed = 11.6 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kylewiebers-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/brettgadberry-crop.jpg WARNING - (14.9 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/arturo-herrero-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/keithsnape-crop.jpg WARNING - (14.9 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/ericbrinkman-crop.jpg WARNING - (14.9 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mcbride-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/julie_manalo-crop.jpg WARNING - (14.7 KB, compressed = 12.3 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/artursalii-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/roberthunt-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/emowry-crop.jpg WARNING - (15.2 KB, compressed = 12.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/martinbruemmer-crop.jpg WARNING - (14.1 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/tonidominique-crop.jpg WARNING - (14.9 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/anoopdawar-crop.jpg WARNING - (14.3 KB, compressed = 11.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/paulokstad-crop.jpg WARNING - (13.9 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/enrique-alcantara-crop.jpg WARNING - (14.6 KB, compressed = 12.2 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/illyaklymov-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kimlock-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kmcknight-crop.jpg WARNING - (10.4 KB, compressed = 8.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/stevemanzuik-crop.jpg WARNING - (13.4 KB, compressed = 11.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/sameerkamani-crop.jpg WARNING - (15.3 KB, compressed = 12.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/camille.dios-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/stellatreas-crop.jpg WARNING - (13.9 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/Srirangan460x460-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mbobin-crop.jpg WARNING - (14.5 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/lucascharles-crop.jpg WARNING - (14.7 KB, compressed = 12.3 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/JamesHarrison-GitLab-crop.jpg WARNING - (14.3 KB, compressed = 11.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/victorbrew-crop.jpg WARNING - (13.3 KB, compressed = 10.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/hannesrosenogger-crop.jpg WARNING - (14.8 KB, compressed = 12.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/briancollins-crop.jpg WARNING - (14.1 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/segolenebouly-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/tanyapazitny-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/juliebyrne-crop.jpg WARNING - (14.0 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/oritgolowinski-crop.jpg WARNING - (15.1 KB, compressed = 12.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/Nicholas_Lomas-crop.jpg WARNING - (14.4 KB, compressed = 12.1 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/craigmsmith-crop.jpg WARNING - (13.8 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/leipert-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/william-chia-crop.jpg WARNING - (12.8 KB, compressed = 10.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/IMG_4276-crop.jpg WARNING - (13.9 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/Alberto_Ramos-crop.jpg WARNING - (13.4 KB, compressed = 11.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/virenrana-crop.jpg WARNING - (13.7 KB, compressed = 11.3 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/calbaker-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/tomplumadore-crop.jpg WARNING - (13.7 KB, compressed = 11.3 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/SeanCarroll-crop.jpg WARNING - (14.8 KB, compressed = 12.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mlutz_headshot-2-crop.jpg WARNING - (11.2 KB, compressed = 8.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/manuelkraft-crop.jpg WARNING - (14.2 KB, compressed = 11.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/drew-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/nourdinelbacha-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/david-kim-crop.jpg WARNING - (15.8 KB, compressed = 13.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/markwood-crop.jpg WARNING - (14.1 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/mattgonzales-crop.jpg WARNING - (13.8 KB, compressed = 11.5 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/ebrown-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/kassioborges-crop.jpg WARNING - (14.3 KB, compressed = 11.9 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/steffenheininger-crop.jpg WARNING - (13.3 KB, compressed = 11.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/RichHancock-crop.jpg WARNING - (11.0 KB, compressed = 8.6 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/ejohnson-crop.jpg WARNING - (14.0 KB, compressed = 11.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/darvasatcher-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/katierogel-crop.jpg WARNING - (15.0 KB, compressed = 12.7 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/vincywilson-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.4 KB) - https://about.gitlab.com/images/team/AasimKhan-crop.jpg WARNING - (14.2 KB, compressed = 11.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/jennielouie-crop.jpg WARNING - (14.3 KB, compressed = 11.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/BryanWiseHSGL-crop.jpg WARNING - (15.2 KB, compressed = 12.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/cindyblake-crop.jpg WARNING - (14.1 KB, compressed = 11.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/darylknopf-crop.jpg WARNING - (15.3 KB, compressed = 13.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/sarahyasonik-crop.jpg WARNING - (13.3 KB, compressed = 10.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/RobertClark.TeamPage.2019-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/ragnarhardarson-crop.jpg WARNING - (13.1 KB, compressed = 10.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/anthonyseguillon-crop.jpg WARNING - (13.5 KB, compressed = 11.2 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/michaelleutz-crop.jpg WARNING - (12.6 KB, compressed = 10.3 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/markrian-crop.jpg WARNING - (11.8 KB, compressed = 9.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/meganodowd-crop.jpg WARNING - (14.4 KB, compressed = 12.1 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/bob-crop.jpg WARNING - (14.4 KB, compressed = 12.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/AmeliaSeow-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/saradavila-crop.jpg WARNING - (14.8 KB, compressed = 12.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/jamesheimbuck-crop.jpg WARNING - (13.8 KB, compressed = 11.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/WilSpillane-crop.jpg WARNING - (14.7 KB, compressed = 12.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/philmckenzie-crop.jpg WARNING - (14.3 KB, compressed = 12.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/bethvanderkolk-crop.jpg WARNING - (14.5 KB, compressed = 12.2 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/reubenpereira-crop.jpg WARNING - (14.3 KB, compressed = 12.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/Nabeel_Bilgrami-crop.jpg WARNING - (14.4 KB, compressed = 12.1 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/gabe-crop.jpg WARNING - (13.0 KB, compressed = 10.7 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/wiamaissaoui-crop.jpg WARNING - (14.1 KB, compressed = 11.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/ryanragozzine-crop.jpg WARNING - (12.8 KB, compressed = 10.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/shanebouchard-crop.jpg WARNING - (12.4 KB, compressed = 10.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/valeriesilverthorne-crop.jpg WARNING - (13.8 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/CarolynBednarz-crop.jpg WARNING - (12.3 KB, compressed = 10.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/cameron-swords-crop.jpg WARNING - (13.6 KB, compressed = 11.3 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/ammaralakkad-crop.jpg WARNING - (14.5 KB, compressed = 12.2 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/aprilhoffbauer-crop.jpg WARNING - (13.1 KB, compressed = 10.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/kristinesetschin-crop.jpg WARNING - (14.1 KB, compressed = 11.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/lauriehowitt-crop.jpg WARNING - (13.1 KB, compressed = 10.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/nadiavatalidis1-crop.jpg WARNING - (13.5 KB, compressed = 11.1 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/ccasella-crop.jpg WARNING - (13.4 KB, compressed = 11.1 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/randygottfried-crop.jpg WARNING - (13.8 KB, compressed = 11.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/mvrachni-crop.jpg WARNING - (14.2 KB, compressed = 11.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/jeromeng-crop.jpg WARNING - (14.3 KB, compressed = 12.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/markwilliams-crop.jpg WARNING - (13.2 KB, compressed = 10.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/vitalyslobodin-crop.jpg WARNING - (13.6 KB, compressed = 11.3 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/vijirao-crop.jpg WARNING - (13.6 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/jeremymatos-crop.jpg WARNING - (12.9 KB, compressed = 10.7 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/petarprokic-crop.jpg WARNING - (13.5 KB, compressed = 11.2 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/joannashih-crop.jpg WARNING - (14.0 KB, compressed = 11.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/thaoyeager-crop.jpg WARNING - (13.6 KB, compressed = 11.3 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/djordjesumenkovic-crop.jpg WARNING - (13.0 KB, compressed = 10.8 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/davidpthomas-crop.jpg WARNING - (14.0 KB, compressed = 11.7 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/davidtacheny-crop.jpg WARNING - (14.0 KB, compressed = 11.7 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/NickPeric-crop.jpg WARNING - (14.2 KB, compressed = 11.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/RobertHyry-crop.jpg WARNING - (13.4 KB, compressed = 11.1 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/bradleyandersen-crop.jpg WARNING - (13.3 KB, compressed = 11.0 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/chrisrennie-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/EdCepulis-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/thomaswoodham-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/jordanng-crop.jpg WARNING - (13.6 KB, compressed = 11.3 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/sophiasimunec-crop.jpg WARNING - (13.2 KB, compressed = 10.9 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/patrickbair-crop.jpg WARNING - (14.8 KB, compressed = 12.6 KB - savings of 2.3 KB) - https://about.gitlab.com/images/team/ushaswaminathan-crop.jpg WARNING - (13.4 KB, compressed = 11.2 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/ralph-kompare-crop.jpg WARNING - (13.8 KB, compressed = 11.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/peterhuynh-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/chris-loudon-crop.jpg WARNING - (13.6 KB, compressed = 11.3 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/alinamihaila-crop.jpg WARNING - (13.9 KB, compressed = 11.7 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/patrickgerhold-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/courtneycote-crop.jpg WARNING - (13.8 KB, compressed = 11.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/tina-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/emilyluehrs-crop.jpg WARNING - (13.7 KB, compressed = 11.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/chasewright-crop.jpg WARNING - (12.2 KB, compressed = 10.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/aevstifeev-crop.jpg WARNING - (12.6 KB, compressed = 10.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/borivojetasovac-crop.jpg WARNING - (13.6 KB, compressed = 11.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/shaunmccann-crop.jpg WARNING - (13.8 KB, compressed = 11.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/sladgrove-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/eko-crop.jpg WARNING - (12.9 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/sheetal-crop.jpg WARNING - (12.8 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/chantalrollison-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/meinac-crop.jpg WARNING - (14.7 KB, compressed = 12.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/brianpiscitelli-crop.jpg WARNING - (13.2 KB, compressed = 11.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jennykline-crop.jpg WARNING - (13.0 KB, compressed = 10.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/cesar_saavedra-crop.jpg WARNING - (14.0 KB, compressed = 11.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/gregmyers-crop.jpg WARNING - (13.6 KB, compressed = 11.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/dparry-crop.jpg WARNING - (13.2 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/DaveGilbert-crop.jpg WARNING - (12.9 KB, compressed = 10.7 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jarekostrowski-crop.jpg WARNING - (12.4 KB, compressed = 10.2 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/ronfrazier-crop.jpg WARNING - (14.2 KB, compressed = 12.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/dhirajbodicherla-crop.jpg WARNING - (12.9 KB, compressed = 10.7 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/dustincollins-crop.jpg WARNING - (13.6 KB, compressed = 11.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/IsraaMahros-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/ronkoster-crop.jpg WARNING - (13.1 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/evapetreska-crop.jpg WARNING - (12.6 KB, compressed = 10.4 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/aakgun-crop.jpg WARNING - (11.7 KB, compressed = 9.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/panos-crop.jpg WARNING - (12.5 KB, compressed = 10.3 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/philipcunningham-crop.jpg WARNING - (13.1 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/douglas-crop.jpg WARNING - (13.9 KB, compressed = 11.7 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/brent_caldwell-crop.jpg WARNING - (13.9 KB, compressed = 11.7 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/Meri_gil_galindo-crop.jpg WARNING - (13.2 KB, compressed = 11.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/AidanPender-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/adamjohnson-crop.jpg WARNING - (13.1 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/philippe.lafoucriere-crop.jpg WARNING - (13.1 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jurbanc-crop.jpg WARNING - (13.7 KB, compressed = 11.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/juanbroullon-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/rebecca-dodd-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jimriley-crop.jpg WARNING - (14.2 KB, compressed = 12.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/adamsmolinski-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/benbodenmiller-crop.jpg WARNING - (12.1 KB, compressed = 9.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/philipwieczorek_square-crop.jpg WARNING - (12.4 KB, compressed = 10.2 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/cwilliams-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/hanifsmithwatson-crop.jpg WARNING - (13.0 KB, compressed = 10.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/mattnguyen-crop.jpg WARNING - (12.8 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jamespetr-crop.jpg WARNING - (12.8 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/priyansureshbabu-crop.jpg WARNING - (13.5 KB, compressed = 11.3 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/timnoah-crop.jpg WARNING - (12.9 KB, compressed = 10.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/dougstull-crop.jpg WARNING - (12.7 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/martin_wortschack-crop.jpg WARNING - (14.0 KB, compressed = 11.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/melissasmolensky-crop.jpg WARNING - (13.3 KB, compressed = 11.2 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/ngeorge-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/kylemann-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/davidfernandez-crop.jpg WARNING - (12.9 KB, compressed = 10.8 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/iroussos-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/hreynolds-crop.jpg WARNING - (13.1 KB, compressed = 11.0 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/KiraAubrey-crop.jpg WARNING - (12.6 KB, compressed = 10.5 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jonburghart-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/Allison_Mueller-crop.jpg WARNING - (12.8 KB, compressed = 10.6 KB - savings of 2.2 KB) - https://about.gitlab.com/images/team/jasongoodman-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/MikeJang-crop.jpg WARNING - (13.1 KB, compressed = 10.9 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/annette-crop.jpg WARNING - (12.3 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Akeela_Logan-crop.jpg WARNING - (13.3 KB, compressed = 11.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/alishan-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Joel-Beck-crop.jpg WARNING - (12.5 KB, compressed = 10.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/thongkuah-crop.jpg WARNING - (13.5 KB, compressed = 11.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/sokunrotanaksrey-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/nickpost-crop.jpg WARNING - (13.3 KB, compressed = 11.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/mattbenzaquen-crop.jpg WARNING - (12.3 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/serena-headshot-crop.jpg WARNING - (14.8 KB, compressed = 12.7 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/MGore-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/phil-hughes-crop.jpg WARNING - (13.0 KB, compressed = 10.8 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/vitalitatarintev-crop.jpg WARNING - (12.2 KB, compressed = 10.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/nicoleprecilla-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/stevecull-crop.jpg WARNING - (13.5 KB, compressed = 11.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/tanle-crop.jpg WARNING - (12.2 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/AndrewMurray-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Brandon_Greenwell-crop.jpg WARNING - (11.7 KB, compressed = 9.5 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/zegerjan-crop.jpg WARNING - (12.8 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/dpduncan-crop.jpg WARNING - (12.8 KB, compressed = 10.7 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Christina_Souleles-crop.jpg WARNING - (13.4 KB, compressed = 11.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/cristalmcclure-crop.jpg WARNING - (13.4 KB, compressed = 11.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/mikhailmazurskiy-crop.jpg WARNING - (14.3 KB, compressed = 12.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/ezekielkigbo-crop.jpg WARNING - (13.3 KB, compressed = 11.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/arinavoytenko-crop.jpg WARNING - (12.6 KB, compressed = 10.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/peterkunkli-crop.jpg WARNING - (12.9 KB, compressed = 10.8 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/ashleypotter-crop.jpg WARNING - (12.5 KB, compressed = 10.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/karenblasing-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/samkerr-crop.jpg WARNING - (13.1 KB, compressed = 11.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/chloeliu-crop.jpg WARNING - (13.0 KB, compressed = 10.9 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/michaellussier-crop.jpg WARNING - (11.6 KB, compressed = 9.5 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/ryancobb-crop.jpg WARNING - (13.6 KB, compressed = 11.5 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/harleydevlin-crop.jpg WARNING - (12.2 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/adamolson-crop.jpg WARNING - (13.1 KB, compressed = 11.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/marleyriser-crop.jpg WARNING - (12.1 KB, compressed = 10.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/furkanayhan-crop.jpg WARNING - (13.4 KB, compressed = 11.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Indre_Kryzeviciene-crop.jpg WARNING - (12.3 KB, compressed = 10.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/johnmay-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/heinrichleeyu-crop.jpg WARNING - (12.2 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/florieguibert-crop.jpg WARNING - (12.3 KB, compressed = 10.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/jackiefraser-crop.jpg WARNING - (12.2 KB, compressed = 10.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/kevinchu-crop.jpg WARNING - (12.5 KB, compressed = 10.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/hannahbhattarai-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/kevinvogt-crop.jpg WARNING - (13.5 KB, compressed = 11.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/markchao-crop.jpg WARNING - (12.6 KB, compressed = 10.5 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/lesliestinson-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/jasonyoung-crop.jpg WARNING - (12.5 KB, compressed = 10.4 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/darbyfrey-crop.jpg WARNING - (13.1 KB, compressed = 11.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/robin_schulman-crop.jpg WARNING - (12.9 KB, compressed = 10.8 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/haileypobanzbw-crop.jpg WARNING - (13.2 KB, compressed = 11.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/Maxim_Chadliev-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/tomatkins-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/jbraughler2-crop.jpg WARNING - (12.5 KB, compressed = 10.5 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/chriscornacchia-crop.jpg WARNING - (13.3 KB, compressed = 11.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/EGonzalez-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/sarah_odonnell-crop.jpg WARNING - (12.1 KB, compressed = 10.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/tristanwilliams-crop.jpg WARNING - (13.3 KB, compressed = 11.2 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/martyfischer-crop.jpg WARNING - (11.9 KB, compressed = 9.8 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/RussellWilson-crop.jpg WARNING - (12.7 KB, compressed = 10.7 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/thiagopresa-crop.jpg WARNING - (12.4 KB, compressed = 10.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/kellymurdock-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/kristofeger-crop.jpg WARNING - (13.4 KB, compressed = 11.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/tracirobinson-crop.jpg WARNING - (12.7 KB, compressed = 10.6 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/amyphillips-crop.jpg WARNING - (13.3 KB, compressed = 11.3 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/dmora-headshot-crop.jpg WARNING - (12.8 KB, compressed = 10.8 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/sanadliaquat-crop.jpg WARNING - (13.1 KB, compressed = 11.1 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/samuelwhite-crop.jpg WARNING - (11.7 KB, compressed = 9.7 KB - savings of 2.1 KB) - https://about.gitlab.com/images/team/matt_mullenweg-crop.jpg WARNING - (13.5 KB, compressed = 11.4 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/trustogor-crop.jpg WARNING - (12.5 KB, compressed = 10.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/TimPoffenbarger-crop.jpg WARNING - (12.6 KB, compressed = 10.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/hordurfreyryngvason-crop.jpg WARNING - (12.6 KB, compressed = 10.6 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/Sarah_McCauley-crop.jpg WARNING - (11.7 KB, compressed = 9.6 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/johnwoods-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/ramakrishnan-crop.jpg WARNING - (13.5 KB, compressed = 11.4 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/betsy-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/mpundsack-crop.jpg WARNING - (12.1 KB, compressed = 10.1 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/seandelea-crop.jpg WARNING - (12.1 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/Aleksandar_Bosnic-crop.jpg WARNING - (12.9 KB, compressed = 10.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/Veethika_Mishra-crop.jpg WARNING - (12.9 KB, compressed = 10.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/mlunoe-crop.jpg WARNING - (11.8 KB, compressed = 9.7 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/juliearmendariz-crop.jpg WARNING - (12.1 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/DavidAstor-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/jprovaznik-crop.jpg WARNING - (12.2 KB, compressed = 10.2 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/SaraHoneycutt-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/susannahreed-crop.jpg WARNING - (11.3 KB, compressed = 9.3 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/DarwinAvatar-crop.jpg WARNING - (12.1 KB, compressed = 10.1 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/athar-crop.jpg WARNING - (11.4 KB, compressed = 9.4 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/Yu-Chen_Hsueh-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/graemegillies-crop.jpg WARNING - (12.3 KB, compressed = 10.3 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/chipdigirolamo-crop.jpg WARNING - (10.5 KB, compressed = 8.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/deandreharris-crop.jpg WARNING - (12.4 KB, compressed = 10.4 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/jamiecarey-crop.jpg WARNING - (11.5 KB, compressed = 9.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/nathanfriend-crop.jpg WARNING - (12.4 KB, compressed = 10.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/mattsalik-crop.jpg WARNING - (12.3 KB, compressed = 10.3 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/changzhengliu-crop.jpg WARNING - (11.1 KB, compressed = 9.1 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/juliandasmarinas-crop.jpg WARNING - (11.8 KB, compressed = 9.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/calebwilliamson-crop.jpg WARNING - (12.9 KB, compressed = 10.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/jakeburden-fe-release-crop.jpg WARNING - (11.9 KB, compressed = 9.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/saikatsarkar-crop.jpg WARNING - (11.6 KB, compressed = 9.7 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/sandlinjames-crop.jpg WARNING - (11.5 KB, compressed = 9.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/michael_walker_pic_square-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/meganwieling-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/hayleyswimelar-crop.jpg WARNING - (11.0 KB, compressed = 9.1 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/shayfleming-crop.jpg WARNING - (10.9 KB, compressed = 8.9 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/joshzimmerman-crop.jpg WARNING - (13.2 KB, compressed = 11.3 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/joseph_valeriano-crop.jpg WARNING - (11.6 KB, compressed = 9.6 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/felipe_artur-crop.jpg WARNING - (11.6 KB, compressed = 9.6 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/willchandler-crop.jpg WARNING - (12.4 KB, compressed = 10.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/AlexanderDemblin-crop.jpg WARNING - (11.4 KB, compressed = 9.5 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/jaclyn-crop.jpg WARNING - (11.6 KB, compressed = 9.6 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/austinregnery-crop.jpg WARNING - (13.0 KB, compressed = 11.0 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/annabel-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/chesternwachukwu-crop.jpg WARNING - (11.1 KB, compressed = 9.1 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/rhendrick-crop.jpg WARNING - (11.2 KB, compressed = 9.2 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/rostrander-crop.jpg WARNING - (12.3 KB, compressed = 10.4 KB - savings of 2.0 KB) - https://about.gitlab.com/images/team/matthewjacobson-crop.jpg WARNING - (12.0 KB, compressed = 10.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/VictorHernandez-crop.jpg WARNING - (11.9 KB, compressed = 10.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/robertparker-crop.jpg WARNING - (11.6 KB, compressed = 9.6 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/rubengovender-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/jelder-crop.jpg WARNING - (11.5 KB, compressed = 9.5 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/olenahoralkoretska-crop.jpg WARNING - (11.5 KB, compressed = 9.6 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/swetha.kashyap-crop.jpg WARNING - (12.6 KB, compressed = 10.6 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/LinkedIn_Photo-crop.jpg WARNING - (11.9 KB, compressed = 10.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/chrisweberjpg-crop.jpg WARNING - (12.4 KB, compressed = 10.4 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/paulslaughter-crop.jpg WARNING - (11.8 KB, compressed = 9.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/lynseysayers-crop.jpg WARNING - (11.2 KB, compressed = 9.2 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/dave-munichiello-crop.jpg WARNING - (12.4 KB, compressed = 10.5 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/Jacie-crop.jpg WARNING - (11.8 KB, compressed = 9.9 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/picture_marin-crop.jpg WARNING - (11.3 KB, compressed = 9.4 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/etiennebaque-crop.jpg WARNING - (11.7 KB, compressed = 9.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/ryanonell-crop.jpg WARNING - (11.8 KB, compressed = 9.9 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/waynehaberpicture-crop.jpg WARNING - (12.4 KB, compressed = 10.5 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/anazir-crop.jpg WARNING - (10.3 KB, compressed = 8.4 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/PhilEncarnacionTeamPageImage-crop.jpg WARNING - (12.3 KB, compressed = 10.4 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/chriscruz-crop.jpg WARNING - (11.1 KB, compressed = 9.2 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/waynezhao-crop.jpg WARNING - (11.8 KB, compressed = 9.9 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/justinboyson-crop.jpg WARNING - (11.2 KB, compressed = 9.3 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/rahimabdullayev-crop.jpg WARNING - (10.9 KB, compressed = 9.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/tonyscafidi-crop.jpg WARNING - (11.1 KB, compressed = 9.2 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/rehab-crop.jpg WARNING - (10.7 KB, compressed = 8.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/mattjamison-crop.jpg WARNING - (11.2 KB, compressed = 9.3 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/Frederiks_HansMFF_3216-crop.jpg WARNING - (11.8 KB, compressed = 9.9 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/conor-brady-crop.jpg WARNING - (10.7 KB, compressed = 8.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/vitaliyklachkov-crop.jpg WARNING - (10.7 KB, compressed = 8.8 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/RonChan-crop.jpg WARNING - (11.6 KB, compressed = 9.7 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/hilaqu-crop.jpg WARNING - (11.5 KB, compressed = 9.7 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/nick-thomas-crop.jpg WARNING - (11.9 KB, compressed = 10.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/jackiegragnola-crop.jpg WARNING - (12.3 KB, compressed = 10.4 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/lorilamb-crop.jpg WARNING - (11.0 KB, compressed = 9.1 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/tonyrighetti-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/davistownsend-crop.jpg WARNING - (10.9 KB, compressed = 9.0 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/davidhong-crop.jpg WARNING - (11.1 KB, compressed = 9.3 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/emilielimaburke-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/johncoghlan-crop.jpg WARNING - (11.6 KB, compressed = 9.7 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/JimTorres-crop.jpg WARNING - (11.3 KB, compressed = 9.5 KB - savings of 1.9 KB) - https://about.gitlab.com/images/team/kamil-crop.jpg WARNING - (11.9 KB, compressed = 10.0 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/rossfuhrman-crop.jpg WARNING - (11.6 KB, compressed = 9.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/joshrector-crop.jpg WARNING - (11.9 KB, compressed = 10.0 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/jplum-crop.jpg WARNING - (10.5 KB, compressed = 8.6 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/angoabubakar-crop.jpg WARNING - (10.6 KB, compressed = 8.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/matthew-nearents-crop.jpg WARNING - (10.2 KB, compressed = 8.4 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/kendramarquart-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/melodymaradiaga-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/sharifbennett-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/jamesmcgrew-crop.jpg WARNING - (11.5 KB, compressed = 9.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/leahanopol-crop.jpg WARNING - (10.6 KB, compressed = 8.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/derekknox-crop.jpg WARNING - (11.4 KB, compressed = 9.6 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/Donita_Farnsworth-crop.jpg WARNING - (12.2 KB, compressed = 10.4 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/mona-crop.jpg WARNING - (10.6 KB, compressed = 8.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/niallcregan-crop.jpg WARNING - (10.6 KB, compressed = 8.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/johnmcguire-crop.jpg WARNING - (11.1 KB, compressed = 9.3 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/jose-ivan-crop.jpg WARNING - (10.8 KB, compressed = 9.0 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/timo-crop.jpg WARNING - (10.8 KB, compressed = 9.0 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/kaunghtetaung-crop.jpg WARNING - (10.5 KB, compressed = 8.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/brentnewton-crop.jpg WARNING - (11.0 KB, compressed = 9.2 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/CMaxim-crop.jpg WARNING - (11.5 KB, compressed = 9.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/igorwiedler-crop.jpg WARNING - (11.9 KB, compressed = 10.1 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/timzallmann-crop.jpg WARNING - (11.4 KB, compressed = 9.6 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/gtsiolis-crop.jpg WARNING - (11.6 KB, compressed = 9.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/itzikgb-crop.jpg WARNING - (10.5 KB, compressed = 8.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/agnesoetama-crop.jpg WARNING - (9.9 KB, compressed = 8.1 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/daneilolsen-crop.jpg WARNING - (11.2 KB, compressed = 9.4 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/matejlatin-crop.jpg WARNING - (10.3 KB, compressed = 8.6 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/sarah-daily-crop.jpg WARNING - (10.8 KB, compressed = 9.1 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/gabeweaver-crop.jpg WARNING - (10.1 KB, compressed = 8.3 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/vladimirklevko-crop.jpg WARNING - (11.5 KB, compressed = 9.8 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/johnrhampton-crop.jpg WARNING - (10.8 KB, compressed = 9.0 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/philippecharriere-crop.jpg WARNING - (10.9 KB, compressed = 9.1 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/MadisonTaft-crop.jpg WARNING - (9.5 KB, compressed = 7.7 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/juliuskvedaras-crop.jpg WARNING - (10.2 KB, compressed = 8.5 KB - savings of 1.8 KB) - https://about.gitlab.com/images/team/michalzajac-crop.jpg WARNING - (10.6 KB, compressed = 8.9 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/maximeorefice-crop.jpg WARNING - (9.8 KB, compressed = 8.1 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/rachelnienaber-crop.jpg WARNING - (10.7 KB, compressed = 9.0 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/claudiabeer-crop.jpg WARNING - (10.8 KB, compressed = 9.0 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/shawnwinters-crop.jpg WARNING - (10.9 KB, compressed = 9.1 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/robnalen-crop.jpg WARNING - (10.9 KB, compressed = 9.2 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/dphelan-crop.jpg WARNING - (10.7 KB, compressed = 8.9 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/joshweatherford-crop.jpg WARNING - (10.9 KB, compressed = 9.2 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/timothytran-crop.jpg WARNING - (10.4 KB, compressed = 8.7 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/michaelpreuss-crop.jpg WARNING - (10.0 KB, compressed = 8.3 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/nickgaskill-crop.jpg WARNING - (10.1 KB, compressed = 8.4 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/willmeek-crop.jpg WARNING - (9.9 KB, compressed = 8.2 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/tomhouston-crop.jpg WARNING - (9.6 KB, compressed = 7.9 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/seanbillow-crop.jpg WARNING - (10.6 KB, compressed = 8.9 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/alinamoise-crop.jpg WARNING - (10.2 KB, compressed = 8.5 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/petedistefano-crop.jpg WARNING - (11.0 KB, compressed = 9.3 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/VladStoianovici-crop.jpg WARNING - (11.0 KB, compressed = 9.3 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/Sameer-crop.jpg WARNING - (10.9 KB, compressed = 9.2 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/kimstithem-crop.jpg WARNING - (10.1 KB, compressed = 8.4 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/ronanoconnor-crop.jpg WARNING - (10.5 KB, compressed = 8.8 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/mattbeadle-crop.jpg WARNING - (10.8 KB, compressed = 9.1 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/vilius-crop.jpg WARNING - (10.7 KB, compressed = 9.0 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/juanjramirez-crop.jpg WARNING - (9.9 KB, compressed = 8.2 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/mark-crop.jpg WARNING - (10.1 KB, compressed = 8.4 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/picture_dmitriy-crop.jpg WARNING - (11.0 KB, compressed = 9.3 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/RobHueston-crop.jpg WARNING - (10.4 KB, compressed = 8.7 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/matt-stamper-crop.jpg WARNING - (10.2 KB, compressed = 8.5 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/beverleyrufener-crop.jpg WARNING - (9.6 KB, compressed = 7.9 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/jsorensen-crop.jpg WARNING - (10.4 KB, compressed = 8.7 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/brandonjung-crop.jpg WARNING - (10.8 KB, compressed = 9.1 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/darrenmurph-crop.jpg WARNING - (9.9 KB, compressed = 8.3 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/dimitrie-crop.jpg WARNING - (10.0 KB, compressed = 8.4 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/brunolazzarin-crop.jpg WARNING - (10.7 KB, compressed = 9.0 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/jeffbeaumont-crop.jpg WARNING - (10.0 KB, compressed = 8.4 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/brooksroyer-crop.jpg WARNING - (10.3 KB, compressed = 8.6 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/tomislavnikic-crop.jpg WARNING - (9.8 KB, compressed = 8.1 KB - savings of 1.7 KB) - https://about.gitlab.com/images/team/komara-crop.jpg WARNING - (10.0 KB, compressed = 8.3 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/antoniomimmo-crop.jpg WARNING - (10.9 KB, compressed = 9.2 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/iliakosenko-crop.jpg WARNING - (10.1 KB, compressed = 8.5 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/jacqueserasmus-crop.jpg WARNING - (10.6 KB, compressed = 9.0 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/vladimirbrodsky-crop.jpg WARNING - (10.3 KB, compressed = 8.7 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/picture_haydn-crop.jpg WARNING - (10.5 KB, compressed = 8.9 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/muhammaddewji-crop.jpg WARNING - (11.3 KB, compressed = 9.7 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/lindsayolson-crop.jpg WARNING - (9.7 KB, compressed = 8.1 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/petegoldberg-crop.jpg WARNING - (10.1 KB, compressed = 8.5 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/rupertdouglas-crop.jpg WARNING - (10.0 KB, compressed = 8.3 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/corinnawiesner-crop.jpg WARNING - (12.0 KB, compressed = 10.4 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/clintonsprauve-crop.jpg WARNING - (9.6 KB, compressed = 8.0 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/GarryHS-crop.jpg WARNING - (10.1 KB, compressed = 8.5 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/michaelscott-crop.jpg WARNING - (9.5 KB, compressed = 7.9 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/pranavpolisetty-crop.jpg WARNING - (9.6 KB, compressed = 8.0 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/johnjeremiah-crop.jpg WARNING - (10.4 KB, compressed = 8.8 KB - savings of 1.6 KB) - https://about.gitlab.com/images/team/luke-duncalfe-crop.jpg WARNING - (9.2 KB, compressed = 7.7 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/Lindsay_Schoenfeld-crop.jpg WARNING - (9.8 KB, compressed = 8.3 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/bastianvanderstel-crop.jpg WARNING - (9.6 KB, compressed = 8.0 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/andygunter-crop.jpg WARNING - (8.9 KB, compressed = 7.4 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/catalinirimie-crop.jpg WARNING - (9.2 KB, compressed = 7.7 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/danjensen-crop.jpg WARNING - (8.7 KB, compressed = 7.2 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/maheshkumar-crop.jpg WARNING - (9.0 KB, compressed = 7.5 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/HugoAzevedo-crop.jpg WARNING - (9.3 KB, compressed = 7.8 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/crystalpoole-crop.jpg WARNING - (8.8 KB, compressed = 7.3 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/jeanduplessis-crop.jpg WARNING - (8.7 KB, compressed = 7.3 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/catarinaferreira-crop.jpg WARNING - (9.6 KB, compressed = 8.1 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/lyle-crop.jpg WARNING - (9.8 KB, compressed = 8.4 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/dangordon-crop.jpg WARNING - (9.4 KB, compressed = 7.9 KB - savings of 1.5 KB) - https://about.gitlab.com/images/team/tomasvik-crop.jpg WARNING - (9.3 KB, compressed = 7.8 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/michaelfriedrich-crop.jpg WARNING - (8.8 KB, compressed = 7.4 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/gronk-crop.jpg WARNING - (8.3 KB, compressed = 6.9 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/scottwilliamson-crop.jpg WARNING - (8.5 KB, compressed = 7.1 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/picture_vsizov-crop.jpg WARNING - (8.5 KB, compressed = 7.1 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/mikenichols-crop.jpg WARNING - (8.8 KB, compressed = 7.4 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/albertsalim-crop.jpg WARNING - (9.9 KB, compressed = 8.5 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/jordimon-crop.jpg WARNING - (8.4 KB, compressed = 7.0 KB - savings of 1.4 KB) - https://about.gitlab.com/images/team/marcelvanremmerden-crop.jpg ``` </details> #### What is your window size, browser, operating system, and versions <!-- Please use the following website to determine your browser specifications and provide a link developers can follow [What is my browser](https://www.whatsmybrowser.org) Example: Chrome 77, macOS 10.15.0, 944px by 977px, https://whatsmybrowser.org/b/MPC757K --> #### What device are you using <!-- Example: Samsung Galaxy S 10 Plus --> #### Have you tried a fresh incognito window? Could this be related to cookies or account type/state? <!-- Examples: * I tried a fresh incognito window & it had no impact. * The problem goes away when using an incognito window. * It only happens when YYYYYY cookies are set to ZZZZZZ. --> #### What browser plugins do you have enabled? <!-- Example: Adblock, noscript, ghostery, safe browsing. Why?: Certain website bugs may be caused by plugins. --> #### What is your geographic location <!-- Why?: Certain bugs may be geographically related. For example, if you're in the European Union, it could be related to GDPR policy and cookies. --> #### What type of network are you connected to? <!-- Examples: * Wired corporate network. * Wifi at home. * Restaurant wifi. * AT&T 4G. --> <!-- If you do not want to ping the website team, please remove the following cc --> /cc @gl-website <!-- These labels will be automatically applied unless you edit or delete the following section -->
2
7,764
52,349,423
2020-06-30 16:24:18.581
Fix firefox issues on comparison table
Broken in firefox: https://about.gitlab.com/devops-tools/bitbucket-vs-gitlab.html
1
7,764
51,541,361
2020-06-29 15:45:55.097
Add setoptions to Marketo forms
## Overview Relates to https://gitlab.com/gitlab-org/customers-gitlab-com/-/issues/1604#note_368526638 #### Briefly describe your request What is going to be added/removed, etc. Per [this recommendation](https://nation.marketo.com/t5/Product-Blogs/Really-finally-winning-the-Marketo-Forms-vs-Tracking-Protection/ba-p/244434), add the following code to our Marketo forms and QA to verify the impact. ``` MktoForms2.setOptions( { formXDPath : "/rs/194-VVC-221/images/marketo-xdframe-relative.html" }); ``` #### Describe why this update is being requested: What problem(s) are you trying to solve? What are the goals? Improve the behavior of privacy-enhanced web browsers _________ ## Project Management #### What is the due date AND WHY? Dates without reason are difficult to prioritize. If there is no due date, please be as specific as possible about a timeframe and need. `No specific due date but the sooner the better since forms directly impact growth.` #### Please identify the directly responsible individual (DRI), stakeholders, and roles <!-- Who should we be asking for questions and reviews? --> |Name|Role| |------|------| | `@j.carey` | DRI | | `@amy.waller` | Marketo tool lead | | `@brandon_lyon` | Marketing web developer | ____________ ## Audience #### Who is primarily looking at this page AND what will they they be doing with it/what do we want them to do? Write specifics AND check off below anything relevant All visitors to about.gitlab.com who interact with a Marketo form ___________ ## Promotion and Measurable Goals #### What are the measurable key performance indicators (KPI)? * `Form completions` * `Self-managed trial signups` ___________ ## Relevant Documents/Information * [Marketo form best practices](https://nation.marketo.com/t5/Product-Blogs/Really-finally-winning-the-Marketo-Forms-vs-Tracking-Protection/ba-p/244434) * [Cookiebot improvements](https://gitlab.com/groups/gitlab-com/-/epics/681). _____________ ## Requestor Checklist * [x] All sections have been filled out * [x] All media and relevant documents have been linked or added * [x] A due date and rationale for the due date has been added * [x] Your team labels have been added _____________ ## Where to regression test Marketo * **Preference center `/company/preference-center/`** * **Self managed trial `/free-trial/self-managed/`** * **Demo `/demo/`** * **Sales `/sales/`** * **Public sector `/solutions/public-sector/`** * **Renewals `/renewals`** * All remote `/company/culture/all-remote/` * Commit event `/events/commit/` * Education `/solutions/education/` * Forms with an A/B test `/just-commit/reduce-cycle-time/` * Resource forms `/resources/whitepaper-DevSecOps-Proactive-security-reduce-risk/` * Webcast (before recording): `/webcast/gitlab-cicd-firebase/` * Webcast (after recording): `/webcast/fintech-developer-forum/` * Developer survey `/developer-survey/` * Marketo webcast before & after webcast happens `/webcast/fintech-developer-forum/` * Contact `/company/contact/` * Blog landing `/blog/` * Blog category `/blog/categories/open-source/`
2