Search content
Sort by

Showing 20 of 127 results by Houseonfire
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] AsicCoin (ASC) | SHA256 - The coin for ASIC Mining! | No Premine
by
Houseonfire
on 28/06/2014, 06:23:09 UTC
I'm trying to mine solo with ASICCoin and using MultiMiner but I continually get 0 Accepted shares.

I even went into the AsicCoin-qt and activated the internal mining function and still nothing as far as I can tell.

Any idea why its just zero shares?

The blocks are all caught up.
Post
Topic
Board Altcoin Discussion
Topic OP
Using Minerd (pooler) for litecoins
by
Houseonfire
on 08/09/2013, 21:28:51 UTC
When I mine litecoins with Minerd, can i set it to the -a sha256d setting?
I do it and it mines but I have no way of seeing results one way or the other.
Post
Topic
Board Altcoin Discussion
Re: Ripple Giveaway!
by
Houseonfire
on 05/09/2013, 22:27:10 UTC
rJwZx4DR3fTiGvbup4FoguQtTRyKbu1MiE
Post
Topic
Board CPU/GPU Bitcoin mining hardware
Re: Mining / Pooled Mining Bandwidth Use?
by
Houseonfire
on 13/08/2013, 08:47:33 UTC
With stratum and 10ghash I would probably be right below 5gb after 24/7 mining for a month. Stratum seems to drop bandwith usage about 60%

Thank you for that.
I'll have to switch to stratum again.

