HN user

Xdes

488 karma
Posts4
Comments175
View on HN

Honestly women are more of a bother than a benefit. Part of maturing is learning to reject nature for your own self interest. Women will use your precious time for unproductive and impractical activities. They require constant upkeep and they will try to shape you into their ideals (a lot more of a nerd).

I do not need a woman to be happy. I do not need a woman to have children. There are plenty of children in need of a parent already (even if that is a single parent). Save for your own retirement and enjoy life.

I wish someone would write "how to read an IETF specification" or "how to read an ECMA standard."

You can allow non-administrator access using netsh[1] as an administrator. That way you don't need to run VS as admin.

    netsh http add urlacl url=http://+:8080/ user=DOMAIN\username
You don't need attributes based routing in this example. Convention based routing is built into WebAPI.

For the Delete method you can return an HttpStatusCode instead of throwing an exception.

    public IHttpActionResult Delete(int Id)
    {
        var result = (from b in ourbooks
                      where b.Id == Id
                      select b).FirstOrDefault();

        ourbooks.Remove(result);
        return StatusCode(HttpStatusCode.Accepted);
    }
Also check out the OWIN self host tutorial [2].

[1] https://github.com/NancyFx/Nancy/wiki/Hosting-nancy-with-owi...

[2] http://www.asp.net/web-api/overview/hosting-aspnet-web-api/u...

My VB is a bit rusty, but you will need to define associations in the configuration.

First add foreign keys to to models (e.g. In the Build class add MainlineID for the Mainline object).

Then you can define the configuration:

    Public Class BuildConfiguration
        Implements EntityTypeConfiguration(Of Build)

        Public Sub New()
            ToTable("Build")
            ' Other mappings
            ' Define one-to-many
            HasRequired(Function(x) x.Mainline) _
            .WithMany(Function(x) x.Builds) _
            .HasForeignKey(Function(x) x.MainlineID)
        End Sub
    End Class
Inside your context you load the configuration:
    Public Class MyContext
        Inherits DbContext

        Public Property Builds As DbSet(Of Build)

        Protected Overrides Sub OnModelCreating(modelBuilder As DbModelBuilder)
            MyBase.OnModelCreating(modelBuilder)
            modelBuilder.Configurations.Add(New BuildConfiguration())
        End Sub
    End Class
Then you can use the Include extension method (or eager loading) on the DbContext to populate the object.
    Using context As New MyContext()
        Return context.Builder.Include(Function(b) b.Mainline)
    End Using
See also:

http://weblogs.asp.net/manavi/archive/2011/05/17/association...

"ASP.NET vNext (and Rosyln) runs on Mono, on both Mac and Linux today. While Mono isn't a project from Microsoft, we'll collaborate with the Mono team, plus Mono will be added to our test matrix. It's our aspiration that it 'just work.'"

I wonder whether we will be seeing a .NET web server for mac and linux. Hosting a C# MVC app on linux will be sweet.

You're telling me you've never read a novel on your own?

I have never read a novel. I was curious whether I could finish one, so I tried to read the first Harry Potter book. I did not continue after the fifth chapter since it felt like work.

I do not see the problem. I have never read books for pleasure. Most of the books I own are technical or reference material that have practical applications. Why would I want to read for pleasure? I did not find anything interesting about The Catcher in the Rye, Lord of the Flies, or To Kill a Mockingbird which were standard readings when I went to school. Maybe I do not have the imaginative capacity like those people that "get lost" in books.

I wish I had read this before my job interview. I feel like I'm getting lowballed when I thought the offer I got was great. I'll definitely read this before my next job interview. Does this apply to freelance rate negotiation too?

I'd like to see an open source version of this. I like the API centric approach to site building, but I don't want some third party to have access to all of my content in one place.

In other words, instead of the state foregoing that person's property tax adjustments, it should defer them until the time of sale, and at that point, recover them.

In other words a lien.

China is cracking down on exchanges by forcing the state-owned banks to close their accounts. That is the speculative force that is driving down the price.

It is good that the price is going down since more people will buy Bitcoin now.