Everything I've seen about OpsWorks is chef/puppet based. Ansible is not mentioned in the opsworks documentation at all. I think that's just wrong.
That and people have completely switched to MDMs to provide a lot of the old functionality that macOS Server used to provide. The popular ones for macOS are Jamf and Mosyle. There are some other ones as well that are…
At least on AWS, you can parse the System Console Output. On the first boot, the box dumps its pub keys there. We have a tool that parses the output: https://github.com/bitnomial/aws-ec2-knownhosts Right now, this is…
Sure, I could imagine that is the case in fields like nuclear engineering. All the PEs I know are smart and have technical chops. Though, most of my PE friends are fairly young (early 30s) and are maybe on their way to…
It's the only thing that most SaaS things charge for now-a-days. Slack, Dropbox, Github Enterprise, etc. They know that regulated businesses have requirements to have SSO and things like this, so they can charge out the…
You need to account for the delay to death in your model here. People don't die the second they're infected. Most of the people in that estimated infected number were infected in the last week. They couldn't possibly…
Adding a number of DisplayPort ports would be nice too.
Bitnomial | Software Engineer, Operations Engineer | Chicago | Onsite full-time | https://bitnomial.com We’re building a Bitcoin derivatives exchange all written in Haskell. We use ansible and terraform for our…
Probably the investment round: https://techcrunch.com/2019/02/11/reddit-300-million/
I too have vim muscle memory in the terminal, so what I do is alias vim to emacsclient. It's actually really great! Terminal emacsclient with evil is basically indistinguishable from terminal vim.
The TCP and IP protocol specifications do not mention routing either. There are many routing algorithms possible, and many of them are used simultaneously. The same will be true for the lightning network. Lighting has a…
Absolutely. Though, when people say cookies vs JWT, what they mean is: Cookies: a simple session ID, a random number, stored in a cookie. JWT: a JSON object stored in local storage that specifies authorization of some…
With respect to the snake-cased fields issue, it's actually not that hard to do that with Generic in Haskell. data Person = Person { personFirstName :: Text , personLastName :: Text } deriving (Generic) instance ToJSON…
Legal/compliance work is probably where this sort of service would be most useful.
Nah. That was just media insanity. Bitcoin functions just fine in the face of crazy politics. The whole point of it is to be unkillable.
True, I was wrong. Thank you for the correction.
> Innovation of bitcoin is proof of work, not a chain of blocks. Proof of work was invented in the late 90s by Adam Back. The consensus algorithm using proof of work and a blockchain is what Bitcoin brought to the world.
I said "intentional hard-fork" for a reason. For everybody's reference, the bdb to leveldb hard-fork happened in early 2013. Everybody acted swiftly to correct the issue by downgrading to 0.7 if I recall correctly. An…
This is a fantastic question, not naive at all, and it's really at the heart of what the debate is all about. This is a really complicated issue, hence all of the vitriolic discussion. I'm going to try to take a crack…
The problem with this theory, as I see it, is identity. When you go through the body scan, they don't ask for your identification. Yes, they ask for ID before going to the security line, but there's a very difficult…
No, I don't. That seems really cool though! Thanks for pointing that out.
Groundhog is pretty awesome[1]. Persistent also works, but it does some wonky stuff on SQL databases. Acid-state is really neat! Of course, there's stuff like postgresql-simple, but that's not very type safe.…
There are helpful tutorials for all of the things you've mentioned. I think that part of the problem is that people don't go looking for these things. If you want to write a backend for a web-app, there are three…
Everything I've seen about OpsWorks is chef/puppet based. Ansible is not mentioned in the opsworks documentation at all. I think that's just wrong.
That and people have completely switched to MDMs to provide a lot of the old functionality that macOS Server used to provide. The popular ones for macOS are Jamf and Mosyle. There are some other ones as well that are…
At least on AWS, you can parse the System Console Output. On the first boot, the box dumps its pub keys there. We have a tool that parses the output: https://github.com/bitnomial/aws-ec2-knownhosts Right now, this is…
Sure, I could imagine that is the case in fields like nuclear engineering. All the PEs I know are smart and have technical chops. Though, most of my PE friends are fairly young (early 30s) and are maybe on their way to…
It's the only thing that most SaaS things charge for now-a-days. Slack, Dropbox, Github Enterprise, etc. They know that regulated businesses have requirements to have SSO and things like this, so they can charge out the…
You need to account for the delay to death in your model here. People don't die the second they're infected. Most of the people in that estimated infected number were infected in the last week. They couldn't possibly…
Adding a number of DisplayPort ports would be nice too.
Bitnomial | Software Engineer, Operations Engineer | Chicago | Onsite full-time | https://bitnomial.com We’re building a Bitcoin derivatives exchange all written in Haskell. We use ansible and terraform for our…
Bitnomial | Software Engineer, Operations Engineer | Chicago | Onsite full-time | https://bitnomial.com We’re building a Bitcoin derivatives exchange all written in Haskell. We use ansible and terraform for our…
Bitnomial | Software Engineer, Operations Engineer | Chicago | Onsite full-time | https://bitnomial.com We’re building a Bitcoin derivatives exchange all written in Haskell. We use ansible and terraform for our…
Probably the investment round: https://techcrunch.com/2019/02/11/reddit-300-million/
I too have vim muscle memory in the terminal, so what I do is alias vim to emacsclient. It's actually really great! Terminal emacsclient with evil is basically indistinguishable from terminal vim.
The TCP and IP protocol specifications do not mention routing either. There are many routing algorithms possible, and many of them are used simultaneously. The same will be true for the lightning network. Lighting has a…
Absolutely. Though, when people say cookies vs JWT, what they mean is: Cookies: a simple session ID, a random number, stored in a cookie. JWT: a JSON object stored in local storage that specifies authorization of some…
With respect to the snake-cased fields issue, it's actually not that hard to do that with Generic in Haskell. data Person = Person { personFirstName :: Text , personLastName :: Text } deriving (Generic) instance ToJSON…
Legal/compliance work is probably where this sort of service would be most useful.
Nah. That was just media insanity. Bitcoin functions just fine in the face of crazy politics. The whole point of it is to be unkillable.
True, I was wrong. Thank you for the correction.
> Innovation of bitcoin is proof of work, not a chain of blocks. Proof of work was invented in the late 90s by Adam Back. The consensus algorithm using proof of work and a blockchain is what Bitcoin brought to the world.
I said "intentional hard-fork" for a reason. For everybody's reference, the bdb to leveldb hard-fork happened in early 2013. Everybody acted swiftly to correct the issue by downgrading to 0.7 if I recall correctly. An…
This is a fantastic question, not naive at all, and it's really at the heart of what the debate is all about. This is a really complicated issue, hence all of the vitriolic discussion. I'm going to try to take a crack…
The problem with this theory, as I see it, is identity. When you go through the body scan, they don't ask for your identification. Yes, they ask for ID before going to the security line, but there's a very difficult…
No, I don't. That seems really cool though! Thanks for pointing that out.
Groundhog is pretty awesome[1]. Persistent also works, but it does some wonky stuff on SQL databases. Acid-state is really neat! Of course, there's stuff like postgresql-simple, but that's not very type safe.…
There are helpful tutorials for all of the things you've mentioned. I think that part of the problem is that people don't go looking for these things. If you want to write a backend for a web-app, there are three…