Bitcoin Forum
April 30, 2024, 08:13:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 [632] 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 »
  Print  
Author Topic: NA  (Read 893538 times)
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
October 29, 2015, 11:00:58 AM
 #12621

Best would be if you can come on slack, if not PM, I won't be able to skype until later.

gulden.slack.com? I cant get in

https://gulden.com/nl/join

Done that

You get a confirmation mail as soon it is seen you want to join. Not an automated proces, i believe.
1714508009
Hero Member
*
Offline Offline

Posts: 1714508009

View Profile Personal Message (Offline)

Ignore
1714508009
Reply with quote  #2

1714508009
Report to moderator
1714508009
Hero Member
*
Offline Offline

Posts: 1714508009

View Profile Personal Message (Offline)

Ignore
1714508009
Reply with quote  #2

1714508009
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714508009
Hero Member
*
Offline Offline

Posts: 1714508009

View Profile Personal Message (Offline)

Ignore
1714508009
Reply with quote  #2

1714508009
Report to moderator
1714508009
Hero Member
*
Offline Offline

Posts: 1714508009

View Profile Personal Message (Offline)

Ignore
1714508009
Reply with quote  #2

1714508009
Report to moderator
1714508009
Hero Member
*
Offline Offline

Posts: 1714508009

View Profile Personal Message (Offline)

Ignore
1714508009
Reply with quote  #2

1714508009
Report to moderator
markanth
Full Member
***
Offline Offline

Activity: 138
Merit: 100


View Profile WWW
October 29, 2015, 11:07:24 AM
 #12622


guldenpay for slack not gulden?

NLG charts, richlist, and mining stats - http://nlgstats.nl
Litesire
Sr. Member
****
Offline Offline

Activity: 458
Merit: 500


View Profile
October 29, 2015, 01:08:37 PM
 #12623

Damn MaNI you seem to know your shit. Gulden is in great hands.  GL sorting your issue out ShopemNL.

MaNI
Sr. Member
****
Offline Offline

Activity: 275
Merit: 250



View Profile
October 29, 2015, 01:35:59 PM
 #12624

Just in case it might be useful for anyone in future, I found and modified a basic python script that can search for private keys in an (unencrypted) wallet.dat and print them out in a way that you can import into the wallet.
Tested it with a few valid wallet.dat files and it worked.
As a last resort (if you have a lot of time) you could probably run this using a linux bootdisk against the entire partition. (expect some false positives - not everything it spits out is going to be a valid address)

Unfortunately after this point it becomes a trade off of cost to pursue further etc. Sad

http://www.pxdojo.net/2013/12/bitcoin-private-key-necromancy.html is also a worthwhile read - this is where I got the script from.

Code:
#!/usr/bin/python

import binascii
import os
import hashlib
import sys

# bytes to read at a time from file (10meg)
readlength=1*1024

if len(sys.argv)!=2:
  print "./keyhunter.py <filename>"
  exit()

filename = sys.argv[1]

f = open(filename)
magic = '\x01\x01\x04\x20'
magiclen = len(magic)



##### start code from pywallet.py #############
__b58chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
__b58base = len(__b58chars)

def b58encode(v):
  """ encode v, which is a string of bytes, to base58.
  """

  long_value = 0L
  for (i, c) in enumerate(v[::-1]):
    long_value += (256**i) * ord(c)

  result = ''
  while long_value >= __b58base:
    div, mod = divmod(long_value, __b58base)
    result = __b58chars[mod] + result
    long_value = div
  result = __b58chars[long_value] + result

  # Bitcoin does a little leading-zero-compression:
  # leading 0-bytes in the input become leading-1s
  nPad = 0
  for c in v:
    if c == '\0': nPad += 1
    else: break

  return (__b58chars[0]*nPad) + result

def Hash(data):
  return hashlib.sha256(hashlib.sha256(data).digest()).digest()

def EncodeBase58Check(secret):
  hash = Hash(secret)
  return b58encode(secret + hash[0:4])

########## end code from pywallet.py ############



# read through target file
# one block at a time
while True:
  data = f.read(readlength)
  if not data:
    break

  # look in this block for keys
  x=0
  while True:
    # find the magic number
    pos=data.find(magic,x)
    #pos=data.find('\13\02\01\01\04\20',0)
    if pos==-1:
      break
    print EncodeBase58Check('\xA6'+data[pos+magiclen:pos+magiclen+32])
    x+=(pos+1)
  
  # are we at the end of the file?
  if len(data) < readlength:
    break

  # make sure we didn't miss any keys at the end of the block
  f.seek(f.tell()-(32+magiclen))

# code grabbed from pywallet.py
WaterLooDown
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


View Profile
October 29, 2015, 02:35:01 PM
 #12625

Portuguese ANN added.
https://bitcointalk.org/index.php?topic=1224512.0

https://developer.gulden.com/blog/ - For the latest Gulden development updates
CoinThug
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
October 29, 2015, 02:40:42 PM
 #12626

Great! thanks for keeping this thread updated devs  Smiley
Dutchyyy
Legendary
*
Offline Offline

Activity: 1197
Merit: 1001



View Profile
October 29, 2015, 05:37:05 PM
 #12627

come on let the price go into the 400s again PLEASE !
Dutchyyy
Legendary
*
Offline Offline

Activity: 1197
Merit: 1001



View Profile
October 29, 2015, 05:58:09 PM
 #12628

what about other exchanges?
i do not want to register to an other one.

Bittrex is the main one for Gulden. It is very reliable and much better then cryptsy.
Jero
Hero Member
*****
Offline Offline

Activity: 638
Merit: 500



