Bitcoin Forum
May 12, 2024, 01:38:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: « 1 ... 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 [1005] 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 ... 2137 »
  Print  
Author Topic: Swedish ASIC miner company kncminer.com  (Read 3049463 times)
ncs0ne
Full Member
***
Offline Offline

Activity: 147
Merit: 100


software developer


View Profile
November 07, 2013, 11:21:24 AM
 #20081

Hi all,

in case you are making use of this new quota feature of cgminer (since v3.6.6 I believe ?) you will experience a broken config in your webinterface even if it's fine for cgminer.

If you want to get rid of it, here's a tiny patch I wrote
Code:
--- miner_setting.html	2013-11-06 19:56:47.816276000 +0100
+++ mod/miner_setting.html 2013-11-06 20:02:31.839678000 +0100
@@ -25,10 +25,16 @@
  var poolForm = poolwrapper.find('.pool-form');
  poolForm.append('<input type="button" value="delete" class="del-btn"></input>');
  poolForm.append('<label>Pool url</label>');
- $('<input type="text" name="url"/>')
+ var url;
+            if (typeof(pool.url) == 'undefined') {
+               url = pool.quota;
+            } else {
+               url = pool.url;
+            }
+            $('<input type="text" name="url"/>')
  //.first()
- .val(pool.url)
- .appendTo(poolForm);
+ .val(url)
+                .appendTo(poolForm);
  poolForm.append('<br /><label>Account</label>');
  $('<input type="text" name="user"/>')
  //.first()
@@ -101,11 +107,21 @@
  config.pools = [];
  $('#pools').children().each(function(index, element) {
                                 var el = $(element);
- var newPool = {
- url: el.find('input[name="url"]').val(),
- user: el.find('input[name="user"]').val(),
- pass: el.find('input[name="pass"]').val()
- };
+ var newPool;
+                var url = el.find('input[name="url"]').val();
+                if (url.match && url.match(/^\d+;/)) { // url start with a quota ?
+                    newPool = {
+                        quota: el.find('input[name="url"]').val(),
+                        user: el.find('input[name="user"]').val(),
+                        pass: el.find('input[name="pass"]').val()
+                    }
+                } else {
+                    newPool = {                                         
+                        url: el.find('input[name="url"]').val(),
+                        user: el.find('input[name="user"]').val(),
+                        pass: el.find('input[name="pass"]').val()
+                    };         
+                }
  config.pools.push(newPool);
          });

copy it to file and save  it as 'allow_quota_for_pools.patch'
as next put the patch into '/www/pages/' on your miner OR download '/www/pages/miner_setting.html' and open a terminal in that folder
then patch your webinterface

Code:
patch -p1 < allow_quota_for_pools.patch

Note:
changes are gone after a reboot


enjoy Smiley

1715477920
Hero Member
*
Offline Offline

Posts: 1715477920

View Profile Personal Message (Offline)

Ignore
1715477920
Reply with quote  #2

1715477920
Report to moderator
1715477920
Hero Member
*
Offline Offline

Posts: 1715477920

View Profile Personal Message (Offline)

Ignore
1715477920
Reply with quote  #2

1715477920
Report to moderator
1715477920
Hero Member
*
Offline Offline

Posts: 1715477920

View Profile Personal Message (Offline)

Ignore
1715477920
Reply with quote  #2

1715477920
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715477920
Hero Member
*
Offline Offline

Posts: 1715477920

View Profile Personal Message (Offline)

Ignore
1715477920
Reply with quote  #2

1715477920
Report to moderator
1715477920
Hero Member
*
Offline Offline

Posts: 1715477920

View Profile Personal Message (Offline)

Ignore
1715477920
Reply with quote  #2

1715477920
Report to moderator
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
November 07, 2013, 12:14:55 PM
 #20082

Last night my miner got stopped again after only a few hours. So apparently it no longer takes a day or two to run out of RAM...

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
CYPER
Hero Member
*****
Offline Offline

Activity: 798
Merit: 502



