Bitcoin Forum
April 24, 2024, 10:23:25 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 ... 63 »
181  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 09:17:21 PM
Cool use LiveCD (linux) on Win95 machine ... that's the right thing to do. Grin

Also a good idea, of course Smiley
182  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 09:16:40 PM
When i run NoBrainr/1.052/c_/Python27/python.exe it tells me it needs a later version of Windows
: /

OK, thanks for your feedback. To resolve this, I would suggest that you install Python 2.5.4, which is the latest version of Python that supports win 95 and is available at http://www.python.org/ftp/python/2.5.4/python-2.5.4.msi

If this installation completes without errors, copy the entire 'App' folder from the NoBrainr installation under the Python2.5.4 location and try to run NoBrainr script from the command line - something along the lines of:
 ..\python.exe NoBrainr.py
183  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 08:52:06 PM
I will run NoBrainr and see what happends.

I will make a donation when the program works.

OK, sounds good - I will wait for your feedback on running NoBrainr before starting.
If you get no errors, I should be able to make the script you need quite fast, as it will easily build on the Python libraries included in the NoBrainr package.
184  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 08:33:41 PM
please do Smiley

It will be offline and will continue to be offline when i can generate the addresses.

Sorry, I spoke a little too fast. I need to mention that I will only have time to do this by next weekend, not earlier - unless you really need this urgently and are willing to make a donation.

Also, to be sure that your system is able to run Python 2.7 scripts involving EC math, a good and quick test would be to see if my NoBrainr tool is working for you. If it gives any errors, please post them here.

NoBrainr thread: https://bitcointalk.org/index.php?topic=308972.0
185  Bitcoin / Bitcoin Technical Support / Re: Private key to bitcoina ddress on Windows 95 on: January 20, 2014, 08:10:36 PM
I can make a small script for you if you can't find anything.

I hope your Windows 95 machine is offline by the way - is it?
186  Bitcoin / Electrum / Re: Electrum scripts - Script #1: Fastest servers on: January 20, 2014, 06:23:56 PM
I am not a python or electrum expert. So to me this script is not easy at all. Sad
Can you explain a couple of things? For example:
  • getservers: it is a console-command. getservers(). How can you add another function to it?
  • Keys() is not a console function. Where does it come from?
  • Where are time and socket imported from? Are these standard libraries? Is it possible to add new packages to the standard embedded electrum python interpreter?

As a sidenote: How many servers are there in Europe? Who are the guys running them?

In a nutshell:
 - the getservers() function returns a dict. keys() is a standard dict method.
 - yes, time and socket are standard libraries.

Sorry for not going into more detail - I have very limited free time these days.
Feel free to google for more information, or wait for others to chime in with more help.
187  Bitcoin / Electrum / Re: Using the Python Console of Electrum on: January 19, 2014, 05:19:24 PM
Interesting. Can you explain how you start and run this script from the console?
I guess you have saved the python-code in a file that you execute using the electrum-console. Is this right?
In which folder do you need to save this file so that it is accesible from the console? How do you execute the code?
Sorry, about my noob-question, but I have read a book about Python a long time ago but have forgotten most of it.

This is right. Save the code in a file, for instance 'servertest.py'. This file can be saved anywhere on your system.
How to run it: assuming the file was saved to D:\servertest.py, you would type the following command in the console to execute it:

Code:
execfile("D:\\servertest.py")


Quote
BTW: Another noob question: That you can run all kind of processes out of the Electrum console: Isnt that a security risk?
As long as you are not executing malicious scripts, I don't think so.  Perhaps a dev can further comment on this.

Quote
PS. I have a Python3 version installed. Could I use your code?
(I'm assuming you are a Windows user, let me know if that's not the case.)
No problem, the Electrum console will always use the embedded Python 2.7 runtime anyway.
188  Bitcoin / Electrum / Re: Using the Python Console of Electrum on: January 19, 2014, 03:50:06 PM
Funny, I just posted an example script to be run in the Electrum console in this thread:
 https://bitcointalk.org/index.php?topic=422571.0

It's rather trivial but perhaps you will find a few interesting things in it.
Unfortunately, I'm not aware of any other scripts or documentation for this powerful feature.
189  Bitcoin / Electrum / Re: [ANNOUNCE] Electrum - Lightweight Bitcoin Client on: January 19, 2014, 12:59:49 PM
Is it possible to use 3rd party plugins with the portable windows build?  Like can I just make a plugin folder in the electrum_data folder?  I'm trying but nothing is working.  Or is that something that just can't be done in the portable build?

