Bitcoin Forum
May 24, 2024, 06:07:35 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 45 46 »
461  Bitcoin / Bitcoin Discussion / Re: Long-term sustainability of Bitcoin on: July 22, 2014, 04:03:37 PM
I agree that there are some negative issues on POW, but it can be fixed/changed/whatever.

How would you change it? I saw a proposal for a non-outsourceable PoW "challenge", but I'm not sure about its implementability as part of Bitcoin with a hardfork.
462  Economy / Economics / Re: Please stop with mBTC, microBTC, ...! on: July 22, 2014, 03:42:56 PM
In my opinion, ALL engineering notation prefixes should be fair game. I should be able to talk about milliBTC, or microBTC.
BTC and mBTC are used for purchases, while μBTC can be used to discuss fees.


nanoBTC is not of much use. When talking about the network as a whole, it could be worthwhile to discuss kilo- or mega-BTC.

Some altcoin could have a use for kiloFOO, or even megaFOO for transactions themselves.
463  Economy / Lending / Re: Loan me 0.01 and i will back under 7 days on: July 22, 2014, 02:40:46 PM
NOBODY is chatting you over facebook. If you want a loan, you deal with it HERE, either via PM or via the forum post.

Also, how can we be sure that you won't scam us? Your promising that you won't isn't enough.
464  Other / Beginners & Help / Re: Someone sent me 0.0136 free? on: July 22, 2014, 02:36:43 PM
Did you happen to use a brainwallet or import some "sample" private key from some website?
465  Economy / Gambling / Re: New safe hybrid cloud wallet on: July 22, 2014, 02:35:44 PM
Yes, but why does the passphrase need to be sent over the network? Why not just send addresses, and then sign transactions locally on the browser in Javascript? There is absolutely no reason for information that directly calculates private keys to be sent over a network. Either calculate everything locally and send only non-secret data such as signed transactions, inbound transaction info, public keys, balances, etc, OR store private data on the server and have the client authorize itself to ACCESS that data.

At this point, saying that you are not technical is not an excuse. I'd love to hear from your developers as to why this behavior is as it is.
466  Economy / Gambling / Re: New safe hybrid cloud wallet on: July 22, 2014, 01:26:05 PM
You have not addressed the issue of sending the passphrase over an internet connection when you claim to take the benefits of online and offline wallets.
467  Bitcoin / Project Development / Re: Need programmers for a new Innovative Coin on: July 22, 2014, 12:52:19 PM
Is this a fork of bitcoind/bitcoin-qt? Or an implementation from scratch?
468  Economy / Gambling / Re: New safe hybrid cloud wallet on: July 22, 2014, 12:48:02 PM
Thanks to our technology, we are a combination of online and offline wallet.

No, this provides no security of an offline wallet. You could spend our coins as you wish, if you wanted to, as you know the passphrase. I logged in with my passphrase being "passphrase" and saw the following:



Suspicious, to say the least.

Quote
Btc-Banker is an online deterministic wallet. Your password is turned into a number which is then turned into Bitcoin Addresses.
and is not pyramide scheme because only you have access to your money (is not collected in any central bitcoin account)
Where does 3-10% daily interest come from, then?
469  Economy / Gambling / Re: New safe hybrid cloud wallet on: July 22, 2014, 12:07:11 PM
This seems a bit too good to be true. I'm interested in seeing observably existent technical measures that safeguard coins, as well as some sort of proof that this is not a pyramid scheme.
470  Other / Off-topic / Re: 69.6969 BTC Loan on: July 21, 2014, 10:48:19 PM
Would you prefer 333.33 testnet coins, or a slip of paper with a random QR code that claims to have 333.33 BTC on mainnet?
471  Economy / Reputation / Re: My Rep Thread! <Evershawn> on: July 21, 2014, 07:54:26 PM
Reasonable communication after misunderstanding due to crowdfund in lending. Negative rating retracted.
472  Other / Beginners & Help / Re: Someone sent me 0.0136 free? on: July 21, 2014, 07:50:55 PM
Im not sure who but someone sent me 0.0136btc over the weekend, im not complaining

