BitShares Forum

Other => Graveyard => Beyond Bitcoin [closed] => Topic started by: Buck Fankers on July 12, 2015, 12:36:47 am

Title: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 12, 2015, 12:36:47 am
We're trying out something new with the transcripts in hopes of promoting tipping with BitShares and increasing participating in the hangouts. This is pre-alpha stage (lulz) and we have no idea what we're doing, but we made a quick and easy way to tip BTS or Brownie.PTS to people who comment during a hangout ... technically, you can't tip them until the hangout has been transcribed. ;)

Give it a try here ... https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/ (https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/)
ProTip: It helps if your BitShares client is already open.

If it catches on, we'll start spamming these things everywhere.  ;D

Want to make some better images? Have a better way to make this happen? Please let us know!

Be sure to read the bottom of the page for more information on how you can receive tips or have your comments removed from a transcript.
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 12, 2015, 05:31:58 am
bump
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: xeroc on July 12, 2015, 09:16:58 am
Bam .. nice idea ..
Could we use that service to also tip in bitUSD or even better BitSharesGOLD (similar to reddit GOLD)?
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 12, 2015, 09:36:06 am
Bam .. nice idea ..
Could we use that service to also tip in bitUSD or even better BitSharesGOLD (similar to reddit GOLD)?

 :)
great idea! i'll add some more options tomorrow.
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: cass on July 12, 2015, 07:02:38 pm
 +5%
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 12, 2015, 11:52:23 pm
You can now easily tip bitUSD and bitGold ... https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/ (https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/)

Someone send me a couple bitGold to test with. ;)
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 12, 2015, 11:57:15 pm
(http://i.imgur.com/Oqi5yTo.jpg)
(http://www.reactiongifs.com/r/unpwr.gif)
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: roadscape on July 13, 2015, 06:36:38 pm
Nicely done. Btw, the earlier comments attributed to me were Riverhead's I believe. Great transcription though.
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 14, 2015, 09:06:33 am
Nicely done. Btw, the earlier comments attributed to me were Riverhead's I believe. Great transcription though.

did you comment in that hangout? if so and if you don't mind, can you tell me at what time you commented (see transcript) so I can go back and listen to your voice and update the others, thanks!
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 14, 2015, 09:06:59 am
v2 of the Comment Tipper is now up, give it a try!
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fav on July 14, 2015, 09:13:13 am
great initiative!

is this compatible with other sites? I'd like to add it to my blog
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 14, 2015, 10:47:28 am
great initiative!

is this compatible with other sites? I'd like to add it to my blog

sure is, it's just a simple form.

The dropdown's
Code: [Select]
<select id="dropdown1">
  <option value="bytemaster">bytemaster</option>
  <option value="cryptoprometheus">cryptoprometheus</option>
  <option value="beyondbitcoin">fuzzy</option>
  <option value="riverhead">riverhead</option>
  <option value="roadscape">roadscape</option>
  <option value="thom">thom</option>
</select> <select id="dropdown2">
  <option value="BTS">BTS</option>
  <option value="BROWNIE.PTS">BROWNIE.PTS</option>
  <option value="USD">USD</option>
  <option value="GOLD">GOLD</option>
</select> <button onclick="getURL()">Tip Commenter</button>

the script ...

Code: [Select]
<script>
var getURL = function(){
    var option1 = document.getElementById('dropdown1').value;
    var option2 = document.getElementById('dropdown2').value;
    var URL = 'bts:' + option1 + '/transfer/asset/' + option2 + '/memo/Tip%20for%20Hangout%20comment-071015';
    window.open(URL);
}
</script>

the css ...

Code: [Select]
#dropdown1{
 width:150px;
}

#dropdown2{
 width:150px;   
}


check this out too, modify this code below with your accountname, past it into a text file and save as whateryouwant.htm, host that file somewhere and make a link to it in your forum sig for tips. very crude forum tip "bot". ;)

Code: [Select]
<meta http-equiv="refresh" content="0; URL='bts:beyondbitcoin/transfer/asset/BROWNIE.PTS/memo/Tip%20for%20...'">
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fav on July 14, 2015, 11:57:45 am
great initiative!

is this compatible with other sites? I'd like to add it to my blog

sure is, it's just a simple form.

The dropdown's
Code: [Select]
<select id="dropdown1">
  <option value="bytemaster">bytemaster</option>
  <option value="cryptoprometheus">cryptoprometheus</option>
  <option value="beyondbitcoin">fuzzy</option>
  <option value="riverhead">riverhead</option>
  <option value="roadscape">roadscape</option>
  <option value="thom">thom</option>
