technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/database.html
The Year Google Bought Us. Database Storage in Go with Structable. Goose for Database Migrations. Using QueryPath to interact with a SQL database, Part 3. Page 1 of 1. Larr; Last Page. Rarr; Next Page. Matt is a software architect. He has written multiple books and articles, and has managed or contributed to dozens of open source projects. He has a Ph.D. in philosophy. Raquo; Why Explicit Versions Still Don't Solve the Problem. Raquo; The Illustrated Children's Guide to Kubernetes.
home.etl.luc.edu
People - Emerging Technologies Laboratory
http://home.etl.luc.edu/people
Loyola University Chicago, English. Http:/ www.anglo-saxon.net/. Andrew N. Harrington. Loyola University Chicago, CS. Http:/ www.cs.luc.edu/ anh. Chandra N. Sekharan. Loyola University Chicago, CS. Http:/ www.cs.luc.edu/ chandra. Loyola University Chicago, CS. Http:/ tuckey.etl.luc.edu. Http:/ gbobeck.blogspot.com/. George K. Thiruvathukal. Loyola University Chicago, CS. Http:/ www.cs.luc.edu/gkt. Loyola University Chicago, CS. Http:/ laufer.cs.luc.edu/. Http:/ weblog.thatmattbone.com/.
technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/ansible.html
A CI/CD Implementation for the Cloud Age. Page 1 of 1. Larr; Last Page. Rarr; Next Page. Matt is a software architect. He has written multiple books and articles, and has managed or contributed to dozens of open source projects. He has a Ph.D. in philosophy. Raquo; Why Explicit Versions Still Don't Solve the Problem. Raquo; The Illustrated Children's Guide to Kubernetes. Raquo; Part-time Coffee Snob. Raquo; Go Quickly - Cleaning Filepaths. Raquo; Go Quickly - 50 Template Functions from Sprig.
technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/fabric.html
A CI/CD Implementation for the Cloud Age. Page 1 of 1. Larr; Last Page. Rarr; Next Page. Matt is a software architect. He has written multiple books and articles, and has managed or contributed to dozens of open source projects. He has a Ph.D. in philosophy. Raquo; Why Explicit Versions Still Don't Solve the Problem. Raquo; The Illustrated Children's Guide to Kubernetes. Raquo; Part-time Coffee Snob. Raquo; Go Quickly - Cleaning Filepaths. Raquo; Go Quickly - 50 Template Functions from Sprig.
technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/vim.html
Create A Built-in Vim Cheatsheet. Simple Applescript to Focus and Active MacVIM. Convert DOS to UNIX (and UNIX to DOS) in VIM. Using the Go Syntax for Janus VIM. Removing trailing whitespace with VIM regular expressions. Re)Mapping Command-Shift-Arrow Keys in Janus/MacVIM. Janus VIM on Linux Mint. Syntax Checking for Drupal in VIM. Page 1 of 1. Larr; Last Page. Rarr; Next Page. Raquo; Why Explicit Versions Still Don't Solve the Problem. Raquo; The Illustrated Children's Guide to Kubernetes. Write custom ...
technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/programming.html
Why Explicit Versions Still Don't Solve the Problem. My Top 15 For 2015. Five Interview Questions You Should Ask Your Interviewer. Software is a Sugarmill. The Year Google Bought Us. Create A Built-in Vim Cheatsheet. How Glide Solves Go Vendoring. Database Storage in Go with Structable. Speaking at Wearables Things in October 2014. Start an Interactive Shell from Within Go. Saved by the Bug. The Best Keyboard Hack Ever. Century Link Labs Interview. Don't Shrink Wrap Bananas. Page 1 of 7. Larr; Last Page.
technosophos.com
TechnoSophos: How Glide Solves Go Vendoring
http://technosophos.com/2014/09/22/how-glide-solves-go-vendoring.html
How Glide Solves Go Vendoring. Is a practical tool for managing Go workspaces and dependencies in a sophisticated way, but without any sophisticated configuration. Glide manages both your GOPATH and your dependencies to eliminate the need for vendoring, path munging, and version control subtrees. This post shows by example how to use Glide. Added an example of private repositories. Lets say I have a new Go project called. Its full name will be. To start up my Glide project, I do this:. Project. By de...
technosophos.com
TechnoSophos: Technology. Wise.
http://technosophos.com/tags/golang.html
The Illustrated Children's Guide to Kubernetes. Go Quickly - Cleaning Filepaths. Go Quickly - 50 Template Functions from Sprig. Go Quickly - Converting Character Encodings In Golang. Go Quickly - Regexp Templates. Why Glide 0.8 Is Our Biggest Release. What it Really Takes to Build a Container Platform. Go Quickly - Parsing Anonymous JSON. Quick Go Hack - Renaming Structs. Don't Condemn Go To Repeat Past Mistakes. Managing Go 1.5 Vendor Dependencies with Glide. The Year Google Bought Us. Saved by the Bug.
technosophos.com
TechnoSophos: Allow only HTTPS on an S3 Bucket
http://technosophos.com/2014/10/06/allow-only-https-on-an-s3-bucket.html
Allow only HTTPS on an S3 Bucket. It is possible to disable HTTP access on S3 bucket, limiting S3 traffic to only HTTPS requests. The documentation is scattered around the Amazon AWS documentation, but the solution is actually straightforward. All you need to do to block HTTP traffic on an S3 bucket is add a. In your buckets policy. AWS supports a global condition for verifying SSL. So you can add a condition like this:. Condition: { Bool: { aws:SecureTransport: true } }. Heres a complete example:. Insta...