What is Hive reputation and how does it work?

avatar
(Edited)

All you wanted to know about reputation

A lot of users found themselves confused about what reputation is, how it is computed, how it changes, and which effect it has on what, ...

I have compiled here all the information I found about reputation and tried to make it easier for everyone to understand how it works on Hive.

What is the reputation for?

The reputation has two roles:

  1. It is an indicator that shows how “trusted or appreciated by the community” you are.
  2. It is a tool that prevents users with a low reputation to harm other users.

How it works

Reputation points are calculated using the mathematical function Log base 10.
Here is a representation of this function. (note for the purists: I know the X-axis scale is not correct for reputation. I made it as is for simplicity)

As you can see, is it very easy to raise your reputation at the beginning, but the higher your reputation, the harder it is to increase it. In fact, each time you want to increase your reputation by 1 point, it is ten times harder!

The main effect is that a reputation of 60 is 10 times stronger than a reputation of 59.
It is the same for a negative reputation. A reputation of -8 is 10 times weaker than a reputation of -7.

People with a low reputation cannot harm the reputation of someone with a strong reputation.

This explains why creating a bot that systematically flags other posts is useless unless the bot has a high reputation, something that will be hard to achieve for a “flag bot”. In no time, the bot’s reputation will be ruined and it will become harmless.

There is no lower or upper limit to reputation.

About Reward Shares

Before continuing to see how reputation points are “computed”, you need to understand the concept of “Reward Shares“

When you vote for a post or comment, you tell the system to take some money (the reward) from the Global Reward Pool and give 50% of this reward to the author (the author reward) and to share the remaining 50% of the reward between the people that voted for the post (the curation reward).

The more votes for the post from people with high voting power, the higher both rewards will be.

But the curation reward is not distributed equally among all voters.
Depending on the timing of your vote, the voting power you have and how much you allocated to your vote (percentage gauge), you will get a tiny part of the pie or a bigger one.
The size of your part is called the reward share

Here is an example of the distribution of the reward share on a comment:

You see that despite all users casting a vote with full power (100%), they have different Reward Shares.

OK, now, let's go back to the reputation. All you have to do is to keep in mind this Reward Share value exists.

How reputation is “computed”

Each time someone votes for a post or a comment, the vote can have an impact on the author's reputation, depending on:

  • the reputation of the voter
  • the Reward Share of the voter

Let's have a look at the code that is executed each time you vote for something.
You can find it on Gitlab here

 const auto& cv_idx = db.get_index< comment_vote_index >().indices().get< by_comment_voter >();
 auto cv = cv_idx.find( boost::make_tuple( comment.id, db.get_account( op.voter ).id ) );

 const auto& rep_idx = db.get_index< reputation_index >().indices().get< by_account >();
 auto voter_rep = rep_idx.find( op.voter );
 auto author_rep = rep_idx.find( op.author );

 // Rules are a plugin, do not effect consensus, and are subject to change.
 // Rule #1: Must have non-negative reputation to effect another user's reputation
 if( voter_rep != rep_idx.end() && voter_rep->reputation < 0 ) return;

 if( author_rep == rep_idx.end() )
 {
 // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
 // User rep is 0, so requires voter having positive rep
 if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > 0 )) return;

 db.create< reputation_object >( [&]( reputation_object& r )
 {
    r.account = op.author;
    r.reputation = ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
 });
 }
 else
 {
 // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
 if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > author_rep->reputation ) ) return;

 db.modify( *author_rep, [&]( reputation_object& r )
 {
    r.reputation += ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise
 });
}



Here you are. Everything you ever wanted to know is defined in those 33 lines of code.
Now that you have read them, isn’t it clear to you?

baby.computer.confused.png

If you feel like this, don’t worry. I will help you to translate it to a human-understandable language.

 auto cv = cv_idx.find( boost::make_tuple( comment.id, db.get_account( op.voter ).id ) );

Out of all votes, get the vote info of the voter (you)

auto voter_rep = rep_idx.find( op.voter );
auto author_rep = rep_idx.find( op.author );

