Bitcoin Forum
June 26, 2024, 08:53:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Economy / Micro Earnings / Re: [ANN] Remote Bitcoin/Altcoin Faucets service (no server scripts needed) on: June 13, 2018, 02:41:15 PM
lol ALL of the faucets on the website are trying to use some kind of jsminer without consent of the user, you can go fuck yourself with that script
Thanks for your suggestion =)
We do not have control over faucet owners, they can put on the pages whatever they want, including HMR miners, we just provide the user attraction (faucet) =)
After all I think the issue with mining Monero on the client is overinflated. If a page plays video consuming mush more CPU (btw and bandwidth as well) nobody getting jumpy, right? If someone is so against browser mining - there are plenty of extensions outthere.
22  Economy / Service Announcements / Re: [ANN] Cryptoo.me Micropayment platform on: June 13, 2018, 02:32:46 PM
Hi.

I'm always interested in seeing new microwallets, as I have run faucet style sites, and have plans to do so again in the future.

If you are really interested in competing with faucethub, if I were you, I'd add different currencies to your lineup.
Faucethub runs 6? 7? different coins, and it brought a lot of people together.

If you target coins that are less supported you might be able to claim a bigger share of the microwallet market. (I'd never heard of your service before seeing it here.)
Make a ripple microwallet, Or a stellar one. XMR, etc...

If you don't have any unique features, there isn't much reason to choose your service over faucethub. But if you are the only game in town with Stellar lumen faucets, you might gain a whole different crowd without any competition.

Smiley
Completely agree, we are adding altcoin nodes  right now, corrently working on Monero
23  Economy / Micro Earnings / [ANN] Remote Bitcoin/Altcoin Faucets service (no server scripts needed) on: May 01, 2018, 10:44:11 PM
Hey all Smiley
I would like to present Remote Faucet service @ wmexp.com
It allows to run a faucet on any hosting (free, "constructor only", etc. ,  including Blogger if you wish) - just configure, insert code into your page, like
Code:
<div id='wmexp-faucet-123456'></div> 
<script src='https://wmexp.com/faucet/123456/'></script>
and you good to go (Example:Creating Remote Faucet)

Besides simple Bitcoin Faucet you can do plenty of stuff, like
 games with satoshi bonuses,
 rewarding visitors of your website, or even
 be nice to a dude who clicked on a banner.

Feel free to comment Wink
24  Economy / Service Announcements / Re: [ANN] Cryptoo.me Micropayment platform on: May 01, 2018, 08:13:52 PM
FUCK FUCK FUCK FUCKING RUSSIA FOREVER MOST CRUEL CORRUPT WICKED SCUMMY PLACE ON EARTH
We love you too =)

For the rest of you, guys: some delays were caused by common Bitcoin network delays (remember, when the BTC went to about $20K and transaction queue was about 135K instead of the usual 30K ?)
Everything is running smoothly, you can see the statistics (including recent transactions)
and the growing faucet list.
We doing well Wink
25  Economy / Micro Earnings / HOWTO Javascript game with Satoshi bonus on: April 05, 2018, 09:41:08 PM
There are thousands of free open-source Javascript games out-there. If you are running a game website, why not to get a leg-up over the competition by rewarding the players? You can always re-capitalize on the ads.

For this example we gong to use classic Tetris game - marvelous Blockrain game at https://github.com/Aerolab/blockrain.js. It has DIV to run inside:
Code:
<div class="game" style="width:250px; height:500px;"></div>
and the game starts like:
Code:
$('.game').blockrain({showFieldOnStart: true});
Obviously, it's not doing to be hard to find code, called when the game ends for any Javascript game.
This one has handy callback:
Code:
onGameOver: function(score){
//here we going to hide the game
//and show one of the faucets (depends on the score)  
}

So, let's create the game bonus faucets, using URL of your game page as the URL in the faucet configuration for all of them. The more bonus faucets you create - the merrier. Firstly, it keeps the player motivated, secondly - it increases you game page visibility in the Remote Faucet List, and in the Faucet (App) list of the micro-payment system your Remote Faucets going to use (for example, here ).

