Re: Code commenting

2013-09-12 Thread mike smith
Blame is a useful tool, ofttimes though, I'd call it credit.  For instance,
you receive a crashdump from an old version, it shows you where the app
crashed, and maybe you have a slight idea why.  Use blame on a current
version, look at changes around the crash line and you've got a lot of the
info you might need to generate a hotfix.  With all the caveats that
hotfixes imply :)  If your devs are diligent linking the svn comment with a
number from your CR system, that's another link.

But I'd hate to see it actually present in the code.




On Fri, Sep 13, 2013 at 2:50 PM, Craig van Nieuwkerk wrote:

> A lot of source control systems give you that out of the box. I know Git
> and SVN both do with the BLAME command. I wouldn't want the comments
> scattered throughout the code.
>
>
> On Fri, Sep 13, 2013 at 2:45 PM,  wrote:
>
>> Anyone suggest a method to autmaticlly comment code when lines have
>> changed?  Would be great to be able to see who changed what when viewing
>> the code.
>>
>> ** **
>>
>> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
>> INITIALS
>>
>> ** **
>>
>> WE use TFS but we like to write comments in code sometimes.  Any
>> extensions able to do this?
>>
>> ** **
>>
>> Anthony
>>
>> Melbourne StuffUps…learn from others, share with others!
>>
>> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/
>> 
>>
>>
>>
>> --
>> NOTICE : The information contained in this electronic mail message is
>> privileged and confidential, and is intended only for use of the addressee.
>> If you are not the intended recipient, you are hereby notified that any
>> disclosure, reproduction, distribution or other use of this communication
>> is strictly prohibited.
>> If you have received this communication in error, please notify the
>> sender by reply transmission and delete the message without copying or
>> disclosing it. (*13POrtC*)
>>
>> ---
>> 
>>
>> ** **
>>
>
>


-- 
Meski

 http://courteous.ly/aAOZcv

"Going to Starbucks for coffee is like going to prison for sex. Sure,
you'll get it, but it's going to be rough" - Adam Hills


RE: out of memory..urgent...Solution

2013-09-12 Thread anthonyatsmallbiz
What do you mean?  

 

Anthony

Melbourne StuffUps…learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/


--
NOTICE : The information contained in this electronic mail message is 
privileged and confidential, and is intended only for use of the addressee. If 
you are not the intended recipient, you are hereby notified that any 
disclosure, reproduction, distribution or other use of this communication is 
strictly prohibited. 
If you have received this communication in error, please notify the sender by 
reply transmission and delete the message without copying or disclosing it. 
(*13POrtC*)
---
 

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of mike smith
Sent: Friday, 13 September 2013 4:50 PM
To: ozDotNet
Subject: Re: out of memory..urgent...Solution

 

Are you doing something odd with generational garbage collection here?  

 

On Fri, Sep 13, 2013 at 2:46 PM,  wrote:

If you are interested..memeory issue was resolved by doing the following…

 

 

  Public Shared Function byteArrayToString(ByVal b() As Byte) As String

Dim ss As New System.Text.UTF8Encoding

Dim sString As String

Dim sb As New StringBuilder

Dim cursor As Integer

Dim sChunk As String

Try

 

 

 

' sString = System.Text.Encoding.UTF8.GetString(b)

 

While cursor < b.Length

 

Dim arr2() As Byte

 

If (cursor + 10) > (b.Length) Then

arr2 = New Byte(b.Length - cursor - 1) {}

Array.Copy(b, cursor, arr2, 0, b.Length - cursor)

Else

arr2 = New Byte(10 - 1) {}

Array.Copy(b, cursor, arr2, 0, 10)

End If

 

 

sChunk = System.Text.Encoding.UTF8.GetString(arr2)

sb.Append(sChunk)

cursor += 10

 

End While

 

' sString = ss.GetString(b)

Return sb.ToString

Catch ex As Exception

Throw ex

End Try

 

End Function

 

 

 

Anthony

Melbourne StuffUps…learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/


--
NOTICE : The information contained in this electronic mail message is 
privileged and confidential, and is intended only for use of the addressee. If 
you are not the intended recipient, you are hereby notified that any 
disclosure, reproduction, distribution or other use of this communication is 
strictly prohibited. 
If you have received this communication in error, please notify the sender by 
reply transmission and delete the message without copying or disclosing it. 
(*13POrtC*)
---
 

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of David Kean
Sent: Wednesday, 11 September 2013 2:20 AM
To: ozDotNet
Subject: RE: out of memory..urgent

 