I accidentally sent you the coins. Please PM me for an address to return them. Thanks. Tongue

Can't tell if you're serious.
473  Other / Off-topic / Re: 69.6969 BTC Loan on: July 21, 2014, 07:39:50 PM
What would be an example of a collateral?

An altcoin like Litecoin and Dogecoin that the lender considers stable enough to offset risk.

Not all users agree on how collateral should be handled; due to the pseudanonymous + no-chargeback nature of bitcoin which has never been seen, nobody knows the optimal parameters yet. Some believe it should cover less, such as 70%, while others may forgo it.
474  Economy / Lending / Re: need loan 0.59btc on: July 21, 2014, 05:19:35 PM
There you go i just sent you 0.59BTC waiting for repayment.

EDIT The transaction has one confirmation now.

Instead of posting screenshots, a txid would allow independent verification and requires less bandwidth for readers.
475  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Node problem on: July 21, 2014, 11:34:47 AM
The same error? You need to replace /foo/bar/node.py with the correct path in ALL of my replies on this topic. I was using that as an example path.
476  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Node problem on: July 21, 2014, 11:25:47 AM
As I said in my previous post, you will need to update that path to reflect the actual location of the script.
477  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Node problem on: July 21, 2014, 11:15:10 AM
No more than 5, assuming you did it all correctly, and running
Code:
python /foo/bar/node.py
directly updates the page correctly as well.
478  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Node problem on: July 21, 2014, 10:34:53 AM
OK, so do you have the script saved somewhere and made executable? Let's imagine that it's located at /foo/bar/node.py. Obviously yours will be different.

First we need to allow your script to write to the status file without needing to be run as root. You will need to run:

Code:
chmod 0777 /var/www/html/index.html

This will allow your script to write to index.html to actually update it.

I assume that you are familiar a terminal-based editor (vim or nano). Run

Code:
crontab -e

and add the following line to the file that you see:

Code:
*/5 * * * * python /foo/bar/node.py

Save and quit. Your crontab will have been applied and the script will run every 5 minutes, assuming the system is booted up (not necessarily logged in as you).

If this seems a bit convoluted to you, I can remotely set this up for BTC0.015.
479  Economy / Lending / Re: [Crowd Fund] Looking for investors, Awesome Bitcoin game - Monthly Distribution on: July 21, 2014, 01:00:19 AM
Isn't your thread title also a bit attention-seeking?
480  Economy / Lending / Re: [Crowd Fund] Looking for investors, Awesome Bitcoin game - Monthly Distribution on: July 21, 2014, 12:54:02 AM
So far everyone agrees that your feedback and wrong, undeserved and abusive.

You reading the same thread I am?  I don't see that at all.

Anyway, thank you for showing everyone how you would react should things not go the way you plan in this business.  You are an immature hothead who has probably never run a company in his life.  You can delete these messages now.   Wink

I made a thread on you directly in the general forum, regarding your abuse of the trust system. This is what I'm referring to. Perhaps you should go read it.

I did.  You claim EVERYONE AGREES THAT MY FEEDBACK IS WRONG.  So I'll ask again, are you reading the thread yourself?   Roll Eyes

Yep, the people that have replied there are saying it's wrong and I was wrong for retaliating and leaving you multiple negatives. So I took their advice, removed them and just left one simple rating that simply says it's being left because you're abusing the Trust system and have left me a negative trust rating inappropriately. That is 100% accurate and true and I don't think I need to remove that as long as you continue to leave me the inappropriate negative. So I'll be seeking the assistance of the community based on that. I'm sure some people will help me once they read through what you've been doing.


Actually, no, I would agree that your actions so far only reflect badly on you. This crowdfund, your "professional language", and retaliatory trust. Instead of removing the improper trust feedback you sent, I would have just not added it in the first place.

You are a full member, I would expect that you know the rules here. Unfortunately, as you've shown, you either don't, or you disregard them.
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 45 46 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!