If you are not familiar with creating the Remote Faucets - see this example first.

For the simplicity of the example we will use 5 Remote faucets as the rewards, first (score 10 000 and bellow,"Tetris bonus 10K", second (score 20 000,"Tetris bonus 20K", FaucetID 123682) ... fifth (score 50 000,"Tetris bonus 50K", FaucetID 123685).


Now, let's modify the HTML so we have the place to show the faucet when the game ends:
Code:
<!-- 
The div id='wmexp-faucet-TO-BE' is hidden for now,
will set the correct id and show it when the game ends
-->
<div id='wmexp-faucet-TO-BE' style='display:none; min-height:600px;background-color:blue;'></div>
<!--
The div class="game" is shown,
will be hidden when the faucet appears
-->
<div class="game" style="width:250px; height:500px;"></div>



And the final touch, let's create a function to select the correct faucet Id depending on the players score, hide the game, and show  the faucet.
Code:
<script>
show_reward = function(score)
{
var rewards = [
    {score:10000, faucet_id:123681},
    {score:20000, faucet_id:123682},
    {score:30000, faucet_id:123683},
    {score:40000, faucet_id:123684},
    {score:50000, faucet_id:123685},
];

var faucet_id = rewards[0].faucet_id;
for(var i = 0; i < rewards.length; i++)
{
if(score >= rewards[i].score)
{
faucet_id = rewards[i].faucet_id;
}
}

document.querySelector('.game').style.display = 'none'; //hide game div
document.querySelector('#wmexp-faucet-TO-BE').style.display = 'block'; //show faucet div
document.getElementById('wmexp-faucet-TO-BE').id = 'wmexp-faucet-'+faucet_id; //set actual id
var script = document.createElement('script'); //create script
script.src = 'https://wmexp.com/faucet/'+faucet_id+'/'; //set actual url based on faucet id
document.head.appendChild(script); //add the script - it will render the faucet
}
<script>
than place the function in the code:
Code:
<script>
    jQuery(document).ready(function () {
jQuery('.game').blockrain(
{
showFieldOnStart: true,
onGameOver: function(score){
show_reward(score);
},
});
    });
</script>

That's it ! Smiley
It is impossible to insert the game here, so if you want to see it in action - look here (scroll to the bottom)
26  Economy / Service Announcements / Re: Cryptoo.me Micropayment platform on: December 12, 2017, 05:23:10 PM
First of all, it's faicet microwallet, so it would be best to move to Micro Earnings board.
Can you say, why faucet owners and users should use your service? Currently dominant service is Faucethub with huge base of users and faucets and less popular - Faucetsystem. What you can offer better than these services have? And how people can trust you? After epay.info turned into scam, I'm looking really suspiciously into every new microwallet.
And I can suggest to improve page layout a bit, because browsing using mobile isn't very convenient.
Good luck!
Thanks for the advises and the good luck Smiley
I will start a topic in the  Micro Earnings.
- Why to use: Well... We are there =) Fee is lower than the competition. Some nice features for new faucet owners, for example you can use your deposit address when claim from other faucets, and everything you collect is immediately available to fund your own faucet, so you can play with it without the hustle of the funds depositing through Bitcoin network.
- Page layout: We still working on it Roll Eyes - the design is ordered to third-party, we are programmers, not web-designers. Soon we will be better-looking Smiley
- Trust: I guess there is no way to gain it at once. We are working hard in hope it will come in time  Wink


How long have you been doing this guys?
I believe we are up for about 3 weeks.
27  Economy / Service Announcements / [ANN] Cryptoo.me Micropayment platform on: December 02, 2017, 04:34:29 PM
https://Cryptoo.me Micropayment platform has been released  Wink

API: https://cryptoo.me/api-doc/
Faucet List: https://cryptoo.me/rotator/

