Bitcoin Forum
April 27, 2024, 03:53:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Other / Off-topic / Historical IP data on this site, need a global mod or admin please on: June 26, 2020, 02:38:05 AM
I was wondering if there might be a global mod or an admin here that can check an IP I have.

I believe it's one of my old ones that I still have in use on 3 web files I no longer need (the IP) for RPC stuff. This is easily confirmed if a global mod or admin can tell me a date range of when this account would have posted from it.

I think it's an old one from when I lived in Va, and if so. I obviously no longer need or have use for it. Or it may belong to something else I just forgot. But seeing if I have any historical attachments to it here would be a big help. Especially since, at least last I knew, the SMF DB log's account IP's used when they're posted from.

Ty.

I can PM the IP to said global mod or admin.
2  Other / Serious discussion / Long shot... but does such an Android wallet app exist ? on: May 27, 2020, 12:22:52 PM
Is there a singular app that will, if not have other coins, at least allow me to set watch wallets for LTC and BTC ?

Maybe even have some sort of refresh button, provided it maybe doesn't refresh balances on app load.

Huge bonus if it has widgets for said wallets where by either tapping it, it refreshes if not has an auto refresh for every half hr or so.

If not, do we have any competant coders here that might be interested in building such a creature?

Ty.

I've looked at things like exodus. But hey dont even have a watch wallet option.

Ohhhh. If not a combined app. Two best singular options for watch wallets for BTC & LTC.
3  Bitcoin / Hardware wallets / Hardware wallets... on: May 23, 2020, 10:08:31 AM
So I'm familiar with Trezor, by name only, as I saw them advertised a lot before launch. Been seeing some other ads on Facebook as of late for a diff hardware wallet called Ledger, looks more fancy, not that that really means anything.

That being said. Of all the currently available HW wallets, what do you use if any, and why ?

I do know the trezor is ~$55 while Ledger which comes with a nano ver or some such shit is ~$150.

Been contemplating getting one vs a locally stored wallet file / paper wallet etc. for moving some coins off of CB after making a few more trades.

Ty.
4  Economy / Currency exchange / Looking to swap $150 fiat from my coinbase account... on: February 17, 2019, 04:40:15 AM
Need to get money into my bank like tonight.

Easiest and quickest way for me will be to send it to someone from my coinbase account and have it send to me via Venmo or Cash app.

To noobs looking to scam, this isn't my first rodeo. My main account before it got hacked to which I'm trying to regain is MoreBloodWine.

View feedback prior to that account going red to see if I'll fall for your tricks.

https://bitcointalk.org/index.php?topic=2924561.msg49780249#msg49780249
5  Other / Meta / Can someone tell me why my images arent showing ? on: May 14, 2018, 09:17:22 PM
https://bitcointalk.org/index.php?topic=3806506.msg37279492#msg37279492

The one from the main post shows fine which is not hosted by me. But the three that are within the first reply will not show. I have confirmed that the attempted scaling isn't what's breaking it since even before then. The proxy thing still showed. Would love to know whats going on here, Ty.
6  Alternate cryptocurrencies / Announcements (Altcoins) / EGC EverGreenCoin Lottery - Making the world better, one tree at a time... on: May 14, 2018, 06:45:52 PM

Coin Discussion (Hosted by EGC): Discuss
Lottery Page (Hosted by yours truly): Play

EGC Donation Address: EQjs6pDgoDGcoViA7QvS8UFqG5u57YF3rr

This will be an ever evolving post, I had it the way I wanted to post it but lost all the data to a stupid mistake so it will grow as it "comes back" to me lol

But the quick and dirty is that this post will serve as a place of discussion for the EGC lotto which is ran and hosted by me. This way all of it's discussions can be kept separate from the main EGC thread making Stevens life a bit easier. The lotto currently runs from Sun. to Sat. on an ongoing weekly basis with the draws being every Sun. at 12:30am EST/EDT with the system locking for 30 mins post and pre draw to allow existing entries to further settle and make sure no entries are missed via the lottos confirmation page as before this system lock. We've had some entries missed due to them coming in close to the draw time.

