Click here to Skip to main content
15,886,714 members

Anders Molin - Professional Profile



Summary

    Blog RSS
7,191
Author
978
Authority
4,669
Debator
9
Enquirer
77
Organiser
2,633
Participant
0
Editor
Huh! Wink | ;-)

 

Groups

Below is the list of groups in which the member is participating

CEO Integrated Ideas
India India
gasshopper.iics is a group of like minded programmers and learners in codeproject. The basic objective is to keep in touch and be notified while a member contributes an article, to check out with technology and share what we know. We are the "students" of codeproject.

This group is managed by Rupam Das, an active author here. Other Notable members include Ranjan who extends his helping hands to invaluable number of authors in their articles and writes some great articles himself.

Rupam Das is mentor of Grasshopper Network,founder and CEO of Integrated Ideas Consultancy Services, a research consultancy firm in India. He has been part of projects in several technologies including Matlab, C#, Android, OpenCV, Drupal, Omnet++, legacy C, vb, gcc, NS-2, Arduino, Raspberry-PI. Off late he has made peace with the fact that he loves C# more than anything else but is still struck in legacy style of coding.
Rupam loves algorithm and prefers Image processing, Artificial Intelligence and Bio-medical Engineering over other technologies.

He is frustrated with his poor writing and "grammer" skills but happy that coding polishes these frustrations.
This is a Organisation
This member has Member status in this group

115 members

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralRe: What would you want to see in a new Source Control System Pin
Anders Molin6-Jun-03 3:45
professionalAnders Molin6-Jun-03 3:45 
GeneralRe: What would you want to see in a new Source Control System Pin
mbh@ito9-Jun-03 19:20
mbh@ito9-Jun-03 19:20 
GeneralRe: What would you want to see in a new Source Control System Pin
Anders Molin10-Jun-03 0:07
professionalAnders Molin10-Jun-03 0:07 
GeneralRe: What would you want to see in a new Source Control System Pin
Nitron11-Jun-03 13:22
Nitron11-Jun-03 13:22 
GeneralRe: What would you want to see in a new Source Control System Pin
Anders Molin12-Jun-03 1:07
professionalAnders Molin12-Jun-03 1:07 
GeneralRe: What would you want to see in a new Source Control System Pin
SteveKing12-Jun-03 1:22
SteveKing12-Jun-03 1:22 
GeneralRe: What would you want to see in a new Source Control System Pin
Paul D'hertoghe12-Jun-03 4:31
professionalPaul D'hertoghe12-Jun-03 4:31 
GeneralRe: What would you want to see in a new Source Control System Pin
LBushkin1-Jul-03 8:17
LBushkin1-Jul-03 8:17 
I'll throw my two cents into this discussion as well.

I think that a balance needs to be found between a feature rich system and a simple-to-use system. Below I've listed some of the capabilities (requirements) that I think such a system should minimally have (above and beyond the basic get, check-in, check-out, etc):

1] Storage Efficiency: Most SCC systems store revisions using a delta model, where only the changes are stored. Without this capability, three revisions of a 500Kb source file with two one-line changes occupy 1.5Mb instead of ~502Kb. This becomes more difficult for binary files, but is still important, as binaries are usually even bigger than text.

2] Labeling: Code is never developed in isolation from other code. Without the ability to track logical changes together, there is no way to track or understand what belongs together and what doesn't.

3] Branching: This is an essential capability for any SCC system. Whether it's to support concurrent changes to a single source file, or create multiple versions for different clients - the ability to manage multiple evolution paths of a single item is critical.

4] Batch Interface: In most real-world, multi-user environments, there is a need to automate builds, comparisons, and other SCC operations. A batch interface allows users to easily implement automation jobs that can support their specific needs. A commendable feature would be to provide an ANT task for our SCC.

5] Criteria-Based Search: I can't begin to mention how many times PVCS has made me want to scream because there is no search capability! This is a must have for any practical system, and should allow searches on both metadata and content.
-----------------------------------------
The features listed below are not necessarily first version items, but their incorporation would make this tool a cut above the rest:

6] Physical vs. Logical Views: Although source code usually has a predetermined physical organization on disk when extracted, that is not always the most convenient way to browse or search it in SCC tool. Allowing physical organization to be separately defined from the logical structure can be a big plus.

7] Extensible Metadata: Since the server-side component is assumed to be a relational-database, it creates a perfect opportunity to provide for extensible meta-data for SCC items. In fact, this could be the basis for tying defects to source code. It would also allow immense power for searches and reporting -- imagine being able search for all code used by a particular project or department.

8] Partitioning: If you have many groups sharing a single SCC database, you really want a way to partition the contents so that only certain items are accessible to the appropriate individuals. Extensible metadata may make this substantially easier (see above).

9] Phased Concurrency: In many real-world systems, developers are actually working on more than one release of a system or software component at a time. To support this capability, an organizational structure needs to exist that allows a project team to partition the code by release or lifecycle stage. PVCS handles this with a concept called promotion groups, however, extensible metadata may provide a more powerful and flexible implementation.

10] Dynamic Links: Sometimes it is very desirable to link source code between to different projects (shared headers, shared classes, etc). To support this, most SCC systems provide the concept of shared/pinned revisions. However, this really isn't enough. Sometimes you want shared code to progress dynamically without having to manually share individual items. To really provide this ability, you have to be able to link entire folders (or metadata sets) so that a change in one place is always reflected in another.


“The State exists for the sake of society, not society for the sake of the State.” -- Woodrow Wilson (28th U.S. President)
GeneralWhat would you want in a new Defect Tracker Pin
Anders Molin4-Jun-03 23:58
professionalAnders Molin4-Jun-03 23:58 
GeneralRe: What would you want in a new Defect Tracker Pin
Chris Austin5-Jun-03 4:28
Chris Austin5-Jun-03 4:28 
GeneralRe: What would you want in a new Defect Tracker Pin
Anders Molin6-Jun-03 3:47
professionalAnders Molin6-Jun-03 3:47 
GeneralRe: What would you want in a new Defect Tracker Pin
Paul Watson6-Jun-03 0:13
sitebuilderPaul Watson6-Jun-03 0:13 
GeneralRe: What would you want in a new Defect Tracker Pin
Heinz R. Vahlbruch6-Jun-03 19:22
Heinz R. Vahlbruch6-Jun-03 19:22 
GeneralRe: What would you want in a new Defect Tracker Pin
Hans Dietrich11-Jun-03 23:04
mentorHans Dietrich11-Jun-03 23:04 
GeneralRe: What would you want in a new Defect Tracker Pin
Anders Molin12-Jun-03 1:05
professionalAnders Molin12-Jun-03 1:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.