Search content
Sort by

Showing 20 of 148 results by omo
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] Cinni :: 100% PoS :: Fair distribution
by
omo
on 17/04/2014, 15:31:48 UTC
Launch will be in 12 hours.

get your miners ready, and make pools.
there will be 3 days of mining

and dont forget to get your coins from ecoiner

15 millions in 3 days, and in 12 hours it will start?
that's almost equivalent to premine.
and no pow algorithm information available.
that's not fair!
Post
Topic
Board 媒体
Re: 2014-02-27 凤凰网:比特币交易平台First Meta网站28岁女CEO自杀身亡
by
omo
on 02/04/2014, 11:55:20 UTC
美女可惜了!
Post
Topic
Board Altcoin Discussion
Re: Sorry NXT, but is anyone else making a 100% PoS / No-mining altcoin?
by
omo
on 21/03/2014, 12:30:26 UTC
NEM is good for you Grin
Post
Topic
Board 山寨币
Re: (正版)纵论数字货币七大门派
by
omo
on 15/03/2014, 11:44:37 UTC
中本聪看完,嚎啕大哭而死 Grin
Post
Topic
Board Announcements (Altcoins)
Re: [NEM] NEM -New Economy Movement - No Envy Movement - Updates+Discussion thread
by
omo
on 15/03/2014, 11:39:37 UTC
you are using exactly the same IPO system as Nxt,but with more people.In essence it is the same.
Not exactly the same. NXT IPO was toooo difficult to participate in because it was required to calculate a hash of a secret phrase, and this is tooo hard for most participants of this subforum.

I wonder how NEM stakeholders will get their accounts?
calculating hash is a safe way to get it,
or the devs release a wallet first?
Post
Topic
Board 中文 (Chinese)
Re: "卧底矿池"攻击,花数百万元发动一次51%攻击。
by
omo
on 12/03/2014, 10:47:23 UTC
攻击者能得到什么好处呢?
Post
Topic
Board 中文 (Chinese)
Re: 算是虚拟币寒冬中的一个好消息, 国内一家公司宣布接受比特币和莱特币&
by
omo
on 12/03/2014, 10:38:12 UTC
工商税务不会找它麻烦吧
Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - www.middlecoin.com
by
omo
on 05/03/2014, 08:31:42 UTC
the statistic graph seems hours behind?
Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - www.middlecoin.com
by
omo
on 02/03/2014, 02:32:54 UTC
the outcome dropped a lot these days!
Post
Topic
Board 中文 (Chinese)
Re: Activity的计算方法
by
omo
on 02/03/2014, 02:14:02 UTC
怎么用升为Member

member需要60activity, 注册约10周的时间

rank                  activity
Brand New:   0 posts, gets 1 gold coin under his name.   
Newbie:   (none), gets 1 gold coin under his name.   
Jr. Member:   activity: 30, gets 1 gold coin under his name.   
Member:           Activity: 60, gets 2 gold coins under his name.   
Full Member:   Activity: 120, gets 3 gold coins under his name.   
Sr. Member:   Activity: 240, gets 4 gold coins under his name.   
Hero Member:   Activity: 480, gets 5 gold coins under his name.
Post
Topic
Board 中文 (Chinese)
Re: Activity的计算方法
by
omo
on 28/02/2014, 15:47:23 UTC
搜一下,这个问题被问过多次了:
The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
activity = min(time * 14, posts)

Activity is updated every 30 minutes.

发帖间隔时间
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);


还有一点,在2周的期间内,如果只发了1贴,activity也加14。所以如果有多个小号要养的话,平均发帖比较合适。
另外,2周的计算不是按照注册时间算的,是固定的,按unix的timestamp算的,应该是每隔1周的周4,所以,如果你正好在某个周3注册,并且只发了一个贴,周4你的activity也会+14
实际周期是1210000秒,是14天6分40秒,下个周期开始时间是下周2的北京时间16点整,再下个周期起点是3月18号16:06:40
Post
Topic
Board Meta
Re: Activity Algorithm
by
omo
on 28/02/2014, 15:42:30 UTC
This is period #1135. Period #1136 will start in about 11 hours, when the unix time 1374560000 % 1210000 == 0.

is it 1210000 or 1209600(14*24*3600)?

It is 1,210,000 so the activity period is actually 2 weeks 6 minutes and 40 seconds.  Hence the day of the week which activity increments changes over time.
thank u for the information,
so the period will start next Tuesday.
Post
Topic
Board Meta
Re: Activity Algorithm
by
omo
on 25/02/2014, 08:16:16 UTC
This is period #1135. Period #1136 will start in about 11 hours, when the unix time 1374560000 % 1210000 == 0.