Get the reputation of the voter (you)
Get the reputation of the author of the post or comment

 // Rule #1: Must have non-negative reputation to effect another user's reputation
 if( voter_rep != rep_idx.end() && voter_rep->reputation < 0 ) return;

Self-documented, if you have a negative reputation, the process stops.
You have no influence on others’ reputations.

if( author_rep == rep_idx.end() )

The process checks the existing reputation of the author

  • Case 1: the author has no reputation yet
    // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
    // User rep is 0, so requires voter having positive rep
    if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > 0 )) return;

Self-documented, if your vote is negative and your reputation is not positive, the process stop.

    db.create< reputation_object >( [&]( reputation_object& r )

The reputation of the author is initialized, then ...

    r.reputation = ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise

Your Reward Share becomes the new author's reputation.

  • Case 2: the author has some reputation, and the process is pretty similar ...
    // Rule #2: If you are down voting another user, you must have more reputation than them to impact their reputation
    if( cv->rshares < 0 && !( voter_rep != rep_idx.end() && voter_rep->reputation > author_rep->reputation ) ) return;

Self-documented, if your vote is negative and your reputation is not greater than the author’s reputation, the process stop.

    db.modify( *author_rep, [&]( reputation_object& r )

The process will modify the existing author's reputation

    r.reputation += ( cv->rshares >> 6 ); // Shift away precision from vests. It is noise

Your Reward Share is added to the author’s reputation.

That’s it. Easy and simple.

Finally, the reputation is simply a VERY BIG number that contains the sum of all the Reward Shares of every vote associated with your posts and comments.
If someone unvotes your post, his Reward Shares get deduced and your reputation is lowered.
If your post or comment gets flagged, the Reward Share is deduced and your reputation is diminished.

To display it as a human readable number , you can use the following formula:

max(log10(abs(reputation))-9,0)*((reputation>= 0)?1:-1)*9+25

How to raise your reputation

The best way to increase your reputation is to get votes from people with a positive reputation and, even better, with a lot of voting power.

To achieve this goal:

  • publish quality posts. Forget quantity, it's about quality!
  • take part in the discussions (you can get extra rewards and reputation points for your comments)
  • vote carefully (do not vote for crap posts, vote for appropriate content and authors)
  • increase the number of followers and build your following list

Conclusion

I hope you now better understand how reputation works and how to build it.

Remember, reputation is a key factor that reflects how you behave and how the members of the community evaluate your work.

As in real life, having a high level of reputation is hard work and the long run.
And as in real life, ruining it can be very fast. Then it will be even harder to rebuild.

If you aim at a top reputation, focus on quality and on a constructive attitude.

Thanks for reading!


Check out my apps and services


Vote for me as a witness



0
0
0.000
129 comments
avatar

This was awesome!! It's really interesting each point is 10x higher or lower then the other one...

0
0
0.000
avatar

Great post, very informative! Upvoted and resteemed. This is great for noobs or people that still don't know the finer workings of steemit like me. Thanks for this.

0
0
0.000
avatar

May I translate your post for RU community?

0
0
0.000
avatar

Unfortunately, no. I already made the translation and will post it later.
Anyway, thanks for asking before. Really appreciated.

0
0
0.000
avatar

For sure, I cannot translate any post/article without a permission

0
0
0.000
avatar

This post was super helpful. I just started today and I think I have a grasp on how this system works now. Thank you.

0
0
0.000
avatar

Thanks it's been a while I was wondering how the reputation works. I am not into coding but how you explain it is nicely done.

0
0
0.000
avatar

This is an eye opener, this explains why @cheetah does not flag.

This explains why creating a bot that systematically flags other posts is useless, unless the bot has a high reputation, something that will be hard to achieve for a “flag bot”. In no time, the bot’s reputation will be ruined and it will become harmless.

0
0
0.000
avatar

@cheetah has actually a reputation of 70, which is quite high.
As most plagiarists have a low reputation (it's quite rare a high rep user doing plagiarism), it could flag them. And the effect would be real.

It doesn't, except when a user is banned, because its creator bet on education rather than punishment.

0
0
0.000
avatar

What a helpful post. Thank you. I have been apprehensive to flag a post for fear of retaliation. This explanation has helped ease some of those fears.
I would never flag someone for what I call trivial things like, opposing views or something one might deem offensive, none of that is any concern of mine. I'm more of a live and let live or a whatever floats your boat kinda person.
What I will flag, is someone out right stealing another's work and trying to pass it off as their own. I've run across this twice so far. I commented and asked for clarification first. It still amazes me that in this digital age folks think they won't get caught.

0
0
0.000
avatar
(Edited)

Now I understand after reading some part of your posting. That is so infornative, this is what I have been looking for. Many thanks @arcange

As you can see, is it very easy to raise your reputation at the beginning, but the higher your reputation, the harder it is to increase it. In fact, each time you want to increase your reputation of 1 point, it is ten times harder!

The main effect is that a reputation of 60 is 10 times stronger than the reputation of 59.
It is the same for a negative reputation. A reputation of -8 is 10 times weaker than the reputation of -7.

People with a low reputation cannot harm the reputation of someone with a strong reputation.

This explains why creating a bot that systematically flags other posts is useless, unless the bot has a high reputation, something that will be hard to achieve for a “flag bot”. In no time, the bot’s reputation will be ruined and it will become harmless.

There is no lower or upper limit to reputation.

0
0
0.000
avatar

Thanks for this excelente explanation - helps a lot :-)

0
0
0.000
avatar

Excellent post @arcange! I've been missing this exact information, thanks so much for sharing! I'm sure this post is very helpful for all newbies on steemit, upvoted and resteemed.

0
0
0.000
avatar
(Edited)

I'm sure this post is very helpful for all newbies

I guess some Steemit's oldies will also learn a bit ;)

Thanks for your support!

0
0
0.000
avatar

Yea, Im sure they do, good point. Cheers! Have a great weekend!

0
0
0.000
avatar

Thanks for the explanation, is clear a little bit more on subject!

0
0
0.000
avatar

Thanks @arcange for reputable educational advice. I shall try to follow your articles.

0
0
0.000
avatar

Thank you for putting it in Layman terms for us @arcange! I'm still not entirely convinced I deserve to have the reputation I do at this point, but computers always compute things correctly right?

This was a terrific run down, I was looking for something like it just last night, so very timely for me! Thank You!!

0
0
0.000
avatar

:-) I was sitting yesterday with a friend of mine who has same reputation as you with less than 20 posts but a few got some serious whale upvotes, i guess that speeds things up seriously :-)
Did you maybe had a few posts like that?

