Bitcoin Forum
August 15, 2026, 10:02:55 PM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] Cinni :: 100% PoS :: Fair distribution on: April 17, 2014, 03:31:48 PM
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!
2  Local / 媒体 / Re: 2014-02-27 凤凰网:比特币交易平台First Meta网站28岁女CEO自杀身亡 on: April 02, 2014, 11:55:20 AM
美女可惜了!
3  Alternate cryptocurrencies / Altcoin Discussion / Re: Sorry NXT, but is anyone else making a 100% PoS / No-mining altcoin? on: March 21, 2014, 12:30:26 PM
NEM is good for you Grin
4  Local / 山寨币 / Re: (正版)纵论数字货币七大门派 on: March 15, 2014, 11:44:37 AM
中本聪看完,嚎啕大哭而死 Grin
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NEM] NEM -New Economy Movement - No Envy Movement - Updates+Discussion thread on: March 15, 2014, 11:39:37 AM
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?
6  Local / 中文 (Chinese) / Re: "卧底矿池"攻击,花数百万元发动一次51%攻击。 on: March 12, 2014, 10:47:23 AM
攻击者能得到什么好处呢?
7  Local / 中文 (Chinese) / Re: 算是虚拟币寒冬中的一个好消息, 国内一家公司宣布接受比特币和莱特币& on: March 12, 2014, 10:38:12 AM
工商税务不会找它麻烦吧
8  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - www.middlecoin.com on: March 05, 2014, 08:31:42 AM
the statistic graph seems hours behind?
9  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - www.middlecoin.com on: March 02, 2014, 02:32:54 AM
the outcome dropped a lot these days!
10  Local / 中文 (Chinese) / Re: Activity的计算方法 on: March 02, 2014, 02:14:02 AM
怎么用升为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.
11  Local / 中文 (Chinese) / Re: Activity的计算方法 on: February 28, 2014, 03:47:23 PM
搜一下,这个问题被问过多次了:
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
12  Other / Meta / Re: Activity Algorithm on: February 28, 2014, 03:42:30 PM
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.
13  Other / Meta / Re: Activity Algorithm on: February 25, 2014, 08:16:16 AM
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)?
14  Local / 中文 (Chinese) / Re: Activity的计算方法 on: February 25, 2014, 04:08:52 AM
搜一下,这个问题被问过多次了:
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
15  Local / 山寨币 / Re: 开采完了,如何保持不被51%攻击 on: February 25, 2014, 03:41:51 AM
启用pos挖矿,挣交易费
16  Local / 挖矿 / Re: KnC海王星最新消息 on: February 25, 2014, 03:40:20 AM
3T功耗多少?
17  Local / 中文 (Chinese) / Re: Activity的计算方法 on: February 25, 2014, 03:37:24 AM
搜一下,这个问题被问过多次了:
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);

18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NEM -4 billion coins- Equal Shares for ALL - Registration thread (part 2) on: February 15, 2014, 11:44:49 AM
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.
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: February 11, 2014, 03:11:14 PM
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
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: February 11, 2014, 02:20:20 PM
496190489810270180
letter "O"

10k sent
Pages: [1] 2 3 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!