HN user

mainguy

313 karma
Posts155
Comments100
View on HN
dash.cloudflare.com 2y ago

Cloudflare Dashboard Down?

mainguy
7pts12
deepdiagram.com 2y ago

Show HN: Immersive VR Digramming Tool

mainguy
1pts1
aframe.io 3y ago

A-Frame, build immersive VR/AR on web using HTML/JavaScript

mainguy
2pts4
mikemainguy.blogspot.com 5y ago

Difference between source code and environments for non-tech people

mainguy
2pts0
mikemainguy.blogspot.com 6y ago

Amazon Busted?

mainguy
1pts1
mikemainguy.blogspot.com 8y ago

State of programming languages 2018

mainguy
4pts0
mikemainguy.blogspot.com 9y ago

Thoughts on Software Architectural Thinking

mainguy
1pts0
mikemainguy.blogspot.com 9y ago

Yet Another Take on Software Developer Archetypes

mainguy
1pts0
sourceforge.net 9y ago

TortoiseSVN 1.8.4-1.8.8 loses merge tracking info

mainguy
1pts0
mikemainguy.blogspot.com 9y ago

Five simple steps to select the ultimate software development tool

mainguy
1pts0
mikemainguy.blogspot.com 9y ago

Female programmers and asking questions

mainguy
3pts0
www.tripwire.com 10y ago

Impending death of the java browser plugin

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

Raspberry pi 3 headless install for non-noobs

mainguy
2pts0
mikemainguy.blogspot.com 10y ago

Do you test or operations and business processes?

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

Database Administration in the Enterprise

mainguy
2pts0
mikemainguy.blogspot.com 10y ago

Let it crash (for dummies)

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

Process versus flexibility

mainguy
2pts0
mikemainguy.blogspot.com 10y ago

Navigating the Internet of Things

mainguy
3pts0
mikemainguy.blogspot.com 10y ago

Lies, Damn Lies, and Virtualization

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

The (slightly tongue in cheek) role of the database administrator

mainguy
2pts0
mikemainguy.blogspot.com 10y ago

How to design a useful JavaScript framework

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

Why I'm pushing your buttons

mainguy
1pts0
mikemainguy.blogspot.com 10y ago

Real world internet of things

mainguy
2pts0
mikemainguy.blogspot.com 10y ago

ANSI-92 SQL, please use itsome traditions should change

mainguy
3pts0
mikemainguy.blogspot.com 11y ago

Using Amdahl's Law, Gustafson's Law and UX Stretching

mainguy
1pts0
mikemainguy.blogspot.com 11y ago

The Programmers Code

mainguy
1pts0
mikemainguy.blogspot.com 11y ago

Simple thoughts versus simple solutions

mainguy
1pts0
mikemainguy.blogspot.com 11y ago

The myth of async JDBC

mainguy
1pts0
mikemainguy.blogspot.com 11y ago

Installing Varnish on Centos

mainguy
1pts0
mikemainguy.blogspot.com 11y ago

The Hazard of Not Taking Things Personally at Work

mainguy
1pts0

Ironically, people keep saying this, but then gloss over the core problem of coordinated between these agents... For completely independent codebases with no dependencies, sure thing right on...go for it. But the vast majority of F500 companies I work with have wild and undocumented dependencies between almost every system that will take years to "agentify" (assuming they ever figure out that it's an organization and governance problem.... which they might not ever realize)

Umm, how is it a one way street? Just add a <script> tag and implement what you need... I'm not 100% convinced that using react from jump street "Just in case we need something in the future" is a great idea. That having been said, I'm not sure I've built a completely static html page in the last decade.... So I often start with react/angular.

User of Couchdb for similar use case...been keeping up to date on a parallel branch of my solution using fireproof instead of couch. Still early, but great potential...stumbled onto fireproof because I was about to write an adapter for couch (well Pouch actually, but same same) to replicate in a similar manner to fireproof.

Hmmm, suspicious that right after this cloudflare dashboard goes down. Sorta feels a bit like when AWS east cost took a hit and random other things stopped working (because they or things they depend on were running on same infrastructure)

Well I was in middle of DNS change and the "remove" was completed when it went down....I guess I need to start to get a little more diligent about "what will happen if second part of operation can't be completed :o ?"

[dead] 3 years ago

For the non technical-ish... Have a drink every time I say "uh"...

Or as I like to say "Oh, you have a big ball of mud in your monolith because of poor design and want to move to micro-services?"..."now you have n^n big balls of mud" Poor design is poor design, adding more complexity just makes it a more complicated poor design.

[dead] 4 years ago

8 minute overview of deployment compared to release and why you need to treat them differently.

I think OP is coming from a different perspective than I (corporate bespoke solution builder) do. When I say "reproducible build" I mean a build that is the same on any machine (i.e. no special magic necessary to build a "official" version of the code). Too often in corporate environments, getting a local build or setting up a new build pipeline involves arcane black magic and/or copy/pasting weird libraries that can't be pulled from any sort of "official" repository. curl/bash libraries that "automatically change versions" based on when upstream decides to change them can wreak havok when setting up a new build environment. My $0.02, it's not (in the corporate world) so much about validating binaries, but more about "how many steps beyond check out the code" exist and how easily can I validate my binary uses the same versions of libraries/dependencies as the one that a local developer tested?