Search content
Sort by

Showing 9 of 9 results by victorlin
Post
Topic
Board Service Announcements
Topic OP
Real-time message pushing cloud solution which accepts Bitcoins - EZComet.com
by
victorlin
on 06/04/2013, 05:10:49 UTC
Hi Bitcoin fans,

I'm glad to announce that EZComet.com accepts bitcoins now Cheesy

EZComet.com is a cloud service, which provides real-time message pushing service.

What is real-time message pushing (as known as Ajax/Comet, long polling and websocket), you may ask. Well, it is not for all end-user, it is mainly for website developers. In traditional HTTP protocol, a browser can only send a request to the server and expect a response. In this manner, you can not know latest messages without refresh the web page. For example, in old school web-based mailbox, you need to refresh your web page to read latest mails. With real-time message pushing technologies, messages can be push directly from the server to the web browser pages. You can see "What is EZComet?" description on my website home page to understand how it looks like.

It is very useful for bitcoin web service developers. In cases, Bitcoin price to USD dollars changes rapidly, EZComet then can be used to display latest product/service price in real-time. You can reference to my demo page

https://ezcomet.com/demo/bitcoin_price

It's very easy to use, no need to setup your own server, no need to configure, just get the API key, read those examples and documents, then you can use it on your website.

Hope this cloud be helpful Tongue
Post
Topic
Board Beginners & Help
Re: Where to promote my service?
by
victorlin
on 04/04/2013, 13:02:00 UTC
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.
Post
Topic
Board 中文 (Chinese)
Topic OP
我的即時訊息推送服務 EZComet 現在收比特幣啦
by
victorlin
on 04/04/2013, 05:17:26 UTC
我是來自台灣的開發者,本人在大學讀的是密碼學,覺得 Bitcoin 這東西真不是一般的神奇,花了不少時間研究,覺得這東西挺好的,想來支持一下,我先前經營了一個即時網頁訊息的推送 (Ajax/Comet)服務

http://ezcomet.com/

昨天串接上了 BitPay 金流,所以現在可以用Bitcoin買我的服務啦  Grin
希望有需要的話可以支持一下!

這裡有範例,每三十秒去讀MtGox的價格,然後推到我的服務上,就能即時顯示在網頁上

http://ezcomet.com/demo/bitcoin_price

當然也可以用在其它地方

我也順便寫了一套Python的BitPay金流API並開源出來

https://pypi.python.org/pypi/pybitpay/0.1

如果有用Python要串接BitPay就不必再重寫

有機會可以交流一下 Tongue
Post
Topic
Board 中文 (Chinese)
Topic OP
兩年升值2萬倍,最划算的投資 — 深入了解 Bitcoin
by
victorlin
on 04/04/2013, 05:04:06 UTC
http://yowureport.com/?p=5358

Quote
哪種貨幣可以在短短兩年內升值兩萬倍?不是美金、不是人民幣,是 Bitcoin。

2010年5月22日,一位老兄在網路上自稱他用10,000 Bitcoin成功地買到了兩塊價值25美元的 Pizza。

兩年過去了,在筆者撰寫此文的當下,Bitcoin兌美金的匯率來到歷史新高,1 Bitcoin 可兌換47美金!當初賣出兩塊 Pizza 的老兄,如果他手上的 Bitcoin 沒有花掉的話,已經現值$470,000美金,換算台幣約 1千4百萬元。

兩年內增值近兩萬倍!誰能料想到兩年前的兩塊 Pizza 現在值一棟房子呢?(編按:賣 pizza 的人發了)下圖是近三年來 Bitcoin 的漲勢圖:

這文章寫得好仔細阿,不過要登入才看得到
Post
Topic
Board Altcoin Discussion
Re: Bytecoin [BTE] (Genesis block launch April,1 2013)
by
victorlin
on 04/04/2013, 05:01:16 UTC
What's its difference between bitcoin?

Does it has any feature that is better than bitcoin?   Huh
Post
Topic
Board Beginners & Help
Re: Where to promote my service?
by
victorlin
on 04/04/2013, 04:35:27 UTC
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='',
        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:



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
Post
Topic
Board Beginners & Help
Topic OP
Where to promote my service?
by
victorlin
on 04/04/2013, 04:30:01 UTC
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.
Post
Topic
Board Beginners & Help
Re: Introduce yourself :)
by
victorlin
on 04/04/2013, 03:54:23 UTC
Hi,

I'm new here. I'm a developer. I love Python programming and Bitcoin. My personal blog is http://victorlin.me.

I run a website EZComet http://ezcomet.com, which is a realtime message pushing service. If you were a develop, EZComet could be very helpful for getting realtime information on your website. For example, you can get realtime Bitcoin price by pushing data through EZComet to your website, here is the demo page

http://ezcomet.com/demo/bitcoin_price

Finally, I am glad to announce that EZComet accept bitcoins now. Smiley

Post
Topic
Board Beginners & Help
Re: Whitelist Requests (Want out of here?)
by
victorlin
on 03/04/2013, 17:42:03 UTC
Hi,

I need to be allowed to post. I'm a developer who likes Bitcoin so much, and I just released an open source project named pybitpay https://pypi.python.org/pypi/pybitpay/0.1, which is a Python API for BitPay payment gateway (You can found it at Python Package Index). I'm also running a software as service website name "EZComet" http://ezcomet.com, which is a web-base realtime message pushing service. And I want to announce that my website accepts Bitcoin now (proudly).

Also, my master degree in computer science is all about cryptography, I am kind of expert, I can explain how bitcoin works, such as work of proof, hashing, encrypting, digital signature and so on.

You can reference to my blog -  http://victorlin.me

Thank you so much.
Victor Lin.