0
0
0.000
avatar

I had a story curated by @curie that went to trending and paid out at $140, that was a lot of it. I have a meme paying out at $115 tomorrow, so yeah, couple of one offs.

I'm not saying I'm not happy to have the Steem coming in, very appreciative of that, but I feel like I am still too new to this game to be over 50.

0
0
0.000
avatar

I would love to know how much these big payouts bumped your rep. I'm more on the hunt for sp, but rep and sp are tied together so I guess I want both :)

0
0
0.000
avatar

yeah I am not sure how it all works. it has something to do with the rep of the people who upvote you too. The higher their rep the more it bumps you or something.

I just post what I post. Some gets traction, some wallows. I'll just keep on keeping on. haha

0
0
0.000
avatar

Oh! I had not heard about the rep of your upvoter as an aspect of this before.

I'm an accountant and researcher, so I can't stand it when I don't understand things. Steemit pushes my buttons all day long :)

0
0
0.000
avatar

Thanks for the graphical representation of the calculation.
As you said it becomes harder as your reputation grows.

As you can see, is it very easy to raise your reputation at the beginning, but the higher your reputation, the harder it is to increase it. In fact, each time you want to increase your reputation of 1 point, it is ten times harder!

I was wondering why my reputation has stuck at 48 for almost a week!
It is good you have given a great explanation here.

0
0
0.000
avatar

Aaaaah finaly some clarity! Thanks for the post.

0
0
0.000
avatar
(Edited)

Aaaaah finaly some clarity

And God said, “Let there be light,” and there was light (genesis 1:3)

0
0
0.000
avatar

Our main destination should be always oriented in quality development. This post make me understand this important point. So thanks a lot to grow our reputation in this field. Expecting more advice later also..have a nice time ahead.

