From b5e6cfe2637abc85b18446a10337be66ddcd00e5 Mon Sep 17 00:00:00 2001 From: JuanPabloDiaz Date: Sun, 14 Jul 2024 12:02:40 -0400 Subject: [PATCH 01/12] Squashed commit of the following: commit 4627efc1b27b4b14752b305167ff453b54793c56 Author: JuanPabloDiaz Date: Sun Jul 14 11:52:56 2024 -0400 ready commit a1cfeb4af5d1042e62623198342a7551a48e8279 Author: Juan Diaz Date: Sat Jul 6 12:21:02 2024 -0400 Delete jsoncheck.yml commit 75c561155ea3bf8048dd3ce7d9785bd2928fe273 Author: JuanPabloDiaz Date: Fri Jul 5 13:37:24 2024 -0400 json commit c06b1a8c185a90c0322131caf5b3a0b0f0cc961a Author: JuanPabloDiaz Date: Thu Jul 4 21:11:04 2024 -0400 url test #4 commit 62a9f307427717968fc730f546715136fe660f25 Author: JuanPabloDiaz Date: Thu Jul 4 20:58:13 2024 -0400 testing PR commit dc7c853a33f81aad9e1f7d87d3f2baee71a760be Author: JuanPabloDiaz Date: Thu Jul 4 20:46:02 2024 -0400 chore: Update branch name from test to main commit 3c43860963e2246f2d126aade13018986495ed75 Author: JuanPabloDiaz Date: Thu Jul 4 20:38:54 2024 -0400 Check links from PRs commit a984731728e8c1df0b103051a5fc4bc8c99f6ad9 Author: JuanPabloDiaz Date: Thu Jul 4 17:11:30 2024 -0400 false positives commit f6962bfad390fd4a5d7030b069f1efbea14df93e Author: JuanPabloDiaz Date: Thu Jul 4 17:03:34 2024 -0400 Excluded urls commit be80ddff05514e7f61883cad9de641d341ec6048 Author: JuanPabloDiaz Date: Thu Jul 4 16:40:37 2024 -0400 disable commit 872d94c188d4f42d4cb045f0178ade60e3177c5d Author: JuanPabloDiaz Date: Thu Jul 4 16:40:08 2024 -0400 conferences commit 6e2b197ced6354d7f2e660bcd5642e4f5419128b Author: JuanPabloDiaz Date: Thu Jul 4 16:35:28 2024 -0400 24, 25, 26 commit 1975aeb9579786db2fe582a483ce75e5427aff58 Author: JuanPabloDiaz Date: Thu Jul 4 16:27:44 2024 -0400 json commit 44114586f6c357fb16c4f1452d4afa0d44862440 Author: JuanPabloDiaz Date: Thu Jul 4 16:26:05 2024 -0400 json commit d7021ad4a9643300e73a91fd2e921e9c5c2c4f7e Author: JuanPabloDiaz Date: Thu Jul 4 16:22:13 2024 -0400 check links commit 4984c763947eca9087511fe3b232630303eada3c Author: JuanPabloDiaz Date: Thu Jul 4 16:02:22 2024 -0400 Broken Link Checker --- .github/workflows/check_links.yaml | 59 ++++++++++++++++++++++++++++++ .lycheeignore | 10 +++++ 2 files changed, 69 insertions(+) create mode 100644 .github/workflows/check_links.yaml create mode 100644 .lycheeignore diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml new file mode 100644 index 000000000..6f2092bc9 --- /dev/null +++ b/.github/workflows/check_links.yaml @@ -0,0 +1,59 @@ +name: Check links + +on: + pull_request: + branches: [main] + workflow_dispatch: + schedule: + - cron: '16 2 * * 6' + +jobs: + validate: + runs-on: ubuntu-latest + permissions: + contents: read + issues: write + env: + issue-lookup-label: automated-link-issue + issue-content: ./lychee-out.md + steps: + - uses: actions/checkout@v4 + - name: Restore lychee cache + uses: actions/cache@v4 + with: + path: .lycheecache + key: cache-lychee-${{ github.sha }} + restore-keys: cache-lychee- + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1.10.0 + with: + fail: true + args: --verbose --no-progress './conferences/2024/**/*.json' './conferences/2025/**/*.json' './conferences/2026/**/*.json' --exclude-mail + output: ${{ env.issue-content }} + + # Permissions (issues: read) + - name: 'Look for an existing issue' + if: ${{ failure() }} + id: last-issue + uses: micalevisk/last-issue-action@v2 + # Find the last updated open issue with a `automated-issue` label: + with: + state: open + labels: ${{ env.issue-lookup-label }} + + # Permissions (issues: write) + - name: 'Create a new issue, or update an existing one' + if: ${{ failure() }} + uses: peter-evans/create-issue-from-file@v4 + with: + title: 'docs: Broken links found' + content-filepath: ${{ env.issue-content }} + # Update an existing issue if one was found (issue_number), + # otherwise an empty value creates a new issue: + issue-number: ${{ steps['last-issue']['outputs']['issue-number'] }} + # Add a label(s) that `last-issue` can use to find this issue, + # and any other relevant labels for the issue itself: + labels: | + ${{ env.issue-lookup-label }} + broken-link, docs diff --git a/.lycheeignore b/.lycheeignore new file mode 100644 index 000000000..211d6c08c --- /dev/null +++ b/.lycheeignore @@ -0,0 +1,10 @@ + + +/call-for-papers +/codeOfConduct +/code-of-conduct +/cfp +/coc +https://www.gartner.com/en/conferences/emea/digital-workplace-uk +https://www.gartner.com/en/conferences/na/symposium-us +https://datascience.thepeopleevents.com From 1c1fe9a234a2164b4fbaab689976f4bc18497c9d Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Wed, 14 Aug 2024 17:25:30 +0200 Subject: [PATCH 02/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 6f2092bc9..b1aa6637f 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -49,6 +49,7 @@ jobs: with: title: 'docs: Broken links found' content-filepath: ${{ env.issue-content }} + token: ${{ secrets.BROKEN_LINK }} # Update an existing issue if one was found (issue_number), # otherwise an empty value creates a new issue: issue-number: ${{ steps['last-issue']['outputs']['issue-number'] }} From 849fd9b42bccdbad75e1d17d6890c4d39ac60032 Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 09:56:51 +0200 Subject: [PATCH 03/12] Comment on PR too --- .github/workflows/check_links.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index b1aa6637f..2c4f8ace9 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -31,7 +31,10 @@ jobs: fail: true args: --verbose --no-progress './conferences/2024/**/*.json' './conferences/2025/**/*.json' './conferences/2026/**/*.json' --exclude-mail output: ${{ env.issue-content }} - + - name: Comment Broken Links + uses: marocchino/sticky-pull-request-comment@v2 + with: + path: ${{ env.issue-content }} # Permissions (issues: read) - name: 'Look for an existing issue' if: ${{ failure() }} From 30f1010e125e4392cfc788d68a1f1f19e10143ff Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 09:58:11 +0200 Subject: [PATCH 04/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 2c4f8ace9..7c50e5056 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -34,7 +34,7 @@ jobs: - name: Comment Broken Links uses: marocchino/sticky-pull-request-comment@v2 with: - path: ${{ env.issue-content }} + path: ${{ env.issue-content }} # Permissions (issues: read) - name: 'Look for an existing issue' if: ${{ failure() }} From 4dc8f34af924ea2b78032c3240ee5a31d0933a1a Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 09:59:41 +0200 Subject: [PATCH 05/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 7c50e5056..1d11a5a50 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -32,9 +32,9 @@ jobs: args: --verbose --no-progress './conferences/2024/**/*.json' './conferences/2025/**/*.json' './conferences/2026/**/*.json' --exclude-mail output: ${{ env.issue-content }} - name: Comment Broken Links - uses: marocchino/sticky-pull-request-comment@v2 - with: - path: ${{ env.issue-content }} + uses: marocchino/sticky-pull-request-comment@v2 + with: + path: ${{ env.issue-content }} # Permissions (issues: read) - name: 'Look for an existing issue' if: ${{ failure() }} From ffd9ab04d9c12c2b84fc62556a08ac6827ae72ad Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 10:05:01 +0200 Subject: [PATCH 06/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 1d11a5a50..99e360f9c 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -32,6 +32,7 @@ jobs: args: --verbose --no-progress './conferences/2024/**/*.json' './conferences/2025/**/*.json' './conferences/2026/**/*.json' --exclude-mail output: ${{ env.issue-content }} - name: Comment Broken Links + if: ${{ failure() }} uses: marocchino/sticky-pull-request-comment@v2 with: path: ${{ env.issue-content }} From 7edd15335cbe4b331988784eee6e35d02f83846e Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 10:08:18 +0200 Subject: [PATCH 07/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 99e360f9c..5a47c0413 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -36,6 +36,7 @@ jobs: uses: marocchino/sticky-pull-request-comment@v2 with: path: ${{ env.issue-content }} + GITHUB_TOKEN: ${{ secrets.BROKEN_LINK }} # Permissions (issues: read) - name: 'Look for an existing issue' if: ${{ failure() }} From 3a1285315186a7740cc158c3b4abeb6e9b8adc2c Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 10:58:11 +0200 Subject: [PATCH 08/12] current_year and next_year --- .github/workflows/check_links.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 5a47c0413..f040ec8ae 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -17,6 +17,12 @@ jobs: issue-lookup-label: automated-link-issue issue-content: ./lychee-out.md steps: + - name: Get current year + id: current_year + run: echo "::set-output name=date::$(date +'%Y')" + - name: Get next year + id: next_year + run: echo "::set-output name=date::$(date -d '+1 year' +'%Y')" - uses: actions/checkout@v4 - name: Restore lychee cache uses: actions/cache@v4 From 24df9572532c6fc8681d77866a4bdd477d7d1318 Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 11:05:53 +0200 Subject: [PATCH 09/12] use GITHUB_ENV for CURRENT_YEAR and NEXT_YEAR --- .github/workflows/check_links.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index f040ec8ae..2a6c8d2a6 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -18,11 +18,9 @@ jobs: issue-content: ./lychee-out.md steps: - name: Get current year - id: current_year - run: echo "::set-output name=date::$(date +'%Y')" + run: echo "CURRENT_YEAR=$(date +'%Y')" >> $GITHUB_ENV - name: Get next year - id: next_year - run: echo "::set-output name=date::$(date -d '+1 year' +'%Y')" + run: echo "NEXT_YEAR=$(date -d '+1 year' +'%Y')" >> $GITHUB_ENV - uses: actions/checkout@v4 - name: Restore lychee cache uses: actions/cache@v4 @@ -35,7 +33,7 @@ jobs: uses: lycheeverse/lychee-action@v1.10.0 with: fail: true - args: --verbose --no-progress './conferences/2024/**/*.json' './conferences/2025/**/*.json' './conferences/2026/**/*.json' --exclude-mail + args: --verbose --no-progress './conferences/$CURRENT_YEAR/**/*.json' './conferences/$NEXT_YEAR/**/*.json' --exclude-mail output: ${{ env.issue-content }} - name: Comment Broken Links if: ${{ failure() }} From 150f742ca28f76061b365acfdea7e5d46436ddd6 Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 11:09:44 +0200 Subject: [PATCH 10/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 2a6c8d2a6..ce24fa534 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -33,7 +33,7 @@ jobs: uses: lycheeverse/lychee-action@v1.10.0 with: fail: true - args: --verbose --no-progress './conferences/$CURRENT_YEAR/**/*.json' './conferences/$NEXT_YEAR/**/*.json' --exclude-mail + args: --verbose --no-progress './conferences/${{ $CURRENT_YEAR }}/**/*.json' './conferences/${{ $NEXT_YEAR }}/**/*.json' output: ${{ env.issue-content }} - name: Comment Broken Links if: ${{ failure() }} From a58f95bcfe4debe209478236be52e51da73f29e2 Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 11:12:56 +0200 Subject: [PATCH 11/12] Update check_links.yaml --- .github/workflows/check_links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index ce24fa534..e00ca0b6c 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -33,7 +33,7 @@ jobs: uses: lycheeverse/lychee-action@v1.10.0 with: fail: true - args: --verbose --no-progress './conferences/${{ $CURRENT_YEAR }}/**/*.json' './conferences/${{ $NEXT_YEAR }}/**/*.json' + args: --verbose --no-progress './conferences/${{ env.CURRENT_YEAR }}/**/*.json' './conferences/${{ env.NEXT_YEAR }}/**/*.json' output: ${{ env.issue-content }} - name: Comment Broken Links if: ${{ failure() }} From 8543943aad2292483be1abdb943152c1d1591ad1 Mon Sep 17 00:00:00 2001 From: Christian Grail Date: Thu, 15 Aug 2024 11:57:40 +0200 Subject: [PATCH 12/12] Fix 2024 URLs --- .lycheecache | 935 ++++++++++++++++++++++++++++++ conferences/2024/cpp.json | 20 - conferences/2024/css.json | 9 - conferences/2024/data.json | 38 +- conferences/2024/devops.json | 53 +- conferences/2024/dotnet.json | 27 +- conferences/2024/general.json | 61 -- conferences/2024/java.json | 8 - conferences/2024/javascript.json | 24 - conferences/2024/leadership.json | 14 +- conferences/2024/networking.json | 26 +- conferences/2024/performance.json | 21 - conferences/2024/php.json | 4 - conferences/2024/product.json | 2 +- conferences/2024/python.json | 9 - conferences/2024/rust.json | 9 - conferences/2024/security.json | 10 - conferences/2024/sre.json | 2 +- conferences/2024/tech-comm.json | 12 - conferences/2024/testing.json | 5 - conferences/2024/typescript.json | 2 - 21 files changed, 942 insertions(+), 349 deletions(-) create mode 100644 .lycheecache diff --git a/.lycheecache b/.lycheecache new file mode 100644 index 000000000..abc453cca --- /dev/null +++ b/.lycheecache @@ -0,0 +1,935 @@ +https://www.leadershipateliers.com/barcelona,200,1723715588 +https://pgday.uk/,200,1723715589 +https://docs.google.com/forms/d/e/1FAIpQLSdHBOswhGtvmrZLaeHDwdnksJ4oHCvNG58oTyC5roTNA99Qjw/viewform,200,1723715589 +https://tek.phparch.com/,200,1723715589 +https://www.ocxconf.org/event/778b82cc-6834-48a4-a58e-f883c5a7b8c9/websitePage:77320887-9b93-4211-8865-637a602eb991,200,1723715584 +https://softwarearchitecture.live/,200,1723715586 +https://nordicjs.com/,200,1723715587 +https://www.leadershipateliers.com/berlin,200,1723715588 +https://raysummit.anyscale.com/,200,1723715590 +https://akademy.kde.org/2024/,200,1723715584 +https://conference.ctocraft.com/,200,1723715585 +https://ai4.io/vegas/,200,1723715589 +https://docs.google.com/forms/d/1nUMwcXE936ofNSsSxL-AHJ9_75ZfoMgrYEzFz-VmcaQ,200,1723715589 +https://software-architecture-summit.de/muenchen,200,1723715586 +https://push-conference.com/,200,1723715587 +https://singapore.cityjsconf.org/,200,1723715587 +https://iosconf.sg/,200,1723715584 +https://testistanbul.org/,200,1723715589 +https://webdirections.org/code,200,1723715582 +https://jsconfmx.org/,200,1723715588 +https://zfoh.ch/zurihac2024,200,1723715586 +https://live.symfony.com/2024-paris,200,1723715590 +https://forms.gle/vs8Qk8BJdSjaLFcB7,200,1723715586 +https://ndctechtown.com/,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSfeqfjOglU2yyJtVK7AR5gt_tkby8YVXNCCywIMSc9npGlnLA/viewform,200,1723715588 +https://sessionize.com/enterprise-tech-leadership-summit-us-2024,200,1723715583 +https://sessionize.com/devopsdays-montreal-2024/,200,1723715583 +https://live.symfony.com/2024-berlin,200,1723715590 +https://oideurope2024.openinfra.dev/france,200,1723715583 +https://sessionize.com/developerweek-management-2024,200,1723715585 +https://sessionize.com/api-world-2024,200,1723715582 +https://devopsdays.org/events/2024-los-angeles/welcome/,200,1723715582 +https://www.conf42.com/js2024,200,1723715587 +https://slashnew.tech/,200,1723715586 +https://devopsdays.org/events/2024-kansas-city/welcome/,200,1723715583 +https://bsides-sxb.fr/,200,1723715586 +https://jconfdominicana.org/,200,1723715585 +https://stareast.techwell.com/,200,1723715589 +https://qconferences.com/code-conduct,200,1723715583 +https://swiftleeds.co.uk/conduct,200,1723715583 +https://bsidessf.org/,200,1723715586 +https://www.updateconference.net/,200,1723715582 +https://til-conf.netlify.app/,200,1723715582 +https://raysummit.anyscale.com/flow/anyscale/raysummit2024/callforpapers/login,200,1723715590 +https://conference.ctocraft.com/berlin-2024,200,1723715588 +https://www.camundacon.com/na/,200,1723715587 +https://basta.net/mainz-en,200,1723715582 +https://www.devupconf.org/,200,1723715584 +https://www.govaisummit.com/,200,1723715589 +https://diceurope.org/,200,1723715588 +https://www.tsia.com/conference,200,1723715588 +https://lp.jetbrains.com/intellij-idea-conf-2024,200,1723715583 +https://embeddedvisionsummit.com/,200,1723715589 +https://nofluffjuststuff.com/stlouis,200,1723715585 +https://ciso-mel.coriniumintelligence.com/,200,1723715587 +https://smashingconf.com/antwerp-2024,200,1723715584 +https://devopsdays.org/raleigh,200,1723715583 +https://jsnation.com/,200,1723715587 +https://forms.gle/xu7MJi1GkXTZd8Bi8,200,1723715586 +https://sessionize.com/security-bsides-cdmx-2024,200,1723715586 +https://www.pgday.ch/2024,200,1723715589 +https://www.fstech.co.uk/regtechlive/index.php,200,1723715586 +https://www.eventbrite.co.uk/e/artificial-intelligence-for-geological-modelling-and-mapping-tickets-749228040237,200,1723715589 +https://devopsdays.org/events/2024-tel-aviv/conduct,200,1723715582 +https://reactrally.com/,200,1723715588 +https://www.conf42.com/devsecops2024,200,1723715583 +https://sessionize.com/swampup-2024,200,1723715583 +https://2024.pycon.it/en/call-for-proposals,200,1723715586 +https://internetidentityworkshop.com/,200,1723715588 +https://conf.react.dev/,200,1723715587 +https://cdao-my.coriniumintelligence.com/,200,1723715589 +https://cdao-eu.coriniumintelligence.com/,200,1723715589 +https://fwdays.com/en/event/highload-fwdays-2024,200,1723715582 +https://www.papercall.io/platform-engineering-2024,200,1723715583 +https://devopsdays.org/events/2024-tokyo/conduct,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSdtSib3b3eORN8fG2E2jp718y3enaClKSgPtBWHqrDIy9xJ4A/viewform,200,1723715583 +https://dach.joomladay.org/,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSc7W71NKgvDa9K87QhGjv_B-T7n4XhFQgCcplAkUK6vSCVguA/viewform,200,1723715590 +https://www.powershellsummit.org/,200,1723715583 +https://aavar.org/cybersecurity-conference,200,1723715588 +https://golab.io/,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSck3x5BMryjiYGRQBKpQ4Y5btotKqcMJmH-B1vsiFpUfU0VRg/viewform,200,1723715583 +https://events.linuxfoundation.org/linux-security-summit-europe/,200,1723715586 +https://events.linuxfoundation.org/ai-dev-japan/,200,1723715588 +https://apidays.typeform.com/to/ILJeAaV8#event_name=xxxxx,200,1723715582 +https://jaxlondon.com/contact/,200,1723715584 +https://m3-konferenz.de/llm.php,200,1723715589 +https://pycon.lt/2024,200,1723715586 +https://opensourcecamp.de/,200,1723715583 +https://enterjs.de/code_of_conduct.php,200,1723715587 +https://omt-conf.com/,200,1723715583 +https://www.ai.engineer/worldsfair,200,1723715589 +https://mad-summit.de/muenchen,200,1723715583 +https://data-architecture-uk.coriniumintelligence.com/,200,1723715588 +https://javascript-conference.com/new-york,200,1723715588 +https://cypress.io/,200,1723715589 +https://uberconf.com/home/code_of_conduct,200,1723715584 +https://2024.pgconf.nyc/policies/,200,1723715589 +https://2024.wasmio.tech/codeofconduct/,200,1723715584 +https://www.apidays.global/new-york,200,1723715582 +https://forms.gle/EcuL1hQHRJ3ibPre9,200,1723715586 +https://sessionize.com/incontro-devops-2024,200,1723715582 +https://devopsdays.org/events/2024-minneapolis/welcome/,200,1723715583 +https://greece.cityjsconf.org/,200,1723715588 +https://live2test.com/,200,1723715591 +https://www.apidays.global/london,200,1723715582 +https://reactday.berlin/,200,1723715586 +https://vuejs.amsterdam/,200,1723715587 +https://jsconf.cl/,200,1723715588 +https://2024.connect.tech/,200,1723715588 +https://devoxx.gr/,200,1723715586 +https://jscraftcamp.org/,200,1723715587 +https://productworld.co/,200,1723715589 +https://www.hatchconference.com/,200,1723715588 +https://devworldconference.com/,200,1723715583 +https://starwest.techwell.com/code-conduct,200,1723715589 +https://www.papercall.io/wasmio24,200,1723715584 +https://frontrunners.tech/,200,1723715582 +https://nordicapis.com/events/austin-api-summit-2024,200,1723715582 +https://forms.gle/8qjrqXeXDvZHLBdp8,200,1723715584 +https://merge.berlin/,200,1723715586 +https://devopsdays.org/events/2024-istanbul/welcome/,200,1723715582 +https://aidevsummit.co/,200,1723715590 +https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america,200,1723715582 +https://devopsdayskc.org/,200,1723715583 +https://pixelpioneers.co/events/bristol-2024,200,1723715582 +https://2024.pgconf.de/callforpapers/index.html,200,1723715584 +https://events.linuxfoundation.org/bazelcon/,200,1723715584 +https://uarust.com/#Home,200,1723715588 +https://www.torontomachinelearning.com/,200,1723715589 +https://devdays.lt/,200,1723715582 +https://ux-lx.com/,200,1723715588 +https://devopsdays.org/events/2024-baltimore/welcome/,200,1723715583 +https://fwdays.com/en/event/php-fwdays-2024,200,1723715588 +https://devopsdays.org/events/2024-denver/welcome/,200,1723715582 +https://developer.microsoft.com/reactor/codeofconduct/,200,1723715587 +https://scs.community/summit2024/,200,1723715585 +https://conf.a11yto.com/,200,1723715582 +https://agiletestingdays.com/,200,1723715582 +https://mlconference.ai/munich,200,1723715587 +https://devm.io/jaxnewyork/callforpaper,200,1723715587 +https://sessionize.com/postcon24,200,1723715582 +https://jsconfbp.com/,200,1723715582 +https://www.wearedevelopers.com/world-congress,200,1723715582 +https://gotoams.nl/2024,200,1723715582 +https://heapcon.io/,200,1723715583 +https://community.cncf.io/events/details/cncf-kcd-lima-peru-presents-kcd-lima-peru-2024,200,1723715584 +https://www.beercitycode.com/conduct/,200,1723715584 +https://devopsdays.org/events/2024-philadelphia/conduct,200,1723715583 +https://www.promptux.ai/,200,1723715588 +https://aws-user-group.com.ua/building-applications,200,1723715588 +https://events.linuxfoundation.org/ai-dev-europe/,200,1723715588 +https://sessionize.com/scenic-city-summit-2024,200,1723715583 +https://www.papercall.io/conf42-javascript-2024,200,1723715587 +https://sessionize.com/hayadata-2024,200,1723715589 +https://www.papercall.io/conf42-chaos-engineering-2024,200,1723715586 +https://www.gophercon.co.uk/,200,1723715583 +https://devopsdays.org/events/2024-raleigh/conduct,200,1723715582 +https://www.lambdatest.com/testmuconf-2024,200,1723715583 +https://www.papercall.io/conf42-quantum-computing-2024,200,1723715584 +https://frontend.barcelona/,200,1723715581 +https://2024.europe.jcon.one/,200,1723715584 +https://events.linuxfoundation.org/dpdk-summit-apac/,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSc_xjLBFkK0N1i_r7MgOpw4JMKT7SyapJBRG1jQaiBRfxHTgg/viewform,200,1723715584 +https://www.react.brussels/,200,1723715590 +https://resources.sei.cmu.edu/news-events/events/secure-software-by-design/index.cfm,200,1723715587 +https://archdoc.bettercode.eu/code_of_conduct.php,200,1723715583 +https://hardwear.io/netherlands-2024/register.php,200,1723715586 +https://www.papercall.io/conf42-devsecops-2024,200,1723715582 +https://gnrt.ai/,200,1723715589 +https://rust.bettercode.eu/,200,1723715588 +https://devsummit.infoq.com/conference/boston2024,200,1723715588 +https://airtable.com/apphDmd86uwqL6Riw/shrMHCWCVQK5rbHhz,200,1723715582 +https://bsides.ky/conference-code-of-conduct/,200,1723715589 +https://devopsdays.org/events/2024-raleigh/welcome/,200,1723715583 +https://2024.pgconf.de/,200,1723715584 +https://fest.dev/events/js/krakow-2024,200,1723715588 +https://devm.io/jaxnewyork/contact/#codeofconduct,200,1723715584 +https://www.apidays.global/helsinki_and_north,200,1723715582 +https://cppcon.org/,200,1723715587 +https://nebraskacode.amegala.com/Conduct,200,1723715586 +https://aisca2024.org/,200,1723715582 +https://devoxx.be/,200,1723715585 +https://replay.temporal.io/,200,1723715583 +https://www.papercall.io/conf42-kube-native-2024,200,1723715582 +https://www.papercall.io/conf42-large-language-models-llm-2024,200,1723715589 +https://sessionize.com/micro-frontends-conference-2024,200,1723715587 +https://www.software-quality-days.com/,200,1723715587 +https://devopspro.lt/,200,1723715583 +https://www.papercall.io/serverlessdays-milano-2024#,200,1723715584 +https://jsheroes.io/,200,1723715587 +https://openinfrafoundation.formstack.com/forms/2024_openinfra_days_france_cfp,200,1723715584 +https://devopsdays.org/events/2024-zurich/welcome/,200,1723715582 +https://swiftcraft.uk/,200,1723715583 +https://ndcoslo.com/,200,1723715584 +https://xtremepython.dev/,200,1723715586 +https://2024.wasmio.tech/,200,1723715583 +https://sreday.com/2024-amsterdam,200,1723715587 +https://friendlyrb.com/,200,1723715589 +https://passdatacommunitysummit.com/about/news/2024-calls-for-speakers-volunteers-are-now-open,200,1723715584 +https://acity2024.org/aiaa/index,200,1723715587 +https://www.open-conf.gr/,200,1723715584 +https://sessionize.com/developerweek-latin-america-2024,200,1723715583 +https://www.conf42.com/obs2024,200,1723715586 +https://craft-conf.com/2024,200,1723715583 +https://reactadvanced.com/,200,1723715583 +https://cakefest.org/,200,1723715588 +https://www.product-masterclass.com/events/just-product,200,1723715588 +https://heise-devsec.de/,200,1723715586 +https://codebeamcorunha.es/,200,1723715583 +https://futuristconference.com/,200,1723715584 +https://java.bettercode.eu/code_of_conduct.php?source=0,200,1723715584 +https://turingfest.com/,200,1723715588 +https://conf.vuejs.de/,200,1723715587 +https://cit2024.org/,200,1723715582 +https://icml.cc/,200,1723715589 +https://cppcon.org/codeofconduct/,200,1723715586 +https://www.dotai.io/,200,1723715588 +https://productmanagementfestival.com/,200,1723715590 +https://devopsdays.org/events/2024-austin/conduct,200,1723715583 +https://www.conf42.com/kubenative2024,200,1723715583 +https://swiftcraft.uk/conduct,200,1723715583 +https://websweek.peoplevents.uk/,200,1723715592 +https://devopsvision.io/,200,1723715582 +https://eu.communityovercode.org/,200,1723715584 +https://platformcon.com/,200,1723715583 +https://www.cysecqatar.com/,200,1723715586 +https://www.dataconnectconf.com/,200,1723715589 +https://rust.bettercode.eu/code_of_conduct.php?source=0,200,1723715587 +https://accessibilitydays.it/,200,1723715582 +https://sessionize.com/androidmakers-by-droidcon-2024,200,1723715582 +https://sessionize.com/ai-devsummit-2024,200,1723715588 +https://sessionize.com/wearedevelopers-world-congress-2024,200,1723715582 +https://aisca2024.org/soea/index,200,1723715583 +https://www.forkit.community/events/2024-06-07-rouen,200,1723715584 +https://www.haya-data.com/,200,1723715589 +https://risk-conference.com/,200,1723715586 +https://www.bsideslv.org/,200,1723715587 +https://2024.incontrodevops.it/,200,1723715583 +https://sessionize.com/security-bsides-cayman-islands-2024,200,1723715586 +https://swampup.jfrog.com/,200,1723715582 +https://jax.de/mainz,200,1723715586 +https://enterjs.de/,200,1723715587 +https://flutterconusa.dev/,200,1723715586 +https://www.conf42.com/ce2024,200,1723715586 +http://eurorust.eu/,200,1723715588 +https://berlin.droidcon.com/,200,1723715582 +https://www.developerweek.com/latin-america,200,1723715586 +https://slovenia.jcon.one/,200,1723715583 +https://sessionize.com/nodes-2024,200,1723715585 +https://cit2024.org/submission/index.php,200,1723715582 +https://promcon.io/2024-berlin,200,1723715584 +https://github.com/oss-review-toolkit/ort/wiki/ORT-Community-Days-2024#how-can-i-be-a-speaker-at-the-event,200,1723715586 +https://www.developerweek.com/,200,1723715585 +https://pgday.fr/index.html,200,1723715589 +https://pgday.fr/codedeconduite,200,1723715588 +https://spring.bettercode.eu/code_of_conduct.php,200,1723715584 +https://conference-hall.io/public/event/1GyOS8KvW02suD6jQmjz,200,1723715584 +https://devopsdays.org/events/2024-tokyo/welcome/,200,1723715582 +https://www.developerweek.com/europe/speakers/apply-to-speak/,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSeoXZyODj4PANOc1oWMuhi4AyB-nuZ3AnEIBoFkuhRgZm3jDg/viewform,200,1723715588 +https://net.bettercode.eu/code_of_conduct.php,200,1723715581 +https://www.jsconf.ie/call-for-proposals,200,1723715588 +https://sessionize.com/code-beam-europe-2024,200,1723715583 +https://nullcon.net/berlin-2024,200,1723715583 +https://events.linuxfoundation.org/xen-project-summit/,200,1723715584 +https://www.it-tage.org/,200,1723715584 +https://www.papercall.io/conf42-observability-2024,200,1723715587 +https://nofluffjuststuff.com/boston,200,1723715585 +https://www.unicornsintech.com/uit-summit-24,200,1723715587 +https://www.thetesttribe.com/tribeqonf/,200,1723715590 +https://www.sfscon.it/,200,1723715583 +https://berlincodeofconduct.org/,200,1723715582 +https://www.dianainitiative.org/,200,1723715591 +https://neo4j.com/nodes-2024,200,1723715587 +https://chainreactconf.com/code,200,1723715582 +https://devopsdays.org/events/2024-birmingham-al/welcome/,200,1723715583 +https://webdirections.org/speaking,200,1723715582 +https://www.wearedevelopers.com/events/code100,200,1723715584 +https://2024.matrix.org/,200,1723715584 +https://www.data2day.de/code_of_conduct.php?source=0,200,1723715583 +https://www.eu-startups.com/eu-startups-summit-2024,200,1723715586 +https://nconnect.sk/,200,1723715589 +https://www.oop-konferenz.de/,200,1723715589 +https://rustlab.it/,200,1723715588 +https://www.pgday.ch/2024/#cfs,200,1723715588 +https://futurelondonacademy.co.uk/en/course/ux-and-digital-design,200,1723715588 +https://www.paris-web.fr/,200,1723715582 +https://enterjs.de/react.php,200,1723715587 +https://www.paris-web.fr/code-de-conduite.php,200,1723715583 +https://www.gophercon.co.uk/conduct,200,1723715583 +https://devopsdays.org/events/2024-denver/conduct,200,1723715583 +https://chemnitzer.linux-tage.de/2024/de,200,1723715583 +https://javascript-conference.com/munich,200,1723715587 +https://milan.serverlessdays.io/,200,1723715584 +https://api.bettercode.eu/code_of_conduct.php,200,1723715581 +https://techheads.se/,200,1723715584 +https://codemash.org/codemash-code-conduct/,200,1723715586 +https://phpcon.kagawa.jp/2024,200,1723715589 +https://live.symfony.com/2024-online-january,200,1723715591 +https://nodecongress.com/,200,1723715587 +https://monitorama.com/2024/pdx.html,200,1723715582 +https://sessionize.com/enterprise-tech-leadership-summit-virtual-2024,200,1723715583 +https://devopsdays.org/events/2024-cairo/conduct,200,1723715583 +https://devopsdays.org/events/2024-kansas-city/conduct,200,1723715583 +https://2024.nixcon.org/,200,1723715584 +https://openui5.org/ui5con/germany2024/codeofconduct.html,200,1723715582 +https://techrocks.asia/,200,1723715583 +https://sessionize.com/makeit-jcon-2024,200,1723715583 +https://www.agilealliance.org/agile2024,200,1723715583 +https://www.conf42.com/cloud2024,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSdP8Zin7kaNw_L32HWONGhXoxbnFalh6Hl0YWxE98qW5l0tFg/viewform,200,1723715589 +https://shift.infobip.com/us/code/,200,1723715582 +https://www.aiqualityconference.com/,200,1723715589 +https://blog.carolina.codes/,200,1723715584 +https://2024.pgconf.nyc/,200,1723715589 +https://bigdataldn.com/,200,1723715589 +https://conference.microfrontends.cloud/,200,1723715588 +https://ndclondon.com/about-ndc,200,1723715584 +https://www.continuouslifecycle.de/,200,1723715582 +https://aka.ms/AzureCosmosDBConf,200,1723715587 +https://nordicapis.com/events/platform-summit-2024,200,1723715582 +https://shift.infobip.com/code/,200,1723715583 +https://berlin.droidcon.com/t3-summit,200,1723715589 +https://www.meetup.com/louisville-data-technology-group/events/299453678,200,1723715586 +https://umbracofestival.us/,200,1723715584 +https://gotocph.com/2024,200,1723715584 +https://cpponsea.uk/conduct/,200,1723715586 +https://www.react-native.eu/,200,1723715588 +https://www.mastering-gitops.de/code_of_conduct.php,200,1723715582 +https://letsvisionos24.swiftgg.team/en/CodeOfConduct.html,200,1723715583 +https://cppnorth.ca/,200,1723715586 +https://github.com/JSConfArmenia/conf-19/blob/master/CODE_OF_CONDUCT.md,200,1723715587 +https://vslive.com/pages/harassment.aspx,200,1723715582 +https://forms.gle/aFJk2xHfegCqHW2b9,200,1723715586 +https://www.conf42.com/iot2024,200,1723715586 +https://frontenddesignconference.com/,200,1723715582 +https://qconlondon.com/,200,1723715583 +https://ai4.io/usa/health-and-safety/,200,1723715589 +https://www.lambda.world/,200,1723715583 +https://techleadersummit.io/home/code_of_conduct,200,1723715589 +https://helvetic-ruby.ch/,200,1723715589 +https://devopsdays.org/events/2024-tel-aviv/welcome/,200,1723715583 +https://cypher.aimresearch.co/,200,1723715590 +https://www.buildingiot.de/,200,1723715586 +https://sessionize.com/opensourceday24,200,1723715583 +https://hardwear.io/,200,1723715586 +https://www.automantia.in/,200,1723715588 +https://github.com/stumpsyn/policies/blob/master/citizen_code_of_conduct.md,200,1723715582 +https://www.agileday.it/c4sdetails-en.html,200,1723715583 +https://auc.edu.au/devworld,200,1723715587 +https://www.conf42.com/golang2024,200,1723715583 +https://nztestingconf.nz/,200,1723715590 +https://www.qachallengeaccepted.com/,200,1723715589 +https://europe2024.gosim.org/,200,1723715588 +https://cdao-nordics.coriniumintelligence.com/,200,1723715589 +https://bdxio.fr/,200,1723715584 +https://www.papercall.io/conf42-prompt-engineering-2024,200,1723715589 +https://24.foss-backstage.de/,200,1723715585 +https://2024.pythonbrasil.org.br/,200,1723715586 +https://www.kuppingercole.com/events/eic2024,200,1723715588 +https://docs.google.com/forms/d/e/1FAIpQLSeDNjPCp4iRPcs11xPIn6ikJ3QhliCspbN_5n0SsqIBP-tA8w/viewform,200,1723715585 +https://www.postman.com/legal/community-code-of-conduct/,200,1723715582 +https://moca.camp/en/home-moca2024/index.html,200,1723715586 +https://react.paris/,200,1723715586 +https://xtremejs.dev/,200,1723715588 +https://jchampionsconf.com/,200,1723715585 +https://24.foss-backstage.de/foss-backstage-design/,200,1723715587 +https://www.conf42.com/im2024,200,1723715586 +https://www.ocxconf.org/event/778b82cc-6834-48a4-a58e-f883c5a7b8c9/websitePage:ee47dccb-4092-42fc-b65e-fd61f080e6cb,200,1723715584 +https://events.linuxfoundation.org/kubecon-cloudnativecon-europe,200,1723715582 +https://forms.office.com/r/YjGJ0Xvp1q,200,1723715586 +https://forms.gle/CtiYUbP3JfjyTFzt8,200,1723715588 +https://agiledevopsusa.techwell.com/,200,1723715583 +https://osmc.de/,200,1723715586 +https://necom2024.org/submission/index.php,200,1723715589 +https://sessionize.com/platformcon-2024,200,1723715582 +https://squiggleconf.com/,200,1723715589 +https://www.jsconf.ie/,200,1723715587 +https://kotlinleeds.co.uk/,200,1723715583 +https://opensourcecamp.de/verhaltenskodex/,200,1723715583 +https://ndcsydney.com/,200,1723715584 +https://events.linuxfoundation.org/kubecon-cloudnativecon-india/,200,1723715582 +https://events.linuxfoundation.org/wasmcon,200,1723715584 +https://qconsf.com/,200,1723715583 +https://meenterpriseai.com/sa,200,1723715586 +https://conference.eurostarsoftwaretesting.com/anti-harassment-policy/,200,1723715582 +https://phpconference.com/munich,200,1723715589 +https://meenterpriseai.com/sa/,200,1723715584 +https://cpponline.uk/,200,1723715587 +https://airtable.com/shrHrfEemCI1hunXd,200,1723715584 +https://www.portaltalks.io/,200,1723715583 +https://www.airisksummit.com/,200,1723715587 +https://www.thedevopsconference.com/,200,1723715583 +https://sessionize.com/dpc24,200,1723715588 +https://entwickler-konferenz.de/de,200,1723715589 +https://golangconf.ru/,200,1723715583 +https://www.pnsqc.org/author_resources.php,200,1723715589 +https://icaita2024.org/cbw/index,200,1723715586 +https://www.testautomationdays.com/,200,1723715590 +https://software-architecture-summit.de/berlin,200,1723715584 +https://forms.gle/Yq3WP7dq2o4fEkgE6,200,1723715584 +https://www.conf42.com/quantum2024,200,1723715584 +https://www.phpconference.co.uk/conduct/,200,1723715588 +https://www.womentech.net/women-tech-conference,200,1723715586 +https://authenticon.io/,200,1723715588 +https://sessionize.com/jconf-2024,200,1723715585 +https://smashingconf.com/ny-2024,200,1723715583 +https://devopscon.io/singapore,200,1723715583 +https://devopsdays.org/events/2024-geneva/propose,200,1723715583 +https://gsas.io/,200,1723715584 +https://embedded.qatest.org/,200,1723715591 +https://devopsdays.org/events/2024-halifax/welcome/,200,1723715583 +https://www.product-masterclass.com/legal/terms-and-conditions,200,1723715588 +https://forms.gle/cVVXvVZC3zdRsWwG7,200,1723715588 +https://festival.1e9.community/english,200,1723715583 +https://act.yapc.eu/gpw2024,200,1723715586 +https://jdd.org.pl/,200,1723715583 +https://forms.gle/anQx9Ct7CsrrZwur9,200,1723715586 +https://appjs.co/,200,1723715588 +https://it-security-summit.de/,200,1723715582 +https://utahjs.com/conduct,200,1723715588 +https://www.p99conf.io/,200,1723715588 +https://devopsjsconf.com/,200,1723715582 +https://uarust.com/,200,1723715588 +https://swiftleeds.co.uk/,200,1723715583 +https://www.uxyall.org/,200,1723715588 +https://uberconf.com/,200,1723715584 +https://apiconference.net/london,200,1723715582 +https://www.usenix.org/conference/srecon24americas,200,1723715586 +https://fwdays.com/en/event/dotnet-fwdays-2024,200,1723715582 +https://devopsdays.org/events/2024-seattle/conduct,200,1723715582 +https://webdirections.org/dev-summit/,200,1723715582 +https://2024.phpday.it/,200,1723715588 +https://uxpa2024.org/,200,1723715588 +https://summit.graphql.com/,200,1723715582 +https://devopsdays.org/events/2024-istanbul/conduct,200,1723715582 +https://github.com/oss-review-toolkit/.github/blob/main/CODE_OF_CONDUCT.md,200,1723715586 +https://www.globalaishow.com/,200,1723715587 +https://www.developerweek.com/cloudx,200,1723715587 +https://www.ocxconf.org/,200,1723715585 +https://devopsdays.org/events/2024-geneva/conduct,200,1723715582 +https://apac.data2030summit.com/,200,1723715589 +https://www.conf42.com/rustlang2024,200,1723715588 +https://spring.bettercode.eu/,200,1723715584 +https://laracon.eu/,200,1723715588 +https://webinale.de/en,200,1723715589 +https://devopsdays.com.ua/,200,1723715584 +https://devops.barcelona/,200,1723715582 +https://pycon.lt/2024/call-for-proposals,200,1723715586 +https://serverless-architecture.io/london,200,1723715589 +https://docs.google.com/forms/d/e/1FAIpQLSdccia2sNblqLaCFpwONao35vxpNSkSp6wwoN3lqXpHyKUacA/viewform,200,1723715587 +https://www.thetesttribe.com/testflix/,200,1723715590 +https://sessionize.com/web-summer-camp-2024,200,1723715587 +https://internetidentityworkshop.com/engagement-guidelines/,200,1723715588 +https://github.com/djangocon/2024.djangocon.us/blob/main/CODE_OF_CONDUCT.md,200,1723715586 +https://2024.pycon.co/en,200,1723715587 +https://2024.pgconf.dev/,200,1723715589 +https://jsheroes.io/speak,200,1723715587 +https://www.civo.com/navigate/europe,200,1723715583 +https://2024.djangocon.us/speaking/,200,1723715586 +https://docs.google.com/forms/d/e/1FAIpQLSePbiKSSOLKQOJqG65ifQ0KtY1dsqPqA7N0pu9QY1bK1-ciDQ/viewform,200,1723715586 +https://automation.eurostarsoftwaretesting.com/Tickets,200,1723715589 +https://gen-aishow.com/,200,1723715589 +https://www.nvidia.com/gtc,200,1723715589 +https://sessionize.com/developerweek-2024,200,1723715584 +https://testcon.lt/,200,1723715589 +https://www.automantia.in/aiam24-munich,200,1723715589 +https://2024.pycon.de/,200,1723715586 +https://amplify.abstracta.us/,200,1723715584 +https://www.spiceworks.com/spiceworld,200,1723715590 +https://www.data2day.de/,200,1723715582 +https://forms.gle/Vp7df4UHcCPHL1MCA,200,1723715588 +https://conf.11ty.dev/,200,1723715582 +https://utahjs.com/conference,200,1723715588 +https://devopsdays.org/events/2024-zurich/conduct,200,1723715582 +https://devopsdays.org/events/2024-los-angeles/conduct,200,1723715582 +https://2024.osday.dev/,200,1723715584 +https://sessionize.com/open-conf-2024,200,1723715585 +https://www.kcdc.info/,200,1723715584 +https://handsontesting.com/,200,1723715589 +https://cdao-nz.coriniumintelligence.com/,200,1723715589 +https://smashingconf.com/codeofconduct,200,1723715584 +https://rubyconf.in/,200,1723715589 +https://www.internet2conf.com/,200,1723715583 +https://designmatters.io/wp-content/uploads/sites/24/2023/12/Code-of-Conduct-24.pdf,200,1723715588 +https://ti.to/crafthub/compass-tech-summit-2024,200,1723715589 +https://sreday.com/2024-london,200,1723715582 +https://2024.pgconf.eu/,200,1723715589 +https://sessionize.com/code-beam-corunha-2024,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSdBbHhAW75hY5hhCqV0NFcyYzo_XuJVROG5tu2ZZ__HlAan3w/viewform,200,1723715589 +https://docs.google.com/forms/d/e/1FAIpQLScLx5ROANCEzC47EdVVDv2hcOxZCMfZjvkPyPdCPWwL9QOCJA/viewform,200,1723715587 +https://2024.berlinbuzzwords.de/,200,1723715589 +https://www.conf42.com/sre2024,200,1723715586 +https://www.usenix.org/conference/srecon24americas/call-for-participation,200,1723715586 +https://techleadersummit.io/,200,1723715588 +https://jsnation.us/,200,1723715586 +https://conference.mlinpl.org/,200,1723715589 +https://sessionize.com/cloudx-2024,200,1723715582 +https://2024.wrocloverb.com/,200,1723715589 +https://nofluffjuststuff.com/madison,200,1723715585 +https://javascript-conference.com/san-diego,200,1723715588 +https://futurefrontend.com/,200,1723715588 +https://cssday.nl/2024,200,1723715582 +https://conferences.isaqb.org/software-architecture-gathering,200,1723715582 +https://events.linuxfoundation.org/kubeday-colombia/,200,1723715582 +https://www.reactmiami.com/,200,1723715587 +https://events.linuxfoundation.org/soss-policy-summit-dc/,200,1723715586 +https://www.digitalzentrum-fokus-mensch.de/events/uig-tagung-2024,200,1723715589 +https://docs.google.com/forms/d/e/1FAIpQLScnKkH4KflPuknHg2G0191BgiIyQpa2z58IK9TTfDRp0FDWrw/viewform,200,1723715583 +https://hrdevfest.org/,200,1723715584 +https://in.pycon.org/2024,200,1723715588 +https://javascript-days.de/muenchen,200,1723715588 +https://github.com/jsconfcl/code_of_conduct,200,1723715587 +https://forms.gle/3FaoeNE7hbjeHkGW7,200,1723715588 +https://events.linuxfoundation.org/open-source-summit-japan/,200,1723715584 +https://devopsdays.org/events/2024-amsterdam/welcome/,200,1723715582 +https://www.dev2next.com/,200,1723715585 +https://docs.google.com/forms/d/e/1FAIpQLSdeZM1qf2fuLaXj06R4BA4dbh0mE8O2kly3vVaR6928xJfXvQ/viewform,200,1723715584 +https://cakefest.org/conduct,200,1723715588 +https://mastering-gitops.de/,200,1723715583 +https://jaxlondon.com/,200,1723715584 +https://javascript-conference.com/london,200,1723715587 +https://ekoparty.org/,200,1723715586 +https://www.buildstuff.events/,200,1723715586 +https://conference-hall.io/public/event/ZZv81ZNIzVzCMBxjX1xe,200,1723715584 +https://www.gartner.com/en/conferences/emea/applications-uk,200,1723715584 +https://2024.springio.net/codeofconduct,200,1723715586 +https://forms.gle/7JCdCQzxTBisTT5c9,200,1723715583 +http://www.icmlt.org/,200,1723715590 +https://devopsdays.org/events/2024-berlin/registration,200,1723715583 +https://rtcon.live/,200,1723715583 +https://sessionize.com/civo-navigate-local-tampa-2024,200,1723715584 +https://kscope24.odtug.com/,200,1723715585 +https://live.symfony.com/2024-vienna-con,200,1723715590 +https://devopsdays.org/events/2024-baltimore/conduct,200,1723715582 +https://www.conf42.com/devops2024,200,1723715582 +https://www.finaiconference.com/,200,1723715588 +https://conference-hall.io/public/event/yzbqRyQzA5mE3IIfgHUy,200,1723715586 +https://github.com/oss-review-toolkit/ort/wiki/ORT-Community-Days-2024,200,1723715586 +https://uxdx.com/emea/2024/,200,1723715589 +https://recursos.yeswetech.org/guias/codigo-de-conducta/en-code-of-conduct,200,1723715582 +https://monitorama.com/2024/pdx.html#conduct,200,1723715582 +https://2024.javacro.hr/,200,1723715585 +https://events.linuxfoundation.org/cloud-foundry-day-europe/,200,1723715584 +https://devopsdays.org/events/2024-london/conduct,200,1723715583 +https://www.mastering-obs.de/code_of_conduct.php,200,1723715582 +https://brain.korea.ac.kr/icprai2024/,200,1723715589 +https://qconsf.com/medialisting2024,200,1723715586 +https://www.papercall.io/sreday-2024-amsterdam,200,1723715587 +https://www.dotjs.io/,200,1723715587 +https://www.aidataanalytics.network/events-generative-ai-for-marketing,200,1723715591 +https://serverless-architecture.io/berlin,200,1723715587 +https://www.papercall.io/frontrunners2024,200,1723715582 +https://aka.ms/AzureCosmosDBConf24CFP,200,1723715587 +https://devopsdays.org/events/2024-montreal/welcome/,200,1723715583 +https://innovatevirginia.com/,200,1723715583 +https://www.heise-devsec.de/,200,1723715586 +https://docs.google.com/forms/d/e/1FAIpQLSeXAbbojZblJS8gsj4zKLDed79PdFjfmrpgGx3nuXOyGN7jkg/viewform,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSdK969zJfqlb1x30AHHYS5ui7zSoyiKQso2qNbiqwnNavBlsg/viewform,200,1723715584 +https://vslive.com/events/las-vegas-2024/home.aspx,200,1723715582 +https://2024.pgday.nl/,200,1723715589 +https://london.cityjsconf.org/,200,1723715587 +https://www.quirks.com/events/cdao-brazil-2024,200,1723715589 +https://archdoc.bettercode.eu/,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSfwjzCLHQCxH8GYD-PbkIGj5NWiOnYLr1JVLiGe-6Y1YpFsSA/viewform,200,1723715583 +https://dvgr24.cfp.dev/#/login,200,1723715585 +https://www.globalaishow.com/tickets,200,1723715588 +https://shift.infobip.com/,200,1723715583 +https://www.papercall.io/sreday-san-francisco,200,1723715587 +https://devopsdays.org/events/2024-minneapolis/conduct,200,1723715582 +https://pragmaconference.com/,200,1723715583 +http://www.phpvelhoeste.com.br/2024,200,1723715589 +https://devopsdays.org/events/2024-denver/propose,200,1723715583 +https://frontrunners.tech/conduct,200,1723715582 +https://halfstackconf.com/london,200,1723715588 +https://www.pycascades.com/,200,1723715586 +https://www.heise-devsec.de/code_of_conduct.php?source=0,200,1723715586 +https://lpc.events/event/18/abstracts/,200,1723715584 +https://apiworld.co/,200,1723715583 +https://www.ioskonf.mk/,200,1723715583 +https://api.bettercode.eu/,200,1723715581 +https://ccsea2024.org/,200,1723715582 +https://itrevolution.com/product/enterprise-technology-leadership-summit-europe-2024,200,1723715583 +https://reactsummit.com/,200,1723715587 +https://www.apidays.global/paris,200,1723715582 +https://www.datatuneconf.com/,200,1723715589 +https://www.apidays.global/singapore,200,1723715582 +https://sceniccitysummit.com/,200,1723715586 +https://runningremote.com/,200,1723715586 +https://graphql.org/conf/2024/speak/#code-of-conduct,200,1723715582 +https://starwest.techwell.com/,200,1723715589 +https://ccsea2024.org/index,200,1723715582 +https://www.papercall.io/wtmmontreal2024,200,1723715585 +https://sessionize.com/rustlab-2024,200,1723715587 +https://ndclondon.com/,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSfcE8aUHo_mFGfdl4d8rD6ZYhcS71ZOPH078JPWH1lRrcZi2Q/viewform,200,1723715583 +https://devopscon.io/new-york,200,1723715583 +https://cdao-mel.coriniumintelligence.com/,200,1723715589 +https://events.linuxfoundation.org/riscv-summit/,200,1723715583 +https://sessionize.com/fluttercon-usa-2024,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLScvcV6bdrNmF0mLKZf9At74MtPQnZazJRqBJfKkOiruyXbHbw/viewform,200,1723715588 +https://www.apidays.global/australia,200,1723715582 +https://events.linuxfoundation.org/open-source-days/,200,1723715584 +https://confengine.com/conferences/appium-conf-2024/proposals,200,1723715589 +https://sessionize.com/kotlinconf-2024,200,1723715583 +https://agiledevopswest.techwell.com/,200,1723715584 +https://2024.heartofclojure.eu/,200,1723715582 +https://identiverse.com/,200,1723715588 +https://graphql.org/conf/2024,200,1723715582 +https://devsummit.infoq.com/munich_medialisting2024,200,1723715584 +https://events.weaviate.io/ai-in-prod-ny-24,200,1723715589 +https://docs.google.com/forms/d/e/1FAIpQLSel_6kQ6AXMAbtua6QjqfTAFiLauXSB0lHjl8uvd-wlTzzSwQ/viewform,200,1723715584 +https://conferences.codemotion.com/ita24-workshop-fest,200,1723715586 +https://www.devoxx.co.uk/,200,1723715585 +https://bsides.ky/,200,1723715589 +https://devopsdays.org/events/2024-singapore/conduct,200,1723715582 +https://passdatacommunitysummit.com/,200,1723715584 +https://archconf.com/,200,1723715586 +https://devopsdays.org/events/2024-austin/welcome/,200,1723715582 +https://devopsdays.org/events/2024-amsterdam/conduct,200,1723715582 +https://sessionize.com/isaqb-software-architecture-gathering,200,1723715582 +https://cvpr.thecvf.com/Conferences/2024,200,1723715590 +https://2024.springio.net/,200,1723715585 +https://shift.infobip.com/us,200,1723715582 +https://devopscon.io/london,200,1723715583 +https://www.jsconf.cl/,200,1723715588 +https://mirai.events/,200,1723715590 +https://basta.net/frankfurt-en,200,1723715582 +https://flutterconflatam.dev/,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLScHqogVMcsW8iun85Uu-IwWy0CgmTfmRBGJRA8Jlm5egrFRRg/viewform,200,1723715588 +https://docs.google.com/forms/d/e/1FAIpQLScFypq0-07JLgvFylUB6RcmE_0uBqPdte4l-UPNxqbmi7kHBw/viewform,200,1723715588 +https://uxbri.org/2024,200,1723715588 +https://www.sharepointeurope.com/european-power-platform-conference,200,1723715586 +https://smashingconf.com/freiburg-2024,200,1723715583 +https://websweek.peoplevents.uk/abstract-guidelines/,200,1723715592 +https://accuconference.org/,200,1723715586 +https://m3-konferenz.de/code_of_conduct.php,200,1723715589 +https://events.linuxfoundation.org/kubeday-japan/,200,1723715582 +https://devopsdays.org/events/2024-tampa/welcome,200,1723715582 +https://www.socallinuxexpo.org/,200,1723715584 +https://pragmaconference.com/speakers.html,200,1723715584 +https://devopsdays.org/events/2024-montreal/conduct,200,1723715582 +https://tokyotestfest.com/code_of_conduct/,200,1723715590 +https://roboticsresearch2024.com/,200,1723715589 +https://cdao-fall.coriniumintelligence.com/,200,1723715589 +https://conf.11ty.dev/#speaking,200,1723715582 +https://www.papercall.io/conf42-python-2024,200,1723715586 +https://sessionize.com/devops-days-tampa-bay-2024,200,1723715582 +https://devopsdays.org/events/2024-birmingham-al/conduct,200,1723715582 +https://nofluffjuststuff.com/dallas,200,1723715585 +https://community.cncf.io/events/details/cncf-kcd-new-york-presents-kcd-new-york-2024/,200,1723715584 +https://laracon.in/,200,1723715589 +https://clean-architecture.bettercode.eu/code_of_conduct.php,200,1723715581 +https://sreday.com/2024-san-francisco,200,1723715587 +http://www.zindell.com/documents/codeofconduct.pdf,200,1723715584 +https://ciso-bris.coriniumintelligence.com/,200,1723715586 +https://javascript-conference.com/singapore,200,1723715588 +https://jax.de/munich,200,1723715586 +https://devopsvision.io/home/code_of_conduct,200,1723715583 +https://sessionize.com/global-azure-london-2024,200,1723715582 +https://nebraskacode.amegala.com/,200,1723715586 +https://necom2024.org/dmml/index,200,1723715589 +https://www.voiceand.ai/,200,1723715582 +https://that.us/events/tx/2024/,200,1723715587 +https://machinecon.aimresearch.co/,200,1723715589 +https://codesync.global/about-us/#Conduct,200,1723715583 +https://jsconf.am/,200,1723715588 +https://wtmmontreal.com/,200,1723715590 +https://2024.seleniumconf.in/submit-a-proposal,200,1723715589 +https://www.coderful.io/codice-di-condotta/,200,1723715590 +https://www.civo.com/navigate/local-tampa-2024,200,1723715584 +https://codebeameurope.com/,200,1723715583 +https://www.databricks.com/dataaisummit,200,1723715589 +https://sessionize.com/utahjs-conf-2024,200,1723715587 +https://ccsea2024.org/sea/index,200,1723715586 +https://cphdevfest.com/,200,1723715584 +https://laravellive.dk/,200,1723715588 +https://sessionize.com/connect-tech-2024,200,1723715587 +https://forms.gle/NkmrpzoPESvAawq48,200,1723715585 +https://sessionize.com/phpday-2024,200,1723715588 +https://www.buildingiot.de/code_of_conduct.php,200,1723715586 +https://functionalconf.com/,200,1723715583 +https://2024.rustnl.org/,200,1723715587 +https://fwdays.com/en/event/soft-skills-fwdays-2024,200,1723715588 +https://www.ddxconference.com/ddx-24-dubai,200,1723715588 +https://forms.office.com/r/7uxfcCmGBE,200,1723715587 +https://www.dianainitiative.org/about/policies/,200,1723715590 +https://wts.sh/,200,1723715582 +https://aisca2024.org/mliob/index,200,1723715582 +https://codemash.org/,200,1723715584 +https://events.linuxfoundation.org/soss-fusion/,200,1723715586 +https://reactalicante.es/,200,1723715587 +https://cssday.nl/2024/contact#code-of-conduct,200,1723715581 +https://www.conf42.com/python2024,200,1723715586 +https://bigskydevcon.com/,200,1723715582 +https://fwdays.com/en/event/javascript-fwdays-2024,200,1723715587 +https://docs.google.com/forms/d/e/1FAIpQLSf6qcmCOYCfUZdsQ6XbxTWV03P7k5rFMXbSoi9FHU9t6l9R9g/viewform,200,1723715588 +https://fwdays.com/en/event/devops-fwdays-2024,200,1723715583 +https://net.bettercode.eu/,200,1723715582 +https://www.lambdatest.com/testmuconf-2024/,200,1723715583 +https://www.gartner.com/en/conferences/na/identity-access-management-us,200,1723715587 +https://www.mozillafestival.org/nl,200,1723715587 +https://devopsdays.org/events/2024-aarhus/conduct,200,1723715583 +https://2024.jconf.dev/codeofconduct/,200,1723715586 +https://cdao-perth.coriniumintelligence.com/,200,1723715589 +https://apiconference.net/berlin,200,1723715583 +https://nyc24.devrelcon.dev/,200,1723715582 +https://stackconf.eu/propose,200,1723715583 +https://2024.jconf.dev/,200,1723715584 +https://reactandchill.live/,200,1723715588 +https://www.conf42.com/platform2024,200,1723715582 +https://androidmakers.droidcon.com/,200,1723715586 +https://kongresnextjs.pl/,200,1723715588 +https://sessionize.com/civo-navigate-austin,200,1723715584 +https://www.aiinproduction.com/,200,1723715589 +https://www.cypress.io/blog/2024/04/02/cypressconf-2024-cfp,200,1723715587 +https://gsas.io/codeofconduct,200,1723715584 +https://pnsqc.org/,200,1723715589 +https://dach.joomladay.org/vortrag-einreichen,200,1723715584 +https://www.mitechcon.org/,200,1723715583 +https://www.conf42.com/llms2024,200,1723715588 +https://webdirections.org/web-directions-event-code-of-conduct/,200,1723715582 +https://www.coderful.io/,200,1723715590 +https://www.superai.com/,200,1723715589 +https://www.intothebox.org/,200,1723715582 +https://icaps24.icaps-conference.org/,200,1723715588 +https://forms.gle/xFDmUHGY1b7hb77c7,200,1723715586 +https://thatconference.com/wi,200,1723715589 +https://www.papercall.io/conf42-devops-2024,200,1723715583 +https://events.linuxfoundation.org/kubeday-australia/,200,1723715582 +https://icaita2024.org/cbw/papersubmission,200,1723715586 +https://conf3rence.com/,200,1723715583 +https://iterate.ruhr/,200,1723715582 +https://www.ittage.informatik-aktuell.de/konferenz/code-of-coduct.html,200,1723715584 +https://pixelpioneers.co/call-for-speakers,200,1723715582 +https://docs.google.com/forms/d/e/1FAIpQLSfqJFPx-RCveKBRlRjYn0LyKL32LFgsjLI8soNQ9zv8CfYqcQ/viewform,200,1723715590 +https://appiumconf.com/,200,1723715589 +https://www.robotoconference.com/,200,1723715581 +https://www.cloudgeometry.io/linux-foundation-ai-data-day,200,1723715589 +https://nyc.droidcon.com/,200,1723715582 +https://events.linuxfoundation.org/open-source-summit-europe,200,1723715584 +https://designmatters.io/,200,1723715589 +https://www.civo.com/navigate/north-america,200,1723715584 +https://www.serverless360.com/events/integrate-2024,200,1723715585 +https://www.agileday.it/index-en.html,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSdAivIfn0qM5SSljDvshD48IRrAsKUg5-tlznG__PzDuDK12g/viewform,200,1723715586 +https://aiconference.london/,200,1723715589 +https://testscouts.se/testcoast,200,1723715583 +https://docs.google.com/forms/d/e/1FAIpQLSeCa_cPGvnxzjGyKf1dIKGVCyJ_iK80vnN5h1R4QKXN7y_Z-Q/viewform,200,1723715585 +https://perfnow.nl/,200,1723715585 +https://ccsea2024.org/nlcai/index,200,1723715582 +https://www.papercall.io/conf42-rustlang-2024,200,1723715588 +https://www.deque.com/axe-con/call-for-speakers,200,1723715582 +https://events.linuxfoundation.org/kubecon-cloudnativecon-open-source-summit-ai-dev-china/,200,1723715582 +https://devsummit.infoq.com/code-conduct,200,1723715583 +https://craft-it.pl/,200,1723715584 +https://sessionize.com/infobip-shift-2024,200,1723715584 +https://www.dianainitiative.org/call-for-presentations-2024,200,1723715592 +https://athens.cityjsconf.org/,200,1723715587 +https://symfony.com/care,200,1723715588 +https://www.papercall.io/serverlessdays-milano-2024,200,1723715583 +https://javascript-days.de/berlin,200,1723715584 +https://www.jfokus.se/,200,1723715584 +https://www.developerweek.com/management,200,1723715587 +https://docs.google.com/forms/d/e/1FAIpQLSfOlpCL3DGMq2N8yj9ILQmutG_76g-BcNEUEMpG48Wmbzrp6A/viewform,200,1723715584 +https://java.bettercode.eu/,200,1723715584 +https://events.linuxfoundation.org/cloudnativesecuritycon-north-america,200,1723715586 +https://sessionize.com/phptek-2024,200,1723715588 +https://devopsdays.org/events/2024-philadelphia/welcome/,200,1723715582 +https://www.thetesttribe.com/worqference/,200,1723715590 +https://events.linuxfoundation.org/pytorch-conference/,200,1723715585 +https://uberconf.com/app/speaker-request,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSdUK4VNyhpfpqhrm8BY7KmAvSNQHIuL49YOabkYDInbnyKD1g/viewform,200,1723715584 +https://angularbelgrade.org/,200,1723715587 +https://sessionize.com/nebraska-code-2024,200,1723715584 +https://devopsdays.org/events/2024-berlin/welcome,200,1723715583 +https://vslive.com/events/chicago-2024/home.aspx,200,1723715582 +https://www.postman.com/postcon,200,1723715582 +https://conference.eurostarsoftwaretesting.com/call-for-submissions,200,1723715583 +https://nyc24.devrelcon.dev/call-for-proposals,200,1723715584 +https://sf.droidcon.com/,200,1723715582 +https://www.mwclasvegas.com/,200,1723715582 +https://sessionize.com/kcdc-2024,200,1723715584 +https://techleadconf.com/,200,1723715584 +https://omhconf.pl/,200,1723715586 +https://www.papercall.io/sreday-2024-london,200,1723715582 +https://mad-summit.de/berlin,200,1723715582 +https://www.intersection-conference.eu/,200,1723715584 +https://hustef.hu/,200,1723715582 +https://forms.gle/9PMZza735aVeDBaV7,200,1723715586 +https://cpponsea.uk/,200,1723715586 +https://devsummit.infoq.com/boston_medialisting2024,200,1723715587 +https://www.papercall.io/conf42-iot-2024,200,1723715586 +https://2024.djangocon.us/,200,1723715586 +https://enterjs.de/code_of_conduct.php?source=0,200,1723715587 +https://vuejslive.com/,200,1723715585 +https://letsvisionos24.swiftgg.team/en,200,1723715583 +https://2024.seleniumconf.in/,200,1723715589 +https://nullcon.net/about-conferencepolicy,200,1723715582 +https://www.deque.com/axe-con,200,1723715583 +https://devopsdays.org/events/2024-london/welcome/,200,1723715582 +https://www.beercitycode.com/,200,1723715583 +https://xtremej.dev/,200,1723715586 +https://aisca2024.org/dnlp/index,200,1723715588 +https://reg.summit.graphql.com/flow/apollo/summit24/speaker-landing-page/page/home,200,1723715583 +https://bsidescdmx.org/en,200,1723715586 +https://sessionize.com/KCDLimaPeru-2024,200,1723715583 +https://sessionize.com/kubecon-cloudnativecon-north-america-2024,200,1723715582 +https://jsworldconference.com/,200,1723715587 +https://jonthebeach.com/,200,1723715582 +https://sessionize.com/golab-2024,200,1723715583 +https://www.papercall.io/conf42-incident-management-2024,200,1723715587 +https://www.flowcon.fr/,200,1723715584 +https://confengine.com/conferences/functional-conf-2024/proposals,200,1723715588 +https://www.uxcon.at/,200,1723715588 +https://devopsdays.org/events/2024-halifax/conduct,200,1723715582 +https://devopsdays.org/events/2024-geneva/welcome/,200,1723715582 +https://events.linuxfoundation.org/grpconf/,200,1723715584 +https://www.conf42.com/prompt2024,200,1723715588 +https://vslive.com/events/microsofthq-2024/home.aspx,200,1723715582 +https://www.heise-devsec.de/code_of_conduct.php,200,1723715586 +https://www.dotpy.io/,200,1723715586 +https://techbash.com/,200,1723715584 +https://devsummit.infoq.com/,200,1723715583 +https://graphql.org/conf/2024/speak,200,1723715582 +https://reactsummit.us/,200,1723715586 +https://devopsdays.org/events/2024-singapore/welcome/,200,1723715583 +https://cascadiajs.com/2024,200,1723715584 +https://forms.office.com/r/k3PqBpkD8N,200,1723715586 +https://devopsdays.org/events/2024-cairo/welcome/,200,1723715583 +https://community.cncf.io/events/details/cncf-kcd-new-york-presents-kcd-new-york-2024,200,1723715585 +https://conveyux.com/,200,1723715588 +https://sessionize.com/gophercon-uk-2024,200,1723715583 +https://codequalityconf.com/,200,1723715586 +https://live.symfony.com/2024-online-june,200,1723715591 +https://chainreactconf.com/,200,1723715582 +https://phpconference.com/berlin-en,200,1723715589 +https://how.camp/,200,1723715584 +https://www.mastering-obs.de/,200,1723715582 +https://iststc.com/,200,1723715591 +https://platzi.com/conf/,200,1723715586 +https://www.testingunited.com/,200,1723715591 +https://jscraftcamp.org/values,200,1723715587 +https://machinelearningweek.com/,200,1723715585 +https://docs.google.com/forms/d/e/1FAIpQLSf4xAhBCFHOehDJdjXYv_PBkqrKU7NmMrE_5FzvuVPb-LJu1A/viewform,200,1723715589 +https://www.developerweek.com/europe/,200,1723715589 +https://forms.gle/CzJnAWkToPwBkt5Y9,200,1723715585 +https://apyb.python.org.br/pythonbrasil/cdc/,200,1723715586 +https://clean-architecture.bettercode.eu/index.php,200,1723715581 +https://docs.google.com/forms/d/e/1FAIpQLSf2PeISgsRvU1G3Q0zOAsxlGqO017lpK_Dp0EO-k0xsAYijlg/viewform,200,1723715584 +https://itrevolution.com/product/enterprise-technology-leadership-summit-las-vegas-2024,200,1723715583 +https://devopsdays.org/events/2024-tampa/conduct,200,1723715582 +https://momentumdevcon.com/,200,1723715585 +https://docs.google.com/forms/d/e/1FAIpQLScnUVAZxseEr8a3p7jUj7D6q-U3LoiFA3Z1I4mAqR0ovUW1-g/viewform,200,1723715587 +https://swiftisland.nl/#about,200,1723715583 +https://cdao-frankfurt.coriniumintelligence.com/,200,1723715589 +https://jaxlondon.com/contact,200,1723715586 +https://entropia.de/GPN22,200,1723715584 +https://talks.devopsdays.org/devopsdays-kc-2024,200,1723715583 +https://c3fest.com/,200,1723715584 +https://pycon.org.il/2024,200,1723715586 +https://sessionize.com/droidcon-san-francisco-2024,200,1723715582 +https://reactnorway.com/,200,1723715584 +https://london.droidcon.com/,200,1723715582 +https://tokyotestfest.com/,200,1723715591 +https://tryswift.jp/_en,200,1723715586 +https://www.papercall.io/conf42-golang-2024,200,1723715583 +https://devopscon.io/berlin,200,1723715583 +https://symfony.com/doc/current/contributing/code_of_conduct/care_team.html,200,1723715588 +https://devopsdays.org/events/2024-aarhus/welcome/,200,1723715583 +https://www.thetesttribe.com/qonfx/,200,1723715590 +https://devm.io/jaxnewyork,200,1723715587 +https://devopsdays.org/events/2024-berlin/conduct,200,1723715583 +https://www.ai.engineer/worldsfair/conduct,200,1723715589 +https://www.socallinuxexpo.org/scale/20x/code-conduct,200,1723715584 +https://2024.pgconf.de/codeofconduct/,200,1723715584 +https://postgresql.us/events/pgconfnyc2024/,200,1723715590 +https://appel.paris-web.fr/,200,1723715582 +https://www.papercall.io/ioskonf,200,1723715583 +https://middlesbroughfe.co.uk/,200,1723715582 +https://berlincodeofconduct.org/de/,200,1723715582 +https://phpcon.fukuoka.jp/2024,200,1723715590 +https://events.linuxfoundation.org/soss-community-day-europe/,200,1723715586 +https://conference.eurostarsoftwaretesting.com/,200,1723715583 +https://www.weyweyweb.com/,200,1723715581 +https://globalazure.net/,200,1723715582 +https://sessionize.com/codemash-2024,200,1723715583 +https://www.phpconference.co.uk/,200,1723715588 +https://www.bsidesedmonton.ca/,200,1723715588 +https://docs.google.com/forms/d/e/1FAIpQLSdRN86al9ueV7ZTviSWCrjn-ZsTstQ-sb4C1OXlKtHBCMTNcg/viewform,200,1723715586 +https://aiconusa.techwell.com/,200,1723715589 +https://renderatl.com/,200,1723715582 +https://confoo.ca/en/2024,200,1723715584 +https://www.papercall.io/conf42-cloud-native-2024,200,1723715583 +https://mlconference.ai/new-york,200,1723715589 +https://phpconference.nl/,200,1723715588 +https://appdevcon.nl/,200,1723715583 +https://www.oc3.dev/,200,1723715583 +https://kotlinconf.com/,200,1723715583 +https://aisca2024.org/submission/index.php,200,1723715583 +https://lpc.events/,200,1723715583 +https://conferences.codemotion.com/ita24-workshop-fest/faq/,200,1723715585 +https://frontendnation.com/,200,1723715584 +https://www.wicys.org/events/wicys-2024/,200,1723715586 +https://developersummit.com/,200,1723715584 +https://events.linuxfoundation.org/ai-dev-north-america/,200,1723715588 +https://nofluffjuststuff.com/home/code_of_conduct,200,1723715585 +https://sessionize.com/civo-navigate-europe-2024,200,1723715583 +https://cdao-canada-ps.coriniumintelligence.com/,200,1723715583 +https://callforpapers.sandsmedia.com/,200,1723715584 +https://fwdays.com/en/event/python-ds-fwdays-2024,200,1723715586 +https://sessionize.com/spring-io-2024,200,1723715585 +https://events.linuxfoundation.org/cephalocon/,200,1723715583 +https://hasura.io/events/hasura-con-2024,200,1723715583 +https://openui5.org/ui5con/germany2024,200,1723715582 +https://docs.google.com/document/d/12o0ydKmKe6Jw_VgTZF3U6hmI7yzgo5poxXjDzKDLuDw/edit#heading=h.r7izboewrqur,200,1723715583 +https://www.devbcn.com/kcd,200,1723715583 +https://devopscon.io/san-diego,200,1723715583 +https://websummercamp.com/,200,1723715588 +https://www.papercall.io/conf42-site-reliability-engineering-sre-2024,200,1723715587 +https://archconf.com/home/code_of_conduct,200,1723715585 +https://stackconf.eu/,200,1723715583 +https://airflowsummit.org/,200,1723715583 +https://data-2-speak.com/conference,200,1723715589 +https://devfest.gdgstrasbourg.fr/,200,1723715584 +https://devopsdays.org/events/2024-seattle/welcome/,200,1723715583 +https://gotochgo.com/2024,200,1723715584 +https://sessionize.com/droidcon-berlin-2024,200,1723715582 +https://tickets.plainschwarz.com/fossback24/page/i-agree-to-abide-by-the-foss-backstage-code-of-conduct/,200,1723715586 +https://devfestyyc.com/,200,1723715583 +https://sessionize.com/jcon-europe-2024,200,1723715584 +https://docs.google.com/forms/d/e/1FAIpQLSdRTv56rTr_P1LidHu6xc2GtTcgpVs6pAGiKdRy68wFdicIcg/viewform,200,1723715586 +https://2024.pycon.it/,200,1723715587 +https://reactrally.com/conduct,200,1723715588 diff --git a/conferences/2024/cpp.json b/conferences/2024/cpp.json index 85b90bc29..e3b415fa5 100644 --- a/conferences/2024/cpp.json +++ b/conferences/2024/cpp.json @@ -10,14 +10,6 @@ "twitter": "@cpponline", "mastodon": "@cpponline@mastodon.social" }, - { - "name": "Embedded Day", - "url": "https://www.wearedevelopers.com/event/embedded-day-april-2024", - "startDate": "2024-04-17", - "endDate": "2024-04-17", - "online": true, - "locales": "EN" - }, { "name": "ACCU Conference", "url": "https://accuconference.org", @@ -54,18 +46,6 @@ "locales": "EN", "cocUrl": "https://cpponsea.uk/conduct/" }, - { - "name": "Low Latency London", - "url": "https://l3.axra.org", - "startDate": "2024-07-19", - "endDate": "2024-07-20", - "city": "London", - "country": "U.K.", - "online": false, - "locales": "EN", - "cfpUrl": "https://forms.gle/BF7Sf5dTyGCBgV978", - "cfpEndDate": "2024-01-31" - }, { "name": "Cpp North", "url": "https://cppnorth.ca", diff --git a/conferences/2024/css.json b/conferences/2024/css.json index 26a530938..baec2a985 100644 --- a/conferences/2024/css.json +++ b/conferences/2024/css.json @@ -24,15 +24,6 @@ "cfpEndDate": "2023-10-20", "twitter": "@frontrunnersdc" }, - { - "name": "WebDev Day", - "url": "https://www.wearedevelopers.com/event/webdev-day-march-2024", - "startDate": "2024-03-20", - "endDate": "2024-03-20", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "The 11ty International Symposium on Making Web Sites Real Good", "url": "https://conf.11ty.dev", diff --git a/conferences/2024/data.json b/conferences/2024/data.json index 06d80004f..67d257711 100644 --- a/conferences/2024/data.json +++ b/conferences/2024/data.json @@ -446,18 +446,6 @@ "cfpEndDate": "2024-03-22", "twitter": "@DevNetwork_" }, - { - "name": "Artificial Intelligence & Machine Learning (AI & ML)", - "url": "https://www.conf42.com/aiml2024", - "startDate": "2024-05-30", - "endDate": "2024-05-30", - "online": true, - "locales": "EN", - "cocUrl": "https://www.conf42.com/code-of-conduct", - "cfpUrl": "https://www.papercall.io/conf42-artificial-intelligence-machine-learning-2024", - "cfpEndDate": "2024-04-29", - "twitter": "@conf42com" - }, { "name": "AI World Congress", "url": "https://aiconference.london/", @@ -791,16 +779,6 @@ "cocUrl": "https://www.futuristconference.com/code-of-conduct", "twitter": "@Futurist_Conf" }, - { - "name": "AI Showcase", - "url": "https://sfai.vercel.app", - "startDate": "2024-08-16", - "endDate": "2024-08-17", - "city": "San Francisco, CA", - "country": "U.S.A.", - "online": false, - "locales": "EN" - }, { "name": "CDAO Melbourne", "url": "https://cdao-mel.coriniumintelligence.com/", @@ -969,9 +947,7 @@ "country": "Germany", "online": false, "locales": "DE", - "cocUrl": "https://berlincodeofconduct.org/de/", - "cfpUrl": "https://iterate.ruhr/callforpapers", - "cfpEndDate": "2024-06-30" + "cocUrl": "https://berlincodeofconduct.org/de/" }, { "name": "GovAI Summit", @@ -1108,17 +1084,6 @@ "cfpEndDate": "2024-04-30", "twitter": "@dotaiconf" }, - { - "name": "International Conference on Machine Learning and Artificial Intelligence", - "url": "https://www.pagesconferences.com/2024/robotics-artificial-intelligence", - "startDate": "2024-10-21", - "endDate": "2024-10-23", - "city": "Edinburgh", - "country": "U.K.", - "online": false, - "locales": "EN", - "cocUrl": "https://www.pagesconferences.com/2024/robotics-artificial-intelligence" - }, { "name": "CDAO Perth", "url": "https://cdao-perth.coriniumintelligence.com/", @@ -1340,7 +1305,6 @@ "country": "Poland", "online": false, "locales": "PL", - "cocUrl": "https://omhconf.pl/wp-content/uploads/2024/02/Code-of-Conduct-2024.pdf", "cfpUrl": "https://omhconf.pl/cfp-2024", "cfpEndDate": "2024-09-16", "twitter": "@OMHconf" diff --git a/conferences/2024/devops.json b/conferences/2024/devops.json index 609762a2d..6a2e675b6 100644 --- a/conferences/2024/devops.json +++ b/conferences/2024/devops.json @@ -34,15 +34,6 @@ "cfpEndDate": "2023-12-26", "twitter": "@conf42com" }, - { - "name": "DevOps Day", - "url": "https://www.wearedevelopers.com/event/devops-day-february-2024", - "startDate": "2024-02-07", - "endDate": "2024-02-07", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "DevOps.js Conference", "url": "https://devopsjsconf.com", @@ -287,8 +278,6 @@ "city": "Istanbul", "country": "Turkey", "cocUrl": "https://devopsdays.org/events/2024-istanbul/conduct", - "cfpUrl": "https://www.papercall.io/devopsdays-istanbul-2024", - "cfpEndDate": "2024-01-19", "twitter": "@devopsdaysist" }, { @@ -430,18 +419,6 @@ "locales": "EN", "cocUrl": "https://til-conf.netlify.app/coc/" }, - { - "name": "Devopsdays Sao Paulo", - "url": "https://devopsdays.org/events/2024-saopaulo/welcome/", - "startDate": "2024-05-18", - "endDate": "2024-05-18", - "city": "São Paulo", - "country": "Brazil", - "cocUrl": "https://devopsdays.org/events/2024-saopaulo/conduct-pt-br", - "cfpUrl": "https://talks.devopsdays.org/devopsdays-sao-paulo-2024/", - "cfpEndDate": "2024-02-11", - "twitter": "@sp_devopsdays" - }, { "name": "DevOpsCon San Diego", "url": "https://devopscon.io/san-diego", @@ -578,20 +555,6 @@ "cfpEndDate": "2024-04-21", "twitter": "@DeveloperWeek" }, - { - "name": "Icinga Summit", - "url": "https://icinga.com/summit", - "startDate": "2024-06-05", - "endDate": "2024-06-06", - "city": "Berlin", - "country": "Germany", - "online": false, - "locales": "EN", - "cocUrl": "https://icinga.com/summit/", - "cfpUrl": "https://icinga.com/summit/cfp", - "cfpEndDate": "2024-03-31", - "twitter": "@icinga" - }, { "name": "Big Sky Dev Con", "url": "https://bigskydevcon.com", @@ -761,17 +724,6 @@ "locales": "EN", "twitter": "@tweetsbyport" }, - { - "name": "DevSecOps Melbourne", - "url": "https://devsecops-mel.coriniumintelligence.com/", - "startDate": "2024-07-17", - "endDate": "2024-07-17", - "city": "Melbourne", - "country": "Australia", - "online": false, - "locales": "EN", - "twitter": "@CoriniumGlobal" - }, { "name": "KCD Lima", "url": "https://community.cncf.io/events/details/cncf-kcd-lima-peru-presents-kcd-lima-peru-2024", @@ -842,8 +794,6 @@ "online": false, "locales": "EN", "cocUrl": "https://events.linuxfoundation.org/kubecon-cloudnativecon-open-source-summit-ai-dev-china/attend/code-of-conduct/", - "cfpUrl": "https://events.linuxfoundation.org/kubecon-cloudnativecon-open-source-summit-ai-dev-china/program/call-for-proposal/", - "cfpEndDate": "2024-05-05", "twitter": "@KubeCon_" }, { @@ -1165,8 +1115,7 @@ "city": "Mannheim", "country": "Germany", "online": false, - "locales": "DE", - "cocUrl": "https://www.continuouslifecycle.de/code_of_conduct.php", + "locales": "DE" "cfpUrl": "https://www.continuouslifecycle.de/cfp.php", "cfpEndDate": "2024-05-05" }, diff --git a/conferences/2024/dotnet.json b/conferences/2024/dotnet.json index 63f688aa8..f4c8aac84 100644 --- a/conferences/2024/dotnet.json +++ b/conferences/2024/dotnet.json @@ -24,17 +24,6 @@ "cocUrl": "https://vslive.com/pages/harassment.aspx", "twitter": "@vslive" }, - { - "name": "dotnetdays", - "url": "https://dotnetdays.ro", - "startDate": "2024-04-18", - "endDate": "2024-04-20", - "city": "Iasi", - "country": "Romania", - "online": false, - "locales": "EN", - "twitter": "@dotnetdaysro" - }, { "name": "Global Azure London", "url": "https://globalazure.net", @@ -84,18 +73,6 @@ "cocUrl": "https://basta.net/code-of-conduct-en/", "twitter": "@bastacon" }, - { - "name": "Update Days: .NET Performance", - "url": "https://performance.updatedays.pl", - "startDate": "2024-06-26", - "endDate": "2024-06-27", - "city": "Kraków", - "country": "Poland", - "online": true, - "locales": "EN", - "cocUrl": "https://www.updateconference.net/en/code-of-conduct", - "twitter": "@update_conf" - }, { "name": "WeAreDevelopers - World Congress", "url": "https://www.wearedevelopers.com/world-congress", @@ -145,9 +122,7 @@ "country": "Germany", "online": false, "locales": "DE", - "cocUrl": "https://berlincodeofconduct.org/de/", - "cfpUrl": "https://iterate.ruhr/callforpapers", - "cfpEndDate": "2024-06-30" + "cocUrl": "https://berlincodeofconduct.org/de/" }, { "name": "Update Conference Prague", diff --git a/conferences/2024/general.json b/conferences/2024/general.json index c1e4d4df6..a54f15252 100644 --- a/conferences/2024/general.json +++ b/conferences/2024/general.json @@ -35,8 +35,6 @@ "online": false, "locales": "EN", "cocUrl": "https://that.us/support/code-of-conduct/", - "cfpUrl": "https://that.us/call-for-counselors/tx/2024", - "cfpEndDate": "2023-10-01", "twitter": "@thatconference" }, { @@ -156,15 +154,6 @@ "cfpEndDate": "2024-01-31", "twitter": "@schrodinger_hat" }, - { - "name": "Women In Tech Day", - "url": "https://www.wearedevelopers.com/event/women-in-tech-day-march-2024", - "startDate": "2024-03-08", - "endDate": "2024-03-08", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "Software Architecture Summit München", "url": "https://software-architecture-summit.de/muenchen", @@ -238,15 +227,6 @@ "cocUrl": "https://www.mitechcon.org/code-of-conduct", "twitter": "@MITechCon" }, - { - "name": "Web3 Day", - "url": "https://www.wearedevelopers.com/event/web3-day-april-2024", - "startDate": "2024-04-03", - "endDate": "2024-04-03", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "PostgreSQL Conference Germany", "url": "https://2024.pgconf.de", @@ -296,15 +276,6 @@ "cfpEndDate": "2024-02-11", "twitter": "@CivoCloud" }, - { - "name": "Vue.js Day", - "url": "https://www.wearedevelopers.com/event/vue-js-day-april-2024", - "startDate": "2024-04-17", - "endDate": "2024-04-17", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "Great International Developer Summit (GIDS)", "url": "https://developersummit.com", @@ -315,19 +286,8 @@ "online": false, "locales": "EN", "cocUrl": "https://saltmarch.com/code-of-conduct", - "cfpUrl": "https://form.jotform.com/developersummit/gids-2024-call-for-proposals", - "cfpEndDate": "2023-10-31", "twitter": "@developersummit" }, - { - "name": "Cloud Day", - "url": "https://www.wearedevelopers.com/event/cloud-day-april-2024", - "startDate": "2024-04-24", - "endDate": "2024-04-24", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "Middle East Enterprise AI & Analytics Summit", "url": "https://meenterpriseai.com/sa", @@ -378,18 +338,6 @@ "cfpEndDate": "2024-01-31", "twitter": "@devopsdayskc" }, - { - "name": "Women Who Code CONNECT: Thrive in Tech", - "url": "http://www.womenwhocode.com/connect", - "startDate": "2024-05-16", - "endDate": "2024-05-16", - "online": true, - "locales": "EN", - "cocUrl": "https://womenwhocode.com/codeofconduct", - "cfpUrl": "https://code.womenwhocode.com/connect-2024-cfp", - "cfpEndDate": "2024-03-25", - "twitter": "@womenwhocode" - }, { "name": "TIL Conf", "url": "https://til-conf.netlify.app", @@ -436,15 +384,6 @@ "cfpEndDate": "2024-02-11", "twitter": "@KcdNewyork" }, - { - "name": "Machine Learning Day", - "url": "https://www.wearedevelopers.com/event/machine-learning-day-may-2024", - "startDate": "2024-05-22", - "endDate": "2024-05-22", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "Craft IT", "url": "https://craft-it.pl", diff --git a/conferences/2024/java.json b/conferences/2024/java.json index 09f06d62a..5df4713dd 100644 --- a/conferences/2024/java.json +++ b/conferences/2024/java.json @@ -1,12 +1,4 @@ [ - { - "name": "Java Developer Day", - "url": "https://www.wearedevelopers.com/event/java-developer-day-january-2024", - "startDate": "2024-01-17", - "endDate": "2024-01-17", - "online": true, - "locales": "EN" - }, { "name": "jChampions", "url": "https://jchampionsconf.com/", diff --git a/conferences/2024/javascript.json b/conferences/2024/javascript.json index 891ec1d50..7cc5e626f 100644 --- a/conferences/2024/javascript.json +++ b/conferences/2024/javascript.json @@ -600,8 +600,6 @@ "online": false, "locales": "IT", "cocUrl": "https://www.coderful.io/codice-di-condotta/", - "cfpUrl": "https://www.coderful.io/speakers", - "cfpEndDate": "2024-03-10", "twitter": "@coderful" }, { @@ -618,16 +616,6 @@ "cfpEndDate": "2024-03-31", "twitter": "@websummercamp" }, - { - "name": "We Love JS London", - "url": "https://welovejs.vercel.app/london", - "startDate": "2024-07-12", - "endDate": "2024-07-13", - "city": "London", - "country": "U.K.", - "online": false, - "locales": "EN" - }, { "name": "Middlesbrough Front End Conference", "url": "https://middlesbroughfe.co.uk", @@ -677,18 +665,6 @@ "locales": "EN", "twitter": "@cityjsconf" }, - { - "name": "We Love JS", - "url": "https://welovejs.vercel.app", - "startDate": "2024-08-09", - "endDate": "2024-08-10", - "city": "Amsterdam", - "country": "Netherlands", - "online": false, - "locales": "EN", - "cfpUrl": "https://forms.gle/WYcDZcRW6gsy6qHj9", - "cfpEndDate": "2024-06-30" - }, { "name": "React Rally", "url": "https://reactrally.com", diff --git a/conferences/2024/leadership.json b/conferences/2024/leadership.json index 4bad4fe6b..4f1ea2dc9 100644 --- a/conferences/2024/leadership.json +++ b/conferences/2024/leadership.json @@ -107,18 +107,6 @@ "cfpEndDate": "2024-01-26", "twitter": "@CTOCraft" }, - { - "name": "Women Who Code CONNECT: Thrive in Tech", - "url": "http://www.womenwhocode.com/connect", - "startDate": "2024-05-16", - "endDate": "2024-05-16", - "online": true, - "locales": "EN", - "cocUrl": "https://womenwhocode.com/codeofconduct", - "cfpUrl": "https://code.womenwhocode.com/connect-2024-cfp", - "cfpEndDate": "2024-03-25", - "twitter": "@womenwhocode" - }, { "name": "TechLead Conference", "url": "https://techleadconf.com", @@ -133,7 +121,7 @@ }, { "name": "InfoQ Dev Summit Boston", - "url": "https://devsummit.infoq.com/boston_medialisting2024", + "url": "https://devsummit.infoq.com/conference/boston2024", "startDate": "2024-06-24", "endDate": "2024-06-25", "city": "Boston, MA", diff --git a/conferences/2024/networking.json b/conferences/2024/networking.json index 44f775286..7359c11e9 100644 --- a/conferences/2024/networking.json +++ b/conferences/2024/networking.json @@ -23,8 +23,6 @@ "online": false, "locales": "EN", "cocUrl": "https://that.us/support/code-of-conduct/", - "cfpUrl": "https://that.us/call-for-counselors/tx/2024", - "cfpEndDate": "2023-10-01", "twitter": "@thatconference" }, { @@ -37,14 +35,6 @@ "online": false, "locales": "EN" }, - { - "name": "International Space Convention", - "url": "https://www.internationalspaceconvention.com", - "startDate": "2024-02-12", - "endDate": "2024-02-16", - "online": true, - "locales": "EN" - }, { "name": "FOSS Backstage", "url": "https://24.foss-backstage.de", @@ -226,18 +216,6 @@ "online": false, "locales": "EN" }, - { - "name": "Women Who Code CONNECT: Thrive in Tech", - "url": "http://www.womenwhocode.com/connect", - "startDate": "2024-05-16", - "endDate": "2024-05-16", - "online": true, - "locales": "EN", - "cocUrl": "https://womenwhocode.com/codeofconduct", - "cfpUrl": "https://code.womenwhocode.com/connect-2024-cfp", - "cfpEndDate": "2024-03-25", - "twitter": "@womenwhocode" - }, { "name": "droidcon San Francisco", "url": "https://sf.droidcon.com", @@ -393,9 +371,7 @@ "country": "Germany", "online": false, "locales": "DE", - "cocUrl": "https://berlincodeofconduct.org/de/", - "cfpUrl": "https://iterate.ruhr/callforpapers", - "cfpEndDate": "2024-06-30" + "cocUrl": "https://berlincodeofconduct.org/de/" }, { "name": "Unicorns in Tech Summit: dear___future", diff --git a/conferences/2024/performance.json b/conferences/2024/performance.json index ab122c950..bb43acb41 100644 --- a/conferences/2024/performance.json +++ b/conferences/2024/performance.json @@ -25,15 +25,6 @@ "cfpEndDate": "2024-04-20", "twitter": "@fwdays" }, - { - "name": "Front End Performance Day", - "url": "https://www.wearedevelopers.com/event/front-end-performance-day-june-2024", - "startDate": "2024-06-05", - "endDate": "2024-06-05", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "SAP UI5con", "url": "https://openui5.org/ui5con/germany2024", @@ -82,18 +73,6 @@ "cocUrl": "https://qconferences.com/code-conduct", "mastodon": "@infoq@techhub.social" }, - { - "name": "Update Days: .NET Performance", - "url": "https://performance.updatedays.pl", - "startDate": "2024-06-26", - "endDate": "2024-06-27", - "city": "Kraków", - "country": "Poland", - "online": true, - "locales": "EN", - "cocUrl": "https://www.updateconference.net/en/code-of-conduct", - "twitter": "@update_conf" - }, { "name": "Code Quality Conference", "url": "https://codequalityconf.com", diff --git a/conferences/2024/php.json b/conferences/2024/php.json index 2d7f89dd6..a3d2ff61f 100644 --- a/conferences/2024/php.json +++ b/conferences/2024/php.json @@ -43,8 +43,6 @@ "online": false, "locales": "EN", "cocUrl": "https://www.phpconference.co.uk/conduct/", - "cfpUrl": "https://www.papercall.io/phpuk2024", - "cfpEndDate": "2023-09-30", "twitter": "@PHPUKConference" }, { @@ -261,8 +259,6 @@ "online": false, "locales": "EN", "cocUrl": "https://laravellive.dk/code-of-conduct", - "cfpUrl": "https://laravellive.dk/become-a-speaker", - "cfpEndDate": "2024-03-01", "twitter": "@laravellivedk" }, { diff --git a/conferences/2024/product.json b/conferences/2024/product.json index c95b87d6e..fc338a64b 100644 --- a/conferences/2024/product.json +++ b/conferences/2024/product.json @@ -75,7 +75,7 @@ "country": "Germany", "online": true, "locales": "EN", - "cocUrl": "https://www.product-masterclass.com/en/just-product/terms-and-conditions" + "cocUrl": "https://www.product-masterclass.com/legal/terms-and-conditions" }, { "name": "Product Management Festival", diff --git a/conferences/2024/python.json b/conferences/2024/python.json index 33f5386a8..b450e6f1b 100644 --- a/conferences/2024/python.json +++ b/conferences/2024/python.json @@ -1,13 +1,4 @@ [ - { - "name": "Python Day", - "url": "https://www.wearedevelopers.com/event/python-day-february-2024", - "startDate": "2024-02-21", - "endDate": "2024-02-21", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "Conf42 Python", "url": "https://www.conf42.com/python2024", diff --git a/conferences/2024/rust.json b/conferences/2024/rust.json index 7f165b95d..f6a712ce7 100644 --- a/conferences/2024/rust.json +++ b/conferences/2024/rust.json @@ -1,13 +1,4 @@ [ - { - "name": "Rust Day", - "url": "https://www.wearedevelopers.com/event/rust-day-january-2024", - "startDate": "2024-01-24", - "endDate": "2024-01-24", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "GOSIM", "url": "https://europe2024.gosim.org", diff --git a/conferences/2024/security.json b/conferences/2024/security.json index ec3964990..2fe6d58f3 100644 --- a/conferences/2024/security.json +++ b/conferences/2024/security.json @@ -151,15 +151,6 @@ "twitter": "@BSidesSF", "mastodon": "@BSidesSF@infosec.exchange" }, - { - "name": "Security Day", - "url": "https://www.wearedevelopers.com/event/security-day-may-2024", - "startDate": "2024-05-08", - "endDate": "2024-05-08", - "online": true, - "locales": "EN", - "twitter": "@WeAreDevs" - }, { "name": "13th International Conference on Software Engineering and Applications", "url": "https://ccsea2024.org/sea/index", @@ -572,7 +563,6 @@ "country": "Poland", "online": false, "locales": "PL", - "cocUrl": "https://omhconf.pl/wp-content/uploads/2024/02/Code-of-Conduct-2024.pdf", "cfpUrl": "https://omhconf.pl/cfp-2024", "cfpEndDate": "2024-09-16", "twitter": "@OMHconf" diff --git a/conferences/2024/sre.json b/conferences/2024/sre.json index 78ffb0eb8..b14d69e33 100644 --- a/conferences/2024/sre.json +++ b/conferences/2024/sre.json @@ -52,7 +52,7 @@ }, { "name": "Conf42 Observability", - "url": "https://www.conf42.com/olly2024", + "url": "https://www.conf42.com/obs2024", "startDate": "2024-06-13", "endDate": "2024-06-13", "online": true, diff --git a/conferences/2024/tech-comm.json b/conferences/2024/tech-comm.json index 29b627677..32960f8ce 100644 --- a/conferences/2024/tech-comm.json +++ b/conferences/2024/tech-comm.json @@ -1,14 +1,2 @@ [ - { - "name": "Tech & Innovation Summit", - "url": "https://www.entrepreneurindia.com/tech25web", - "startDate": "2024-03-08", - "endDate": "2024-03-09", - "city": "Bengaluru", - "country": "India", - "online": false, - "locales": "EN", - "offersSignLanguageOrCC": true, - "twitter": "@EntrepreneurIND" - } ] \ No newline at end of file diff --git a/conferences/2024/testing.json b/conferences/2024/testing.json index a1feb74d3..70e2eea56 100644 --- a/conferences/2024/testing.json +++ b/conferences/2024/testing.json @@ -154,8 +154,6 @@ "online": false, "locales": "IT", "cocUrl": "https://www.coderful.io/codice-di-condotta/", - "cfpUrl": "https://www.coderful.io/speakers", - "cfpEndDate": "2024-03-10", "twitter": "@coderful" }, { @@ -338,8 +336,6 @@ "country": "Austria", "online": false, "locales": "EN", - "cfpUrl": "https://www.testingunited.com/become-a-speaker-2024", - "cfpEndDate": "2024-02-29", "twitter": "@testing_united" }, { @@ -377,7 +373,6 @@ "country": "Poland", "online": false, "locales": "PL", - "cocUrl": "https://omhconf.pl/wp-content/uploads/2024/02/Code-of-Conduct-2024.pdf", "cfpUrl": "https://omhconf.pl/cfp-2024", "cfpEndDate": "2024-09-16", "twitter": "@OMHconf" diff --git a/conferences/2024/typescript.json b/conferences/2024/typescript.json index fa313264a..b0a0259b7 100644 --- a/conferences/2024/typescript.json +++ b/conferences/2024/typescript.json @@ -75,8 +75,6 @@ "online": false, "locales": "IT", "cocUrl": "https://www.coderful.io/codice-di-condotta/", - "cfpUrl": "https://www.coderful.io/speakers", - "cfpEndDate": "2024-03-10", "twitter": "@coderful" }, {