Anyway, this lotto has EGC's blessing and has had a bonus pool funded by it's very own Steven Saxton. He initially gave 600 EGC to fund a weekly bonus of 25 EGC through 7/28/18. So far it has all been a great success. I also have some fun things planned for certain goals that are met. Now as much as I would love to make it an ongoing weekly thing. I just don't have the room to constantly be planting stuff but eventually will get out past the confines of my own home. More to come on this later since as I said, this post will be ever evolving as the lost data from my original pre-made post comes back to me.

In any event, please ask any questions you have about the lotto here and I will try to address them in a timely manner.

Ty & enjoy !

Ps; I know this account doesn't have much cred on the forum right now but if your truly interested in knowing why... please see this thread but keep all discussions about it off of this one... Ty.

https://bitcointalk.org/index.php?topic=2924561.msg30039823#msg30039823
7  Bitcoin / Development & Technical Discussion / Not sure if this is specifically an RPC problem or code change... on: February 16, 2018, 11:22:39 PM
Been a few servers ago and client iterations since I have used this but what once pulled stats from my home node, no longer works.

But I know RPC is working with something else right now so not sure what to make it it. But ya, the last time I used this code, maybe a yr ago it worked fine.

Code:
<?php
include "jsonRPCClient.php";


$username 'you';
$password 'wish';
$ip 'id';
$port tell;


$info rpc_command'getinfo' );
if( 
is_array$info) ) {
        
$required = array( 'difficulty''blocks' );
        
$numeric_data get_numeric_data$info$required );
        if( !
$numeric_data ) {
                exit( 
"get_info() failed to acquire needed data." );
        }
        
extract$numeric_data );

        
$write_arr'timestamp' ] = time();
        
$write_arr'estimated_difficulty' ] = $difficulty;
        
$write_arr += compact'difficulty''blocks' );

        
$blocks_since_difficulty_change $blocks 2016;
        if( 
$blocks_since_difficulty_change ) {
                
$previous_difficulty_change $blocks $blocks_since_difficulty_change;

                
$current_block_timestamp get_block_timestamp$blocks );
                
$previous_block_timestamp get_block_timestamp$previous_difficulty_change );

                if( ! 
$current_block_timestamp || ! $previous_block_timestamp ) {
                        exit( 
'Could not get block timestamps' );
                }

                
$average_block_time = ($current_block_timestamp $previous_block_timestamp) / $blocks_since_difficulty_change;
                
$estimated_difficulty $difficulty 600 $average_block_time;
                
$write_arr'estimated_difficulty' ] = $estimated_difficulty;
        }
        
write_file$write_arr );
} else {
        exit( 
'Could not getinfo(). getinfo() output is not an array.' );
}

function 
rpc_command$command$arg '' ) {
        global 
$username$password$ip$port;
        static 
$rpc;
        if( ! 
$rpc ) {
                
$rpc = new jsonRPCClient"http://$username:$password@$ip:$port);
        }
        try {
                if( ! empty( 
$arg ) ) {
                        
$ret $rpc->$command$arg );
                } else {
                        
$ret $rpc->$command();
                }
        } catch ( 
Exception $e ) {
                
trigger_error"Exception in rpc_command(). Command is $command. Error is: " $e->getMessage() );
                
$ret false;
        }
        return 
$ret;
}

function 
get_numeric_data$info$keys ) {
        
$ret = array();
        foreach( 
$keys as $key ) {
                if( isset( 
$info$key ] ) && is_numeric$info$key ] ) ) {
                        
$ret$key ] = $info$key ];
                } else {
                        
$ret false;
                        break;
                }
        }
        return 
$ret;
}

function 
get_block_timestamp$block ) {
        if( !
is_numeric$block ) ) {
                return 
false;
        }
        
