Skip to content

Instantly share code, notes, and snippets.

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

@dskvr
dskvr / Contract Killer 3.md
Last active August 29, 2015 14:01 — forked from malarkey/Contract Killer 3.md
A Contract Killer specifically for Wordpress Modification

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23/12/2008
  • Revised date: 15/12/2013
  • Original post

0x69c1A70a1e9855DFF0233cb84a7EDb544A5c9936

Keybase proof

I hereby claim:

  • I am dskvr on github.
  • I am sandwiches (https://keybase.io/sandwiches) on keybase.
  • I have a public key ASCa1bjKZFiAsoTCoqf1stkLGRTw_WiqrP0RBE45yNXaPAo

To claim this, I am signing this object:

#include <eosiolib/eosio.hpp>
#include <eosiolib/print.hpp>
using namespace eosio;
class addressbook : public eosio::contract {
public:
using contract::contract;
@dskvr
dskvr / .babelrc
Last active December 23, 2018 23:30
Using v20.0.0-beta3 with nodejs
{
"presets": ["@babel/preset-env"]
}
@dskvr
dskvr / json-schema-consumed-by-oag.swift
Last active February 10, 2019 18:46
Comparing openapi-generator to quicktype for models generation
/* TransactionVariant */
anyOf:
- $ref: 'TransactionHash.yaml'
- $ref: 'PackedTransaction.yaml'
/* TransactionHash */
type: string
/*PackedTransaction*/
type: object
{
"type": "object",
"additionalProperties": false,
"required": [
"version",
"types",
"structs",
"actions",
"tables",
"abi_extensions",
@dskvr
dskvr / C++ Serializer (untested)
Last active September 30, 2019 16:42
(experimental) EOSIO Transaction Schema
// To parse this JSON data, first install
//
// Boost http://www.boost.org
// json.hpp https://github.com/nlohmann/json
//
// Then include this file, and then do
//
// Coordinate data = nlohmann::json::parse(jsonString);
#pragma once