How do we setup our Steem witness and seed nodes if we have no Ubuntu Linux experience? What are the exact commands we need to use to become a witness for Steem and get our servers online? Hopefully this guide will make it ridiculously easy to get started in the command line interface even without ever having used Linux before! To get to this tutorial, here are a few posts that will lay the foundation to go straight through this guide! Skip ahead to just view the commands! 1. **Launch a Steem Witness Today** at https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today shows the list of posts most helpful to me for starting my Steem witness with **no previous experience using Ubuntu Linux** combined with an introduction to what is a witness, why become one, who are witnesses, and what else do we need to do besides maintain the server? 2. **Steem Witness Basic Training** at https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training goes deeper into everything about being a Steem witness with answers to every single question I encountered during my first months of learning to be a witness combined with 11 steps to start the server from zero. The only thing missing from that post is the exact list of commands and troubleshooting which I share in this post! 3. **How to Start Getting Steem Witness Votes** at https://steemit.com/witness-category/@jerrybanfield/how-to-start-getting-steem-witness-votes looks inside the most challenging part of being a witness in earning votes. I share what I did to get started and now primarily write posts like this to earn more votes along with participating in the comments, steemit.chat, and steemspeak.com. 4. **Steem Witness 14,542 Reporting For Duty** announces the launch of my witness server and campaign at https://steemit.com/witness-category/@jerrybanfield/steem-witness-14-542-reporting-for-duty which I hope is useful in creating a post to use as the URL when broadcasting a new witness to the network! To begin, we need hosting and access to our Ubuntu Linux server usually with a username or root plus a password. Long story short I have my hosting with @privex through witness @someguy123 with the server specs listed below. See more hosting options in [Launch a Steem Witness today](https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today). ## My Witness and Seed Server Specifications! 64GB DDR4 RAM 2x Intel Xeon E5-2630 V3 2x 240GB SSDs 1Gbit/s connection These servers are capable of handling a top 20 witness load of a block every 63 seconds with minimal misses and are much higher than are needed to run the very basics at a level less than the top 20! If we want to make an effective campaign, it is easier to setup and launch our witness with servers able to serve at the very top instead of starting with something cheap and promising to upgrade. In the event of a disaster or attack, every witness ideally would have servers capable of processing a block every 63 seconds ESPECIALLY every witness in the top 30 and preferably witnesses in the top 50. # Guide Tips ___ * All commands will be shown in blockquotes starting with the passwd command below! * Edits to files will also be shown in blockquotes. * All comments will be shown next the text. * This post shares what I did that worked for me as a beginner after spending weeks reading guides from those with much more advanced knowledge. If you are a Linux expert reading this, I invite you to make your own tutorial and/or feedback on the steps I take!  # Ubuntu Linux Absolute Beginner Basics! ___ * Left click highlights and copies text. * Right click pasts text. # Access the Server! ___ * On Windows 10, download Putty at [https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html) to get connected. Enter your username and IP address to get started.  * On Mac, go to Applications > Utilities, and open Terminal. Make an SSH connection to the server by using the syntax below. Substitute root for your username if needed, say yes to connect, and then enter the password: > ssh root@IPaddress # Update and Secure Ubuntu Linux ___ ___ ## Update Server Password! ___ With access to our server, we start by changing the password a long secure password. Generate and store the password securely in something like https://www.lastpass.com/ or a password manager to avoid losing access to the server or having the password guessed. > passwd Try copying and pasting the password once and then typing it again to verify it works. Test login with new password by reconnecting to the server. > logout ## Download Ubuntu Linux Updates and Apps! Switch to root directory to get to work! > cd / Download the updates new programs and text editors! > sudo apt-get update Install text editor nano > sudo apt-get install nano Change directories and copy the sshd_config file into a new file in case of mistakes with command *cp*! > cd /etc/ssh/ > sudo cp sshd_config sshd_config_0 List the files in the directory to verify the copy and get comfortable using *ls* to see inside the directory! > ls Open the sshd_config file to edit the port and disable root login > sudo nano /etc/ssh/sshd_config Change to PermitRootLogin to no because this will disable anyone logging into the server as the root. DO NOT DO THIS if you have been using root so far up until this point. Instead, stop and create a new user before continuing. > PermitRootLogin no Change the port number to a new number between 1000 and 65535 because this will make it difficult to find the port to login on. > Port # Use control + o to save and enter to confirm then control + x to exit! > sudo service ssh restart ## Create Public and Private Keys for SSH Login! ___ 1. Get PuttyGen.exe at [https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe](https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe) 2. Make a strong passphrase for additional security otherwise anyone with the private key file can login 3. Copy the "Public key for pasting" into a pub_key.txt file with notepad. 4. Save public key calling it pub_key. 5. Save private key as private.ppk We now have three files that help us log into our server which are 1. pubkey.txt 2. pub_key 3. private.ppk Now we need to get this setup on our server. ## Add the Public Key to the Ubuntu Linux Server! ___ Make .ssh directory or if it already exists and an error comes up, continue to step 2. > mkdir ~/.ssh Modify folder access. > chmod 700 ~/.ssh Change directory into the folder. > cd ~/.ssh Create or read a file for the key. If blank, paste the public_key.txt in. Save/overwrite the file and close. > nano authorized_keys Load the updates. > sudo service ssh restart Set so only root can access. > chmod 600 authorized_keys > logout ## Test login with the key to verify it works! Go to SSH and auth in Putty. Put the private key file in along with the rest of the server info and save as a preset.  Verify the key works to log in so we can continue by disabling password logins. ## Disable Password Logins! ___ Open the sshd_config to disable password access. > sudo nano /etc/ssh/sshd_config Remove if commented out and overwrite and exit. > PasswordAuthentication no Load new protocols. > sudo service ssh restart ## Remove IPv6 Listening ___ Add AddressFamily inet to the end of the sshd_config file to disable IPv6 listening. > echo 'AddressFamily inet' | sudo tee -a /etc/ssh/sshd_config > sudo service ssh restart ## Install and turn on UFW Install Uncomplicated Firewall and proceed with typing y to continue the installation. > sudo apt-get install ufw Check the status to confirm it is inactive. > sudo ufw status > sudo ufw default allow outgoing > sudo ufw default deny incoming > sudo ufw allow ssh Set the UFW to allow a customportnumber equals to the port selected to connect with ssh earlier. For a webserver port 80 or whatever is set needs to be open along with any other program wanting access. > sudo ufw allow # > sudo ufw enable ## Avoid Block Misses with NTP to Sync Time! ___ > sudo apt-get install ntp > cd /etc Copy the original file in case of problems. > sudo cp ntp.conf ntp0.conf Open the conf file in text editor nano. > sudo nano /etc/ntp.conf Add these at the end and overwrite! > minpoll 5 > maxpoll 7 Enable and restart. > sudo systemctl enable ntp > sudo systemctl restart ntp We now have the server ready to use for a seed node or a witness node! I started with the seed node because it was good practice and a lot easier. While a seed node is technically not required to be a witness, it is highly recommended if we want people to take our campaign for witness seriously and vote for us! # Seed Setup! ___ ___ Install Steem Docker by @someguy123 to make installation simple! > sudo apt install git curl wget > sudo git clone https://github.com/Someguy123/steem-docker.git > cd steem-docker > ./run.sh install_docker Logout and log back in to get started. > logout Change directory to steem-docker to run commands. > cd steem-docker >./run.sh install After the install is complete, download the existing blocks to speed up setup! >./run.sh dlblocks When the download finishes, adjust the shared memory. 8 GB is minimum and 12 GB at least is recommended. Do not use more than you have! > sudo ./run.sh shm_size 16G Replay to get up to date! > ./run.sh replay Finished with at 100% and showing the newest blocks! Check with > ./run.sh logs That is it for a seed node! To get a seed node added to the list at https://status.steemnodes.com/ contact @wackou who maintains this list on [steemit.chat](https://steemit.chat/direct/wackou). # Witness Setup ___ ___ Setting the seed node up is great practice for bringing the witness node online because almost all of the steps to do the seed are the same along with a lot more to do the witness! If we follow the steps the way I did, we setup the seed node completely first to gain confidence and then start with the witness node from the beginning using the same process for security that we did on the seed node stopping just at the seed node steps and skipping down here instead! Ready? ## Install Steem Docker and Prepare The CLI Wallet. ___ > sudo apt update > sudo apt install git curl wget > git clone https://github.com/Someguy123/steem-docker.git > cd steem-docker > ./run.sh install_docker > logout > cd steem-docker > ./run.sh install > ./run.sh dlblocks Wait for everything to finish! If permission errors here or a previous step, back up one level to home/user and chown user:user -R steem-docker to fix. Next, we get to work making our Command Line Interface or CLI wallet because we need to manage our Steem account with the witness! > ./run.sh remote_wallet > suggest_brain_key Save the public and private key securely for later. Read all the CLI wallet commands at https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0. Exit the wallet with Control + D and then change the shared memory to a minimum of 8G or recommended at least 12G. I use 16 GB because I have enough memory. > sudo ./run.sh shm_size 16G Overwrite and exit the file to finish. ## Edit Config.ini to Prepare to Launch! ___ Make a copy in case of a mistake! > cp data/witness_node_data_dir/config.ini data/witness_node_data_dir/config0.ini Open the config.ini file to edit. > nano data/witness_node_data_dir/config.ini Edit in the following format with your witness name instead of mine along with the private key from the CLI wallet saved earlier and the shared file size chosen. >witness = "jerrybanfield" > private-key = 5xxxxxxxxxxxxx > shared-file-size = 16G In the config.ini, find p2p-endpoint = 0.0.0.0:2001 and delete it because we are not running a seed! Save and close the file with press CTRL-X on nano and hitting enter to say yes to saving. Finally, we disable port forwarding for seeds! > nano .env With the file blank, add these lines and save > PORTS= > DOCKER_NAME=witness ## Get Online! ___ We are now nearly ready to replay, get synced, and broadcast our witness! I was so excited to do this and hope you are too! First, we need to replay the blockchain as we did on the seed to get updated. > ./run.sh replay Wait until it is fully synced and bringing new transactions like this. > ./run.sh logs 1050512ms th_a application.cpp:507 handle_block ] Got 31 transactions on block 13566376 by jerrybanfield-- latency: 141 ms For best performance, check active seed nodes at https://status.steemnodes.com/ by pinging each and building a list in the witness_node_data_dir/config.ini file of the lowest latency nodes. Then For example, > ping seed.jerrybanfield.com Then edit the seed node list to those pinged successfully at the best speed. > nano data/witness_node_data_dir/config.ini If a server restart is needed because of updating the config file, do a quick restart! > ./run.sh restart Now time to open the wallet and broadcast our witness which is the final step to getting online! This assumes you wrote a post to include in the URL which you have ready to use. If not, use a profile link and update it with the new post or get the post written first! > ./run.sh wallet Now we need to make a super secure password to keep our CLI wallet locked because anyone getting into it can use it with our active key! > set_password "mysupersecurepass" > unlock "mysupersecurepass" Import the active key from our wallet on steemit.com under the "permissions" tab and replace with your own. > import_key 5zzzzzzzzzzzz With the active key imported, we can now use the CLI wallet to get our witness added to the list! Here is the command I used with switching out the public key for my own and the username and the URL. Here was my exact broadcast. Switch your username, url, and PUBLIC signing key in place of mine. > update_witness "jerrybanfield" "https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training" "STM7462wuSatDmQ6QGkuZPjohJrp2S79xgNjtsDfDgoB2c6HgaAEf" {"account_creation_fee":"0.200 STEEM","maximum_block_size":65536,"sbd_interest_rate":0} true IF this error comes up 10 assert_exception: Assert Exception !ec: websocket send failed: invalid state {"msg":"invalid state"} th_a websocket.cpp:164 send_message Then Control + D to close the wallet and open it again. Immediately broadcast the witness message again before the wallet locks. ## Price Feed Setup! ___ Witness are required to publish a price feed that pegs the SBD to Steem. Here is the easiest way to do it automatically. Start by changing directory to the home username such as > cd /home/jerry Download Steemfeed from GitHub. > git clone https://github.com/Someguy123/steemfeed-js.git Create the steemfeed-js directory to install in. > cd steemfeed-js Copy the example config file and add witness name plus active key. > cp config.example.json config.json > nano config.json Close nano and run docker to build the feed. > docker build -t steemfeed-js Make sure the witness is synced first before the next step! > docker run -itd --rm --name feed steemfeed-js View results at > docker logs steemfeed ## Done Setting Up! ___ The beginning of our witness journey is complete and our witness should now be online! Verify at https://steemd.com/@jerrybanfield except switch your username for mine and look for the witness info in the lower left. It should say witness with an ID and the data submitted. Below I will share some trouble shooting and basic errors with solutions I have encountered in the first month of being a witness that I hope are helpful! # Problems and Solutions! ___ ___ ## Fastest Way to Get Help! ___ Join the witness channel at https://steemit.chat/channel/witness and start asking questions. I have received consistent help there from @someguy123 which has helped me solve most problems quickly! ## CLI Wallet Issues! ___ If we lose or update our public key, try to dump the keys again including public and private within the CLI wallet using > list_keys If we use multiple wallets or want to make sure our account is synced correctly, use the commend below immediately after unlocking to verify the correct account is synced in the CLI wallet. > list_my_accounts control + D to exit the wallet IF this error comes up 10 assert_exception: Assert Exception !ec: websocket send failed: invalid state {"msg":"invalid state"} th_a websocket.cpp:164 send_message We waited too long to send the message after unlocking the wallet. Thanks to @drakos for answering this question and providing the solution! Close the wallet and reopen and then send again immediately to update. View all wallet commands at https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0 ## Miss a block? ___ After a month I just missed my first block fooling around updating my witness after @someguy123 successfully helped me to 19.1 without missing a block. One of the most basic things to do after missing a block is to restart steem-docker in case it crashed. > ./run.sh restart If it doesn't seem to start getting transactions after 5 minutes, then your blockchain or shared memory is corrupted and you might need to ask for help fixing that. If a lot of blocks where missed or one was missed a long time ago, check the logs to see if the blockchain is current. > ./run.sh logs ## Server restart commands ___ If the logs are behind and not getting new transactions, a replay may be needed to catch up after a restart. Avoid running a replay if the logs are current! > ./run.sh shm_size 16G > ./run.sh replay If known reboot needed, avoid replay with > mkdir /home/user/shm > cp -R /dev/shm/* /home/user/shm/ then > ./run.sh shm_size 16G > cp -R /home/username/shm/* /dev/shm/ ## Steemfeed Troubleshooting ___ If the file is changed with a new active key after starting ... > docker build -t steemfeed-js > docker stop steemfeed > docker rm steemfeed > docker run -itd --name=steemfeed steemfeed-js If price feed drops, here is a fix > crontab -e #Add this to the end of the file to help it restart > 0 */2 * * * > docker restart steemfeed # References ___ 1. Your guide to setting up a Witness Server (STEEM-in-a-box HF19) by @someguy123 at https://steemit.com/steem/@someguy123/your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19 2. Complete Witness Installation Guide by @krnel at https://steemit.com/witness-category/@krnel/complete-witness-installation-guide. 3. The REALLY gentle guide to becoming a witness by @personz at https://steemit.com/witness-category/@personz/the-really-gentle-guide-to-becoming-a-witness. # Resources ___ 1. Get help fast in the steemit.chat witness channel at https://steemit.chat/channel/witness. 2. Conductor for automatic failover to a backup witness https://github.com/Netherdrake/conductor. 3. Full command list for Steem docker https://github.com/Someguy123/steem-docker/blob/master/run.sh. 4. Check open ports https://www.yougetsignal.com/tools/open-ports/. 5. Track blocks https://steemdb.com/@jerrybanfield/blocks replace me with your username. 6. Track missed blocks in Steemit.chat https://steemit.chat/channel/witness-blocks. Thank you very much for reading this guide! If you found this helpful, would you please vote for me as a witness at https://steemit.com/~witnesses because it feels good to give back to witnesses that help us setup our own witness? If jerrybanfield is not in the top 50 when voting, please use the box to vote for me and just click vote once. Refresh to verify the vote went through and now appears in the list! [](https://steemit.com/~witnesses) # OR [](https://steemit.com/~witnesses) If you have suggestions for improvements to this guide or would like to let me know what was most helpful, would you please share that in the comments here because that will help me make edits and help others reading to learn more from you? Love, Jerry Banfield
author | jerrybanfield |
---|---|
permlink | get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands |
category | witness |
json_metadata | {"tags":["witness","witness-category","tutorial","steemit","add"],"users":["privex","someguy123","wackou","drakos","krnel","personz"],"image":["https://steemitimages.com/DQmbqLQx2bZihA8bG3UtQuPyc29BAkyUk4X8vBmPYA2uSLM/get%20a%20steem%20witness%20and%20seed%20online.png","https://steemitimages.com/DQmTec9euGpszViqbr8ERNU1BNfz1eaQVA3TcGiETeeuT8e/putty%20initial%20connection.jpg","https://steemitimages.com/DQmU1YXh2FEwbFGHBkmaZksiUaidnKRKGLRMzdR59bfQ1rD/putty%20private%20key%20file.jpg","https://i.gyazo.com/9325a7f4bb4cd0802fd901804a56deaf.gif","https://i.gyazo.com/e41b5378209532d6b282543f780b0278.gif"],"links":["https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today","https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training","https://steemit.com/witness-category/@jerrybanfield/how-to-start-getting-steem-witness-votes","https://steemit.com/witness-category/@jerrybanfield/steem-witness-14-542-reporting-for-duty","https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html","https://www.lastpass.com/","https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe","https://github.com/Someguy123/steem-docker.git","https://status.steemnodes.com/","https://steemit.chat/direct/wackou","https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0","https://github.com/Someguy123/steemfeed-js.git","https://steemd.com/@jerrybanfield","https://steemit.chat/channel/witness","https://steemit.com/steem/@someguy123/your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19","https://steemit.com/witness-category/@krnel/complete-witness-installation-guide","https://steemit.com/witness-category/@personz/the-really-gentle-guide-to-becoming-a-witness","https://github.com/Netherdrake/conductor","https://github.com/Someguy123/steem-docker/blob/master/run.sh","https://www.yougetsignal.com/tools/open-ports/","https://steemdb.com/@jerrybanfield/blocks","https://steemit.chat/channel/witness-blocks","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-08-21 17:15:15 |
last_update | 2017-08-23 14:05:51 |
depth | 0 |
children | 66 |
last_payout | 2017-08-28 17:15:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 189.510 HBD |
curator_payout_value | 35.743 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20,768 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,456,967 |
net_rshares | 54,928,665,877,635 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 115,246,285,241 | 0.4% | ||
sandra | 0 | 21,173,129,879 | 9% | ||
ihashfury | 0 | 3,255,917,724 | 2.34% | ||
boy | 0 | 595,800,643 | 100% | ||
bue-witness | 0 | 726,478,268 | 100% | ||
bunny | 0 | 99,117,689 | 100% | ||
bue | 0 | 27,117,788,323 | 100% | ||
mini | 0 | 318,445,555 | 100% | ||
moon | 0 | 60,732,295 | 100% | ||
jason | 0 | 17,951,325,075 | 6.21% | ||
healthcare | 0 | 118,674,965 | 100% | ||
daniel.pan | 0 | 187,746,577 | 100% | ||
team | 0 | 81,950,824,666 | 10% | ||
hbhades | 0 | 15,814,421,180 | 100% | ||
teamsteem | 0 | 2,205,323,501,732 | 15% | ||
nanzo-scoop | 0 | 496,443,207,602 | 10% | ||
acidyo | 0 | 4,294,296,712,638 | 20% | ||
sunhwa | 0 | 85,289,430 | 10% | ||
rok-sivante | 0 | 943,252,284,211 | 100% | ||
pangur-ban | 0 | 10,363,852,077 | 100% | ||
wongshiying | 0 | 7,099,919,426 | 25% | ||
will-zewe | 0 | 7,374,282,119 | 50% | ||
g-dubs | 0 | 20,581,873,773 | 15% | ||
tee-em | 0 | 36,773,431,971 | 100% | ||
mark-waser | 0 | 50,932,783,229 | 25% | ||
albertogm | 0 | 28,570,503,081 | 100% | ||
geoffrey | 0 | 405,724,084,509 | 25% | ||
angusleung100 | 0 | 3,080,582,551 | 100% | ||
grey580 | 0 | 810,315,753 | 1% | ||
roelandp | 0 | 75,991,208,601 | 1% | ||
ezzy | 0 | 196,521,874,345 | 15% | ||
robrigo | 0 | 305,749,515,815 | 100% | ||
livingfree | 0 | 2,082,268,268,423 | 45% | ||
blockchainbilly | 0 | 32,530,756,368 | 50% | ||
biophil | 0 | 18,268,386,155 | 100% | ||
mapipaz | 0 | 15,938,158,987 | 100% | ||
juvyjabian | 0 | 1,395,425,150 | 3% | ||
arcange | 0 | 34,111,442,140 | 10% | ||
arian1 | 0 | 1,032,294,596 | 100% | ||
coininstant | 0 | 77,605,584,880 | 95% | ||
deboas | 0 | 593,926,082 | 100% | ||
deanliu | 0 | 199,831,638,921 | 25% | ||
raphaelle | 0 | 5,943,910,168 | 10% | ||
daynewright | 0 | 8,163,782,367 | 45% | ||
fatboy | 0 | 2,376,941,514,985 | 100% | ||
youngkim | 0 | 22,863,116,619 | 80% | ||
famunger | 0 | 3,238,350,702,420 | 100% | ||
craigslist | 0 | 80,301,128 | 100% | ||
laoyao | 0 | 8,287,228,386 | 25% | ||
somebody | 0 | 342,871,465,936 | 25% | ||
musicsteem | 0 | 208,959,955,708 | 100% | ||
midnightoil | 0 | 43,434,842,727 | 25% | ||
glitterfart | 0 | 14,713,304,929,762 | 100% | ||
xiaohui | 0 | 231,063,278,577 | 25% | ||
tuukka69 | 0 | 92,596,072 | 100% | ||
oflyhigh | 0 | 567,101,667,887 | 25% | ||
xiaokongcom | 0 | 3,902,120,535 | 25% | ||
kpine | 0 | 4,377,422,970,367 | 30% | ||
mr-meteorologist | 0 | 18,264,581,097 | 100% | ||
bledarus | 0 | 4,245,934,925 | 100% | ||
nextgen622 | 0 | 185,977,070,654 | 25% | ||
rubenalexander | 0 | 92,233,625,945 | 35% | ||
chinadaily | 0 | 64,760,272,640 | 25% | ||
helene | 0 | 62,989,569,406 | 25% | ||
instahater | 0 | 1,654,037,432 | 100% | ||
runaway-psyche | 0 | 38,546,672,442 | 100% | ||
stevescoins | 0 | 9,300,618,008 | 5% | ||
ffcrossculture | 0 | 5,218,646,848 | 25% | ||
ethansteem | 0 | 126,695,397,843 | 25% | ||
sweetsssj | 0 | 3,313,723,464,385 | 10% | ||
someguy123 | 0 | 996,990,334,950 | 100% | ||
inchonbitcoin | 0 | 1,819,608,844,930 | 100% | ||
holoz0r | 0 | 9,357,154,593 | 20% | ||
davidjkelley | 0 | 2,398,463,423 | 25% | ||
digital-wisdom | 0 | 21,129,601,922 | 25% | ||
ethical-ai | 0 | 1,840,890,596 | 25% | ||
jwaser | 0 | 12,830,198,440 | 25% | ||
debmund | 0 | 6,323,450,354 | 100% | ||
profitgenerator | 0 | 9,294,269,839 | 100% | ||
ebargains | 0 | 13,098,480,704 | 10% | ||
mastermel | 0 | 363,627,108,165 | 100% | ||
bwaser | 0 | 3,010,715,770 | 25% | ||
kengin2013 | 0 | 1,424,409,589 | 100% | ||
bitcoinparadise | 0 | 6,481,390,086 | 20% | ||
judas | 0 | 478,729,115 | 50% | ||
ellepdub | 0 | 4,164,306,443 | 25% | ||
herpetologyguy | 0 | 98,333,858,290 | 25% | ||
morgan.waser | 0 | 5,317,481,067 | 25% | ||
handyman | 0 | 2,383,751,789 | 25% | ||
tunnelrat | 0 | 14,392,425,268 | 100% | ||
strong-ai | 0 | 5,972,657,619 | 25% | ||
ziogio | 0 | 4,021,664,908 | 100% | ||
thomasp | 0 | 374,466,010 | 100% | ||
steemtruth | 0 | 106,144,438,985 | 25% | ||
steemjobs | 0 | 593,430,285 | 100% | ||
lalala | 0 | 10,739,412,257 | 25% | ||
black-eye | 0 | 78,125,929 | 100% | ||
amat | 0 | 200,832,722 | 50% | ||
joseluismejia | 0 | 3,702,508,328 | 100% | ||
sweetpea | 0 | 10,122,810,263 | 100% | ||
vegasdavid | 0 | 1,481,549,823 | 100% | ||
johnrenald | 0 | 2,161,294,327 | 100% | ||
devilwsy | 0 | 594,431,210 | 25% | ||
janiceting | 0 | 593,998,586 | 25% | ||
kauslevi | 0 | 6,374,145,683 | 100% | ||
ozymandias | 0 | 3,654,054,345 | 100% | ||
technoprogressiv | 0 | 5,747,245,314 | 25% | ||
guttormf | 0 | 30,053,511,479 | 100% | ||
styleyfrancky | 0 | 2,503,212,610 | 100% | ||
khalilalfamahera | 0 | 11,546,390,050 | 100% | ||
supersnooper221 | 0 | 2,203,889,607 | 100% | ||
vcelier | 0 | 1,812,446,126,091 | 35% | ||
maxnachamkin | 0 | 2,179,795,149 | 100% | ||
leongkhan | 0 | 124,986,786,945 | 50% | ||
master-set | 0 | 268,913,736,114 | 100% | ||
huasipi | 0 | 600,781,755 | 100% | ||
totallycool123 | 0 | 1,691,367,374 | 100% | ||
alanmirza | 0 | 612,902,382 | 100% | ||
dragon40 | 0 | 3,631,052,245 | 10% | ||
geordieprepper | 0 | 1,446,037,690 | 30% | ||
prezident0001 | 0 | 3,743,941,294 | 100% | ||
blackbunny | 0 | 11,013,557,555 | 25% | ||
loreennaa | 0 | 1,796,635,061 | 10% | ||
kotturinn | 0 | 23,860,270,106 | 20% | ||
mytechcrunch | 0 | 11,534,218,176 | 20% | ||
cgame | 0 | 6,933,187,695 | 10% | ||
ripperone | 0 | 396,354,504,424 | 13% | ||
honusurf | 0 | 43,584,740,112 | 95% | ||
lingfei | 0 | 18,138,184,492 | 25% | ||
mattiusmaximus | 0 | 1,158,116,517 | 100% | ||
janreyqm1 | 0 | 3,444,638,549 | 100% | ||
yyyy | 0 | 3,776,490,575 | 25% | ||
decentralizd | 0 | 7,660,356,452 | 2% | ||
beyazpanda91 | 0 | 17,988,246,640 | 100% | ||
teammo | 0 | 70,801,209,232 | 50% | ||
the-oil-guy | 0 | 1,352,223,526 | 25% | ||
carbunco10 | 0 | 92,626,691 | 100% | ||
williams858 | 0 | 136,738,248,869 | 100% | ||
lawrenceho84 | 0 | 7,145,125,125 | 1% | ||
ghostwriter82 | 0 | 51,402,669,357 | 75% | ||
to-tru | 0 | 4,093,533,655 | 100% | ||
fernwehninja | 0 | 16,389,061,871 | 100% | ||
gmichelbkk | 0 | 23,698,195,549 | 100% | ||
funcore | 0 | 76,532,268 | 100% | ||
sharkface | 0 | 67,343,454,644 | 100% | ||
jamhuery | 0 | 6,327,326,007 | 30% | ||
heavenlly | 0 | 1,256,850,577 | 100% | ||
aismor | 0 | 447,566,319 | 100% | ||
aarellanes | 0 | 30,859,701,186 | 100% | ||
tbnfl4sun | 0 | 5,596,262,049 | 15% | ||
greatmb | 0 | 235,347,057 | 32% | ||
marxrab | 0 | 2,416,513,066 | 6% | ||
sarasate | 0 | 98,622,832,407 | 100% | ||
datkrazykid | 0 | 1,748,309,241 | 100% | ||
apotdevin | 0 | 619,690,989 | 100% | ||
msg768 | 0 | 6,719,099,066 | 24% | ||
radagast | 0 | 4,070,938,402 | 5% | ||
evanfravert | 0 | 25,200,865,353 | 100% | ||
pipurilla | 0 | 21,588,735,479 | 30% | ||
figox | 0 | 58,483,637,391 | 100% | ||
contentguy | 0 | 3,998,047,213 | 100% | ||
kungfutea | 0 | 31,463,492,748 | 100% | ||
vinnu | 0 | 8,048,566,952 | 100% | ||
c86l | 0 | 576,731,354 | 100% | ||
aarkay | 0 | 348,677,448 | 100% | ||
marcusxman | 0 | 142,271,658 | 1% | ||
arnel | 0 | 5,816,077,957 | 100% | ||
emcvay | 0 | 819,945,974 | 10% | ||
juliank | 0 | 432,047,269,345 | 100% | ||
mrwalt | 0 | 11,161,593,561 | 1% | ||
salvis | 0 | 24,543,946,204 | 100% | ||
josequintana | 0 | 3,029,104,172 | 100% | ||
sv67216721 | 0 | 3,932,452,056 | 5% | ||
swenger | 0 | 20,112,392,305 | 50% | ||
pugriffs | 0 | 108,869,353 | 100% | ||
raffael | 0 | 23,465,470,001 | 50% | ||
vizualsamuri | 0 | 15,544,700,240 | 30% | ||
manuel78 | 0 | 110,895,513 | 1% | ||
locoestaban | 0 | 10,259,504,353 | 100% | ||
apsistrading | 0 | 567,379,488 | 100% | ||
yacov | 0 | 37,669,525,723 | 100% | ||
ylgv | 0 | 2,422,113,573 | 30% | ||
mandagoi | 0 | 24,930,205,145 | 26% | ||
jo3potato | 0 | 23,221,905,835 | 100% | ||
etcbits | 0 | 143,166,766 | 100% | ||
cikxaijen | 0 | 3,469,442,024 | 100% | ||
cryptocat | 0 | 775,054,638 | 100% | ||
indiantraveller | 0 | 12,131,317,190 | 100% | ||
stackin | 0 | 8,721,225,619 | 1% | ||
bp423 | 0 | 18,200,411,342 | 100% | ||
wthomas | 0 | 78,200,564,741 | 30% | ||
jerrybanfield | 0 | 1,746,134,630,755 | 100% | ||
ojaber | 0 | 22,007,593,682 | 100% | ||
bitwithblake | 0 | 619,954,251 | 100% | ||
omwith | 0 | 42,812,146,765 | 100% | ||
dinoo | 0 | 20,660,628,149 | 33% | ||
greyman | 0 | 21,455,685,760 | 90% | ||
cryptoted | 0 | 28,183,803,152 | 100% | ||
ebejammin | 0 | 639,081,937,797 | 100% | ||
rgba | 0 | 14,175,564,095 | 100% | ||
arqetype | 0 | 16,872,199,039 | 100% | ||
nicolicreer | 0 | 24,018,987,592 | 100% | ||
carwilva | 0 | 3,586,025,389 | 10% | ||
coffeetime | 0 | 2,566,461,153 | 100% | ||
fire-fly | 0 | 637,600,156 | 100% | ||
charles1 | 0 | 10,014,376,950 | 25% | ||
walterz | 0 | 29,181,660,796 | 100% | ||
tizswa | 0 | 45,596,514,971 | 50% | ||
holdonamin | 0 | 16,628,840,586 | 100% | ||
maochitse | 0 | 3,792,374,973 | 100% | ||
galberto | 0 | 2,806,504,292 | 100% | ||
shikika | 0 | 2,552,199,208 | 100% | ||
viralcutz | 0 | 2,571,127,465 | 40% | ||
edwsg | 0 | 621,340,000 | 100% | ||
xervantes | 0 | 38,847,348,235 | 50% | ||
berlinmoonlight | 0 | 9,180,811,660 | 100% | ||
keepinitcrypto | 0 | 2,331,612,345 | 100% | ||
cryptohustler | 0 | 12,023,153,303 | 100% | ||
alexsandrbrat | 0 | 359,321,600 | 100% | ||
nealwalters | 0 | 4,951,207,373 | 100% | ||
suitablybored | 0 | 2,305,898,726 | 100% | ||
bsameep | 0 | 7,823,537,912 | 100% | ||
klaabu | 0 | 621,795,014 | 100% | ||
eviljedi | 0 | 2,962,450,529 | 100% | ||
drwom | 0 | 13,082,757,041 | 60% | ||
exec | 0 | 20,625,311,257 | 25% | ||
eval | 0 | 208,184,677 | 25% | ||
michaelwilshaw | 0 | 2,377,586,414 | 100% | ||
justinejuly | 0 | 480,288,003 | 100% | ||
justiceak | 0 | 3,879,819,594 | 100% | ||
raikuhen | 0 | 11,532,551,512 | 100% | ||
marty-art | 0 | 9,098,443,982 | 15% | ||
shubhamupadhyay | 0 | 4,929,502,035 | 100% | ||
besteulz | 0 | 1,563,786,730 | 12% | ||
sherryblossom | 0 | 3,961,809,168 | 50% | ||
tiandao | 0 | 7,966,981,222 | 100% | ||
lifewithcrypto | 0 | 6,654,223,108 | 100% | ||
princeshady5 | 0 | 7,690,746,200 | 100% | ||
smartgeek | 0 | 620,844,371 | 100% | ||
maxer27 | 0 | 10,086,257,167 | 100% | ||
amvanaken | 0 | 4,182,692,740 | 20% | ||
magoia | 0 | 514,830,332 | 10% | ||
jerrev | 0 | 454,389,379 | 100% | ||
ayishagisel | 0 | 620,015,551 | 100% | ||
talis49 | 0 | 3,339,965,020 | 49% | ||
onlineincome | 0 | 619,520,000 | 100% | ||
gingerninja | 0 | 24,325,304,456 | 100% | ||
gokulnk | 0 | 84,588,488,109 | 100% | ||
skrzypietz | 0 | 2,218,396,039 | 10% | ||
pistox | 0 | 2,681,455,856 | 75% | ||
nanogivers | 0 | 96,678,341 | 100% | ||
supastix | 0 | 1,955,193,120 | 100% | ||
iamhaque | 0 | 2,821,790,493 | 100% | ||
rawpride | 0 | 2,439,253,729 | 10% | ||
icanlivemydreams | 0 | 375,201,096 | 20% | ||
mcsamm | 0 | 9,583,173,250 | 100% | ||
xxcynicalkidxx | 0 | 27,313,846,203 | 100% | ||
alex55555 | 0 | 134,358,415,870 | 100% | ||
allfabeta | 0 | 15,660,944,854 | 20% | ||
mehrab | 0 | 486,355,616 | 100% | ||
emem | 0 | 610,918,648 | 100% | ||
timeshiftarts | 0 | 13,602,657,678 | 100% | ||
samuelsunday | 0 | 288,035,529 | 100% | ||
theversatileguy | 0 | 621,172,228 | 100% | ||
admyrer | 0 | 1,363,503,110 | 20% | ||
cryptoballer | 0 | 9,440,412,154 | 100% | ||
cryptochallenge | 0 | 10,838,612,841 | 100% | ||
class5 | 0 | 619,726,561 | 100% | ||
insteem | 0 | 717,460,480 | 100% | ||
truth-be-told | 0 | 83,463,364,295 | 100% | ||
nosajj | 0 | 643,991,538 | 100% | ||
skywalkerz | 0 | 682,763,740 | 100% | ||
gingyptian | 0 | 3,887,654,464 | 100% | ||
sofyandavd | 0 | 630,033,427 | 100% | ||
vacationonadime | 0 | 154,880,000 | 25% | ||
dwaeji-aizelle | 0 | 4,153,968,096 | 100% | ||
pattern-infinite | 0 | 8,993,063,999 | 100% | ||
oprimex | 0 | 873,068,840 | 75% | ||
cryptopet | 0 | 23,632,581,131 | 100% | ||
aprakarsa | 0 | 2,281,943,811 | 100% | ||
beetroot | 0 | 6,192,627,500 | 100% | ||
lexander | 0 | 681,420,982 | 30% | ||
gamblor | 0 | 123,904,000 | 20% | ||
mtho | 0 | 475,258,990 | 90% | ||
oddreality | 0 | 546,797,313 | 10% | ||
vinay-negi | 0 | 619,932,909 | 100% | ||
coriolis-effect | 0 | 619,520,000 | 100% | ||
coloringiship | 0 | 8,388,166,102 | 75% | ||
cryptyb | 0 | 3,669,281,009 | 100% | ||
askaboutcrypto | 0 | 185,856,000 | 30% | ||
doonaberlin | 0 | 160,422,634 | 100% | ||
luckysteem | 0 | 3,362,454,086 | 100% | ||
somealaskaguy | 0 | 483,458,146 | 100% | ||
zubair20 | 0 | 480,763,945 | 100% | ||
jefflombardo | 0 | 94,745,545,858 | 50% | ||
diginet | 0 | 3,651,907,470 | 100% | ||
eturnerx | 0 | 53,807,923,714 | 20% | ||
hafizulislam | 0 | 492,222,343 | 100% | ||
vallesleoruther | 0 | 4,485,363,844 | 5% | ||
ishratamin | 0 | 2,989,804,521 | 100% | ||
luigi-tecnologo | 0 | 5,071,348,758 | 100% | ||
ldauch | 0 | 12,169,239,947 | 100% | ||
zeidlitwhips | 0 | 2,233,081,047 | 100% | ||
fd907 | 0 | 2,700,911,242 | 100% | ||
luisneira | 0 | 32,030,210,707 | 13% | ||
cryptogatti | 0 | 619,561,302 | 100% | ||
jvdotsls | 0 | 619,809,111 | 100% | ||
marcuswilliams | 0 | 83,679,792 | 50% | ||
sirlordboss | 0 | 7,434,861,681 | 100% | ||
rinoa | 0 | 3,740,593,917 | 100% | ||
chuck-walker | 0 | 475,887,977 | 100% | ||
daniham | 0 | 75,450,222 | 100% | ||
randomwhale1 | 0 | 657,668,497 | 100% | ||
roney-ron | 0 | 2,266,830,144 | 100% | ||
katemorgan | 0 | 620,098,658 | 100% | ||
kliip | 0 | 617,613,809 | 100% | ||
wahyu07 | 0 | 2,719,753,919 | 100% | ||
molometer | 0 | 21,321,320,791 | 100% | ||
wernertek | 0 | 756,615,587 | 100% | ||
renssmit | 0 | 5,790,539,269 | 100% | ||
mohamedbelloul | 0 | 619,602,588 | 100% | ||
ronaldjayrama | 0 | 619,726,498 | 100% | ||
cheekspear | 0 | 1,885,863,220 | 100% | ||
kick | 0 | 616,545,685 | 100% | ||
crap | 0 | 616,627,857 | 100% | ||
travel-cuisine | 0 | 11,130,796,423 | 100% | ||
frag | 0 | 1,744,928,751 | 100% | ||
geofftk | 0 | 108,693,978,073 | 100% | ||
retro-room | 0 | 4,994,646,045 | 50% | ||
usedproductz | 0 | 0 | 100% | ||
sleazoid | 0 | 652,564,796 | 100% | ||
invesment | 0 | 616,627,860 | 100% | ||
kinjaal | 0 | 309,760,000 | 50% | ||
pawn | 0 | 616,627,857 | 100% | ||
fist | 0 | 617,737,620 | 100% | ||
muhammadyasir | 0 | 613,612,621 | 100% | ||
steemmeupscotty | 0 | 31,161,544,787 | 92.71% | ||
ironmanmatt | 0 | 5,146,245,868 | 100% | ||
luciancovaci | 0 | 670,827,805 | 100% | ||
msp-lovebot | 0 | 130,800,270,170 | 30% | ||
juicypop | 0 | 2,028,707,417 | 50% | ||
cosmicboy123 | 0 | 760,409,383 | 100% | ||
webshoutz | 0 | 607,308,316 | 100% | ||
strohhirn | 0 | 621,543,157 | 100% | ||
jannell | 0 | 2,577,704,546 | 100% | ||
unilad | 0 | 2,880,335,945 | 100% | ||
sono.arquetip | 0 | 4,047,541,136 | 100% | ||
ameis | 0 | 1,167,309,532 | 100% | ||
janhedlund | 0 | 11,605,957,409 | 100% | ||
boef | 0 | 616,710,046 | 100% | ||
casino888 | 0 | 616,627,884 | 100% | ||
teamturnerlive | 0 | 68,996,709,821 | 100% | ||
vsteems | 0 | 569,440,964 | 100% | ||
atmauphillips | 0 | 61,952,000 | 10% | ||
barrysamways | 0 | 22,691,636,437 | 100% | ||
simonsayz | 0 | 12,151,670,967 | 92% | ||
kcm1105 | 0 | 650,886,374 | 100% | ||
uniqueheart | 0 | 1,960,662,675 | 100% | ||
gradysmom | 0 | 648,964,080 | 100% | ||
smart-steemit | 0 | 619,520,000 | 100% | ||
tanzai | 0 | 529,318,540 | 100% | ||
tawatz | 0 | 619,685,204 | 100% | ||
greatness96 | 0 | 2,406,020,775 | 100% | ||
thorthur22 | 0 | 111,255,440,219 | 100% | ||
rianparvez | 0 | 619,932,944 | 100% | ||
photographyideas | 0 | 619,520,000 | 100% | ||
nigeriagist | 0 | 8,689,029,089 | 100% | ||
boch | 0 | 619,520,000 | 100% | ||
markvance | 0 | 33,506,482,095 | 49% | ||
b52tailgunner | 0 | 22,648,188,836 | 70% | ||
andrestales | 0 | 4,501,893,913 | 100% | ||
kdevilla | 0 | 1,715,429,280 | 100% | ||
jefft | 0 | 34,111,549,794 | 100% | ||
purechocola | 0 | 697,269,193 | 100% | ||
vsdohare | 0 | 638,634,186 | 100% | ||
arunarya96 | 0 | 4,954,106,743 | 100% | ||
pkvlogs | 0 | 10,477,601,436 | 100% | ||
razux | 0 | 588,544,000 | 100% | ||
dijital | 0 | 28,670,432,065 | 100% | ||
binghazari | 0 | 0 | 100% | ||
mike-mma | 0 | 647,811,334 | 100% | ||
braavos | 0 | 630,131,932 | 100% | ||
minnobooster | 0 | 616,545,674 | 100% | ||
whaleshare | 0 | 620,098,004 | 100% | ||
saveron23 | 0 | 2,800,293,751 | 100% | ||
picassolo | 0 | 591,641,600 | 100% | ||
eundol | 0 | 744,858,442 | 97% | ||
nityabusiness1 | 0 | 90,960,336 | 10% | ||
jimmy-rogers | 0 | 637,983,302 | 100% | ||
f-arms | 0 | 619,561,302 | 100% | ||
tonegreenthumb | 0 | 1,831,465,915 | 100% | ||
muxxybot | 0 | 18,951,160,951 | 20% | ||
somealaskagirl | 0 | 204,618,747 | 100% | ||
cryptoindex | 0 | 2,918,956,202 | 100% | ||
bataklik99 | 0 | 626,539,316 | 100% | ||
myholiday | 0 | 616,545,685 | 100% | ||
siddharth95 | 0 | 636,821,628 | 100% | ||
marcques | 0 | 624,196,358 | 100% | ||
liomerciz | 0 | 152,561,181 | 100% | ||
galacticpasty | 0 | 1,587,028,422 | 100% | ||
daniel007 | 0 | 390,544,375 | 100% | ||
zalb | 0 | 4,749,862,354 | 100% | ||
avance2010 | 0 | 757,802,654 | 100% | ||
linebacker | 0 | 12,627,051,353 | 100% | ||
matthewpro7799 | 0 | 297,938,236 | 100% | ||
coininfo | 0 | 621,293,862 | 100% | ||
lann | 0 | 619,974,185 | 100% | ||
duekie | 0 | 411,271,357 | 100% | ||
cschrader | 0 | 15,013,899,815 | 100% | ||
beet | 0 | 4,462,721,466 | 20% | ||
byronviljoen | 0 | 2,672,638,879 | 100% | ||
ironman80 | 0 | 631,796,338 | 80% | ||
thevic | 0 | 619,520,000 | 100% | ||
cryptoqu33n | 0 | 13,344,391,526 | 100% | ||
moersal | 0 | 501,836,506 | 100% | ||
rcmine | 0 | 506,201,693 | 100% | ||
nurhasib | 0 | 100,193,421 | 100% | ||
frugallady | 0 | 1,284,574,418 | 25% | ||
sky77 | 0 | 6,415,224,566 | 100% | ||
lauraa | 0 | 123,904,000 | 20% | ||
utzo | 0 | 560,144,823 | 100% | ||
jocasta | 0 | 619,602,589 | 100% | ||
stevenholton | 0 | 80,537,600 | 100% | ||
fr3eze | 0 | 24,796,247,796 | 100% | ||
rooneey | 0 | 655,523,226 | 100% | ||
mephentis | 0 | 688,635,995 | 33% | ||
valchiz | 0 | 569,958,400 | 100% | ||
adrai | 0 | 675,836,314 | 100% | ||
manudada | 0 | 224,959,395 | 100% | ||
fakire1sadaka | 0 | 59,604,754 | 50% | ||
hoodzworld | 0 | 619,520,000 | 100% | ||
yunkard | 0 | 586,568,933 | 100% | ||
bolaamir | 0 | 610,227,200 | 100% | ||
qbc | 0 | 1,155,064,638 | 100% | ||
funnypics | 0 | 616,668,976 | 100% | ||
steemops | 0 | 616,668,954 | 100% | ||
christinahouck | 0 | 616,710,064 | 100% | ||
pricelotto | 0 | 616,627,857 | 100% | ||
grabley | 0 | 616,545,673 | 100% | ||
michellevedder | 0 | 616,627,857 | 100% | ||
amandabanks | 0 | 616,586,781 | 100% | ||
stealyourgirl | 0 | 616,545,671 | 100% | ||
humanmale | 0 | 597,836,800 | 100% | ||
sweetncute | 0 | 725,432,420 | 100% | ||
marrada | 0 | 97,069,807,670 | 100% | ||
sdibot | 0 | 26,990,258,035 | 100% | ||
igorfil | 0 | 790,571,269 | 100% | ||
funit | 0 | 732,366,596 | 100% | ||
gift7 | 0 | 365,516,800 | 100% | ||
diamondfx | 0 | 574,848,249 | 100% | ||
dotahighlight | 0 | 619,520,000 | 100% | ||
tofan95 | 0 | 585,446,400 | 100% | ||
nikez452 | 0 | 125,310,951,070 | 3% | ||
hashclouds | 0 | 519,828,359 | 100% | ||
justanime | 0 | 620,924,147 | 100% | ||
laurabanfield | 0 | 214,098,509,717 | 100% | ||
codenovember | 0 | 771,817,693 | 100% | ||
dannyvision | 0 | 619,767,791 | 100% | ||
johnnyfive | 0 | 620,469,770 | 100% | ||
kofpato | 0 | 610,227,200 | 100% | ||
kkhalid | 0 | 626,001,832 | 100% | ||
trae410 | 0 | 254,609,568 | 15% | ||
zentalk | 0 | 444,934,927 | 100% | ||
steemit.lover2 | 0 | 931,130,763 | 100% | ||
musicgeek | 0 | 25,274,524,851 | 10% | ||
zellious | 0 | 5,155,096,378 | 100% | ||
a-b | 0 | 619,932,793 | 100% | ||
ninzkie143 | 0 | 614,605,755 | 100% | ||
illuminatiknows | 0 | 619,808,989 | 100% | ||
stefanonsense | 0 | 1,991,200,215 | 100% | ||
nopire | 0 | 589,210,827 | 100% | ||
nantorious | 0 | 628,185,986 | 100% | ||
thunder1 | 0 | 585,446,400 | 100% | ||
gregvence | 0 | 642,614,584 | 100% | ||
mohammad32 | 0 | 3,280,536,467 | 100% | ||
roboticmind | 0 | 791,689,591 | 100% | ||
splatmat | 0 | 602,545,330 | 100% | ||
scriptkiddie | 0 | 619,561,291 | 100% | ||
doctor-love | 0 | 619,520,000 | 100% | ||
nomorstrings | 0 | 619,561,286 | 100% | ||
leilaprimera | 0 | 619,561,289 | 100% | ||
appoloniasix | 0 | 619,602,580 | 100% | ||
sunny-dey | 0 | 619,520,000 | 100% | ||
miss-longnose | 0 | 619,561,291 | 100% | ||
sharkbyte | 0 | 619,643,867 | 100% | ||
thegreat-white | 0 | 619,520,000 | 100% | ||
silver-tiger | 0 | 619,520,000 | 100% | ||
jessica123 | 0 | 736,377,147 | 100% | ||
infinitifrank | 0 | 1,925,799,953 | 100% | ||
magnulf | 0 | 7,721,905,119 | 100% | ||
kiwicanfly | 0 | 678,369,037 | 100% | ||
moly3314 | 0 | 1,050,390,797 | 100% | ||
ssm945 | 0 | 998,161,404 | 100% | ||
abu.amann | 0 | 58,032,638 | 100% | ||
ethper | 0 | 711,476,035 | 100% | ||
writer1 | 0 | 99,673,013 | 100% | ||
nature.art | 0 | 2,361,013,528 | 100% | ||
cryptomam | 0 | 968,932,204 | 100% | ||
redwood419 | 0 | 53,403,436,008 | 100% | ||
azzedine221 | 0 | 124,192,889 | 20% | ||
mohannad-fadhal | 0 | 619,520,000 | 100% | ||
akaimyers | 0 | 106,143,577 | 100% | ||
kelborhal78 | 0 | 210,917,453 | 100% | ||
mavicorp | 0 | 482,534,762 | 100% | ||
engramanullah | 0 | 951,732,855 | 100% | ||
carryminata | 0 | 2,849,872,419 | 100% | ||
kihase | 0 | 839,112,825 | 100% | ||
fiber.god | 0 | 1,137,432,706 | 100% | ||
mikeshuh | 0 | 696,208,114 | 100% | ||
majidawan | 0 | 616,033,088 | 100% | ||
tychi | 0 | 1,160,645,090 | 100% | ||
mrnastykilla | 0 | 243,814,980 | 100% | ||
gameoutcome | 0 | 2,761,865,439 | 100% | ||
akibmash | 0 | 957,531,506 | 100% | ||
holbein81 | 0 | 24,987,291,780 | 100% | ||
kaymichaels | 0 | 986,547,021 | 100% | ||
grivera | 0 | 1,160,684,731 | 100% | ||
tonygreene113 | 0 | 622,170,736 | 100% | ||
platin01 | 0 | 530,045,450 | 100% | ||
maxsteem | 0 | 530,673,602 | 100% | ||
anilmehta00 | 0 | 499,076,349 | 100% | ||
sdd | 0 | 0 | 0% | ||
vicspics | 0 | 311,359,329 | 100% | ||
vektorall | 0 | 724,905,490 | 100% | ||
keyss | 0 | 363,547,085 | 100% | ||
calatorulmiop | 0 | 2,841,686,138 | 100% | ||
zoh | 0 | 1,131,622,683 | 100% | ||
supernoval | 0 | 1,108,409,816 | 100% | ||
arturoalex00 | 0 | 748,611,846 | 100% | ||
asif4745 | 0 | 388,813,860 | 100% | ||
shehab427797 | 0 | 127,724,686 | 100% | ||
massey2100 | 0 | 829,856,428 | 100% | ||
technologynepal | 0 | 893,691,516 | 100% | ||
mrmandal | 0 | 464,255,242 | 100% | ||
dylanjacobson | 0 | 1,096,802,971 | 100% | ||
rosatravels | 0 | 113,816,582 | 100% | ||
gaurav11 | 0 | 441,042,322 | 100% | ||
syedtalha | 0 | 568,712,296 | 100% | ||
mohamedsohail | 0 | 0 | 100% | ||
mohammedali64466 | 0 | 301,765,119 | 100% | ||
ecodata | 0 | 226,323,828 | 100% | ||
armshippie | 0 | 98,976,580 | 100% | ||
sandra12 | 0 | 249,536,494 | 100% | ||
evplanov | 0 | 504,876,149 | 100% | ||
lasttergen | 0 | 1,096,799,845 | 100% | ||
birdperson | 0 | 394,615,804 | 100% | ||
mikeaga888 | 0 | 14,763,203,046 | 100% | ||
kambojr15 | 0 | 493,269,725 | 100% | ||
gemsborg | 0 | 127,669,748 | 100% | ||
chunli | 0 | 209,228,506 | 100% | ||
askarif | 0 | 150,882,413 | 100% | ||
jalalani | 0 | 516,482,109 | 100% | ||
deebomitchell | 0 | 1,160,633,950 | 100% | ||
coffeeaddict | 0 | 1,073,586,386 | 95% | ||
jonjewel5 | 0 | 539,694,754 | 100% | ||
milanista | 0 | 1,160,633,680 | 100% | ||
sahajpatel | 0 | 1,143,222,602 | 100% | ||
powerfull | 0 | 847,261,268 | 100% | ||
ovofabio | 0 | 1,079,387,633 | 100% | ||
ruslansamokhin | 0 | 916,899,153 | 100% | ||
viseth | 0 | 986,537,061 | 100% | ||
jersoltech | 0 | 1,015,552,856 | 100% | ||
sobca | 0 | 829,851,760 | 100% | ||
blabosteem | 0 | 713,788,575 | 100% | ||
sidsamant | 0 | 493,268,521 | 100% | ||
teo12valpo | 0 | 916,899,127 | 100% | ||
stendekq | 0 | 214,716,880 | 100% | ||
skalar | 0 | 1,137,419,133 | 100% | ||
mohameddz | 0 | 1,015,552,796 | 100% | ||
criptorafa | 0 | 1,032,962,252 | 100% | ||
ilyess10 | 0 | 1,120,009,628 | 100% | ||
skullcollector47 | 0 | 348,189,516 | 100% | ||
enzy | 0 | 1,137,419,067 | 100% | ||
walidchabir | 0 | 847,261,134 | 100% | ||
moscow-travel | 0 | 707,985,324 | 100% | ||
fabiostano | 0 | 1,160,631,676 | 100% | ||
arcayos1989 | 0 | 1,096,796,907 | 100% | ||
hga777 | 0 | 0 | 100% | ||
lawrecnen | 0 | 940,111,508 | 100% | ||
dittz | 0 | 52,228,411 | 100% | ||
kshitiztimsina | 0 | 394,614,622 | 100% | ||
basitali | 0 | 1,137,418,585 | 100% | ||
healthyoptimism | 0 | 226,331,061 | 100% | ||
supahefty | 0 | 1,096,795,669 | 100% | ||
annamaegpabalate | 0 | 1,096,795,494 | 100% | ||
dobartim | 0 | 232,125,943 | 100% | ||
yulie | 0 | 1,038,763,448 | 100% | ||
zafarynl | 0 | 510,676,495 | 100% | ||
nido097 | 0 | 232,125,665 | 100% | ||
elans | 0 | 0 | 100% | ||
cryptononymous | 0 | 2,082,945,463 | 100% | ||
troywilliams | 0 | 0 | 100% | ||
cryptoskate | 0 | 0 | 100% | ||
venku898 | 0 | 0 | 100% | ||
mobius29er | 0 | 0 | 100% | ||
chadgarber | 0 | 0 | 100% | ||
toxdocx | 0 | 0 | 100% | ||
arab.whale | 0 | 0 | 100% |
Much Needed! Thank you!
author | aarellanes |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173904905z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:39:03 |
last_update | 2017-08-21 17:39:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:39:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.762 HBD |
curator_payout_value | 0.253 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 3,356,215,669,024 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,458,834 |
net_rshares | 248,100,995,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aarellanes | 0 | 248,100,995,534 | 100% |
Coul you pleade help me, how to write a best article? Thank you
author | abiproud |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170824t085613652z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-24 08:56:24 |
last_update | 2017-08-24 08:56:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-31 08:56: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 | 63 |
author_reputation | 3,973,760,944,264 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,718,519 |
net_rshares | 0 |
wow, postingan yang sangat bagus dan bermanfaat . . .
author | alanmirza |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174904726z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:48:27 |
last_update | 2017-08-21 17:48:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:48: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 | 53 |
author_reputation | 9,688,354,447,537 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,596 |
net_rshares | 0 |
I know you through youtube. It turns out a lot of new knowledge that I can get from your articles. I will watch youtube you. Maybe i can follow your success. Please advise and support from you. https://youtu.be/nSf3lttx2OQ
author | alhasan |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174718636z |
category | witness |
json_metadata | {"tags":["witness"],"image":["https://img.youtube.com/vi/nSf3lttx2OQ/0.jpg"],"links":["https://youtu.be/nSf3lttx2OQ"],"app":"steemit/0.1"} |
created | 2017-08-21 17:47:24 |
last_update | 2017-08-21 17:47:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:47: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 | 222 |
author_reputation | 3,774,910,166,027 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,487 |
net_rshares | 0 |
What basic computer knowledge does this require? Where could I go to learn more about using the Linux Command Line? Would this be easier with practicing that? I have 0 technical computer knowledge in this area. I can use basic programs and use a computer like many people born in the last 25-30 maybe 40 years(not to generalize or count out people older who have much more experience) but would be ranked in the lower end of understanding how to write command-line info, code, HTML, manage IT security. I bought a bunch of courses last year in late 2017 from ScienceAlertAcademy, yours was one of them. I completed the course but never got much further and am looking to continue where I left off, so essentially I am looking for direction in something to study before getting into setting up a witness account and server. Aside from the posts and guides about how to set up a witness server, maybe something that could be considered a warm up to this...
author | alphajiggy |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20181103t003808762z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2018-11-03 00:38:09 |
last_update | 2018-11-03 00:38:51 |
depth | 1 |
children | 0 |
last_payout | 2018-11-10 00:38: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 | 956 |
author_reputation | 1,363,612,727,790 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,573,060 |
net_rshares | 0 |
Congratulations @jerrybanfield! Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170821) in the following category: * Upvotes - Ranked 8 with 539 upvotes
author | arcange |
---|---|
permlink | re-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t164027000z |
category | witness |
json_metadata | "" |
created | 2017-08-22 14:40:27 |
last_update | 2017-08-22 14:40:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-29 14:40: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 | 209 |
author_reputation | 1,146,606,601,469,178 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,541,325 |
net_rshares | 0 |
its a very helpful post, thank you :)
author | asif4745 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184314001z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:43:12 |
last_update | 2017-08-21 18:43:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:43: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 | 37 |
author_reputation | 1,009,576,991,023 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,463,995 |
net_rshares | 0 |
Awesome job you are doing for the community with these guides. Hope to see more in the future. Steem on π
author | calatorulmiop |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171903064z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:19:03 |
last_update | 2017-08-21 17:19:03 |
depth | 1 |
children | 1 |
last_payout | 2017-08-28 17:19:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.187 HBD |
curator_payout_value | 0.042 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 4,328,184,656,688 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,252 |
net_rshares | 56,508,131,215 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 53,399,007,115 | 3% | ||
besteulz | 0 | 335,097,156 | 2.1% | ||
calatorulmiop | 0 | 2,774,026,944 | 100% |
Adrian thank you very much!
author | jerrybanfield |
---|---|
permlink | re-calatorulmiop-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204719712z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:47:18 |
last_update | 2017-08-21 20:47:18 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 20:47: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 | 27 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,812 |
net_rshares | 0 |
Always fresh insights regarding Steemit...
author | cryptoeera |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184115432z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:41:21 |
last_update | 2017-08-21 18:41:21 |
depth | 1 |
children | 4 |
last_payout | 2017-08-28 18:41:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.189 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 4,588,753,233,699 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,463,896 |
net_rshares | 535,482,785,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoeera | 0 | 530,416,663,595 | 100% | ||
bikash-tutor | 0 | 4,891,603,274 | 100% | ||
rosatravels | 0 | 174,518,759 | 100% |
@cryptoeera thank you for commenting. I see your upvoted your comment but do not see an upvote on the post?
author | jerrybanfield |
---|---|
permlink | re-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204211637z |
category | witness |
json_metadata | {"tags":["witness"],"users":["cryptoeera"],"app":"steemit/0.1"} |
created | 2017-08-21 20:42:09 |
last_update | 2017-08-21 20:43:00 |
depth | 2 |
children | 2 |
last_payout | 2017-08-28 20:42:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.087 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,461 |
net_rshares | 21,471,301,898 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 21,359,602,846 | 1% | ||
besteulz | 0 | 111,699,052 | 0.7% |
Yes, I upvote just myself, because I'm not a content creator and I don't earn from blogging. Anyway, it's not a problem; I comment to your posts not because am expecting you to upvote me, but because I truly believe you bring genuine value in the Steemit community and crypto in general.
author | cryptoeera |
---|---|
permlink | re-jerrybanfield-re-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t205309157z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:53:15 |
last_update | 2017-08-21 20:53:15 |
depth | 3 |
children | 1 |
last_payout | 2017-08-28 20:53:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.154 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 4,588,753,233,699 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,473,216 |
net_rshares | 524,601,480,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoeera | 0 | 519,701,175,442 | 100% | ||
bikash-tutor | 0 | 4,725,786,214 | 100% | ||
rosatravels | 0 | 174,518,759 | 100% |
i guess everyone must see this also--- What is happening to NEO (Antshares) - NEO on GitHub - Programmer explains| Buy it OR not https://dtube.video/v/shivang/0xy00bfo
author | shivang |
---|---|
permlink | re-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185816362z |
category | witness |
json_metadata | {"tags":["witness"],"links":["https://dtube.video/v/shivang/0xy00bfo"],"app":"steemit/0.1"} |
created | 2017-08-21 18:58:18 |
last_update | 2017-08-21 18:58:18 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 18:58: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 | 167 |
author_reputation | 2,360,286,895 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,465,166 |
net_rshares | 0 |
@jerrybanfield - Like always, your tutorials are interesting and really help understand the technical aspect of setting up Steem witness seed. Thanks for this amazing post!
author | cryptoqu33n |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t170101724z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-21 17:56:27 |
last_update | 2017-08-21 17:56:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:56: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 | 172 |
author_reputation | 2,212,279,502,729 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,460,269 |
net_rshares | 0 |
Thanks!!
author | davidrestrepo |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t220744116z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 22:07:42 |
last_update | 2017-08-21 22:07:42 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 22:07:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 757,119,534,433 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,478,399 |
net_rshares | 9,221,828,179 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smackdown.kitty | 0 | -104,666,803,439 | -2.27% | ||
davidrestrepo | 0 | 113,888,631,618 | 100% |
this is really helpful to gain withnes awesome bro awesome that's why i follow you every day thanks jerry
author | farhannaqvi7 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t180255738z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:02:51 |
last_update | 2017-08-21 18:02:51 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:02: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 | 105 |
author_reputation | 3,795,874,242,747 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,460,831 |
net_rshares | 0 |
this is really helpful to gain withnes awesome bro awesome that's why i follow you every day thanks jerry
author | farhannaqvi7 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t215910139z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 21:58:54 |
last_update | 2017-08-21 21:58:54 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 21:58:54 |
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 | 105 |
author_reputation | 3,795,874,242,747 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,477,842 |
net_rshares | 0 |
Great job jerry. Was eagerly waiting for this....
author | hafizulislam |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171609506z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:16:09 |
last_update | 2017-08-21 17:16:09 |
depth | 1 |
children | 1 |
last_payout | 2017-08-28 17:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.167 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 61,150,592,657 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,034 |
net_rshares | 53,958,465,540 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 53,399,007,115 | 3% | ||
kaykobad-reza | 0 | 559,458,425 | 100% |
Excellent I am happy it is here now today finally because I have been working on this for a month!
author | jerrybanfield |
---|---|
permlink | re-hafizulislam-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204925256z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:49:24 |
last_update | 2017-08-21 20:49:24 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 20:49: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 | 98 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,959 |
net_rshares | 0 |
Wow, Jerry! You never cease to amaze me! I only recently started mining another coin. I picked a very easy gui program. It has been doing ok, but I need to reduce the bad blocks. In the mean time, I will be teaching myself ubuntu on my old laptop, as a start. Maybe someday I will work my way up to becoming a steem witness! I wish I had your energy. :)
author | hashclouds | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jerrybanfield-2017823t115523512z | ||||||
category | witness | ||||||
json_metadata | {"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-23 15:55:27 | ||||||
last_update | 2017-08-23 15:55:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-30 15:55: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 | 357 | ||||||
author_reputation | 2,410,968,328,315 | ||||||
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,650,412 | ||||||
net_rshares | 0 |
At my first glance,i was like "what the hell are you talking about".
author | iamhaque | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jerrybanfield-2017821t225644793z | ||||||
category | witness | ||||||
json_metadata | {"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-21 17:26:51 | ||||||
last_update | 2017-08-21 17:26:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-28 17:26: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 | 68 | ||||||
author_reputation | 1,278,277,894,044 | ||||||
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,457,820 | ||||||
net_rshares | 0 |
Wow Jerry, what a great guide and such a thorough tutorial. Everyone can benefit from this. You're helping the Steemit community so much. Every day your posts help build this platform to a higher level. We can all learn so much from you
author | jerrev |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173240564z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:32:39 |
last_update | 2017-08-21 17:32:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:32:39 |
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 | 236 |
author_reputation | 54,170,176,411 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,458,295 |
net_rshares | 0 |
Why does it have "add" as tag?
author | jerrybanfield |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171730067z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:17:27 |
last_update | 2017-08-21 17:17:27 |
depth | 1 |
children | 4 |
last_payout | 2017-08-28 17:17: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 | 30 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,131 |
net_rshares | 0 |
Probably because you didn't write all 5 hashtags.
author | calatorulmiop |
---|---|
permlink | re-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172138736z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:21:39 |
last_update | 2017-08-21 17:21:39 |
depth | 2 |
children | 2 |
last_payout | 2017-08-28 17:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.276 HBD |
curator_payout_value | 0.088 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 4,328,184,656,688 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,453 |
net_rshares | 89,183,915,130 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 85,438,411,384 | 5% | ||
besteulz | 0 | 446,796,208 | 3.5% | ||
calatorulmiop | 0 | 3,298,707,538 | 100% |
Adrian thank you for suggesting this answer! I see just one other post with this and I am guessing others must use less tags too?
author | jerrybanfield |
---|---|
permlink | re-calatorulmiop-re-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204858976z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:48:57 |
last_update | 2017-08-21 20:48:57 |
depth | 3 |
children | 1 |
last_payout | 2017-08-28 20:48: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 | 130 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,929 |
net_rshares | 0 |
I have experienced something similar today. I couldn't add the fifth tag.
author | maestroq |
---|---|
permlink | re-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173033692z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:30:36 |
last_update | 2017-08-21 17:30:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 17:30: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 | 73 |
author_reputation | 5,924,317,112,668 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,458,105 |
net_rshares | 0 |
Edit to the steemfeed build! Close nano and run docker to build the feed should include a period as follows because it will not run without it > docker build -t steemfeed-js . Upvoted to pin this comment at the top for visibility.
author | jerrybanfield |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20171123t123838001z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-11-23 12:38:36 |
last_update | 2017-11-23 12:39:57 |
depth | 1 |
children | 0 |
last_payout | 2017-11-30 12:38:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.864 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 233 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,293,378 |
net_rshares | 1,936,141,665,043 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 1,934,987,420,508 | 54% | ||
nx4440 | 0 | 510,148,571 | 100% | ||
steemturk | 0 | 644,095,964 | 100% |
Yeah nano! I like nano. Its so simple. For more advanced editing use vi of course. J
author | jjb777 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jerrybanfield-2017821t192938370z | ||||||
category | witness | ||||||
json_metadata | {"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-21 17:29:39 | ||||||
last_update | 2017-08-21 17:30:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-28 17:29:39 | ||||||
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 | 84 | ||||||
author_reputation | 3,338,376,561,587 | ||||||
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,458,029 | ||||||
net_rshares | 0 |
Thanks for sharing the knowhow
author | kaymichaels |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175157091z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:52:00 |
last_update | 2017-08-21 17:52:00 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:52: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 | 30 |
author_reputation | 15,005,725,272 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,869 |
net_rshares | 0 |
Now that I know this witness, I can help with the setup of the server. It may interest people here on offgrid energy sources the non-solar non-wind approach, I have presented the JOULESTEEM circuit in my post #9. Whales can really help in spreading the very god news of this new approach, may help us one day. Voted you as a WITNESS jerry. Regards.
author | lightingmacsteem |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t040040379z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-22 04:00:39 |
last_update | 2017-08-22 04:00:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-29 04:00:39 |
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 | 349 |
author_reputation | 2,150,713,093,459 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,498,137 |
net_rshares | 0 |
Very clear explanation.I have a question, does the computer at home need to always be on?
author | luisneira |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170823t102933766z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-23 10:29:36 |
last_update | 2017-08-23 10:29:36 |
depth | 1 |
children | 0 |
last_payout | 2017-08-30 10:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.906 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 1,669,851,356,537 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,623,221 |
net_rshares | 220,585,177,701 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
luisneira | 0 | 215,942,300,017 | 100% | ||
bikash-tutor | 0 | 4,642,877,684 | 100% |
Excellent ! The nice job you are doing
author | majidawan |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t181244773z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:12:45 |
last_update | 2017-08-21 18:12:45 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:12: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 | 38 |
author_reputation | 835,950,226,667 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,461,680 |
net_rshares | 0 |
Kamine itna like
author | manudada |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174830471z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:48:39 |
last_update | 2017-08-21 17:48:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:48:39 |
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 | 16 |
author_reputation | 29,129,754,378 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,617 |
net_rshares | 0 |
good post.
author | maxsteem |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170823t093929080z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-23 09:39:42 |
last_update | 2017-08-23 09:39:42 |
depth | 1 |
children | 0 |
last_payout | 2017-08-30 09:39: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 | 10 |
author_reputation | 20,302,423,431,102 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,619,885 |
net_rshares | 0 |
Great......steem witness....upped
author | mcsamm |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172519514z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:25:21 |
last_update | 2017-08-21 17:25:21 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:25: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 | 33 |
author_reputation | 1,528,821,007,083,474 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,698 |
net_rshares | 0 |
https://steemit.com/steemit/@meatspoon/i-m-only-voting-once-for-one-witness-jerry-banfield-and-here-s-why
author | meatspoon |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t052417890z |
category | witness |
json_metadata | {"tags":["witness"],"links":["https://steemit.com/steemit/@meatspoon/i-m-only-voting-once-for-one-witness-jerry-banfield-and-here-s-why"],"app":"steemit/0.1"} |
created | 2017-08-22 05:24:18 |
last_update | 2017-08-22 05:24:18 |
depth | 1 |
children | 0 |
last_payout | 2017-08-29 05:24: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 | 105 |
author_reputation | 60,010,463,097 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,502,602 |
net_rshares | 0 |
thank you jerrybanfield πππ
author | milanista |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171026503z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:09:33 |
last_update | 2017-08-21 18:09:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:09: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 | 27 |
author_reputation | 401,137,267 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,461,425 |
net_rshares | 0 |
@jerrybanfield this is a great resource! Thank you so much for making this. I hope to be up and running in a few weeks.
author | mobius29er |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20171213t233525048z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-12-13 23:35:24 |
last_update | 2017-12-13 23:35:24 |
depth | 1 |
children | 0 |
last_payout | 2017-12-20 23:35: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 | 121 |
author_reputation | 1,062,168,541 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,425,676 |
net_rshares | 1,102,484,950 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mobius29er | 0 | 1,102,484,950 | 100% |
-Excellent post thanks for sharing I am a new steemians, maybe i should study first with you, regards know me https://steemit.com/@movietrailar please follow me I followed and upvoted.Would you like to follow and upvote me. 
author | movietrailar |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175649909z |
category | witness |
json_metadata | {"tags":["witness"],"image":["https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif","https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png","https://steemitimages.com/DQmWHUZjHQFFJKUioxVAkfyHpKP4QYTyM2R5bqjQfHvsbUH/U5drhZJbgh8HauKXEXxztDAj5gtKctA.gif"],"links":["https://steemit.com/@movietrailar"],"app":"steemit/0.1"} |
created | 2017-08-21 17:56:51 |
last_update | 2017-08-21 17:56:51 |
depth | 1 |
children | 1 |
last_payout | 2017-08-28 17:56: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 | 758 |
author_reputation | 104,200,158,033 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,460,301 |
net_rshares | -13,800,823,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
denmarkguy | 0 | -13,800,823,806 | -5% |
Please stop spamming the same comment to lots of posts! @spaminator, please have a look at this....
author | denmarkguy |
---|---|
permlink | re-movietrailar-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t001809148z |
category | witness |
json_metadata | {"tags":["witness"],"users":["spaminator"],"app":"steemit/0.1"} |
created | 2017-08-22 00:18:09 |
last_update | 2017-08-22 00:18:09 |
depth | 2 |
children | 0 |
last_payout | 2017-08-29 00:18: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 | 100 |
author_reputation | 1,145,152,350,326,001 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,485,648 |
net_rshares | 0 |
you are a very good writer Follow me and upvote me Again :D https://steemit.com/flat/@mrmandal/flat-earth
author | mrmandal |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t183831243z |
category | witness |
json_metadata | {"tags":["witness"],"links":["https://steemit.com/flat/@mrmandal/flat-earth"],"app":"steemit/0.1"} |
created | 2017-08-21 18:38:33 |
last_update | 2017-08-21 18:38:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:38: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 | 108 |
author_reputation | 1,108,904,490 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,463,683 |
net_rshares | 0 |
Nice job Jerry! This is very useful! Upvoted and **RESTEEMED**...
author | msg768 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174505481z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:45:06 |
last_update | 2017-08-21 17:45:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:45:06 |
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 | 29,910,527,626,122 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,305 |
net_rshares | 0 |
Thanks i was looking for an up to date guide. Upvoted followed and resteemed!
author | nantorious |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t215431287z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 21:54:30 |
last_update | 2017-08-21 21:54:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 21:54: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 | 77 |
author_reputation | 29,912,880,936 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,477,580 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
usedproductz | 0 | 0 | 100% |
face an error please guide what i do further 
author | pakforex |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20180215t110710873z |
category | witness |
json_metadata | {"tags":["witness"],"image":["https://steemitimages.com/DQmbJgtWaACe3rP44zVVD9nVwzwKNfxjwySAZcgTdBxSWWN/witness%20error.png"],"app":"steemit/0.1"} |
created | 2018-02-15 11:07:09 |
last_update | 2018-02-15 11:07:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 11:07: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 | 161 |
author_reputation | 489,999,309,491 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,718,974 |
net_rshares | 0 |
Buddy can you please make a post on deligation and undeligation of sp please. It would be helpfull for many steemians. Thank you .Bdw resteemed your post.
author | pkvlogs |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172020751z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:20:24 |
last_update | 2017-08-21 17:20:48 |
depth | 1 |
children | 1 |
last_payout | 2017-08-28 17:20:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.290 HBD |
curator_payout_value | 0.091 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 28,867,448,825,923 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,357 |
net_rshares | 93,461,222,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guttormf | 0 | 29,437,029,192 | 100% | ||
jerrybanfield | 0 | 53,399,007,115 | 3% | ||
besteulz | 0 | 335,097,156 | 2.1% | ||
pkvlogs | 0 | 10,290,089,249 | 100% |
Yes thank you very much for suggesting this because I am just about to do a post on it!
author | jerrybanfield |
---|---|
permlink | re-pkvlogs-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204657426z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:46:57 |
last_update | 2017-08-21 20:46:57 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 20:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,779 |
net_rshares | 9,351,259,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pkvlogs | 0 | 9,351,259,415 | 100% |
Thanks @jerrybanfield. I requested for this, and now you have done it.
author | polaleye50 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174811529z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-21 17:48:21 |
last_update | 2017-08-21 17:48:21 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:48: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 | 70 |
author_reputation | 15,725,803,639,028 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,591 |
net_rshares | 0 |
I saw your youtube video and signed up!
author | powerfull |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t201023101z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:10:24 |
last_update | 2017-08-21 20:10:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 20:10: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 | 39 |
author_reputation | 509,374,751 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,470,305 |
net_rshares | 0 |
Thx for sharing
author | salvis |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172327474z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:23:30 |
last_update | 2017-08-21 17:23:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:23:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 520,117,508,798 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,568 |
net_rshares | 27,100,607,267 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
salvis | 0 | 27,100,607,267 | 100% |
Great job @jerrybanfield
author | sandra12 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185656565z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-21 18:56:57 |
last_update | 2017-08-21 18:56:57 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:56: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 | 24 |
author_reputation | 20,302,657,252 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,465,064 |
net_rshares | 0 |
Wow, awesome information! Thanks Jerry!!!
author | selfpluslove |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t195925821z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 19:59:27 |
last_update | 2017-08-21 19:59:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 19:59: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 | 41 |
author_reputation | 11,475,106,105 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,469,596 |
net_rshares | 0 |
i guess everyone must see this also--- What is happening to NEO (Antshares) - NEO on GitHub - Programmer explains| Buy it OR not https://dtube.video/v/shivang/0xy00bfo
author | shivang |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185758409z |
category | witness |
json_metadata | {"tags":["witness"],"links":["https://dtube.video/v/shivang/0xy00bfo"],"app":"steemit/0.1"} |
created | 2017-08-21 18:57:57 |
last_update | 2017-08-21 18:57:57 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 18:57: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 | 167 |
author_reputation | 2,360,286,895 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,465,137 |
net_rshares | 0 |
Great work @jerrybanfield you have help to motivate me!
author | silvercoin |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172644819z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-21 17:26:48 |
last_update | 2017-08-21 17:26:48 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:26:48 |
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 | 55 |
author_reputation | 15,607,265,485 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,805 |
net_rshares | 0 |
The best breakdowns I seen on Steemit, Thanks @jerrybanfield πͺπΌππΌπ―
author | stackin |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175515800z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-21 17:55:15 |
last_update | 2017-08-21 17:55:15 |
depth | 1 |
children | 1 |
last_payout | 2017-08-28 17:55:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.162 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 833,057,026,588,099 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,460,171 |
net_rshares | 53,399,007,115 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jerrybanfield | 0 | 53,399,007,115 | 3% |
You're welcome Charles!
author | jerrybanfield |
---|---|
permlink | re-stackin-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204946134z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 20:49:45 |
last_update | 2017-08-21 20:49:45 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 20:49:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,975 |
net_rshares | 14,951,784,310 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stackin | 0 | 14,951,784,310 | 1% |
Nice infos
author | stefanarnaut |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172406492z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:24:06 |
last_update | 2017-08-21 17:24:06 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:24:06 |
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 | 10 |
author_reputation | 379,128,940,096 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,616 |
net_rshares | 0 |
So much to learn... Thanks for the info Sir.
author | tezmel |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172506505z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:25:09 |
last_update | 2017-08-21 17:25:09 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:25: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 | 44 |
author_reputation | 111,344,076,038,127 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,682 |
net_rshares | 1,778,084,205 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tezmel | 0 | 1,778,084,205 | 100% |
It's such a complete tutorial. Thank you for sharing jerry
author | walterz |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172644502z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 17:26:51 |
last_update | 2017-08-21 17:26:51 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:26: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 | 58 |
author_reputation | 4,805,360,879,933 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,457,815 |
net_rshares | 0 |
Jerry with somebody who hasn't got the audience you have got and the witness every day voting for you! Is this beneficial to somebody like me with limited viewers and relatively new to the Cryptoworld? How I mean the cost of the server rental will it cover the costs of making steem? Or will I be in negative investment for the shorter term? Any help is appreciated!
author | williams858 |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184856589z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 18:48:57 |
last_update | 2017-08-21 18:48:57 |
depth | 1 |
children | 4 |
last_payout | 2017-08-28 18:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.568 HBD |
curator_payout_value | 0.413 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 366 |
author_reputation | 4,622,493,754,804 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,464,420 |
net_rshares | 726,939,861,204 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
williams858 | 0 | 134,394,164,602 | 100% | ||
jerrybanfield | 0 | 587,389,078,266 | 36% | ||
bikash-tutor | 0 | 4,974,511,804 | 100% | ||
rosatravels | 0 | 182,106,532 | 100% |
@williams858 it is worth getting started with if doing it seems like fun and we have a desire to participate on steemit.chat and on the discord channels where witnesses and investors hang out! Many of the witnesses above me have earned more votes than me with fewer than 1,000 followers! The server costs can be under $100 a month which with a higher Steem price could be earned easily just getting an occasional block. When considering the price of Steem going up in a few months, being a witness becomes an outstanding opportunity even towards the bottom if we have a desire to participate on a daily basis!
author | jerrybanfield |
---|---|
permlink | re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204636875z |
category | witness |
json_metadata | {"tags":["witness"],"users":["williams858"],"app":"steemit/0.1"} |
created | 2017-08-21 20:46:36 |
last_update | 2017-08-21 20:46:36 |
depth | 2 |
children | 3 |
last_payout | 2017-08-28 20:46: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 | 612 |
author_reputation | 362,393,802,961,900 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,472,755 |
net_rshares | 1,563,029,430 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
williams858 | 0 | 1,563,029,430 | 1% |
Thanks @jerrybanfield a followup question Do you think setting a witness using Google Cloud Platform can help? Is it too costly? which server are you using?
author | bsameep |
---|---|
permlink | re-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t130114585z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-22 13:01:15 |
last_update | 2017-08-22 13:01:15 |
depth | 3 |
children | 0 |
last_payout | 2017-08-29 13:01: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 | 158 |
author_reputation | 1,364,632,466,300 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,532,340 |
net_rshares | 0 |
@jerrybanfield Would you consider writing a series of blogs or vlogs about how to start with steemit and what are the tricks and tips, basically a content valuable for complete beginners, as I am, to an average user. If you have done such thing, please link it here!
author | sobca |
---|---|
permlink | re-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t231651876z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2017-08-22 23:16:51 |
last_update | 2017-08-22 23:16:51 |
depth | 3 |
children | 0 |
last_payout | 2017-08-29 23:16: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 | 266 |
author_reputation | 1,074,656,955 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,581,057 |
net_rshares | 0 |
Yes no problem! I am checking your profiles out now and trying to piece together on how to do it! I have looked at doing it before but got fed up and failed in that sense! It s something I would like to test my self and I will check out the discord channels!
author | williams858 |
---|---|
permlink | re-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t213558176z |
category | witness |
json_metadata | {"tags":["witness"],"app":"steemit/0.1"} |
created | 2017-08-21 21:35:57 |
last_update | 2017-08-21 21:35:57 |
depth | 3 |
children | 0 |
last_payout | 2017-08-28 21:35: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 | 258 |
author_reputation | 4,622,493,754,804 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,476,372 |
net_rshares | 0 |
Hi @jerrybanfield, I shared an article on Steemit today about cryptocurrency and your name was mentioned in that article because of your experience with cryptocurrencies. I mentioned the source too in my post and incase you want to look at it here's the link. https://steemit.com/cryptocurrency/@zeidlitwhips/beginners-guide-to-cryptocurrency-and-how-to-invest-in-it
author | zeidlitwhips |
---|---|
permlink | re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174950627z |
category | witness |
json_metadata | {"tags":["witness"],"users":["jerrybanfield"],"links":["https://steemit.com/cryptocurrency/@zeidlitwhips/beginners-guide-to-cryptocurrency-and-how-to-invest-in-it"],"app":"steemit/0.1"} |
created | 2017-08-21 17:50:24 |
last_update | 2017-08-21 17:50:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 17:50: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 | 368 |
author_reputation | 878,923,045,525 |
root_title | "Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,459,737 |
net_rshares | 0 |