View Profile
November 07, 2013, 12:34:53 PM
 #20083

GOX just hit $305.00!

Hey for those that are bitching about ROI. Guess what. with bitcoin going up your machine has a better % of making that roi.. glee imagine that.  Shocked

Mt.Gox: Last price:$295.00 High:$309.99 Low:$255.55 Volume:56356 BTC Weighted Avg:$275.74

Wow thank you KNCMiner for making sure the exchange rate increased. Now I don't feel so bad about the 2 weeks delay for which I missed on around 20BTC  Roll Eyes
ncs0ne
Full Member
***
Offline Offline

Activity: 147
Merit: 100


software developer


View Profile
November 07, 2013, 12:36:19 PM
 #20084

Last night my miner got stopped again after only a few hours. So apparently it no longer takes a day or two to run out of RAM...

-MarkM-


hm, that sucks
This might help you:

Code:
#!/bin/sh
#

MIN_RAM_IN_BYTES=1024

while true; do
    # get free RAM left
    ramLeft=$(free -mt | grep Mem | awk '{print $4}');
    # check if it is still sufficient
    if [ "$ramLeft" -lt "$MIN_RAM_IN_BYTES" ]; then
        # do what you want, like
        #   pkill screen;
        #   screen cgminer -c /config/cgminer.conf'
        # or
        #  /etc/init.d/reboot
        ...
    fi
    sleep 5; # sleep for 5 seconds
done

Save this as file, chmod +x and then start it through screen on your miner.
It checks all 5 seconds the free memory, in case it's below MIN_RAM_IN_BYTES you can restart cgminer or even reboot the miner

WastedLTC
Hero Member
*****
Offline Offline

Activity: 776
Merit: 536



View Profile
November 07, 2013, 01:55:18 PM
 #20085

Eligius Round Time 7 Hours and counting Sad

that 10 hour block was painful!
madsusies
Sr. Member
****
Offline Offline

Activity: 428
Merit: 250


BitcoinEvo [$XBTE]


View Profile
November 07, 2013, 04:43:57 PM
 #20086

Last night my miner got stopped again after only a few hours. So apparently it no longer takes a day or two to run out of RAM...

-MarkM-

Cheesy just ask money back, eu customers rights, or try all firmwares, you will have an opinion buy Jupiter's for 3k 2k $

▬▬ • • •  BITCOINEVO $XBTE FREE AIRDROP LIVE NOW   • • • ▬▬
▌▌  Secure, decentralised & distributed cryptocurrency with sidechain technology*, on-chain dapps support*, xPoS and zero-proof anonymous transactions*.  ▐▐
Phoenix1969
Legendary
*
Offline Offline

Activity: 938
Merit: 1000


LIR DEV


View Profile
November 07, 2013, 05:33:35 PM
 #20087

Bunch of blind classics.... piss, Moan & whine....  You can all kiss my shiny white Jupiter. I bought a November Jupiter, and am hoping to squeeze in another order before they stop taking Nov. orders....
and here are the doofuses talking about Refunds. If my investment can double itself in hashpower in just 21 days I'm ahead of the game...
I'll be pissing on the smart-ass comments, just like 2 months ago when BFL_Josh's bandwagon was telling me I would "Most assuredly be disappointed".
It's like the deaf leading the blind sometimes in here.
You will be kickin' yourselves in the arse for not getting more hashpower when BTC is at 2 grand....
Laugh at me all you want.
The trolls who told me I'd never ROI are just......just.....
(use your imagination)



Wow thank you KNCMiner for making sure the exchange rate increased. Now I don't feel so bad about the 2 weeks delay for which I missed on around 20BTC  Roll Eyes

Name a company that did better......


