Bitcoin Forum
April 19, 2024, 10:25:52 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 [7] 8 9 »
121  Economy / Gambling / Re: Looking for Peerbet Android app beta testers - free Bitcoins available on: February 22, 2013, 03:08:56 PM
Checking it out right now.  Wink

Username is: EntropiaFox
122  Alternate cryptocurrencies / Altcoin Discussion / Re: Begging for XRP on: February 22, 2013, 03:00:43 PM
Hmm, might as well try it. Cheesy

rDavLXFMUJ5Y1zu3ojSqRQXGPRp28ixRc4

I'm a nice person. Meow.
123  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: February 21, 2013, 05:02:47 AM
rDavLXFMUJ5Y1zu3ojSqRQXGPRp28ixRc4
124  Bitcoin / Pools / Re: [3600 GH] BTC Guild - PPS, PPLNS with TxFees+Orphans, Stratum+Vardiff ASIC Ready on: January 31, 2013, 06:18:30 AM
I've been using Stratum since I went back to mining for this pool, so far so good.  Wink

However, there's something that has piqued my interest... with over 10k submitted and accepted shares, I see the rejected share column has Stale/Dupe/Other. In my case, the count is 20 / 0 / 3 which I suppose is rather decent. Now, what are these "Other" rejected shares? I skimmed over both threads and didn't really see the answer to this question, so it would be nice to know whether I should be concerned or not.
125  Economy / Goods / Re: [WTS]: Steam Games! (nothingsteamed.com) [Update: ALL Payments refunded] on: February 13, 2012, 12:32:05 PM
Will these issues affect in any way the games already bought with your service? Sad i.e. are you still in good stance with Valve?
126  Economy / Goods / Re: [WTS]: Steam Games! (nothingsteamed.com) [Update: Added steam website plugin] on: December 29, 2011, 07:31:26 PM
Everything went smoothly, and managed to get the game before the sale ended.  Grin
127  Bitcoin / Bitcoin Technical Support / Re: Problems compiling Bitcoin 0.4.0 in Windows 7 x64 (MinGW Environment) on: October 24, 2011, 12:13:13 AM
Thanks!
Your advise made me thinking... and I figured how to fix it.  Smiley

The problem is in the db.h from the berkeley database - it includes ptherad.h, which screws things up.

All you have to do is just append -D__NO_SYSTEM_INCLUDES at the DEFS= in makefile.mingw

Now it compiles

Thanks a lot! I'll try this as soon as I get to my home PC.  Grin
128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Litecoin - a lite version of Bitcoin. Launched! on: October 23, 2011, 03:01:53 PM
I like this alternate cryptocurrency so far.  Grin I read about Tenebrix/Fairbrix a while ago, but dunno if I really liked the "No cap" bit, so decided not to jump in for the time being. I hope this reaches the same level of acceptance as, say, Namecoin.
129  Bitcoin / Bitcoin Technical Support / Problems compiling Bitcoin 0.4.0 in Windows 7 x64 (MinGW Environment) on: September 26, 2011, 12:35:30 PM
Greetings once again.  Smiley

Yesterday I decided the pick the (somewhat daunting) task to compile Bitcoin from source. So, I grabbed my tools, downloaded all the dependencies with the versions indicated in the build-msw.txt file, used this thread as a reference for the trickier stuff (Only changing the versions for the dependencies where it was relevant), compiled them (Screw you, Boost) and then... nada. Here's the output:

Code:
C:\bitcoin-bitcoin-f8937b2\src>mingw32-make bitcoin.exe bitcoind.exe -f makefile
.mingw
g++ -c -mthreads -O2 -w -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DWIN32
-D__WXMSW__ -D_WINDOWS -DNOPCH -DUSE_SSL -DBOOST_THREAD_USE_LIB -DSTATICLIB -DUS
E_UPNP=0 -I"C:\boost-1.47.0-mgw" -I"C:\db-4.8.30.NC-mgw\build_unix" -I"C:\openss
l-1.0.0d-mgw\include" -I"C:\wxWidgets-2.9.2-mgw\lib\gcc_lib\mswud" -I"C:\wxWidge
ts-2.9.2-mgw\include" -I"C:\miniupnpc-1.6-mgw" -DGUI -o obj/crypter.o crypter.cp
p
In file included from headers.h:94:0,
                 from crypter.cpp:9:
util.h:582:16: error: conflicting declaration 'typedef void* pthread_t'
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/../../../../include/pthread.h:571:24: erro
r: 'pthread_t' has a previous declaration as 'typedef struct ptw32_handle_t pthr
ead_t'
util.h: In function 'pthread_t CreateThread(void (*)(void*), void*, bool)':
util.h:598:27: error: no matching function for call to 'ptw32_handle_t::ptw32_ha
ndle_t(int)'
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/../../../../include/pthread.h:569:3: note:
 candidates are: ptw32_handle_t::ptw32_handle_t()
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/../../../../include/pthread.h:569:3: note:
                 ptw32_handle_t::ptw32_handle_t(const ptw32_handle_t&)
util.h:603:28: error: no matching function for call to 'ptw32_handle_t::ptw32_ha
ndle_t(int)'
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/../../../../include/pthread.h:569:3: note:
 candidates are: ptw32_handle_t::ptw32_handle_t()
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/../../../../include/pthread.h:569:3: note:
                 ptw32_handle_t::ptw32_handle_t(const ptw32_handle_t&)
util.h:605:12: error: conversion from 'void*' to non-scalar type 'pthread_t' req
uested
util.h: In function 'bool AffinityBugWorkaround(void (*)(void*))':
util.h:673:36: error: no match for 'operator!' in '!CreateThread(pfn, 0u, 0)'
util.h:673:36: note: candidate is: operator!(bool) <built-in>
mingw32-make: *** [obj/crypter.o] Error 1

C:\bitcoin-bitcoin-f8937b2\src>

Also, here's my MinGW version info, provided by this batch file, in case it becomes relevant.

Code:
MINGWBASEDIR=C:\MinGW
gcc version 4.5.2 (GCC)
gcc version 4.5.2 (GCC)
GNU gdb (GDB) 7.2
GNU ld (GNU Binutils) 2.21.1
GNU windres (GNU Binutils) 2.21.1
GNU dlltool (GNU Binutils) 2.21.1
GNU Make 3.82
#define __MINGW32_VERSION           3.18
#define __W32API_VERSION 3.17

This is not the first time I've tried compiling something like this, but certainly it is the first I've tried to do so in Windows, and the first time I've tried with a project this big, so I know I was asking for trouble.  Grin From the output, the first I thought about (Given the declaration conflict) was that the headers were being added in the wrong order, but I tinkered a bit with that, no dice. Any more ideas?  Embarrassed Thanks in advance!
130  Bitcoin / Bitcoin Technical Support / Re: Possible power issue when card is under stress... but where? on: August 28, 2011, 05:52:58 PM
Its OCed too far, and/or overheating.

I'm running at stock (775 Mhz for core, 1000 Mhz for memory) and the card gets at ~80ºC at worst when running FurMark, it's usually at 70ºC when mining, so I don't think it's either.  Huh
131  Bitcoin / Bitcoin Technical Support / Possible power issue when card is under stress... but where? on: August 28, 2011, 04:46:35 PM
Greetings there, Bitcoiners.  Wink

I'd like to kindly ask for any helpful input for some issues I've been having as of lately. Not too long ago, I upgraded my system, and replaced my battle-weary GeForce 9600GT with a spanking new Radeon HD 6850 (For motives unrelated to Bitcoin mining originally, though it does mine fairly well. Grin ). For a while everything went perfectly, but starting about a week ago, I've noticed that after mining for a bit, the LCD screen would turn blurry, wobbly horizontally... it's rather hard to explain, but it's like horizontal lines were moving back and forth in the screen. As soon as I stop mining, the problem disappears. This doesn't just happens when mining- running FurMark for a while creates the same issue, though apart from this, I don't see any other noticeable artifacts, not the usual suspects at least. (Black squares, weird textures, polygons stretching freakishly, etc.) I can attach a screenshot of the screen while mining or running FurMark, but the wobbling is noticeably absent in any screen cap.

