Bitcoin Forum
May 31, 2024, 01:24:47 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 [227] 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 »
4521  Other / Obsolete (buying) / Re: Buying 2.5 namecoins for BTC on: June 10, 2011, 04:21:35 PM
I have 450 available, contact me
4522  Bitcoin / Bitcoin Discussion / Re: Simple pool abuse strategy?? on: June 10, 2011, 01:30:02 AM
I could be considered a bitcoin noob, but how are pools being abused exacly? pool hopping?
https://forum.bitcoin.org/index.php?topic=9928.0
4523  Bitcoin / Development & Technical Discussion / Re: Synchronisation across devices for a multitude of bitcoin wallet copies. on: June 10, 2011, 01:14:43 AM
try powerfolder, you can sync across devices over the lan and internet, fully encrypted, no cloud storage involved if the user choses so.
they also accept btc payment https://www.powerfolder.com/shop/?setCurrencyId=6
or use dropbox, which is free.
4524  Bitcoin / Bitcoin Discussion / Re: Keiser Report: "this is the biggest story of this decade" on: June 10, 2011, 01:08:53 AM
>implying *.blogspot.com sites are reputable.
4525  Bitcoin / Bitcoin Discussion / Re: Simple pool abuse strategy?? on: June 10, 2011, 01:08:09 AM
if a pool started with that, I would DEFINITELY think it's a scam.
4526  Bitcoin / Mining / Re: I'm a total noob to this, help me build a mining rig? on: June 10, 2011, 01:07:18 AM
I would suggest to ommit a case. it provides better cooling, and it reduces costs Tongue
4527  Economy / Marketplace / Re: TradeHill Discussion Thread on: June 09, 2011, 08:17:57 PM
Why can't i withdraw via paypal? It was there in the morning. now it's gone Sad
4528  Bitcoin / Mining / Re: Cooling Question - Exhaust Hot or Intake Cool? on: June 09, 2011, 08:16:44 PM
if the air is REALLY hot, blow it out. otherwise, spot cool the cards.
4529  Other / Obsolete (selling) / Re: sell amd radeon hd 6990 on: June 09, 2011, 08:07:37 PM
to seller:
you should probably put something beside the actual card, like a peice of paper with your name on it, that way, we know the picture isn't scraped from the internet.
4530  Other / Obsolete (selling) / Re: Sapphire Radeon HD 5830 (new) on: June 09, 2011, 02:45:47 AM
Whats the starting price..? You could buy GB 5830s for 110 each retail when they were in stock..
and they're still in stock Wink
4531  Bitcoin / Mining software (miners) / Re: New Release! BitMiner - Advanced Miner GUI - Beta 2.1 on: June 09, 2011, 02:44:10 AM
on a side note, to avoid tons of "whatever" + str1 + "something else" +str2, use string.format, it makes the code much neater Smiley
4532  Bitcoin / Bitcoin Discussion / Re: OP_CHECKSIG spam? on: June 09, 2011, 01:59:02 AM
i don't get it
4533  Bitcoin / Bitcoin Technical Support / Rebroadcasting transactions? on: June 09, 2011, 01:55:06 AM
I sent 0.2 btc, but the internet was down. Now it's stuck at 0 confirmations for over 20 minutes now. Is there any way to force another broadcast of the transactions?
4534  Economy / Economics / Re: Bitcoin managed investments on: June 09, 2011, 01:34:56 AM
Idea is pretty simple. I give you bitcoins. You invest/day trade with them. You take 25% of the profit/loss. Would anyone do this? it's a good way day traders can make some money.

Sounds like a good way to get scammed.  Whats to stop scammers from trading with your bitcoins, then telling you they lost money.  Or whats to stop them from sharing the profits, and then disappearing when there are losses to share?
Well, the trader must be VERY trusted.
4535  Bitcoin / Bitcoin Technical Support / Re: Optimizing HD5770? on: June 09, 2011, 01:26:10 AM
thanks for the tip
i set the mem clock to default (1200) and it didnt affect the mhashs rate at all. So i guess that it has no significance for mining?
i meant MUCH lower
https://forum.bitcoin.org/index.php?topic=4292
4536  Bitcoin / Mining / Re: Sapphire Xtreme HD5850 wont do 500 mem clock on: June 09, 2011, 01:24:11 AM
maybe your card is bad? i can drop the clock to 230 instantly, with no crashes.

yeah but it seems to work fine at stock clocks, how do i prove to them that its bad?
i meant "bad" as in not good for overclocking, not "broken" Tongue

there's nothing you can do about it. maybe you were unlucky and/or i was lucky.
4537  Bitcoin / Mining software (miners) / Re: New Release! BitMiner - Advanced Miner GUI - Beta 2.1 on: June 09, 2011, 01:20:44 AM
suggestions:

ENCRYPT the file that has all the user data. not doing so is EXTREMELY dangerous.
------------
Code:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    ProcessStartInfo info = new ProcessStartInfo("taskkill.exe", "/IM poclbm.exe /F");
a better way would be to use process.start to start the miner, and use process.kill or something to end it.
------------
Code:
private void p_OutputDataReceived(object sender, DataReceivedEventArgs e)
                StreamReader reader = new StreamReader(client.OpenRead("http://blockexplorer.com/q/getblockcount"));
it's better to cache the results. loading a new page every time the console outputs something (at least once per second) is just wasteful.
------------
Code:
public Miner(int Device, int framerate, bool vectors, int work, string Nickname, Pool p, MinerProgram mp, string PoolUser, string PoolPass, string host)
        string str2 = (((((("-d" + this.DeviceID) + " --host=" + this.pURI) + " --port=" + this.pPort.ToString()) + " --user=" + this.pUser) + " --pass=" + this.pPass) + " -f " + framerate.ToString()) + " -w " + work.ToString();
why so many brackets? also, you're missing some spaces in between the args.
 
4538  Bitcoin / Mining / Re: Sapphire Xtreme HD5850 wont do 500 mem clock on: June 09, 2011, 01:05:59 AM
maybe your card is bad? i can drop the clock to 230 instantly, with no crashes.
4539  Economy / Economics / Re: Welcome to $200M market cap on: June 09, 2011, 12:30:37 AM
Illegal immigrants (how a human being could possibly be considered "illegal" is beyond me)
i think the correct term is
Illegally immigrated
4540  Economy / Economics / Re: Bitcoin managed investments on: June 09, 2011, 12:28:46 AM
anyone else interested?
Pages: « 1 ... 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 [227] 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!