is it 1210000 or 1209600(14*24*3600)?
Post
Topic
Board 中文 (Chinese)
Re: Activity的计算方法
by
omo
on 25/02/2014, 04:08:52 UTC
搜一下,这个问题被问过多次了:
The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
activity = min(time * 14, posts)

Activity is updated every 30 minutes.

发帖间隔时间
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);


还有一点,在2周的期间内,如果只发了1贴,activity也加14。所以如果有多个小号要养的话,平均发帖比较合适。
另外,2周的计算不是按照注册时间算的,是固定的,按unix的timestamp算的,应该是每隔1周的周4,所以,如果你正好在某个周3注册,并且只发了一个贴,周4你的activity也会+14
Post
Topic
Board 山寨币
Re: 开采完了,如何保持不被51%攻击
by
omo
on 25/02/2014, 03:41:51 UTC
启用pos挖矿,挣交易费
Post
Topic
Board 挖矿
Re: KnC海王星最新消息
by
omo
on 25/02/2014, 03:40:20 UTC
3T功耗多少?
Post
Topic
Board 中文 (Chinese)
Re: Activity的计算方法
by
omo
on 25/02/2014, 03:37:24 UTC
搜一下,这个问题被问过多次了:
The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
activity = min(time * 14, posts)

Activity is updated every 30 minutes.

发帖间隔时间
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);

Post
Topic
Board Announcements (Altcoins)
Re: [ANN] NEM -4 billion coins- Equal Shares for ALL - Registration thread (part 2)
by
omo
on 15/02/2014, 11:44:49 UTC
750nxt sent:
Broadcasted new transaction 17750281447564074715

edit:
I read from the first page that the IPO is going to be closed at about page 90,
if that's true, many ppl will miss the IPO, and this will be another NXT.
I'm a two year old BTK member and I don't come here every day,
the IPO was started on Jan 30, and this is my first time to notice the event.
Post
Topic
Board Announcements (Altcoins)
Re: NXT :: descendant of Bitcoin - Updated Information
by
omo
on 11/02/2014, 15:11:14 UTC
UPDATE: ClieNXT GUI

version 0.0.5 [code name] AE testnet

* this version solely works with testnet server http://holms.cloudapp.net:6874/
* Asset Exchange window has major features

------
Download
------
https://bitbucket.org/fmiboy/clienxt/downloads/clienxt_005.zip


------
Usage
------

* Windows users unzip the archive and run Clienxt.jar file
* Linux users unzip the archive and run in terminal ./clienxt.run &
* Mac users unzip the archive and run in terminal ./clienxt.run & (not tested, working on creating *.app file or *.pkg installer)

* Languages English, Russian only Asset Exchange window translations are missing.

NB: don't use your own accounts on "testnet"

click Unlock button to open new or existing accounts on "testnet" (unlock and watch if you have more accounts)
go to Asset Exchange window and start Trading

------
Screenshots
------
All available Assets


Issue Asset (fill all fields and Issue Asset, min. fee 1000)


Transfer Asset (select account that is added in Unlock window, it will detect all available Assets with their amount, fill rest fields and Transfer Asset)


My orders (all Ask and Bid orders for selected account)


Context menu (select any Asset and right click)


View Open orders (for selected Asset)


Place Order (ask or bid order for selected Asset, enter price 100 that will be considered 1, minimum price is 100)


Cancel Order (in My orders, you can select your order and right click to cancel order)


Cancel order window (requires only secret Phrase of account that placed same order)


Trade history (history of all trades for selected Asset)



Please report bugs or feature request here: https://bitbucket.org/fmiboy/clienxt/issues?status=new&status=open
Once client is tested, we can use it tomorrow without an issue!
Translators are very much welcome! The more languages we have the more people test Asset Exchange tomorrow.

Translators can find word list in Bundle.Properties (everything right side of "=" needs translation) here: https://bitbucket.org/fmiboy/clienxt/src/0a35a05b7786b2c3cf1e69ca16c0bbd48d8f953c/src/clienxt/Bundle.properties?at=master

If you like my work, donate nxt 13792774143018875909 and thank you very much for all supports.

how to start the "place order" dialogue window? I can not find it
Post
Topic
Board Announcements (Altcoins)
Re: NXT :: descendant of Bitcoin - Updated Information
by
omo
on 11/02/2014, 14:20:20 UTC
496190489810270180
letter "O"

10k sent