Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

36,516

Downloads of v 1.0.5948:

306

Last Update:

07 Jan 2025

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

vscode-vsliveshare extension vscode

Live Share VSCode Extension

  • 1
  • 2
  • 3

1.0.5948 | Updated: 07 Jan 2025

Downloads:

36,516

Downloads of v 1.0.5948:

306

Maintainer(s):

Software Author(s):

  • Microsoft

Live Share VSCode Extension 1.0.5948

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Live Share VSCode Extension, run the following command from the command line or from PowerShell:

>

To upgrade Live Share VSCode Extension, run the following command from the command line or from PowerShell:

>

To uninstall Live Share VSCode Extension, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade vscode-vsliveshare -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade vscode-vsliveshare -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install vscode-vsliveshare
  win_chocolatey:
    name: vscode-vsliveshare
    version: '1.0.5948'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'vscode-vsliveshare' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.5948'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller vscode-vsliveshare
{
    Name     = "vscode-vsliveshare"
    Version  = "1.0.5948"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'vscode-vsliveshare':
  ensure   => '1.0.5948',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 07 Jan 2025.

Description

Microsoft Visual Studio Live Share

Visual Studio Live Share enables you to collaboratively edit and debug with others in real time, regardless what programming languages you're using or app types you're building. It allows you to instantly (and securely) share your current project, and then as needed, share debugging sessions, terminal instances, localhost web apps, voice calls, and more! Developers that join your sessions recieve all of their editor context from your environment (e.g. language services, debugging), which ensures they can start productively collaborating immediately, without needing to clone any repos or install any SDKs.

Additionally, unlike traditional pair programming, Visual Studio Live Share allows developers to work together, while retaining their personal editor preferences (e.g. theme, keybindings), as well as having their own cursor. This allows you to seamlessly transition between following one another, and being able to explore ideas/tasks on your own. In practice, this ability to work together and independently provides a collaboration experience that is potentiallty more natural for many common use cases.

Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know here that the package is no longer updating correctly.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

Install-VsCodeExtension -extensionId '[email protected]'
tools\chocolateyUninstall.ps1
 $ErrorActionPreference = 'Stop'

 Uninstall-VsCodeExtension -extensionId 'ms-vsliveshare.vsliveshare'

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Live Share VSCode Extension 1.0.5941 279 Monday, September 23, 2024 Approved
Live Share VSCode Extension 1.0.5940 122 Monday, September 16, 2024 Approved
Live Share VSCode Extension 1.0.5936 267 Monday, July 15, 2024 Approved
Live Share VSCode Extension 1.0.5932 243 Wednesday, June 12, 2024 Approved
Live Share VSCode Extension 1.0.5918 1227 Tuesday, March 5, 2024 Approved
Live Share VSCode Extension 1.0.5905 250 Thursday, January 11, 2024 Approved
Live Share VSCode Extension 1.0.5900 173 Friday, December 8, 2023 Approved
Live Share VSCode Extension 1.0.5897 187 Wednesday, December 6, 2023 Approved
Live Share VSCode Extension 1.0.5896 142 Tuesday, November 28, 2023 Approved
Live Share VSCode Extension 1.0.5892 224 Tuesday, October 31, 2023 Approved
Live Share VSCode Extension 1.0.5883 311 Monday, August 21, 2023 Approved
Live Share VSCode Extension 1.0.5877 253 Thursday, July 20, 2023 Approved
Live Share VSCode Extension 1.0.5873 617 Thursday, June 8, 2023 Approved
Live Share VSCode Extension 1.0.5864 453 Tuesday, April 25, 2023 Approved
Live Share VSCode Extension 1.0.5862 206 Tuesday, April 18, 2023 Approved
Live Share VSCode Extension 1.0.5857 197 Tuesday, April 11, 2023 Approved
Live Share VSCode Extension 1.0.5834 246 Monday, March 6, 2023 Approved
Live Share VSCode Extension 1.0.5832 190 Thursday, February 23, 2023 Approved
Live Share VSCode Extension 1.0.5831 179 Thursday, February 16, 2023 Approved
Live Share VSCode Extension 1.0.5828 196 Thursday, February 2, 2023 Approved
Live Share VSCode Extension 1.0.5823 193 Thursday, January 26, 2023 Approved
Live Share VSCode Extension 1.0.5808 178 Tuesday, January 17, 2023 Approved
Live Share VSCode Extension 1.0.5803 173 Wednesday, January 11, 2023 Approved
Live Share VSCode Extension 1.0.5797 195 Wednesday, January 4, 2023 Approved
Live Share VSCode Extension 1.0.5788 215 Monday, December 5, 2022 Approved
Live Share VSCode Extension 1.0.5783 161 Wednesday, November 30, 2022 Approved
Live Share VSCode Extension 1.0.5776 179 Thursday, November 17, 2022 Approved
Live Share VSCode Extension 1.0.5762 185 Thursday, November 3, 2022 Approved
Live Share VSCode Extension 1.0.5750 188 Monday, October 24, 2022 Approved
Live Share VSCode Extension 1.0.5739 170 Wednesday, October 19, 2022 Approved
Live Share VSCode Extension 1.0.5735 183 Wednesday, October 12, 2022 Approved
Live Share VSCode Extension 1.0.5733 184 Thursday, September 29, 2022 Approved
Live Share VSCode Extension 1.0.5723 97 Thursday, September 15, 2022 Approved
Live Share VSCode Extension 1.0.5719 187 Monday, September 12, 2022 Approved
Live Share VSCode Extension 1.0.5711 153 Tuesday, September 6, 2022 Approved
Live Share VSCode Extension 1.0.5705 152 Wednesday, August 31, 2022 Approved
Live Share VSCode Extension 1.0.5696 143 Monday, August 29, 2022 Approved
Live Share VSCode Extension 1.0.5695 156 Wednesday, August 24, 2022 Approved
Live Share VSCode Extension 1.0.5690 145 Wednesday, August 17, 2022 Approved
Live Share VSCode Extension 1.0.5683 167 Monday, August 8, 2022 Approved
Live Share VSCode Extension 1.0.5679 139 Thursday, August 4, 2022 Approved
Live Share VSCode Extension 1.0.5669 130 Monday, August 1, 2022 Approved
Live Share VSCode Extension 1.0.5667 179 Wednesday, July 27, 2022 Approved
Live Share VSCode Extension 1.0.5663 152 Monday, July 25, 2022 Approved
Live Share VSCode Extension 1.0.5641 146 Tuesday, July 5, 2022 Approved
Live Share VSCode Extension 1.0.5625 517 Wednesday, June 15, 2022 Approved
Live Share VSCode Extension 1.0.5615 160 Tuesday, June 7, 2022 Approved
Live Share VSCode Extension 1.0.5597 168 Friday, May 27, 2022 Approved
Live Share VSCode Extension 1.0.5595 141 Tuesday, May 24, 2022 Approved
Live Share VSCode Extension 1.0.5582 123 Monday, May 23, 2022 Approved
Live Share VSCode Extension 1.0.5569 72 Monday, May 23, 2022 Approved
Live Share VSCode Extension 1.0.5561 203 Monday, May 9, 2022 Approved
Live Share VSCode Extension 1.0.5527 221 Wednesday, April 13, 2022 Approved
Live Share VSCode Extension 1.0.5449 273 Wednesday, March 16, 2022 Approved
Live Share VSCode Extension 1.0.5418 181 Tuesday, March 1, 2022 Approved
Live Share VSCode Extension 1.0.5330 183 Wednesday, February 2, 2022 Approved
Live Share VSCode Extension 1.0.5273 177 Wednesday, January 19, 2022 Approved
Live Share VSCode Extension 1.0.5242 175 Thursday, January 6, 2022 Approved
Live Share VSCode Extension 1.0.5201 165 Tuesday, January 4, 2022 Approved
Live Share VSCode Extension 1.0.5200 176 Thursday, December 16, 2021 Approved
Live Share VSCode Extension 1.0.5196 157 Wednesday, December 8, 2021 Approved
Live Share VSCode Extension 1.0.5090 222 Friday, November 5, 2021 Approved
Live Share VSCode Extension 1.0.5065 163 Friday, October 29, 2021 Approved
Live Share VSCode Extension 1.0.5043 163 Friday, October 22, 2021 Approved
Live Share VSCode Extension 1.0.5027 158 Wednesday, October 20, 2021 Approved
Live Share VSCode Extension 1.0.4991 168 Tuesday, October 12, 2021 Approved
Live Share VSCode Extension 1.0.4962 165 Tuesday, October 5, 2021 Approved
Live Share VSCode Extension 1.0.4836 231 Friday, September 10, 2021 Approved
Live Share VSCode Extension 1.0.4835 95 Friday, September 10, 2021 Approved
Live Share VSCode Extension 1.0.4761 197 Wednesday, August 25, 2021 Approved
Live Share VSCode Extension 1.0.4760 118 Tuesday, August 24, 2021 Approved
Live Share VSCode Extension 1.0.4673 205 Saturday, August 7, 2021 Approved
Live Share VSCode Extension 1.0.4650 169 Tuesday, August 3, 2021 Approved
Live Share VSCode Extension 1.0.4631 167 Wednesday, July 28, 2021 Approved
Live Share VSCode Extension 1.0.4583 203 Tuesday, July 20, 2021 Approved
Live Share VSCode Extension 1.0.4580 144 Friday, July 16, 2021 Approved
Live Share VSCode Extension 1.0.4568 157 Tuesday, July 13, 2021 Approved
Live Share VSCode Extension 1.0.4531 153 Wednesday, July 7, 2021 Approved
Live Share VSCode Extension 1.0.4498 183 Tuesday, June 29, 2021 Approved
Live Share VSCode Extension 1.0.4419 169 Friday, June 11, 2021 Approved
Live Share VSCode Extension 1.0.4360 194 Tuesday, June 1, 2021 Approved
Live Share VSCode Extension 1.0.4272 206 Tuesday, May 11, 2021 Approved
Live Share VSCode Extension 1.0.4131 203 Tuesday, April 13, 2021 Approved
Live Share VSCode Extension 1.0.4116 175 Thursday, April 8, 2021 Approved
Live Share VSCode Extension 1.0.4070 192 Tuesday, March 30, 2021 Approved
Live Share VSCode Extension 1.0.4018 189 Monday, March 22, 2021 Approved
Live Share VSCode Extension 1.0.3968 190 Thursday, March 11, 2021 Approved
Live Share VSCode Extension 1.0.3912 172 Thursday, March 4, 2021 Approved
Live Share VSCode Extension 1.0.3784 223 Wednesday, February 17, 2021 Approved
Live Share VSCode Extension 1.0.3629 216 Thursday, February 4, 2021 Approved
Live Share VSCode Extension 1.0.3577 203 Wednesday, January 27, 2021 Approved
Live Share VSCode Extension 1.0.3484 200 Wednesday, January 13, 2021 Approved
Live Share VSCode Extension 1.0.3449 182 Friday, January 8, 2021 Approved
Live Share VSCode Extension 1.0.3375 179 Friday, December 18, 2020 Approved
Live Share VSCode Extension 1.0.3303 173 Tuesday, December 8, 2020 Approved
Live Share VSCode Extension 1.0.3206 252 Tuesday, November 17, 2020 Approved
Live Share VSCode Extension 1.0.3121 198 Wednesday, November 4, 2020 Approved
Live Share VSCode Extension 1.0.3071 173 Tuesday, October 27, 2020 Approved
Live Share VSCode Extension 1.0.3046 172 Wednesday, October 21, 2020 Approved
Live Share VSCode Extension 1.0.3014 154 Thursday, October 15, 2020 Approved
Live Share VSCode Extension 1.0.2902 251 Monday, September 28, 2020 Approved
Live Share VSCode Extension 1.0.2740 241 Tuesday, September 1, 2020 Approved
Live Share VSCode Extension 1.0.2731 179 Friday, August 28, 2020 Approved
Live Share VSCode Extension 1.0.2708 146 Thursday, August 27, 2020 Approved
Live Share VSCode Extension 1.0.2666 187 Tuesday, August 18, 2020 Approved
Live Share VSCode Extension 1.0.2619 194 Tuesday, August 11, 2020 Approved
Live Share VSCode Extension 1.0.2478 244 Monday, July 20, 2020 Approved
Live Share VSCode Extension 1.0.2427 234 Wednesday, July 1, 2020 Approved
Live Share VSCode Extension 1.0.2377 209 Tuesday, June 23, 2020 Approved
Live Share VSCode Extension 1.0.2354 206 Wednesday, June 17, 2020 Approved
Live Share VSCode Extension 1.0.2302 191 Wednesday, June 10, 2020 Approved
Live Share VSCode Extension 1.0.2274 194 Wednesday, June 3, 2020 Approved
Live Share VSCode Extension 1.0.2236 170 Friday, May 22, 2020 Approved
Live Share VSCode Extension 1.0.2169 176 Thursday, May 14, 2020 Approved
Live Share VSCode Extension 1.0.2106 186 Thursday, May 7, 2020 Approved
Live Share VSCode Extension 1.0.2104 195 Tuesday, April 28, 2020 Approved
Live Share VSCode Extension 1.0.2048 200 Thursday, April 23, 2020 Approved
Live Share VSCode Extension 1.0.2000 206 Thursday, April 16, 2020 Approved
Live Share VSCode Extension 1.0.1947 214 Wednesday, April 8, 2020 Approved
Live Share VSCode Extension 1.0.1891 1243 Tuesday, March 31, 2020 Approved
Live Share VSCode Extension 1.0.1847 202 Wednesday, March 25, 2020 Approved
Live Share VSCode Extension 1.0.1783 215 Tuesday, March 17, 2020 Approved
Live Share VSCode Extension 1.0.1742 187 Tuesday, March 10, 2020 Approved
Live Share VSCode Extension 1.0.1711 187 Wednesday, March 4, 2020 Approved
Live Share VSCode Extension 1.0.1653 210 Friday, February 21, 2020 Approved
Live Share VSCode Extension 1.0.1615 206 Friday, February 14, 2020 Approved
Live Share VSCode Extension 1.0.1510 219 Wednesday, January 22, 2020 Approved
Live Share VSCode Extension 1.0.1482 198 Tuesday, January 14, 2020 Approved
Live Share VSCode Extension 1.0.1456 263 Wednesday, January 8, 2020 Approved
Live Share VSCode Extension 1.0.1404 205 Wednesday, December 18, 2019 Approved
Live Share VSCode Extension 1.0.1377 200 Thursday, December 12, 2019 Approved
Live Share VSCode Extension 1.0.1375 174 Wednesday, December 11, 2019 Approved
Live Share VSCode Extension 1.0.1293 204 Tuesday, November 19, 2019 Approved
Live Share VSCode Extension 1.0.1245 181 Thursday, November 14, 2019 Approved
Live Share VSCode Extension 1.0.1123 193 Saturday, November 2, 2019 Approved
Live Share VSCode Extension 1.0.1122 166 Wednesday, October 30, 2019 Approved
Live Share VSCode Extension 1.0.1056 193 Monday, October 21, 2019 Approved
Live Share VSCode Extension 1.0.988 217 Wednesday, October 16, 2019 Approved
Live Share VSCode Extension 1.0.950 208 Tuesday, October 8, 2019 Approved
Live Share VSCode Extension 1.0.905 193 Monday, September 30, 2019 Approved
Live Share VSCode Extension 1.0.869 196 Tuesday, September 24, 2019 Approved
Live Share VSCode Extension 1.0.828 171 Friday, September 20, 2019 Approved
Live Share VSCode Extension 1.0.826 186 Tuesday, September 17, 2019 Approved
Live Share VSCode Extension 1.0.809 195 Thursday, September 12, 2019 Approved
Live Share VSCode Extension 1.0.766 214 Tuesday, September 3, 2019 Approved
Live Share VSCode Extension 1.0.752 191 Thursday, August 29, 2019 Approved
Live Share VSCode Extension 1.0.721 224 Tuesday, August 20, 2019 Approved
Live Share VSCode Extension 1.0.694 192 Wednesday, August 14, 2019 Approved
Live Share VSCode Extension 1.0.657 200 Thursday, August 8, 2019 Approved
Live Share VSCode Extension 1.0.614 205 Tuesday, July 30, 2019 Approved
Live Share VSCode Extension 1.0.581 239 Thursday, July 25, 2019 Approved
Live Share VSCode Extension 1.0.540 232 Wednesday, July 17, 2019 Approved
Live Share VSCode Extension 1.0.509 163 Wednesday, July 10, 2019 Approved
Live Share VSCode Extension 1.0.488 207 Wednesday, July 3, 2019 Approved
Live Share VSCode Extension 1.0.471 199 Tuesday, June 25, 2019 Approved
Live Share VSCode Extension 1.0.470 206 Tuesday, June 25, 2019 Approved
Live Share VSCode Extension 1.0.419 180 Wednesday, June 19, 2019 Approved
Live Share VSCode Extension 1.0.379 215 Tuesday, June 11, 2019 Approved
Live Share VSCode Extension 1.0.337 212 Wednesday, June 5, 2019 Approved
Live Share VSCode Extension 1.0.311 198 Thursday, May 30, 2019 Approved
Live Share VSCode Extension 1.0.249 192 Tuesday, May 21, 2019 Approved
Live Share VSCode Extension 1.0.182 190 Wednesday, May 15, 2019 Approved
Live Share VSCode Extension 1.0.181 191 Friday, May 10, 2019 Approved
Live Share VSCode Extension 1.0.125 260 Thursday, May 2, 2019 Approved
Live Share VSCode Extension 1.0.91 191 Thursday, April 25, 2019 Approved
Live Share VSCode Extension 1.0.67 200 Tuesday, April 23, 2019 Approved
Live Share VSCode Extension 1.0.45 179 Tuesday, April 16, 2019 Approved
Live Share VSCode Extension 1.0.18 175 Tuesday, April 2, 2019 Approved
Live Share VSCode Extension 0.3.1403 207 Wednesday, March 27, 2019 Approved
Live Share VSCode Extension 0.3.1326 197 Wednesday, March 13, 2019 Approved
Live Share VSCode Extension 0.3.1284 180 Monday, March 11, 2019 Approved
Discussion for the Live Share VSCode Extension Package

Ground Rules:

  • This discussion is only about Live Share VSCode Extension and the Live Share VSCode Extension package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Live Share VSCode Extension, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus