create account

AppBase: The next step forward for the Steem blockchain (let the testing begin) by steemitdev

View this thread on: hive.blogpeakd.comecency.com
· @steemitdev ·
AppBase: The next step forward for the Steem blockchain (let the testing begin)
![](https://steemitimages.com/DQmRp8QNfqNb2c7M7p5D8vMqk1qxn6BDWrc5coYdBs6DTA3/image.png)

Today we have some exciting news to share: AppBase is ready, and we would like everyone to help with testing. Although, please note that third-party developers may need to make some minor changes to adapt to the new platform.

# AppBase release candidate is now ready

Back in August we shared with you news of some of the [exciting updates](https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017) being made to the Steem blockchain. One of those updates is AppBase, which will create distinct “modules” that will dramatically improve Steem’s ability to scale. 

AppBase is the first step in creating a multi-chain FABRIC. AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. These plugins can be updated much more rapidly because they do not require replaying the entire blockchain.

# We are finally ready to test AppBase on a large scale! 

If you’re just a regular steemit.com user, you can help too. Head on over to [steemitstage.com](https://steemitstage.com) and use the site like you normally would.

Our staging environment includes the same security measures taken for steemit.com, and is considered pre-production. It's designed to be as close to the 'real' steemit.com as possible, in order to fully vet new code before it makes it to steemit.com. If you're still worried about using your keys, you're welcome to just use your posting key. Even if you don't login at all, just browsing the site and providing feedback to us is still useful.

# For Developers

If you run or maintain a Steem service, there are a couple of steps you will need to take to ensure your service will continue to operate as expected. Details are in the sections below.

## steemd node changes

If you run a steemd node, you can check out the tag `v0.19.4rc1` from GitHub or Docker Hub.


## API changes

We restructured our APIs to allow greater flexibility for future upgrading and maintaining. The APIs now take in a single object as an argument and return a single object as a return type. All the existing APIs have been updated to match this standard.

Because we no longer need to stick to C++ style parameter semantics, we can use more varied default argument types as well as variadic parameters. We can also extend the functionality of a call without impacting the existing apps by extending the returned object.

The `database_api` has undergone significant changes to allow the querying of all consensus objects with any ordering that steemd uses already. This will provide more flexibility for services to find the objects they need.


**New `condenser_api`**

To help with this transition, we created `condenser_api`, which contains all of the API methods that currently exist and uses the existing argument formatting. The easiest way to get your app to work with Appbase is to change the api to `condenser_api`.

**APIs must be called by name**

If you are used to calling an API using the API id, that method of invocation is no longer supported. All the APIs must now be called by name.

**Removed `login_api`**
 
The `login_api` was designed as a way to map the API names to numeric ids. Because the APIs are no longer called via id, there is now no need for the `login_api`, and so it has been removed.

**API methods list**

If you call `jsonrpc.get_methods`, a list of all available API methods will be returned.

**Argument and return object prototypes**

If you call `jsonrpc.get_signature` passing an API method name, it will return the argument and return the object prototypes.

For example,

`{"jsonrpc":"2.0", "method":"jsonrpc.get_signature", "params":{"method":"database_api.get_active_witnessess"}, "id":1}`

returns 
`{"jsonrpc":"2.0","result":{"args":{},"ret":{"witnesses":[]}},"id":1}`

`{}` is the void type argument and it returns a list in the `witnesses` field.

**Using `condenser_api`**

All calls in `condenser_api` will return `[]` as the argument, as the array argument passing is opaque and implemented in the API calls themselves. They follow the current argument formatting. Existing apps should only need to skip using `login_api` and send all of their calls to `condenser_api` without any other changes required to use Appbase.


For example, calling `get_dynamic_global_properties` with `condenser_api` vs `database_api`:

`{"jsonrpc":"2.0", "method":"condenser_api.get_dynamic_global_properties", "params":[], "id":1}`

`{"jsonrpc":"2.0", "method":"database_api.get_dynamic_global_properties", "id":1}`

Because the method has no arguments, the `params` field can be omitted when not using `condenser_api`. However, it can optionally be included as the void type (e.g. `"params":{}`) but it is not required.

**Streamlined syntax**

You might have noticed that the previous examples used a different format to call the API. Previously, there was an outdated call syntax that looked like this:

`{"jsonrpc":"2.0", "id":0, "method":"call", "params":["api","function",[ARGS]]}`. 

However, we now support a more streamlined call syntax:

`{"jsonrpc":"2.0", "id":0, "method":"api.function", "params":[ARGS]}`

Both formats work, but with the new format being preferred for readability.

**Enhanced JSON-RPC compliance**

Some other changes were made to make steemd more compliant with the widely-used JSON-RPC specification. This is still new. Please help us test our json-rpc implementation to ensure that it is spec compliant.

**Backward compatibility**

Our reverse proxy service, `jussi`, handles the method translation. This means that even after deploying Appbase to our production environment, the old API calls should still work. 

**Future updates required**

Note that the new APIs introduced in this release are still Work in Progress. There are a number of serialization changes that are still being made to them and hence they are in various states of completeness. We will post again in the near future explaining the nature of those changes. Feel free to play around with those APIs, but know that they will be changed. Once we finalize those APIs, we will deprecate `condenser_api` and begin migration to the new APIs.

## Config file changes

The logging config has always been a sore spot in the config file because of the number of options available. It was so complex that it required a different parser. We have changed to using a json format, which allows us to use only one parser. The default logging config is the following:

```
# Console appender definition json: {"appender", "stream"}
log-console-appender = {"appender":"stderr","stream":"std_error"}

# File appender definition json:  {"appender", "file"}
log-file-appender = {"appender":"p2p","file":"logs/p2p/p2p.log"}

# Logger definition json: {"name", "level", "appender"}
log-logger = {"name":"default","level":"debug","appender":"stderr"}
log-logger = {"name":"p2p","level":"debug","appender":"p2p"}
```

**Plugins**

Plugins are enabled via the `plugin` option. There is no more `public-api` option and all the APIs are now enabled via `plugin` as well.

Most config options are now namespaced by the plugin they belong to. Config options that were not namespaced are still supported but will now log a deprecation warning when used. `contrib/config-for-docker.ini` and `contrib/fullnode.config.ini` are example configs that are used in the Docker images. You can use these as example config files.  As usual, we strongly recommend using the Docker images to deploy your node.

# Conclusions

These changes have been in the works for many months, and represent a major step forward for Steem. AppBase provides a robust foundation for meeting all of our future scaling needs, and will allow us to grow the platform while at the same time managing the resource requirements for third-party application developers, witnesses, and exchanges to grow along with it.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 934 others
👎  ,
properties (23)
authorsteemitdev
permlinkappbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"image":["https://steemitimages.com/DQmRp8QNfqNb2c7M7p5D8vMqk1qxn6BDWrc5coYdBs6DTA3/image.png"],"links":["https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017","https://steemitstage.com"],"app":"steemit/0.1","format":"markdown"}
created2018-02-14 22:33:33
last_update2018-02-14 22:33:33
depth0
children459
last_payout2018-02-21 22:33:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,989
author_reputation17,757,631,438,715
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id37,586,625
net_rshares170,307,280,452,703
author_curate_reward""
vote details (1000)
@a-0-3 ·
nice sharing.
properties (22)
authora-0-3
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081815317z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 08:18:06
last_update2018-02-15 08:18:06
depth1
children0
last_payout2018-02-22 08:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation-1,023,080,095,115
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,687,505
net_rshares0
@abay212 ·
Thank you for this post @steemitdev
properties (22)
authorabay212
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t053140511z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-17 05:31:51
last_update2018-02-17 05:31:51
depth1
children0
last_payout2018-02-24 05:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation1,691,171,222
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,175,540
net_rshares0
@abdul.halim ·
the scenery is very beautiful and the photos are very cool
properties (22)
authorabdul.halim
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000056408z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:01:06
last_update2018-02-15 00:01:06
depth1
children0
last_payout2018-02-22 00:01:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation-694,265,333
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,285
net_rshares0
@aboutanything ·
I am really excited to show this to my friends.. fb, instragram, twitter.. we need more people believing in STEEM and the power that it brings to our society!!
properties (22)
authoraboutanything
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t162858823z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 16:29:00
last_update2018-02-15 16:29:00
depth1
children0
last_payout2018-02-22 16:29:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation3,765,735,247
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,783,918
net_rshares0
@aidilmuhammad ·
Good
properties (22)
authoraidilmuhammad
permlinkre-steemitdev-2018215t18263214z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 11:26:33
last_update2018-02-15 11:26:33
depth1
children0
last_payout2018-02-22 11:26:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-51,022,921,990
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,722,680
net_rshares0
@ammadkhalid ·
I just completed my bot some days ago and seems like I have to recode again if the API is changes :/
👍  
properties (23)
authorammadkhalid
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t212838489z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 21:28:42
last_update2018-02-17 21:28:42
depth1
children0
last_payout2018-02-24 21:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,352,741,740,419
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,354,451
net_rshares270,537,377
author_curate_reward""
vote details (1)
@andesta ·
awesome
properties (22)
authorandesta
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t192204034z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 19:22:06
last_update2018-02-16 19:22:06
depth1
children0
last_payout2018-02-23 19:22:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation496,625,408,041
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,075,853
net_rshares0
@andrewclk ·
Payout Declined lol
properties (22)
authorandrewclk
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t162344051z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 16:23:48
last_update2018-02-16 16:23:48
depth1
children0
last_payout2018-02-23 16:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation79,947,618,115
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,041,037
net_rshares0
@arafatnur ·
It seems like this is a progress towards a better direction. Surely we hope to meet the demand accordingly. I will follow these developments, and fight the lethargy that our friends face.
👍  
properties (23)
authorarafatnur
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t192146031z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 19:21:45
last_update2018-02-16 19:21:45
depth1
children0
last_payout2018-02-23 19:21:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation1,838,063,841,285
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,075,767
net_rshares237,257,735
author_curate_reward""
vote details (1)
@arcange ·
Congratulations @steemitdev!
Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180214) in the following category:

* Pending payout - Ranked 1 with $ 1107,07
properties (22)
authorarcange
permlinkre-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t171118000z
categorysteem
json_metadata""
created2018-02-15 16:11:18
last_update2018-02-15 16:11:18
depth1
children0
last_payout2018-02-22 16:11:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation1,146,606,639,109,506
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,780,295
net_rshares0
@atjehsteemit ·
Very nice post and great article.. Thanks for information @steemitdev I like your blog
properties (22)
authoratjehsteemit
permlinkre-steemitdev-2018215t212112382z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 14:21:15
last_update2018-02-15 14:21:15
depth1
children0
last_payout2018-02-22 14:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,134,338,995,221
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,757,103
net_rshares0
@ayurvedajoshi · (edited)
The very good project, Steemit is growing...
properties (22)
authorayurvedajoshi
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125751963z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:57:51
last_update2018-02-15 12:58:45
depth1
children0
last_payout2018-02-22 12:57:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation1,132,348,179,488
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,740,103
net_rshares0
@baekjinsun ·
Good
properties (22)
authorbaekjinsun
permlinkre-steemitdev-2018215t215018477z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 12:50:18
last_update2018-02-15 12:50:18
depth1
children0
last_payout2018-02-22 12:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,738,572
net_rshares0
@baktiarsejahtera ·
I am happy with your post, useful and add insight, can I make friends with you ....? Thanks you
properties (22)
authorbaktiarsejahtera
permlinkre-steemitdev-2018222t20495059z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-22 13:49:54
last_update2018-02-22 13:49:54
depth1
children0
last_payout2018-03-01 13:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation12,495,842,900
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,613,657
net_rshares0
@bashadow ·
$0.47
          On steemitstage the font is a little bit smaller, this is **not** a complaint, just an observation from just a user. If you can globally set the font size as a  developer, is it really that much harder to give users a setting for choosing there own font to view on their page only? Kind of like choosing the day/night setting, a couple more menu Items, font and size? Any way still exploring and will try to steemitstage at various times and drop findings here for you all.
👍  
properties (23)
authorbashadow
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004541284z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:45:36
last_update2018-02-15 00:45:36
depth1
children0
last_payout2018-02-22 00:45:36
cashout_time1969-12-31 23:59:59
total_payout_value0.352 HBD
curator_payout_value0.113 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length508
author_reputation100,388,692,638,882
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,607,171
net_rshares68,875,379,847
author_curate_reward""
vote details (1)
@bashir304 ·
it look like virtual motorways for data and future technologies
👍  
properties (23)
authorbashir304
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t154803099z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 15:48:03
last_update2018-02-15 15:48:03
depth1
children0
last_payout2018-02-22 15:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation1,030,568,940
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,775,503
net_rshares282,675,272
author_curate_reward""
vote details (1)
@batman31 ·
Nice contents
properties (22)
authorbatman31
permlinkre-steemitdev-2018215t16917160z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-15 09:09:18
last_update2018-02-15 09:09:18
depth1
children0
last_payout2018-02-22 09:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation7,077,131,350
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,697,403
net_rshares0
@batman31 ·
A good post,  please vote my account @batman31
properties (22)
authorbatman31
permlinkre-steemitdev-2018216t18414796z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-16 11:04:18
last_update2018-02-16 11:04:18
depth1
children0
last_payout2018-02-23 11:04:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation7,077,131,350
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,978,492
net_rshares0
@bennierex ·
Great news and awesome work! Will start testing asap.
properties (22)
authorbennierex
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225615556z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:56:15
last_update2018-02-14 22:56:15
depth1
children0
last_payout2018-02-21 22:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation5,544,064,354,890
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,590,233
net_rshares0
@beyfendi ·
''AppBase is the first step in creating a multi-chain FABRIC. AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. These plugins can be updated much more rapidly because they do not require replaying the entire blockchain.'' Really ?? Looks great !
👍  
properties (23)
authorbeyfendi
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231538497z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:16:30
last_update2018-02-14 23:16:30
depth1
children0
last_payout2018-02-21 23:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation1,095,273,445,329
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,543
net_rshares1,137,082,120
author_curate_reward""
vote details (1)
@bigdesafios ·
Excelente, así es que es  la union hace la fuerza, mientras mas unidos mejor hay que apoyarse de igual forma todos ganaremos quien me apoye votare siempre por ellos, suerte...
properties (22)
authorbigdesafios
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033808636z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 03:08:24
last_update2018-02-15 03:08:24
depth1
children0
last_payout2018-02-22 03:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation3,178,077,741
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,631,203
net_rshares0
@bigdesafios ·
Excelente post, Soy nueva en la comunidad espero contar son tu apoyo, Siempre estaré apoyándolo gracias... Éxito
properties (22)
authorbigdesafios
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t051058286z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 04:41:42
last_update2018-02-18 04:41:42
depth1
children0
last_payout2018-02-25 04:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation3,178,077,741
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,423,016
net_rshares0
@bitcointip ·
When you want to Flag them but see their Steem power lol
https://steemitimages.com/0x0/https://3.bp.blogspot.com/-tqD6WtPVvJU/VGY5-pWspoI/AAAAAAAANx8/5wtbn89jaYI/s1600/11061F62C.gif
properties (22)
authorbitcointip
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t104254912z
categorysteem
json_metadata{"tags":["steem"],"image":["https://steemitimages.com/0x0/https://3.bp.blogspot.com/-tqD6WtPVvJU/VGY5-pWspoI/AAAAAAAANx8/5wtbn89jaYI/s1600/11061F62C.gif"],"app":"steemit/0.1"}
created2018-02-15 10:42:57
last_update2018-02-15 10:42:57
depth1
children0
last_payout2018-02-22 10:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation-596,771,209,212
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,714,378
net_rshares0
@bitgeek ·
comment
Congratulations @steemitdev, this post is the  most rewarded post (based on pending payouts) in the last 12 hours written by a User account holder (accounts that hold between 0.1 and 1.0 Mega Vests). The total number of posts by User account holders during this period was 2940 and the total pending payments to posts in this category was $11708.40. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-15th-february-2018--part-ii). 

