Author Topic: *New* Comment Tips on BeyondBitcoin.org  (Read 7777 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 »