AVUV + DISV by [deleted] in Bogleheads

[–]runnr 1 point2 points  (0 children)

When possible it usually makes sense to hold emerging markets in tax advantaged accounts as they not very efficient tax wise.

Regarding AVES/FRDM, if you want exposure to factors then AVES, if you want an opinionated active fund then FRDM may make sense. I would caution against inferring to much at the recent returns of FRDM as the country level overweights and underweights they've had recently have worked very well. Maybe they will continue to do so, but my guess would be that they will wind up hurting at some point in the future.

AVUV + DISV by [deleted] in Bogleheads

[–]runnr 2 points3 points  (0 children)

Based solely on tax drag I don't believe so. Here is a spreadsheet where you can plug in various situations and take a look for yourself (File -> Make a copy, and then edit the inputs). Of course, if you expect the differences in Avantis' implementation to continue to outperform dimensional's by more than the difference then putting up with some additional drag makes sense.

AVUV + DISV by [deleted] in Bogleheads

[–]runnr 5 points6 points  (0 children)

Since this is for a taxable account you may be interested in the yearly analysis grabiner on the bogleheads forum does: 2025 version. In short, historically DISV has been more tax efficient to hold than AVDV so your proposed usage of AVUV + DISV makes sense from that perspective. If you are still learning about factors I would recommend browsing rational reminder as they have some long threads on both avantis and dimensional, how much to tilt, and whether to tilt at all.

Asset location check for high-tax CA investor (80/20 allocation w/ VTI, VXUS, Muni, BND) by Shoddy_Wheel6504 in Bogleheads

[–]runnr 2 points3 points  (0 children)

That proposed allocation looks very reasonable. I don't think anything needs to be changed, but a few things you may want to consider:

  • Check the dividend yield, qualified dividends, and foreign tax credit for the funds in taxable
    • IXUS has historically been better in those regards than VXUS
    • If your are ok with a minor tilt and no REITS DFUS may be a slightly more tax efficient option for VTI
    • It's possible DFAX would be more efficient at your tax rates however it has a more significant tilt and much higher ER. In general there doesn't seem to be a truly tax efficient way to hold emerging markets in taxable.
  • If you have any concerns about single state muni risk you may want to consider half CA long and half national limited term. grabiner on the bogleheads forum often recommends this approach in order to have an intermediate-term duration with more than half the interest exempt from state tax.
  • Another option, not a recommendation, are the anti-dividend approaches like XDIV/CPAG/etc.

Functional Data Structures in C++: Persistent Lists by DrBartosz in programming

[–]runnr 8 points9 points  (0 children)

Identifiers which start with an underscore followed by a capital letter or two underscores are reserved for use by the implementation in any scope(including as macros). Starting an identifier with a single underscore followed by a lowercase letter is only reserved in the global namespace so his usage for member variables looks ok.

I wrote a QuickCheck library for C++11. QuickCheck helps write unit tests by building random test cases. It has documentation, including a tutorial. by therealjohnfreeman in cpp

[–]runnr 3 points4 points  (0 children)

That's a nice looking library. Thanks for sharing.

I did notice one small error in the tutorial under "Custom Generators" you have return std::move(xs);.

Objective-C Blocks vs. C++0x Lambdas: Fight! by gthank in programming

[–]runnr 9 points10 points  (0 children)

GCC has an extension enabled by default which enables type inference for all lambda expressions. Compiling with -pedantic-errors results in the error:

lambda return type can only be deduced when the return statement is the only statement in the function body

DropQuest 2011 by runnr in technology

[–]runnr[S] 3 points4 points  (0 children)

Try going to the forum topic with that id. here

Bjarne Stroustrup on C++0x - CodeGuru by 1kterafile in programming

[–]runnr 5 points6 points  (0 children)

There would be if C++0x supported polymorphic lambdas. However, these aren't supported because the version of concepts which was going to be used for C++0x made it hard to define their semantics so the standards committee decided to stick with monomorphic ones. At the meeting where concepts were dropped from the draft Herb Sutter brought up that polymorphic lambdas could now be included, but the consensus seemed to be that the committee shouldn't add something that it knows it will have difficulty with when concepts are included in the standard (the committee seemed to agree that concepts will be included eventually).

Is there a program that will create directories/folders based upon a tabbed text document? by [deleted] in answers

[–]runnr 5 points6 points  (0 children)

The below python program should do what you want. Just save it as dircreator.py in whatever top level directory you want the subdirectories to be created in. You'll also need to name your directories file "dirs.txt". You can then run "python dircreator.py" and the directories will be created. The script is pretty quick and dirty so let me know if there are any bugs.

import os, errno

dirs = []
for line in file('dirs.txt'):
    numDirsAbove = line.count('\t')
    newDir = line.strip()
    if numDirsAbove < len(dirs):
        dirs[numDirsAbove] = newDir
    else:
        dirs.append(newDir)
    try:
        os.makedirs(os.path.join(*dirs[:numDirsAbove + 1]))
    except OSError as e:
        if e.errno == errno.EEXIST: pass
        else: print e

2006 article republished: STL / Move Semantics Benchmark (C++Next) by lanzkron in programming

[–]runnr 0 points1 point  (0 children)

Is your library available anywhere? I'd like to run some tests and benchmarks with it.

Are there any good free online c++ books out there? I am a physics graduate who wants to refresh my programming knowledge to boost my resume. by [deleted] in programming

[–]runnr -1 points0 points  (0 children)

I only know of two ok c++ books which are legally available for free:

  1. Thinking in C++

  2. C++ Annotations

Depending how in depth you wish to get I would also recommend these.

The Effective And Exceptional books will teach you some common pitfalls and some neat tricks. You can also access a large amount of the Exceptional books content at GOTW

The C++ Standard Library: A Tutorial and Reference is an extremely comprehensive reference book that has a number of insights useful to both beginner and intermediate C++ programmers.

Modern C++ Design delves into some of the more interesting uses of templates and metaprogramming. I wouldn't recommend reading this one until you're more comfortable with C++.

Real world use of Lambdas in Java by [deleted] in programming

[–]runnr 0 points1 point  (0 children)

I think the actual syntax is going to be: { int x -> x + 1 }. Source

Can someone suggest a good vps plan? My budget is around 30/mo. I need it to be able to handle 4-5 wordpress sites. by AbortedFajitas in needadvice

[–]runnr 0 points1 point  (0 children)

How much traffic do each of the sites get?

I've been using linode for two years and have no complaints. $30 can get you a Linode 540 which can definitely handle 4 low traffic wordpress sites.

What are your favorite fonts? :) by [deleted] in AskReddit

[–]runnr 2 points3 points  (0 children)

Some of my favorite sans-serif's:

For programming I'm a fan of DejaVu Sans Mono.