If you do not wish to receive these messages in future, please reply stop to this comment.
properties (22)
authorbitgeek
permlinkre-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t075307
categorysteem
json_metadata""
created2018-02-15 07:53:09
last_update2018-02-15 07:53:09
depth1
children0
last_payout2018-02-22 07:53:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length618
author_reputation13,049,044,453,787
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,682,595
net_rshares0
@blackybabies ·
$0.21
Steem blockchain will go far.
👍  
properties (23)
authorblackybabies
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t050128819z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 05:01:33
last_update2018-02-15 05:01:33
depth1
children0
last_payout2018-02-22 05:01:33
cashout_time1969-12-31 23:59:59
total_payout_value0.160 HBD
curator_payout_value0.052 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation3,748,307,268,706
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,650,945
net_rshares31,472,319,197
author_curate_reward""
vote details (1)
@bobinson ·
Just in time. I hope this reduces the crazy resource requirements of the witness and full RPC nodes
properties (22)
authorbobinson
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180305t113847196z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-03-05 11:38:51
last_update2018-03-05 11:38:51
depth1
children0
last_payout2018-03-12 11:38:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation55,343,141,313,811
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,358,362
net_rshares0
@bonafide1 ·
This post is amazing, steem is the best.
properties (22)
authorbonafide1
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t153148568z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 15:32:06
last_update2018-02-16 15:32:06
depth1
children0
last_payout2018-02-23 15:32:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation9,600,868
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,030,550
net_rshares0
@boyerobert ·
Great shot, have a look at the pic I posted, i'm new here @boyerobert
properties (22)
authorboyerobert
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180303t190443736z
categorysteem
json_metadata{"tags":["steem"],"users":["boyerobert"],"app":"steemit/0.1"}
created2018-03-03 19:04:42
last_update2018-03-03 19:04:42
depth1
children0
last_payout2018-03-10 19:04:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation6,116,221,221,735
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,939,883
net_rshares0
@brettcalloway ·
$1.45
Very exciting to see! Side chains appear to have the potential to bring in the classic (owner controlled - centralized) business models and allow them to coexist on top of the STEEM ecosystem! They can pick from the underlying layers of STEEM they want to adopt, then create what ever controls they want from there. Let me know where I'm wrong with this view! Thanks! Great work!
👍  , , ,
properties (23)
authorbrettcalloway
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231710291z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:17:09
last_update2018-02-14 23:17:09
depth1
children0
last_payout2018-02-21 23:17:09
cashout_time1969-12-31 23:59:59
total_payout_value1.096 HBD
curator_payout_value0.353 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length379
author_reputation4,314,822,232,959
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,635
net_rshares212,288,134,348
author_curate_reward""
vote details (4)
@broester ·
logged in using my keys. runs great. resteem checks out and here's a comment.
properties (22)
authorbroester
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033731229z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 03:37:33
last_update2018-02-15 03:37:33
depth1
children0
last_payout2018-02-22 03:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation1,090,007,277,845
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,636,410
net_rshares0
@captainobviou3 ·
$0.47
I don't know what you just said there, but glad you guys got this thing under control.
👍  
properties (23)
authorcaptainobviou3
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230843019z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:08:42
last_update2018-02-14 23:08:42
depth1
children1
last_payout2018-02-21 23:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.352 HBD
curator_payout_value0.113 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation36,289,636,582,778
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,592,333
net_rshares68,843,198,437
author_curate_reward""
vote details (1)
@goldiemr ·
Ha, touche, I'm with you there 🤣🤣
👍  
properties (23)
authorgoldiemr
permlinkre-captainobviou3-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t005745486z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:57:48
last_update2018-02-15 00:57:48
depth2
children0
last_payout2018-02-22 00:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation44,173,052,363
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,608,997
net_rshares2,337,641,905
author_curate_reward""
vote details (1)
@carlososuna11 ·
Welcome to steemit, I'm holding a raffle in which I will give away $ 10 ,to participate here: https://steemit.com/lot/@carlososuna11/you-want-to-win-usd-10
properties (22)
authorcarlososuna11
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t172223320z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/lot/@carlososuna11/you-want-to-win-usd-10"],"app":"steemit/0.1"}
created2018-02-16 17:23:03
last_update2018-02-16 17:23:03
depth1
children0
last_payout2018-02-23 17:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation76,024,366,538
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,052,821
net_rshares0
@carlpei ·
Việt Nam đâu rồi giơ tay lên.
properties (22)
authorcarlpei
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180304t024600430z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-03-04 02:45:57
last_update2018-03-04 02:45:57
depth1
children0
last_payout2018-03-11 02:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation32,529,802,529,473
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,017,249
net_rshares0
@cattivoragazzo ·
nice information, hope you succes
properties (22)
authorcattivoragazzo
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t162109820z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 16:21:03
last_update2018-02-15 16:21:03
depth1
children0
last_payout2018-02-22 16:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation5,500,895,145
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,782,376
net_rshares0
@celesus ·
Wow, you are my hero!!! Thanks!!!!!!!
properties (22)
authorcelesus
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t000506532z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 00:05:12
last_update2018-02-16 00:05:12
depth1
children0
last_payout2018-02-23 00:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation226,934,332
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,865,328
net_rshares0
@coquiunlimited ·
Using it now to make this comment. From a regular user's view there is no difference, other than there's no down vote button.  I personally would rather see a down vote button (as in disagreeing or spammy comments) than a flag (which I have seen abused for merely disagreeing with one's point of view or other silly, frivolous matters).
properties (22)
authorcoquiunlimited
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t023944471z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 02:39:45
last_update2018-02-15 02:39:45
depth1
children0
last_payout2018-02-22 02:39:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation5,815,829,253,052
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,626,110
net_rshares0
@crazybgadventure ·
Trying it now, its good but the steemit more info extension does not work on it??
properties (22)
authorcrazybgadventure
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122125592z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:21:24
last_update2018-02-15 12:21:24
depth1
children1
last_payout2018-02-22 12:21:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation5,553,373,191,378
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,732,942
net_rshares0
@davidmiller ·
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me  via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
properties (22)
authordavidmiller
permlinkre-crazybgadventure-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134838991z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:48:45
last_update2018-02-15 13:48:45
depth2
children0
last_payout2018-02-22 13:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length649
author_reputation-792,209,059,953
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,750,302
net_rshares0
@cryptobroye ·
Interesting article! Checkout @cryptobroye for more bitcoin info and analysis. Im sure there's a lot we can learn from each other!
👍  
properties (23)
authorcryptobroye
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t064352722z
categorysteem
json_metadata{"tags":["steem"],"users":["cryptobroye"],"app":"steemit/0.1"}
created2018-02-15 06:43:51
last_update2018-02-15 06:43:51
depth1
children0
last_payout2018-02-22 06:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation57,446,596,414
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,670,186
net_rshares211,615,461
author_curate_reward""
vote details (1)
@cryptoexplorer7 ·
Would you explain how modularity could be achieved by creating additional non-consensus blockchains as dedicated plugins. Any upcoming how-tos for plugin system. 

Logged into the site works same as steemit.
properties (22)
authorcryptoexplorer7
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t170244485z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.3.0"}
created2018-02-15 17:02:48
last_update2018-02-15 17:02:48
depth1
children0
last_payout2018-02-22 17:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation604,843,222,120
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,790,881
net_rshares0
@cryptosharon ·
Bug report:

I tried to reply to a comment

![](https://cdn.discordapp.com/attachments/405940580162732033/413629262419984385/unknown.png)

I wasn't logged in, so it asked me for my password:

![](https://cdn.discordapp.com/attachments/405940580162732033/413629347497508864/unknown.png)

I pressed Cancel, and instead of returning and letting me keep writing my comment, the field was blocked, had a forbidden mouse sign on hover and the Post button had been substituted by a loading sign.

![](https://cdn.discordapp.com/attachments/405940580162732033/413629407148900353/unknown.png)
👍  
properties (23)
authorcryptosharon
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t093902681z
categorysteem
json_metadata{"tags":["steem"],"image":["https://cdn.discordapp.com/attachments/405940580162732033/413629262419984385/unknown.png","https://cdn.discordapp.com/attachments/405940580162732033/413629347497508864/unknown.png","https://cdn.discordapp.com/attachments/405940580162732033/413629407148900353/unknown.png"],"app":"steemit/0.1"}
created2018-02-15 09:39:03
last_update2018-02-15 09:39:03
depth1
children0
last_payout2018-02-22 09:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length583
author_reputation91,921,317,551,639
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,702,816
net_rshares2,050,720,857
author_curate_reward""
vote details (1)
@cryptospecio ·
wow nice post
properties (22)
authorcryptospecio
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t091848799z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 09:19:00
last_update2018-02-16 09:19:00
depth1
children0
last_payout2018-02-23 09:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation442,920,849,621
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,959,343
net_rshares0
@cryptowani ·
so glad that everyone doing so much effort to improve this platform. With the spirit of this community, steemit will never die.
properties (22)
authorcryptowani
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t094117875z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 09:41:12
last_update2018-02-16 09:41:12
depth1
children0
last_payout2018-02-23 09:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation224,520,920,822
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,963,082
net_rshares0
@cut.abang ·
Thank you
for his science ...
properties (22)
authorcut.abang
permlinkre-steemitdev-2018215t11435780z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-15 04:43:51
last_update2018-02-15 04:43:51
depth1
children0
last_payout2018-02-22 04:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation46,108,032,488
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,648,113
net_rshares0
@d00k13 ·
@steemitdev so far it seems smoother, I still have no idea how to do markdown so i tend to use busy for posting but comments replies and the market seem much quicker all other portals linger.
properties (22)
authord00k13
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t073414871z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-17 07:34:15
last_update2018-02-17 07:34:15
depth1
children0
last_payout2018-02-24 07:34:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation473,475,468,733,980
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,196,021
net_rshares0
@daegeonlee ·
Have any opinion about voting bot?
👍  
properties (23)
authordaegeonlee
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t041035961z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 04:10:36
last_update2018-02-16 04:10:36
depth1
children0
last_payout2018-02-23 04:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation3,370,883,589
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,905,562
net_rshares613,471,515
author_curate_reward""
vote details (1)
@daniel-otaniel ·
It just keeps getting better, great innovation, can't wait to try out steemitstage.com
properties (22)
authordaniel-otaniel
permlinkre-steemitdev-2018215t23154853z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 01:32:03
last_update2018-02-15 01:32:03
depth1
children0
last_payout2018-02-22 01:32:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,682,754,915,786
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,614,334
net_rshares0
@dcwordofmouth ·
Thank you for sharing this, great news for the steemit community, Im all in, no matter what.  Dtube, Steemit, And steem crypto both , sbd and steem.
👍  
properties (23)
authordcwordofmouth
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012426846z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:24:27
last_update2018-02-15 01:24:27
depth1
children0
last_payout2018-02-22 01:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation122,022,769,008
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,613,180
net_rshares2,359,925,451
author_curate_reward""
vote details (1)
@dhirupadhyay ·
looking forward for more and expecting a lot more from steem in future @steemitdev
properties (22)
authordhirupadhyay
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t092816839z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-16 09:28:33
last_update2018-02-16 09:28:33
depth1
children0
last_payout2018-02-23 09:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation164,536,474,894
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,960,937
net_rshares0
@dmgpol09 ·
It's difficult to me^^;;
properties (22)
authordmgpol09
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t111014102z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 11:10:18
last_update2018-02-16 11:10:18
depth1
children0
last_payout2018-02-23 11:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation2,199,490,786,106
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,979,584
net_rshares0
@dragosroua · (edited)
$1.75
This is a fabulous update, congrats to the team and all contributors. I will do my testing on staging and try to spin a new instance with this new version.

One question: the upgrade is stable enough for witness nodes as well, or should we wait until the official hf 0.20?

Again, chapeau, guys!

_LE: upvoted for visibility_
👍  , , ,
properties (23)
authordragosroua
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t090331471z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 09:03:30
last_update2018-02-15 09:04:30
depth1
children1
last_payout2018-02-22 09:03:30
cashout_time1969-12-31 23:59:59
total_payout_value1.688 HBD
curator_payout_value0.060 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length325
author_reputation372,798,229,806,288
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,696,285
net_rshares256,956,546,829
author_curate_reward""
vote details (4)
@kos ·
http://fast-win.com/?i=78440
👍  
👎  
properties (23)
authorkos
permlinkre-dragosroua-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t201305488z
categorysteem
json_metadata{"tags":["steem"],"links":["http://fast-win.com/?i=78440"],"app":"steemit/0.1"}
created2018-02-16 20:13:06
last_update2018-02-16 20:13:06
depth2
children0
last_payout2018-02-23 20:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation-59,914,306,026
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,085,024
net_rshares-1,606,180,180
author_curate_reward""
vote details (2)
@drayhazz ·
Very difficult to understand but you did a nice job.
properties (22)
authordrayhazz
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230030254z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:00:42
last_update2018-02-14 23:00:42
depth1
children1
last_payout2018-02-21 23:00:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation346,318,482,396
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,591,005
net_rshares0
@pinay · (edited)
What makes it difficult? We, as regular users of steemit.com can post from different sites/apps like #busy #zappl #dtube #dmania steemitSTAGE.com etc etc and all those posts can also be viewed/accessed at steemit.com :)

Now, you can try browsing or posting/commenting  from steemitstage.com using your steemit.com username and password or posting key. We can get our POSTING key from steemit wallet, click "Permissions" :)

I am now typing this at steemitSTAGE.com not at steemit.com :) 

We can help developers by letting them know if it works fine or if we found some errors or on whatever device/browser we are using so they could fix if needed.
properties (22)
authorpinay
permlinkre-drayhazz-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t025232016z
categorysteem
json_metadata{"tags":["steem","busy","zappl","dtube","dmania"],"app":"steemit/0.1"}
created2018-02-15 02:52:33
last_update2018-02-15 03:03:57
depth2
children0
last_payout2018-02-22 02:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length649
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,628,413
net_rshares0
@drqaisarbashir ·
Well this a a good step. I appreciate ur work.help to make steemit better, lets work in collaboration.
properties (22)
authordrqaisarbashir
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165716966z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 16:57:21
last_update2018-02-15 16:57:21
depth1
children0
last_payout2018-02-22 16:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation415,976,311,472
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,789,797
net_rshares0
@dwonder ·
Fantastico...Let's get going people!
properties (22)
authordwonder
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t094904071z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 09:54:12
last_update2018-02-16 09:54:12
depth1
children0
last_payout2018-02-23 09:54:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation209,351,390
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,965,361
net_rshares0
@edicted ·
$0.85
I'm trying to make a game for steemit and it would be really useful if I could put text information on a block that wasn't a blog post or comment.  Is this possible? 

Also, is there anyway to get notified by the blockchain when someone replies to a post?  Currently, I'm simply scanning the blockchain every 3 seconds to see if anything has changed.  It seems very wasteful compared to a listener. 

>AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. 

I really wish I knew exactly what that meant.  Sounds awesome though :D
👍  , ,
properties (23)
authoredicted
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230928592z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:09:30
last_update2018-02-14 23:09:30
depth1
children13
last_payout2018-02-21 23:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.670 HBD
curator_payout_value0.178 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length620
author_reputation3,492,537,814,408,223
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,592,474
net_rshares124,376,922,488
author_curate_reward""
vote details (3)
@ausbitbank ·
$0.04
Check out the yo notification framework https://github.com/steemit/yo
👍  , , , , ,
properties (23)
authorausbitbank
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234533603z
categorysteem
json_metadata{"tags":["steem"],"links":["https://github.com/steemit/yo"],"app":"steemit/0.1"}
created2018-02-14 23:45:36
last_update2018-02-14 23:45:36
depth2
children3
last_payout2018-02-21 23:45:36
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation287,009,709,424,827
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,597,873
net_rshares6,785,118,198
author_curate_reward""
vote details (6)
@cryptosharon · (edited)
I think he was referring to a listener you could send to the blockchain that would let you not replay the entire blockchain and analyze event by event (which is what the yo notification framework does) but to tell the blockchain "only send events if they match this criterion". But as I think it's not possible, I think your solution is the best one out there.

_Yo_ not in JS but it's awesome RPC API seems awesome, so I'll try to integrate it to my code.
properties (22)
authorcryptosharon
permlinkre-ausbitbank-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t094810120z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 09:48:12
last_update2018-02-15 09:48:30
depth3
children0
last_payout2018-02-22 09:48:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length456
author_reputation91,921,317,551,639
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,704,501
net_rshares0
@horlly ·
Wow what a nice and cool comment,upvote my contest pleasehttps://steemit.com/thegraycontest/@horlly/thegraycontest-week-3
properties (22)
authorhorlly
permlinkre-ausbitbank-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t091726114z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/thegraycontest/@horlly/thegraycontest-week-3"],"app":"steemit/0.1"}
created2018-02-16 09:17:42
last_update2018-02-16 09:17:42
depth3
children1
last_payout2018-02-23 09:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation1,105,467,232
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,959,122
net_rshares0
@captaincanary ·
If you use iPhone you can get the Steemify app
properties (22)
authorcaptaincanary
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012137329z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:21:39
last_update2018-02-15 01:21:39
depth2
children0
last_payout2018-02-22 01:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation4,901,416,496,352
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,612,726
net_rshares0
@fessikay ·
Hmm, I guess AppBase is providing a platform that will enable Steemit users to upload a particular functionality/plugin for a better experience on Steemit (just as we have plugins for WordPress blogs).
What a cool development. Thumbs up to Team Steemit.
Thanks for sharing @steemitdev
properties (22)
authorfessikay
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084726741z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-15 08:47:21
last_update2018-02-15 08:47:21
depth2
children0
last_payout2018-02-22 08:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length284
author_reputation388,351,498,855
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,693,294
net_rshares0
@mickyscofield ·
Yes, you can get notified
Steem is making giant strides and leading the social network
properties (22)
authormickyscofield
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234235866z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:42:45
last_update2018-02-14 23:42:45
depth2
children0
last_payout2018-02-21 23:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,782,815,883,099
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,597,409
net_rshares0
@netuoso ·
Custom_json is what you probably want
properties (22)
authornetuoso
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000240899z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:02:42
last_update2018-02-15 00:02:42
depth2
children0
last_payout2018-02-22 00:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation151,901,967,807,285
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,534
net_rshares0
@santana33 ·
$0.59
Have you tried Steemify on Ios, as far as I know, the only criteria is under User, so not much customization, still could be useful?
👍  , , , , , , , , , ,
properties (23)
authorsantana33
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t224347098z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:43:48
last_update2018-02-15 22:43:48
depth2
children0
last_payout2018-02-22 22:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.466 HBD
curator_payout_value0.126 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation23,915,396,920,695
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,852,611
net_rshares95,874,826,367
author_curate_reward""
vote details (11)
@stadex ·
In the option list there is the replies option where you can replies.
properties (22)
authorstadex
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232159731z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:22:00
last_update2018-02-14 23:22:00
depth2
children0
last_payout2018-02-21 23:22:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation626,393,470,935
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,594,359
net_rshares0
@timcliff ·
$1.50
If you haven’t already, you should join the SteemDevs discord group: https://discord.gg/B29Bbng

There are a lot of people there that are good to discuss these types of questions with :)
👍  , , ,
properties (23)
authortimcliff
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000254004z
categorysteem
json_metadata{"tags":["steem"],"links":["https://discord.gg/B29Bbng"],"app":"steemit/0.1"}
created2018-02-15 00:02:54
last_update2018-02-15 00:02:54
depth2
children1
last_payout2018-02-22 00:02:54
cashout_time1969-12-31 23:59:59
total_payout_value1.271 HBD
curator_payout_value0.231 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,571
net_rshares220,226,609,180
author_curate_reward""
vote details (4)
@kos ·
https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s
👍  
👎  
properties (23)
authorkos
permlinkre-timcliff-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t195412348z
categorysteem
json_metadata{"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"}
created2018-02-16 19:54:12
last_update2018-02-16 19:54:12
depth3
children0
last_payout2018-02-23 19:54:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation-59,914,306,026
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,081,817
net_rshares-1,078,738,619,416
author_curate_reward""
vote details (2)
@timcliff ·
$0.08
> I really wish I knew exactly what that meant. 

It basically breaks the blockchain code into separate independent ‘modules’ so that people who are running instances of the blockchain can pick and choose which components they want to run.
👍  , ,
properties (23)
authortimcliff
permlinkre-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000517576z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:05:18
last_update2018-02-15 00:05:18
depth2
children0
last_payout2018-02-22 00:05:18
cashout_time1969-12-31 23:59:59
total_payout_value0.072 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,900
net_rshares11,571,998,078
author_curate_reward""
vote details (3)
@eliaseduardo ·
good post friend I invite you to see my blog
properties (22)
authoreliaseduardo
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t043618598z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 04:06:36
last_update2018-02-18 04:06:36
depth1
children0
last_payout2018-02-25 04:06:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation12,429,075,055
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,417,274
net_rshares0
@emmgeeahmad ·
How does this appbase work and how does help steemians?
👍  
properties (23)
authoremmgeeahmad
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t064517927z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 06:47:39
last_update2018-02-16 06:47:39
depth1
children0
last_payout2018-02-23 06:47:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation58,801,751,261
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,932,130
net_rshares221,201,856
author_curate_reward""
vote details (1)
@explorator ·
i just follow and upvote to your post ,, so kindly follow me back and upvote at given link ,, then i will upvote to your five more posts
https://steemit.com/actor/@explorator/h4998e8w
properties (22)
authorexplorator
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t051403138z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/actor/@explorator/h4998e8w"],"app":"steemit/0.1"}
created2018-02-17 05:14:06
last_update2018-02-17 05:14:06
depth1
children0
last_payout2018-02-24 05:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation-16,265,835,484
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,172,651
net_rshares0
@faisalmakruf ·
the information is very good, I will learn more, about this explanation.
properties (22)
authorfaisalmakruf
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010102717z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:01:00
last_update2018-02-15 01:01:00
depth1
children0
last_payout2018-02-22 01:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation13,916,079,516
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,609,492
net_rshares0
@faruk1 · (edited)
@faruk1 It's very good to buy blogs at App-base.
 I am proud of you.
Thank you.

![st6.png](https://steemitimages.com/DQmQ4ABQAFZ6jWMZAxQhUjD5rzZ7kCcqcCivmogEr9WrcGv/st6.png)
properties (22)
authorfaruk1
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t023854796z
categorysteem
json_metadata{"tags":["steem"],"users":["faruk1"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmQ4ABQAFZ6jWMZAxQhUjD5rzZ7kCcqcCivmogEr9WrcGv/st6.png"]}
created2018-02-16 02:39:00
last_update2018-02-16 02:44:33
depth1
children0
last_payout2018-02-23 02:39:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation19,896,691,923
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,889,397
net_rshares0
@fessikay ·
This is a great development. Hopefully, there is(will be) a store for these Apps. Can't wait to optimize my experience on Steemit every day.
properties (22)
authorfessikay
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t085954735z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 08:59:51
last_update2018-02-15 08:59:51
depth1
children0
last_payout2018-02-22 08:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation388,351,498,855
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,695,607
net_rshares0
@for91days ·
Steemit on Kokain, I love it! Testing it now!
properties (22)
authorfor91days
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t142934910z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.3.0"}
created2018-02-15 14:29:39
last_update2018-02-15 14:29:39
depth1
children0
last_payout2018-02-22 14:29:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation426,700,689,476,817
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,758,856
net_rshares0
@forykw ·
Saving this for later. Thanks, let's see if updating my node goes as exciting as this looks.
properties (22)
authorforykw
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042653421z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:26:54
last_update2018-02-15 04:26:54
depth1
children0
last_payout2018-02-22 04:26:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation92,176,539,844,676
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,645,425
net_rshares0
@freedomshift ·
I found this post from:

https://steemit.com/appbase/@sirknight/sirknight-approves-appbase

and @sirknight approves.
properties (22)
authorfreedomshift
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t204703339z
categorysteem
json_metadata{"tags":["steem"],"users":["sirknight"],"links":["https://steemit.com/appbase/@sirknight/sirknight-approves-appbase"],"app":"steemit/0.1"}
created2018-02-18 20:47:06
last_update2018-02-18 20:47:06
depth1
children0
last_payout2018-02-25 20:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation18,193,534,208,555
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,608,673
net_rshares0
@ftryfitri ·
very inspiring, stop at account @ftryfitri aids vote yes ![PhotoGrid_1518701100336[1].jpg](https://steemitimages.com/DQmduXbzUMa29UAzmf2uEd5np5yK4szS7636vjqBANELCr1/PhotoGrid_1518701100336%5B1%5D.jpg)
properties (22)
authorftryfitri
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134239186z
categorysteem
json_metadata{"tags":["steem"],"users":["ftryfitri"],"image":["https://steemitimages.com/DQmduXbzUMa29UAzmf2uEd5np5yK4szS7636vjqBANELCr1/PhotoGrid_1518701100336%5B1%5D.jpg"],"app":"steemit/0.1"}
created2018-02-15 13:42:39
last_update2018-02-15 13:42:39
depth1
children0
last_payout2018-02-22 13:42:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation5,240,483,398
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,749,168
net_rshares0
@fycee ·
I am glad our witnesses are working so hard to develop and support their platforms too. In my smallest way to support the success of Steemit, and Steem blockchain, I am already utilizing each one and getting the hang of it myself and trying to create blogs of how I incorporate each apps to our daily lives. Just like any other social media. One by one I am starting to use it, love it and promote it and let people do the domino effect as I motivate them as well to never lose hope on steemit. In which myself have experienced it but still here and rocking with brilliant minds.
Now enjoying busy.org and steemgigs. Stilll trying SteemTipper and parley. 
Thanks for this posts. Our responsibility to always get ourselves updated.
properties (22)
authorfycee
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180428t165951753z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-04-28 16:59:57
last_update2018-04-28 16:59:57
depth1
children0
last_payout2018-05-05 16:59:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length730
author_reputation8,342,965,418,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,677,257
net_rshares0
@garrie ·
This sounds really exciting. Can you provide some examples of what type of apps would potentially be made on the platform?
properties (22)
authorgarrie
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t230634555z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 23:06:36
last_update2018-02-15 23:06:36
depth1
children0
last_payout2018-02-22 23:06:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation242,781,406
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,856,409
net_rshares0
@gates6661 ·
thanks ..!!

this help fully
properties (22)
authorgates6661
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t121820803z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:18:21
last_update2018-02-15 12:18:21
depth1
children0
last_payout2018-02-22 12:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation3,177,899,261
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,732,383
net_rshares0
@gatorinla ·
I read the content and now see a line across your upvote dollar amount. It has made me skittish on viewing your sight.
properties (22)
authorgatorinla
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230656917z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:07:00
last_update2018-02-14 23:07:00
depth1
children7
last_payout2018-02-21 23:07:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation334,765,456,271
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,592,025
net_rshares0
@dhouse ·
that line through the upvote amount just means that the author declined to receive any author rewards.
properties (22)
authordhouse
permlinkre-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231409385z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:14:09
last_update2018-02-14 23:14:09
depth2
children0
last_payout2018-02-21 23:14:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation4,150,202,158,075
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,210
net_rshares0
@outtheshellvlog ·
It's a dev account, there's no real reason for a developer on the main project team to really bother with cashing out since they have the backend, or possibly saving it for some other purpose within the site itself.  It's a declined payment by the developer from the developer.  Think of it like this, you own a company and you have an automated payroll system that prints employee paychecks based on clocking in and out and it generates the owner a paycheck as well.  The paycheck comes from the owner's bank account, so why bother cashing it instead of shredding the check?
properties (22)
authorouttheshellvlog
permlinkre-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231721915z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:17:15
last_update2018-02-14 23:17:15
depth2
children3
last_payout2018-02-21 23:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length575
author_reputation11,385,462,196,990
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,653
net_rshares0
@davidmiller ·
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me  via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
👎  
properties (23)
authordavidmiller
permlinkre-outtheshellvlog-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134747418z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:47:51
last_update2018-02-15 13:47:51
depth3
children0
last_payout2018-02-22 13:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length649
author_reputation-792,209,059,953
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,750,146
net_rshares-491,561,718
author_curate_reward""
vote details (1)
@gatorinla ·
thanks, I take it my upvote did neither of us any good. I wasn't sure if someone had flagged it or something.
properties (22)
authorgatorinla
permlinkre-outtheshellvlog-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232456365z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:25:09
last_update2018-02-14 23:25:09
depth3
children1
last_payout2018-02-21 23:25:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation334,765,456,271
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,594,812
net_rshares0
@street.yoga ·
Did you really read it? Because it is not a sight but the fundamentals why you are able to put your comment here. And the line across the upvote  dollar amount means the Developers refused to be payed for this post, so that there is more money left for your quality posts, curations and comments. Take a deep breath and let that skittishness go :)
properties (22)
authorstreet.yoga
permlinkre-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232148548z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:21:48
last_update2018-02-14 23:21:48
depth2
children1
last_payout2018-02-21 23:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length347
author_reputation2,738,791,069,636
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,594,324
net_rshares0
@gatorinla · (edited)
I think we have a misunderstanding. I dont trust much on the net. After voting and commenting i saw the line. You may already have a relationship. I dont yet. The line across the money set off alarms in my head. It's all explained now. I get it. All good.
properties (22)
authorgatorinla
permlinkre-streetyoga-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010649890z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:06:54
last_update2018-02-15 01:07:36
depth3
children0
last_payout2018-02-22 01:06:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation334,765,456,271
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,610,420
net_rshares0
@giocondo83 ·
Come on Steemit, I believe a lot in this project and I'm really pleased that everything is finally going to bear fruit!
properties (22)
authorgiocondo83
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222902969z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:29:03
last_update2018-02-15 22:29:03
depth1
children0
last_payout2018-02-22 22:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation2,463,109,445,514
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,850,212
net_rshares0
@gmzct ·
really?
properties (22)
authorgmzct
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041829268z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 04:18:30
last_update2018-02-17 04:18:30
depth1
children0
last_payout2018-02-24 04:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation-16,832,223,372
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,163,198
net_rshares0
@goal300 ·
Wow this is a great developemnt, i just logged in using my posting key, it's all like the steemit.com with all d same info of your Acc. Does it mean we can be using both at the same time?
👍  
properties (23)
authorgoal300
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231449454z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:14:54
last_update2018-02-14 23:14:54
depth1
children3
last_payout2018-02-21 23:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation1,484,165,204,915
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,314
net_rshares67,754,333
author_curate_reward""
vote details (1)
@timcliff ·
$0.29
You can be logged in to both at the same time.
👍  
properties (23)
authortimcliff
permlinkre-goal300-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t233343905z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:33:42
last_update2018-02-14 23:33:42
depth2
children2
last_payout2018-02-21 23:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.218 HBD
curator_payout_value0.073 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,596,087
net_rshares43,008,168,645
author_curate_reward""
vote details (1)
@mickyscofield ·
Another extension of Steemit it is?
properties (22)
authormickyscofield
permlinkre-timcliff-re-goal300-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234438646z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:44:45
last_update2018-02-14 23:44:45
depth3
children1
last_payout2018-02-21 23:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation1,782,815,883,099
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,597,730
net_rshares0
@godatsteem ·
thanks for sharing.
properties (22)
authorgodatsteem
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001803010z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:18:03
last_update2018-02-15 00:18:03
depth1
children0
last_payout2018-02-22 00:18:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation2,475,721,584,286
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,602,990
net_rshares0
@greatstuff ·
greatstuff!!! :):)
properties (22)
authorgreatstuff
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t002039677z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:20:42
last_update2018-02-15 00:20:42
depth1
children0
last_payout2018-02-22 00:20:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation3,168,318,159
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,603,396
net_rshares0
@gregjava ·
Great, simply great. Positive changes all around, really. I'll be loving the condenser_api. Great work from the developers.
properties (22)
authorgregjava
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t111342729z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 11:13:45
last_update2018-02-15 11:13:45
depth1
children0
last_payout2018-02-22 11:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation407,441,374,496
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,720,341
net_rshares0
@here2help ·
$0.11
Please pardon me for being new and somewhat dense.  Is this a sidechain and if not, what is the difference?
👍  
properties (23)
authorhere2help
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000548993z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:05:48
last_update2018-02-15 00:05:48
depth1
children2
last_payout2018-02-22 00:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation349,980,632
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,980
net_rshares17,231,171,090
author_curate_reward""
vote details (1)
@timcliff ·
No, it is not a sidechain. There is still one blockchain, but different components can be turned on/off on the individual nodes. For example, an exchange node may only care about account balance transactions, and may not want to run all of the logic related to posting, commenting, voting, etc.
👍  
properties (23)
authortimcliff
permlinkre-here2help-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t041050502z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:10:51
last_update2018-02-15 04:10:51
depth2
children1
last_payout2018-02-22 04:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,642,484
net_rshares614,449,187
author_curate_reward""
vote details (1)
@here2help ·
Got it.  Thank you for the clarification.
properties (22)
authorhere2help
permlinkre-timcliff-re-here2help-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t113017952z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 11:30:18
last_update2018-02-15 11:30:18
depth3
children0
last_payout2018-02-22 11:30:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation349,980,632
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,723,359
net_rshares0
@heri27 ·
Good job
👍  
properties (23)
authorheri27
permlinkre-steemitdev-2018215t20477396z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 13:47:12
last_update2018-02-15 13:47:12
depth1
children0
last_payout2018-02-22 13:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation2,283,579,263
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,750,038
net_rshares602,165,565
author_curate_reward""
vote details (1)
@ifymula ·
Please guys help and upvote me https://steemit.com/stach/@ifymula/know-your-rhesus-factor-today
👍  
👎  
properties (23)
authorifymula
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t224318213z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/stach/@ifymula/know-your-rhesus-factor-today"],"app":"steemit/0.1"}
created2018-02-15 22:43:24
last_update2018-02-15 22:43:24
depth1
children0
last_payout2018-02-22 22:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation9,938,933,578
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,852,539
net_rshares120,665,938
author_curate_reward""
vote details (2)
@ikhsanjoe46 ·
Very good..
please help follow and vote me master.
properties (22)
authorikhsanjoe46
permlinkre-steemitdev-2018215t23543622z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 16:05:45
last_update2018-02-15 16:05:45
depth1
children0
last_payout2018-02-22 16:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation-9,390,309,163
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,779,159
net_rshares0
@introvertspeaks ·
@steemitdev I know you all busy. I am just wondering when will you ever fix the bug on the [wallet tab](https://steemit.com/@introvertspeaks/transfers)?

It's been a month or so and the issue hasn't gone away.
properties (22)
authorintrovertspeaks
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042547852z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"links":["https://steemit.com/@introvertspeaks/transfers"],"app":"steemit/0.1"}
created2018-02-15 04:25:45
last_update2018-02-15 04:25:45
depth1
children0
last_payout2018-02-22 04:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation-4,351,658,764,138
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,645,237
net_rshares0
@islamkha ·
I will also work on doingsome tests and for the
Developer community i will make a detailed post!!...

I think these will change the kind of split the RPC server into parts,which are each less resouces intensive too run....thank u bro,i will
really check it out....
properties (22)
authorislamkha
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t051411134z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 05:14:21
last_update2018-02-16 05:14:21
depth1
children0
last_payout2018-02-23 05:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation8,090,456,002
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,917,141
net_rshares0
@izgi ·
thank you
properties (22)
authorizgi
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t120937474z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:09:36
last_update2018-02-15 12:09:36
depth1
children0
last_payout2018-02-22 12:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation2,414,355,057
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,730,721
net_rshares0
@jakeybrown ·
$0.47
So just from reading this:
>AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. 

It seems like we are going to have the ability to fully customize our experience on steemit by implementing "plug-in" style additions.

Does this mean that anyone can create these modules? IF so this is a huge boost and something I was hoping would be implemented. Things that can customize the experience and make it easier to use, or bring new utility would be really awesome, can't wait to try it out tonight!
👍  ,
properties (23)
authorjakeybrown
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230440953z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:04:42
last_update2018-02-14 23:04:42
depth1
children0
last_payout2018-02-21 23:04:42
cashout_time1969-12-31 23:59:59
total_payout_value0.356 HBD
curator_payout_value0.113 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length587
author_reputation4,617,429,111,002
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,591,653
net_rshares69,445,412,147
author_curate_reward""
vote details (2)
@jalriva ·
interesting...
properties (22)
authorjalriva
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t012917374z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 01:29:24
last_update2018-02-16 01:29:24
depth1
children0
last_payout2018-02-23 01:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation9,600,768
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,878,515
net_rshares0
@jhonysins ·
Thanks for all the charts and opinion.Upvot and resteem.I appreciate your work.
properties (22)
authorjhonysins
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t223513661z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:35:24
last_update2018-02-14 22:35:24
depth1
children0
last_payout2018-02-21 22:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation479,437,241,437
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,586,917
net_rshares0
@joelgonz1982 ·
what a great contribution, I like to know that there are new options to use steemit and I will start surfing steemitstage.com
properties (22)
authorjoelgonz1982
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001457564z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:38:48
last_update2018-02-14 23:38:48
depth1
children0
last_payout2018-02-21 23:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation8,980,042,090,065
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,596,833
net_rshares0
@jordanbelford ·
https://steemit.com/facebook/@jordanbelford/7trwjp-discovery-channel-and-its-usual-programs
properties (22)
authorjordanbelford
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t194858830z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/facebook/@jordanbelford/7trwjp-discovery-channel-and-its-usual-programs"],"app":"steemit/0.1"}
created2018-02-15 19:49:21
last_update2018-02-15 19:49:21
depth1
children0
last_payout2018-02-22 19:49:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation-1,908,914
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,822,434
net_rshares0
@joshuaatiemo ·
Am really excited that the steem developers have really worked to enhance the steem blockchain. Mass scaling and adoption is what we need in the Crypto space. This great efforts are really appreciated. The more we build, innovate and develop the better for humanity as a whole. Cheers!!!
👍  
👎  
properties (23)
authorjoshuaatiemo
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180220t132336708z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-20 13:23:42
last_update2018-02-20 13:23:42
depth1
children0
last_payout2018-02-27 13:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation4,189,940,271,139
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,070,115
net_rshares83,162,908
author_curate_reward""
vote details (2)
@kemkem ·
Plus kindly upvote me @ Kemkem. Thanks
properties (22)
authorkemkem
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t104523380z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 10:46:06
last_update2018-02-16 10:46:06
depth1
children0
last_payout2018-02-23 10:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation580,897,940
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,975,155
net_rshares0
@kgakakillerg ·
Thanks for this great post keep up the good work great content 👍⚡♨️
properties (22)
authorkgakakillerg
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t101030357z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 10:10:33
last_update2018-02-15 10:10:33
depth1
children0
last_payout2018-02-22 10:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation568,045,098,590,643
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,708,589
net_rshares0
@kilianparadise · (edited)
Great work!!!!! I logged in through steemitstage.com, it goes very fast!!!!
Thank you.
Best Regards from Canary Islands.![21764902_10213850573041038_7018196675561808839_n.jpg](https://steemitimages.com/DQmPLLpx8ijAH9RhHSta6pzcT3kWQKG3BFRC9VFa9BRJJbp/21764902_10213850573041038_7018196675561808839_n.jpg)
properties (22)
authorkilianparadise
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122840222z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmPLLpx8ijAH9RhHSta6pzcT3kWQKG3BFRC9VFa9BRJJbp/21764902_10213850573041038_7018196675561808839_n.jpg"]}
created2018-02-15 12:28:39
last_update2018-02-15 12:36:42
depth1
children0
last_payout2018-02-22 12:28:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation5,844,486,015,944
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,734,366
net_rshares0
@kimsungtee ·
$0.05
읽어도 아직 은 잘 모르지만 읽을 만한 가치가 있는 것은  분명한 것 같다.
👍  
properties (23)
authorkimsungtee
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125256726z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:52:57
last_update2018-02-15 12:52:57
depth1
children0
last_payout2018-02-22 12:52:57
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation10,535,573,340,060
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,739,101
net_rshares7,492,166,336
author_curate_reward""
vote details (1)
@kjnk ·
$0.22
Wow, this is exciting, continue to be super bullish on Steem's future
👍  
properties (23)
authorkjnk
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t223022384z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:30:24
last_update2018-02-15 22:30:24
depth1
children0
last_payout2018-02-22 22:30:24
cashout_time1969-12-31 23:59:59
total_payout_value0.166 HBD
curator_payout_value0.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation670,294,526,884
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,850,480
net_rshares35,818,497,008
author_curate_reward""
vote details (1)
@kofibeatz ·
So over my head, but I'm trying @steemitdev..
properties (22)
authorkofibeatz
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t074445909z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-15 07:44:42
last_update2018-02-15 07:44:42
depth1
children0
last_payout2018-02-22 07:44:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,049,558,092,285
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,681,016
net_rshares0
@kvngcreamy ·
Just tried it also using my posting key, it feels like normal. Almost same as the former, I so love it. Keep up the good work. 

**Keep steeming**
properties (22)
authorkvngcreamy
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t075439631z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 07:54:48
last_update2018-02-16 07:54:48
depth1
children0
last_payout2018-02-23 07:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation154,826,751,420
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,943,914
net_rshares0
@kwakumax ·
$4.30
Is there a difference because I don't see it. It looks exactly like the steemit.com interface
👍  ,
properties (23)
authorkwakumax
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225651005z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:56:45
last_update2018-02-14 22:56:45
depth1
children10
last_payout2018-02-21 22:56:45
cashout_time1969-12-31 23:59:59
total_payout_value3.230 HBD
curator_payout_value1.068 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation30,435,185,048,559
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,590,320
net_rshares628,344,947,789
author_curate_reward""
vote details (2)
@mosunomotunde ·
You are absolutely right @kwakumax. It looks and feels exactly the same as Steemit.I guess its just a more efficient future oriented version
properties (22)
authormosunomotunde
permlinkre-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000913063z
categorysteem
json_metadata{"tags":["steem"],"users":["kwakumax"],"app":"steemit/0.1"}
created2018-02-15 00:09:15
last_update2018-02-15 00:09:15
depth2
children0
last_payout2018-02-22 00:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation19,586,987,821,353
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,601,550
net_rshares0
@street.yoga ·
If you want to see a difference, look at the witnesses to vote for.
properties (22)
authorstreet.yoga
permlinkre-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230808273z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:08:09
last_update2018-02-14 23:08:09
depth2
children3
last_payout2018-02-21 23:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation2,738,791,069,636
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,592,239
net_rshares0
@mosunomotunde ·
Will check that out asap
👍  
properties (23)
authormosunomotunde
permlinkre-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001018180z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:10:18
last_update2018-02-15 00:10:18
depth3
children0
last_payout2018-02-22 00:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation19,586,987,821,353
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,601,722
net_rshares614,503,785
author_curate_reward""
vote details (1)
@mosunomotunde ·
You were right. The difference is pretty noticeable when voting for witnesses. Its so amazing that the entire feel is exactly like steemit.com though...incredible work
properties (22)
authormosunomotunde
permlinkre-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t002626877z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:26:27
last_update2018-02-15 00:26:27
depth3
children0
last_payout2018-02-22 00:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation19,586,987,821,353
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,604,280
net_rshares0
@netuoso ·
More specifically these changes are all backend and should not be visible to the end user. If you encounter bugs or problems that is good to report on https://github.com/steemit/steem
👍  
properties (23)
authornetuoso
permlinkre-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000816803z
categorysteem
json_metadata{"tags":["steem"],"links":["https://github.com/steemit/steem"],"app":"steemit/0.1"}
created2018-02-15 00:08:18
last_update2018-02-15 00:08:18
depth3
children0
last_payout2018-02-22 00:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation151,901,967,807,285
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,601,390
net_rshares2,852,727,269
author_curate_reward""
vote details (1)
@timcliff ·
$0.21
If everything is working the same as before, then that is good in this case. These changes are all “under the hood” to make the underlying blockchain run more efficiently.
👍  , , ,
properties (23)
authortimcliff
permlinkre-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225913297z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:59:12
last_update2018-02-14 22:59:12
depth2
children4
last_payout2018-02-21 22:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.178 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,590,748
net_rshares31,555,685,288
author_curate_reward""
vote details (4)
@gatorinla ·
Less bandwidth problems i hope.
properties (22)
authorgatorinla
permlinkre-timcliff-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232627176z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:26:30
last_update2018-02-14 23:26:30
depth3
children2
last_payout2018-02-21 23:26:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation334,765,456,271
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,595,018
net_rshares0
@kwakumax ·
$3.54
I get it now. Thanks for explaining.
👍  , ,
properties (23)
authorkwakumax
permlinkre-timcliff-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t003026991z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:30:21
last_update2018-02-15 00:30:21
depth3
children0
last_payout2018-02-22 00:30:21
cashout_time1969-12-31 23:59:59
total_payout_value2.674 HBD
curator_payout_value0.865 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation30,435,185,048,559
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,604,882
net_rshares518,958,718,367
author_curate_reward""
vote details (3)
@lorianaf ·
maravilloso
properties (22)
authorlorianaf
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t044640567z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 04:46:42
last_update2018-02-17 04:46:42
depth1
children0
last_payout2018-02-24 04:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation7,014,346,999
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,168,101
net_rshares0
@lovebird ·
Nice your post @lovebird
👍  
properties (23)
authorlovebird
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t185121462z
categorysteem
json_metadata{"tags":["steem"],"users":["lovebird"],"app":"steemit/0.1"}
created2018-02-15 18:51:42
last_update2018-02-15 18:51:42
depth1
children0
last_payout2018-02-22 18:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation460,197,067
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,811,625
net_rshares454,702,424
author_curate_reward""
vote details (1)
@lpreap ·
This is awesome, thank you for all the hard work the team has done this far to pull this off! Going to try it now.
properties (22)
authorlpreap
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t015115321z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:51:15
last_update2018-02-15 01:51:15
depth1
children0
last_payout2018-02-22 01:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation54,986,778,739,095
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,617,377
net_rshares0
@lucky1001 ·
Saya lucky1001 sangat menyukai  postingannya @steemitdev.
Menurut saya baca menarik dan bagus sekali.
Gambar, tema dan postingannya sangat best in debest pokoknya.
properties (22)
authorlucky1001
permlinkre-steemitdev-2018217t1544431z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-16 18:06:06
last_update2018-02-16 18:06:06
depth1
children0
last_payout2018-02-23 18:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation70,370,216,714
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,061,548
net_rshares0
@manlikehuss ·
Amazing news, glad we have a dev team that is consistently focused on progression!

Keep up the work lads!
properties (22)
authormanlikehuss
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t131251487z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:12:51
last_update2018-02-15 13:12:51
depth1
children0
last_payout2018-02-22 13:12:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation14,266,221,008
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,743,214
net_rshares0
@manny80 ·
I can’t wait for the iPhone app! I think it will take this to another level.
properties (22)
authormanny80
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t010652847z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 01:06:51
last_update2018-02-18 01:06:51
depth1
children2
last_payout2018-02-25 01:06:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation27,976,232,216
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,388,224
net_rshares0
@pinay ·
We can use @steepshot ;)
👍  
properties (23)
authorpinay
permlinkre-manny80-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180404t114728052z
categorysteem
json_metadata{"tags":["steem"],"users":["steepshot"],"app":"steemit/0.1"}
created2018-04-04 11:47:30
last_update2018-04-04 11:47:30
depth2
children1
last_payout2018-04-11 11:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,285,325
net_rshares0
author_curate_reward""
vote details (1)
@manny80 ·
Awesome! I Just got it. Thanks!
properties (22)
authormanny80
permlinkre-pinay-re-manny80-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180424t002753407z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-04-24 00:27:54
last_update2018-04-24 00:27:54
depth3
children0
last_payout2018-05-01 00:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation27,976,232,216
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,768,974
net_rshares0
@manzon ·
What is it all about?
👍  
properties (23)
authormanzon
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t055758237z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 05:58:00
last_update2018-02-15 05:58:00
depth1
children0
last_payout2018-02-22 05:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation760,184,000,371
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,661,349
net_rshares494,127,120
author_curate_reward""
vote details (1)
@marc0o ·
will you provide a docker image to run a local testnet? that would be great!
properties (22)
authormarc0o
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180219t002609501z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-19 00:26:09
last_update2018-02-19 00:26:09
depth1
children0
last_payout2018-02-26 00:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation16,451,037,059
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,644,408
net_rshares0
@marc0o ·
what's up with https://steemitstage.com/? seems to be down :-/
properties (22)
authormarc0o
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180411t064302653z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemitstage.com/?"],"app":"steemit/0.1"}
created2018-04-11 06:43:03
last_update2018-04-11 06:43:03
depth1
children0
last_payout2018-04-18 06:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation16,451,037,059
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,439,881
net_rshares0
@mickyscofield ·
Interesting programming concept
I love to see progress emanating from the Steem blockchain.
Would check it shortly
Steem is progressing
When is the proposed date for the launch of SMT?
properties (22)
authormickyscofield
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225950045z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:00:00
last_update2018-02-14 23:00:00
depth1
children0
last_payout2018-02-21 23:00:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation1,782,815,883,099
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,590,871
net_rshares0
@mikeparker ·
$0.71
## FEATURE REQUEST!

### Adding article to a "Favorites" list and/or "READ Later List"
👍  , ,
properties (23)
authormikeparker
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t090721318z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 09:07:27
last_update2018-02-16 09:07:27
depth1
children0
last_payout2018-02-23 09:07:27
cashout_time1969-12-31 23:59:59
total_payout_value0.710 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,918,622,980,082
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,957,287
net_rshares115,816,011,081
author_curate_reward""
vote details (3)
@missrdx ·
Good work,good post.
👍  
properties (23)
authormissrdx
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t060727446z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 06:07:42
last_update2018-02-15 06:07:42
depth1
children0
last_payout2018-02-22 06:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation424,720,365,798
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,663,147
net_rshares103,841,545
author_curate_reward""
vote details (1)
@mmkamal ·
WOW congratulations steemit !! I'm just waiting to see Steem's foot move forward ...........  

![17155303_1118489921630831_8059004870372699192_n.jpg](https://steemitimages.com/DQmYuiy3KnK7w4FLTucXchGEotJzWiyJqo4bRWJGvXhbxx7/17155303_1118489921630831_8059004870372699192_n.jpg)
👍  ,
properties (23)
authormmkamal
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t105810625z
categorysteem
json_metadata{"tags":["steem"],"image":["https://steemitimages.com/DQmYuiy3KnK7w4FLTucXchGEotJzWiyJqo4bRWJGvXhbxx7/17155303_1118489921630831_8059004870372699192_n.jpg"],"app":"steemit/0.1"}
created2018-02-15 10:58:15
last_update2018-02-15 10:58:15
depth1
children0
last_payout2018-02-22 10:58:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation-1,182,744,328,834
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,717,205
net_rshares0
author_curate_reward""
vote details (2)
@mohammadsohail ·
Wow really nice ....appreciate ir work i ll try .
properties (22)
authormohammadsohail
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t224413585z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:43:00
last_update2018-02-14 22:43:00
depth1
children0
last_payout2018-02-21 22:43:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation37,612,296,681
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,588,056
net_rshares0
@moontrap ·
Thanks so much for posting a very good and very good, and also very useful, thank for sharing friends. @steemdev
properties (22)
authormoontrap
permlinkre-steemitdev-2018215t82925404z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 01:29:30
last_update2018-02-15 01:29:30
depth1
children0
last_payout2018-02-22 01:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation838,742,611,130
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,613,958
net_rshares0
@mosunomotunde ·
$0.17
Wow! Congratulations! This is a ground breaking achievement indeed! Off to try out on steemitstage.com. Well done sir!
👍  
properties (23)
authormosunomotunde
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000705752z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:07:06
last_update2018-02-15 00:07:06
depth1
children0
last_payout2018-02-22 00:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.134 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation19,586,987,821,353
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,601,193
net_rshares25,828,149,676
author_curate_reward""
vote details (1)
@mudasra ·
Great news for steemit Community, it will distribute the load and will make steemit more easy and effectively to use :)
properties (22)
authormudasra
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t123715355z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:37:18
last_update2018-02-15 12:37:18
depth1
children0
last_payout2018-02-22 12:37:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation324,036,126,056
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,736,065
net_rshares0
@muhammadilham99 ·
A beautiful
properties (22)
authormuhammadilham99
permlinkre-steemitdev-2018215t20198915z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 13:19:15
last_update2018-02-15 13:19:15
depth1
children0
last_payout2018-02-22 13:19:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation38,807,448,654
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,744,479
net_rshares0
@muhammadjuanda ·
ありがとうございます
properties (22)
authormuhammadjuanda
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222545478z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:25:45
last_update2018-02-15 22:25:45
depth1
children0
last_payout2018-02-22 22:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation460,947,248
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,849,647
net_rshares0
@munawar1235 ·
$1.56
It is really a great step and achievement. My heartedly congratulations to entire team of developers!
👍  ,
properties (23)
authormunawar1235
permlinkre-steemitdev-2018216t124827174z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 07:48:30
last_update2018-02-16 07:48:30
depth1
children0
last_payout2018-02-23 07:48:30
cashout_time1969-12-31 23:59:59
total_payout_value1.148 HBD
curator_payout_value0.415 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation86,522,918,923,810
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,942,769
net_rshares274,233,048,689
author_curate_reward""
vote details (2)
@muzi0202 ·
$0.04
It seems to be good step forward to strengthen and securing the steemit block chain.
Regular updates without making the changes in basic structure of the steemit is a good consideration. 
Hopefully this will reduce the burden on witness management and also reduce the nodal load.
If I am able to contribute, I will do. 
Keep this good work going and making this platform more successful and transparent. 
Regards.....!!!
👍  
properties (23)
authormuzi0202
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125655129z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:56:57
last_update2018-02-15 12:56:57
depth1
children2
last_payout2018-02-22 12:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length420
author_reputation1,611,550,559,546
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,739,936
net_rshares6,071,108,310
author_curate_reward""
vote details (1)
@davidmiller ·
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me  via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
👎  
properties (23)
authordavidmiller
permlinkre-muzi0202-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134639200z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:46:45
last_update2018-02-15 13:46:45
depth2
children1
last_payout2018-02-22 13:46:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length649
author_reputation-792,209,059,953
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,749,955
net_rshares-1,787,768,918
author_curate_reward""
vote details (1)
@crazybgadventure ·
Suggest you stop spamming your comment its only gonna get you flagged.
properties (22)
authorcrazybgadventure
permlinkre-davidmiller-re-muzi0202-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t141119870z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 14:11:18
last_update2018-02-15 14:11:18
depth3
children0
last_payout2018-02-22 14:11:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation5,553,373,191,378
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,754,990
net_rshares0
@muzquiz ·
Hi, I voted for your post and I follow you. I hope you are kind and do the same, I'm just starting in steemit. Thank you.
@muzquiz
👍  
properties (23)
authormuzquiz
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t025043867z
categorysteem
json_metadata{"tags":["steem"],"users":["muzquiz"],"app":"steemit/0.1"}
created2018-02-16 02:50:45
last_update2018-02-16 02:50:45
depth1
children0
last_payout2018-02-23 02:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation1,360,373,868
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,891,340
net_rshares567,449,329
author_curate_reward""
vote details (1)
@mvielma26 ·
Excelentt. https://steemit.com/spanish/@mvielma26/orgasmo
properties (22)
authormvielma26
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t132505683z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/spanish/@mvielma26/orgasmo"],"app":"steemit/0.1"}
created2018-02-17 13:25:09
last_update2018-02-17 13:25:09
depth1
children0
last_payout2018-02-24 13:25:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation215,090,004,373
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,257,160
net_rshares0
@mwangimbugua ·
This is amazing for developers
properties (22)
authormwangimbugua
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t140411612z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 14:01:21
last_update2018-02-16 14:01:21
depth1
children0
last_payout2018-02-23 14:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation677,240,394
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,011,665
net_rshares0
@naseerbhat ·
Using 3rd party application for steemit i don't find it of any use anyway you might have made this platform a better one but i think am better off using steeit.com they don't take any shear from you work in the name of curation so being a regular user i think i won't use any 3rd party app for steemit. Thanks anyway for providing such platforms
properties (22)
authornaseerbhat
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t073632200z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 07:36:36
last_update2018-02-15 07:36:36
depth1
children0
last_payout2018-02-22 07:36:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation2,572,727,094,814
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,679,610
net_rshares0
@nasruddin ·
posting that sagat useful. I love to read it and I have to learn from you
properties (22)
authornasruddin
permlinkre-steemitdev-2018216t204157913z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 13:42:03
last_update2018-02-16 13:42:03
depth1
children0
last_payout2018-02-23 13:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation9,432,088,661
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,007,700
net_rshares0
@nayraf ·
very interesting. and very beautiful to look at. full of creativity. good work
👍  ,
properties (23)
authornayraf
permlinkre-steemitdev-2018216t171442103z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 10:14:45
last_update2018-02-16 10:14:45
depth1
children0
last_payout2018-02-23 10:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation46,962,498,130
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,969,182
net_rshares592,091,142
author_curate_reward""
vote details (2)
@nazaruddin1 ·
your post is very useful ,,, I will try
properties (22)
authornazaruddin1
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042126087z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:21:00
last_update2018-02-15 04:21:00
depth1
children0
last_payout2018-02-22 04:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,718,762,078
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,644,421
net_rshares0
@netuoso ·
$24.98
This is such a monumental step forward. This will hopefully lead to much less resource demand on nodes and witnesses in the future. 

I will work on doing some testing and make a detailed post for the developer community.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authornetuoso
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000443785z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:04:45
last_update2018-02-15 00:04:45
depth1
children184
last_payout2018-02-22 00:04:45
cashout_time1969-12-31 23:59:59
total_payout_value19.172 HBD
curator_payout_value5.811 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation151,901,967,807,285
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,600,817
net_rshares3,654,858,056,887
author_curate_reward""
vote details (40)
@ashoo ·
I think this situation will not face again for everyone
properties (22)
authorashoo
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t164600099z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 16:46:00
last_update2018-02-16 16:46:00
depth2
children0
last_payout2018-02-23 16:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation9,601,128
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,045,368
net_rshares0
@bitcointip ·
https://steemitimages.com/0x0/https://memegenerator.net/img/instances/500x/58431576/give-that-man-an-upvote.jpg
👍  , , , , ,
properties (23)
authorbitcointip
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t003756533z
categorysteem
json_metadata{"tags":["steem"],"image":["https://steemitimages.com/0x0/https://memegenerator.net/img/instances/500x/58431576/give-that-man-an-upvote.jpg"],"app":"steemit/0.1"}
created2018-02-16 00:38:00
last_update2018-02-16 00:38:00
depth2
children2
last_payout2018-02-23 00:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation-596,771,209,212
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,870,274
net_rshares2,710,763,709
author_curate_reward""
vote details (6)
@major007 · (edited)
OK 😅
properties (22)
authormajor007
permlinkre-bitcointip-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t200500747z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 20:05:03
last_update2018-02-16 20:05:21
depth3
children0
last_payout2018-02-23 20:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation3,086,475,086
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,083,660
net_rshares0
@mvielma26 · (edited)
ok
properties (22)
authormvielma26
permlinkre-bitcointip-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t132156010z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 13:22:03
last_update2018-02-17 13:26:09
depth3
children0
last_payout2018-02-24 13:22:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation215,090,004,373
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,256,471
net_rshares0
@cryptosharon ·
$0.52
Awesome! I'm looking forward to the new Steem API wrappers. I'm far from being fluent in all of this dev talk, but I sure enjoy making some Steemit bots. :)
👍  , , , ,
properties (23)
authorcryptosharon
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t093617476z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 09:36:18
last_update2018-02-15 09:36:18
depth2
children2
last_payout2018-02-22 09:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.402 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation91,921,317,551,639
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,702,271
net_rshares76,805,878,460
author_curate_reward""
vote details (5)
@freedomshift ·
@cryptsharon - You have an interesting profile, although I don't see anything "crypto" ...
Your reputation is high, but, not showing up in earnings or SP - I wonder why - as you seem to have good materials.
All the best!
properties (22)
authorfreedomshift
permlinkre-cryptosharon-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t204904569z
categorysteem
json_metadata{"tags":["steem"],"users":["cryptsharon"],"app":"steemit/0.1"}
created2018-02-18 20:49:09
last_update2018-02-18 20:49:09
depth3
children1
last_payout2018-02-25 20:49:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation18,193,534,208,555
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,609,022
net_rshares0
@davidmiller ·
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me  via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
👎  
properties (23)
authordavidmiller
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133829442z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:38:33
last_update2018-02-15 13:38:33
depth2
children0
last_payout2018-02-22 13:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length649
author_reputation-792,209,059,953
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,748,409
net_rshares-17,285,106,837
author_curate_reward""
vote details (1)
@haidar786 ·
it will be very helpful for us :)
👍  
properties (23)
authorhaidar786
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t190717733z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 19:07:21
last_update2018-02-15 19:07:21
depth2
children0
last_payout2018-02-22 19:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation-7,259,812,233
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,814,705
net_rshares89,095,748
author_curate_reward""
vote details (1)
@introvertspeaks ·
$0.43
@netuoso I don't fully understand this. Are there any other types of nodes aside from the witness nodes that make up the Steem network?

