Bitcoin Forum
May 04, 2024, 10:08:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 »
421  Bitcoin / Mycelium / Re: Mycelium Bitcoin Wallet on: April 27, 2016, 12:59:06 AM
If they can integrate Monero it will be heaven.
422  Bitcoin / Project Development / Re: Manufacturing 16nm ASIC Chips (Bitcoin) on: April 26, 2016, 09:35:14 PM
Meh.
423  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 26, 2016, 08:19:50 PM
.
.
.
TMI
424  Economy / Trading Discussion / Re: Uphold and BTC - Some questions from a newbie on: April 24, 2016, 02:27:23 PM
About Uphold's reserves
Go to the home page and click on "transparency"
https://uphold.com/en/transparency
Have a look at the list of assets and liabilities.
I haven't added it all up to see if they're in the black.  Maybe somebody here wants to do that.
But here's what makes me wonder
At the very bottom of the page, they have an entry for a hundred six million "voxels" that they claim are worth about sixty-nine cents apiece.  I didn't find VOX listed on Poloniex.  It's not a cryptocoin as we understand it.  It's a gaming asset of some sort, maybe some kind of scrip.  But if it's to be worth $.693, then either it must have legitimate assets to back it, or its value must be established in a liquid public market.  The latter is unlikely.  So where is the seventy-three million dollars?
https://uphold.com/en/blog/posts/uphold/announcing-the-voxel-vox-cryptocurrency-powered-by-uphold
https://www.voxelus.com/marketplace

Does somebody want to dig into this?  I'm lazy.

Maybe the OP can open an account on Poloniex and trade usdt/xbt (tether) as a proxy for the dollar.
425  Economy / Speculation / Re: rpietila Wall Observer - the Quality TA Thread ;) on: April 24, 2016, 08:17:55 AM
Hodl.
426  Economy / Trading Discussion / Re: Uphold and BTC - Some questions from a newbie on: April 23, 2016, 02:29:58 PM
There is really no website that allows to exchange bitcoins to another currency without billing you. The fees differs but you still have to pay something for the service rendered.
That's true, every broker charges for the service it provides, when the broker is the counterparty to the trade.
However, there are some exchanges where you  can make certain kinds of trades without paying a fee.
For example, the Coinbase exchange has a maker/taker fee schedule with zero fees for the "maker," or liquidity provider.  That means in effect that you don't have to pay a fee on a limit order.
Limit order:  you are providing or "making" liquidity in the market
Market order:  you are removing or "taking" liquidity from the market
Markets need liquidity, so exchanges encourage it by charging lower fees for limit orders.  In some cases, the fee is zero.  The fee for taker orders is higher.
I take advantage of the zero maker fees on Coinbase by placing limit orders when I want to buy XBT.  I've heard that there is another U.S. exchange called Gemini that also has zero maker fees.
427  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Support on: April 22, 2016, 04:52:11 PM
I am trying to install the mymonero-simplewallet mnemonic conversion utility from github on my computer, which runs galliumos.
https://github.com/moneroexamples/mymonero-simplewallet

following the instructions
Code:
# download the source code
git clone https://github.com/moneroexamples/mymonero-simplewallet.git
# enter the downloaded sourced code folder
cd mymonero-simplewallet
# create the makefile
cmake .
# compile
make

I got git: command not found, so I installed git.  That was easy enough, apt-get install git did the trick.
I downloaded the source code, and when I entered cmake
I got the same error cmake: command not found

but I am not having good luck with cmake:
Code:
$ sudo apt-get install cmake
Reading package lists... Done
Building dependency tree      
Reading state information... Done
The following extra packages will be installed:
  cmake-data gcc
Suggested packages:
  codeblocks eclipse ninja-build gcc-multilib autoconf automake libtool flex
  bison gdb gcc-doc
The following NEW packages will be installed:
  cmake cmake-data gcc
