Bitcoin Forum
June 23, 2024, 05:50:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 [4] 5 6 7 8 9 10 »
61  Alternate cryptocurrencies / Altcoin Discussion / Re: [NEWS] eMunie: Some general news and 100% Anonymity on: August 20, 2013, 07:31:31 AM
...because of the sheer potential game change that it could mean for the crypto scene...


Game changer or not? I don't know.

One thing I know - eMu is backed by at least half a dozen of people who have the balls to walk the talk -> that is what refreshing to me.

Sure, eMu doesn't have all the best of the best, not yet! But for a pre-launch, have you seen anything better?

mikaelh, for example, is a brilliant coder, but he did not get involved with Primecoin until it was launched.

As an analyst, I predict there will be a flood of people wanting to join the team once eMu is on exchanges and has proven it's rock-solid system as a currency.

The BTC trolls will hate it, because eMu is immune to GRQ parasites, so they can't make quick bucks of it, but the smart ones will not fail to recognize its true potential to change the way we:

  • trade
  • communicate
  • store things online.

yes, it's not just trading, there are lots of ambitious plans with eMunie, just not publicly annouced yet.

I want to learn more. Is eMun inflationary deflationary or something else? Where can I read more about it? I want to learn why traders will not be able to profit from trading it (if I understood that part properly?!).
forum.emunie.com and emunie.net
62  Alternate cryptocurrencies / Altcoin Discussion / Re: [NEWS] eMunie: Some general news and 100% Anonymity on: August 10, 2013, 05:17:32 PM
Sounds pretty interesting.. I might have to give this a try when available.

Join us at forum.emunie.com
63  Alternate cryptocurrencies / Altcoin Discussion / Re: MC2 ("Netcoin"): A cryptocurrency based on a hybrid PoW/PoS system on: July 12, 2013, 08:25:55 PM
Download link?
64  Alternate cryptocurrencies / Mining (Altcoins) / Re: [LTC] Online Litecoin Miner on: July 10, 2013, 12:44:56 PM
[2013-07-10 11:12:51] 4 miner threads started
[2013-07-10 11:12:51] Permission error
[2013-07-10 11:12:51] Miner stopped

I use Sarafi on MacOS 10.8.4 with latest Java installed
Anyone please tell me whats wrong?  Huh
Is your username and password correct?
65  Alternate cryptocurrencies / Altcoin Discussion / Re: [XPM] [ANN] Primecoin Prerelease Announcement - Introducing Prime Proof-of-Work on: July 07, 2013, 07:09:58 PM
Can I get some please? Adf2xZkXCF38itqVoSzJfsoKUu6nzHfhCZ
66  Alternate cryptocurrencies / Altcoin Discussion / Re: {ARG}{DGC} Multi-coin GIVEAWAY! on: July 07, 2013, 05:31:32 PM
AVmG5gNhczoDpaXq3UAeUBJK39XFyjuNWY
DHZ1jcW7q45GqpaSBW642kBBfvP9Prynrk
67  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] eMunie (EMU) - NOT a BitCoin fork/clone - call for beta testers on: July 04, 2013, 01:38:11 PM
is the coin released already?? i dont think so?!?!?
Nope, but you can join the beta!
68  Bitcoin / Mining software (miners) / Re: PHP/JS Miner: CurlyBrace; Proof-of-concept on: July 01, 2013, 02:40:31 PM
Generally the existing javascript bitcoin miners now get around 0.1MH/s if using multiple threads. Given that a large number of machines ( website users ) can potentially do a lot of computation, I have started working on a javascript miner ( not java ) a few months ago which can take advantage of just-in-time compilation in the new browsers to achieve a high speedup compared to the existing javascript miners. I performed a lot of code optimization techniques and my preliminary results show more than 10X speed up compared to the best code that I found in internet. This will allow reaching a performance competitive with what can be achieved while running C/Java codes. Please message me if you think this is something that might interest you in any way or if you have any insights.
Hi. Not OP.
This miner is using JS just to control the servers running PHP, such as a webhost.

Have you managed to get your code mining on a pool yet?
69  Other / Off-topic / Re: Know any good free hosting? on: June 16, 2013, 05:22:19 PM
1freehosting.com
70  Alternate cryptocurrencies / Altcoin Discussion / Thinking of forking yacoin on: June 16, 2013, 04:12:20 PM
I'm planning on having a high N-factor at the start, such as 22. This will use 1GB per thread

What do you think of that amount?