0
0
0.000
avatar

Thanks! I've seen people's reputations go up 5 points from a single person's upvote. They were in their 20-30's though, not higher of course. I need to be more careful what I upvote. It is not always easy to maintain your power and use it wisely.

0
0
0.000
avatar

Yep, one vote from a whale with full power can be a tremendous booster!

0
0
0.000
avatar
(Edited)

Thank you for explaining all that stuff in details. I have a better understanding of how the reputation works now!

Resteemed and voted.

0
0
0.000
avatar

Thanks @arcange, that was some really cool information. You elaborated first on the curation rewards, would love to see the code behind that 1 day, especially how the timing factor influences the reward share. It is still not clear to me whether it makes sense to vote after 30 minutes. Thanks!

0
0
0.000
avatar

I will try to make your wish happens ...

0
0
0.000
avatar

Excellent post, arcange! I've been meaning to dive into the code at some point to better understand how reputation scores change over time, and you've done the work for me. :) Resteeming.

tip! 5 link

0
0
0.000
avatar

Thank you for your comment. Really appreciatef from a fellow dev and witness =)

0
0
0.000
avatar
0
0
0.000
avatar
(Edited)

Wow that's very kind of you @tipu!

He deserves more than though 😉 this boy helps out build moral to all steemit users. I have been following him since my 2ndweek on steemit. I wish I am rich and I can probably build a community for him so people help him with his work.

@arcange just hang on and keep tight. You will shine in the near future.

🇵🇭 purepinay

0
0
0.000
avatar

hey nice! he does deserve that tip 😅😂

0
0
0.000
avatar

I understood each and everything except for the coding stuff. Learning the web development nowadays and soon I will be able to write it as well. Thanks for the share.

0
0
0.000
avatar

Very detailed and wonderful read. Keep sharing useful content like this. UPVOTED!! It would be great, if you can follow me.

0
0
0.000
avatar

I think I understood it??? but I'll read it again.

0
0
0.000
avatar

Excellent post.. Thanks for the break down. I learned something new today. Thanks!! Keep On Steemin On!!

0
0
0.000
avatar

Very interesting article some made sense but some was a little hard to understand, cheers mike

0
0
0.000
avatar

This is really well done .. resteeming for others to see.

0
0
0.000
avatar

Hello!!!
Welcome to steemit.com I am @palmidrummer . Steemit community has the power to change our life if we simply upvote and follow each other. I joined steemit for a cause of helping my students.
Please follow and upvote me ( @palmidrummer )and I will do the same for you.
Thankyou, and please chek me previous post......

0
0
0.000
avatar

Oh Dear arcange now I know there are Bots creeping around voting, what use are my little votes with comments? One must live down the disappointment (that it's all fair game) and just carry on as usual. I'll say it again, long term gain, good comments and good posts! JV

0
0
0.000
avatar

Great post, but I'm not that sure about rule 2. Seems if someone with rep 60 downvotes someone with rep 70 it shouldn't just be ignored.

I know people have to get a lot of upvotes to get to 70, but do they then become untouchable?

0
0
0.000
avatar

I would like upvote your post, but my vote power is to low :( But I FOLLOW you and RESTEEM! Thank you very much for very informative post. And thank you for explanation.

0
0
0.000
avatar

Thanks for this break down, it was an eye opener. My votes might not be worth much but I'm giving you my hundred percent upvote and a resteem.

0
0
0.000
avatar

I thought that it was SP that controlled how much influence a vote has, not reputation. Isn't reputation just an indicator of what others think of you? I didn't think it affected anything apart from your posts becoming hidden when it is really low. I have suggested that reputation should affect how much you can post and vote. That would limit the spam people could post.

0
0
0.000
avatar

I actually never took the time to investigate what is behind the reputation system and you basically did it for me here. Thanks! :)

0
0
0.000
avatar
(Edited)

Je suis ravi d'avoir pu satisfaire votre curiosité à ce sujet.

0
0
0.000
avatar

Le vouvoiement fait mal... aie! ;)

0
0
0.000
avatar

Wonderfully Explained

Thank You :)

That 59 going to 60 Reputation example was bang on for me :D

