HN user

friism

2,745 karma

https://friism.com/ friism@gmail.com

Posts138
Comments149
View on HN
www.motherjones.com 10y ago

Epic Fail: Electronic Health Records and Lack of Interoperability

friism
2pts1
thefederalist.com 10y ago

The Free Market: It’s Like Uber, but for Everything

friism
4pts0
www.asis.gov.au 11y ago

Use pay phone to contact Australian Secret Intelligence Service recruitment

friism
85pts50
www.economist.com 11y ago

Revenge of the nerds

friism
1pts0
ahmetalpbalkan.com 11y ago

Making of: Microsoft’s first official Docker image

friism
2pts0
googlecloudplatform.blogspot.com 11y ago

An introduction to containers, Kubernetes, and the trajectory of cloud computing

friism
3pts0
www.sfgate.com 11y ago

High-tech boom a bust for blacks, Latinos (1998)

friism
2pts0
techcrunch.com 11y ago

Terminal’s Containers Pioneer a New Way of Developing Apps from the Cloud

friism
14pts0
blog.heroku.com 12y ago

Introducing programmatic builds on Heroku

friism
15pts0
davidfowl.com 12y ago

ASP.NET vNext

friism
1pts0
www.activestate.com 12y ago

Buildpacks

friism
4pts0
fwaris.wordpress.com 12y ago

F# with Xamarin for a real-world mobile application

friism
1pts0
friism.com 12y ago

Running .NET apps in Docker containers

friism
56pts22
sg.codeplex.com 12y ago

Service Gateway, the Windows Azure Application Proxy

friism
1pts0
www.theatlantic.com 12y ago

Where the Road Ends: A Travel Video Shot With Google Street View

friism
1pts0
188.178.232.233 12y ago

Peter's Raspberry Pi server running Apache, Perl, Moscow ML, and so on

friism
1pts0
friism.com 12y ago

Faster ASP.NET web apps with WebP images

friism
4pts0
www.npr.org 12y ago

Many Younger Facebook Users 'Unfriend' The Network

friism
1pts0
blog.heroku.com 12y ago

New APIs to release code on Heroku

friism
86pts10
marginalrevolution.com 12y ago

The Real Cost of Virtual Money

friism
1pts0
www.economist.com 12y ago

Cycling vs. Cars: The American right-of-way

friism
1pts0
www.spiegel.de 12y ago

Quantum Spying: GCHQ Targeted Engineers with Fake LinkedIn Pages

friism
5pts0
www.wired.com 12y ago

Senate Committee Votes in Favor of NSA Phone-Records Snooping

friism
3pts0
aestetix.com 12y ago

Fighting back against the NSA with HTTP

friism
5pts4
github.com 12y ago

Lmctfy: Google's Linux application container stack

friism
298pts74
www.openshift.com 12y ago

Heroku buildpacks vs OpenShift cartridges

friism
3pts0
www.vanityfair.com 12y ago

Bluebloods & Billionaires

friism
3pts0
www.dmnews.com 12y ago

Retention Is Not Loyalty

friism
1pts0
www.spiegel.de 12y ago

Germany's Energy Poverty: How Electricity Became a Luxury Good

friism
4pts0
blogs.msdn.com 12y ago

My Buddy Neil Totally Agrees With Me

friism
1pts0

dyno types for build processes use Perf-M? Not configurable

What are you looking for here? Larger build dynos? Heroku provides the build service for free so we use perf-m dynos to get fast builds with reasonable cost (for us).

Works great so far. The iOS app was janky at first (it would forget about the hub it was connected to) but seems better now. I don't really use the app though - a recent update added Alexa support, and that works great. I've mounted the remote control on the wall and either use that or Alexa to turn the lights on and off.

I don't want purple or green lights in my living room, so the fact that IKEA bulbs are limited to warmth and brightness is fine for me (I like to just keep them on "warm").

I have IKEA Trådfri (which is ZigBee-based). While the hub does connect to the internet for software updates (using ethernet - no WiFi, and no WiFi password to update), there's no "cloud" component. You can't create an "IKEA account", even if you wanted. If IKEA went out of business tomorrow, my switches and bulbs would keep working. I like that approach a lot.

It would be perfectly feasible to leave the IKEA hardware in the house if we were to move.

Docker CE and EE are based on the Docker open source project and work the same way. You can also use a Docker CE client to talk to Docker EE host or swarm, and vice-versa.

The Docker Cloud team is working on improvements to reduce segmentation too - stay tuned.

We take backwards compatibility seriously. If you encounter problems updating from one version of Docker to the next (whether from 1.13.1 to 17.03 or from 17.03 to the upcoming 17.04), please open an issue on docker/docker so that can fix the incompatibility and improve our change process.

Quoting from the blog post:

    The Docker API version continues to be independent of the
    Docker platform version and the API version does not
    change from Docker 1.13.1 to Docker 17.03. Even with the
    faster release pace, Docker will continue to maintain 
    careful API backwards compatibility and deprecate APIs and 
    features only slowly and conservatively. And in Docker 
    1.13 introduced improved interoperability between clients 
    and servers using different API versions, including 
    dynamic feature negotiation.
- https://blog.docker.com/2017/03/docker-enterprise-edition/

I'm sorry you don't like the new versioning.

Echoing @shykes below[1], Docker had premium paid products before this launch, but we're trying to make that clearer and to simplify the product lineup.

Note that Docker CE is _just_ as good as the Docker you were using yesterday. In addition, the version lifecycle improvements are designed to get new features into Docker users' hands faster (with monthly Edge releases) and to improve maintainability by overlapping the maintenance windows of free Docker CE quarterly releases.

[1] https://news.ycombinator.com/item?id=13774420

Both the main and the emergency spillway send water into the Feather river.

When the reservoir is at capacity, the dam operator has no control over how much water goes into the Feather River nor whether downstream towns are flooded or not. Any water not going down the main spillway will go down the emergency spillway and into the river.

(edit for typo)

Since all your containers will be based on `windowsservercore` (and perhaps some on the much smaller `nanoserver` base image), you could choose to bake the image into your container host image.

Yes, it works great!

I built a sample with MusicStore. It doesn't use ISS (but could), just a self-hosting ASP.NET Core MVC app: https://github.com/friism/Musicstore/

You might find the SQL Server Dockerfile interesting (hopefully it'll be an image on Hub soon): https://github.com/friism/MusicStore/blob/master/docker/mssq...

Here's now to run it:

    docker build -t sqlserver:2016 -f .\docker\mssql-server-2016-express\Dockerfile .\docker\mssql-server-2016-express\.
    docker-compose -f .\src\MusicStore\docker-compose.yml up
Open a browser and open http://<ip-of-vm-running-docker>:5000/

IIS runs in both nanoserver and windowsservercore-based containers. Here's and IIS sample image (I suspect Microsoft will be updating it soon): https://hub.docker.com/r/microsoft/iis/