vlom
Legendary
Offline
Activity: 1498
Merit: 1117
|
|
September 23, 2018, 06:23:51 AM |
|
YEAH ! Finally, I feel better! ;-^= Posts: 3389 an 1 Merit. this is really crazy. I checked you post history and could not stand it. all these pictures. i did not try to read something you posted. and I cant see the post that you got the merit for.
|
|
|
|
|
Diamond Member
Jr. Member
Offline
Activity: 33
Merit: 3
|
|
September 23, 2018, 06:51:40 AM |
|
I am glad my Diamond Membership did not expire before these changes were implemented. My single merit means I will never again be a newbie In all seriousness, the amount of merit begging in this thread is hilarious, as is the number of spammers who have found themselves no longer able to earn money from posting nonsense around here.
|
|
|
|
khelan
Newbie
Offline
Activity: 238
Merit: 0
|
|
September 23, 2018, 07:18:45 AM |
|
This change is require because people are using multiple account for bounty. Also the threads get spamming. also People not hesitate to full people and promote scam project. If the trust get negative they make new accounts and can become Jr. member easily so they can spam or scam again. Because of that people already loose money. Which reduce trust on crypto community. Now I think the scam project will reduce in nos. So this new rule is healthier for crypto community.
|
|
|
|
tumis
Member
Offline
Activity: 1022
Merit: 69
|
|
September 23, 2018, 08:01:05 AM |
|
YEAH ! Finally, I feel better! ;-^= Posts: 3389 an 1 Merit. this is really crazy. I checked you post history and could not stand it. all these pictures. i did not try to read something you posted. and I cant see the post that you got the merit for. This is not a problem. For example, if you are using firefox: 1. In Firefox’s browser address bar, type about:config and press Enter. 2. In the search bar below the address bar, scroll down and search for permissions.default.image3. Double click on the row and hange the integer value to 2 source: https://www.tech-recipes.com/rx/64881/how-to-disable-images-in-firefox/
|
|
|
|
wentzeldk
Newbie
Offline
Activity: 238
Merit: 0
|
|
September 23, 2018, 08:42:07 AM |
|
After reading a great article on Medium, by Sebastian Wurst--a computer scientist turned digital health researcher turned digital strategist, thinking about #startups, #blockchain, #ai, and #digitalhealth--I would like to begin a thread about the 30 questions across 7 dimensions that he uses to assess an ICO thus providing a simple framework for ICO due diligence. As a Newbie (reformed shitposter! ), I do not know where to begin with such a discussion or whether the validity of such a discussion is warranted here. If such a discussion is warranted and, as the work belongs to Sebastian Wurst, I will do my utmost to ensure that his intellectual property is properly recognized in the forum. Please help!
|
|
|
|
amishmanish
Legendary
Offline
Activity: 1904
Merit: 1159
|
|
September 23, 2018, 09:00:02 AM |
|
After reading a great article on Medium, by Sebastian Wurst--a computer scientist turned digital health researcher turned digital strategist, thinking about #startups, #blockchain, #ai, and #digitalhealth--I would like to begin a thread about the 30 questions across 7 dimensions that he uses to assess an ICO thus providing a simple framework for ICO due diligence. As a Newbie (reformed shitposter! ), I do not know where to begin with such a discussion or whether the validity of such a discussion is warranted here. If such a discussion is warranted and, as the work belongs to Sebastian Wurst, I will do my utmost to ensure that his intellectual property is properly recognized in the forum. Please help! Anything about ICOs should ideally be started in the Altcoin Discussion threads. If you want to discuss its wider implication to bitcoin ecosystem, you could also use the Bitcoin Discussion page.
|
|
|
|
jcmansah7
Member
Offline
Activity: 434
Merit: 10
|
|
September 23, 2018, 09:54:26 AM |
|
This is a right step in action to cleanse the forum of some of the numerous irrelevant post but seriously i don't think this will solve the situation fully as already some folks have started abusing the merit system as reported by LoyceV. I know this forum has a system where it rates the relevancy of post so what if we can use this system to automatically delete post that are irrelevant to topic under discussion. For instance if a comment is not more than 50% relevant then such a topic or comment should be automatically deleted by the system.
|
|
|
|
2girls
Sr. Member
Offline
Activity: 1002
Merit: 254
Tontogether | Save Smart & Win Big
|
|
September 23, 2018, 06:41:57 PM |
|
How to create a list of every demoted ex-junior member that received exactly 1 merit AFTER Theymos announced the new newbie restriction rules... So be carefull, this list WILL receive false-positives, but my gut feeling tells me that at least 50% of the resulting users have abused the system... Step 1: wait untill the current week is done Step 2: Download LoyceV's full merit history Step 3: tac merit.all.txt > merit.txt Step 4: #!/usr/bin/python import time import cfscrape import re #the unix timestamp on which Theymos declared the new rule about 1 merit minimum timestamp_start = 1537157940 #a list of the complete merit history, reversed (oldest timestamp on top), tac merit.all.txt > merit.txt filepath = 'merit.txt' #database with the latest message received merit BEFORE the rule change... db_received_merit_before_newrule = {} #potential suspect senders db_theusualsuspects_from = {} #potential suspect receivers db_theusualsuspects_to = {} print "everything intialised" print "starting the parsing of " + filepath with open(filepath) as fp: line = fp.readline() linenumber = 0 while line: linenumber += 1 line = fp.readline().strip() parts = line.split() try: timestamp = int(parts[0]) amount = int(parts[1]) msg = str(parts[2]) from_uid = int(parts[3]) to_uid = int(parts[4]) #if the time of the merit exchange happened BEFORE the rule change,the user is whitelisted because he received merit BEFORE he knew he/she needed it to move past newbie if timestamp < timestamp_start: if to_uid not in db_received_merit_before_newrule: db_received_merit_before_newrule[to_uid] = msg else: #only if the user never received merit BEFORE the rule change, and the merit amount was exactly 1 if to_uid not in db_received_merit_before_newrule and amount == 1: print str(to_uid) + " was merited with 1 merit for the first time after " + str(timestamp_start) + "...Suspicious" #keep the uid + latest msg for the potentially abusive sender for later analysis if from_uid not in db_theusualsuspects_from: db_theusualsuspects_from[from_uid] = msg #add the uid + latest message to the db to check if to_uid not in db_theusualsuspects_to: db_theusualsuspects_to[to_uid] = msg
except: print "error in line " + str(linenumber) + "(" + line + ")" print "ending the parsing of " + filepath print "getting all profiles and filtering out all jr members" for suspect in db_theusualsuspects_to: scraper = cfscrape.create_scraper() html = scraper.get("https://bitcointalk.org/index.php?action=profile;u=" + str(suspect)).content m = re.search('(<td>Jr. Member</td>)', html) if m: m2 = re.search('(<td>1</td>)', html) if m2: print str(suspect) + " " + m.group(0) + " " + db_theusualsuspects_to[suspect] time.sleep(2)
So indirectly you are saying that who ever receive 1 Merit is subject to be suspicious ?
|
|
|
|
MagicSmoker
|
|
September 23, 2018, 08:36:14 PM |
|
How to create a list of every demoted ex-junior member that received exactly 1 merit AFTER Theymos announced the new newbie restriction rules... So be carefull, this list WILL receive false-positives, but my gut feeling tells me that at least 50% of the resulting users have abused the system...
So indirectly you are saying that who ever receive 1 Merit is subject to be suspicious ? Well, apply some common sense, here: people who received no merit couldn't possibly be accused of abuse... Let's see where the data takes us before making any pitched arguments, though.
|
|
|
|
DeepestOnion
Newbie
Offline
Activity: 62
Merit: 0
|
|
September 23, 2018, 10:05:23 PM |
|
good move to have minimum 1 merit to be abble to upgrade from newbie to Jr, but if you just have to post a message like this to earn a merit, it's not so difficult... @the Phamarcist: First as a joke, but you'll agree that given the difficulty of collecting merits on local boards, your donation is a little inappropriate... Well, a message with zero words is really minimalistic indeed. I wonder if there are other gifs with zero words which which have got merited. We may discover that saying something is possibly NOT the best strategy to raise in rank If confirmed, that could be a terrific discovery for all those shitposters who cannot write in English but they do post nevertheless in abbundance. Suddenly they may chose to adopt this strategy which doesn't require being able to communicate with words and sentences. Let's get ready for a tsumani of GIFs on the forum - Lol
|
|
|
|
DdmrDdmr
Legendary
Offline
Activity: 2520
Merit: 11075
There are lies, damned lies and statistics. MTwain
|
|
September 23, 2018, 10:18:01 PM |
|
<...> Well, a message with zero words is really minimalistic indeed. I wonder if there are other gifs with zero words which which have got merited. <...>
Here’s an example: https://bitcointalk.org/index.php?topic=178336.msg31165706#msg31165706. It’s jpg, but serves the purpose, and it got 14 sMerits. The referenced thread is rather prolific with these, but it is a rather particular ecosystem.
|
|
|
|
mascondante
Copper Member
Jr. Member
Offline
Activity: 97
Merit: 2
|
|
September 24, 2018, 02:26:05 AM |
|
Couldn't resist.
|
|
|
|
JayJuanGee
Legendary
Offline
Activity: 3920
Merit: 11332
Self-Custody is a right. Say no to"Non-custodial"
|
|
September 24, 2018, 04:17:58 AM |
|
Couldn't resist. The meme would be more funny if you were not serious.
|
1) Self-Custody is a right. There is no such thing as "non-custodial" or "un-hosted." 2) ESG, KYC & AML are attack-vectors on Bitcoin to be avoided or minimized. 3) How much alt (shit)coin diversification is necessary? if you are into Bitcoin, then 0%......if you cannot control your gambling, then perhaps limit your alt(shit)coin exposure to less than 10% of your bitcoin size...Put BTC here: bc1q49wt0ddnj07wzzp6z7affw9ven7fztyhevqu9k
|
|
|
ariewayq
Newbie
Offline
Activity: 135
Merit: 0
|
|
September 24, 2018, 05:02:30 AM |
|
then why with me, why go back to the newbie, is there something wrong with me or the engine error I saw the activities of the old people, commented a little but they got on the move faster
|
|
|
|
vphasitha01
|
|
September 24, 2018, 05:16:36 AM |
|
Couldn't resist. No, we are not here to throwing bones then why with me, why go back to the newbie, is there something wrong with me or the engine error I saw the activities of the old people, commented a little but they got on the move faster I just look at your post history. Most of the post you're posted in the ANN threads and its filled with bounty reports and annoying big images. So its quite obvious why you didn't receive any merit. Old people have the higher engine capacity like V12 but seem like the error is in your engine. It's time to change the engine or the entire vehicle before you're going to hit by some of the old member or mod
If you're considering about the modifications, Read this manual and then you can move fast like the oldies.
|
|
|
|
john1010
|
|
September 24, 2018, 05:46:28 AM |
|
This new rule will bring WIN WIN on both the members and to protect also the forum, we couldn't deny the fact that this forum were abused by those greedy and taking advantage the forum's popularity by creating farm account to use to some bounty offers and it will bring a bad reputation for the forum itself. Thanks Admin for this clarification that we need to abide and follow.
|
|
|
|
Rtalk
Jr. Member
Offline
Activity: 420
Merit: 1
|
|
September 24, 2018, 09:02:55 AM |
|
I'll even speak for myself.The new rules made newcomers to think differently.Now to get one measure-you need to write something correct and smart, so that others see your contribution and appreciated. Now many just do not want to write outright spam that no one will be rewarded.I already now see that in the main remained those whom merit indeed need and who seeks to his obtain - not buy.Innovations definitely brought more benefit.
|
|
|
|
hilariousetc
Legendary
Offline
Activity: 2982
Merit: 3063
Join the world-leading crypto sportsbook NOW!
|
|
September 24, 2018, 09:13:55 AM |
|
It seems like the hype has gone, Meta has only 1-2 new pages of new or newly answered topics per day just like before the implementation of the 1 merit to become Jr. system. As most of the signature campaigns pay weekly (I don't know about the bounty campaigns), we need to wait for a week at least to let the newbies stop complaining in Meta. After then, those who have sMerits available can start to take a look at the Bitcoin Discussion and other former spam boards to find some newbies who worth some merits... I hope this will help those boards to get spam free again (or at least partially, like a few years before)...
Babies don't cry forever. They soon get bored or tire themselves out, especially when the realise their temper-tantrum isn't working, but I said this would happen. I'm sure if theymos ever makes more restrictions they'll all be back again here crying in Meta. I hope the next one is removing Junior's signatures completely because one merit isn't enough to be able to earn here and cheating to get it will become rife. Ten merit is obviously ten times as harder/expensive and would have a much bigger impact on spam. The user that merited him also merited 11 for this: Telegram Username: @tanong001 Ethereum Address: 0xFa4CEAB9A6E7BAB74ca25294768012dbAAd5f7fF
Something is going on there.
|
|
|
|
KBCapital
Newbie
Offline
Activity: 139
Merit: 0
|
|
September 24, 2018, 01:03:29 PM |
|
This forum is so strict. Most users is now Newbie. Kaka I have 3-year experiences in Bitcoin and crypto investment but I still just a Newbie in Bitcointalk forum
|
|
|
|
|