*crickets*


                     ▀▀█████████▀████████████████▄
                        ████▄      ▄████████████████
                     ▄██████▀  ▄  ███████████████████
                  ▄█████████▄████▄███████████████████
                ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀████████
                                               ▀▀███▀
    ▄█▀█       ▄▀  ▄▀▀█  ▄▀   █████████████████▄ ██▀         ▄▀█
   ▄█ ▄▀      ▀█▀ █▀ █▀ ▀█▀  ███████████████████ █▀ ▀▀      ▄▀▄▀
  ▄█    ▄███  █     █   █   ████████████████████  ▄█     ▄▀▀██▀ ▄███
███▄▄▄  █▄▄▄ █▄▄ ▄▄▀   █▄▄ ██████████████████▀▀   █▄▄ ▄▄ █▄▄█▄▄▄█▄▄▄
                           ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
                            ▀▀█████████████▄
                                █████████████▄
                                  █████████████▄
                                    ▀███████▀▀▀▀▀
                                      ▀████▀
                                        ▀█▀
LetItRide
                        ▄███████████▄
                       ██  ██████████▄
                     ▄█████████████  ██▄
            ▄▄▀█▄▄▄▄▄████████████████████▄
        ▄▄█▀   ███████████  █████  ████  █
    ▄██████ ▄▄███████████████████████████▀
 ▄▀▀ ██████████████████████████  ████  █
█  ▄███████████▀▀▀█████████████████████
██████████████    ████████▀▀██████  █▀
██████████████▄▄▄██████████   ▀▀▀▀▀▀▀
███▀ ▀██████████████████████
██    ███████████████████████
██▄▄██████████████████████████
██████████████▀   ██████████
  █████████████   ▄██████▀▀
     ▀▀██████████████▀▀
         ▀▀██████▀▀
[BTC]▄█████████████▀ ▄█
██            ▄█▀
██          ▄██ ▄█
██ ▄█▄    ▄███  ██
██ ▀███▄ ▄███   ██
██  ▀███████    ██
██    █████     ██
██     ███      ██
██      ▀       ██
██              ██
▀████████████████▀
bobsag3
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500

Owner, Minersource.net


View Profile
November 07, 2013, 05:36:25 PM
 #20088

Hi,
 
Please write in large writing on the box RMA 131029-12 and send the board back to the following address:
KnCMiner
Birger Jarlsgatan 33
11145 Stockholm
Sweden
We will review the cause of the issue and get back to you as soon as possible with the new board.
 
Thanks
Emilia
 

Your return arrived today, was processed and repaired today, and left here by courier today.

In and out the same day.

That two week stuff is nonsense, you weren't even issued the RMA until the 29/10/13 (last Friday) it's in the RMA code itself.
It looks like KnC should have gotten it last Friday, but UPS royally fucked up the address somehow. [Even though I handed the store the email from KnC, and they packed+shipped it]
https://wwwapps.ups.com/WebTracking/track?HTMLVersion=5.0&loc=en_US&Requester=UPSHome&WBPM_lid=homepage%2Fct1.html_pnl_trk&trackNums=46808822179%0D%0A&track.x=Track

I owe you an apology for that.
But as far as the time line goes, it still took a week to get the rma number... CS just kept delaying it.

EDIT:
I got just off the phone with UPS. Not only was the address provided in the RMA email wrong (according to UPS), but it still has not been delivered and is scheduled for tomorrow.... meaning either you or UPS is lying. The tracking would indicate UPS is right... and at least my UPS Account Rep has the decency to get back to me in a timely manner.

Haha. You also blatantly lied about it having been received. Now have confirmation from both UPS and KnC that it has not arrived... care to explain yourself?

"Hi,
 
This has not yet arrived at our location. Could you please provide a tracking number so that we can chase it?
 
Should you have any further questions please do not hesitate to contact us.
 
Thanks
Emilia
 
Med vänlig hälsning  |  Best regards

Emilia Cole 
Kncminer
www.kncminer.com
Office: +46 8559 253 20
"
Quoting this again... Bitcoinorama lied pretty dam clearly here...
Bargraphics
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


Every man is guilty of all the good he did not do.


View Profile
November 07, 2013, 05:38:39 PM
 #20089

Hi,
 