Memory isn’t unlimited. Basically, when you convert from a byte array -> 
string, you have two copies of the same data (one for the byte array and one 
for the string) in memory.

 

What exactly are you doing? You are typically better off chunking and reading 
smaller amounts of data at a time. Use something like a StreamWriter over a 
stream to automatically handles the byte -> text conversion.

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On 
Behalf Of anthonyatsmall...@mail.com
Sent: Monday, September 9, 2013 8:05 PM
To: ozDotNet
Subject: out of memory..urgent

 

Getting out of memory exception when I try to

 

Dim s as string

Dim b() as Byte

 

s=System.Text.Encoding.GetEncoding(“utf-8).GetString(b) 

 

Definitely something about the length of b..works fine most of the time except 
if b length is very large

 

Anthony

Melbourne StuffUps…learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/


--
NOTICE : The information contained in this electronic mail message is 
privileged and confidential, and is intended only for use of the addressee. If 
you are not the intended recipient, you are hereby notified that any 
disclosure, reproduction, distribution or other use of this communication is 
strictly prohibited. 
If you have received this communication in error, please notify the sender by 
reply transmission and delete the message without copying or disclosing it. 
(*13POrtC*)
---

Re: out of memory..urgent...Solution

2013-09-12 Thread mike smith
Are you doing something odd with generational garbage collection here?


On Fri, Sep 13, 2013 at 2:46 PM,  wrote:

> If you are interested..memeory issue was resolved by doing the following…*
> ***
>
> ** **
>
> ** **
>
>   Public Shared Function byteArrayToString(ByVal b() As Byte) As String***
> *
>
> Dim ss As New System.Text.UTF8Encoding
>
> Dim sString As String
>
> Dim sb As New StringBuilder
>
> Dim cursor As Integer
>
> Dim sChunk As String
>
> Try
>
> ** **
>
> ** **
>
> ** **
>
> ' sString = System.Text.Encoding.UTF8.GetString(b)
>
> ** **
>
> While cursor < b.Length
>
> ** **
>
> Dim arr2() As Byte
>
> ** **
>
> If (cursor + 10) > (b.Length) Then
>
> arr2 = New Byte(b.Length - cursor - 1) {}
>
> Array.Copy(b, cursor, arr2, 0, b.Length - cursor)
>
> Else
>
> arr2 = New Byte(10 - 1) {}
>
> Array.Copy(b, cursor, arr2, 0, 10)
>
> End If
>
> ** **
>
> ** **
>
> sChunk = System.Text.Encoding.UTF8.GetString(arr2)
>
> sb.Append(sChunk)
>
> cursor += 10
>
> ** **
>
> End While
>
> ** **
>
> ' sString = ss.GetString(b)
>
> Return sb.ToString
>
> Catch ex As Exception
>
> Throw ex
>
> End Try
>
> ** **
>
> End Function
>
> ** **
>
> ** **
>
> ** **
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
> ** **
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *David Kean
> *Sent:* Wednesday, 11 September 2013 2:20 AM
> *To:* ozDotNet
> *Subject:* RE: out of memory..urgent
>
> ** **
>
> Memory isn’t unlimited. Basically, when you convert from a byte array ->
> string, you have two copies of the same data (one for the byte array and
> one for the string) in memory.
>
> ** **
>
> What exactly are you doing? You are typically better off chunking and
> reading smaller amounts of data at a time. Use something like a
> StreamWriter over a stream to automatically handles the byte -> text
> conversion.
>
> ** **
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *anthonyatsmall...@mail.com
> *Sent:* Monday, September 9, 2013 8:05 PM
> *To:* ozDotNet
> *Subject:* out of memory..urgent
>
> ** **
>
> Getting out of memory exception when I try to
>
> ** **
>
> Dim s as string
>
> Dim b() as Byte
>
> ** **
>
> s=System.Text.Encoding.GetEncoding(“utf-8).GetString(b) 
>
> ** **
>
> Definitely something about the length of b..works fine most of the time
> except if b length is very large
>
> ** **
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
> ** **
>



-- 
Meski

 http://courteous.ly/aAOZcv

