Click here to Skip to main content
15,881,559 members

Nemanja Trifunovic - Professional Profile



Summary

LinkedIn      Blog RSS
21,629
Author
7,688
Authority
38,583
Debator
30
Editor
102
Enquirer
12,739
Organiser
9,705
Participant
Born in Kragujevac, Serbia. Now lives in Boston area with his wife and daughters.

Wrote his first program at the age of 13 on a Sinclair Spectrum, became a professional software developer after he graduated.

Very passionate about programming and software development in general.

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.


 
GeneralStandard Features Missing From VC++ 7.1 Pin
Nemanja Trifunovic2-Apr-10 15:23
Nemanja Trifunovic2-Apr-10 15:23 
GeneralConcepts voted out of C++ 0x Pin
Nemanja Trifunovic20-Jul-09 7:02
Nemanja Trifunovic20-Jul-09 7:02 
GeneralWindows Web Services API Pin
Nemanja Trifunovic31-Mar-09 10:23
Nemanja Trifunovic31-Mar-09 10:23 
GeneralRe: Windows Web Services API Pin
Rajesh R Subramanian26-Jun-09 9:28
professionalRajesh R Subramanian26-Jun-09 9:28 
GeneralRvalue references Pin
Nemanja Trifunovic13-Mar-08 4:42
Nemanja Trifunovic13-Mar-08 4:42 
GeneralRe: Rvalue references Pin
Hamid_RT23-May-08 6:53
Hamid_RT23-May-08 6:53 
GeneralRe: Rvalue references Pin
Nemanja Trifunovic23-May-08 7:12
Nemanja Trifunovic23-May-08 7:12 
GeneralRe: Rvalue references Pin
super_ttd20-Aug-08 9:50
super_ttd20-Aug-08 9:50 
GeneralState of C++ Evolution Pin
Nemanja Trifunovic4-Mar-08 11:31
Nemanja Trifunovic4-Mar-08 11:31 
GeneralRe: State of C++ Evolution Pin
Rajesh R Subramanian5-Mar-08 6:38
professionalRajesh R Subramanian5-Mar-08 6:38 
GeneralBoost 1.34.0 Pin
Nemanja Trifunovic14-May-07 8:27
Nemanja Trifunovic14-May-07 8:27 
GeneralCopying C-style arrays [modified] Pin
Nemanja Trifunovic30-Jan-07 3:29
Nemanja Trifunovic30-Jan-07 3:29 
GeneralRe: Copying C-style arrays Pin
Yadrif2-Oct-07 6:01
Yadrif2-Oct-07 6:01 
GeneralRe: Copying C-style arrays Pin
Nemanja Trifunovic2-Oct-07 8:54
Nemanja Trifunovic2-Oct-07 8:54 
GeneralDisabling checked iterators in VC 8.0 Pin
Nemanja Trifunovic4-Oct-06 2:34
Nemanja Trifunovic4-Oct-06 2:34 
GeneralC++0x: Lambda expressions Pin
Nemanja Trifunovic21-Mar-06 8:48
Nemanja Trifunovic21-Mar-06 8:48 
Generalfor each in C++ 0x Pin
Nemanja Trifunovic28-Dec-05 14:09
Nemanja Trifunovic28-Dec-05 14:09 
GeneralRe: for each in C++ 0x Pin
toxcct31-Jan-06 0:03
toxcct31-Jan-06 0:03 
GeneralRe: for each in C++ 0x Pin
Pavel Vozenilek18-Mar-06 17:25
Pavel Vozenilek18-Mar-06 17:25 
GeneralRe: for each in C++ 0x Pin
Nemanja Trifunovic19-Mar-06 1:44
Nemanja Trifunovic19-Mar-06 1:44 
GeneralRe: for each in C++ 0x Pin
Pavel Vozenilek19-Mar-06 14:02
Pavel Vozenilek19-Mar-06 14:02 
GeneralType inference in C++ 0x Pin
Nemanja Trifunovic18-Dec-05 5:25
Nemanja Trifunovic18-Dec-05 5:25 
One of the language features that are likely to get included into the next version of the standard is type inference. Namely, if the compiler can deduce the type of the variable, we can declare it with keyword auto:
auto i = 1;

Many people confuse type inference with variant types, but it is not the case. In the sample above, i is declared as int, not variant. In other words, it is exactly equivalent to:
int i = 1;

Type inference is also going to be included in C# 3.0, but the choice of the keyword is very unfortunate: var. For instance the same construct:
var i = 1;

means one thing in JavaScript (i is variant) and another in C# (i is int)

How is this useful? It can save us a lot of typing, and annoying syntax errors. Say we have:
vector<int> v;
vector<int>::iterator b = v.begin(); //without type inference
auto e = v.end(); // with type inference

For more information, see the official proposal document.[^]
GeneralRe: Type inference in C++ 0x Pin
toxcct30-Jan-06 23:57
toxcct30-Jan-06 23:57 
GeneralRe: Type inference in C++ 0x Pin
Nemanja Trifunovic31-Jan-06 1:57
Nemanja Trifunovic31-Jan-06 1:57 
GeneralVisual C++ 2005 Pin
Nemanja Trifunovic18-Nov-05 1:47
Nemanja Trifunovic18-Nov-05 1:47 

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.