pair-programming

Remote Pair Programming in IntelliJ

半城伤御伤魂 提交于 2020-11-30 04:52:06
问题 Is there a way to use IntelliJ when pair-programming? It would be nice to have the option in v7 and v8 but I would upgrade to v9 if needed. The question is a bit like this question, but for IntelliJ users instead. And also similar to another question of mine here which relates to mixed environments. 回答1: For simple working from home, I can start a vncserver session on my box at work, then start vncviewer to connect to that session, start up all my design tools (including IntelliJ). When I get

Remote Pair Programming in IntelliJ

纵饮孤独 提交于 2020-11-30 04:51:25
问题 Is there a way to use IntelliJ when pair-programming? It would be nice to have the option in v7 and v8 but I would upgrade to v9 if needed. The question is a bit like this question, but for IntelliJ users instead. And also similar to another question of mine here which relates to mixed environments. 回答1: For simple working from home, I can start a vncserver session on my box at work, then start vncviewer to connect to that session, start up all my design tools (including IntelliJ). When I get

Remote Pair Programming in IntelliJ

南笙酒味 提交于 2020-11-30 04:51:06
问题 Is there a way to use IntelliJ when pair-programming? It would be nice to have the option in v7 and v8 but I would upgrade to v9 if needed. The question is a bit like this question, but for IntelliJ users instead. And also similar to another question of mine here which relates to mixed environments. 回答1: For simple working from home, I can start a vncserver session on my box at work, then start vncviewer to connect to that session, start up all my design tools (including IntelliJ). When I get

Pair programming means double cost per developer. Is it worth that money? [closed]

泪湿孤枕 提交于 2019-12-31 08:06:22
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago . Pair programming in Agile requires us to double the salary paid to single programmer. Of course with such approach the quality of the code is far cry better, bugs are found much earlier and so forth, but is that still worth that money? Maybe we should pay the 2nd developer's

Pair programming means double cost per developer. Is it worth that money? [closed]

爷,独闯天下 提交于 2019-12-31 08:06:09
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago . Pair programming in Agile requires us to double the salary paid to single programmer. Of course with such approach the quality of the code is far cry better, bugs are found much earlier and so forth, but is that still worth that money? Maybe we should pay the 2nd developer's

Pair programming, mixed IDE environments?

倾然丶 夕夏残阳落幕 提交于 2019-12-22 10:43:13
问题 Anyone got any experience of teams doing pair programming where there is a mixed IDE environment? I'm a long time IntelliJ user, others use Eclipse, which you may have heard of. In my mind pair programming involves a lot of passing the keyboard between the programmers. But every time I get the keyboard I grind to a halt as I don't know to do anything anymore. (It's like suddenly I'm an idiot!) Now I could, probably should, learn my way round Eclipse. (Not starting a holy war here about

Visual Studio plugin to show keys pressed

泪湿孤枕 提交于 2019-12-21 05:00:36
问题 My team is beginning to embrace pair programming and some of us are more familiar with Resharper (and other productivity tools) than others. I was watching a DNR TV episode with Mark Miller and there was a Visual Studio plugin he had that showed which keys were pressed. I think this would be a great plugin to have while pairing, as well as doing presentations with other developers. You can see the plugin in action here. Does anyone know if this plugin is publicly available? If not, is there

Peer Reviews or Pair Programming, or Both? [closed]

为君一笑 提交于 2019-12-20 11:51:54
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . Do you participate in code peer reviews or practice pair programming, or both? Have you been able to demonstrate an increase in software quality using these practices? What benefits and drawbacks have you observed in the course of practice? What hurdles to implementation did

Remote Pair Programming in Visual Studio [closed]

我与影子孤独终老i 提交于 2019-12-20 08:49:02
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Does anyone know of a Visual Studio add-in that allows remote pair programming in Visual Studio? Something along the lines of SubEthaEdit, where all users can edit the same document, live, in realtime. A shared/remote desktop connection where multiple users are in control of the keyboard and mouse is a step in

Visual Studio 2008: Smoothly switch between Emacs and default keybindings

假装没事ソ 提交于 2019-12-11 02:04:57
问题 Is there any way in Visual Studio 2008 to smoothly switch between using Emacs keybindings and the default ones? I will soon be doing some pair programming and I need my Emacs keybindings to keep myself from going insane. 回答1: Create a new VS macro and add this code : Sub ToggleEmacsKeyBindings() Dim emacsSchemeName As String = "Emacs" Dim defaultSchemeName As String = "(Default)" Dim props As EnvDTE.Properties = DTE.Properties("Environment", "Keyboard") Dim propsItem As EnvDTE.Property =