0
0
0.000
avatar

Very informative and made it better to understand. Thank you.

0
0
0.000
avatar

This is exactly what I was looking for... Thank you!

By the way how's witness rank?
did it change?⬆️⤴️

0
0
0.000
avatar

Really appreciate your clear explanation how this reputation works. I think Steemit has done really good job with reputation and how it works.

0
0
0.000
avatar

Oh wow, first time I ever saw this explained. You make it clear as crystal. Thanks ever so much as this helps me a lot.

MAHALO!!

......
IMG_20170825_081540.jpg

0
0
0.000
avatar

Nicely explained! I have been trying to get my head around this for a while now. So the amount of Steem Power you have has nothing to do with your reputation??

0
0
0.000
avatar

So the amount of Steem Power you have has nothing to do with your reputation??

Exact, you can be a whale with tons of SP you bought on the market, but have a reputation of 25 if you never posted, and therefore didn't get any upvote.

3 good examples are the @steemit, @freedom and @steem accounts. These are the topmost SP holders and their reputation is respectively 35, 25 and 25.

0
0
0.000
avatar
(Edited)

This is the best explanation I have seen of this. Thanks for posting, it has really helped me. Followed, resteemed and Upvoted.

0
0
0.000
avatar

Thanks for your comment and support

0
0
0.000
avatar

Thats for this...this was really informational...Thanks for such taking your time to post such a detailed article...

0
0
0.000
avatar

Super helpful! I've been curious about reputation and what it mean/how it worked since I returned from my many months long hiatus and found that I suddenly had a one! LOL! Thanks for putting this out there !

0
0
0.000
avatar

Arcange, where I can see my "reputation"? Supporting you and voted for witness...THANKS! Nice post.

0
0
0.000
avatar
(Edited)

Easy, it is here:

Thanks for your witness vote

0
0
0.000
avatar

I got mucj knowledge on reputation after I read your useful post. Thanks a lot.
Regard from Indonesia.

0
0
0.000
avatar

Thanks for doing this @arcange-- I do believe this is the first time I have seen reputation explained in terms I can actually understand; really appreciate this!

Thanks... & resteemed!

0
0
0.000
avatar
(Edited)

This is so helpful. I was thinking about this earlier today and then boom, you come answering all my questions. ^5, thank you! Does our reputation change when others delegate to us?

0
0
0.000
avatar

Does our reputation change when others delegate to us?

No, reputation is not linked to Steem Power, so any action on the last one does not impact reputation

0
0
0.000
avatar

Thank you for this helpful information. I blew out my steem for voting, but I did vote for you are a witness. Good luck in getting it - the little I know tells me it is a lot of work.

I found this post on twitter today - steemit is blowing up those tweeps!

0
0
0.000
avatar

Thank you so much for your support. Really appreciated!

0
0
0.000
avatar

Good explanation @arcange... I had guessed a similar thing (without reading the code)... there should be a way for judging the “content” also for reputation, otherwise you would see the gap widening between quality and reputation,
Thanks

0
0
0.000
avatar

muchas gracias!!! me dio luces de entendimiento , GRACIAS :)

0
0
0.000
avatar

Your code translations are great, love the layman's terms, thanks so much! I learned something new here. :-)

0
0
0.000
avatar

