<center></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></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`  #### Expanded post view `https://steemdns.com/elon-musk-explains-chemtrails`  ### 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)  - **CNAME** : A plain text file containing "steemdns.com", enabling domain hosting on github pages  - **Index.html** : Where all the magic happens   - **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>)  `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  - In your newly created fork, click settings - and change the repo name to `yourgithubusername.github.io`  - Save changes, click through to the index.html file and edit (pencil icon)  - Change the "steemusername" variable on line 4 to your own steem username , and save the file.  **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>
author | ausbitbank |
---|---|
permlink | display-your-steem-posts-on-your-domain-free-code-and-guide |
category | steemdev |
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"} |
created | 2017-04-06 07:15:39 |
last_update | 2017-04-07 00:35:57 |
depth | 0 |
children | 36 |
last_payout | 2017-04-13 07:15:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.521 HBD |
curator_payout_value | 1.401 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.001 HBD |
body_length | 8,280 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,952,991 |
net_rshares | 29,283,054,003,749 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | -3,479,566,591,655 | -14% | ||
wackou | 0 | 1,704,033,331,199 | 27.6% | ||
pharesim | 0 | 963,327,829,115 | 10% | ||
sandra | 0 | 36,027,334,815 | 70% | ||
kushed | 0 | 1,878,854,103,266 | 47% | ||
abit | 0 | -2,916,307,088,833 | -12% | ||
ihashfury | 0 | 30,226,512,518 | 48.3% | ||
rossco99 | 0 | 1,150,681,957,607 | 100% | ||
boy | 0 | 9,681,760,462 | 100% | ||
bue-witness | 0 | 11,805,271,866 | 100% | ||
bunny | 0 | 1,834,741,842 | 100% | ||
bue | 0 | 190,657,361,047 | 100% | ||
mini | 0 | 5,174,740,271 | 100% | ||
moon | 0 | 657,933,201 | 100% | ||
joseph | 0 | 623,136,181,461 | 100% | ||
jason | 0 | 32,111,901,585 | 48.3% | ||
boatymcboatface | 0 | 571,064,744,195 | 100% | ||
pairmike | 0 | 3,781,532,571 | 1% | ||
pheonike | 0 | 10,879,047,836 | 6% | ||
proctologic | 0 | 3,514,321,413 | 1% | ||
healthcare | 0 | 1,928,468,191 | 100% | ||
tuck-fheman | 0 | 154,783,396,410 | 100% | ||
daniel.pan | 0 | 3,050,881,892 | 100% | ||
konelectric | 0 | 416,073,788 | 1% | ||
chitty | 0 | 384,466,830,707 | 100% | ||
patrice | 0 | 7,218,026,018 | 69% | ||
helen.tan | 0 | 881,983,283 | 100% | ||
nenad-ristic | 0 | 32,241,513,654 | 100% | ||
ivan-perez-anies | 0 | 27,240,910,871 | 100% | ||
carlos-cabeza | 0 | 3,070,231,157 | 100% | ||
bleepcoin | 0 | 188,347,268,085 | 100% | ||
novina | 0 | 0 | 100% | ||
kingscrown | 0 | 212,228,876,835 | 100% | ||
hipster | 0 | 695,691,976,677 | 100% | ||
forrestwillie | 0 | 449,020,114 | 1% | ||
teamsteem | 0 | 341,698,768,285 | 100% | ||
richman | 0 | 163,987,240,369 | 100% | ||
tad-auker | 0 | 1,594,477,623 | 25% | ||
lola-carola | 0 | 1,163,952,418 | 100% | ||
avarice | 0 | 11,662,044,596 | 18% | ||
acidyo | 0 | 88,556,876,338 | 100% | ||
oaldamster | 0 | 60,391,700,164 | 100% | ||
andu | 0 | 58,319,221,887 | 100% | ||
theshell | 0 | 90,987,283,997 | 100% | ||
brich | 0 | 11,369,958,523 | 69% | ||
noganoo | 0 | 7,350,690,555 | 100% | ||
applecrisp | 0 | 53,292,082 | 20% | ||
arjoona | 0 | 343,320,757 | 100% | ||
juanmiguelsalas | 0 | 33,051,174,239 | 100% | ||
kenny-crane | 0 | 96,846,295,381 | 100% | ||
faddat | 0 | 25,462,677,779 | 100% | ||
will-zewe | 0 | 2,011,359,363 | 100% | ||
arisa | 0 | 2,352,763,849 | 100% | ||
andrei | 0 | 232,059,716 | 1% | ||
stephen-somers | 0 | 10,389,851,113 | 100% | ||
grandpere | 0 | 100,429,883,268 | 100% | ||
christoryan | 0 | 14,503,385,378 | 100% | ||
lukestokes | 0 | 514,450,715,308 | 100% | ||
christoph3 | 0 | 4,671,275,531 | 100% | ||
mammasitta | 0 | 20,118,941,406 | 100% | ||
fyrstikken | 0 | 51,961,051,611 | 1% | ||
grey580 | 0 | 15,000,429,389 | 100% | ||
michaellamden68 | 0 | 286,992,467 | 11% | ||
heiditravels | 0 | 455,583,542,420 | 100% | ||
good-karma | 0 | 117,604,479,143 | 23% | ||
stranger27 | 0 | 11,410,140,180 | 100% | ||
elyaque | 0 | 177,637,722,838 | 75% | ||
trees | 0 | 1,686,410,315 | 100% | ||
strawhat | 0 | 6,487,285,449 | 100% | ||
handsolo | 0 | 11,043,677,515 | 75% | ||
ukrainian | 0 | 3,897,477,084 | 100% | ||
cryptochannel | 0 | 2,759,912,603 | 100% | ||
slowwalker | 0 | 781,010,165,336 | 21% | ||
bitshares101 | 0 | 25,993,275,212 | 100% | ||
vi1son | 0 | 36,443,592,054 | 100% | ||
mrgreen | 0 | 2,121,515,169 | 100% | ||
ausbitbank | 0 | 163,329,943,226 | 100% | ||
anyx | 0 | 206,684,491,396 | 69% | ||
fulltimegeek | 0 | 3,486,184,223,493 | 100% | ||
asim | 0 | 9,115,224,244 | 100% | ||
jesta | 0 | 920,459,871,206 | 100% | ||
jamesjarman | 0 | 1,709,129,120 | 1% | ||
igster | 0 | 42,479,214,763 | 100% | ||
transisto | 0 | 7,084,301,284,784 | 100% | ||
meesterboom | 0 | 111,962,904,917 | 100% | ||
juvyjabian | 0 | 536,175,937 | 1% | ||
karenmckersie | 0 | 2,361,488,050 | 1% | ||
pkattera | 0 | 302,739,447,502 | 69% | ||
luisucv34 | 0 | 9,094,728,511 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
inertia | 0 | 272,165,761,294 | 100% | ||
arcange | 0 | 49,713,408,281 | 69% | ||
the-future | 0 | 73,617,953,853 | 100% | ||
fiona777 | 0 | 7,340,448,741 | 100% | ||
iamwne | 0 | 3,670,422,804 | 100% | ||
coininstant | 0 | 32,362,437,138 | 100% | ||
ubg | 0 | 497,946,084,595 | 100% | ||
heimindanger | 0 | 21,489,675,131 | 100% | ||
bones | 0 | 4,485,271,843 | 100% | ||
deanliu | 0 | 65,380,141,132 | 100% | ||
celsius100 | 0 | 45,737,226,915 | 100% | ||
neroru | 0 | 7,841,015,067 | 100% | ||
mysteem | 0 | 701,790,969 | 23% | ||
sergey44 | 0 | 635,480,253 | 100% | ||
marius19 | 0 | 163,892,598,785 | 100% | ||
happyphoenix | 0 | 2,183,625,016 | 34% | ||
youngkim | 0 | 505,164,368 | 1% | ||
shaka | 0 | 775,228,431,171 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
gomeravibz | 0 | 1,802,234,074 | 1% | ||
craigslist | 0 | 1,304,893,346 | 100% | ||
felixxx | 0 | 73,030,136,582 | 100% | ||
transhuman | 0 | 4,468,472,150 | 44% | ||
laoyao | 0 | 32,246,902,292 | 100% | ||
timelapse | 0 | 463,539,331 | 1% | ||
timsaid | 0 | 153,859,683,752 | 100% | ||
ullikume | 0 | 11,720,881,715 | 69% | ||
andrew0 | 0 | 15,901,975,020 | 100% | ||
armen | 0 | 4,150,218,185 | 100% | ||
steemleak | 0 | 1,460,551,502 | 100% | ||
bigsambucca | 0 | 319,242,663 | 100% | ||
fishingvideos | 0 | 20,120,407,919 | 100% | ||
joele | 0 | 208,818,492,178 | 100% | ||
oflyhigh | 0 | 33,726,736,227 | 100% | ||
denisoi | 0 | 32,073,567,570 | 100% | ||
gargon | 0 | 206,209,704,012 | 100% | ||
pgarcgo | 0 | 177,628,483,374 | 100% | ||
wartrapa | 0 | 49,579,877,143 | 100% | ||
steemitqa | 0 | 430,207,620 | 1% | ||
hms818 | 0 | 5,897,018,793 | 100% | ||
darthnava | 0 | 436,598,119 | 1% | ||
bryan-imhoff | 0 | 43,483,653,470 | 100% | ||
hanshotfirst | 0 | 577,055,055,348 | 100% | ||
lordvader | 0 | 118,137,463,497 | 100% | ||
frankbacon | 0 | 12,635,518,878 | 100% | ||
chinadaily | 0 | 42,188,860,737 | 100% | ||
helene | 0 | 46,737,397,589 | 100% | ||
virtualgrowth | 0 | 9,258,610,950 | 30% | ||
lamech-m | 0 | 4,889,277,976 | 100% | ||
demo | 0 | 116,425,711 | 23% | ||
albagargon | 0 | 968,672,221 | 100% | ||
madoff | 0 | 1,838,424,508 | 100% | ||
cryptomancer | 0 | 263,593,289,756 | 100% | ||
jyp | 0 | 268,675,513,481 | 100% | ||
kenistyles | 0 | 17,704,139,405 | 100% | ||
sethlinson | 0 | 5,422,782,974 | 20.8% | ||
hilarski | 0 | 75,155,393,757 | 26% | ||
itsmein3d | 0 | 15,625,853,527 | 100% | ||
onetree | 0 | 61,182,762,906 | 100% | ||
shadowspub | 0 | 626,730,252 | 1% | ||
lily-da-vine | 0 | 19,445,002,489 | 30% | ||
pery | 0 | 32,149,624,402 | 100% | ||
aaronsuncamacho | 0 | 861,253,097 | 100% | ||
etcmike | 0 | 290,806,435,375 | 100% | ||
runridefly | 0 | 8,635,317,343 | 12% | ||
barrydutton | 0 | 2,325,877,796 | 1% | ||
pollux.one | 0 | 94,779,032,993 | 100% | ||
jlufer | 0 | 9,460,119,480 | 100% | ||
sammie | 0 | 1,419,707,404 | 100% | ||
sneak | 0 | 71,543,398,383 | 100% | ||
penguinpablo | 0 | 257,030,991,015 | 100% | ||
steemitguide | 0 | 624,446,020 | 1% | ||
uwelang | 0 | 48,385,434,571 | 80% | ||
richardcrill | 0 | 1,148,689,490 | 1% | ||
titin | 0 | 55,173,762,698 | 100% | ||
canadian-coconut | 0 | 107,078,417,924 | 100% | ||
sponge-bob | 0 | 688,645,038,950 | 100% | ||
cornerstone | 0 | 254,388,566,995 | 75% | ||
titusfrost | 0 | 57,141,196,535 | 100% | ||
oldstone | 0 | 45,782,892,193 | 100% | ||
wise-elf | 0 | 59,170,959 | 100% | ||
profitgenerator | 0 | 46,030,471,056 | 100% | ||
steemit79 | 0 | 50,449,176 | 100% | ||
ebargains | 0 | 25,378,291,790 | 69% | ||
jacobts | 0 | 356,230,234 | 1% | ||
mindhunter | 0 | 5,034,110,226 | 100% | ||
allyouneedtoknow | 0 | 21,092,942,169 | 100% | ||
patelincho | 0 | 237,894,438 | 1% | ||
feruz | 0 | 115,219,991 | 23% | ||
whatsup | 0 | 44,915,671,581 | 100% | ||
heroic15397 | 0 | 13,114,954,344 | 100% | ||
jgcastrillo19 | 0 | 74,798,334,505 | 100% | ||
inphiknit | 0 | 23,248,420,819 | 91% | ||
nelyp | 0 | 14,765,507,737 | 100% | ||
pickoum | 0 | 34,088,113,926 | 100% | ||
juliamateo | 0 | 2,625,225,479 | 100% | ||
lajulius | 0 | 13,504,169,172 | 100% | ||
steemalf | 0 | 10,481,535,333 | 100% | ||
kiwiscanfly | 0 | 17,661,343,158 | 100% | ||
rebeccamorgan | 0 | 16,994,426,522 | 100% | ||
thegame | 0 | 521,747,958 | 10% | ||
teo | 0 | 3,609,766,299 | 100% | ||
blacktier | 0 | 26,986,769,584 | 100% | ||
surpassinggoogle | 0 | 545,258,871 | 1% | ||
steembets | 0 | 633,352,347 | 10% | ||
zoee | 0 | 500,885,299 | 69% | ||
sjennon | 0 | 10,242,075,884 | 69% | ||
thesteemawards | 0 | 193,655,381 | 20% | ||
abdullar | 0 | 712,844,944,038 | 20% | ||
projectnewbie | 0 | 14,174,758,574 | 100% | ||
dresden | 0 | 54,064,006,492 | 80% | ||
food-creator | 0 | 8,945,488,900 | 100% | ||
alfredozofio | 0 | 3,729,949,773 | 100% | ||
bleujay | 0 | 269,993,295,289 | 51% | ||
alienbutt | 0 | 82,203,272,836 | 80% | ||
freiheit50 | 0 | 31,347,089,408 | 100% | ||
dulcinea | 0 | 4,953,849,020 | 100% | ||
mdcomes | 0 | 8,429,004,234 | 100% | ||
lalala | 0 | 2,508,124,142 | 100% | ||
giantbear | 0 | 1,412,907,473 | 1% | ||
steemito | 0 | 145,774,878 | 100% | ||
mokluc | 0 | 28,275,944,586 | 100% | ||
daisyd | 0 | 401,498,995 | 1% | ||
jmehta | 0 | 464,764,019 | 100% | ||
builderofcastles | 0 | 2,745,633,158 | 100% | ||
steemland.com | 0 | 531,204,775 | 10% | ||
selwi | 0 | 846,509,021 | 100% | ||
sqube | 0 | 2,985,902,106 | 1% | ||
cathynsons | 0 | 309,825,450 | 1% | ||
whatageek | 0 | 967,004,576 | 1% | ||
chessminator | 0 | 132,727,169 | 100% | ||
crowdfundedwhale | 0 | 48,489,786,308 | 65% | ||
esteemapp | 0 | 119,644,291 | 23% | ||
steemspoker | 0 | 11,768,065,929 | 100% | ||
steemprentice | 0 | 17,889,804,503 | 30% | ||
spbesner | 0 | 5,492,491,866 | 100% | ||
steemperor | 0 | 76,914,537,349 | 100% | ||
steempire | 0 | 136,963,020,083 | 100% | ||
reisman | 0 | 2,442,429,275 | 69% | ||
ourlifestory | 0 | 65,586,385,018 | 100% | ||
damiendecoster | 0 | 1,269,418,950 | 100% | ||
helicopter | 0 | 513,714,568 | 100% | ||
bellastella | 0 | 5,031,333,491 | 100% | ||
aniestudio | 0 | 18,301,386,746 | 100% | ||
finder | 0 | 773,263,166 | 100% | ||
seablue | 0 | 2,106,420,002 | 1% | ||
vcelier | 0 | 866,491,261,149 | 69% | ||
soushi888 | 0 | 11,481,295,000 | 100% | ||
meysam | 0 | 677,034,547 | 1% | ||
codydeeds | 0 | 62,187,507,729 | 100% | ||
choreboy | 0 | 6,345,306,508 | 100% | ||
crowman | 0 | 1,858,270,095 | 100% | ||
tamersameeh | 0 | 752,798,327 | 100% | ||
mathworksheets | 0 | 6,356,215,834 | 100% | ||
driptorchpress | 0 | 91,407,247 | 1% | ||
tamim | 0 | 1,245,015,182,227 | 29% | ||
rahul.stan | 0 | 2,176,363,849 | 100% | ||
loreennaa | 0 | 4,258,861,741 | 100% | ||
riskdebonair | 0 | 1,121,450,928 | 1% | ||
firesteem | 0 | 708,930,742 | 100% | ||
fbechstein | 0 | 5,148,069,575 | 100% | ||
dalek | 0 | 329,199,026 | 100% | ||
elgeko | 0 | 10,661,759,570 | 20.7% | ||
bounties | 0 | 221,793,219 | 23% | ||
steempoll | 0 | 167,286,058 | 23% | ||
pqlenator | 0 | 950,386,254 | 15% | ||
smalltalk | 0 | 321,050,453 | 10% | ||
tonylondon | 0 | 1,133,013,351 | 100% | ||
honusurf | 0 | 11,252,203,342 | 100% | ||
shaunmza | 0 | 8,025,598,620 | 80% | ||
steemitgecko | 0 | 8,029,778,646 | 100% | ||
cwatch | 0 | 152,745,195 | 1% | ||
willsplace | 0 | 64,886,274 | 1% | ||
ambyr00 | 0 | 3,027,106,013 | 1% | ||
buzzbeergeek | 0 | 8,621,305,013 | 100% | ||
thereikiforest | 0 | 11,017,156,535 | 100% | ||
teacher | 0 | 292,182,820 | 100% | ||
evildeathcore | 0 | 1,993,592,766 | 100% | ||
nawar93 | 0 | 1,464,683,215 | 100% | ||
mycryptomark | 0 | 69,636,848 | 1% | ||
anri-avgustino | 0 | 2,357,830,133 | 100% | ||
devordie | 0 | 364,137,598 | 100% | ||
tinachung | 0 | 955,543,883 | 100% | ||
thomasgutierrez | 0 | 266,390,234 | 100% | ||
timewizard | 0 | 203,747,741 | 100% | ||
giovis | 0 | 692,252,547 | 100% | ||
dracosalieri | 0 | 883,208,010 | 100% | ||
ahmedmars | 0 | 1,193,523,024 | 100% | ||
dr-boo | 0 | 1,193,518,979 | 100% | ||
deanpress | 0 | 0 | 100% | ||
tasialyn | 0 | 0 | 100% | ||
washways | 0 | 0 | 100% |
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!
author | aaronsuncamacho |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t175329845z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"busy/1.0.0"} |
created | 2017-04-06 17:53:30 |
last_update | 2017-04-06 17:53:30 |
depth | 1 |
children | 1 |
last_payout | 2017-04-13 17:53:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,591 |
author_reputation | 890,017,104,474 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,956,573 |
net_rshares | 195,617,479,135 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,444,462 | 100% | ||
ausbitbank | 0 | 152,695,809,567 | 100% | ||
krystle | 0 | 37,483,133,416 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 730,011,165 | 100% |
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 :)
author | ausbitbank |
---|---|
permlink | re-aaronsuncamacho-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t010537681z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-07 01:05:36 |
last_update | 2017-04-07 01:05:36 |
depth | 2 |
children | 0 |
last_payout | 2017-04-14 01:05:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,959,242 |
net_rshares | 25,462,677,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 25,462,677,779 | 100% |
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.
author | andu |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t100423488z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 10:04:27 |
last_update | 2017-04-06 10:04:27 |
depth | 1 |
children | 2 |
last_payout | 2017-04-13 10:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 246 |
author_reputation | 5,355,583,123,081 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,670 |
net_rshares | 196,307,394,664 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,424,510 | 100% | ||
ausbitbank | 0 | 152,684,415,741 | 100% | ||
krystle | 0 | 37,483,133,416 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 1,431,340,472 | 100% |
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.
author | ausbitbank |
---|---|
permlink | re-andu-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t102357819z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://wordpress.org/plugins/steemit-feed/"],"app":"steemit/0.1"} |
created | 2017-04-06 10:23:57 |
last_update | 2017-04-06 10:23:57 |
depth | 2 |
children | 1 |
last_payout | 2017-04-13 10:23:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 534 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,763 |
net_rshares | 83,272,750,024 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andu | 0 | 58,319,325,800 | 100% | ||
faddat | 0 | 24,953,424,224 | 100% |
didn't know about it either but yea, I don't think it's fully compatible now and also, not sure how it looks.
author | andu |
---|---|
permlink | re-ausbitbank-re-andu-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t163531820z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 16:35:36 |
last_update | 2017-04-06 16:35:36 |
depth | 3 |
children | 0 |
last_payout | 2017-04-13 16:35:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 5,355,583,123,081 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,956,024 |
net_rshares | 199,948,404,567 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,444,462 | 100% | ||
ausbitbank | 0 | 156,246,874,906 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 744,909,352 | 100% |
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 
author | ausbitbank |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t131835056z |
category | steemdev |
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"} |
created | 2017-04-06 13:18:36 |
last_update | 2017-04-06 13:18:36 |
depth | 1 |
children | 0 |
last_payout | 2017-04-13 13:18:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 325 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,954,703 |
net_rshares | 25,462,677,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 25,462,677,779 | 100% |
Have you tried @ontofractal solution with glastnot?
author | cryptoctopus |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t103713868z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["ontofractal"],"app":"steemit/0.1"} |
created | 2017-04-06 10:37:15 |
last_update | 2017-04-06 10:37:15 |
depth | 1 |
children | 1 |
last_payout | 2017-04-13 10:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 365,406,972,531,657 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,835 |
net_rshares | 191,962,421,361 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,424,510 | 100% | ||
ausbitbank | 0 | 149,133,615,375 | 100% | ||
krystle | 0 | 36,718,171,509 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 1,402,129,442 | 100% |
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
author | ausbitbank |
---|---|
permlink | re-cryptoctopus-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t104625064z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 10:46:24 |
last_update | 2017-04-06 10:46:24 |
depth | 2 |
children | 0 |
last_payout | 2017-04-13 10:46:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 289 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,881 |
net_rshares | 25,462,677,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 25,462,677,779 | 100% |
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.
author | deanpress |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170604t124209113z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-04 12:42:15 |
last_update | 2017-06-04 12:43:24 |
depth | 1 |
children | 2 |
last_payout | 2017-06-11 12:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.536 HBD |
curator_payout_value | 0.503 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 402 |
author_reputation | 109,236,431,371 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,156,250 |
net_rshares | 510,505,258,923 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 502,212,914,605 | 15% | ||
krystle | 0 | 5,965,333,261 | 15% | ||
tarazkp | 0 | 1,570,581,615 | 15% | ||
deanpress | 0 | 756,429,442 | 100% | ||
wolfeblog | 0 | 0 | 100% |
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.
author | jesta | ||||||
---|---|---|---|---|---|---|---|
permlink | re-deanpress-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170604t124209113z-201765t04246703z | ||||||
category | steemdev | ||||||
json_metadata | {"app":"chainbb/0.1","format":"markdown+html","tags":[]} | ||||||
created | 2017-06-05 04:42:48 | ||||||
last_update | 2017-06-05 04:42:48 | ||||||
depth | 2 | ||||||
children | 1 | ||||||
last_payout | 2017-06-12 04:42:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.244 HBD | ||||||
curator_payout_value | 0.107 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 246 | ||||||
author_reputation | 140,605,453,893,072 | ||||||
root_title | "Display your steem posts on your domain (free code, hosting and guide)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 4,194,647 | ||||||
net_rshares | 398,953,129,611 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoctopus | 0 | 397,907,808,133 | 100% | ||
vaultoro | 0 | 0 | 100% | ||
redpill | 0 | 288,892,036 | 100% | ||
deanpress | 0 | 756,429,442 | 100% |
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.
author | deanpress |
---|---|
permlink | re-jesta-re-deanpress-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-201765t04246703z-20170605t110958375z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-05 11:10:03 |
last_update | 2017-06-05 11:10:03 |
depth | 3 |
children | 0 |
last_payout | 2017-06-12 11:10:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 266 |
author_reputation | 109,236,431,371 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,206,137 |
net_rshares | 0 |
That got my increasingly weak upvote. THANKYOUTHANKYOUTHANKYOUTHANKYOU! I owe you a review, and will comment on the source.
author | faddat |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170408t180719365z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-08 18:07:18 |
last_update | 2017-04-08 18:07:18 |
depth | 1 |
children | 0 |
last_payout | 2017-04-15 18:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 36,581,868,473,026 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,972,012 |
net_rshares | 191,781,531,199 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,156,479,770 | 100% | ||
ausbitbank | 0 | 149,202,724,511 | 100% | ||
krystle | 0 | 37,483,133,416 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 715,112,977 | 100% |
Great work! I'm also on my path for learning modern web dev stuff. Why should one learn MongoDB?
author | igster |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t123847166z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 12:39:00 |
last_update | 2017-04-06 12:39:00 |
depth | 1 |
children | 1 |
last_payout | 2017-04-13 12:39:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 17,415,198,441,969 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,954,463 |
net_rshares | 191,275,605,654 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,424,510 | 100% | ||
ausbitbank | 0 | 149,133,816,133 | 100% | ||
krystle | 0 | 36,718,171,509 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 715,112,977 | 100% |
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>
author | ausbitbank |
---|---|
permlink | re-igster-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t125118559z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://en.wikipedia.org/wiki/MEAN_(software_bundle)","https://steemdata.com/guide"],"app":"steemit/0.1"} |
created | 2017-04-06 12:51:15 |
last_update | 2017-04-06 12:51:15 |
depth | 2 |
children | 0 |
last_payout | 2017-04-13 12:51:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 502 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,954,530 |
net_rshares | 25,462,677,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 25,462,677,779 | 100% |
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 :)
author | jesta |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t165019913z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 16:50:18 |
last_update | 2017-04-06 16:55:12 |
depth | 1 |
children | 2 |
last_payout | 2017-04-13 16:50:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 566 |
author_reputation | 140,605,453,893,072 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,956,107 |
net_rshares | 208,267,896,200 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,444,462 | 100% | ||
ausbitbank | 0 | 152,695,809,567 | 100% | ||
krystle | 0 | 37,483,133,416 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 744,909,352 | 100% | ||
frankbacon | 0 | 12,635,518,878 | 100% |
Thanks mate, will update the post to correct this in a bit :)
author | ausbitbank |
---|---|
permlink | re-jesta-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t000401384z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-07 00:04:00 |
last_update | 2017-04-07 00:04:00 |
depth | 2 |
children | 0 |
last_payout | 2017-04-14 00:04:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,958,968 |
net_rshares | 0 |
Awesome stuff! @ausbitbank AND @jesta. Both your efforts are greatly appreciated! 
author | frankbacon |
---|---|
permlink | re-jesta-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t031034309z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["ausbitbank","jesta"],"image":["http://i.imgur.com/LuNVW3H.jpg"],"app":"steemit/0.1"} |
created | 2017-04-07 03:10:45 |
last_update | 2017-04-07 03:10:45 |
depth | 2 |
children | 0 |
last_payout | 2017-04-14 03:10:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 36,630,927,301,955 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,959,868 |
net_rshares | 196,326,949,506 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,444,462 | 100% | ||
ausbitbank | 0 | 152,737,460,108 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 112,040,262 | 100% | ||
steemleak | 0 | 744,909,352 | 100% |
https://j-stuhlman.github.io/
author | joseph |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170410t012748083z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://j-stuhlman.github.io/"],"app":"steemit/0.1"} |
created | 2017-04-10 01:27:42 |
last_update | 2017-04-10 01:27:42 |
depth | 1 |
children | 1 |
last_payout | 2017-04-17 01:27:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.117 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 381,890,490,550,578 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,980,803 |
net_rshares | 1,361,172,383,811 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joseph | 0 | 623,136,181,461 | 100% | ||
christoph3 | 0 | 3,657,702,197 | 100% | ||
picokernel | 0 | 230,942,987,623 | 100% | ||
ausbitbank | 0 | 131,513,603,353 | 100% | ||
krystle | 0 | 33,665,245,321 | 100% | ||
dirty.hera | 0 | 280,100,657 | 100% | ||
steemleak | 0 | 655,520,229 | 100% | ||
tamersameeh | 0 | 753,588,234 | 100% | ||
cube48 | 0 | 336,567,454,736 | 100% |
If you update, all of your images will work now :)
author | ausbitbank |
---|---|
permlink | re-joseph-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t012447853z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-11 01:24:51 |
last_update | 2017-04-11 01:24:51 |
depth | 2 |
children | 0 |
last_payout | 2017-04-18 01:24:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,988,221 |
net_rshares | 0 |
amazing job!
author | kingscrown |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t142817254z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 14:28:21 |
last_update | 2017-04-06 14:28:21 |
depth | 1 |
children | 0 |
last_payout | 2017-04-13 14:28:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 2,116,412,664,792,693 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,955,139 |
net_rshares | 363,780,763,021 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kingscrown | 0 | 209,219,374,852 | 100% | ||
christoph3 | 0 | 4,484,424,510 | 100% | ||
ausbitbank | 0 | 149,137,770,157 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 715,112,977 | 100% |
Great job! I love seeing simple solutions like this.
author | lukestokes |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t124152545z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-07 12:41:51 |
last_update | 2017-04-07 12:41:51 |
depth | 1 |
children | 0 |
last_payout | 2017-04-14 12:41:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 556,640,380,599,219 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,962,291 |
net_rshares | 187,531,400,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,297,592,609 | 100% | ||
ausbitbank | 0 | 145,632,463,492 | 100% | ||
krystle | 0 | 36,718,171,509 | 100% | ||
dirty.hera | 0 | 168,060,394 | 100% | ||
steemleak | 0 | 715,112,977 | 100% |
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!
author | meesterboom |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t075628476z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 07:56:30 |
last_update | 2017-04-06 07:56:30 |
depth | 1 |
children | 2 |
last_payout | 2017-04-13 07:56:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 454 |
author_reputation | 1,798,457,540,569,298 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,158 |
net_rshares | 735,159,954,809 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,671,275,531 | 100% | ||
ausbitbank | 0 | 159,786,016,474 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 1,460,551,502 | 100% | ||
frankbacon | 0 | 12,382,808,500 | 100% | ||
bleujay | 0 | 518,387,126,955 | 100% |
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>
author | ausbitbank |
---|---|
permlink | re-meesterboom-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t080711185z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"image":["https://preview.ibb.co/feoSLa/Screenshot_20170406_180239.png"],"links":["https://ibb.co/gK7yRF"],"app":"steemit/0.1"} |
created | 2017-04-06 08:07:15 |
last_update | 2017-04-06 08:07:15 |
depth | 2 |
children | 1 |
last_payout | 2017-04-13 08:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,192 |
net_rshares | 24,953,424,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 24,953,424,224 | 100% |
Aargh, I was being a doofus. I should have checked my mobile! All working splendidly well! Again, a great walkthrough!
author | meesterboom |
---|---|
permlink | re-ausbitbank-re-meesterboom-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t081302832z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 08:13:09 |
last_update | 2017-04-06 08:13:09 |
depth | 3 |
children | 0 |
last_payout | 2017-04-13 08:13:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 1,798,457,540,569,298 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,215 |
net_rshares | 200,839,218,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,671,275,531 | 100% | ||
ausbitbank | 0 | 156,235,216,107 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 1,460,551,502 | 100% |
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.
author | rebeccamorgan |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t232912938z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 23:29:21 |
last_update | 2017-04-06 23:29:21 |
depth | 1 |
children | 0 |
last_payout | 2017-04-13 23:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 13,599,545,643,047 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,958,783 |
net_rshares | 157,910,265,194 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,484,444,462 | 100% | ||
ausbitbank | 0 | 152,695,809,567 | 100% | ||
steemleak | 0 | 730,011,165 | 100% |
I wish the functions of steemit could show up there also like upvoting, RS etc., etc.
author | steemitqa |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045335558z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-07 04:53:36 |
last_update | 2017-04-07 04:53:36 |
depth | 1 |
children | 3 |
last_payout | 2017-04-14 04:53:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 22,135,803,163,402 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,960,257 |
net_rshares | 200,323,223,840 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,858,148,167 | 100% | ||
ausbitbank | 0 | 156,247,990,474 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 744,909,352 | 100% |
Give it time, ill get back into coding later tonight and should be able to get voting going at least
author | ausbitbank |
---|---|
permlink | re-steemitqa-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045810288z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-07 04:58:12 |
last_update | 2017-04-07 04:58:12 |
depth | 2 |
children | 2 |
last_payout | 2017-04-14 04:58:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,960,273 |
net_rshares | 24,953,424,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
faddat | 0 | 24,953,424,224 | 100% |
Cool man! I'll be watching this. If it works , I'm going to build out my http://thedailysteemit.com/ website with it.
author | steemitqa |
---|---|
permlink | re-ausbitbank-re-steemitqa-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170407t045950623z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["http://thedailysteemit.com/"],"app":"steemit/0.1"} |
created | 2017-04-07 04:59:51 |
last_update | 2017-04-07 04:59:51 |
depth | 3 |
children | 1 |
last_payout | 2017-04-14 04:59:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 22,135,803,163,402 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,960,277 |
net_rshares | 191,063,109,880 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,297,592,609 | 100% | ||
ausbitbank | 0 | 149,149,274,203 | 100% | ||
krystle | 0 | 36,718,171,509 | 100% | ||
dirty.hera | 0 | 168,060,394 | 100% | ||
steemleak | 0 | 730,011,165 | 100% |
For some reasons I had missed that post. This is really awesome work!
author | teamsteem |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170408t002605559z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-08 00:25:57 |
last_update | 2017-04-08 00:25:57 |
depth | 1 |
children | 0 |
last_payout | 2017-04-15 00:25:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 284,804,541,406,803 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,967,057 |
net_rshares | 196,113,588,040 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 156,289,686,077 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 168,060,394 | 100% | ||
steemleak | 0 | 744,909,352 | 100% | ||
steemnews24 | 0 | 662,836,895 | 100% |
This is a great solution for bloggersandgrandmas.life, thanks! :)
author | tuck-fheman |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t080429372z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 08:04:33 |
last_update | 2017-04-06 08:04:33 |
depth | 1 |
children | 1 |
last_payout | 2017-04-13 08:04:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 345,778,813,561,569 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,179 |
net_rshares | 216,772,827,854 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,671,275,531 | 100% | ||
ausbitbank | 0 | 159,786,016,474 | 100% | ||
krystle | 0 | 38,248,095,322 | 100% | ||
dirty.hera | 0 | 224,080,525 | 100% | ||
steemleak | 0 | 1,460,551,502 | 100% | ||
frankbacon | 0 | 12,382,808,500 | 100% |
Ahaha that's a random domain, happy to help :)
author | ausbitbank |
---|---|
permlink | re-tuck-fheman-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170406t081124512z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-06 08:11:27 |
last_update | 2017-04-06 08:11:27 |
depth | 2 |
children | 0 |
last_payout | 2017-04-13 08:11:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,953,205 |
net_rshares | 173,419,130,984 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tuck-fheman | 0 | 148,465,706,760 | 100% | ||
faddat | 0 | 24,953,424,224 | 100% |
https://decentraal.github.io/ Works fine for me :) ... thanks!
author | verelst |
---|---|
permlink | re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170410t112040211z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://decentraal.github.io/"],"app":"steemit/0.1"} |
created | 2017-04-10 11:20:42 |
last_update | 2017-04-10 11:20:42 |
depth | 1 |
children | 3 |
last_payout | 2017-04-17 11:20:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 4,582,676,141,980 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,983,195 |
net_rshares | 186,062,167,868 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
verelst | 0 | 10,786,740,526 | 100% | ||
christoph3 | 0 | 3,990,220,579 | 100% | ||
ausbitbank | 0 | 135,068,285,627 | 100% | ||
krystle | 0 | 35,195,483,745 | 100% | ||
dirty.hera | 0 | 336,120,788 | 100% | ||
steemleak | 0 | 685,316,603 | 100% |
If you update all of your post images will work now :)
author | ausbitbank |
---|---|
permlink | re-verelst-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t005247469z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-04-11 00:52:51 |
last_update | 2017-04-11 00:52:51 |
depth | 2 |
children | 2 |
last_payout | 2017-04-18 00:52:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 287,009,709,424,827 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,988,033 |
net_rshares | 0 |
Update ok! Have done some modification myself... This is how it looks now... https://decentraal.github.io/ http://tinyimg.io/i/zrR0lQs.jpg
author | verelst |
---|---|
permlink | re-ausbitbank-re-verelst-re-ausbitbank-display-your-steem-posts-on-your-domain-free-code-and-guide-20170411t064127090z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"image":["http://tinyimg.io/i/zrR0lQs.jpg"],"links":["https://decentraal.github.io/"],"app":"steemit/0.1"} |
created | 2017-04-11 06:41:33 |
last_update | 2017-04-11 06:41:33 |
depth | 3 |
children | 1 |
last_payout | 2017-04-18 06:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 4,582,676,141,980 |
root_title | "Display your steem posts on your domain (free code, hosting and guide)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,989,486 |
net_rshares | 208,926,651,734 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
christoph3 | 0 | 4,156,500,548 | 100% | ||
ausbitbank | 0 | 145,735,404,825 | 100% | ||
krystle | 0 | 37,490,841,380 | 100% | ||
dirty.hera | 0 | 168,060,394 | 100% | ||
steemleak | 0 | 715,112,977 | 100% | ||
iflagtrash | 0 | 20,660,731,610 | 1% |