I'm fairly certain it's a power issue, as it only happens when the card is under a lot of stress... but where? The PSU is new, and is rated at 800W which is certainly more than what I would need for that card. Also, checking the voltages in HWMonitor shows that +5V drops to 4.90 at worst, which I believe it is within a tolerable range. Could it be that I'm drawing too much power from the outlet and the monitor is the straw that breaks the camel's back? Has anyone experimented problems similar to these? Thanks in advance.
132  Economy / Goods / Re: NothinG's Gifts [Selling ALL Steam Products] on: August 10, 2011, 08:36:44 PM
Bought a game from NothinG, everything went out quickly, so I can certainly vouch for him.  Grin
133  Economy / Goods / Re: Selling Minecraft gift codes - just 0.95 BTC (price bump in 3 days) on: August 09, 2011, 02:00:06 PM
Bought a code as well, everything went smoothly and quickly.  Grin Thank you a lot!
134  Bitcoin / Bitcoin Discussion / Re: Gavin and Bruce doing Satoshi dirty work? on: July 16, 2011, 02:11:33 PM
We're all Satoshi. Satoshi lives in every one of us, he's in each of our BTC, and our transactions...

Sorry, I got a bit emotional there.  Grin
135  Other / Off-topic / Re: New BitCoin Comic on: June 18, 2011, 03:33:51 PM
Bahaha, last one is so true.  Grin
136  Economy / Economics / Re: It's growing back on: June 18, 2011, 04:18:45 AM
Good times, good times. Weekends are always a fun time to trade, with the price going up and down like a yo-yo.

As suggested by another forum member, here is the Mt. Gox weekend theme song.

http://www.youtube.com/watch?v=MK6TXMsvgQg

Or, alternatively: http://www.youtube.com/watch?v=IIEVqFB4WUo

 Grin
137  Bitcoin / Bitcoin Discussion / Re: 0.10 Bitcoin FREE ! BitcoinBoom is Looking for ... on: June 17, 2011, 11:49:48 PM
Tsk, tsk tsk... looks like our little scammer boy here didn't consider how easy it is to track individual transactions, or rather, the keys they came from/to.  Cheesy
138  Bitcoin / Project Development / Re: FREE BITCOINS -- Environmentally conscious mining! on: June 17, 2011, 03:38:52 PM
This looks very interesting.  Grin I was thinking about something similar over here, given the fact that I pay very little on electricity in general, so I could use the grid as I set up all the solar panels and start mining ASAP, but the aggressive difficulty increase took me by surprise, sadly, and I began to question the profitability of my little project.  Sad Doesn't help much that I wasn't an "early adopter", either. So I decided it was wise to back up. But if this does work, well, it'll be amazing.
139  Bitcoin / Pools / Re: [Pool] SIMPLECOIN.US (0% fee, Cheat-proof, Inst/Auto Pay, LP, JSON, Opensource) on: June 09, 2011, 11:03:59 AM
Bit confused here as well.  Huh AFAIK, transactions fees can't be enforced no matter what (One is hardcoded in 0.3.22 if there are too many pending transactions, but the code could be modified to give it 0.3.20 behavior ), and I don't mind waiting a while for my BTC to arrive, but as I'm a small miner (0.05 BTC/day more or less with my puny 9600GT, but hey, nearly free electricity!), a TX fee of 0.01 would be a lot for me. I think this would be true for all small miners, or anyone who just wants to see his/her money quickly.
140  Economy / Marketplace / Re: List of honest traders. on: June 09, 2011, 02:50:52 AM
+1 mobydick for his/her patience trading with me. I had some technical difficulties but the trade went through after all.  Cheesy
Pages: « 1 2 3 4 5 6 [7] 8 9 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!