Please write in large writing on the box RMA 131029-12 and send the board back to the following address:
KnCMiner
Birger Jarlsgatan 33
11145 Stockholm
Sweden
We will review the cause of the issue and get back to you as soon as possible with the new board.
 
Thanks
Emilia
 

Your return arrived today, was processed and repaired today, and left here by courier today.

In and out the same day.

That two week stuff is nonsense, you weren't even issued the RMA until the 29/10/13 (last Friday) it's in the RMA code itself.
It looks like KnC should have gotten it last Friday, but UPS royally fucked up the address somehow. [Even though I handed the store the email from KnC, and they packed+shipped it]
https://wwwapps.ups.com/WebTracking/track?HTMLVersion=5.0&loc=en_US&Requester=UPSHome&WBPM_lid=homepage%2Fct1.html_pnl_trk&trackNums=46808822179%0D%0A&track.x=Track

I owe you an apology for that.
But as far as the time line goes, it still took a week to get the rma number... CS just kept delaying it.

EDIT:
I got just off the phone with UPS. Not only was the address provided in the RMA email wrong (according to UPS), but it still has not been delivered and is scheduled for tomorrow.... meaning either you or UPS is lying. The tracking would indicate UPS is right... and at least my UPS Account Rep has the decency to get back to me in a timely manner.

Haha. You also blatantly lied about it having been received. Now have confirmation from both UPS and KnC that it has not arrived... care to explain yourself?

"Hi,
 
This has not yet arrived at our location. Could you please provide a tracking number so that we can chase it?
 
Should you have any further questions please do not hesitate to contact us.
 
Thanks
Emilia
 
Med vänlig hälsning  |  Best regards

Emilia Cole 
Kncminer
www.kncminer.com
Office: +46 8559 253 20
"
Quoting this again... Bitcoinorama lied pretty dam clearly here...

he responded to Redacted,

trying to figure out what you are going on about
Phoenix1969
Legendary
*
Offline Offline

Activity: 938
Merit: 1000


LIR DEV


View Profile
November 07, 2013, 05:52:18 PM
Last edit: November 07, 2013, 06:15:33 PM by Phoenix1969
 #20090

BTW, KNC Does hold the world's record for ASIC's
and they are about to deliver Gen 1.5 while HF & CT are stuck...
Guess what... 1.5 has hardware upgrades as well....
You think 1000+ pages is bad....   just wait....
BTC price on the rise =
I smell a asic buyin' Frenzy coming.
How long you think November orders will be available... ?
No Saturns left...   45 Jupiters to go....
cutoff time is coming soon.
Good luck everyone.


                     ▀▀█████████▀████████████████▄
                        ████▄      ▄████████████████
                     ▄██████▀  ▄  ███████████████████
                  ▄█████████▄████▄███████████████████
                ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀████████
                                               ▀▀███▀
    ▄█▀█       ▄▀  ▄▀▀█  ▄▀   █████████████████▄ ██▀         ▄▀█
   ▄█ ▄▀      ▀█▀ █▀ █▀ ▀█▀  ███████████████████ █▀ ▀▀      ▄▀▄▀
  ▄█    ▄███  █     █   █   ████████████████████  ▄█     ▄▀▀██▀ ▄███
███▄▄▄  █▄▄▄ █▄▄ ▄▄▀   █▄▄ ██████████████████▀▀   █▄▄ ▄▄ █▄▄█▄▄▄█▄▄▄
                           ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
                            ▀▀█████████████▄
                                █████████████▄
                                  █████████████▄
                                    ▀███████▀▀▀▀▀
                                      ▀████▀
                                        ▀█▀
LetItRide
                        ▄███████████▄
                       ██  ██████████▄
                     ▄█████████████  ██▄
            ▄▄▀█▄▄▄▄▄████████████████████▄
        ▄▄█▀   ███████████  █████  ████  █
    ▄██████ ▄▄███████████████████████████▀
 ▄▀▀ ██████████████████████████  ████  █