View Profile WWW
October 29, 2015, 07:06:09 PM
 #12629

what about other exchanges?
i do not want to register to an other one.

Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look.

I also use Cryptsy for other coins but everything is more slow (trading) and  deposid/withdrawal takes a lot of time.

https://www.guldenweb.com - Het laatste nieuws over Gulden
TamiLee
Hero Member
*****
Offline Offline

Activity: 637
Merit: 500


View Profile
October 29, 2015, 07:38:11 PM
 #12630

what about other exchanges?
i do not want to register to an other one.

Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look.

I also use Cryptsy for other coins but everything is more slow (trading) and  deposid/withdrawal takes a lot of time.


EU people can use litebit.eu to purchase with fiat.
MaNI
Sr. Member
****
Offline Offline

Activity: 275
Merit: 250



View Profile
October 29, 2015, 09:20:10 PM
 #12631

what about other exchanges?
i do not want to register to an other one.

Bittrex is a great exchange, I use this for over a year now. Never complaints. Suggest you have a look.

I also use Cryptsy for other coins but everything is more slow (trading) and  deposid/withdrawal takes a lot of time.


ok, mhh.

i use poloniex and yobit. i will have a look at bitter then.

If you want Gulden on other exchanges then as a user of those exchanges you should request it from them, it is ultimately the exchanges and the users of those exchanges that decide which coins to add, it is not something that the Gulden devs can control (well not without bribery and that isn't going to happen)
Buerra
Legendary
*
Offline Offline

Activity: 980
Merit: 1000


View Profile
October 29, 2015, 10:17:00 PM
 #12632

We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.

Svener
Hero Member
*****
Offline Offline

Activity: 502
Merit: 500


View Profile
October 30, 2015, 06:36:19 AM
 #12633

We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.



This is just hype like guldex exchange from one of my horsemen because price is coming down. I say this is all hype and no delivery to try increase a rapid falling price.
My horsemen confirm guldex was almost ready and has quit doing it for Gulden.
https://bitcointalk.org/index.php?topic=1044432.msg12810349#msg12810349

Trackcoins you are such a comedian. Nocks crew have always delivered where others have not. Lets be frank, Would you want quiters running your currency and people that leave when they don't have there way or a team that stays through all the shit talk and abuse they have had to put up with ?

veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
October 30, 2015, 08:33:29 AM
Last edit: October 30, 2015, 07:10:11 PM by veertje
 #12634

My horsemen confirm.....

........

You have been chosen as my final harbinger. AUR have all my horsemen.

........  Can we get more bad comments on that ANN to kill price.

This is where the Gulden haters hang out. Can we get more bad comments on that ANN to kill price.

Trackcoins, you're a funny guy.  .......  We've already ditched a bunch of the fudders and trolls, so we're trying to keep things clean over here.  We're trying to stay away from drama over here, mate.

.....  If you're just here to troll NLG and AUR, we really don't need it, mate.

Even in the AUR thread you are being seen as a fudder and a troll. You want to divide people that are commited to good crypto.


No trolls needed here to influence people. Horses have to be free. I have great confidence in the Gulden dev team and Nocks team.




julian071
Hero Member
*****
Offline Offline

Activity: 1132
Merit: 818



View Profile
October 30, 2015, 08:46:38 AM
 #12635

We noticed a few replies asking about Nocks and its developments. We're certainly still here, don't you worry about that. We're not as active on the forums that's true, we are however active in the concrete world. Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.



Great, thx!!!

=P
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
October 30, 2015, 09:30:10 AM
 #12636

..... Loads of meetings, meet-ups and leads have come our way during this progression that we're working towards. Can't really say much else other then, hang in there, because we have some cool stuff in store for everyone. We're aiming to release these cool beans of joy in November and beyond. Stay knitty my friends.

Good that you gave an update, Buerra Smiley Sounds good!
jakals
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
October 30, 2015, 12:07:14 PM
 #12637

alright but where is the "scrypt PoW DELTA" miner ?
Dutchyyy
Legendary
*
Offline Offline

Activity: 1197
Merit: 1001



View Profile
October 30, 2015, 01:07:40 PM
 #12638

alright but where is the "scrypt PoW DELTA" miner ?

It's the same as mining a scrypt coin. DELTA is a diff algo like KGW.
bram_vnl
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
October 31, 2015, 12:09:26 PM
 #12639

This is my address for making dump work GZmt3XkzSB , you that benefit from low price need to give me a tip. LTEC convince Ontopicplease to dump +3 million coins and LTEC is one of my four horsemen . Credit is give to me . Please donate that I can help you get low price for coin.

https://bitcointalk.org/index.php?topic=554412.msg12804598#msg12804598

I work hard for this community and all I get is hate back. I do it to force price down and make us get cheap coin. I will remove this after I get donation.

Work hard? lol

Dutchyyy
Legendary
*
Offline Offline

Activity: 1197
Merit: 1001



View Profile
October 31, 2015, 12:20:53 PM
 #12640

This is my address for making dump work GZmt3XkzSByvogrXny9aYKL9Aw13gsmSvs , you that benefit from low price need to give me a tip. LTEC convince Ontopicplease to dump +3 million coins and LTEC is one of my four horsemen . Credit is give to me . Please donate that I can help you get low price for coin.

https://bitcointalk.org/index.php?topic=554412.msg12804598#msg12804598

I work hard for this community and all I get is hate back. I do it to force price down and make us get cheap coin. I will remove this after I get donation.

It's his choice to sell for whatever reason he has. For all you know he needs the money for personal reasons.
Pages: « 1 ... 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 [632] 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 »
  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!