"Going to Starbucks for coffee is like going to prison for sex. Sure,
you'll get it, but it's going to be rough" - Adam Hills


Re: Code commenting

2013-09-12 Thread William Luu
With Visual Studio 2013 Ultimate/TFS2013 there's a new feature called
CodeLens which will probably give you something similar to what you're
after.

See -
http://msdn.microsoft.com/en-us/library/vstudio/dn269218(v=vs.120).aspx
And -
http://blogs.msdn.com/b/zainnab/archive/2013/07/09/visual-studio-2013-preview-codelens-aka-code-information-indicators.aspx

Basically, there is functionality to show you recent changes, by who and
the checkin comment.


On 13 September 2013 15:11, Preet Sangha  wrote:

> Anthony, you're asking about some form of automated tool and seriously
> you're not using the annotate function within TFS?
>
>
>
>
>
>
> On 13 September 2013 16:55,  wrote:
>
>> I like to comment code and remove some of them after a while.  
>>
>> ** **
>>
>> Anthony
>>
>> Melbourne StuffUps…learn from others, share with others!
>>
>> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/
>> 
>>
>>
>>
>> --
>> NOTICE : The information contained in this electronic mail message is
>> privileged and confidential, and is intended only for use of the addressee.
>> If you are not the intended recipient, you are hereby notified that any
>> disclosure, reproduction, distribution or other use of this communication
>> is strictly prohibited.
>> If you have received this communication in error, please notify the
>> sender by reply transmission and delete the message without copying or
>> disclosing it. (*13POrtC*)
>>
>> ---
>> 
>>
>> ** **
>>
>> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
>> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Craig van Nieuwkerk
>> *Sent:* Friday, 13 September 2013 2:50 PM
>> *To:* ozDotNet
>> *Subject:* Re: Code commenting
>>
>> ** **
>>
>> A lot of source control systems give you that out of the box. I know Git
>> and SVN both do with the BLAME command. I wouldn't want the comments
>> scattered throughout the code.
>>
>> ** **
>>
>> On Fri, Sep 13, 2013 at 2:45 PM,  wrote:
>>
>> Anyone suggest a method to autmaticlly comment code when lines have
>> changed?  Would be great to be able to see who changed what when viewing
>> the code.
>>
>>  
>>
>> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
>> INITIALS
>>
>>  
>>
>> WE use TFS but we like to write comments in code sometimes.  Any
>> extensions able to do this?
>>
>>  
>>
>> Anthony
>>
>> Melbourne StuffUps…learn from others, share with others!
>>
>> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/
>> 
>>
>>
>>
>> --
>> NOTICE : The information contained in this electronic mail message is
>> privileged and confidential, and is intended only for use of the addressee.
>> If you are not the intended recipient, you are hereby notified that any
>> disclosure, reproduction, distribution or other use of this communication
>> is strictly prohibited.
>> If you have received this communication in error, please notify the
>> sender by reply transmission and delete the message without copying or
>> disclosing it. (*13POrtC*)
>>
>> ---
>> 
>>
>>  
>>
>> ** **
>>
>
>
>
> --
> regards,
> Preet, Overlooking the Ocean, Auckland
>


Re: Code commenting

2013-09-12 Thread Joseph Cooney
Annotate is the 'glass is half full' name for blame in TFS.
On 13 Sep 2013 14:50, "Craig van Nieuwkerk"  wrote:

> A lot of source control systems give you that out of the box. I know Git
> and SVN both do with the BLAME command. I wouldn't want the comments
> scattered throughout the code.
>
>
> On Fri, Sep 13, 2013 at 2:45 PM,  wrote:
>
>> Anyone suggest a method to autmaticlly comment code when lines have
>> changed?  Would be great to be able to see who changed what when viewing
>> the code.
>>
>> ** **
>>
>> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
>> INITIALS
>>
>> ** **
>>
>> WE use TFS but we like to write comments in code sometimes.  Any
>> extensions able to do this?
>>
>> ** **
>>
>> Anthony
>>
>> Melbourne StuffUps…learn from others, share with others!
>>
>> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/
>> 
>>
>>
>>
>> --
>> NOTICE : The information contained in this electronic mail message is
>> privileged and confidential, and is intended only for use of the addressee.
>> If you are not the intended recipient, you are hereby notified that any
>> disclosure, reproduction, distribution or other use of this communication
>> is strictly prohibited.
>> If you have received this communication in error, please notify the
>> sender by reply transmission and delete the message without copying or
>> disclosing it. (*13POrtC*)
>>
>> ---
>> 
>>
>> ** **
>>
>
>