Works for me... (but I'm building Electrum from source, not sure about the regular builds)
190  Bitcoin / Electrum / Electrum console scripts - Script #2: List balances on: January 19, 2014, 12:56:43 PM
Here's a quick little script to find out what servers have lowest latency for you.

For instance, for users in Europe, the top 2 servers consistently are:

0.015s   electrum.icetwy.re                
0.016s   electrum.cafebitcoin.com
       


Code:
'''
 *   Python 2.x source - By flatfly (GPG ID: 0xF91975FF)
 *
 *   No warranty, explicit or implicit, provided.
'''

import socket, time

best = 5      
ax = getservers().keys()
print 'quicktesting ' + str(len(ax)) + ' servers...'
print '\n\n'
    
for host in ax:

  try:
    s=socket.socket()
    s.settimeout(1)
    t0 = time.time()
    s.connect((host, 50002))
    t1 = time.time()
    delta = t1-t0
    print host.ljust(35) + '{:6.3f}s'.format(delta)
    if delta < best:  
      best = delta
      best_host = host
    s.close()  
  except:
    pass  

print '\n'
print 'lowest latency: '
print best_host.ljust(35) + '{:6.3f}s'.format(best)
191  Bitcoin / Project Development / Re: [ANN] chainsnort (cross-platform console transaction monitor) on: January 19, 2014, 09:38:20 AM
Next feature (currently under testing): color highlighting of "interesting" addresses, based on a very simple external text file containing a list of addresses to watch for. For instance, in the below screenshot, the 1dice and 1A6TJ addresses are defined as 'interesting'.



When such an address is detected, an alert containing the relevant transaction details could also be emailed.
192  Bitcoin / Bitcoin Technical Support / Re: Lost wallet password but I have the wallet.aes.json file, what can I do? on: January 19, 2014, 08:01:38 AM
I was using a password manager which crashed and lost all of my passwords. I was able to reset most of them but my wallet password is lost and I have no idea what it could be. Its either 10,12, or 30 random characters. I have the json file which text starts with a 78yu and was hosted on blockchain.info. There isn't probably very much in there, but is there any way to recover it?

Wow, which password manager was that?
If you have previous backups of the password database, you could try to open those.
193  Bitcoin / Electrum / Re: High-quality Electrum (1.9.5) builds for Windows on: January 14, 2014, 05:34:30 PM
1.9.7, available from https://electrum.org/download.html

I will work on my next build when I have more free time.
 Your 1.7.4 is still my favorite  Smiley

Glad to hear that! But just curious, what is specific to that version that you don't find in later versions?
194  Bitcoin / Project Development / Re: [ANN] chainsnort (cross-platform console transaction monitor) on: January 14, 2014, 05:31:47 PM
Hey, how about adding support for twitter API - ie, sending automatic tweets when certain conditions are met? That would be dope...

Yes, this is actually on my to-do list! I am looking at the following notification types:
email, syslog, twitter and pastebin.
195  Bitcoin / Project Development / Re: [ANN] chainsnort (cross-platform console transaction monitor) on: January 14, 2014, 05:30:17 PM
Man this is the third coincidence today. Creepy. I ran into tee for the first time earlier and now you mention it.

The lack of any coincidences would be the greatest coincidence. Smiley
196  Bitcoin / Project Development / Re: [ANN] chainsnort (cross-platform console transaction monitor) on: January 14, 2014, 07:00:33 AM
Version 0.43.3 is out!

Fixes a minor indentation issue with large amounts, and adds output multiplexing (tee-style) support, which allows you to capture traffic both to the console and a log file (just start the tool with the -o argument for that). The log file is called "txtrace.log" and is located in the same path as the script, or in the following path if you are running the Windows executable: %AppData%\Chainsnort\0.43.3\Log.

No documentation or manual at this stage. It will come sooner or later.

Also, I didn't have much time to make progress on direct bitcoind support.
Of course, if anybody wants to help out, they are welcome to do so Smiley
197  Bitcoin / Electrum / Re: High-quality Electrum (1.9.5) builds for Windows on: January 13, 2014, 11:03:18 PM
what's the latest electrum for windows 7 ?

1.9.7, available from https://electrum.org/download.html

I will work on my next build when I have more free time.
198  Bitcoin / Project Development / Re: [ANN] chainsnort (cross-platform console transaction monitor) on: January 06, 2014, 09:30:17 PM
Now performing some (very early) testing of the bitcoind RPC connector...
199  Bitcoin / Bitcoin Discussion / Re: Holy crap that was a large transaction on: January 05, 2014, 08:54:42 PM
Was there not a transaction worth 30,000+ BTC a few days ago?

Yep... 39,016 BTC...
https://bitcointalk.org/index.php?topic=394643.20
200  Bitcoin / Bitcoin Discussion / Re: Holy crap that was a large transaction on: January 05, 2014, 08:51:35 PM
better check your pc for virusses now i got one from there and it emptyed my cryptsy account check https://bitcointalk.org/index.php?topic=271910.0 for more info




Indeed Listentobitcoin.com is infected by malware. Avoid at all costs.
How so?
The site was hijacked a while ago and is now randomly serving Java drivebys.
The original owner moved to http://www.bitlisten.com/ which is clean.
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 ... 63 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!