I needed to know so I could use my tethered phone (downed net for now:(((((((  )
Post
Topic
Board Mining support
Re: Calculate mining stats
by
Houseonfire
on 09/08/2013, 02:34:33 UTC
Post
Topic
Board Mining support
Topic OP
How can BTCGuild(and other pools) mine Btc and Nmc at the sametime?
by
Houseonfire
on 09/08/2013, 02:33:16 UTC
I earn both from BTCGuild. Does this take away from my bitcoin mining speed? I hope it doesn't.
Post
Topic
Board Development & Technical Discussion
Re: Current BTC Price in the official client
by
Houseonfire
on 23/03/2013, 21:48:29 UTC
I understand what you're saying.
The client is for handling your coins, not handling your money.
I get it.
Post
Topic
Board Development & Technical Discussion
Re: Current BTC Price in the official client
by
Houseonfire
on 23/03/2013, 21:15:13 UTC
Bad idea to mix decetralized client with cetralized services. What if tomorrow MtGox will be shut down?

I highly doubt that would just randomly happen. But if it does that why there are other trading websites.
And it wouldn't be official. It's not official now for a reason, so why make it official? Just an instruction to do it would allow people to do it if they wanted to.
Post
Topic
Board Development & Technical Discussion
Topic OP
Current BTC Price in the official client
by
Houseonfire
on 23/03/2013, 21:03:57 UTC
I'm sure its been discussed before, but would it be possible to add a menu so users can add a link in from any trading system (mtgox etc) so it puts the current BTC price in bitcoin-qt?

Or even a simple instruction on how to add it in in case of an update.
Post
Topic
Board Services
Re: ☆Cloud Storage Expansion Service☆(Dropbox,box,Sugar Expand For 0.1BTC)☆
by
Houseonfire
on 11/03/2013, 21:17:30 UTC
Purchased one more!
Post
Topic
Board Armory
Re: Add address without sending or receiving coins from it.
by
Houseonfire
on 09/03/2013, 03:41:35 UTC
Honestly, it's not hard at all -- but there is tremendous value in the simplicity of the current design.  Armory is a very large, complicated beast.  Any time I can come up with a solid solution that doesn't requiring maintaining/synchronizing new files to disk, and doesn't require any new interfaces, data entry, error checking, etc -- is better for me and less bugs for users.  Pulling all the data from the blockchain scan and organizing it into a table is pretty darned easy.

Most importantly, is that I get to avoid all issues with serialization/deserialization, and partially-written/corrupted files that crash Armory.  It works 99.99% of the time, but then I spend many hours chasing down bugs for users that ends up being a corrupted address book file, or a bug in the code that reads/writes the data incorrectly and corrupts other things, causes crashing, or just a cascade of buggy behavior.  In fact, I have had this happen with mempool.bin, and is actually why I added the "Revert All Settings" tab.

On second thought, this could piggyback on the Armory wallet file itself.  Create a new entry type and create an interface for converting user data into the new entry type.  This is favorable, because the wallet files have some corruption resistence to them, and it makes sense to put address-book data in there anyway.



I understand what you're saying. More features = more problems.
But there are plenty of lists being populated already. Is populating a list of something like addresses/comments different than the others?
Eh, i'm sure I can test it out myself.
Post
Topic
Board Armory
Re: Add address without sending or receiving coins from it.
by
Houseonfire
on 09/03/2013, 03:04:28 UTC
I would like to add addresses to my address list without having to send/receive coins from it.

Is this possible?
Am I missing something?


EDIT:
And by this, I mean I want in my list of people to send stuff to to be populated with the people I want to send stuff to without having to send anything in the first place.

Unfortunately not.  There actually is no saved address book system ... it simply constructs your address book from your transaction history, meaning that address must have been used in a transaction anywhere.  One day, I will add proper address book support, but for now this solution is extremely simple and reliable, even if it's not very flexible...



Thank you for getting back to me. I'm glad it came right from the developer and not someone else.

I've been learning python myself so i figure i'd tinker around and see what i can learn by editing/ doing stuff with your app...


Jump right in!  Python is fun, and the code should be fairly well-commented (though organization could be improved).   Let me know if you have any questions about anything, I'm always happy to help people get interested in the code.

If you were to make modifications that do what you're looking for, let me know and I'll try to review them and find a way to integrate them...






I wasn't sure sure why it would be too hard. There just needs to be a tab with a list in there, the list allows you to add the address/IDname. Then you click on the address/name and it opens up the send window and the listen item clicked is automatically placed into the send window.

I haven't even tried yet, but is that preposterous?


Or maybe even a simple config file with a simple format to put them in by hand?
Post
Topic
Board Armory
Re: Add address without sending or receiving coins from it.
by
Houseonfire
on 08/03/2013, 19:43:20 UTC
I would like to add addresses to my address list without having to send/receive coins from it.

Is this possible?
Am I missing something?


EDIT:
And by this, I mean I want in my list of people to send stuff to to be populated with the people I want to send stuff to without having to send anything in the first place.

Unfortunately not.  There actually is no saved address book system ... it simply constructs your address book from your transaction history, meaning that address must have been used in a transaction anywhere.  One day, I will add proper address book support, but for now this solution is extremely simple and reliable, even if it's not very flexible...



Thank you for getting back to me. I'm glad it came right from the developer and not someone else.

I've been learning python myself so i figure i'd tinker around and see what i can learn by editing/ doing stuff with your app...
Post
Topic
Board Armory
Topic OP
Add address without sending or receiving coins from it.
by
Houseonfire
on 08/03/2013, 19:07:08 UTC
I would like to add addresses to my address list without having to send/receive coins from it.

Is this possible?
Am I missing something?


EDIT:
And by this, I mean I want in my list of people to send stuff to to be populated with the people I want to send stuff to without having to send anything in the first place.
Post
Topic
Board Service Discussion
Re: Is mixing coins using SR's pooled wallets a viable option ?
by
Houseonfire
on 08/03/2013, 00:59:26 UTC
1. Will there be any fees when round-tripping coins through SR ?
2. What's the maximum safe amount to round-trip in one batch ?

Thanx

1- I don't think there are any fees going in or out of SR, but I may be mistaken.
2- Well, I would say SR is probably the only anonymously owned website in which you can still have a little of trust. Take note I said a little trust, as in BTC land trusting someone you know nothing about, or even trusting someone you know everything about, can get you in troubles Grin


No, there are no deposit/withdrawal fees. Only fees if you make a purchase through the websites escrow.
Post
Topic
Board Services
Re: ☆Cloud Storage Expand Service☆(Dropbox,box,Sugar Expand For 0.1BCT)☆
by
Houseonfire
on 07/03/2013, 15:09:05 UTC
He did the service and I sent him his payment, and I'll be doing this again on another account for a friend.

Thanks!


+1
Post
Topic
Board Services
Re: ☆Cloud Storage Expand Service☆(Dropbox,box,Sugar Expand For 0.1BCT)☆
by
Houseonfire
on 07/03/2013, 13:42:05 UTC
I have purchased3dropbox expansion services from him and all were perfect and fast and completely without problems.


Done and DONE.
Perfect.

I will be using this service again and will continue to update this post and let everyone know.
It works, it's legit and there's no doubt about it in my mind. You can PM me and ask me about if you want to.



+1!
+1!
+1!
Post
Topic
Board Digital goods
Re: BitShop - digital bitcoin shop script [PHP/MYSQL] (v0.8.3 NEW)
by
Houseonfire
on 06/03/2013, 21:44:40 UTC
If I buy this, is it possible for people to sign up and post their own items to sell?
Post
Topic
Board Services
Re: ★ +16GB Dropbox Storage Space for 0.5 BTC (for life) ★
by
Houseonfire
on 05/03/2013, 17:58:11 UTC
Oh I figured, I meant how much will it cost?

Sorry, I didn't specify.
Post
Topic
Board Services
Re: WTB your signature space for 0.25 BTC / 1 month
by
Houseonfire
on 05/03/2013, 17:51:10 UTC
Sounds very interesting.
I'd be willing to partake.


I'm not at the rank you request, but we could deal with that by dealing with payment down the road (2 weeks?). I'll use your signature and post each day, then you can pay me when I'm done or almost done.