I think I found all the relevant code
Code:
unsigned char GetNfactor(int64 nTimestamp) {
    int l = 0;

    if (nTimestamp <= nChainStartTime)
        return 4;

    int64 s = nTimestamp - nChainStartTime;
    while ((s >> 1) > 3) {
      l += 1;
      s >>= 1;
    }

    s &= 3;

    int n = (l * 170 + s * 25 - 2320) / 100;

    if (n < 0) n = 0;

    if (n > 255)
        printf( "GetNfactor(%lld) - something wrong(n == %d)\n", nTimestamp, n );

    unsigned char N = (unsigned char) n;
    //printf("GetNfactor: %d -> %d %d : %d / %d\n", nTimestamp - nChainStartTime, l, s, n, min(max(N, minNfactor), maxNfactor));

    return min(max(N, minNfactor), maxNfactor);
}

Is the return 4 all I need to change?

71  Alternate cryptocurrencies / Altcoin Discussion / Re: YACoin - cpuminer released. Very soon pools will be availaible for this coin on: June 12, 2013, 11:50:22 AM
Having difficulty compiling on linux mint:

Code:
 ./autogen.sh
configure.ac:15: installing `./compile'
configure.ac:4: installing `./config.guess'
configure.ac:4: installing `./config.sub'
configure.ac:6: installing `./install-sh'
configure.ac:6: installing `./missing'
compat/jansson/Makefile.am: installing `./depcomp'
Makefile.am: installing `./INSTALL'
configure.ac:106: error: possibly undefined macro: AC_MSG_ERROR
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

This may work:

https://github.com/jgarzik/cpuminer/issues/40

Thanks
72  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] eMunie (EMU) - NOT a BitCoin fork/clone - call for beta testers on: June 11, 2013, 05:21:16 PM
Can I join the beta?
73  Alternate cryptocurrencies / Altcoin Discussion / Re: YACoin - cpuminer released. Very soon pools will be availaible for this coin on: June 11, 2013, 05:04:55 PM
Having difficulty compiling on linux mint:

Code:
 ./autogen.sh
configure.ac:15: installing `./compile'
configure.ac:4: installing `./config.guess'
configure.ac:4: installing `./config.sub'
configure.ac:6: installing `./install-sh'
configure.ac:6: installing `./missing'
compat/jansson/Makefile.am: installing `./depcomp'
Makefile.am: installing `./INSTALL'
configure.ac:106: error: possibly undefined macro: AC_MSG_ERROR
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
74  Economy / Services / Re: [Hiring]Make a simple to use bitcoin mining program on: June 06, 2013, 06:25:05 PM
bump
75  Economy / Services / Re: [Hiring]Make a simple to use bitcoin mining program on: June 05, 2013, 06:12:54 PM
What would it cost me to have a program which can CPU and GPU mine bitcoin made for me? It would need to mine on p2pool.org, and send 10% of all shares to my address.

It would also need to be very simple to use, where you only have a BTC logo, Text area for your address, a start mining button and the hash speed and estimated BTC/day and $/day. eg. Similar to rublik.com

How much would this cost me? Could you also please show the cost/feature?

I do not have the bitcoins yet

I would suggest using bitminter's mining program.

It's pretty newb friendly.
Wouldn't mind a tip :v

Nah. I'm just kidding.
But if you want to my siggy has the address

Hi. I know about bitminter, however I would like a miner that I can distribute myself to other people, and which then sends me 10% of the coins minted.

Kinda like rublik.com.

I also know how to use cgminer, however I can only cpumine LTC on my pentium Sad
76  Economy / Services / [Hiring]Make a simple to use bitcoin mining program on: June 03, 2013, 01:04:40 PM
What would it cost me to have a program which can CPU and GPU mine bitcoin made for me? It would need to mine on p2pool.org, and send 10% of all shares to my address.

It would also need to be very simple to use, where you only have a BTC logo, Text area for your address, a start mining button and the hash speed and estimated BTC/day and $/day. eg. Similar to rublik.com

How much would this cost me? Could you also please show the cost/feature?

I do not have the bitcoins yet
77  Bitcoin / Bitcoin Wallet for Android / [REQUEST] Show private key on: May 09, 2013, 01:04:22 PM
So that you can also have it on another wallet
78  Bitcoin / Mining support / Why cant you submit shares to 2 or more pools simultaneously? on: May 09, 2013, 07:29:28 AM
Eg. Tell cgminer that when it finds a share, to submit it to more than one pool?

Basically merged mining on different pools
79  Bitcoin / Bitcoin Wallet for Android / [REQUEST] Passcode protection on: May 08, 2013, 05:47:43 PM
Would help ensure no one takes your BTC
80  Alternate cryptocurrencies / Altcoin Discussion / Re: Creating a pool for all cryptocurrencies. Which have I missed? on: May 08, 2013, 05:09:45 PM
setup a YaC pool please.
Will do, when I have a better server.
Pages: « 1 2 3 [4] 5 6 7 8 9 10 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!