0 upgraded, 3 newly installed, 0 to remove and 32 not upgraded.
Need to get 3,313 kB of archives.
After this operation, 16.9 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu/ vivid/main cmake-data all 3.0.2-1ubuntu2 [923 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ vivid/main cmake amd64 3.0.2-1ubuntu2 [2,385 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu/ vivid/main gcc amd64 4:4.9.2-2ubuntu2 [5,232 B]
Fetched 3,313 kB in 4s (738 kB/s)
Selecting previously unselected package cmake-data.
(Reading database ... 155678 files and directories currently installed.)
Preparing to unpack .../cmake-data_3.0.2-1ubuntu2_all.deb ...
Unpacking cmake-data (3.0.2-1ubuntu2) ...
Selecting previously unselected package cmake.
Preparing to unpack .../cmake_3.0.2-1ubuntu2_amd64.deb ...
Unpacking cmake (3.0.2-1ubuntu2) ...
Selecting previously unselected package gcc.
Preparing to unpack .../gcc_4%3a4.9.2-2ubuntu2_amd64.deb ...
Unpacking gcc (4:4.9.2-2ubuntu2) ...
Processing triggers for man-db (2.7.0.2-5) ...
Setting up cmake-data (3.0.2-1ubuntu2) ...
Setting up cmake (3.0.2-1ubuntu2) ...
Setting up gcc (4:4.9.2-2ubuntu2) ...
kell@computer:~/mymonero-simplewallet$ cmake .
-- The C compiler identification is GNU 4.9.2
-- The CXX compiler identification is unknown
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
CMake Error at CMakeLists.txt:2 (project):
  No CMAKE_CXX_COMPILER could be found.

  Tell CMake where to find the compiler by setting either the environment
  variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
  to the compiler, or to the compiler name if it is in the PATH.


-- Configuring incomplete, errors occurred!
See also "/home/kell/mymonero-simplewallet/CMakeFiles/CMakeOutput.log".
See also "/home/kell/mymonero-simplewallet/CMakeFiles/CMakeError.log".

I was asking for help on the galliumos irc channel.  Someone suggested that I should use the instructions in this link
https://github.com/moneroexamples/compile-monero-09-on-ubuntu
to help me get the missing dependencies
428  Economy / Trading Discussion / Re: Uphold and BTC - Some questions from a newbie on: April 22, 2016, 10:20:48 AM

Are you still using Uphold? I would be interested to hear an update  Smiley
No, I stopped using them. 
If you are thinking about using Uphold, I suggest researching what kind of asset they use to back deposits.
429  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 17, 2016, 07:16:45 PM
I agree one need to take the responsibility to their purchases.

That being said, personally I think it is better to buy coins at different times, the price differs but the average price is relatively good then as opposed to the strategy to invest a big chunk of btc at one shot and then pray your timing was good.
Experience plays a part, too.  If you've been in the market for a few years you can see a bottom.  I've been playing the market for three years.  The summer bottom in bitcoin was apparent.  I bought, and though I made some subsequent trades that were maybe a little ill advised, I'm still well ahead.  Similar experience with Monero.  I've learned that about myself:  fairly good at seeing buying opportunities, not so good at knowing what to do thereafter.  

Moral of the story:  it's not just the market you have to learn about; you must also know yourself.

If you are inexperienced, dollar cost averaging is kind of a default strategy.
430  Economy / Speculation / Re: BETI: Bitcoin Exponential Trend Index and technical analysis on: April 16, 2016, 11:11:43 PM
Are you going to try fitting a logistic?
431  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 16, 2016, 07:31:32 PM
I've never quite understood what's in it for the market makers who provide liquidity. How profitable is it to provide liquidity? How risky is it? Does it entail spending time and energy staring at tickers and charts, or just running a bot? Can such bots be exploited by other market makers? Huh
If you use limit orders, you are a liquidity provider.  And if you can maintain your own liquidity (don't get in a bind) while doing so, you will most likely make money.  It's pretty simple in concept, not necessarily easy.
432  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 16, 2016, 12:47:00 AM
No one listens to me  even though I am nearly always correct on the markets. How many examples would you need.
Would you mind making each future market prediction in a binary form (which can be objectively judged as true or false by a specified date) along with a specific numeric probability estimate (which you can subsequently update any time)?
Sheesh, don't confuse the poor fellow! Roll Eyes
433  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 15, 2016, 11:02:23 PM
When xmr hit dollar parity, it stuck there and has moved only pennies up and down.
Vat iss the meanink of diss!?
434  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Support on: April 15, 2016, 06:21:19 PM
Presumably monero will run properly on the new machine.  It's a chromebook c720p running galliumos, which is a linux distro designed specifically for chromebooks.
The chromebook is downloading the blockchain now.  But the old machine has the blockchain already on it.  Maybe if somebody can link to a post with instructions for exporting the blockchain, I'll do that.
435  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Support on: April 14, 2016, 04:01:09 PM
Can you run monero on a linux machine with a 32 gb ssd?
I have monero installed on a 64 gb machine and it takes up more than 32 gb.  So I'm guessing the answer is no.
I bought a new notebook and it turns out the thing only has 32 gb.
436  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 14, 2016, 03:57:05 PM
With this dead cat bounce, where do we end up, 100k?
Think dollars.
The coin has been hovering around one dollar for quite some time now.
It's the new normal.
437  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Support on: April 11, 2016, 04:20:58 PM
ARM v7 exists for 9.3
https://github.com/monero-project/bitmonero/releases/tag/v0.9.3
9.4 for ARM v7 isn't out, yet
https://github.com/monero-project/bitmonero/releases/tag/v0.9.4
when does 9.4 become available for ARM v7?
438  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 10, 2016, 08:42:31 PM
Longer term, the probability of negative scenarios is larger than that of the positive
I disagree.
Monero has a 74% chance of succeeding.  You can hang your Kelly hat on that!
439  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 10, 2016, 08:39:02 PM

I see you here whenever Monero takes a dump, are you a big P&D whale here?

I think this coin is being dumped by the same people who develop it like FluffyPony & Othe after all Othe gets 21800 Monero alone from Fluffypony's gambling site as the biggest winner there. This is what you get when your own developers play the pump & dump like twice a year doubling their BTC stack on pure speculation hype threads like this one.

You're right! And the really amazing part is this time the whale manipulators also went to the trouble of crashing ETH, maid, doge, dash, FTC, bts, sys, rads, etc.

Its a genius move on the part of the manipulators as it makes the crash look so much more like a legitimate correction.

It must be really really expensive to make a little bit of money!
My Dad always said, "It takes money to make money"!
440  Bitcoin / Mycelium / Re: Mycelium Bitcoin Wallet on: April 10, 2016, 08:29:26 PM
i have just downloaded Mycelium as i see it as a good option for paying for items on Open Bazaar.

BUT as the RECEIVE address changes with one use, can i use this wallet to accept payments? Or will i have to change the address after it is used once?

Or will i be able to accept many payment using the one address.

Also in my address book, it shows nothing.
Mycelium uses each address once, by default, but it remembers every address it generates.  If someone sends funds to one of the used addresses, Mycelium will find them; nothing gets lost.
Occasionally you might have to refresh the wallet.  That happens sometimes even if you are not receiving at old addresses.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!