Thanks for making this extremely interesting post (: I was always wondering why some people "shoot up" reputation-wise, even from the introduce yourself post! Very interesting that it gets exponentially harder to proceed.

I have a somewhat unrelated question though...
How do you make such an awesome Banner for at the bottom of your posts? I get that the icons are from steemitboard, but how do you integrate them in a line like that, and also clickable?

0
0
0.000
avatar

Nice guide: simple and right to the point.
Thanks, I'm new on Steemit and this post helped me a lot! :)

0
0
0.000
avatar

I am so glad I stumble onto this post today.
Thank you very much for a detailed explanation, archangel! Now I know why I was pushed once to a higher number, it's because one big whale gave me an upvote I would never forget. I am forever very thankful but I didn't know why exactly! I don't know what I should do in return for showing appreciation as I have so little voting power in comparison.

Any way, your post stresses quality post not quantity! This is a bit dodgy sometimes. My 'unintended post' seems to get more votes than my 'good'posts! Weird for me too. I shall persevere as I am addicted to Steemit without my intention. Funny how I wait for posts from my favourite bloggers.
I have more fun than expected, so the voting power side has become sort of secondary to me now.

Upvote and resteem this very helpful article.
Cheers.

0
0
0.000
avatar

You just made my brain go POW!

Really great breakdown of how this works. I'm happy to see all the safeguarding here to help the community stay reliably safe for those who are really helping build around here.

I am also kind of blown away at the level of care people are putting into this. Thank you to you all who have put so much time into this.

Upvoted and going to make sure to cast my witness votes.

0
0
0.000
avatar
(Edited)

Great post! Very useful information!
*Upvoted

0
0
0.000
avatar

Just an idea:

On the Steemit Board, lets say once someone hits a reputation of 50 then maybe you could unlock the "personal" section, so that it can be filled in by the user.

What do you think?

0
0
0.000
avatar
(Edited)

thank you very much, useful information for beginner steemit.com

0
0
0.000
avatar

Where is the "down vote"? And how do you know when you are getting down voted? I only see the Up vote.

0
0
0.000
avatar

You're the web designer!! Duhh..... haha just wanted to let you know I love the simplicity but the professional look! really optimal and easy to use :) oh and the turquoise blue! is my fav color!!

0
0
0.000
avatar

Wow, really complete and it helps me understand the whole concept. I remember reading it at thebeginning...but it got lost in my mind. Thanks for sharing!

0
0
0.000
avatar
(Edited)

I love it when you techies say such as: - easy and simple.
I tell you now, I read until it gave me a headache, then skim read the rest. It sounds good in my head and my censor didn't gag on any of it, and yet, and yet, as soon as I got up from my chair, it was no longer understood. I probably do not understand as easily as a child, because of all the other businesses I've had to cram. I wasn't very good at maths until it was explained as arithmetic, and the computers of my years at school barely had three dots above and two below a median. They were the size of a large truck then too. My IT kid (taught 3D when it was new, ten year ago, so he's got to be middle thirties now) explained blockchain to me before xmas, and basically reminded me that even back with analogue, garbage in, garbage out, ruled; so 'I' don't have to worry about the how so much, but keep my eyes on navigation.
This explanation seems to work, yours of 'reputation' seems to make sense so far. So, could you please direct me to where I might find best directions for 'navigation'.
I hope that makes sense ¿

0
0
0.000
avatar

Thanks for this wonderful information @arcange, I have been darkness before about reputation but now, you have put me in the light and I now know how to increase my reputation.

0
0
0.000
avatar
(Edited)

So, it might be that my comment will be over read... but I actually wanted to ask you a question in personal (PM) you and read this post, which answers a few of my questions. First of all thank you! Second, I what I wanted to ask is, will there be a fix in the achievement section of steemitboard? I have the suspicion that the achievements won't unlock although all requirements have been met.
For example Achievement: Daily Author 4
I have been posting 4 topics, but all of them with steepshot and yet the achievement hasn't been unlocked. Will there be a fix in the near future? If not, did I just understand the requirements wrong?
And the gauge under the bade achievement isn't refreshing. Thank you for the great work. Setting goals to new users with game-like applications do make a lot of fun.

Looking forward to hearing from you :)

PS: Why do people have a greater reputation with a few posts (for example 5) and no actual upvotes?
Is it because they upvote a lot of other authors? (Just to clarify If I understood the reputation post correctly)

Thanks!

  • Cheers
0
0
0.000
avatar

Joining steemit three weeks ago, is one of the best decisions I've made😊. And I've been looking for ways to learn and grow here on steemit. Suddenly, I find this fully loaded write up.👌 Now, I have a better understanding of how reputation works.
Thanks for this @arcange👍
GOD BLESS YOU.

0
0
0.000
avatar

Thank you! I frequently check my steemitboard. I've been at reputation score 47 for awhile and definitely want to achieve a higher score. Thanks again!

avatar

The rep score is finally starting to make sense, thank you.

0
0
0.000
avatar

I always come back to this post to try and understand how reputation works, i still don't get it though....