How many nodes are there? I'm kind of lost here.

I hope you can clarify or any links detailing this matter would be much appreciated. Thanx!

Also I have a project proposal on how to [decentralize sex](https://steemit.com/blockchain/@introvertspeaks/valentine-s-day-special-an-open-source-proposal-to-decentralized-sex).
👍  , , ,
properties (23)
authorintrovertspeaks
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t045540760z
categorysteem
json_metadata{"tags":["steem"],"users":["netuoso"],"links":["https://steemit.com/blockchain/@introvertspeaks/valentine-s-day-special-an-open-source-proposal-to-decentralized-sex"],"app":"steemit/0.1"}
created2018-02-15 04:55:39
last_update2018-02-15 04:55:39
depth2
children164
last_payout2018-02-22 04:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.330 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length458
author_reputation-4,351,658,764,138
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,649,984
net_rshares63,548,582,889
author_curate_reward""
vote details (4)
@andybets · (edited)
$3.00
I made a couple of posts a few months ago that might help explain the previous structure:
https://steemit.com/steemit/@steemreports/steemreports-the-anatomy-of-steem-and-steemit
https://steemit.com/steemit/@steemreports/steemreport-the-new-anatomy-of-steemit

I think these changes kind of split the RPC Server into parts, which are each less resource intensive to run.
👍  , , , , , , ,
properties (23)
authorandybets
permlinkre-introvertspeaks-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t090957978z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/steemit/@steemreports/steemreports-the-anatomy-of-steem-and-steemit","https://steemit.com/steemit/@steemreports/steemreport-the-new-anatomy-of-steemit"],"app":"steemit/0.1"}
created2018-02-15 09:09:57
last_update2018-02-15 09:12:45
depth3
children162
last_payout2018-02-22 09:09:57
cashout_time1969-12-31 23:59:59
total_payout_value2.256 HBD
curator_payout_value0.741 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length369
author_reputation15,189,090,569,005
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,697,528
net_rshares439,923,961,962
author_curate_reward""
vote details (8)
@hot-sauce ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.   Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.   Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.   Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.   Below are just a few of the terrible insults they have spoken against this Christian man.   Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.   Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."   Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.   Not a word was said in one year and now he is resorting to further action.   The abuse will stop.   If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.   There is a substantial reward and you can remain anonymous.   Noganoo is unable to file a restraining order against these 2 until he finds their identity.   BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.   Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.   Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.   You can see that these people and their friends are the only people who have ever attacked Noganoo.   They are trying to cover up their theft.   If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.   https://steemd.com/@sweet-banana?page=17     Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."   Fact is they stole millions of dollars.   This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."   Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)

![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,   Pfunk at the time had no idea Noganoo wrote this!   Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.   Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.   Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.   Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.   He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  , , , , , , , , , , , , ,
properties (23)
authorhot-sauce
permlinkre-introvertspeaks-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t163221581z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 16:32:21
last_update2018-02-15 16:32:21
depth3
children0
last_payout2018-02-22 16:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,123
author_reputation-830,398,543,134
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,784,611
net_rshares-197,298,505,415
author_curate_reward""
vote details (14)
@jiren ·
Appbase is a must for steemit blockchain
properties (22)
authorjiren
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t050756478z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 05:07:57
last_update2018-02-16 05:07:57
depth2
children0
last_payout2018-02-23 05:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation-9,890,483,226
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,915,899
net_rshares0
@kos ·
https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s
👎  , ,
properties (23)
authorkos
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t201146706z
categorysteem
json_metadata{"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"}
created2018-02-16 20:11:45
last_update2018-02-16 20:11:45
depth2
children0
last_payout2018-02-23 20:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation-59,914,306,026
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,084,794
net_rshares-151,071,671,540
author_curate_reward""
vote details (3)
@manasiarora ·
$0.05
I hope this appbase could be very nice platform for steem users and holders.I think future of steem in this new invention ,is very bright...
👍  , , , , , , , , , , , , ,
properties (23)
authormanasiarora
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t105227623z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 10:52:36
last_update2018-02-16 10:52:36
depth2
children0
last_payout2018-02-23 10:52:36
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation1,647,189,936,849
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,976,313
net_rshares8,072,429,056
author_curate_reward""
vote details (14)
@pittsburghhodlr ·
This community is great, I love the togetherness and how everyone is willing to work to make this an accepting place where we work together to achieve dreams and share passions!!!
properties (22)
authorpittsburghhodlr
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041233674z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 04:12:33
last_update2018-02-17 04:12:33
depth2
children0
last_payout2018-02-24 04:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation23,602,362,212,189
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,162,212
net_rshares0
@raoulbove98 ·
ARE YOU CRAZY ?
properties (22)
authorraoulbove98
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t145009963z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 14:50:09
last_update2018-02-15 14:50:09
depth2
children0
last_payout2018-02-22 14:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation43,447,698
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,763,372
net_rshares0
@russel59 ·
Okay sir @netuoso
I'm Russell , 
I'm waiting for details post for the developer company.🙂
properties (22)
authorrussel59
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t081429917z
categorysteem
json_metadata{"tags":["steem"],"users":["netuoso"],"app":"steemit/0.1"}
created2018-02-18 08:14:54
last_update2018-02-18 08:14:54
depth2
children0
last_payout2018-02-25 08:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation19,963,079,525
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,457,192
net_rshares0
@titanik ·
I have methods of winning bitcoin
👍  
👎  
properties (23)
authortitanik
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165952096z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 16:59:57
last_update2018-02-15 16:59:57
depth2
children0
last_payout2018-02-22 16:59:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation-16,032,137,583
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,790,311
net_rshares-25,511,801,287
author_curate_reward""
vote details (2)
@wrecking-ball ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.   Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.   Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.   Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.   Below are just a few of the terrible insults they have spoken against this Christian man.   Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.   Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."   Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.   Not a word was said in one year and now he is resorting to further action.   The abuse will stop.   If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.   There is a substantial reward and you can remain anonymous.   Noganoo is unable to file a restraining order against these 2 until he finds their identity.   BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.   Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.   Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.   You can see that these people and their friends are the only people who have ever attacked Noganoo.   They are trying to cover up their theft.   If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.   https://steemd.com/@sweet-banana?page=17     Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."   Fact is they stole millions of dollars.   This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."   Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)

![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,   Pfunk at the time had no idea Noganoo wrote this!   Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.   Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.   Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.   Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.   He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  , ,
properties (23)
authorwrecking-ball
permlinkre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 14:32:24
last_update2018-02-15 14:32:24
depth2
children2
last_payout2018-02-22 14:32:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,123
author_reputation-823,503,467,953
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,759,493
net_rshares-16,299,930,020
author_curate_reward""
vote details (3)
@iflagtrash ·
Lick on deez ballz @noganoo!! <p>![image](https://i.imgur.com/zKUFA2q.png)
👎  
properties (23)
authoriflagtrash
permlinkiflagtrash-re-wrecking-ballre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z
categorysteem
json_metadata""
created2018-02-15 14:32:30
last_update2018-02-15 14:32:30
depth3
children0
last_payout2018-02-22 14:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation14,709,692,204,215
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,759,519
net_rshares-230,981,603,275
author_curate_reward""
vote details (1)
@nogalert ·
Flag the post above by one of noganoo's shill accounts.  @noganoo is an incestuous scumbag who had sex with his cousin!  Flag that piece of worthless shit, or, give him a call at (715) 421-0375 and say Hello!
👍  , , , , , , , , , , , ,
👎  
properties (23)
authornogalert
permlinknogalert-re-wrecking-ballre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z
categorysteem
json_metadata""
created2018-02-15 14:50:00
last_update2018-02-15 14:50:00
depth3
children0
last_payout2018-02-22 14:50:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation1,289,081,567,579
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,763,346
net_rshares-238,455,751,674
author_curate_reward""
vote details (14)
@nicholas83 ·
Thanks for this. I will have to check it out.
properties (22)
authornicholas83
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t223334436z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:33:33
last_update2018-02-15 22:33:33
depth1
children0
last_payout2018-02-22 22:33:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation3,100,178,185,327
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,851,029
net_rshares0
@nikethemutt ·
$1.46
This is great news.   Keep up the great work.
👍  
properties (23)
authornikethemutt
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t192722702z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 19:27:21
last_update2018-02-15 19:27:21
depth1
children0
last_payout2018-02-22 19:27:21
cashout_time1969-12-31 23:59:59
total_payout_value1.096 HBD
curator_payout_value0.365 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,408,116,897,263
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,818,466
net_rshares228,592,141,758
author_curate_reward""
vote details (1)
@nitego ·
Testing.
properties (22)
authornitego
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t074654623z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 07:46:54
last_update2018-02-16 07:46:54
depth1
children0
last_payout2018-02-23 07:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation1,111,539,510,872
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,942,481
net_rshares0
@nizamasfarul ·
Amazing!
👍  
properties (23)
authornizamasfarul
permlinkre-steemitdev-2018216t10180573z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 03:18:03
last_update2018-02-16 03:18:03
depth1
children0
last_payout2018-02-23 03:18:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation9,068,412,856
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,896,042
net_rshares546,880,324
author_curate_reward""
vote details (1)
@nodsaibot ·
This article says "Payout declined",  wth is that?
properties (22)
authornodsaibot
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t172954056z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 17:31:33
last_update2018-02-15 17:31:33
depth1
children1
last_payout2018-02-22 17:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation475,951,454
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,796,453
net_rshares0
@scorer ·
$1.92
Author is not going to receive any rewards. Only voters will.
👍  
properties (23)
authorscorer
permlinkre-nodsaibot-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t192129105z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 19:21:30
last_update2018-02-15 19:21:30
depth2
children0
last_payout2018-02-22 19:21:30
cashout_time1969-12-31 23:59:59
total_payout_value1.443 HBD
curator_payout_value0.480 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation5,082,149,757,589
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,817,303
net_rshares300,291,954,063
author_curate_reward""
vote details (1)
@nova-nazirah ·
Woow... Very good post, really helpful and your posts become additional knowledge for me..  Good work @steemitdev
properties (22)
authornova-nazirah
permlinkre-steemitdev-2018215t12037754z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 05:00:39
last_update2018-02-15 05:00:39
depth1
children0
last_payout2018-02-22 05:00:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation68,956,660,405
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,650,801
net_rshares0
@nyamukkurus ·
wow, what this it
👍  
properties (23)
authornyamukkurus
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t072340571z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 07:23:42
last_update2018-02-15 07:23:42
depth1
children0
last_payout2018-02-22 07:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation489,533,883
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,677,366
net_rshares362,523,348
author_curate_reward""
vote details (1)
@obaidb2 ·
It is really awesome that someone is delegating money to the reward pool...cool man....thabks for helping steemit community.....hats off for this..
properties (22)
authorobaidb2
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t041819067z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:18:21
last_update2018-02-15 04:18:21
depth1
children0
last_payout2018-02-22 04:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation4,095,618,448,032
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,643,908
net_rshares0
@odi7444 ·
select me Mrs

i like that
👍  
properties (23)
authorodi7444
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t043631252z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 04:36:27
last_update2018-02-16 04:36:27
depth1
children0
last_payout2018-02-23 04:36:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation9,926,597,923
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,910,263
net_rshares76,806,259
author_curate_reward""
vote details (1)
@olgaparica ·
excellent
properties (22)
authorolgaparica
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231614671z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:16:15
last_update2018-02-14 23:16:15
depth1
children0
last_payout2018-02-21 23:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation608,260,600,775
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,513
net_rshares0
@olivia7 ·
Good work,good post.
properties (22)
authorolivia7
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t095744078z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 09:57:54
last_update2018-02-18 09:57:54
depth1
children0
last_payout2018-02-25 09:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation21,444,641,325
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,474,657
net_rshares0
@olsm ·
$2.58
It is great to see this amazing progress. Improving scalability is always the way to go! :) Lets scale it to the moon. I am really excited. And I hope that in the future maybe I will do some development on Steem. :D What a bright future we have in the cryptocurrency world.
👍  
properties (23)
authorolsm
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t211713673z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 21:17:15
last_update2018-02-16 21:17:15
depth1
children0
last_payout2018-02-23 21:17:15
cashout_time1969-12-31 23:59:59
total_payout_value2.436 HBD
curator_payout_value0.140 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation3,801,287,660,890
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,095,726
net_rshares438,767,296,331
author_curate_reward""
vote details (1)
@outtheshellvlog ·
$0.41
I actually understood this quite well oddly enough, sounds very similar to having a server cluster for a website backend, cloud computing if you will.  A cluster for SQL, cluster for PHP, cluster for cache, you get the picture.  Instead of it all being on a singular dedicated server, you spread it out across multiple servers and allow multiple servers handle the requests from a singular app or module and scale as needed.

Not bad.
👍  
properties (23)
authorouttheshellvlog
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231856790z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:18:51
last_update2018-02-14 23:18:51
depth1
children1
last_payout2018-02-21 23:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.308 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation11,385,462,196,990
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,593,887
net_rshares60,238,073,420
author_curate_reward""
vote details (1)
@dcwordofmouth ·
nice!
properties (22)
authordcwordofmouth
permlinkre-outtheshellvlog-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012535447z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:25:33
last_update2018-02-15 01:25:33
depth2
children0
last_payout2018-02-22 01:25:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation122,022,769,008
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,613,373
net_rshares0
@paasz ·
$0.64
Let us make our future now, and let us make our dreams tomorrow's reality.   - Malala Yousafzai.  

 Steem future looks bright.
👍  , , , , ,
properties (23)
authorpaasz
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t174315239z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 17:43:15
last_update2018-02-15 17:43:15
depth1
children0
last_payout2018-02-22 17:43:15
cashout_time1969-12-31 23:59:59
total_payout_value0.496 HBD
curator_payout_value0.143 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation4,120,187,499,905
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,798,783
net_rshares98,224,469,201
author_curate_reward""
vote details (6)
@pals ·
The future of steemit is bright! Congratulations to the dev team.
properties (22)
authorpals
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t133338610z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 13:33:39
last_update2018-02-16 13:33:39
depth1
children0
last_payout2018-02-23 13:33:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation2,971,446,592
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,006,062
net_rshares0
@pandorasbox ·
I'm trying to wrap my head around this. Could you please explain what a  'non-consensus blockchain' is? 

Isn't a blockchain without consensus basically a database? 
Which could actually be a good feature to have, if true. But just trying to understand what it means.
properties (22)
authorpandorasbox
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t014743717z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 01:47:42
last_update2018-02-16 01:47:42
depth1
children0
last_payout2018-02-23 01:47:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation6,724,880,351,404
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,881,492
net_rshares0
@pinay · (edited)
$8.85
I am a regular user, I tried posting from <a href="https://steemitstage.com/steemitstage/@pinay/testing-steemitstage-com-from-iphone-safari-9">steemitSTAGE.com</a> on iOS 9 (I cannot afford to update, LOL) it works fine but am lost in "Vote for Witnesses" page (^_^). I logged in using my generated password. Will try from Chrome on android too.

https://res.cloudinary.com/hpiynhbhq/image/upload/v1518660812/jymagmu5gi0fidh9fnyo.png
👍  , , , , , , , , , , , , ,
properties (23)
authorpinay
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t022823407z
categorysteem
json_metadata{"tags":["steem"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1518660812/jymagmu5gi0fidh9fnyo.png"],"links":["https://steemitstage.com/steemitstage/@pinay/testing-steemitstage-com-from-iphone-safari-9"],"app":"steemit/0.1"}
created2018-02-15 02:28:24
last_update2018-02-15 11:35:45
depth1
children15
last_payout2018-02-22 02:28:24
cashout_time1969-12-31 23:59:59
total_payout_value6.654 HBD
curator_payout_value2.192 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length433
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,624,006
net_rshares1,299,598,656,739
author_curate_reward""
vote details (14)
@artgirl ·
So you're not using proxy voter anymore? Haha.
👍  ,
properties (23)
authorartgirl
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122102140z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:21:03
last_update2018-02-15 12:21:03
depth2
children1
last_payout2018-02-22 12:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation78,042,602,740,403
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,732,876
net_rshares1,988,107,194
author_curate_reward""
vote details (2)
@pinay ·
What you see is what you see. LOL
👍  
properties (23)
authorpinay
permlinkre-artgirl-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t123557007z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:36:00
last_update2018-02-15 12:36:00
depth3
children0
last_payout2018-02-22 12:36:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,735,798
net_rshares132,107,906
author_curate_reward""
vote details (1)
@fangcan888 ·
princess
properties (22)
authorfangcan888
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084613595z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 08:46:15
last_update2018-02-15 08:46:15
depth2
children0
last_payout2018-02-22 08:46:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation26,301,418,841
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,693,088
net_rshares0
@haidar786 ·
you are genius Mam <3
👍  
properties (23)
authorhaidar786
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t190808408z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 19:08:12
last_update2018-02-15 19:08:12
depth2
children0
last_payout2018-02-22 19:08:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation-7,259,812,233
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,814,859
net_rshares1,825,271,384
author_curate_reward""
vote details (1)
@justinw ·
$0.02
Thanks - it looks like you spotted a bug, actually.
👍  , , ,
properties (23)
authorjustinw
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t030450888z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 03:04:51
last_update2018-02-15 03:04:51
depth2
children6
last_payout2018-02-22 03:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation15,502,058,309,908
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,630,578
net_rshares3,249,272,821
author_curate_reward""
vote details (4)
@neganator ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.   Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.   Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.   Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.   Below are just a few of the terrible insults they have spoken against this Christian man.   Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.   Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."   Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.   Not a word was said in one year and now he is resorting to further action.   The abuse will stop.   If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.   There is a substantial reward and you can remain anonymous.   Noganoo is unable to file a restraining order against these 2 until he finds their identity.   BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.   Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.   Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.   You can see that these people and their friends are the only people who have ever attacked Noganoo.   They are trying to cover up their theft.   If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.   https://steemd.com/@sweet-banana?page=17     Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."   Fact is they stole millions of dollars.   This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."   Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)

![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,   Pfunk at the time had no idea Noganoo wrote this!   Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.   Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.   Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.   Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.   He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  ,
properties (23)
authorneganator
permlinkre-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t104129900z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 10:41:30
last_update2018-02-15 10:41:30
depth3
children0
last_payout2018-02-22 10:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,123
author_reputation-833,037,561,132
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,714,129
net_rshares-166,826,097,174
author_curate_reward""
vote details (2)
@pinay ·
$2.32
You're welcome and thanks a lot too!
👍  ,
properties (23)
authorpinay
permlinkre-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033544057z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 03:35:45
last_update2018-02-15 03:35:45
depth3
children1
last_payout2018-02-22 03:35:45
cashout_time1969-12-31 23:59:59
total_payout_value1.746 HBD
curator_payout_value0.574 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,636,094
net_rshares341,075,354,043
author_curate_reward""
vote details (2)
@pinay ·
Just tried it from chrome on android using my posting key and works just the same. 👍
👍  
properties (23)
authorpinay
permlinkre-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t060804092z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 06:08:06
last_update2018-02-15 06:08:06
depth3
children0
last_payout2018-02-22 06:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,663,219
net_rshares580,667,408
author_curate_reward""
vote details (1)
@pinay ·
Hi @justinw! I always forgot this. I hope the preview when creating a post at steemit/steemitstage can be fixed too (^_^)
![image.png](https://steemitimages.com/DQmSeKcDhtenwxMLazDB3zvGmuFTGio6gEi64TaQ3MDFkwD/image.png)
properties (22)
authorpinay
permlinkre-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180316t053901872z
categorysteem
json_metadata{"tags":["steem"],"users":["justinw"],"image":["https://steemitimages.com/DQmSeKcDhtenwxMLazDB3zvGmuFTGio6gEi64TaQ3MDFkwD/image.png"],"app":"steemit/0.1"}
created2018-03-16 05:39:03
last_update2018-03-16 05:39:03
depth3
children0
last_payout2018-03-23 05:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,731,840
net_rshares0
@pinay ·
The PREVIEW is fixed. Thank You! ❤️
properties (22)
authorpinay
permlinkre-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180504t091617113z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-04 09:16:21
last_update2018-05-04 09:16:21
depth3
children0
last_payout2018-05-11 09:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,802,368
net_rshares0
@napaman ·
Hi. Im new to steemit. What does "Votes for Witness" mean?
👍  ,
properties (23)
authornapaman
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t110123573z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 11:01:24
last_update2018-02-15 11:01:24
depth2
children2
last_payout2018-02-22 11:01:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation157,430,891
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,717,838
net_rshares687,571,670
author_curate_reward""
vote details (2)
@pinay · (edited)
$0.54
Click MENU and you can find it there. Just click the arrow up beside their names i.e. blocktrades, steempty, etc. or if you want to vote for bue, zappl, etc. who are not on the top 50 just type bue then zappl, etc.  in the box provided and click VOTE. You can view the list of 100 Witnesses here: https://steemd.com/witnesses

https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694032/r6oari7nei6j1bb85afp.png
<br>
https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694056/pxfiburh5edyqad63ogd.png



Or if you want me (or someone) to vote on your behalf just type pinay and click SET PROXY :)

READ THIS: https://steemit.com/steem/@steemitguide/steemitguide-what-is-a-exactly-is-a-steem-witness-and-why-every-user-should-vote
👍  
properties (23)
authorpinay
permlinkre-napaman-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t112335042z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694032/r6oari7nei6j1bb85afp.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694056/pxfiburh5edyqad63ogd.png"],"links":["https://steemd.com/witnesses","https://steemit.com/steem/@steemitguide/steemitguide-what-is-a-exactly-is-a-steem-witness-and-why-every-user-should-vote"]}
created2018-02-15 11:23:36
last_update2018-02-15 11:59:00
depth3
children1
last_payout2018-02-22 11:23:36
cashout_time1969-12-31 23:59:59
total_payout_value0.406 HBD
curator_payout_value0.132 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length734
author_reputation2,774,743,716,203
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,722,139
net_rshares79,238,225,496
author_curate_reward""
vote details (1)
@sddqm ·
properties (23)
authorsddqm
permlinkre-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t095523864z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 09:50:00
last_update2018-02-15 09:50:00
depth2
children0
last_payout2018-02-22 09:50:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation1,464,073,119
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,704,836
net_rshares2,583,530,297
author_curate_reward""
vote details (3)
@pittsburghhodlr ·
This platform is growing so much every single day, the Steem community is growing and the people are great here, I love it. Thanks for the advancements. I've been waiting since facebook's earliest days for this exact platform, couldn't be happier on here. :)
properties (22)
authorpittsburghhodlr
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041144271z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 04:11:45
last_update2018-02-17 04:11:45
depth1
children0
last_payout2018-02-24 04:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation23,602,362,212,189
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,162,059
net_rshares0
@programmingvalue ·
$0.15
Can't wait to see this be released!
👍  
properties (23)
authorprogrammingvalue
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180601t093238445z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-06-01 09:32:39
last_update2018-06-01 09:32:39
depth1
children0
last_payout2018-06-08 09:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.114 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation2,087,259,996,059
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,731,161
net_rshares40,587,174,084
author_curate_reward""
vote details (1)
@progressivechef ·
I will not lie, for an average tech person like me, this is quite difficult to clearly understand, but i am sure must be something great for the further growth of Steemit! I will check out steemitstage.com and start learning from there!
Thanks so much for informing the whole community like this!
properties (22)
authorprogressivechef
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225647872z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 22:56:51
last_update2018-02-14 22:56:51
depth1
children0
last_payout2018-02-21 22:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length296
author_reputation192,478,961,270,930
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,590,342
net_rshares0
@purnawarman ·
Very good info .. hopefully useful for us all. What else for me who just joined in steemit.pada friends all please help ya.thanks all
properties (22)
authorpurnawarman
permlinkre-steemitdev-2018217t134248557z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-17 06:43:06
last_update2018-02-17 06:43:06
depth1
children0
last_payout2018-02-24 06:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation2,185,251,735
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,187,545
net_rshares0
@rainbowtube ·
big news!
properties (22)
authorrainbowtube
permlinkre-steemitdev-2018216t204532656z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 11:45:33
last_update2018-02-16 11:45:33
depth1
children0
last_payout2018-02-23 11:45:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation11,087,613,104
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,985,829
net_rshares0
@rajamulkan2121 ·
nice picture,please vote me
properties (22)
authorrajamulkan2121
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t142913159z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 14:29:21
last_update2018-02-16 14:29:21
depth1
children0
last_payout2018-02-23 14:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation49,551,863,043
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,017,573
net_rshares0
@reddust ·
$5.34
I used my posting key

>If you’re just a regular steemit.com user, you can help too. Head on over to steemitstage.com and use the site like you normally would.

Your testing module felt the same as the steemit I know and love.
👍  , , , , , , ,
properties (23)
authorreddust
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t233215498z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:32:15
last_update2018-02-14 23:32:15
depth1
children12
last_payout2018-02-21 23:32:15
cashout_time1969-12-31 23:59:59
total_payout_value4.022 HBD
curator_payout_value1.320 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation167,904,626,237,187
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,595,871
net_rshares780,717,200,038
author_curate_reward""
vote details (8)
@akiho ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.  Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.  Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.  Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.  Below are just a few of the terrible insults they have spoken against this Christian man.  Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.  Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."  Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.  Not a word was said in one year and now he is resorting to further action.  The abuse will stop.  If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.  There is a substantial reward and you can remain anonymous.  Noganoo is unable to file a restraining order against these 2 until he finds their identity.  BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.  Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.  Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.  You can see that these people and their friends are the only people who have ever attacked Noganoo.  They are trying to cover up their theft.  If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.  https://steemd.com/@sweet-banana?page=17   Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."  Fact is they stole millions of dollars.  This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."  Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)


![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,  Pfunk at the time had no idea Noganoo wrote this!  Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.  Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.  Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.  Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.  He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👍  
👎  , , ,
properties (23)
authorakiho
permlinkre-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t030725764z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 03:07:21
last_update2018-02-15 03:07:21
depth2
children1
last_payout2018-02-22 03:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,081
author_reputation-1,012,310,812,779
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,631,025
net_rshares-10,386,148,970,917
author_curate_reward""
vote details (5)
@goal300 ·
This war happened here on steemit,  and probably that's the reason why steemitstage  was created with the ability to scale in other to control and manage this kind of stuff, right?
properties (22)
authorgoal300
permlinkre-akiho-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t045617621z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:56:24
last_update2018-02-15 04:56:24
depth3
children0
last_payout2018-02-22 04:56:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation1,484,165,204,915
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,650,098
net_rshares0
@express ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.  Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.  Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.  Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.  Below are just a few of the terrible insults they have spoken against this Christian man.  Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.  Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."  Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.  Not a word was said in one year and now he is resorting to further action.  The abuse will stop.  If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.  There is a substantial reward and you can remain anonymous.  Noganoo is unable to file a restraining order against these 2 until he finds their identity.  BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.  Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.  Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.  You can see that these people and their friends are the only people who have ever attacked Noganoo.  They are trying to cover up their theft.  If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.  https://steemd.com/@sweet-banana?page=17   Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."  Fact is they stole millions of dollars.  This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."  Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)


![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,  Pfunk at the time had no idea Noganoo wrote this!  Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.  Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.  Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.  Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.  He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  , , ,
properties (23)
authorexpress
permlinkre-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t053027151z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 05:30:27
last_update2018-02-15 05:30:27
depth2
children0
last_payout2018-02-22 05:30:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,095
author_reputation-712,847,287,787
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,656,214
net_rshares-10,202,460,861,875
author_curate_reward""
vote details (4)
@goal300 · (edited)
$0.11
Does it mean someday we'll all move to steemitstage?
👍  , , ,
properties (23)
authorgoal300
permlinkre-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004959917z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 00:50:15
last_update2018-02-15 04:37:39
depth2
children5
last_payout2018-02-22 00:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.092 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation1,484,165,204,915
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,607,889
net_rshares16,133,200,807
author_curate_reward""
vote details (4)
@express ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.  Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.  Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.  Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.  Below are just a few of the terrible insults they have spoken against this Christian man.  Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.  Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."  Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.  Not a word was said in one year and now he is resorting to further action.  The abuse will stop.  If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.  There is a substantial reward and you can remain anonymous.  Noganoo is unable to file a restraining order against these 2 until he finds their identity.  BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.  Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.  Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.  You can see that these people and their friends are the only people who have ever attacked Noganoo.  They are trying to cover up their theft.  If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.  https://steemd.com/@sweet-banana?page=17   Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."  Fact is they stole millions of dollars.  This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."  Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)


![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,  Pfunk at the time had no idea Noganoo wrote this!  Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.  Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.  Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.  Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.  He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  ,
properties (23)
authorexpress
permlinkre-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t053111237z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 05:31:09
last_update2018-02-15 05:31:09
depth3
children0
last_payout2018-02-22 05:31:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,095
author_reputation-712,847,287,787
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,656,349
net_rshares-96,471,595,902
author_curate_reward""
vote details (2)
@mejustandrew ·
$0.18
### No, we won't move to Stage, Stage will come to us!

Stage is just on of the phases that a product goes through from development to production:

Dev -> Test -> Stage -> Prod.

If everything goes well with testing of Steemitstage, Steemit will be replaced by the one on stage testing phase, but we **will not** move to another page, we will use and go to https://steemit.com as we currently do.
👍  ,
properties (23)
authormejustandrew
permlinkre-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t103711160z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com"],"app":"steemit/0.1"}
created2018-02-15 10:37:12
last_update2018-02-15 10:37:12
depth3
children0
last_payout2018-02-22 10:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.168 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length396
author_reputation6,245,491,946,485
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,713,416
net_rshares26,243,218,688
author_curate_reward""
vote details (2)
@orbitalqq ·
No, I believe that is only a test environment.
👍  
properties (23)
authororbitalqq
permlinkre-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t020920185z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 02:09:18
last_update2018-02-15 02:09:18
depth3
children1
last_payout2018-02-22 02:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation12,214,914,624
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,620,606
net_rshares580,654,696
author_curate_reward""
vote details (1)
@reddust ·
I am pretty sure that is the idea @goal300, I am as thick as a brick when it comes to technical articles ....hehehe
👍  
properties (23)
authorreddust
permlinkre-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t014033817z
categorysteem
json_metadata{"tags":["steem"],"users":["goal300"],"app":"steemit/0.1"}
created2018-02-15 01:40:33
last_update2018-02-15 01:40:33
depth3
children0
last_payout2018-02-22 01:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation167,904,626,237,187
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,615,720
net_rshares571,437,955
author_curate_reward""
vote details (1)
@scrollsmero ·
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3>

<h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old.  Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit.  Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today.  Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit.  Below are just a few of the terrible insults they have spoken against this Christian man.  Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him.  Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening."  Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop.  Not a word was said in one year and now he is resorting to further action.  The abuse will stop.  If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in.  There is a substantial reward and you can remain anonymous.  Noganoo is unable to file a restraining order against these 2 until he finds their identity.  BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3>

<h3>First of all let's go back to before this all started.  Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting.  Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free.  You can see that these people and their friends are the only people who have ever attacked Noganoo.  They are trying to cover up their theft.  If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch.  https://steemd.com/@sweet-banana?page=17   Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild."  Fact is they stole millions of dollars.  This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3>

![2017-03-10 08_06_14-(•) Steemit Chat (1).png](https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png)

<h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>
![2018-02-01 13_40_22-.png](https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png)

<h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>
![pfunk.png](https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png)

<h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal."  Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>
![2018-02-01 13_30_07-.png](https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png)

<h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>
![2017-09-07 06_51_29-.png](https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png)

<h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3>
![2017-03-17 18_19_18-(•) Steemit Chat.png](https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png)

<h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>
![2017-05-17 06_46_18-Noganoo - Hero_ Victim_ Menace_ And what about you_ — Steemit.png](https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png)


![2017-06-21 16_57_34-2017-06-21 16_47_08-Replies to nOgAnOo (@noganoo) — Steemit - Windows Photo View.png](https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png)

<h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity,  Pfunk at the time had no idea Noganoo wrote this!  Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support.  Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles.  Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year.  Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit.  He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>
![2018-02-14 03_25_39-.png](https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png)

<h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
👎  , ,
properties (23)
authorscrollsmero
permlinkre-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t021914207z
categorysteem
json_metadata{"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"}
created2018-02-15 02:19:12
last_update2018-02-15 02:19:12
depth2
children2
last_payout2018-02-22 02:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,081
author_reputation-797,639,863,401
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,622,310
net_rshares-10,080,617,512,466
author_curate_reward""
vote details (3)
@reddust · (edited)
@scrollsmero, OMG...why did you share this with me? I'm not getting involved int he flag wars.

 Most of us who have been on steemit for over a year know about the big accounts and investors short term profit relationships. This is a real world problem and if we can solve it we can solve the ills of our world too :P

I am doing my little part to play fair but I will not get involved in the flag wars.
properties (22)
authorreddust
permlinkre-scrollsmero-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t022916430z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","users":["scrollsmero"]}
created2018-02-15 02:29:15
last_update2018-02-15 02:30:45
depth3
children1
last_payout2018-02-22 02:29:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length403
author_reputation167,904,626,237,187
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,624,180
net_rshares0
@rickthor ·
Logged in and the site looks good so far :)
👍  ,
properties (23)
authorrickthor
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t002935470z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 00:29:33
last_update2018-02-18 00:29:33
depth1
children0
last_payout2018-02-25 00:29:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation53,074,296,199
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,382,388
net_rshares1,092,600,049
author_curate_reward""
vote details (2)
@riskasuandi ·
Your writing is very good, and very beneficial. And I am also motivated for your writing. And I say thousands of thanks for writing you wrote, semonga you and I we will be successful together in this steemit. So that can add more income .. beloved friendship may we healthy always yes
👎  
properties (23)
authorriskasuandi
permlinkre-steemitdev-2018215t91157521z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 02:12:00
last_update2018-02-15 02:12:00
depth1
children0
last_payout2018-02-22 02:12:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length284
author_reputation91,980,449,932
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,621,097
net_rshares-17,231,014,070
author_curate_reward""
vote details (1)
@riziqasshiddiq ·
Hello @steemitdev I really like your posts, I hope you keep posting other interesting things.

greetings from me @riziqasshiddiq do not forget to stop in my posting
👍  
properties (23)
authorriziqasshiddiq
permlinkre-steemitdev-2018216t1386692z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 06:08:09
last_update2018-02-16 06:08:09
depth1
children0
last_payout2018-02-23 06:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation27,079,852,600
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,925,991
net_rshares52,327,100
author_curate_reward""
vote details (1)
@rogerek ·
good job
properties (22)
authorrogerek
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222813015z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:27:54
last_update2018-02-15 22:27:54
depth1
children0
last_payout2018-02-22 22:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation3,909,047,508,113
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,850,014
net_rshares0
@roykie17 ·
thats good news !
properties (22)
authorroykie17
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230301722z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:03:06
last_update2018-02-14 23:03:06
depth1
children0
last_payout2018-02-21 23:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation4,904,742,572,921
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,591,405
net_rshares0
@russel59 ·
Really (AppBase) good and innovative step to growing steem world day by day.💪💪
Go ahead
Resteemit, Upvoted done..
properties (22)
authorrussel59
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t081108233z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-18 08:11:12
last_update2018-02-18 08:11:12
depth1
children0
last_payout2018-02-25 08:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation19,963,079,525
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,456,583
net_rshares0
@sagewords ·
This is a great update! Eager to learn more.
properties (22)
authorsagewords
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t035016595z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 03:50:18
last_update2018-02-15 03:50:18
depth1
children0
last_payout2018-02-22 03:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation3,888,612,507,699
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,638,613
net_rshares0
@saifulrahmad ·
Very good if any app like steem. I believe with this posting, will many who will use the application. Very good post @steemitdev. Good Job
👍  
properties (23)
authorsaifulrahmad
permlinkre-steemitdev-2018215t1241466z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 05:04:21
last_update2018-02-15 05:04:21
depth1
children0
last_payout2018-02-22 05:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation1,795,905,708,572
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,651,428
net_rshares353,306,653
author_curate_reward""
vote details (1)
@salda ·
I like post...
👎  
properties (23)
authorsalda
permlinkre-steemitdev-2018215t81057356z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 01:07:27
last_update2018-02-15 01:07:27
depth1
children0
last_payout2018-02-22 01:07:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,002,379,332
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,610,512
net_rshares-17,231,014,070
author_curate_reward""
vote details (1)
@sanjeevm ·
$2.19
Writing this from steemitstage.com :) , everything seems to be working fine for me in Chrome (Version 64.0.3282.167). 

And this change certainly indicates the readiness for the next big thing - SMT.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorsanjeevm
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t102702150z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 10:26:57
last_update2018-02-16 10:26:57
depth1
children1
last_payout2018-02-23 10:26:57
cashout_time1969-12-31 23:59:59
total_payout_value1.752 HBD
curator_payout_value0.441 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation686,209,074,342,127
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,971,565
net_rshares361,355,786,368
author_curate_reward""
vote details (45)
@kos ·
https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s
👍  
👎  
properties (23)
authorkos
permlinkre-sanjeevm-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t195554661z
categorysteem
json_metadata{"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"}
created2018-02-16 19:55:54
last_update2018-02-16 19:55:54
depth2
children0
last_payout2018-02-23 19:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation-59,914,306,026
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,082,120
net_rshares-1,104,836,126,708
author_curate_reward""
vote details (2)
@sarine ·
well...well... well...
very good information.. 👍
good job
please vote and folliw back @sarine
properties (22)
authorsarine
permlinkre-steemitdev-2018216t154429737z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 08:44:33
last_update2018-02-16 08:44:33
depth1
children0
last_payout2018-02-23 08:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation3,101,143,891
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,953,243
net_rshares0
@satoshischool ·
$17.21
https://steemit.com/bitcoin/@satoshischool/technical-post-3-last-day-in-otres
👍  ,
properties (23)
authorsatoshischool
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180220t022428009z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/bitcoin/@satoshischool/technical-post-3-last-day-in-otres"],"app":"steemit/0.1"}
created2018-02-20 02:24:30
last_update2018-02-20 02:24:30
depth1
children0
last_payout2018-02-27 02:24:30
cashout_time1969-12-31 23:59:59
total_payout_value16.964 HBD
curator_payout_value0.242 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation7,601,967,482,623
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,941,659
net_rshares3,085,099,644,467
author_curate_reward""
vote details (2)
@sebek4451 ·
hello i want 100fallows Pleas help me!
properties (22)
authorsebek4451
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t012317457z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 01:23:15
last_update2018-02-17 01:23:15
depth1
children0
last_payout2018-02-24 01:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation324,187,762
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,133,908
net_rshares0
@selmaci ·
$0.39
Thanks for your post! I was searching on such info.
👍  
properties (23)
authorselmaci
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133147085z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:31:48
last_update2018-02-15 13:31:48
depth1
children1
last_payout2018-02-22 13:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.294 HBD
curator_payout_value0.096 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation482,858,819,815
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,746,979
net_rshares57,256,277,677
author_curate_reward""
vote details (1)
@edensgarden ·
re-selmaci-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133147085z-20180215t142805783z
You got a 6.52% upvote from @edensgarden courtesy of @selmaci!
properties (22)
authoredensgarden
permlinkre-selmaci-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133147085z-20180215t142805783z
categorysteem
json_metadata{"app":"postpromoter/1.8.6"}
created2018-02-15 14:28:06
last_update2018-02-15 14:28:06
depth2
children0
last_payout2018-02-22 14:28:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation-100,797,867,719
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,758,531
net_rshares0
@shredz7 ·
If you are going to be ever forking the blockchain, could you make it so that users can change their name for a small fee (a good idea could be 1 SBD). Not only will this create some deflation, but will allow users who are unhappy with their username to change it without having to start fresh.

Note that this could be executed in a soft fork, and would not require any sort of hard changes.

It would be a nice addition, and I’ve seen a lot of people who are unhappy with their name and have a large enough following that they don’t want to create a new account from scratch.
@shredz7
properties (22)
authorshredz7
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180301t145053451z
categorysteem
json_metadata{"tags":["steem"],"users":["shredz7"],"app":"steemit/0.1"}
created2018-03-01 14:50:54
last_update2018-03-01 14:50:54
depth1
children0
last_payout2018-03-08 14:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length586
author_reputation7,922,356,058,897
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,400,205
net_rshares0
@siraspurjitu ·
Excellent article very informative, voted
properties (22)
authorsiraspurjitu
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t051309816z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 05:13:12
last_update2018-02-16 05:13:12
depth1
children0
last_payout2018-02-23 05:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation199,136,515,713
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,916,921
net_rshares0
@smokeasare165 ·
Congratulation on your success of developing the appbase...steemit is moving forward...#team Steemit
properties (22)
authorsmokeasare165
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134304673z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:38:33
last_update2018-02-15 13:38:33
depth1
children0
last_payout2018-02-22 13:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation514,137,420,082
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,748,413
net_rshares0
@statsmonkey ·
comment
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @ned valued at 526.13 SBD, based on the pending payout at the time the data was extracted.

If you do not wish to receive these messages in future, reply with the word "stop".
properties (22)
authorstatsmonkey
permlinkre-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081257
categorysteem
json_metadata""
created2018-02-15 08:13:00
last_update2018-02-15 08:13:00
depth1
children0
last_payout2018-02-22 08:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation503,392,294,628
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,686,556
net_rshares0
@statsmonkey ·
comment
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @thejohalfiles valued at 299.50 SBD, based on the pending payout at the time the data was extracted.

If you do not wish to receive these messages in future, reply with the word "stop".
properties (22)
authorstatsmonkey
permlinkre-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081433
categorysteem
json_metadata""
created2018-02-15 08:14:36
last_update2018-02-15 08:14:36
depth1
children0
last_payout2018-02-22 08:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length312
author_reputation503,392,294,628
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,686,852
net_rshares0
@steem-bd ·
we support your this step.
properties (22)
authorsteem-bd
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t062229364z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 06:22:33
last_update2018-02-16 06:22:33
depth1
children0
last_payout2018-02-23 06:22:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation623,130,632,693
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,928,138
net_rshares0
@steemerxo ·
Here is some info about Genesis Vision (GVT):- https://steemit.com/genesisvision/@steemerxo/gvt-securing-a-good-future-ahead
properties (22)
authorsteemerxo
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t171257367z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/genesisvision/@steemerxo/gvt-securing-a-good-future-ahead"],"app":"steemit/0.1"}
created2018-02-16 17:13:03
last_update2018-02-16 17:13:03
depth1
children0
last_payout2018-02-23 17:13:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation-9,717,032,188
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,050,849
net_rshares0
@steemitv ·
hallo, introduce my name ayudia, i am a new comer of fi steemit, please cooperate him

thank you
properties (22)
authorsteemitv
permlinkre-steemitdev-2018216t0111650z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 17:01:12
last_update2018-02-15 17:01:12
depth1
children0
last_payout2018-02-22 17:01:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation11,417,772,014
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,790,566
net_rshares0
@stockhausen ·
$0.24
Great news for us all !
👍  
properties (23)
authorstockhausen
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125003001z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 12:50:03
last_update2018-02-15 12:50:03
depth1
children0
last_payout2018-02-22 12:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.228 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation396,218,677,734
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,738,510
net_rshares35,923,082,203
author_curate_reward""
vote details (1)
@suf1an ·
$1.32
This is really great. 
I love the way steem blockchain is improving day by day.
Definitely, it is going to help a lot in scalability. 
Anyone has idea when SMT's are going live?
👍  ,
properties (23)
authorsuf1an
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t094307285z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 09:43:12
last_update2018-02-15 09:43:12
depth1
children0
last_payout2018-02-22 09:43:12
cashout_time1969-12-31 23:59:59
total_payout_value1.240 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation3,979,608,270,988
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,703,575
net_rshares194,766,415,684
author_curate_reward""
vote details (2)
@telos ·
I've been toying around with an idea for an app lately, is there a public node running the new api I can connect to?
👍  
properties (23)
authortelos
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180221t041037686z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-21 04:10:36
last_update2018-02-21 04:10:36
depth1
children0
last_payout2018-02-28 04:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation3,975,075,719,043
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,242,620
net_rshares1,007,546,834
author_curate_reward""
vote details (1)
@thegreatlife ·
Hello, I'm new to Steemit and I'm not sure what this is all about. I logged on to that site and it just looked like Steemit....What exactly was I looking for that is different?
👍  
properties (23)
authorthegreatlife
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t043739636z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 04:37:39
last_update2018-02-15 04:37:39
depth1
children0
last_payout2018-02-22 04:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation7,853,866,687,704
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,647,119
net_rshares2,027,338,465
author_curate_reward""
vote details (1)
@thejohalfiles ·
$0.66
This is awesome @steemitdev. Great to see a strong dev team behind this blockchain. I cant wait to see what is possible when this is further tested and developed. Thank you for the hard work.
👍  , , ,
properties (23)
authorthejohalfiles
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t154435284z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-02-15 15:44:36
last_update2018-02-15 15:44:36
depth1
children1
last_payout2018-02-22 15:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.508 HBD
curator_payout_value0.148 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation10,452,104,581,740
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,774,774
net_rshares97,383,077,382
author_curate_reward""
vote details (4)
@caribbeanmon ·
I totally agree with @thejohalfiles  @steemitdev you guys are awesome.

The world we live in is filled with people with all  talk with no action. 

It's very encouraging when you see someone knuckle down and start taking massive action!

You guys will be the Pioneers that kids generations from today will be reading about in story books.

Please keep up the good work and your dedication 👍🏾💪🏾💪🏾
properties (22)
authorcaribbeanmon
permlinkre-thejohalfiles-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t165500124z
categorysteem
json_metadata{"tags":["steem"],"users":["thejohalfiles","steemitdev"],"app":"steemit/0.1"}
created2018-02-16 16:55:00
last_update2018-02-16 16:55:00
depth2
children0
last_payout2018-02-23 16:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length395
author_reputation3,534,775,609,940
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,047,095
net_rshares0
@tiagopaixao ·
$0.64
These seem like great news, but honestly where is the documentation for all of it? I have been struggling with proper up to date documentation for the "normal" steem blockchain and if that is any indication, it will take some time until people post useful tutorials and info, simply because they will need to learn by trial and error. I know this project is ooen source and I should just fix the docs myself but seriously, if you are serious aboit attracting developers, documentatiom shoild be the first priority...

Still, seems like great news.
👍  
properties (23)
authortiagopaixao
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232518288z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-14 23:25:24
last_update2018-02-14 23:25:24
depth1
children2
last_payout2018-02-21 23:25:24
cashout_time1969-12-31 23:59:59
total_payout_value0.486 HBD
curator_payout_value0.158 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length547
author_reputation30,669,084,740
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,594,850
net_rshares94,661,125,090
author_curate_reward""
vote details (1)
@timcliff ·
$1.49
Right now the “Developer Portal” which is linked from the main menu of steemit.com is the central place for documentation. It is a work in progress though.

You can also join the SteemDevs discord group where community developers go to chat: https://discord.gg/B29Bbng
👍  , ,
properties (23)
authortimcliff
permlinkre-tiagopaixao-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000934796z
categorysteem
json_metadata{"tags":["steem"],"links":["https://discord.gg/B29Bbng"],"app":"steemit/0.1"}
created2018-02-15 00:09:33
last_update2018-02-15 00:09:33
depth2
children1
last_payout2018-02-22 00:09:33
cashout_time1969-12-31 23:59:59
total_payout_value1.124 HBD
curator_payout_value0.365 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation272,954,445,077,789
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,601,599
net_rshares218,298,624,547
author_curate_reward""
vote details (3)
@tiagopaixao ·
$0.11
Yeah, the developer portal is a bit lacking in substance. It provides very basic examples to get you started, which is good, but as soon as you want to look at some of the more advanced functions, there is a lot of guesswork involved... 
And now it seems all those APIs just got replaced....

Thanks for the links though. The people in this community are its saving grace.
👍  
properties (23)
authortiagopaixao
permlinkre-timcliff-re-tiagopaixao-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t220139818z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 22:01:45
last_update2018-02-15 22:01:45
depth3
children0
last_payout2018-02-22 22:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length372
author_reputation30,669,084,740
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,845,768
net_rshares17,342,072,090
author_curate_reward""
vote details (1)
@titanik ·
I have methods of winning bitcoin @titanik
![images (8).jpeg](https://steemitimages.com/DQme9dGgooPqUsjnnM5LqqUxGzyLHufpfzmyhUvVdiMhwXB/images%20(8).jpeg)
properties (22)
authortitanik
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165838540z
categorysteem
json_metadata{"tags":["steem"],"users":["titanik"],"image":["https://steemitimages.com/DQme9dGgooPqUsjnnM5LqqUxGzyLHufpfzmyhUvVdiMhwXB/images%20(8).jpeg"],"app":"steemit/0.1"}
created2018-02-15 16:58:42
last_update2018-02-15 16:58:42
depth1
children0
last_payout2018-02-22 16:58:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation-16,032,137,583
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,790,055
net_rshares0
@trmnl-cmdr ·
Hi! I'm a career full stack web dev with a strong background in frontend tech like React/Redux, webpack, etc. I recently left my day job to spend more time trading crypto and I would love to donate a chunk of my new free time to this project anywhere I can jump in. Please let me know if you guys are interested in the help. Thanks for all the hard work!
👎  , , , , , , , , , , , , , ,
properties (23)
authortrmnl-cmdr
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180221t182217514z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-21 18:22:21
last_update2018-02-21 18:22:21
depth1
children0
last_payout2018-02-28 18:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length354
author_reputation6,405,954,523
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,406,526
net_rshares-91,911,926,828
author_curate_reward""
vote details (15)
@tvmasala ·
https://steemit.com/cryptocurrency/@tvmasala/when-to-buy-cryptocurrency-3-simple-signs
properties (22)
authortvmasala
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t083533581z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/cryptocurrency/@tvmasala/when-to-buy-cryptocurrency-3-simple-signs"],"app":"steemit/0.1"}
created2018-02-15 08:36:09
last_update2018-02-15 08:36:09
depth1
children0
last_payout2018-02-22 08:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation100,379,899
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,691,085
net_rshares0
@unal1453 ·
Blok zincirini geliştirmek için yapılmış bir yenilik gibi görünüyor . Steemit in sürekli olarak kendini yenilemesi uzun süre ayakta kalmasını sağlayacak.

It seems to be an innovation to improve the block chain. Steemit's constant self-renewal will help him to survive for long.
properties (22)
authorunal1453
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t211930492z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 21:19:36
last_update2018-02-15 21:19:36
depth1
children0
last_payout2018-02-22 21:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation57,962,212,137
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,838,490
net_rshares0
@veejay2312 ·
thanks for the info I appreciate it. [post for today](https://steemit.com/tilphilippines/@veejay2312/writing-about-a-writer-s-block-is-better-than-not-writing-at-all)
properties (22)
authorveejay2312
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004114546z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/tilphilippines/@veejay2312/writing-about-a-writer-s-block-is-better-than-not-writing-at-all"],"app":"steemit/0.1"}
created2018-02-15 00:41:15
last_update2018-02-15 00:41:15
depth1
children0
last_payout2018-02-22 00:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation918,539,057,314
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,606,525
net_rshares0
@veet ·
Recently I met the platform steemit and today I decided that with each such update, I will invest in platform tokens.
👍  
properties (23)
authorveet
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150230743z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 15:02:33
last_update2018-02-15 15:02:33
depth1
children0
last_payout2018-02-22 15:02:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation-3,878,647,881
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,766,167
net_rshares614,444,832
author_curate_reward""
vote details (1)
@vikisecrets ·
Does anybody know how big the Steem blockchain is at the moment?
properties (22)
authorvikisecrets
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t110401402z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 11:04:03
last_update2018-02-15 11:04:03
depth1
children0
last_payout2018-02-22 11:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation1,188,379,855,808,198
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,718,341
net_rshares0
@vor3ss88 ·
Good post and outstanding vote follow @ vor3ss88
properties (22)
authorvor3ss88
permlinkre-steemitdev-2018215t22121656z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 15:12:06
last_update2018-02-15 15:12:06
depth1
children0
last_payout2018-02-22 15:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation5,263,772,792
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,768,133
net_rshares0
@wahyuddin ·
please follow
properties (22)
authorwahyuddin
permlinkre-steemitdev-2018216t3319435z
categorysteem
json_metadata{"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-15 20:31:15
last_update2018-02-15 20:31:15
depth1
children0
last_payout2018-02-22 20:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,220,361,651
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,830,086
net_rshares0
@whatsup ·
testing from steemstage, and it is a great day for some good news.
properties (22)
authorwhatsup
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084937665z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 08:49:39
last_update2018-02-15 08:49:39
depth1
children0
last_payout2018-02-22 08:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation519,839,651,581,670
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,693,729
net_rshares0
@wolfhart ·
great information
properties (22)
authorwolfhart
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t072825603z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 07:28:24
last_update2018-02-16 07:28:24
depth1
children0
last_payout2018-02-23 07:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation17,410,482,134,249
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,939,142
net_rshares0
@worldofsport ·
$0.17
Sounds good
👍  ,
properties (23)
authorworldofsport
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t141343344z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 14:13:42
last_update2018-02-17 14:13:42
depth1
children0
last_payout2018-02-24 14:13:42
cashout_time1969-12-31 23:59:59
total_payout_value0.172 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation9,984,570,166,944
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,267,511
net_rshares29,675,893,288
author_curate_reward""
vote details (2)
@xerox-bru ·
$0.20
Good luck !
👍  
properties (23)
authorxerox-bru
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150543313z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.3.0"}
created2018-02-15 15:05:45
last_update2018-02-15 15:05:45
depth1
children1
last_payout2018-02-22 15:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.200 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation5,517,233,283,887
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,766,842
net_rshares39,000,122,751
author_curate_reward""
vote details (1)
@speedvoter ·
<p>This comment has received a 2.72 % upvote from @speedvoter thanks to: @xerox-bru.</p>
properties (22)
authorspeedvoter
permlinkre-xerox-bru-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150543313z-20180215t150914235z
categorysteem
json_metadata{"tags":["appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin"],"app":"drotto/0.0.3"}
created2018-02-15 15:09:15
last_update2018-02-15 15:09:15
depth2
children0
last_payout2018-02-22 15:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation900,449,763,381
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,767,559
net_rshares0
@xnx ·
can i get a follow
properties (22)
authorxnx
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t232046204z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 13:20:54
last_update2018-02-15 13:20:54
depth1
children0
last_payout2018-02-22 13:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation13,393,094
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,744,789
net_rshares0
@yadah04 ·
This is exciting. I will be posting my next blog using it. I have seen how similar it is to steemit.com and so yes, you succeeded in designing it as 'real' steemit.
properties (22)
authoryadah04
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t085922322z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 08:59:09
last_update2018-02-15 08:59:09
depth1
children0
last_payout2018-02-22 08:59:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation5,981,462,266,033
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,695,487
net_rshares0
@yesaye ·
What does this mean for a non-programmer layman user like myself?
Since it sounds like some kind of success, congrats!
properties (22)
authoryesaye
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t115736365z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 11:57:33
last_update2018-02-15 11:57:33
depth1
children0
last_payout2018-02-22 11:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation1,433,134,594,082
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,728,410
net_rshares0
@young-cs ·
HALLO BUDDY STEEMIANS !! (Senior who already succeeded in steemit).
   This is my post in an opportunity to introduce 
 ![image](https://img.esteem.ws/p0fl0sm8vh.jpg)
My name is young cs, old 22 years.
For now I am a student. I studied Telecommunication Engineering.
  And Hope I join this steemit is, to add relationships, experiences and spread benefits.
 I hope the steemian friend will direct and guide me in working in this steemit.
![image](https://img.esteem.ws/fq37my22tu.jpg)
>So many of my introductions, greetings to all steemians friends and wish us all to be successful.
 Thank you..!

<Follow me @young cs
👎  
properties (23)
authoryoung-cs
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t073301318z
categorysteem
json_metadata{"tags":["steem"],"users":["young"],"image":["https://img.esteem.ws/p0fl0sm8vh.jpg","https://img.esteem.ws/fq37my22tu.jpg"],"app":"steemit/0.1"}
created2018-02-15 07:33:12
last_update2018-02-15 07:33:12
depth1
children0
last_payout2018-02-22 07:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length619
author_reputation15,543,633,662
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,679,042
net_rshares-614,145,059
author_curate_reward""
vote details (1)
@youngjerv ·
$0.02
Thank you guys for your continued effort to make this platform stands out as the best, i resteemed this
👍  
properties (23)
authoryoungjerv
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t102937253z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-17 10:29:42
last_update2018-02-17 10:29:42
depth1
children0
last_payout2018-02-24 10:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation1,820,365,993,129
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,226,025
net_rshares3,641,161,719
author_curate_reward""
vote details (1)
@yura81 ·
Will this Appbase work without steem bandwidth?
properties (22)
authoryura81
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t002233210z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 00:22:48
last_update2018-02-16 00:22:48
depth1
children0
last_payout2018-02-23 00:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation298,771,669,778
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,867,909
net_rshares0
@yusripantona ·
hallo sahabat steemit semua saya pendatang baru disini mohon bantuan untuk mejadi sahabat saya semua
👍  
👎  
properties (23)
authoryusripantona
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010939085z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-15 01:09:42
last_update2018-02-15 01:09:42
depth1
children0
last_payout2018-02-22 01:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation210,460,355
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,610,898
net_rshares6,160,096
author_curate_reward""
vote details (2)
@ziyadhelmi ·
I still confuse read this one,,,
properties (22)
authorziyadhelmi
permlinkre-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t143234931z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-16 14:32:39
last_update2018-02-16 14:32:39
depth1
children0
last_payout2018-02-23 14:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation3,051,681,727,163
root_title"AppBase: The next step forward for the Steem blockchain (let the testing begin)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,018,249
net_rshares0