Bitcoin Forum
June 16, 2024, 05:18:40 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 176 »
  Print  
Author Topic: deleted thread  (Read 145440 times)
loq (OP)
Member
**
Offline Offline

Activity: 88
Merit: 10


View Profile
May 07, 2014, 02:38:23 PM
 #1101

its not like he cant see u

he might be a new born but he aint stupid



haha <3
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 07, 2014, 02:44:05 PM
 #1102


time to roll the dice and win some SHIBE!
MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
May 07, 2014, 02:46:27 PM
 #1103

Hmmm im out till the market get a bit more certain sold all

Don't sell all your Shibecoin, this coin could go to the moon anytime after the multi-pool.
ptic-1
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
May 07, 2014, 02:49:30 PM
 #1104

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me     


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa





Code: sheba

Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}


isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me)  soo,,please let me know?

}

Value ValueFromAmountWithFee(int64 amount)
{
    /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM
{
amount = ( amount % (MAX_TX_FEE * COIN ) );
}*/
return (double)amount / (double)COIN;

soo that

now



later


█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
Revelation
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
May 07, 2014, 02:57:13 PM
 #1105

The code is fine, AC lines of the code are not there.
glop
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
May 07, 2014, 02:58:36 PM
 #1106

Mining running very well actually,

    but what about staking?

    Any information ? The wallet seems not to respond to command like getstakinginfo and no option and pictogram on the wallet concerning staking ?
 
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 07, 2014, 03:03:50 PM
 #1107

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me     


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa





Code: sheba

Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}


isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me)  soo,,please let me know?

}

Value ValueFromAmountWithFee(int64 amount)
{
    /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM
{
amount = ( amount % (MAX_TX_FEE * COIN ) );
}*/
return (double)amount / (double)COIN;

soo that

now



later




everything is fine and clean.

the function ValueFromAmount() is totally clean:

CODE FROM SHIBECOIN:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}

this line is in EVERY CRYPTOCOIN.




CODE FROM ASIACOIN:
asiacoin used another trick to "filter" out the premine.
they simply used the modulo-operator to substract the premined amout with:

Code:
Value ValueFromAmountWithFee(int64 amount)
{
    if(amount<=0 || amount >= MAX_TX_FEE * COIN)
{
amount = ( amount % (MAX_TX_FEE * COIN ) );
}
return (double)amount / (double)COIN;
}
loq (OP)
Member
**
Offline Offline

Activity: 88
Merit: 10


View Profile
May 07, 2014, 03:06:03 PM
 #1108

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me     


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa





Code: sheba

Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}


isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me)  soo,,please let me know?

}

Value ValueFromAmountWithFee(int64 amount)
{
    /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM
{
amount = ( amount % (MAX_TX_FEE * COIN ) );
}*/
return (double)amount / (double)COIN;

soo that

now



later




everything is fine and clean.

the function ValueFromAmount() is totally clean:

CODE FROM SHIBECOIN:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}

this line is in EVERY CRYPTOCOIN.




CODE FROM ASIACOIN:
asiacoin used another trick to "filter" out the premine.
they simply used the modulo-operator to substract the premined amout with:

Code:
Value ValueFromAmountWithFee(int64 amount)
{
    if(amount<=0 || amount >= MAX_TX_FEE * COIN)
{
amount = ( amount % (MAX_TX_FEE * COIN ) );
}
return (double)amount / (double)COIN;
}

thumbs up for this guy. please donate some shibes to his cryptocrew
gatti
Full Member
***
Offline Offline

Activity: 382
Merit: 109



View Profile
May 07, 2014, 03:11:33 PM
 #1109

Update from #shibecouncil in Freenode:

