Skip to content

Instantly share code, notes, and snippets.

View ambethia's full-sized avatar
🐼
PANDAS!

Jason L Perry ambethia

🐼
PANDAS!
View GitHub Profile
@ambethia
ambethia / html5-upload-progress.js
Created March 9, 2010 04:17
HTML5 Upload Progress
var xhr = new XMLHttpRequest();
xhr.upload['onprogress'] = function(xhrpe) {
console.log(xhrpe);
};
var file = document.getElementById('source').files[0];
xhr.open("POST", this.action, true);
xhr.setRequestHeader("Cache-Control", "no-cache");
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");

neo-gql

GraphQL block explorer for the Neo blockchain.

  • Updated TestNet seeds to reflect live seed nodes
  • Added address transaction history to neon compatibility API.
  • Added gas claims to neon compatibility API.

neo-gql now, in addition to providing a full GraphQL for blockchain exploration, has a complete implementation of the neon-wallet-db REST API.

neo-ruby-sdk

A Ruby SDK for smart contract development on the Neo blockchain.

  • VM implementation is complete. Some work on interop layer is outstanding. You can now test compiled smart contracts with your favorite of Ruby's fantastic testing tools! MiniTest, Rspec, etc.
  • Work on the neo Ruby compiler has begun! Soon you will be able to write Neo Smart Contracts in Ruby.

https://github.com/CityOfZion/neo-ruby-sdk/compare/master@{2018-01-22}...master@{2018-01-29}