Skip to content

Instantly share code, notes, and snippets.

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Treasury is Ownable {
// events
event NewDeposit(address indexed from, uint256 amount);
0xd8b8C41FBEC0B67F1B03f3aCBE865c5b994C8a34
@entire
entire / ros-mac-el-capitan-notes.md
Last active October 4, 2018 17:58
ROS Kinetic Install on El Capitan Mac OSX
@entire
entire / docker_kill.sh
Created March 2, 2017 05:18 — forked from evanscottgray/docker_kill.sh
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt
@entire
entire / setup.sh
Created October 16, 2016 21:00 — forked from jmtatsch/setup.sh
Install ROS Jade on OS X El Capitan
# NOTE: These instructions do not represent a robust, self-troubleshooting install; they
# are definitely not suitable for dumping to a giant script and running as one. If you
# use them, they should be run one at a time, with an eye out for errors or problems
# along the way.
#
# The #1 issue you are likely to encounter is with Homebrew or Python packages whose
# binary components link against system Python. This will result in runtime segfaults,
# especially in rviz. If you suspect this is occurring, you can attempt to remove and
# reinstall the offending packages, or go for the nuclear option--- empty your Cellar
# and site-packages folders and start over with brewed python from the beginning.