Search results

  1. moocowmoo

    How to receive InstantX transaction?

    I'll be open sourcing a python library I developed for the soda machine InstantX demo in Miami soon. Today, it takes watching the p2p traffic and keeping track of the received messages. There are plans to make this easier to use, but I'm hoping the library will act as a roadmap for developers...
  2. moocowmoo

    dashman - linux masternode mangement made mootastic

    it couldn't get the version from github. notice how it said "latest version is :" but had no version? I'll push a patch for a better error message later tonight. I agree that's confusing. in this instance, it's good it didn't let you continue. if you can't contact github, you can't vote...
  3. moocowmoo

    dash budget forecasting script (linux/python)

    I've built another python script for tracking the current budget status. It's new, but I'm pretty sure I've squashed all the big bugs. As always, let me know if you run into trouble. (If you're seeing old proposals, stop your wallet, delete budget.dat, and restart it. It will pull in an...
  4. moocowmoo

    Dash Node

    Hello everybody, I've found that different pi os' behave better than others, but don't have a solid production-worthy recommendation (yet!) For the dash soda machine, we're using the latest osmc build. Its kernel seems to have played the nicest with dashd. (I put dashd on my home osmc/kodi...
  5. moocowmoo

    Evolution - Masternode Quorums and thin clients

    Hi Greensheep, Sorry for the delay, been busy preparing for Miami. Here's some answers to your questions: That whitepaper can be found here: https://dashpay.atlassian.net/wiki/display/DOC/Whitepaper The last x11 hash, current blockchain tip, is the entropy for the deterministic selection of...
  6. moocowmoo

    Budget Proposal: The Instantx Soda Machine!

    hehe, thanks camosoul Yeah studioz, right now the code is prototype quality -- I'm going to refactor everything, document it, and release it on github sometime after Miami.
  7. moocowmoo

    dashman - linux masternode mangement made mootastic

    you're welcome -- vagrant makes it easy. And thanks! --- nope, not your masternode.conf -- needed another compatibility patch. python3 compat is turning out to be a pain. python2 is a dependency for now. git pull the arch branch -- should work now!
  8. moocowmoo

    dashman - linux masternode mangement made mootastic

    nightowl -- pushed a temporary patch onto the arch branch. git remote update ; git checkout arch ; ./dashman status The issues were a) not recognizing your package manager and b) gnu netcat has different switches. I've got a pure python implementation in the works, but this branch should work...
  9. moocowmoo

    dashman - linux masternode mangement made mootastic

    Glad to hear it! You're welcome. Get the github version if you haven't already, it shows the queue position too. Thanks! The more I write, the faster I can. I love discrete projects like this.
  10. moocowmoo

    dashman - linux masternode mangement made mootastic

    This should work for you Bridgewater just change the paths at the top to point to your dash-cli and masternode.conf locations. Enjoy! https://github.com/moocowmoo/masternode_conf_check
  11. moocowmoo

    dashman - linux masternode mangement made mootastic

    dashman status only works on a local instance in version 0.1. version 0.2 will be complete in a few months and will be able to give you remote statuses. (you'll run an instance of dashman on each masternode and you'll be able to query them remotely)
  12. moocowmoo

    dashman - linux masternode mangement made mootastic

    I recommend using a different linux distribution for now. There are too many little differences to patch out. The pure-python version I'm working on will not have most of these dependencies.
  13. moocowmoo

    dashman - linux masternode mangement made mootastic

    happy new year! I'll spin up a fedora20 today and see if I can find a quick workaround for you. edit: turns out fedora uses a different netcat https://www.redhat.com/archives/fedora-list/2009-January/msg01114.html i'm looking to see if I can make it work now.
  14. moocowmoo

    January 2016 Budget Proposal

    Excellent news! Voted! to vote with (linux only) dashvote, have your dash-cli and masternode.conf in ~/.dash and do: git clone https://github.com/moocowmoo/dashman.git dashman/dashman vote You'll be prompted to install any missing dependencies if needed.
  15. moocowmoo

    www. + dash.org = 8 characters, why?

    fixed. ;) Thanks for the notify! added to all ssl sites on the server SSLProtocol ALL -SSLv2 -SSLv3 SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
  16. moocowmoo

    www. + dash.org = 8 characters, why?

    You're fighting against the way the internet works is why. They're called third level domain's and are pretty standard. There is no ssl certificate for dash.org, only a wildcard cert for *.dash.org. This wildcard allows use across a variety of hosts such as: (examples only) ftp.dash.org...
  17. moocowmoo

    Budget Proposal: User Friendly Raspberry Pi DASH custom built nodes

    Like Solarminer said, a pi isn't the ideal platform for some of the more advanced things an evolution node will eventually be tasked to do. But, I think building some images for people to plug-and-play wouldn't be a bad idea. In the same vein as NOOBS, images that can be burned, plugged-in...
  18. moocowmoo

    Evolution - Social Wallet Discussion

    We'll need to support password changes in case of system compromise, so directly generating some of this key material from the password isn't an option. I'm drafting up something that will address this and will post it later.
  19. moocowmoo

    December 2015 Budget Proposal

    Regarding sorting, never assume when you can enforce. Especially if your using diff to detect changes. Name, url, and budget are fixed. They can't change within a given budget. Considering the rpc call 'mnbudget getinfo' uses the name to pull the info (it probably should be using the hash)...
  20. moocowmoo

    December 2015 Budget Proposal

    a slightly more robust version for you to vet: #!/bin/bash notify_email="[email protected]" BUDGET_NAMES=$(dash-cli mnbudget show | grep Name | awk '{print $3}' | sed -e 's/[",]//g' | sort) echo "$BUDGET_NAMES" > /tmp/current_budgets if [ -e /tmp/previous_budgets ]; then...
Back
Top