Author Topic: *New* Comment Tips on BeyondBitcoin.org  (Read 7858 times)

0 Members and 1 Guest are viewing this topic.

Offline fuzzy

@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.
WhaleShares==DKP; BitShares is our Community! 
ShareBits and WhaleShares = Love :D

Tuck Fheman

  • Guest
@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?


Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc


Offline fuzzy

WhaleShares==DKP; BitShares is our Community! 
ShareBits and WhaleShares = Love :D

Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav
@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 :)

Offline fuzzy

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. 
WhaleShares==DKP; BitShares is our Community! 
ShareBits and WhaleShares = Love :D

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
@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. ;)


Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav

Offline roadscape

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.
http://cryptofresh.com  |  witness: roadscape

Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav
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

Offline Permie

  • Hero Member
  • *****
  • Posts: 606
  • BitShares is the mycelium of the financial-earth
    • View Profile
  • BitShares: krimduss
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?
JonnyBitcoin votes for liquidity and simplicity. Make him your proxy?
BTSDEX.COM

Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav
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

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
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...'">
« Last Edit: July 14, 2015, 10:50:14 am by Buck Fankers »

Offline fav

  • Hero Member
  • *****
  • Posts: 4278
  • No Pain, No Gain
    • View Profile
    • Follow Me!
  • BitShares: fav
great initiative!

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

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
v2 of the Comment Tipper is now up, give it a try!

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
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!

Offline roadscape

Nicely done. Btw, the earlier comments attributed to me were Riverhead's I believe. Great transcription though.
http://cryptofresh.com  |  witness: roadscape

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
You can now easily tip bitUSD and bitGold ... https://beyondbitcoin.org/bitshares-developer-hangout-with-bytemaster-july-10-2015/

Someone send me a couple bitGold to test with. ;)

Offline cass

  • Hero Member
  • *****
  • Posts: 4311
  • /(┬.┬)\
    • View Profile
█║▌║║█  - - -  The quieter you become, the more you are able to hear  - - -  █║▌║║█

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
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.

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
Bam .. nice idea ..
Could we use that service to also tip in bitUSD or even better BitSharesGOLD (similar to reddit GOLD)?

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers

Offline Buck Fankers

  • Full Member
  • ***
  • Posts: 177
  • Under New Management
    • View Profile
    • TuckFheman.com
  • BitShares: buckfankers
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/
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.
« Last Edit: July 14, 2015, 02:26:22 pm by Buck Fankers »