Click here to Skip to main content
15,885,839 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.


 
GeneralGeneral Comments Pin
Anders Molin5-Jun-03 1:09
professionalAnders Molin5-Jun-03 1:09 
GeneralRe: General Comments Pin
Terry Denham5-Jun-03 3:34
Terry Denham5-Jun-03 3:34 
GeneralRe: General Comments Pin
Anders Molin6-Jun-03 3:39
professionalAnders Molin6-Jun-03 3:39 
GeneralRe: General Comments Pin
Terry Denham12-Jun-03 13:17
Terry Denham12-Jun-03 13:17 
GeneralWhat languages do we use to make this product Pin
Anders Molin5-Jun-03 0:07
professionalAnders Molin5-Jun-03 0:07 
GeneralRe: What languages do we use to make this product Pin
Heinz R. Vahlbruch5-Jun-03 1:21
Heinz R. Vahlbruch5-Jun-03 1:21 
GeneralRe: What languages do we use to make this product Pin
Anders Molin6-Jun-03 3:40
professionalAnders Molin6-Jun-03 3:40 
GeneralRe: What languages do we use to make this product Pin
Chris Austin5-Jun-03 4:39
Chris Austin5-Jun-03 4:39 
GeneralRe: What languages do we use to make this product Pin
Anders Molin6-Jun-03 3:41
professionalAnders Molin6-Jun-03 3:41 
GeneralRe: What languages do we use to make this product Pin
Paul Watson6-Jun-03 0:24
sitebuilderPaul Watson6-Jun-03 0:24 
GeneralRe: What languages do we use to make this product Pin
Heinz R. Vahlbruch6-Jun-03 0:31
Heinz R. Vahlbruch6-Jun-03 0:31 
GeneralRe: What languages do we use to make this product Pin
Anders Molin6-Jun-03 3:44
professionalAnders Molin6-Jun-03 3:44 
GeneralRe: What languages do we use to make this product Pin
Joseph Dempsey6-Jun-03 8:23
Joseph Dempsey6-Jun-03 8:23 
GeneralRe: What languages do we use to make this product Pin
Jason Henderson6-Jun-03 9:05
Jason Henderson6-Jun-03 9:05 
GeneralRe: What languages do we use to make this product Pin
LBushkin1-Jul-03 7:30
LBushkin1-Jul-03 7:30 
Let me add my two cents into this discussion.

Given the real-world transactional volume that a SCC system usually has to deal with (even in a large organization), I don't think the choice between C++, MC++, or C# is really going to have a substantial impact on performance of the server component. Most of the heavy lifting should be done in the database using stored procedures to begin with. Even for databases that do not support stored procedures, the SQL execution happens within the database, and so I would expect most of the bottleneck to exist there. Performance will depend a great deal on solid relational database design practices. Lastly, if language performance ever does become an issue, then at that point I think we should look to refactor the components that are responsible for a bottlneck into platform specific implementations (C++, etc).

Second, if we are developing an OSS system, it really should be runnable on a wide cross-section of different databases. I don't think someone should have to purchase SQLServer or Oracle (both expensive DBs) just to run a _free_ SCC system! We should strive to partition the data layer using the interface/implementation pattern so that different providers could be developed and plugged into the core system when desired. Ideally, any system that supports ANSI SQL should be a target for such a system.

I'll also throw out another thought, and that is that we should try to develop the server-side component of the system as a web service. By doing so, we open the door for both non-Windows client implementations and non-Windows server implementations. What we should really design/control is the XML dialect that will be used to initiate SCC transactions, searches, and management operations. By doing so, we will really divorce the interface between the client and server from any platform, technology, or language -- thereby creating substantially more flexibility and broaden the appeal of the tool. It will also make the SCC system accessible through a firewall through HTTP -- this is a big deal where you want to put a SCC system up on the Internet and make it both secure AND accessible. .NET makes development of web services ridiculously easy -- and it would be a shame to pass up an opportunity to use this technology in a way in which it is intended to be used.

“Try to learn something about everything and everything about something.” - T. H. Huxley (English Biologist)

GeneralWhat would you want to see in a new Source Control System Pin
Anders Molin5-Jun-03 0:04
professionalAnders Molin5-Jun-03 0:04 
GeneralRe: What would you want to see in a new Source Control System Pin
Chris Austin5-Jun-03 4:48
Chris Austin5-Jun-03 4:48 
GeneralRe: What would you want to see in a new Source Control System Pin
Anders Molin6-Jun-03 3:44
professionalAnders Molin6-Jun-03 3:44 
GeneralRe: What would you want to see in a new Source Control System Pin
Marc Clifton5-Jun-03 11:28
mvaMarc Clifton5-Jun-03 11:28 
GeneralRe: What would you want to see in a new Source Control System Pin
Anders Molin6-Jun-03 3:37
professionalAnders Molin6-Jun-03 3:37 
GeneralRe: What would you want to see in a new Source Control System Pin
Paul Watson5-Jun-03 23:36
sitebuilderPaul Watson5-Jun-03 23:36 
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 

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.