█  ▄███████████▀▀▀█████████████████████
██████████████    ████████▀▀██████  █▀
██████████████▄▄▄██████████   ▀▀▀▀▀▀▀
███▀ ▀██████████████████████
██    ███████████████████████
██▄▄██████████████████████████
██████████████▀   ██████████
  █████████████   ▄██████▀▀
     ▀▀██████████████▀▀
         ▀▀██████▀▀
[BTC]▄█████████████▀ ▄█
██            ▄█▀
██          ▄██ ▄█
██ ▄█▄    ▄███  ██
██ ▀███▄ ▄███   ██
██  ▀███████    ██
██    █████     ██
██     ███      ██
██      ▀       ██
██              ██
▀████████████████▀
bobsag3
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500

Owner, Minersource.net


View Profile
November 07, 2013, 05:55:14 PM
 #20091

Hi,
 
Please write in large writing on the box RMA 131029-12 and send the board back to the following address:
KnCMiner
Birger Jarlsgatan 33
11145 Stockholm
Sweden
We will review the cause of the issue and get back to you as soon as possible with the new board.
 
Thanks
Emilia
 

Your return arrived today, was processed and repaired today, and left here by courier today.

In and out the same day.

That two week stuff is nonsense, you weren't even issued the RMA until the 29/10/13 (last Friday) it's in the RMA code itself.
It looks like KnC should have gotten it last Friday, but UPS royally fucked up the address somehow. [Even though I handed the store the email from KnC, and they packed+shipped it]
https://wwwapps.ups.com/WebTracking/track?HTMLVersion=5.0&loc=en_US&Requester=UPSHome&WBPM_lid=homepage%2Fct1.html_pnl_trk&trackNums=46808822179%0D%0A&track.x=Track

I owe you an apology for that.
But as far as the time line goes, it still took a week to get the rma number... CS just kept delaying it.

EDIT:
I got just off the phone with UPS. Not only was the address provided in the RMA email wrong (according to UPS), but it still has not been delivered and is scheduled for tomorrow.... meaning either you or UPS is lying. The tracking would indicate UPS is right... and at least my UPS Account Rep has the decency to get back to me in a timely manner.

Haha. You also blatantly lied about it having been received. Now have confirmation from both UPS and KnC that it has not arrived... care to explain yourself?

"Hi,
 
This has not yet arrived at our location. Could you please provide a tracking number so that we can chase it?
 
Should you have any further questions please do not hesitate to contact us.
 
Thanks
Emilia
 
Med vänlig hälsning  |  Best regards

Emilia Cole 
Kncminer
www.kncminer.com
Office: +46 8559 253 20
"
Quoting this again... Bitcoinorama lied pretty dam clearly here...

he responded to Redacted,

trying to figure out what you are going on about
I am the host for Redacted's box, So I am the one who shipped the broken modual off, and he and I have been in very close communication.
DPoS
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile
November 07, 2013, 05:56:07 PM
 #20092

Hey for those that are bitching about ROI. Guess what. with bitcoin going up your machine has a better % of making that roi.. glee imagine that.  Shocked

Actually its the opposite. Increase of bitcoin exchange rate means that more even hashing power will be sold and you will mine less BTC, and mining BTC is all the machine does and what you bought the machine for. If you wanted a dollar profit speculating on a BTC price increase, you should have bought (or held)  BTC.

wake up!!!   smart people use OTHER PEOPLE'S MONEY to invest..  as in 0% interest rates for a year to buy a miner

don't you learn anything from Wall Street??

Yes, if anyone used btc/cash in hand to buy their miner these days that person doesn't understand time value of money, but seriously, why is this SIMPLETON mentality held in so high esteem around here?  It is just dogma.

Now I can use any money made from my jupiters to run arbitrage through the exchanges if I want..  ALL AS FREE MONEY FOR A YEAR

understand now why your BTC in to BTC out doesnt work anymore??  Too many people understand that they can make profit even if the miner makes less BTC than what it was worth at time of sale...


