Show Posts
|
|
Pages: [1] 2 »
|
|
Hello all,
I am looking to purchase some land in South America somewhere. It is quite flexible on country location but I have in mind Peru, Argentina or Chille but I am willing to look at other areas. Ideally I am looking for a plot of land that has not been built on but has the permission to be or that permission can be acquired. My desire for the land would be to be on a river source or located near the sea as I have a house boat and would be interested in mooring up there.
Initially this is a feeler put out to see what if any land people have available for sale and what legal requirements I would need to adhere by to do this all correctly and above board.
I would like to pay in BTC or PPC and am willing to pay a fair price for the land on offer.
So let me know what you have and how much you want for it.
Many thanks
Fuzzybear
|
|
|
|
Hey all, I am an avid Peercoin fan and activist i guess you could say, I own ASIC mining equipment and had them pointing at BTC for a while but switched to PPC quickly and made a LOT more out of mining PPC opposed to BTC. Not only have I made more by mining PPC i genuinely believe in Peercoin with its POS / POW hybrid design for network security and energy efficiency. Friendly bunch over at http://www.peercointalk.org and productive active community. Just wondering if any ASIC miners out there that do NOT mine BTC?? If so which coin do you mine and why?? Fuzzybear
|
|
|
|
Hello, I could do with a little help understanding the final stage for me in a great learning experiment regarding bitcoin and altcoins I have been doing in my spare time. Before bitcoin I had never used Linux, was a windows user through and through but have switched over and taught myself a lot and enjoyed the whole learning experience. So please be gentle with me for failing to be able to complete this task on my own. Trying to build a binary for myself on linux (ubuntu) that will work on other linux installs without having to install the dependenciesI have installed the dependencies on ubuntu. Now when I build I need to pass the Static flag in correct? but I seem to not understand how to declare this correctly  I am all for learning so please feel free to expand on things that are important areas to understand for me... or tell me where I am being a fool and making a meal out of something. Here is the sample makefile I have # Copyright (c) 2009-2010 Satoshi Nakamoto # Distributed under the MIT/X11 software license, see the accompanying # file license.txt or http://www.opensource.org/licenses/mit-license.php.
USE_UPNP:=0
DEFS=-DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE
DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH)) LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
LMODE = dynamic LMODE2 = dynamic ifdef STATIC LMODE = static ifeq (${STATIC}, all) LMODE2 = static endif else TESTDEFS += -DBOOST_TEST_DYN_LINK endif
# for boost 1.37, add -mt to the boost libraries LIBS += \ -Wl,-B$(LMODE) \ -l boost_system$(BOOST_LIB_SUFFIX) \ -l boost_filesystem$(BOOST_LIB_SUFFIX) \ -l boost_program_options$(BOOST_LIB_SUFFIX) \ -l boost_thread$(BOOST_LIB_SUFFIX) \ -l db_cxx$(BDB_LIB_SUFFIX) \ -l ssl \ -l crypto
ifndef USE_UPNP override USE_UPNP = - endif ifneq (${USE_UPNP}, -) LIBS += -l miniupnpc DEFS += -DUSE_UPNP=$(USE_UPNP) endif
LIBS+= \ -Wl,-B$(LMODE2) \ -l z \ -l dl \ -l pthread
# Hardening # Make some classes of vulnerabilities unexploitable in case one is discovered. # # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes # -fstack-protector-all to be ignored unless -fno-stack-protector is used first. # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722 HARDENING=-fno-stack-protector
# Stack Canaries # Put numbers at the beginning of each stack frame and check that they are the same. # If a stack buffer if overflowed, it writes over the canary number and then on return # when that number is checked, it won't be the same and the program will exit with # a "Stack smashing detected" error instead of being exploited. HARDENING+=-fstack-protector-all -Wstack-protector
# Make some important things such as the global offset table read only as soon as # the dynamic linker is finished building it. This will prevent overwriting of addresses # which would later be jumped to. LDHARDENING+=-Wl,-z,relro -Wl,-z,now
# Build position independent code to take advantage of Address Space Layout Randomization # offered by some kernels. # see doc/build-unix.txt for more information. ifdef PIE HARDENING+=-fPIE LDHARDENING+=-pie endif
# -D_FORTIFY_SOURCE=2 does some checking for potentially exploitable code patterns in # the source such overflowing a statically defined buffer. HARDENING+=-D_FORTIFY_SOURCE=2 #
DEBUGFLAGS=-g
# CXXFLAGS can be specified on the make command line, so we use xCXXFLAGS that only # adds some defaults in front. Unfortunately, CXXFLAGS=... $(CXXFLAGS) does not work. xCXXFLAGS=-O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter \ $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS)
# LDFLAGS can be specified on the make command line, so we use xLDFLAGS that only # adds some defaults in front. Unfortunately, LDFLAGS=... $(LDFLAGS) does not work. xLDFLAGS=$(LDHARDENING) $(LDFLAGS)
OBJS= \ obj/version.o \ obj/checkpoints.o \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ obj/key.o \ obj/db.o \ obj/init.o \ obj/irc.o \ obj/keystore.o \ obj/main.o \ obj/net.o \ obj/protocol.o \ obj/bitcoinrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcrawtransaction.o \ obj/script.o \ obj/scrypt.o \ obj/sync.o \ obj/util.o \ obj/wallet.o \ obj/walletdb.o \ obj/noui.o
all: Hrankd
# auto-generated dependencies: -include obj/*.P -include obj-test/*.P
obj/scrypt.o: scrypt.c gcc -c -o $@ $^
obj/build.h: FORCE /bin/sh ../share/genbuild.sh obj/build.h version.cpp: obj/build.h DEFS += -DHAVE_BUILD_INFO
obj/%.o: %.cpp $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< @cp $(@:%.o=%.d) $(@:%.o=%.P); \ sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d)
Hrankd: $(OBJS:obj/%=obj/%) $(CXX) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS)
TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
obj-test/%.o: test/%.cpp $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< @cp $(@:%.o=%.d) $(@:%.o=%.P); \ sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d)
test_Hrankd: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%)) $(CXX) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-B$(LMODE) -lboost_unit_test_framework $(xLDFLAGS) $(LIBS)
clean: -rm -f Hrankd test_Hrankd -rm -f obj/*.o -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj-test/*.P -rm -f src/build.h
FORCE: Now it all works when building a dynamic library ... however changing in the makefile LMODE=static LMODE2=static it errors.. I am investigating this error cannot find -lgcc_s Rather than changing in the makefile as well the values for LMODE, can I not pass this in on my make -f makefile.unix command? Many thanks for your help and for reading, if you want more info or code etc just ask sorry I am not as experienced as many others and I am completely self taught so there may be some alarming gaps in my knowledge. FuzzyBear
|
|
|
|
Hey everyone, Had a few requests from people for help in building Primecoin from source on a linux OS so I decided to write up this handy guide so that everyone could do it themselves http://www.devtome.com/doku.php?id=install_primecoin_ubuntuIf you have any problems then please post in this thread and i'll look into them or update the post as needs be. Guide was requested as apparently you can get 3x more PPS building from source (maybe needs further optimisation?) but hope this gets some people some more coins. FuzzyBear
|
|
|
|
Hello Everyone, Just wanted to announce there is a Block explorer up and running for Primecoin hosted on the 21stCenturyMoneyTalk forum http://primecoin.21stcenturymoneytalk.orgFeel free to post comments on this thread and join us in the forum for full support  FuzzyBear Donations appreciated APkVyn9uJ8LvkGgkQeyamUig4h2bFew8AD
|
|
|
|
Ok so I am fed up with all these exact copies of coins being released and very little if not 0 change has been made that has not been altered already or is just some variation of a pre-existing coin.... So I have been scratching my brain to develop a use of the blockchain that will be unique and capture the imagination of others.... I am proud to launch LSDoin... Genesis block will be mined TOMORROW at 12:00- It is NOT a coin (but its close) and is not valued or traded against any other currency.
- Blocks are generated on the blockchain which will once the nodes are correctly setup will function outside the realms of our current time and space.
- Key to this blockchain is that every time u find a block u are rewarded with the answer to the universe, which pops out of existence and then a new reality is created in its place ever so slightly different
- difficulty adjustments are hence every block
- block spacing is a little complicated as many different timeline forks can be created at one time and it depends how fast time is for you relative to other timeline forks
- I was unsure if I could code a fixed number of realities... but I did it
so there is a cap of 42 realities.....except now u can all fork the source code and create infinite alternatives. - I have not and will not premine this blockchain in the essence of fairness to all.
Source code is available for viewing here http://www.zoomquilt.org/Windows - https://upload.wikimedia.org/wikipedia/commons/4/4d/Dancing_house_windows.jpg Note with the finite number of realities hard coded it is important we do not get a 51% attack on the chain as this could spell disaster for all of us and by my calculations the blockchain would be completed at 15:00 27th May 2013
|
|
|
|
|
Ok all these carbon copies of the bitcoin, litecoin or PPCoin codebase got me thinking as they really offer very little... but why doesn't someone experiment with the QT and add some kind of trade / exchange to the wallet client? surely that would set the altcoin apart from the rest? and make it an interesting development. Like the RUcoin has a chat in it (apparently... i not got this client but will look into)
Just a thought... so discuss!!
FuzzyBear
|
|
|
|
THIS LISTING IS CLOSED DO NOT TRADE OR BUY This is the official thread for discussing the ASCMDVCPT. Please feel free to post any questions or concerns you may have in here and i'll do my best to answer as quickly as possible.
ASCMDVCPT - ASICMiner Devcoin Pass Through
https://cryptostocks.com/securities/39
Asic Miner DVC Passthrough DVC = Devcoin BTC = Bitcoin This offering is for units of a partnership to hold shares of Asic Miner. Each unit will represent 1/1000th of an underlying share. This is in effect a Asic Miner Passthrough, but operating with DVC as the currency. These shares may be held directly or a BTC based passthrough. We will sell our units in DVC. Asic Miner pays out in BTC these BTC will be converted to DVC and in turn passed through to our stakeholders. An administrative fee of X% may be charged for this service. These payments will typically be made within a day or two of payment from the underlying assets, to allow us to space out the buy of DVC a bit to get a bit better exchange rates. These payments will be done within two weeks of receipt of the underlying payment. There are no voting rights as they are pass through shares. More shares may be issued if we acquire more underlying backing shares. FAQWhen would payouts begin?Payouts start on first receiving of ASICMiner shares dividend payout Who owns the ASICMiner Shares?
User twobits holds the ASICMiner shares and is responsible for their safety and aquiring more if needs be. I FuzzyBear will be answering any questions and passing on info from Twobits relating to the listing [/s]
|
|
|
|
FuzzyBear Devcoin - 2 - ComputersHello all, Its been nearly a year since I found out about bitcoin and what a year it has been! I have been slowly gathering more and more computer part realising that everyone is going to need some replacement parts with all this 24/7 mining people seem to have jumped on. There are a LOT of new addition coins out there in the crypto-currency world, and personally I would like to promote devcoins myself after having being welcomed into the community with such open arms and seeing how it is promoting so many good aspects of life like open source programming, paying artists and writers for their work, funding research and development projects. I'd like to get involved more...So I am proud to announce the launch of my first sale of computer accessories for devcoin. Not sure where to get devcoins from ? run over to https://vircurex.com/welcome/index?referral_id=45-2213 and buy some from the exchange, or you can mine them, or you can earn them... see link at bottom Current exchange rate = 1DVC =  1DVC =  1BTC =  1BTC =  All prices include shipping as well  as I want this to work and hopefully people anywhere in the world can get involved. Items for sale
Ethernet cables10m Ethernet cables - 50,000DVC at current exchange rate =  5m Ethernet cables - 40,000DVC at current exchange rate =  2m Ethernet cables - 25,000DVC at current exchange rate =  1m Ethernet cables - 15,000DVC at current exchange rate =  All ethernet cables have protective coverings of the clip that usually breaks off like shown below  Lots of other cable lengths and some without the protective covers I'll be updating here with more stock items Hard Drives40GB Seagate Barracuda 7200.7 ST340014A 3.5" IDE Hard Disk Drive - 100,000DVC at current exchange rate =  40GB Western Digital Caviar WD400BD - 120,000DVC at current exchange rate =  Again many more HardDrives to come... RAMVarious RAM 256MB - ramaxel 256mb pc2-4200u-444 - 10,000DVC at current exchange rate =  512MB - - 25,000DVC at current exchange rate =  Again more RAM to come so watch this thread!! GPU'sRadeon 6350 - 210,000DVC at current exchange rate = ScannersComing soon Epson and canon makes... Feel free to PM me for offers or post on here. Don't forget if you want to earn devcoins you can do this by writing articles on devtome here http://www.devtome.com/doku.php?id=earn_devcoins_by_writing
|
|
|
|
Hello all, I have been round these forums for about a year now and have had many months happily lurking in the Alt-currencies forum board, but I recently got a friend into bitcoins and he was keen to see just what the community is like. I told him not to expect much in the terms of Bitcoins from users on here as I have received a total of 0.25000003 BTC in my year of being here... :/ suppose it better than nothing  from my tips/donations address here .... https://blockchain.info/address/1FvMYwtkrQakoL8Zq1GjfKqTkm2a7TKt6NBut I hope to be proved wrong!! I am sending him 0.1btc tonight when I go home as only have 1btc to my name :/ most tied up in altcoins that i have been trying to mine for a little while now, but don't want to scare him off with talk of all the million altcoins out there atm, so if you are feeling generous then please donate to him on this address here 1DMWbkWh2jtV6yhnbuLyvkCkwZrtt3knvK any amount, however small will start to convince him (and myself) that all the users of bitcoin are NOT just hoarders looking out for number 1... I personally have donated thousands of PPCoins, and Terracoins over the year to many people as a way of saying thank you for various projects, and to new users, just wanted to see what the bitcoin community response was  any beef with this post?? well let me know  don't want to upset others, or let people feel that I am a bad person (honest I am not  ) but how can some of the stigmas be overcome? how can I improve my posting and myself?
|
|
|
|
Chain Block Chain Size Cycle Next Blocks Left Measured Current Difficulty Est Next Difficulty Est % Change Retarget Distance btc 229835 0M 2016 231840 2005 0.55% 7673000.00 14704355.40 91.64% 7d 6hr 22m 27s nmc 104013 0M 2016 104832 819 59.38% 1122924.67 1399677.71 24.65% 4d 13hr 30m 37s ltc 328395 0M 2016 328608 213 89.43% 153.17 205.36 34.07% 0d 6hr 37m 10s I know it only just changed.... but lol at the next difficulty for BTC  Edit: added column headers Source: http://allchains.info
|
|
|
|
Ok I thought I'd try a little experiment... Want to play Portal 2 on steam with a friend of mine.... and I want to promote altcurrencies  So I would like to see if anyone willing to sell me the game for either: Ripples PPcoins Terracoins Litecoins Namecoins Devcoins or Freicoins I'll leave the offers open to all suggestions, name ur coin and how many you would want for the steam game?
|
|
|
|
Ok I think I'm there  Here is a link to the Github Repo: https://github.com/FuzzyBearBTC/terracoin-wp-e-commerceYou will need: 1) WordPress installed on your server. 2) wp E-Commerce plugin installed in wordpress 3) the terracoin.php file needs to be dropped in the 'wordpress/wp-content/plugins/wpsc-merchants' directory 4) an instance of terracoind running on the server 5) follow the setup instructions in the readme file from github for store settings to select terracoin as payment I have set up a test wordpress site with the hosting company I use and am waiting to see if they can run an instance of terracoind for me on their server, but i have checked all the functionality and from the merchants side you can specify the port your terracoind is running on , so should be able to connect to the client and that is all that is needed to generate the addresses for payout from the shopping cart. Check out my example site so far http://trc.ltcmusic.com/If anyone wants to test if they are running a server with terracoind on it then please do and the first to post a link here to show it working will receive 200TRC 
|
|
|
|
|
Hey all,
Was just doing a check up on all my wallets and noticed the Freicoin wallet is constantly saying the wallet is out of sync??
yet it has the last block being detected as being 15691 and was in the last hour.... is this just because the blocks are being generated much slower? or is there a problem with the network?
I even downloaded freicoin on a new comp and got to the same point and same situation...
anyone shed any light on this?
|
|
|
|
*****UPDATE 28th Jan 2013********************************************************************************************** ----> A bug has been found in that you can not send coins from the TRC Armory.... Please wait for an update and this message to be removed before using TRC-Armory ************************************************************************************************************************** I am very proud to announce the code for the Terracoin Armory Client is uploaded into github and is ready for testing   The source code is now available at GitHub: https://github.com/FuzzyBearBTC/TRC-ArmoryThe build process for Linux1) sudo apt-get install git-core build-essential pyqt4-dev-tools swig libqtcore4 libqt4-dev python-qt4 python-dev python-twisted 2) git clone https://github.com/FuzzyBearBTC/TRC-Armory.git3) cd ./TRC-Armory 4) make 5) python ArmoryQt.py Windows build....Coming soon Some extra info:Unaware of the Armory project? Check out http://bitcoinarmory.com/ for the original BTC Armory Client information, TRC Armory has all the same functionality but for Terracoins Also TRC-Armory has been linked up with the cryptocurrencyexplorer.com Terracoin Blockchain so you can verify your transactions and wallets etc
|
|
|
|
Ok so its been a long few weeks and I not been able to solely dedicate my time to the Terracoin Armory project, but last few days... lots of coffee, not much sleep.... and considerable help from the original Armory developer and I'm getting somewhere with this project  So one of the things I HAD to do (as was about time and makes working with the Armory code soooo much easier) was get a LINUX dev environment setup. Done that and running Ubuntu 12.4 installed on a separate computer now  made my basic changes to the armory code and looks like it builds and works (need to make more detailed changes for views to not say Bitcoin but Terracoin) but want to test and send some TRC to an account on armory but need to have TRC installed on the linux box.... and my limited Linux experience is failing me here so if anyone can help me I will be eternally grateful... Basically I just need help installing the TRC client on Ubuntu... I was able to just download the TRC win32 binaries b4 and install on windows with a double click of the Terracoin-QT file... obviously this does not work in Ubuntu.. so I take it I need the original source files and build myself using the Terminal.... I'm looking into this now but if anyone has done this before and can point me in the right direction or let me know if i'm barking up a wrong tree and there is a simpler method then pls let me know... Many thanks Fuzzy Bear
|
|
|
|
|