$block_hash rpc_command'getblockhash'$block );
        if( 
$block_hash !== false && preg_match'/^[0-9a-f]+$/i'$block_hash ) ) {
                
$block_data rpc_command'getblock'$block_hash );
                if( 
is_array$block_data ) && isset( $block_data'time' ] ) && is_numeric$block_data'time' ] ) ) {
                        return 
$block_data'time' ];
                } else {
                        
trigger_error"Error in get_block_timestamp(). Time in blockdata not found or not numeric. Block is $block);
                }
        } else {
                
trigger_error"Error in get_block_timestamp() could not getblockhash for block $block. Hash is $block_hash);
        }
        return 
false;
}

function 
write_file$data ) {
        if( 
is_array$data  ) ) {
                
$h fopen'getinfo.php''w' );
                
fwrite$h"<?php \$bitcoind_getinfo = " var_export$datatrue  ) . ";" );
                
fclose$h );
                return 
true;
        } else {
                
trigger_error'Error in write_file(). Data is not an array.' );
                return 
false;
        }
}

Out puts this when manually run, normally set on a cron...

[not@here]$ php getdata.php
Could not getinfo(). getinfo() output is not an array.
[not@here]$

I think I copied the entire files code ok, looks good. But ya,the last time I used this code about a yr ago it was / seemed fine and saved the required data to the secondary file I would then pull from to display on my personal sites.

Ty.
8  Other / Meta / Stolen acct [VERIFIED signed msg inside]... DT's needed, Ty! on: February 11, 2018, 03:47:41 AM
Posting this after reading this: https://bitcointalk.org/index.php?topic=2771716.msg29973077#msg29973077

Below is my the signage used in my original message to Cyrus. Did back far enough and you'll find it's me.

Ty.

Can and will sign new message upon request.

Name: MoreBloodWine (This came up once before but I got lucky: https://bitcointalk.org/index.php?topic=1109340.msg11793010#msg11793010)

Quote
-----BEGIN BITCOIN SIGNED MESSAGE-----
This is MoreBloodWine "the real one" from bitcointalk.org and today is 2018.02.03 or as some of you might write it 2/3/18. The asshole currently running my account has no permission to do so. I have never once thought abut selling or otherwise transferring my account here on bitcointalk.org !
-----BEGIN SIGNATURE-----
HPnlyJfvMBDzDdQxC5RgwBLpUKotuu0mCHkPtl6CZ+fseVKzVtsq7kMgB6RkEDe3S19JE5v7GtGGTnZjz+OB4G4=
-----END BITCOIN SIGNED MESSAGE-----

Needless to say, I can prove what my old avatar use to be, I know not worth a shit.

But the creme de la creme... I know what my old IP use to be before I moved from Pa to Va !
9  Alternate cryptocurrencies / Altcoin Discussion / Issues with QTCreator... on: February 05, 2018, 04:49:04 AM
So most of what I've ran into I've been able to fix myself by figuring out some of the previously missing dependencies but am having issues with this one.

On CentOS 7

Quote
moc_charitydialog.o build/moc_qrcodedialog.o   -lqrencode -lminiupnpc /home/amcnamara/Desktop/EverGreenCoin/src/leveldb/libleveldb.a /home/amcnamara/Desktop/EverGreenCoin/src/leveldb/libmemenv.a -lrt -lssl -lcrypto -ldb_cxx -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -lpthread -lQt5PrintSupport -lQt5Widgets -lQt5Gui -lQt5Network -lQt5Core -lGL
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../libdb_cxx.so when searching for -ldb_cxx
/usr/bin/ld: skipping incompatible /lib/libdb_cxx.so when searching for -ldb_cxx
/usr/bin/ld: skipping incompatible /usr/lib/libdb_cxx.so when searching for -ldb_cxx
/usr/bin/ld: cannot find -ldb_cxx
collect2: error: ld returned 1 exit status
make: *** [EverGreenCoin-Qt] Error 1
20:18:47: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project EverGreenCoin-qt (kit: Desktop)
When executing step "Make"
20:18:47: Elapsed time: 00:35.
Apparently I'm missing -ldb_cxx but can't seem to find out, no matter how much googling I do, what dependency I'm missing.

Would love some help, Ty.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!