Bitcoin Forum
May 27, 2024, 09:28:41 AM *
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 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 »
561  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: January 20, 2015, 11:17:29 AM
He just said it was all rejects - I've got 500kh/s on 280X working, but just barely.

You newb's, I tell ya..  Barely working at 500, sheesh, can't even put out the effort to get it stable...  Wink

Haha, it is stable. Just barely over 500  Wink

510 here. Smiley

damm315er probably was mining scrypt with the older sgminer, that explains 100% rejects.. Smiley

Do you use a private miner (kernel)?
562  Bitcoin / Bitcoin Discussion / Re: Bitstamp hack bitcoins are now moving! on: January 19, 2015, 06:04:15 PM
https://blockchain.info/address/1L2JsXHPMYuAa9ugvHGLwkdstCPUDemNCf

the hacked made another 1000 BTC    haha. how many stupids on this planet. they keep sending funds to that account.

that means another 200K at this time.   

Sad to see people do not read announcement.
563  Economy / Economics / Re: Dollar coming to an end on: January 16, 2015, 03:54:38 PM
The $ has been tanking for decades! It already lost most its purchasing power and it will keep losing probably at a much faster rate in the near future!

All currencies are tanking due to inflation, $ is not an exception.
564  Economy / Speculation / Re: If Mark is not only DPR , but also Satoshi ? on: January 16, 2015, 03:52:48 PM
MK and Satoshi have totally different personalities.

And both had nearly 1 mio BTC exchanged to DIRTY fiat. Genious! Invent a ponzi and laugh your ass off. Good job.

Satoshi earned the 1 mio BTC by his talent and hardworking. He deserves it!

MK earned the 1 mio BTC by scamming, cheating and stealing. He doesn't deserve it!

Don't equalize two different person just by their net worth. The ways of earning their money are more important.

MK is a scammer.
565  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BCN] Bytecoin. Secure, private, untraceable since 2012 on: January 16, 2015, 02:47:53 PM
Do we have a gui wallet?

No.
566  Economy / Speculation / Re: So they want to hardfork Bitcoin on: January 12, 2015, 04:42:21 PM
That's stupid idea, it's almost impossible to do an hard fork that will make 51%+ move to it.

If you give a notice of a year, then it is possible.
567  Bitcoin / Bitcoin Discussion / Re: If Bitcoin fails.. on: January 11, 2015, 09:32:20 AM
Bitcoin is an experiment of worldwide community. Maybe the first one.
568  Bitcoin / Bitcoin Discussion / Re: Bitstamp hack bitcoins are now moving! on: January 11, 2015, 09:28:46 AM
Can a coinmixer confiscate those coins and return to Bitstamp? The only problem is that nobody will use that mixer any more.
569  Bitcoin / Bitcoin Discussion / Re: BitHalo : "PayPal and Western Union: You’ve Been Warned" on: January 11, 2015, 09:25:52 AM
Paypal can integrate with BTC, so it is not a threat to Paypal.
570  Bitcoin / Bitcoin Discussion / Re: Too much hacking on: January 11, 2015, 09:22:46 AM
Bitcoin protocol is safe. If you store it inappropriately, then it is not safe.
571  Bitcoin / Bitcoin Discussion / Re: Litecoin v. Bitcoin on: January 11, 2015, 09:19:26 AM
There is little developments for LTC. So I think it is not in good shape. People will forget about it.
572  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: January 10, 2015, 09:02:03 AM
.....This is worth 20KH/s on my 280X......from 343KHs to 363KH/s at 1020MHz clock
.....now somebody needs to find 20KH/s more for me....  Smiley

change the XORBytesInPlace call from
Code:
	XORBytesInPlace(B + bufidx, input, BLAKE2S_OUT_SIZE);
to
Code:
      XORBytesInPlace(B + bufidx, input, bufidx);