~~BTC~~GAMBIT~~BTC~~Play Boardgames for Bitcoins!!~~BTC~~GAMBIT~~BTC~~ Something I say help? Donate BTC! 1KN1K1xStzsgfYxdArSX4PEjFfcLEuYhid
Bargraphics
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


Every man is guilty of all the good he did not do.


View Profile
November 07, 2013, 05:56:25 PM
 #20093

he responded to Redacted,

trying to figure out what you are going on about
I am the host for Redacted's box, So I am the one who shipped the broken modual off, and he and I have been in very close communication.

Well that clears things up much more.
bobsag3
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500

Owner, Minersource.net


View Profile
November 07, 2013, 05:58:28 PM
 #20094

he responded to Redacted,

trying to figure out what you are going on about
I am the host for Redacted's box, So I am the one who shipped the broken modual off, and he and I have been in very close communication.

Well that clears things up much more.
Thought I made it clear enough, Guess not. Thanks for making sure I clarify.

RoadStress
Legendary
*
Offline Offline

Activity: 1904
Merit: 1007


View Profile
November 07, 2013, 06:06:33 PM
 #20095

Are some people getting paid to talk positive about KNC?

I think some people ARE KNC.

Avenger has made several posts which are negative, yet 100% accurate. If that's poisonous he didn't make the poison, he's just reporting it.

On a brighter note.. I just woke up to see us hovering around the 300 exchange rate.  Smiley That I would never have guessed even a week back.

Several? 80% of his over 350 posts in this thread are directed towards KnC. Very funny how you THINK that some people are KnC, but you DON'T THINK that some people are against KnC...

JoelKatz
Legendary
*
Offline Offline

Activity: 1596
Merit: 1012


Democracy is vulnerable to a 51% attack.


View Profile WWW
November 07, 2013, 06:09:50 PM
 #20096

Hey for those that are bitching about ROI. Guess what. with bitcoin going up your machine has a better % of making that roi.. glee imagine that.  Shocked
It doesn't help people who already bought miners and for whom buying the miner is a sunk cost. It may help newer miners make ROI because the cost of mining hardware relative to Bitcoins goes down. But that just raises the difficulty, making things even worse for those who already bought miners.

It also means you have to keep mining for longer. Because the cost of electricity goes down, everyone's miners will mine more than they cost to operate for longer. So you have to keep mining for longer to get the same return. (Because everyone else mining for longer also raises the difficulty.)

I am an employee of Ripple. Follow me on Twitter @JoelKatz
1Joe1Katzci1rFcsr9HH7SLuHVnDy2aihZ BM-NBM3FRExVJSJJamV9ccgyWvQfratUHgN
CYPER
Hero Member
*****
Offline Offline

Activity: 798
Merit: 502



View Profile
November 07, 2013, 06:13:00 PM
 #20097

Bunch of blind classics.... piss, Moan & whine....  You can all kiss my shiny white Jupiter. I bought a November Jupiter, and am hoping to squeeze in another order before they stop taking Nov. orders....
and here are the doofuses talking about Refunds. If my investment can double itself in hashpower in just 21 days I'm ahead of the game...
I'll be pissing on the smart-ass comments, just like 2 months ago when BFL_Josh's bandwagon was telling me I would "Most assuredly be disappointed".
It's like the deaf leading the blind sometimes in here.
You will be kickin' yourselves in the arse for not getting more hashpower when BTC is at 2 grand....
Laugh at me all you want.
The trolls who told me I'd never ROI are just......just.....
(use your imagination)

I'm sorry, were you expecting 100% satisfaction rate?
Did you ever consider that maybe there are people who are unhappy about KNC in some way or another?
Do you not comprehend why there are such people?

Name a company that did better......

Phoenix1969, you seem like a rational guy, yet you seem to miss the point here.
If you get bad service from a company (not necessarily an ASIC company) do you compare your experience to an even worse company and feel better?
I've said it before: once people stop comparing KNC to the worst in the ASIC industry and start comparing them to the best they can be only then you can truly appreciate how good or bad they are.
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
November 07, 2013, 06:14:52 PM
 #20098

