create account

Display your steem posts on your domain (free code, hosting and guide) by ausbitbank

View this thread on: hive.blogpeakd.comecency.com
· @ausbitbank · (edited)
$10.92
Display your steem posts on your domain (free code, hosting and guide)
<center>![](https://steemitimages.com/DQmQXTukxxnJ8xi3Z1JKPKZvUjRJh7Zd3KFYiZNCDwZK7cG/image.png)</center>

## Motivation -  I'm cheap when it comes to servers

I've been making slow progress on the **new shiny** <a href="https://steemvids.com">steemvids</a> beta , mostly because I'm throwing myself in the deep end learning nodejs, react, mongodb and everything else that goes with running a full modern web stack. 

The slow progress and high resource requirements are *super frustrating to me* because I prefer to keep things as minimalistic as possible. 

I'm not a witness, I have very little money to spare so it's been a conscious decision on all of my previous steem projects to simply use client-side javascript to do everything inside the users browser instead of server-side.

Keeping my requirements low and doing everything client-side has allowed me to launch and run everything I've made so far on **completely free static web hosting**. 

### Unfortunately the current solutions aren't that simple

I've seen a few projects appear with the general goal of allowing you to display your steemit content on your own domain. 

The most complete and professional imo has been @jesta's <a href="http://reprint.io/">reprint.io</a> <a href="https://en.wikipedia.org/wiki/Symfony">Symfony</a> based system - but it requires a server running PHP to use it.

I'm not trying to disparage @jesta's amazing work on this project - you can see a great example implementation on @charlieshrem's <a href="http://www.geekinprison.com/">geekinprison.com</a> that shows how polished this project already is.

Another option is @ontofractal's great looking <a href="https://github.com/cyberpunk-ventures/glasnost">glasnost project</a>, which is feature packed but requires a VPS or dedicated server to run its Elixir/Phoenix & Mnesia stack.

These are both far more mature, flexible options - but require a certain level of technical knowledge as well as resources to be able to configure and run them. Neither will work on free hosting.

<center>![](https://steemitimages.com/DQmfUp8BcrfDyE2buapGsHnaVLeRkcEzcK3a34tiWYZqDkK/image.png)</center>

### So I made a super simple version of my own

To even compare this to reprint.io is misleading , all I set out for here was the bare minimum code that will :

- Display steemit posts from a specific account
- Work with free static hosting (no nodejs, wordpress or database required)
- Allow direct linking to specific posts with tidy urls
- Work with your own domain name
- Have as few components as possible

## After about 24hrs, here's what I've got so far.

I have a system that currently loads the most recent posts for a specific username, converts the markdown to html and displays it. No comments, votes or extra information is displayed - this is just about the content.

I've put up an example implementation at <a href="https://steemdns.com">steemdns.com</a>, with the (temporary) domain disguising that the whole thing runs on free github pages hosting at https://ausbitbank.github.io .

#### Front page
`https://steemdns.com`
![](https://steemitimages.com/DQmVwQ75DP5KSfKPHdRAfpLQ5nYPAgrLxfFo3WU344ue5Y6/image.png)
#### Expanded post view
`https://steemdns.com/elon-musk-explains-chemtrails`
![](https://steemitimages.com/DQmbHt3tm8JsXjCPNADFChcyM82NxSea6JBFLproM9quScM/image.png)


### The whole system consists of these 4 files:
- **404.html** : Allows us to catch requests for any url, temporarily saving it to sessionstorage (to be retrieved by index.html). This file needed to be padded above 512bytes or it gets ignored by Internet Explorer (TIL)
![](https://steemitimages.com/DQmPrwyszrFrvZXiZWi3brWmftpA2B6iyypRLnxVmFnNuYy/image.png)

- **CNAME** : A plain text file containing "steemdns.com", enabling domain hosting on github pages
![](https://steemitimages.com/DQmbQBeoESTuH3vUrBJSPPVLMAqWTDXEUKTAiEE254GZscq/image.png)

- **Index.html** : Where all the magic happens
![](https://steemitimages.com/DQmbabUaPdSWEYv7tgnbGa616ovitWyGh11dBYaBvc63U62/image.png)
![](https://steemitimages.com/DQmPwUuPL8yJUea3QCnXSs352gfMPod2JusGFWn4mDj7GWV/image.png)
- **loader.js** : A small function to reliably load dependencies from CDN (<a href="http://steemjs.com/">steemjs</a> and <a href="https://github.com/jonschlinkert/remarkable/">remarkable</a>)
![](https://steemitimages.com/DQmXMHb7Zfs4wVbyG7Emw1zWmiBrkQconzDu53DivFMbwfT/image.png)
`function loadScript(url,callback){var script=document.createElement("script");script.type="text/javascript";if(script.readyState){script.onreadystatechange=function(){if(script.readyState=="loaded"||script.readyState=="complete"){script.onreadystatechange=null;callback()}}}else{script.onload=function(){callback()}}script.src=url;document.getElementsByTagName("head")[0].appendChild(script)}`

## How you can clone this for yourself

The whole thing can be cloned and modified to show your posts, in moments with just your web browser.

- Signup to <a href="https://github.com/">github</a> (for free)
- Go to my <a href="http://github.com/ausbitbank/ausbitbank.github.io">github repository</a> and click "fork" in the top right corner
![](https://steemitimages.com/DQmbaRJXa12qCh3Bpx7dnejGLR8x2Jf3B9usBwpRKrJWnUm/image.png)
- In your newly created fork, click settings - and change the repo name to `yourgithubusername.github.io`
![](https://steemitimages.com/DQmd4UxKrbSga26rNyeXSPF5yFSpLJ4Ljx76G3MsMnaQia4/image.png)
- Save changes, click through to the index.html file and edit (pencil icon)
![](https://steemitimages.com/DQmU7sfVhTgcJUixNxgdaADyjfyQu229LJcEPNSmNGTJxuM/image.png)
- Change the "steemusername" variable on line 4 to your own steem username , and save the file.
![](https://steemitimages.com/DQmNWJCjUwtwGMnGXxAZj68ji72DTsxSDMYw41hZJoevvcJ/image.png)

**THATS IT!** Your steem posts are now already available at https://yourgithubusername.github.io !

You can also use your own custom domain by editing the CNAME file to your own domain name , and <a href="https://help.github.com/articles/using-a-custom-domain-with-github-pages/">following these instructions to change your dns settings</a> .

## What's missing

This project is only 24hrs old, and while I always intended to keep it minimalist and not show all of the available data I still want to make a few more tweaks.

- **CSS themes**: Very little time has been spent on presentation so far, I'd like to make a few basic swappable theme variants so people can have a presentable blog in a few colour schemes.
- **Pagination** : Currenly only the most recent blog entries are listed, but more should load when the bottom of the page is reached (or a link is clicked)
- **Error handling** : If the steem backend servers are down, the content will not display - there is no caching in this system but having some alternative content to display would probably be a good idea.
- **Display more embedded media** : Youtube videos are not yet auto-embedded , and not all image links are not converted to images yet.
- **Add voting ability** : The steemconnect voting widget would do the trick imo

## Feedback wanted

This post will eventually get tidied up from its current rambly mess, but I'd like some general feedback on the idea - am I the only one that thinks this is useful ? Is there a niche for an even-simpler drop in solution (possibly a single javascript embed?)

I should probably also mention I've been sick as a dog for the past few days and most of this code was written while feverish - please feel free to point out any stupid mistakes I've made or any other improvements you can think of :)

<center><a href="https://steemit.com/@ausbitbank"><img src="https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/09/21/ausbitbank4275c.png"></a><br /><strong>Lets connect !</strong><br /><a href="https://steemit.com/@ausbitbank">steemit</a> / <a href="https://twitter.com/ausbitbank">twitter</a> / <a href="http://gab.ai/ausbitbank">gab.ai</a> / <a href="https://keybase.io/ausbitbank">keybase</a><br /><strong>I also made :</strong><br /><a href="https://steemviz.com">steemviz</a> / <a href="https://steemvids.com">steemvids</a> / <a href="https://steemcap.com">steemcap</a> / <a href="https://steemit.com/@steemleak">steemleak</a> / <a href="https://steemviz.com/promo">promo</a></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 216 others
👎  ,
properties (23)
authorausbitbank
permlinkdisplay-your-steem-posts-on-your-domain-free-code-and-guide
categorysteemdev
json_metadata{"tags":["steemdev","steemit","github","programming","steemjs"],"users":["jesta","charlieshrem","ontofractal"],"image":["https://steemitimages.com/DQmQXTukxxnJ8xi3Z1JKPKZvUjRJh7Zd3KFYiZNCDwZK7cG/image.png","https://steemitimages.com/DQmfUp8BcrfDyE2buapGsHnaVLeRkcEzcK3a34tiWYZqDkK/image.png","https://steemitimages.com/DQmVwQ75DP5KSfKPHdRAfpLQ5nYPAgrLxfFo3WU344ue5Y6/image.png","https://steemitimages.com/DQmbHt3tm8JsXjCPNADFChcyM82NxSea6JBFLproM9quScM/image.png","https://steemitimages.com/DQmPrwyszrFrvZXiZWi3brWmftpA2B6iyypRLnxVmFnNuYy/image.png","https://steemitimages.com/DQmbQBeoESTuH3vUrBJSPPVLMAqWTDXEUKTAiEE254GZscq/image.png","https://steemitimages.com/DQmbabUaPdSWEYv7tgnbGa616ovitWyGh11dBYaBvc63U62/image.png","https://steemitimages.com/DQmPwUuPL8yJUea3QCnXSs352gfMPod2JusGFWn4mDj7GWV/image.png","https://steemitimages.com/DQmXMHb7Zfs4wVbyG7Emw1zWmiBrkQconzDu53DivFMbwfT/image.png","https://steemitimages.com/DQmbaRJXa12qCh3Bpx7dnejGLR8x2Jf3B9usBwpRKrJWnUm/image.png","https://steemitimages.com/DQmd4UxKrbSga26rNyeXSPF5yFSpLJ4Ljx76G3MsMnaQia4/image.png","https://steemitimages.com/DQmU7sfVhTgcJUixNxgdaADyjfyQu229LJcEPNSmNGTJxuM/image.png","https://steemitimages.com/DQmNWJCjUwtwGMnGXxAZj68ji72DTsxSDMYw41hZJoevvcJ/image.png","https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/09/21/ausbitbank4275c.png"],"links":["https://steemvids.com","http://reprint.io/","https://en.wikipedia.org/wiki/Symfony","http://www.geekinprison.com/","https://github.com/cyberpunk-ventures/glasnost","https://steemdns.com","https://ausbitbank.github.io","http://steemjs.com/","https://github.com/jonschlinkert/remarkable/","https://github.com/","http://github.com/ausbitbank/ausbitbank.github.io","https://yourgithubusername.github.io","https://help.github.com/articles/using-a-custom-domain-with-github-pages/","https://steemit.com/@ausbitbank","https://twitter.com/ausbitbank","http://gab.ai/ausbitbank","https://keybase.io/ausbitbank","https://steemviz.com","https://steemcap.com","https://steemit.com/@steemleak","https://steemviz.com/promo"],"app":"steemit/0.1","format":"markdown"}
created2017-04-06 07:15:39
last_update2017-04-07 00:35:57
depth0
children36
last_payout2017-04-13 07:15:39
cashout_time1969-12-31 23:59:59
total_payout_value9.521 HBD
curator_payout_value1.401 HBD
pending_payout_value0.000 HBD
promoted0.001 HBD
body_length8,280
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,952,991
net_rshares29,283,054,003,749
author_curate_reward""
vote details (282)
@aaronsuncamacho ·
I am so happy to see this!

The other projects that are syndicating steemit posts look amazing and surely build excitement in the average reader until they read the instructions and realize that an average reader can not easily follow them. If those sites offered a simple click-to-launch-your-own solution that could be paid for in STEEM or SBD then I think new people could be enticed to join steem just to use this service (especially if the fee was pegged to the initial STEEM received at signup).

Your solution is the closest to one-click yet and completely free!

Even better would be a simple one line JavaScript embed like Ecwid.com does for e-commerce or Sumo does for web analytics and engagement. And, what if the embed also let us post without going to steemit?

Alternatively, steemit.com should allow the creation of custom domains with custom css.

Anything that would let people keep using their own blogs/websites with the added functionality of votes for pay on posts on their own sites would be the fire that keeps the steem steeming!

I think the ability to add a "like" button anywhere that generates an income for the content associated with it could be more easily marketed than trying to get users to change platforms. The Steem Button can be the first step in onboarding users to Steemit.com. Steemit.com could be an optional element the way actually using Google+ is to having all the other benefits of a Google account...

These are ideas that people would invest in, and products that people would purchase... I think?

Thank You for Being You and Doing what Do!
👍  , , , ,
properties (23)
authoraaronsuncamacho
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t175329845z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"busy/1.0.0"}
created2017-04-06 17:53:30
last_update2017-04-06 17:53:30
depth1
children1
last_payout2017-04-13 17:53: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_length1,591
author_reputation890,017,104,474
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,956,573
net_rshares195,617,479,135
author_curate_reward""
vote details (5)
@ausbitbank ·
Thankyou for the great comment :)

I really like the idea of reducing the whole thing down to a single pasted in `<script>` tag that automagically turns into a custom steemit blog, just to make installation as hassle free as possible.. Some great ideas here :)
👍  
properties (23)
authorausbitbank
permlinkre-aaronsuncamacho-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t010537681z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-07 01:05:36
last_update2017-04-07 01:05:36
depth2
children0
last_payout2017-04-14 01:05: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_length260
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,959,242
net_rshares25,462,677,779
author_curate_reward""
vote details (1)
@andu ·
the idea is truly awesome. It really does allow bloggers that want their posts on their own link.
I'm thinking if a wordpress plugin is also possible, as  much of today's web is powered by WP and it could also take advantage of the theme designs.
👍  , , , ,
properties (23)
authorandu
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t100423488z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 10:04:27
last_update2017-04-06 10:04:27
depth1
children2
last_payout2017-04-13 10:04: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_length246
author_reputation5,355,583,123,081
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,670
net_rshares196,307,394,664
author_curate_reward""
vote details (5)
@ausbitbank ·
I actually thought jesta's repress.io was based off wordpress (since I think it was rebranded from steempress originally) but it may be a completely independant beasty now..

https://wordpress.org/plugins/steemit-feed/ <-- This exists but I haven't tested and its now 7 months old so I'm not sure if it'll still work

If there really isn't a  working wordpress option available maybe I'll look into that next, but the point of this was to be as lightweight and independent as possible and let the user style the content how they want.
👍  ,
properties (23)
authorausbitbank
permlinkre-andu-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t102357819z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://wordpress.org/plugins/steemit-feed/"],"app":"steemit/0.1"}
created2017-04-06 10:23:57
last_update2017-04-06 10:23:57
depth2
children1
last_payout2017-04-13 10:23: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_length534
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,763
net_rshares83,272,750,024
author_curate_reward""
vote details (2)
@andu ·
didn't know about it either but yea, I don't think it's fully compatible now and also, not sure how it looks.
👍  , , , ,
properties (23)
authorandu
permlinkre-ausbitbank-re-andu-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t163531820z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 16:35:36
last_update2017-04-06 16:35:36
depth3
children0
last_payout2017-04-13 16:35: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_length109
author_reputation5,355,583,123,081
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,956,024
net_rshares199,948,404,567
author_curate_reward""
vote details (5)
@ausbitbank ·
Bonus feature: You can lookup the permlink of a comment, and then view that comment directly on the site - eg : http://steemdns.com/re-igster-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t125118559z

![](https://steemitimages.com/DQme6mt7MbHUoasxffYndbKkv5KB64NqNHLJ7esf2F7KrtE/image.png)
👍  
properties (23)
authorausbitbank
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t131835056z
categorysteemdev
json_metadata{"tags":["steemdev"],"image":["https://steemitimages.com/DQme6mt7MbHUoasxffYndbKkv5KB64NqNHLJ7esf2F7KrtE/image.png"],"links":["http://steemdns.com/re-igster-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t125118559z"],"app":"steemit/0.1"}
created2017-04-06 13:18:36
last_update2017-04-06 13:18:36
depth1
children0
last_payout2017-04-13 13:18: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_length325
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,954,703
net_rshares25,462,677,779
author_curate_reward""
vote details (1)
@cryptoctopus ·
Have you tried @ontofractal solution with glastnot?
👍  , , , ,
properties (23)
authorcryptoctopus
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t103713868z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["ontofractal"],"app":"steemit/0.1"}
created2017-04-06 10:37:15
last_update2017-04-06 10:37:15
depth1
children1
last_payout2017-04-13 10:37: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_length51
author_reputation365,406,972,531,657
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,835
net_rshares191,962,421,361
author_curate_reward""
vote details (5)
@ausbitbank ·
I haven't, because it requires a dedicated server or VPS and docker to run its Elixir, Phoenix & Mnesia stack. It looks amazing, but heavy.


My solution is purely javascript and usable almost anywhere. Will update the post to mention it though, I couldn't remember the name earlier thanks
👍  
properties (23)
authorausbitbank
permlinkre-cryptoctopus-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t104625064z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 10:46:24
last_update2017-04-06 10:46:24
depth2
children0
last_payout2017-04-13 10:46: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_length289
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,881
net_rshares25,462,677,779
author_curate_reward""
vote details (1)
@deanpress · (edited)
$2.04
This is great! Although I do believe this doesn't bode well with SEO considering the content discovered is 'duplicate' (both on Steemit and your own domain).  The best solution would be for Steemit to start offering support for custom domains. Links to user's personal Steemit blogs should point to the custom domain name. This ensures that articles don't actually count double on search engines et al.
👍  , , , ,
properties (23)
authordeanpress
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170604t124209113z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-04 12:42:15
last_update2017-06-04 12:43:24
depth1
children2
last_payout2017-06-11 12:42:15
cashout_time1969-12-31 23:59:59
total_payout_value1.536 HBD
curator_payout_value0.503 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length402
author_reputation109,236,431,371
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,156,250
net_rshares510,505,258,923
author_curate_reward""
vote details (5)
@jesta ·
$1.35
I've proposed in the past a `custom_json` parameter that could define the canonical URL to avoid any SEO headaches. Without it being set, the default could go to steemit.com, but if set, all clients should listen and display whatever it's set to.
👍  , , ,
properties (23)
authorjesta
permlinkre-deanpress-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170604t124209113z-201765t04246703z
categorysteemdev
json_metadata{"app":"chainbb/0.1","format":"markdown+html","tags":[]}
created2017-06-05 04:42:48
last_update2017-06-05 04:42:48
depth2
children1
last_payout2017-06-12 04:42:48
cashout_time1969-12-31 23:59:59
total_payout_value1.244 HBD
curator_payout_value0.107 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length246
author_reputation140,605,453,893,072
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,194,647
net_rshares398,953,129,611
author_curate_reward""
vote details (4)
@deanpress ·
This sounds like a very decent solution. The only problem I see is domain expiration. Perhaps check the location for a certain HTTP response before using a specific domain? In the case the domain is expired or not available, the anchors could revert back to steemit.
properties (22)
authordeanpress
permlinkre-jesta-re-deanpress-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-201765t04246703z-20170605t110958375z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-05 11:10:03
last_update2017-06-05 11:10:03
depth3
children0
last_payout2017-06-12 11:10: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_length266
author_reputation109,236,431,371
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,206,137
net_rshares0
@faddat ·
That got my increasingly weak upvote.  

THANKYOUTHANKYOUTHANKYOUTHANKYOU!

I owe you a review, and will comment on the source.
👍  , , , ,
properties (23)
authorfaddat
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170408t180719365z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-08 18:07:18
last_update2017-04-08 18:07:18
depth1
children0
last_payout2017-04-15 18:07: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_length127
author_reputation36,581,868,473,026
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,972,012
net_rshares191,781,531,199
author_curate_reward""
vote details (5)
@igster ·
Great work! I'm also on my path for learning modern web dev stuff. Why should one learn MongoDB?
👍  , , , ,
properties (23)
authorigster
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t123847166z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 12:39:00
last_update2017-04-06 12:39:00
depth1
children1
last_payout2017-04-13 12: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_length96
author_reputation17,415,198,441,969
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,954,463
net_rshares191,275,605,654
author_curate_reward""
vote details (5)
@ausbitbank ·
MongoDB seems to be the go-to modern JSON-based database these days - it feels way faster and more flexible then MySQL ever was.

 I was prompted to go for mongodb for the steemvids backend for a few reasons :

- Theres heaps of guides around to help learn the <a href="https://en.wikipedia.org/wiki/MEAN_(software_bundle)">MEAN stack</a>
- I found a few free mongodb providers to play with while I'm learning (eg: cloud.mongodb.com)
- It's what <a href="https://steemdata.com/guide">steemdata uses</a>
👍  
properties (23)
authorausbitbank
permlinkre-igster-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t125118559z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://en.wikipedia.org/wiki/MEAN_(software_bundle)","https://steemdata.com/guide"],"app":"steemit/0.1"}
created2017-04-06 12:51:15
last_update2017-04-06 12:51:15
depth2
children0
last_payout2017-04-13 12: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_length502
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,954,530
net_rshares25,462,677,779
author_curate_reward""
vote details (1)
@jesta · (edited)
Nice work! Look forward to checking the code out and giving it a whirl. These types of projects are going to be critical (IMHO) in the growth of the network.

I also just wanted to set the record straight - Reprint (the project I previously worked on like this) **doesn't use Wordpress**, it's written using Symphony/PHP and is designed to work on any system that *could* run wordpress. 

I've mentioned wordpress a couple times in our posts, but only that it's designed to be a replacement for for it.  I avoid touching anything wordpress related like the plague :)
👍  , , , , ,
properties (23)
authorjesta
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t165019913z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 16:50:18
last_update2017-04-06 16:55:12
depth1
children2
last_payout2017-04-13 16: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_length566
author_reputation140,605,453,893,072
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,956,107
net_rshares208,267,896,200
author_curate_reward""
vote details (6)
@ausbitbank ·
Thanks mate, will update the post to correct this in a bit :)
properties (22)
authorausbitbank
permlinkre-jesta-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t000401384z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-07 00:04:00
last_update2017-04-07 00:04:00
depth2
children0
last_payout2017-04-14 00:04: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_length61
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,958,968
net_rshares0
@frankbacon ·
Awesome stuff!  @ausbitbank AND @jesta.  Both your efforts are greatly appreciated!
![Imgur](http://i.imgur.com/LuNVW3H.jpg)
👍  , , , ,
properties (23)
authorfrankbacon
permlinkre-jesta-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t031034309z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["ausbitbank","jesta"],"image":["http://i.imgur.com/LuNVW3H.jpg"],"app":"steemit/0.1"}
created2017-04-07 03:10:45
last_update2017-04-07 03:10:45
depth2
children0
last_payout2017-04-14 03:10: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_length124
author_reputation36,630,927,301,955
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,959,868
net_rshares196,326,949,506
author_curate_reward""
vote details (5)
@joseph ·
$0.12
properties (23)
authorjoseph
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170410t012748083z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://j-stuhlman.github.io/"],"app":"steemit/0.1"}
created2017-04-10 01:27:42
last_update2017-04-10 01:27:42
depth1
children1
last_payout2017-04-17 01:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.117 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation381,890,490,550,578
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,980,803
net_rshares1,361,172,383,811
author_curate_reward""
vote details (9)
@ausbitbank ·
If you update, all of your images will work now :)
properties (22)
authorausbitbank
permlinkre-joseph-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t012447853z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-11 01:24:51
last_update2017-04-11 01:24:51
depth2
children0
last_payout2017-04-18 01:24: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_length50
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,988,221
net_rshares0
@kingscrown ·
properties (23)
authorkingscrown
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t142817254z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 14:28:21
last_update2017-04-06 14:28:21
depth1
children0
last_payout2017-04-13 14:28: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_length12
author_reputation2,116,412,664,792,693
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,955,139
net_rshares363,780,763,021
author_curate_reward""
vote details (5)
@lukestokes ·
Great job! I love seeing simple solutions like this.
👍  , , , ,
properties (23)
authorlukestokes
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t124152545z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-07 12:41:51
last_update2017-04-07 12:41:51
depth1
children0
last_payout2017-04-14 12:41: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_length52
author_reputation556,640,380,599,219
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,962,291
net_rshares187,531,400,981
author_curate_reward""
vote details (5)
@meesterboom ·
$0.04
Wow, this is a fantastic post. It pushed me to creating an account on github and the associated gubbins that goes along with it. Something I have been meaning to do for a while. The page itself is displaying blank for me (apart from the header: ***Recent posts by meesterboom***) but I am in work and it could be the browser being locked down. I can check it at home later.

I love a post that you actually really learn something from. Thanks again dude!
👍  , , , , , ,
properties (23)
authormeesterboom
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t075628476z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 07:56:30
last_update2017-04-06 07:56:30
depth1
children2
last_payout2017-04-13 07:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length454
author_reputation1,798,457,540,569,298
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,158
net_rshares735,159,954,809
author_curate_reward""
vote details (7)
@ausbitbank ·
Thankyou, im glad someone found it useful :)

Your site works for me from mobile too 
<a href="https://ibb.co/gK7yRF"><img src="https://preview.ibb.co/feoSLa/Screenshot_20170406_180239.png" alt="Screenshot 20170406 180239" border="0" /></a>
👍  
properties (23)
authorausbitbank
permlinkre-meesterboom-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t080711185z
categorysteemdev
json_metadata{"tags":["steemdev"],"image":["https://preview.ibb.co/feoSLa/Screenshot_20170406_180239.png"],"links":["https://ibb.co/gK7yRF"],"app":"steemit/0.1"}
created2017-04-06 08:07:15
last_update2017-04-06 08:07:15
depth2
children1
last_payout2017-04-13 08:07: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_length240
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,192
net_rshares24,953,424,224
author_curate_reward""
vote details (1)
@meesterboom ·
Aargh, I was being a doofus. I should have checked my mobile! All working splendidly well! Again, a great walkthrough!
👍  , , , ,
properties (23)
authormeesterboom
permlinkre-ausbitbank-re-meesterboom-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t081302832z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 08:13:09
last_update2017-04-06 08:13:09
depth3
children0
last_payout2017-04-13 08:13: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_length118
author_reputation1,798,457,540,569,298
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,215
net_rshares200,839,218,987
author_curate_reward""
vote details (5)
@rebeccamorgan ·
Wow, this was too technical for me. I usually just tell hubby what I want and he does it when it comes to stuff like this. But thanks for taking the time to make this post, I'm sure many people will benefit.
👍  , ,
properties (23)
authorrebeccamorgan
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t232912938z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 23:29:21
last_update2017-04-06 23:29:21
depth1
children0
last_payout2017-04-13 23: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_length207
author_reputation13,599,545,643,047
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,958,783
net_rshares157,910,265,194
author_curate_reward""
vote details (3)
@steemitqa ·
I wish the functions of steemit could show up there also like upvoting, RS etc., etc.
👍  , , , ,
properties (23)
authorsteemitqa
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045335558z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-07 04:53:36
last_update2017-04-07 04:53:36
depth1
children3
last_payout2017-04-14 04:53: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_length85
author_reputation22,135,803,163,402
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,960,257
net_rshares200,323,223,840
author_curate_reward""
vote details (5)
@ausbitbank ·
Give it time, ill get back into coding later tonight and should be able to get voting going at least
👍  
properties (23)
authorausbitbank
permlinkre-steemitqa-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045810288z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-07 04:58:12
last_update2017-04-07 04:58:12
depth2
children2
last_payout2017-04-14 04:58: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_length100
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,960,273
net_rshares24,953,424,224
author_curate_reward""
vote details (1)
@steemitqa ·
Cool man! I'll be watching this. If it works , I'm going to build out my http://thedailysteemit.com/  website with it.
👍  , , , ,
properties (23)
authorsteemitqa
permlinkre-ausbitbank-re-steemitqa-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045950623z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["http://thedailysteemit.com/"],"app":"steemit/0.1"}
created2017-04-07 04:59:51
last_update2017-04-07 04:59:51
depth3
children1
last_payout2017-04-14 04: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_length118
author_reputation22,135,803,163,402
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,960,277
net_rshares191,063,109,880
author_curate_reward""
vote details (5)
@teamsteem ·
For some reasons I had missed that post. This is really awesome work!
👍  , , , ,
properties (23)
authorteamsteem
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170408t002605559z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-08 00:25:57
last_update2017-04-08 00:25:57
depth1
children0
last_payout2017-04-15 00:25: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_length69
author_reputation284,804,541,406,803
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,967,057
net_rshares196,113,588,040
author_curate_reward""
vote details (5)
@tuck-fheman ·
This is a great solution for bloggersandgrandmas.life, thanks! :)
👍  , , , , ,
properties (23)
authortuck-fheman
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t080429372z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 08:04:33
last_update2017-04-06 08:04:33
depth1
children1
last_payout2017-04-13 08:04: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_length65
author_reputation345,778,813,561,569
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,179
net_rshares216,772,827,854
author_curate_reward""
vote details (6)
@ausbitbank ·
Ahaha that's a random domain, happy to help :)
👍  ,
properties (23)
authorausbitbank
permlinkre-tuck-fheman-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t081124512z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-06 08:11:27
last_update2017-04-06 08:11:27
depth2
children0
last_payout2017-04-13 08:11: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_length46
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,953,205
net_rshares173,419,130,984
author_curate_reward""
vote details (2)
@verelst ·
https://decentraal.github.io/
Works fine for me :) ... thanks!
👍  , , , , ,
properties (23)
authorverelst
permlinkre-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170410t112040211z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://decentraal.github.io/"],"app":"steemit/0.1"}
created2017-04-10 11:20:42
last_update2017-04-10 11:20:42
depth1
children3
last_payout2017-04-17 11: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_length62
author_reputation4,582,676,141,980
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,983,195
net_rshares186,062,167,868
author_curate_reward""
vote details (6)
@ausbitbank ·
If you update all of your post images will work now :)
properties (22)
authorausbitbank
permlinkre-verelst-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t005247469z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-04-11 00:52:51
last_update2017-04-11 00:52:51
depth2
children2
last_payout2017-04-18 00:52: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_length54
author_reputation287,009,709,424,827
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,988,033
net_rshares0
@verelst ·
Update ok! Have done some modification myself... 
This is how it looks now... https://decentraal.github.io/
http://tinyimg.io/i/zrR0lQs.jpg
👍  , , , , ,
properties (23)
authorverelst
permlinkre-ausbitbank-re-verelst-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t064127090z
categorysteemdev
json_metadata{"tags":["steemdev"],"image":["http://tinyimg.io/i/zrR0lQs.jpg"],"links":["https://decentraal.github.io/"],"app":"steemit/0.1"}
created2017-04-11 06:41:33
last_update2017-04-11 06:41:33
depth3
children1
last_payout2017-04-18 06:41: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_length139
author_reputation4,582,676,141,980
root_title"Display your steem posts on your domain (free code, hosting and guide)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,989,486
net_rshares208,926,651,734
author_curate_reward""
vote details (6)