and change the function itself to perform some byte alignment checking
Code:
//
// a bit of byte alignment checking goes a long ways...
//
void XORBytesInPlace(void *restrict dst, const void *restrict src, uint mod)
{
  switch(mod % 4)
  {
  case 0:
    #pragma unroll 2
    for(int i = 0; i < 4; i+=2)
    {
      ((uint2 *)dst)[i]   ^= ((uint2 *)src)[i];
        ((uint2 *)dst)[i+1] ^= ((uint2 *)src)[i+1];   
    }
    break;   

  case 2: 
    #pragma unroll 8
    for(int i = 0; i < 16; i+=2)
    {
      ((uchar2 *)dst)[i] ^= ((uchar2 *)src)[i];
      ((uchar2 *)dst)[i+1] ^= ((uchar2 *)src)[i+1];
    }
    break;

  default:
  #pragma unroll 8
   for(int i = 0; i < 31; i+=4)
   {
    ((uchar *)dst)[i] ^= ((uchar *)src)[i];
    ((uchar *)dst)[i+1] ^= ((uchar *)src)[i+1];
    ((uchar *)dst)[i+2] ^= ((uchar *)src)[i+2];
    ((uchar *)dst)[i+3] ^= ((uchar *)src)[i+3];   
    }
  }
}


Did you change from the original kernal or after boben2's change? Can you upload a revised kernal?
573  Economy / Speculation / Re: Bitcoin's worst year on: January 08, 2015, 12:05:09 PM
I don't undestand why to panic. This is normal...price can go even to 80$, before starts climbing again. Oportunity to buy cheap Wink

If you wait for $80, you will just keep waiting.  Smiley

If oil can hit $50, BTC can hit $80.

I don't see oil rising 10 times in 2 years.
I believe Bitcoin can.  Smiley

I am happy if BTC rise 5 times in 5 years.
574  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: January 07, 2015, 10:42:42 AM
Hi again,
Now I tried the "improved" kernel on my own 280X rig.
3 cards, all running 1000/1500 core/mem.  550Watts at the wall  
Orig neoscrypt kernel (Kh/s)
  301
  296
  287
My "improved" kernel
  295
  289
  276
Yiikes!  I got worse performance on the 280X!  
Sorry guys.  This "improvement", as it stands, seems to come to the 290 only.


+1
on my 280x i get 308 with "improved" vs 317 before

The drop is about 5% compared to old kernel for 7970. Maybe this "improved kernel" works only for 290 which has larger memory and more cores.
575  Economy / Economics / Re: Is bitcoin too volatile? on: January 07, 2015, 10:27:14 AM
Yes it is and it is killing btc slowly day by day.

I completely agree. With it's current volatility, bitcoin will never be widely accepted as a currency. I would never accept bitcoin from my employer as my monthly pay until I can be sure that what I am paid today will be worth the same tomorrow and the next day. If I wanted such volatility and uncertainty in a primary currency, I'd move to a third world nation. Most people feel the same as I do in this regard.

Bitcoin is still in its infancy stage. I would say wait till its market cap becomes so high that it would be impossible for large players to move the market.
Then you can accept your wages in Bitcoin.

It will take some time to be less volatile.
576  Economy / Speculation / Re: We leave 500. Target 200. Trade recommendation. on: January 07, 2015, 10:25:47 AM
General trend is up if BTC survive next two years.
577  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ✪✪✪ VIRTUAL COIN ✪✪✪ | VC |X11 |ATM |Released: 1 JAN 2015 12.0.1|3 MILLION COINS on: January 07, 2015, 10:18:43 AM
VC  it as real alternative to Bitcoin

2015 will belong to VirtualCoin !

That is the dream of most coin owners.
578  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] WorldCoin WDC | The Global Digital Currency on: January 07, 2015, 10:09:20 AM
Do we plan to change to Neoscrypt algorithm?
579  Economy / Economics / Re: Dollar coming to an end on: January 01, 2015, 05:17:21 PM
thresher, you're like the guy who gives no credence to global warming because the winter is cold.

i keep saying the dollar is going to be strong for while yet.  when the squeeze on dollar shorts is over (which will take a while, since there are so many USD denominated loans offshore), then we'll see what the next phase looks like.  It may be a hyper- phase, or it may not yet.  An eventual hyper- phase is inevitable, however.  It's just math.



Taking loans in Dollar to buy mining companies, oil companies, gold or bitcoin seem like the trade of 2015

If the oil price stays below $50, that could be bad investment.
580  Bitcoin / Bitcoin Discussion / Re: Bitcoin will be bigger than Facebook on: December 22, 2014, 10:46:11 AM
I think that one day Bitcoin will be bigger than the internet itself, much bigger than facebook.

Do you mean BTC can be transmitted in other ways?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!