0
0
0.000
avatar

Very interesting post and to explore a different outlook on things /topics I’m not use to . Thank you

0
0
0.000
avatar

Hey, very nice explanation!
Now i understood :)
Thanks for sharing this :)

0
0
0.000
avatar

Well, i am actually new at steem, i am facing some difficulties in there but hope so with a time being it will be alright !

0
0
0.000
avatar

Steemit might look a bit confusing at the beginning, but you will be used to it quickly thanks to the help if other Steemians.
Good luck and Steem on!

0
0
0.000
avatar

Thanks for ur support and for ur post, Sr pls visit my post tell me if any deficiency or any suggestions is there means, and pls upvote me if u like my post means

0
0
0.000
avatar

Watch out for the human traffickers at hivefest. You wont know it until its too late. STAY AWAY! Beware, traffickers can be women or men! They will act nice until they dont. There is human trafficking going on around this type of crypto. I have witnessed it. They literally have attempted my murder and are trying to kill me with V2K and RNM. Five years this has been happening to me, it started here, around people that are still here. Homeland security has done nothing at all, they are not here to protect us. Dont we pay them to stop shit like this? The NSA, CIA, FBI, Police and our Government has done nothing. Just like they did with the Havana Syndrome, nothing. Patriot Act my ass. The American government is completely incompetent. The NSA should be taken over by the military and contained Immediately for investigation. I bet we can get to the sources of V2K and RNM then. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism ..... https://ecency.com/gangstalking/@acousticpulses/electronic-terrorism-and-gaslighting--if-you-downvote-this-post-you-are-part-of-the-problem if you run into one of them you may want to immediately shoot them in the face. 187, annihilate, asphyxiate, assassinate, behead, bleed, bludgeon, boil, bomb, bone, burn, bury, butcher, cap, casket, choke, chop, club, crucify, crush, curb, decapitate, decimate, deflesh, demolish, destroy, devein, disembowel, dismember, drown, electrocute, eliminate, end, euthanize, eviscerate, execute, explode, exterminate, extinguish, finish, fry, grind, guillotine, gut, hack, hang, hit, ice, implode, incinerate, kill, liquidate, lynch, massacre, maul, microwave, mutilate, neutralize, obliterate, off, pop, poison, punnish, quarter, ruin, shank, shock, shoot, shred, skin, slay, slaughter, smoke, smother, snipe, snuff, squish, stab, strangle, stone, suffocate, suicide, SWAT, swing, terminate, torture, terrorize, whack, waste, wreck. You better fucking kill me.

0
0
0.000
avatar

Watch out for the human traffickers at hivefest. You wont know it until its too late. STAY AWAY! Beware, traffickers can be women or men! They will act nice until they dont. There is human trafficking going on around this type of crypto. I have witnessed it. They literally have attempted my murder and are trying to kill me with V2K and RNM. Five years this has been happening to me, it started here, around people that are still here. Homeland security has done nothing at all, they are not here to protect us. Dont we pay them to stop shit like this? The NSA, CIA, FBI, Police and our Government has done nothing. Just like they did with the Havana Syndrome, nothing. Patriot Act my ass. The American government is completely incompetent. The NSA should be taken over by the military and contained Immediately for investigation. I bet we can get to the sources of V2K and RNM then. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism ..... https://ecency.com/gangstalking/@acousticpulses/electronic-terrorism-and-gaslighting--if-you-downvote-this-post-you-are-part-of-the-problem if you run into one of them you may want to immediately shoot them in the face. 187, annihilate, asphyxiate, assassinate, behead, bleed, bludgeon, boil, bomb, bone, burn, bury, butcher, cap, casket, choke, chop, club, crucify, crush, curb, decapitate, decimate, deflesh, demolish, destroy, devein, disembowel, dismember, drown, electrocute, eliminate, end, euthanize, eviscerate, execute, explode, exterminate, extinguish, finish, fry, grind, guillotine, gut, hack, hang, hit, ice, implode, incinerate, kill, liquidate, lynch, massacre, maul, microwave, mutilate, neutralize, obliterate, off, pop, poison, punnish, quarter, ruin, shank, shock, shoot, shred, skin, slay, slaughter, smoke, smother, snipe, snuff, squish, stab, strangle, stone, suffocate, suicide, SWAT, swing, terminate, torture, terrorize, whack, waste, wreck. You better fucking kill me.