Can KNC provide a direct clarification of the 70% of coins number.   Since KNC can't possibly know the exact number of coins mined it was likely marketing for 70% of the hashrate.  

Since KNC has already put it out their in a vague way, why not go all the way and give us a number.  If nothing else it will shut Josh up when he claims BFL has shipped more than everyone else combined.  

Simple question:  What was the size of batch 1 (sept/oct)?  2.0 PH/s? 2.4 PH/s?  2.8 PH/s?
Phoenix1969
Legendary
*
Offline Offline

Activity: 938
Merit: 1000


LIR DEV


View Profile
November 07, 2013, 06:19:51 PM
 #20099

Are some people getting paid to talk positive about KNC?

I think some people ARE KNC.

Avenger has made several posts which are negative, yet 100% accurate. If that's poisonous he didn't make the poison, he's just reporting it.

On a brighter note.. I just woke up to see us hovering around the 300 exchange rate.  Smiley That I would never have guessed even a week back.

Several? 80% of his over 350 posts in this thread are directed towards KnC. Very funny how you THINK that some people are KnC, but you DON'T THINK that some people are against KnC...
Yeah, someone PM'd me accusing me of being BitcoinOrama in disguise...
I laughed so hard...

another tip came in...  was .0001  
I promise I won't spend the 3.3 cents all in one place....    Grin Grin Grin
It's the thought that counts.....   I still thank you for it!
Thanks..


                     ▀▀█████████▀████████████████▄
                        ████▄      ▄████████████████
                     ▄██████▀  ▄  ███████████████████
                  ▄█████████▄████▄███████████████████
                ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀████████
                                               ▀▀███▀
    ▄█▀█       ▄▀  ▄▀▀█  ▄▀   █████████████████▄ ██▀         ▄▀█
   ▄█ ▄▀      ▀█▀ █▀ █▀ ▀█▀  ███████████████████ █▀ ▀▀      ▄▀▄▀
  ▄█    ▄███  █     █   █   ████████████████████  ▄█     ▄▀▀██▀ ▄███
███▄▄▄  █▄▄▄ █▄▄ ▄▄▀   █▄▄ ██████████████████▀▀   █▄▄ ▄▄ █▄▄█▄▄▄█▄▄▄
                           ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
                            ▀▀█████████████▄
                                █████████████▄
                                  █████████████▄
                                    ▀███████▀▀▀▀▀
                                      ▀████▀
                                        ▀█▀
LetItRide
                        ▄███████████▄
                       ██  ██████████▄
                     ▄█████████████  ██▄
            ▄▄▀█▄▄▄▄▄████████████████████▄
        ▄▄█▀   ███████████  █████  ████  █
    ▄██████ ▄▄███████████████████████████▀
 ▄▀▀ ██████████████████████████  ████  █
█  ▄███████████▀▀▀█████████████████████
██████████████    ████████▀▀██████  █▀
██████████████▄▄▄██████████   ▀▀▀▀▀▀▀
███▀ ▀██████████████████████
██    ███████████████████████
██▄▄██████████████████████████
██████████████▀   ██████████
  █████████████   ▄██████▀▀
     ▀▀██████████████▀▀
         ▀▀██████▀▀
[BTC]▄█████████████▀ ▄█
██            ▄█▀
██          ▄██ ▄█
██ ▄█▄    ▄███  ██
██ ▀███▄ ▄███   ██
██  ▀███████    ██
██    █████     ██
██     ███      ██
██      ▀       ██
██              ██
▀████████████████▀
opentoe
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000

Personal text my ass....


View Profile WWW
November 07, 2013, 06:23:56 PM
 #20100

GOX just hit $305.00!

Damn, preev is WAY off.

Need help with your Newznab usenet indexer? http://www.newznabforums.com
Pages: « 1 ... 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 [1005] 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 ... 2137 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!