Bitcoin Forum
May 11, 2024, 05:19:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Where to promote my service?  (Read 579 times)
victorlin (OP)
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 04, 2013, 04:30:01 AM
 #1

Hi,

I'm new here, I am wondering where can I promote my website? We accepts bitcoins, but I can only find little place to promote it. For the wiki page https://en.bitcoin.it/wiki/Trade, I have no idea how to put my link on it. Does anyone could help?

Is there any other place to promote my service?

My website is http://ezcomet.com, it's a realtime message pushing service. When the bitcoin price is floating, this could be very helpful for developers to display messages on website in realtime.

Thanks.
Victor Lin.
Make sure you back up your wallet regularly! Unlike a bank account, nobody can help you if you lose access to your BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715404761
Hero Member
*
Offline Offline

Posts: 1715404761

View Profile Personal Message (Offline)

Ignore
1715404761
Reply with quote  #2

1715404761
Report to moderator
1715404761
Hero Member
*
Offline Offline

Posts: 1715404761

View Profile Personal Message (Offline)

Ignore
1715404761
Reply with quote  #2

1715404761
Report to moderator
victorlin (OP)
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 04, 2013, 04:35:27 AM
 #2

By the way, it's very easy to use, this is why I named it "EZ".

To read bitcoin price and push to my service, here you can write Python script like this

Code:
import time
import urllib
 
import ezcomet
 
 
def read_price():
    f = urllib.urlopen('http://data.mtgox.com/api/1/BTCUSD/ticker')
    content = f.read()
    return content
 
 
def main():
    api = ezcomet.EZCometAPI(
        api_key='<your API goes here>',
        user_name='demo',
    )
    while True:
        time.sleep(30)
        price_data = read_price()
        api.write('bitcoi[Suspicious link removed]ice', price_data)
 
if __name__ == '__main__':
    main()

The javascript to receive messages is also simple

Code:
<script src="http://cdn.ezcomet.com/ezcomet.min.js"></script>
<script>
    window.onload = function() {
        function callback(msg) {
            var result = msg['return'].last_local;
 
            var date = new Date( parseInt(msg['return'].now) / 1000 );
            // hours part from the timestamp
            var hours = date.getHours();
            // minutes part from the timestamp
            var minutes = date.getMinutes();
            // seconds part from the timestamp
            var seconds = date.getSeconds();
            // will display time in 10:30:23 format
            var formattedTime = hours + ':' + minutes + ':' + seconds;
 
            document.getElementById('price').innerHTML = result.display + ' USD';
            document.getElementById('now').innerHTML = formattedTime;
        }
        ezcomet.subscribe({
            user_name: 'demo',
            channel: 'bitcoi[Suspicious link removed]ice',
            msg_type: 'json',
            callback: callback,
            auto_tick: false
        });
    };
</script>

You can see the live demo here

http://ezcomet.com/demo/bitcoin_price

If you have question about my service, you can ask me here. Cheesy
Stephen Gornick
Legendary
*
Offline Offline

Activity: 2506
Merit: 1010


View Profile
April 04, 2013, 09:05:35 AM
 #3

For the wiki page https://en.bitcoin.it/wiki/Trade, I have no idea how to put my link on it. Does anyone could help?

The Bitcoin.it wiki uses a bitcoin validation method (send bitcoin to the address for your username) to protect against spammers:

If you didn't want to sign up there, I've added your service:

 -  http://en.bitcoin.it/wiki/Trade#Cloud_Providers_and_Services

Unichange.me

            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █


btcfrog
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
April 04, 2013, 09:14:29 AM
 #4

By the way, you should change the title tag on your firstpage to something else than "Home".

- First off its not that usefull for users when the "Firefox" tab reads home, hard to know which one is EZcomet.
- Secondly the title tag is used by the search engines for both indexing and sometimes showing the results on the page.

Suggestion on new title tag (just a fast not thought through example) "EZCOMET Bitcoin realtime web message pushing"

And while you are at it add a good meta description tag, if it is good that is what google will show.


Good luck on your venture
//btcfrog
kokjo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000

You are WRONG!


View Profile
April 04, 2013, 09:18:53 AM
 #5

in my sig, for 0.25 btc.

"The whole problem with the world is that fools and fanatics are always so certain of themselves and wiser people so full of doubts." -Bertrand Russell
John (John K.)
Global Troll-buster and
Legendary
*
Offline Offline

Activity: 1288
Merit: 1226


Away on an extended break


View Profile
April 04, 2013, 10:06:39 AM
 #6

Whitelisted. Feel free to post elsewhere (probably in Marketplace -> Services or Marketplace -> Service announcements) about this.
victorlin (OP)
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 04, 2013, 01:02:00 PM
 #7

By the way, you should change the title tag on your firstpage to something else than "Home".

- First off its not that usefull for users when the "Firefox" tab reads home, hard to know which one is EZcomet.
- Secondly the title tag is used by the search engines for both indexing and sometimes showing the results on the page.

Suggestion on new title tag (just a fast not thought through example) "EZCOMET Bitcoin realtime web message pushing"

And while you are at it add a good meta description tag, if it is good that is what google will show.


Good luck on your venture
//btcfrog

Done, thanks. I didn't notice that :S

Will try to do some more SEO later.
btcfrog
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
April 08, 2013, 12:45:09 PM
 #8

No problem, always nice to do something useful.

//btcfrog

By the way, you should change the title tag on your firstpage to something else than "Home".

- First off its not that usefull for users when the "Firefox" tab reads home, hard to know which one is EZcomet.
- Secondly the title tag is used by the search engines for both indexing and sometimes showing the results on the page.

Suggestion on new title tag (just a fast not thought through example) "EZCOMET Bitcoin realtime web message pushing"

And while you are at it add a good meta description tag, if it is good that is what google will show.


Good luck on your venture
//btcfrog

Done, thanks. I didn't notice that :S

Will try to do some more SEO later.
Pages: [1]
  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!