Already integrated with:
 Remote Bitcoin Faucets Service (https://wmexp.com) and Wordpress Bitcoin Faucet Plugin(https://wordpress.org/plugins/bitcoin-faucet/)

Tiny commission (https://cryptoo.me/fees/). Automatic payouts.

Nice feature: when you claim from other cryptoo.me faucets and use your cryptoo.me deposit address, you immediately fund your faucets – useful for newbies, who want to play with own faucet without hustle of bitcoin transfers.


Enjoy Smiley
28  Economy / Micro Earnings / Re: New faucet on: October 27, 2017, 04:41:32 PM
is it still profitable?
29  Economy / Micro Earnings / Re: Finally a bitcoin faucet wordpress plugin. See it in action on: October 27, 2017, 04:22:47 PM
must be logged in ?
30  Economy / Economics / Re: Is it profitable to run a Bitcoin faucet in 2017 on: October 27, 2017, 04:13:31 PM
With so many bitcoin faucets site shutting down monthly, I don't think it is really profitable to run a bitcoin faucet site considering the time and effort the site admin would have to dedicate to the site. If the amount of satoshis reward is too low per claim, attracting visitors to the site would be another huge problem for the admin.
Not too much of an effort - free hosting, wordpress, plugin - you have your faucet site running like in 10 minutes.
Although promotion - is different issue...
31  Economy / Micro Earnings / Re: Custom faucet — Wordpress Plugin — Project idea on: October 27, 2017, 03:58:39 PM
Another way to embed a faucet into WordPress page would be to use remoutly hosted faucets (https://wmexp.com/)
...and the  WordPress plugin is ready : https://wordpress.org/plugins/simple-bitcoin-faucets/
32  Economy / Micro Earnings / Re: can i build a bitcoin faucet in wordpress on: October 27, 2017, 03:49:45 PM
in a form of WordPress plugin now: https://wordpress.org/plugins/simple-bitcoin-faucets/
33  Economy / Micro Earnings / Re: can i build a bitcoin faucet in wordpress on: October 02, 2017, 05:00:31 PM
BTW another option to add faucet to wordpress (well, pretty much to anything) would be to get a remotely hosted faucet and add two lines of code to the page where it suppose to appear.
Examples: https://wmexp.com/remotely-hosted-bitcoin-faucet-examples-list/
34  Economy / Micro Earnings / Re: Custom faucet — Wordpress Plugin — Project idea on: October 02, 2017, 01:37:26 PM
Another way to embed a faucet into WordPress page would be to use remoutly hosted faucets (https://wmexp.com/)
35  Economy / Micro Earnings / [ANN] Remotely Hosted Bitcoin Faucets on: September 29, 2017, 10:11:45 PM
Hi all

I'd like to present you Remotely hosted Bitcoin Faucets at https://wmexp.com
How it works: you configure a faucet on the website, insert two lines of HTML  into a page, and the faucet is there
Code:
<div id='wmexp-faucet-123456'>loading...<div>
<script src='https://wmexp.com/faucet/123456/'></script>
Examples: https://wmexp.com/remotely-hosted-bitcoin-faucet-examples-list/
Still in beta2, but no major changes are expected, so feel free to play around  Wink
Any input is greatly appreciated
Thanks
36  Economy / Micro Earnings / Re: Custom faucet — Wordpress Plugin — Project idea on: January 10, 2017, 10:54:30 AM
I was looking for a faucet plugin for Wordpress a year or so ago, but I couldn't find any. I can't wait for this faucet plugin for Wordpress to be released because it might be useful when I start a Wordpress site.

Another year later =) :  https://wordpress.org/plugins/bitcoin-faucet/
37  Economy / Micro Earnings / Re: can i build a bitcoin faucet in wordpress on: January 10, 2017, 10:22:24 AM

Here you go: https://wordpress.org/plugins/bitcoin-faucet/
38  Economy / Micro Earnings / Re: faucet script in wordpress on: January 10, 2017, 10:07:41 AM
It maybe too late, but there is a faucet plugin in the WP repository:
https://wordpress.org/plugins/bitcoin-faucet/
39  Bitcoin / Project Development / Re: Wordpress Bitcoin faucet ? on: December 25, 2016, 03:34:37 PM
BTW Bitcoin Faucet WordPress Plugin in the repository now =)
Enjoy:)

 https://wordpress.org/plugins/bitcoin-faucet/


Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!