What I Learned the First Time I Lost a Million Dollars

Jeff Dorman, a CoinDesk columnist, is chief investment officer at Arca where he leads the investment committee and is responsible for portfolio sizing and risk management. He has more than 17 years of trading and asset management experience at firms including Merrill Lynch and Citadel Securities.“Did you look both ways?”I recently …

Read More »

How To Hire Ethereum Developers (Ultimate Guide)

pragma solidity 0.4.18; import “./Vehicle.sol”; contract VehicleOwner { address public owner; mapping(bytes32 => address) public vehicles; event NewVehicleAdded(address indexed newVehicle, uint256 timestamp); function VehicleOwner() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); …

Read More »