<Carlosadams> how much its the bounty for the logo
<Carlosadams> design?
<unek> $13
<unek> ask loq
<serversides> thats very small for graphic design
<@loq> 100-150k shibecoin
<@loq> something around that
<@loq> thats not $13
<unek> that's $100
<@loq> rofl
<serversides> lol
<Carlosadams> okk
<Carlosadams> nice
<gatti_> yea that's a great bounty
<serversides> indeed
<r0ach> 150k is .45btc if you sell at 300 satoshi
<r0ach> but price should go up a lot over that
<r0ach> after PoW is over
* Puza (b24bac91@gateway/web/cgi-irc/kiwiirc.com/ip.178.75.172.145) has left #shibecouncil
<@loq> well
<@loq> I have been open about that stuff
<@loq> with logo, and some other spendings that are planned
<@loq> and also our last unallocated premine donation for the council
<@loq> the devs are officially out of premine
<unek> what
<unek> already
<@loq> and with that the work for the community is officially taken over by the council
<@loq> yes
zikomoto
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
May 07, 2014, 03:11:44 PM
 #1110

we need an reddit page
TrollboxChamp
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
May 07, 2014, 03:14:15 PM
 #1111

we need an reddit page

Someone stole /r/shibecoin Sad

Shows how scared people are!
zikomoto
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
May 07, 2014, 03:15:32 PM
 #1112

we need an reddit page

Someone stole /r/shibecoin Sad

Shows how scared people are!

damn!!
FalconCrypto
Sr. Member
****
Offline Offline

Activity: 273
Merit: 250


View Profile
May 07, 2014, 03:34:15 PM
 #1113

we need an reddit page

Someone stole /r/shibecoin Sad

Shows how scared people are!

damn!!

Try shibecoinofficial or officialshibecoin
left-ca
Full Member
***
Offline Offline

Activity: 184
Merit: 100


View Profile
May 07, 2014, 03:35:38 PM
 #1114

SHIBE COIN IS NOW TRADING ON

https://sharexcoin.com/markets

GIVE THEM VOLUME!!!
TTM
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
May 07, 2014, 03:36:47 PM
 #1115

trading volumes are decreasing quickly, downed 100btc compared with yesterday.
z3r0
Full Member
***
Offline Offline

Activity: 194
Merit: 100


View Profile WWW
May 07, 2014, 03:38:11 PM
 #1116

Great coin shibes =D submit your links and vote here http://cryptd.co

Live Bitcoin and Crypto News From Around The World
Free Trading Signals - Twitter: @saintcrypto
r0ach
Legendary
*
Offline Offline

Activity: 1260
Merit: 1000


View Profile
May 07, 2014, 03:40:31 PM
Last edit: May 07, 2014, 03:57:43 PM by r0ach
 #1117

Hmmm im out till the market get a bit more certain sold all

Do I really have to explain this to people?  Some multipools are dumping Shibecoin.  They have very little compared to what they had for Whitecoin though since they all started late on the coin and network hashrate was 100+gh.

Hashcows, for example, had around 0.5 BTC to dump.  Doesn't sound like much, but when you're only on ghetto, low volume exchanges at the moment, that can crash the price 30-50 satoshi if walls aren't in the right place, or someone already just got order filled.

That, combined with people trying to lower the price on purpose with a bunch of stacked micro sells, is going to cause the price to be all over the place the next few days.

It will probably take off big by Saturday/Sunday.

The odds of you being locked out of the market are high if you wait till last second to try and get in though.

trading volumes are decreasing quickly, downed 100btc compared with yesterday.

Freenode channel just went from 170 to 310 since yesterday.  Lots of people still trying to figure out what price to get in at, others trying to mine and will take time for them to realize just buying it is way more efficient with the huge difficulty now.

......ATLANT......
..Real Estate Blockchain Platform..
                    ▄▄▄▄▄▄▄▄▄
                    ████████████░
                  ▄██████████████░
                 ▒███████▄████████░
                ▒█████████░████████░
                ▀███████▀█████████
                  ██████████████
           ███████▐██▀████▐██▄████████░
          ▄████▄█████████▒████▌█████████░
         ███████▄█████████▀██████████████░
        █████████▌█████████▐█████▄████████░
        ▀█████████████████▐███████████████
          █████▀████████ ░███████████████
    ██████▐██████████▄████████████████████████░
  ▄████▄████████▐███████████████░▄▄▄▄░████████░
 ▄██████▄█████████▐█████▄█████████▀████▄█████████░
