Empty Space
  • Home
  • Resume
  • Posts
  • Personal
  • Code
Sign in Subscribe

code

A collection of 353 posts
code

ServiceStack Static files handler

Attach raw HTTP handler at the AppHost level to serve static files from a folder or folders RawHttpHandlers.Add(req => { if (!allowedPaths.Any(z => req.PathInfo.ToLowerInvariant().StartsWith(z.ToLowerInvariant()))) { return null; } if (!req.HttpMethod.EqualsIgnoreCase("GET")) { return null; } // Send back static file handler return new
09 Feb 2017
code

Docker 2016 Tech Field Day

http://techfieldday.com/appearance/docker-presents-at-tech-field-day-extra-at-vmworld-us-2016/ Applications that exist in a Docker container are * Isolated * Scaleable * Complete in configuration and setup * Automated * Docker swarms are * Scaleable * Load balanced * Clustered * Fault tolerant All of the tasks, work, and architecture that previously was
07 Sep 2016
code

Code Proposal

Code is difficult to write, easy to break, and constantly changing. Β To help developers concentrate on the code tasks at hand we should strive for the following goals * Code is readable and verifiable with an emphasis on maintenance and clarity for other developers. * Developers reduce technical debt whenever possible * Make
01 Jul 2016 6 min read
← Newer Posts Page 15 of 15
Empty Space © 2026
Powered by Ghost