Re: Code commenting

2013-09-12 Thread Preet Sangha
Anthony, you're asking about some form of automated tool and seriously
you're not using the annotate function within TFS?






On 13 September 2013 16:55,  wrote:

> I like to comment code and remove some of them after a while.  
>
> ** **
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
> ** **
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Craig van Nieuwkerk
> *Sent:* Friday, 13 September 2013 2:50 PM
> *To:* ozDotNet
> *Subject:* Re: Code commenting
>
> ** **
>
> A lot of source control systems give you that out of the box. I know Git
> and SVN both do with the BLAME command. I wouldn't want the comments
> scattered throughout the code.
>
> ** **
>
> On Fri, Sep 13, 2013 at 2:45 PM,  wrote:
>
> Anyone suggest a method to autmaticlly comment code when lines have
> changed?  Would be great to be able to see who changed what when viewing
> the code.
>
>  
>
> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
> INITIALS
>
>  
>
> WE use TFS but we like to write comments in code sometimes.  Any
> extensions able to do this?
>
>  
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
>  
>
> ** **
>



-- 
regards,
Preet, Overlooking the Ocean, Auckland


RE: Code commenting

2013-09-12 Thread anthonyatsmallbiz
I like to comment code and remove some of them after a while.  

 

Anthony

Melbourne StuffUps.learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/



--
NOTICE : The information contained in this electronic mail message is
privileged and confidential, and is intended only for use of the addressee.
If you are not the intended recipient, you are hereby notified that any
disclosure, reproduction, distribution or other use of this communication is
strictly prohibited. 
If you have received this communication in error, please notify the sender
by reply transmission and delete the message without copying or disclosing
it. (*13POrtC*)

--- 

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
On Behalf Of Craig van Nieuwkerk
Sent: Friday, 13 September 2013 2:50 PM
To: ozDotNet
Subject: Re: Code commenting

 

A lot of source control systems give you that out of the box. I know Git and
SVN both do with the BLAME command. I wouldn't want the comments scattered
throughout the code.

 

On Fri, Sep 13, 2013 at 2:45 PM,  wrote:

Anyone suggest a method to autmaticlly comment code when lines have changed?
Would be great to be able to see who changed what when viewing the code.

 

At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
INITIALS

 

WE use TFS but we like to write comments in code sometimes.  Any extensions
able to do this?

 

Anthony

Melbourne StuffUps.learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/



--
NOTICE : The information contained in this electronic mail message is
privileged and confidential, and is intended only for use of the addressee.
If you are not the intended recipient, you are hereby notified that any
disclosure, reproduction, distribution or other use of this communication is
strictly prohibited. 
If you have received this communication in error, please notify the sender
by reply transmission and delete the message without copying or disclosing
it. (*13POrtC*)

--- 

 

 



Re: Code commenting

2013-09-12 Thread Craig van Nieuwkerk
A lot of source control systems give you that out of the box. I know Git
and SVN both do with the BLAME command. I wouldn't want the comments
scattered throughout the code.


On Fri, Sep 13, 2013 at 2:45 PM,  wrote:

> Anyone suggest a method to autmaticlly comment code when lines have
> changed?  Would be great to be able to see who changed what when viewing
> the code.
>
> ** **
>
> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
> INITIALS
>
> ** **
>
> WE use TFS but we like to write comments in code sometimes.  Any
> extensions able to do this?
>
> ** **
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
> ** **
>


RE: out of memory..urgent...Solution

2013-09-12 Thread anthonyatsmallbiz
If you are interested..memeory issue was resolved by doing the following.

 

 

  Public Shared Function byteArrayToString(ByVal b() As Byte) As String

Dim ss As New System.Text.UTF8Encoding

Dim sString As String

Dim sb As New StringBuilder

Dim cursor As Integer

Dim sChunk As String

Try

 

 

 

' sString = System.Text.Encoding.UTF8.GetString(b)

 

While cursor < b.Length

 

Dim arr2() As Byte

 

If (cursor + 10) > (b.Length) Then

arr2 = New Byte(b.Length - cursor - 1) {}

Array.Copy(b, cursor, arr2, 0, b.Length - cursor)

