Bitcoin Forum
April 25, 2024, 03:05:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Option "track/follow user"  (Read 1201 times)
Lauda
Legendary
*
Offline Offline

Activity: 2674
Merit: 2965


Terminated.


View Profile WWW
May 15, 2015, 04:32:46 PM
 #21

No. Basically I don't people having easy access to being able to watch over me.
I don't think that would be a good idea. Someone could easily get around this by simply using an alt account to receive tracking notifications. You don't even need to be logged in to see posts.

I think scammers would likely use this feature to avoid people noticing that they are attempting to scam (the same could be said about spammers)
Exactly. Even though the idea of someone stalking you might not make you or me comfortable, it is what it is. People could have already manually been watching your every move. I'm not even going to start mentioning the NSA (Hello, NSA!).
Anyhow, the feature would be quite useful and there is no need for a opposite measure.

"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
😼 Bitcoin Core (onion)
1714057559
Hero Member
*
Offline Offline

Posts: 1714057559

View Profile Personal Message (Offline)

Ignore
1714057559
Reply with quote  #2

1714057559
Report to moderator
1714057559
Hero Member
*
Offline Offline

Posts: 1714057559

View Profile Personal Message (Offline)

Ignore
1714057559
Reply with quote  #2

1714057559
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714057559
Hero Member
*
Offline Offline

Posts: 1714057559

View Profile Personal Message (Offline)

Ignore
1714057559
Reply with quote  #2

1714057559
Report to moderator
1714057559
Hero Member
*
Offline Offline

Posts: 1714057559

View Profile Personal Message (Offline)

Ignore
1714057559
Reply with quote  #2

1714057559
Report to moderator
redsn0w
Legendary
*
Offline Offline

Activity: 1778
Merit: 1042


#Free market


View Profile
May 15, 2015, 06:41:49 PM
 #22

Is it possible, or better yet, did anyone else feel that there is need for such a thing? I often find myself in need of such an option, instead of just making
dozens of user profile bookmarks in my browser, and then reading up their posts from there..

I think option to track user (all his posts/threads) would be appreciated amung many members.

cheers

I also support your idea or request, it will be really useful to 'track' an user (and also to tag an user).
koelen3
Legendary
*
Offline Offline

Activity: 1022
Merit: 1007


Sooner or later, a man who wears two faces forgets


View Profile
May 16, 2015, 08:42:10 AM
 #23

It'll be interesting to have such an option. Cheesy
More like to give us a notification on there post OR have a list like Watchlist Huh
ajareselde (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1000

Satoshi is rolling in his grave. #bitcoin


View Profile
May 19, 2015, 06:18:27 PM
 #24

Well, if it's of any use to someone, i made a simple code to get msg when someone you are "monitoring" makes any posts or new topics.
It will notify you on every post made since you start it up, refresh time is 60 seconds.

Code:
#include <Inet.au3>
#include <File.au3>
#include <Array.au3>



$user1=InputBox("Bitcointalk.org UID watchboard", "Input member UID to track here :", "")
$link = "https://bitcointalk.org/index.php?action=profile;u="&$user1&";sa=statPanel"

$sleep=60000
while 1

$1=(_INetGetSource($link))
FileWrite(@scriptdir&"\1.txt", $1)

Global $file = @ScriptDir & "\1.txt", $search = 'Total Posts:</td>'
Global $iLine = 0, $sLine = '', $iValid = 0
Global $hFile = FileOpen($file)
If $hFile = -1 Then
    MsgBox(0,'ERROR','Unable to open file for reading.')
    Exit 1
EndIf

While 1
    $iLine += 1
    $sLine = FileReadLine($hFile)
    If @error = -1 Then ExitLoop

    If StringInStr($sLine, $search) And Not $iValid Then
        $iValid = 1
        ContinueLoop
    EndIf

    If $iValid Then
        $iValid += 1
        Global $topics=($iLine & ':' & $sLine & @CRLF)



        If $iValid > 1 Then ExitLoop
    EndIf
WEnd

FileClose($hFile)
$topics=StringTrimLeft($topics,29)
sleep(500)
$topics=StringTrimright($topics,12)



$topicsupdate=FileRead(@ScriptDir&"\2.txt")

if $topics <> $topicsupdate then MsgBox(0,"Be Advised !", "User with UID :"&$user1&", has made a new post !!",0)

FileDelete(@scriptdir&"\1.txt")
FileDelete(@scriptdir&"\2.txt")

FileWrite(@scriptdir&"\1.txt", $1)
FileWrite(@ScriptDir&"\2.txt",$topics)

sleep($sleep)
wend

Script is for use with autoit program, look it up and compile for yourself if you need this, i will not be giving you .exe files of any sort.

cheers
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!