</select> <select id="dropdown2">
  <option value="BTS">BTS</option>
  <option value="BROWNIE.PTS">BROWNIE.PTS</option>
  <option value="USD">USD</option>
  <option value="GOLD">GOLD</option>
</select> <button onclick="getURL()">Tip Commenter</button>

the script ...

Code: [Select]
<script>
var getURL = function(){
    var option1 = document.getElementById('dropdown1').value;
    var option2 = document.getElementById('dropdown2').value;
    var URL = 'bts:' + option1 + '/transfer/asset/' + option2 + '/memo/Tip%20for%20Hangout%20comment-071015';
    window.open(URL);
}
</script>

the css ...

Code: [Select]
#dropdown1{
 width:150px;
}

#dropdown2{
 width:150px;   
}


check this out too, modify this code below with your accountname, past it into a text file and save as whateryouwant.htm, host that file somewhere and make a link to it in your forum sig for tips. very crude forum tip "bot". ;)

Code: [Select]
<meta http-equiv="refresh" content="0; URL='bts:beyondbitcoin/transfer/asset/BROWNIE.PTS/memo/Tip%20for%20...'">

thanks! I'll test it later, setting it up for 2 bts ids :D /cc @Permie
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Permie on July 14, 2015, 01:32:52 pm
thanks! I'll test it later, setting it up for 2 bts ids :D /cc @Permie
+5%

How do you find people's member ID?
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fav on July 14, 2015, 01:42:52 pm
thanks! I'll test it later, setting it up for 2 bts ids :D /cc @Permie
+5%

How do you find people's member ID?

@Permie you don't. disable script blockers, (you need ajax to work) - then type @fa < and select my name in the popup
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: roadscape on July 14, 2015, 02:38:42 pm
Nicely done. Btw, the earlier comments attributed to me were Riverhead's I believe. Great transcription though.

did you comment in that hangout? if so and if you don't mind, can you tell me at what time you commented (see transcript) so I can go back and listen to your voice and update the others, thanks!

Yep, my first comment was at 00:43:40.
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fav on July 14, 2015, 03:30:29 pm
 +5%

TIPs added to http://blog.smartcoin.pw thank you @Buck Fankers
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 14, 2015, 03:39:04 pm
+5%

TIPs added to http://blog.smartcoin.pw thank you @Buck Fankers

(https://beyondbitcoin.org/wp-content/uploads/2015/07/brownie.PTS_-e1436686092955.png)
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Buck Fankers on July 16, 2015, 12:37:02 am
@fav i'm new to wordpress, so i just discovered it likes to strip onclick when you view in visual editor. just be aware of that, if applicable and your tip button stops working one day. ;)
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fuzzy on July 17, 2015, 08:00:24 am
All I know is that I read this thread and smile... 8)

This is one hell of a movement.  Glad to be part of it. 
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fav on July 17, 2015, 08:47:36 am
@fav i'm new to wordpress, so i just discovered it likes to strip onclick when you view in visual editor. just be aware of that, if applicable and your tip button stops working one day. ;)

I don't use wordpress :)
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fuzzy on July 22, 2015, 06:21:03 am
 +5%
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Tuck Fheman on July 22, 2015, 11:46:06 pm
Since fuzzy revived this thread, which Tip Commenter style does everyone prefer?

This
https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/

or this
https://beyondbitcoin.org/bitshares-developer-hangout-bytemaster-brownie-pts-and-cryptonomex-july-17-2015/
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: xeroc on July 23, 2015, 08:01:38 am
This one
https://beyondbitcoin.org/bitshares-developer-hangout-bytemaster-brownie-pts-and-cryptonomex-july-17-2015/
Maybe you can improve on those by adding the identicon for the account names and the asset logos for each asset!
Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: Tuck Fheman on August 14, 2015, 12:38:06 pm
@fuzzy - are you receiving any tips, from someone other than me or Buck, for the hangouts/transcripts with the memo stating it was from this dropdown tipper?

We decided to stop including it on the page because, 1) the code is stripped if someone views page in visual mode, 2) it takes a little more time, 3) i don't see anyone using it, do you?

Title: Re: *New* Comment Tips on BeyondBitcoin.org
Post by: fuzzy on August 18, 2015, 04:44:11 am
@fuzzy - are you receiving any tips, from someone other than me or Buck, for the hangouts/transcripts with the memo stating it was from this dropdown tipper?

We decided to stop including it on the page because, 1) the code is stripped if someone views page in visual mode, 2) it takes a little more time, 3) i don't see anyone using it, do you?

To be honest with you I don't see it being used much (yet), but that could change quickly.  As far as receiving tips myself...well my wallet is still too buggy to open so I have No Clue how many brownies I have received.