0
0
0.000
avatar

Watch out for the human traffickers at hivefest. You wont know it until its too late. STAY AWAY! Beware, traffickers can be women or men! They will act nice until they dont. There is human trafficking going on around this type of crypto. I have witnessed it. They literally have attempted my murder and are trying to kill me with V2K and RNM. Five years this has been happening to me, it started here, around people that are still here. Homeland security has done nothing at all, they are not here to protect us. Dont we pay them to stop shit like this? The NSA, CIA, FBI, Police and our Government has done nothing. Just like they did with the Havana Syndrome, nothing. Patriot Act my ass. The American government is completely incompetent. The NSA should be taken over by the military and contained Immediately for investigation. I bet we can get to the sources of V2K and RNM then. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism ..... https://ecency.com/gangstalking/@acousticpulses/electronic-terrorism-and-gaslighting--if-you-downvote-this-post-you-are-part-of-the-problem if you run into one of them you may want to immediately shoot them in the face. 187, annihilate, asphyxiate, assassinate, behead, bleed, bludgeon, boil, bomb, bone, burn, bury, butcher, cap, casket, choke, chop, club, crucify, crush, curb, decapitate, decimate, deflesh, demolish, destroy, devein, disembowel, dismember, drown, electrocute, eliminate, end, euthanize, eviscerate, execute, explode, exterminate, extinguish, finish, fry, grind, guillotine, gut, hack, hang, hit, ice, implode, incinerate, kill, liquidate, lynch, massacre, maul, microwave, mutilate, neutralize, obliterate, off, pop, poison, punnish, quarter, ruin, shank, shock, shoot, shred, skin, slay, slaughter, smoke, smother, snipe, snuff, squish, stab, strangle, stone, suffocate, suicide, SWAT, swing, terminate, torture, terrorize, whack, waste, wreck. You better fucking kill me.

0
0
0.000
avatar

pixresteemer_incognito_angel_mini.png
Bang, I did it again... I just rehived your post!
Week 110 of my contest just started...you can now check the winners of the previous week!
10

0
0
0.000
avatar

Watch out for the human traffickers at hivefest. You wont know it until its too late. STAY AWAY! Beware, traffickers can be women or men! They will act nice until they dont. There is human trafficking going on around this type of crypto. I have witnessed it. They literally have attempted my murder and are trying to kill me with V2K and RNM. Five years this has been happening to me, it started here, around people that are still here. Homeland security has done nothing at all, they are not here to protect us. Dont we pay them to stop shit like this? The NSA, CIA, FBI, Police and our Government has done nothing. Just like they did with the Havana Syndrome, nothing. Patriot Act my ass. The American government is completely incompetent. The NSA should be taken over by the military and contained Immediately for investigation. I bet we can get to the sources of V2K and RNM then. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism ..... https://ecency.com/gangstalking/@acousticpulses/electronic-terrorism-and-gaslighting--if-you-downvote-this-post-you-are-part-of-the-problem if you run into one of them you may want to immediately shoot them in the face. 187, annihilate, asphyxiate, assassinate, behead, bleed, bludgeon, boil, bomb, bone, burn, bury, butcher, cap, casket, choke, chop, club, crucify, crush, curb, decapitate, decimate, deflesh, demolish, destroy, devein, disembowel, dismember, drown, electrocute, eliminate, end, euthanize, eviscerate, execute, explode, exterminate, extinguish, finish, fry, grind, guillotine, gut, hack, hang, hit, ice, implode, incinerate, kill, liquidate, lynch, massacre, maul, microwave, mutilate, neutralize, obliterate, off, pop, poison, punnish, quarter, ruin, shank, shock, shoot, shred, skin, slay, slaughter, smoke, smother, snipe, snuff, squish, stab, strangle, stone, suffocate, suicide, SWAT, swing, terminate, torture, terrorize, whack, waste, wreck. You better fucking kill me.

0
0
0.000