Serving the Quantitative Finance Community

Search found 29 matches

  • 1
  • 2
by CluelessCpp
May 1st, 2014, 10:41 am
Forum: Careers Forum
Topic: Interviews have no sense
Replies: 69
Views: 14262

Interviews have no sense

<t>QuoteOriginally posted by: katastrofaQuoteOriginally posted by: CluelessCppDo you also regularly do pair programming on the job or is this just something you would do for the interview?On the job? Rarely. But it's a good way of interviewing a programmer.Really? That programmer gets a completely d...
by CluelessCpp
May 1st, 2014, 5:26 am
Forum: Careers Forum
Topic: Interviews have no sense
Replies: 69
Views: 14262

Interviews have no sense

QuoteOriginally posted by: katastrofaYou can also do pair programming during interviews.Do you also regularly do pair programming on the job or is this just something you would do for the interview?
by CluelessCpp
April 30th, 2014, 8:12 pm
Forum: Careers Forum
Topic: Interviews have no sense
Replies: 69
Views: 14262

Interviews have no sense

<t>QuoteOriginally posted by: katastrofaQuoteOriginally posted by: CluelessCppQuoteIf you're any good as a programmer, you can write FizzBuzz or a function to reverse an array in-place on a piece of paper. If you can't, go back to school.And what does that tell you?It tells me that they're not one o...
by CluelessCpp
April 30th, 2014, 8:09 am
Forum: Careers Forum
Topic: Interviews have no sense
Replies: 69
Views: 14262

Interviews have no sense

<t>QuoteOriginally posted by: katastrofaQuoteOriginally posted by: CluelessCppLook at some of the candidate's Open Source code, maybe?1. What if they didn't write any? I don't have time to contribute to Open Source projects, and I can't show the stuff I at work because it belongs to my employer, not...
by CluelessCpp
April 28th, 2014, 8:25 pm
Forum: Careers Forum
Topic: Interviews have no sense
Replies: 69
Views: 14262

Interviews have no sense

<t>QuoteOriginally posted by: katastrofaPS. How do you check that a candidate is capable of writing correct, clean code which solves a problem without asking them to write code during the interview? Talking the talk is one thing, walking the walk quite another.Look at some of the candidate's Open So...
by CluelessCpp
October 26th, 2013, 1:41 pm
Forum: Careers Forum
Topic: Good insight about what a good C/C++ coder knows
Replies: 100
Views: 12665

Good insight about what a good C/C++ coder knows

<t>QuoteOriginally posted by: CuchulainnQuote LOL, just looked at the first one, and that's already sneaky! f(1)+f(2)*f(3)So, what's your answer?Depends on the question - in terms of the C++ Standard I'd say it's unspecified (as the evaluation of operands is unsequenced, the evaluation of the bodies...
by CluelessCpp
March 4th, 2013, 7:04 pm
Forum: Programming and Software Forum
Topic: Calling "delete this;" in a member function.
Replies: 33
Views: 11560

Calling "delete this;" in a member function.

<t>QuoteOriginally posted by: outrunDo you get a RT error when you add a little print statement inside doit? that would force it to be called.Now it might get removed entirely (the doit() code is written inside the class body -> hence it's inlined), which is incorrect: it should give a RT instead IM...
by CluelessCpp
March 1st, 2013, 4:49 pm
Forum: Programming and Software Forum
Topic: Calling "delete this;" in a member function.
Replies: 33
Views: 11560

Calling "delete this;" in a member function.

QuoteOriginally posted by: CuchulainnOf course, it won't work in const member functions.Why do you think so - it "works" just the same as in non-const member functions.
by CluelessCpp
March 1st, 2013, 8:09 am
Forum: Programming and Software Forum
Topic: std::shared_ptr VS boost::shared_ptr
Replies: 7
Views: 11446

std::shared_ptr VS boost::shared_ptr

<t>QuoteOriginally posted by: CuchulainnQuoteOriginally posted by: CluelessCppBTW, the _array variants are not needed [...]Unless you using raw legacy C arrays?Sorry, should have put that into the context of the std smart pointers - these are specialised for array types to call the correct delete op...
by CluelessCpp
February 28th, 2013, 12:15 pm
Forum: Programming and Software Forum
Topic: std::shared_ptr VS boost::shared_ptr
Replies: 7
Views: 11446

std::shared_ptr VS boost::shared_ptr

std also has a unique_ptr.BTW, the _array variants are not needed as unique_ptr and shared_ptr can handle arrays as well.
by CluelessCpp
February 27th, 2013, 12:52 pm
Forum: Programming and Software Forum
Topic: Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012)
Replies: 9
Views: 10146

Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012)

IntelliSense uses a different C++ parser (EDG) than the Visual C++ compiler. And the CTP only updated the command line compiler, but not IntelliSense - so a different set of C++11 features is supported in IntelliSense compared to the command line compiler.
by CluelessCpp
November 8th, 2012, 12:23 pm
Forum: Programming and Software Forum
Topic: Variadic Templates in VC
Replies: 7
Views: 11251

Variadic Templates in VC

<t>QuoteOriginally posted by: MiloRambaldiI'm not too familiar with C++11, but it does not seems to allow:vector<T> v {t1, t2, t3};This is allowed in g++.They have implemented the core language support in the VC++ November CTP, but haven't updated the standard library yet - so you could use it in yo...
by CluelessCpp
September 18th, 2012, 5:26 pm
Forum: Careers Forum
Topic: Applying via LinkedIn
Replies: 15
Views: 14646

Applying via LinkedIn

I have now noticed a few times when applying for a job via LinkedIn that the application apparently doesn't even get viewed (the job shows up as "Applied" instead of "App viewed"). I wonder on what basis this could have been filtered?Does anyone have any ideas or views on this?
by CluelessCpp
June 16th, 2012, 8:07 am
Forum: Programming and Software Forum
Topic: C++, compile-time detection of template function implementation
Replies: 14
Views: 13617

C++, compile-time detection of template function implementation

Do you insist on using explicit specializations for print_type?if not, http://ideone.com/xMubC could be another approach.
by CluelessCpp
June 4th, 2012, 4:34 pm
Forum: Programming and Software Forum
Topic: Can a template function be called with missing template parameters in C++ ?
Replies: 11
Views: 14333

Can a template function be called with missing template parameters in C++ ?

QuoteOriginally posted by: CuchulainnThe problem with C++ templates is that you cannot prescribe constraints on the template parameters. So, in some cases you are left at the mercy of the compiler.But you can use SFINAE - see std::enable_if
  • 1
  • 2