Else

arr2 = New Byte(10 - 1) {}

Array.Copy(b, cursor, arr2, 0, 10)

End If

 

 

sChunk = System.Text.Encoding.UTF8.GetString(arr2)

sb.Append(sChunk)

cursor += 10

 

End While

 

' sString = ss.GetString(b)

Return sb.ToString

Catch ex As Exception

Throw ex

End Try

 

End Function

 

 

 

Anthony

Melbourne StuffUps.learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/



--
NOTICE : The information contained in this electronic mail message is
privileged and confidential, and is intended only for use of the addressee.
If you are not the intended recipient, you are hereby notified that any
disclosure, reproduction, distribution or other use of this communication is
strictly prohibited. 
If you have received this communication in error, please notify the sender
by reply transmission and delete the message without copying or disclosing
it. (*13POrtC*)

--- 

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
On Behalf Of David Kean
Sent: Wednesday, 11 September 2013 2:20 AM
To: ozDotNet
Subject: RE: out of memory..urgent

 

Memory isn't unlimited. Basically, when you convert from a byte array ->
string, you have two copies of the same data (one for the byte array and one
for the string) in memory.

 

What exactly are you doing? You are typically better off chunking and
reading smaller amounts of data at a time. Use something like a StreamWriter
over a stream to automatically handles the byte -> text conversion.

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
On Behalf Of anthonyatsmall...@mail.com
Sent: Monday, September 9, 2013 8:05 PM
To: ozDotNet
Subject: out of memory..urgent

 

Getting out of memory exception when I try to

 

Dim s as string

Dim b() as Byte

 

s=System.Text.Encoding.GetEncoding("utf-8).GetString(b) 

 

Definitely something about the length of b..works fine most of the time
except if b length is very large

 

Anthony

Melbourne StuffUps.learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/



--
NOTICE : The information contained in this electronic mail message is
privileged and confidential, and is intended only for use of the addressee.
If you are not the intended recipient, you are hereby notified that any
disclosure, reproduction, distribution or other use of this communication is
strictly prohibited. 
If you have received this communication in error, please notify the sender
by reply transmission and delete the message without copying or disclosing
it. (*13POrtC*)

--- 

 



Re: Code commenting

2013-09-12 Thread Joseph Cooney
TFS annotate?
On 13 Sep 2013 14:47,  wrote:

> Anyone suggest a method to autmaticlly comment code when lines have
> changed?  Would be great to be able to see who changed what when viewing
> the code.
>
> ** **
>
> At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
> INITIALS
>
> ** **
>
> WE use TFS but we like to write comments in code sometimes.  Any
> extensions able to do this?
>
> ** **
>
> Anthony
>
> Melbourne StuffUps…learn from others, share with others!
>
> http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/*
> ***
>
>
>
> --
> NOTICE : The information contained in this electronic mail message is
> privileged and confidential, and is intended only for use of the addressee.
> If you are not the intended recipient, you are hereby notified that any
> disclosure, reproduction, distribution or other use of this communication
> is strictly prohibited.
> If you have received this communication in error, please notify the sender
> by reply transmission and delete the message without copying or disclosing
> it. (*13POrtC*)
>
> ---
> 
>
> ** **
>


Code commenting

2013-09-12 Thread anthonyatsmallbiz
Anyone suggest a method to autmaticlly comment code when lines have changed?
Would be great to be able to see who changed what when viewing the code.

 

At the moment,, we write comments like //xxMOD 12AUG13   XX=PROGRAMMER
INITIALS

 

WE use TFS but we like to write comments in code sometimes.  Any extensions
able to do this?

 

Anthony

Melbourne StuffUps.learn from others, share with others!

http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/



--
NOTICE : The information contained in this electronic mail message is
privileged and confidential, and is intended only for use of the addressee.
If you are not the intended recipient, you are hereby notified that any
disclosure, reproduction, distribution or other use of this communication is
strictly prohibited. 
If you have received this communication in error, please notify the sender
by reply transmission and delete the message without copying or disclosing
it. (*13POrtC*)

--- 

 



IMAP in outlook.com

2013-09-12 Thread Ian Thomas
I've only just discovered that IMAP has been introduced to outlook.com.
Useful. [link
 ]

There are upgrades to some third-party applications, now incorporating IMAP.

  _  

Ian Thomas
Victoria Park, Western Australia