███████████████████▐█████▄█████████▐██████████████░
▀████████▀█████████▒██████████████▐█████▀█████████
  ████████████████ █████▀█████████████████████████
   ▀██▀██████████ ▐█████████████  ▀██▀██████████
    ▀▀█████████    ▀▀█████████    ▀▀██████████

..INVEST  ●  RENT  ●  TRADE..
 ✓Assurance     ✓Price Discovery     ✓Liquidity     ✓Low Fees





███
███
███
███
███
███





███
███
███
███
███
███
███
███
███
███
███
███

◣Whitepaper ◣ANN ThreadTelegram
◣ Facebook     ◣ Reddit          ◣ Slack


███
███
███
███
███
███
███
███
███
███
███
███





███
███
███
███
███
███








Hero/Legendary members
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 07, 2014, 03:48:12 PM
 #1118

pardon to be pain in the ass, but what does that code make:   return (double)amount / (double)COIN;,,, DOES IT RETURN double? Smiley   
 
 

Code:

Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}


this line is in EVERY CRYPTOCOIN.


double is just the datatype. (double is a numeric datatype [floating-point number])
solid12345
Legendary
*
Offline Offline

Activity: 1246
Merit: 1000



View Profile
May 07, 2014, 03:57:29 PM
 #1119


So yes, price will be up and down the next few days, then probably takes off Saturday/Sunday.


No one is mentioning that there is 190 million coins mined yet only 4 million for sale on Polo and can't be too much more on bittrex. I think miners are actually holding and not mass dumping which is a good sign they are speculating...
ptic-1
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
May 07, 2014, 04:03:19 PM
Last edit: May 07, 2014, 05:48:27 PM by ptic-1
 #1120

pardon to be pain in the ass, but what does that code make:   return (double)amount / (double)COIN;,,, DOES IT RETURN double? Smiley  
 
 

Code:

Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}


this line is in EVERY CRYPTOCOIN.

    

double is just the datatype. (double is a numeric datatype [floating-point number])
                        MAISTER Wink Smiley





The idea of floating-point representation over intrinsically integer fixed-point numbers, which consist purely of significand, is that expanding it with the exponent component achieves greater range. For instance, to represent large values, e.g. distances between galaxies, there is no need to keep all 39 decimal places down to femtometre-resolution (employed in particle physics). Assuming that the best resolution is in light years, only the 9 most significant decimal digits matter, whereas the remaining 30 digits carry pure noise, and thus can be safely dropped. This represents a savings of 100 bits of computer data storage.


dont need to comment anything about bellow link, but still have to write it that I wont comment

                                             the creations

                  http://csrc.nist.gov/groups/ST/hash/sha-3/Round3/index.html




much panic  lately I fells in crypto....      

I  will just

now



later




hope so,,I  let 100+eur per day job,,(construction in autoindustry),, for 9+ hours per day,,   for crypto......  reason,,my back cant take it anymore Smiley


about yellowcoin...signature:


Quote from: ptic-1 on Today at 03:15:57 AM
hmm..I did it with: YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK

should have: YB4wkaS1wtXWX8Ko668aCmuxAd3KDdQLwD

818   2014-05-06 21:11:22   212320   ptic-1   YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK   98   490   2   1
817   2014-05-06 18:57:58   102117   Samai   YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK   23   115   2   1

ptic
what to do?
YCproject
Seems you used Samai's YC address to submit  Grin, we can't do anything about it, it's real-time giveaway...

  Grin stupid me;D

    

█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
Pages: « 1 ... 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 176 »
  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!