Bitcoin Forum
May 29, 2024, 09:57:20 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 »
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: IOTA - Unmoderated thread on: February 06, 2016, 05:06:39 PM
Hey CfB, regarding IOTA, how do you stop the attack where I have 10 different accounts, all of which are vouching for eachother's fraudulent transactions and creating fake chains?  In fact you could have a few different people who join a 'coalition' and agree to vouch for eachother's fradulent transactions using their multiple accounts. Maybe I'm missing something but IOTA seems to be wide open to Sybil attack.
22  Bitcoin / Development & Technical Discussion / Re: How to counter Ram Scapers? on: December 24, 2015, 07:39:53 PM
Bitcoin core only briefly stores the data in RAM. It decrypts it for a short time, long enough to use the data, but then the data is removed after a little bit so it reduces the effectiveness of RAM spying programs.

Also, aren't programs only able to access RAM allocated to it unless it somehow has special permissions?

You may be right, and it would make sense, was just poking around reading about Ram Scrapers effect on Point of Sale systems  and wondering how big of a deal they are. Only needs to be briefly stored for it to be an issue for RAM scrapers. Might not be possible though. Seems most modern OSs have some form of memory protection to prevent this.

Yes, offline could do it but that's quite a hassle for consumers.
23  Bitcoin / Development & Technical Discussion / How to counter Ram Scapers? on: December 24, 2015, 05:38:23 PM
You can store the wallet.dat as encrypted as you want on the harddrive, but if you want to use it, you eventually have to decrypt it and store the private key in RAM. How can this be prevented? Is it possible to prevent other programs from spying on your RAM?
24  Alternate cryptocurrencies / Altcoin Discussion / Re: What would you consider to be the ultimate digital currency? on: November 18, 2015, 03:43:53 PM
What do you mean quantum resistant algos are too big?  Have you checked out NTRU? Thoughts?  I figure if starting from scratch might as well use it.

Anyway, updated top post.  Little thing, I think that we as a community should stop saying anonymity, and start saying privacy.  Same idea, different connotation.

And.. so far I can do everything on the top list with the new cryptocurrency we're building Wink

We've figured out how to do a true Proof of Person.. call me crazy but it's been reviewed by a few people and I'm convinced we can do it.

Regarding block reward, I'm thinking second years block reward is bigger than the first and I agree with a tail reward.  It'll basically be 2% inflation for the currency paid to miners.. that is ideal inflation and it is being paid equally to all, so everyone wins.

The only 'catch' is that these Proofs of Persons require about 200 MB on your hard drive.  And privacy will take a little while to implement, we'll get there though.
25  Alternate cryptocurrencies / Altcoin Discussion / What would you consider to be the ultimate digital currency? on: November 18, 2015, 03:14:38 PM
I'm thinking:
Anyone who wants to can mine with equal mining power, with no monetary investment what so ever. Semi-private accounts because after all you are doing a Proof of Person, if you can prove to the network you are a person, then there is a link to real world.
This should lead to maximum decentralization and therefore trustlessness
Private accounts possible
Fast transaction confirmations, under about a second.
Extreme blockchain trimming, blockchain never exceeds 10 MB on your hard drive, and only process local transactions, meaning you never process more than a few transactions a second, also leading to decreased bandwidth.
Quantum Proof
Some form of chargebacks that are trustless, meaning Mt.Gox type situations can be reversed.
No Nothing at Stake problem

Sound about right? Disagree with any of it? What would you add to the list?
26  Other / Off-topic / Re: Should you open source all code? Should Google opensourced PageRank? on: October 30, 2015, 03:20:11 AM
Sort of could be XY problem..  let's put it this way, I have a method for basically 'mining' in a network, that method relies on something that I would prefer was closed source.  Is it an issue to close source a part of your mining algorithm?

I wouldn't but let's face, I could mine from my own account and this closed source part says make that account 2x as likely to mine or something.  I guess the question I'm trying to ask is: does a decentralized trustless algorithm have to be open source to remain trustless?
27  Other / Off-topic / Should you open source all code? Should Google opensourced PageRank? on: October 29, 2015, 07:13:50 PM
In a decentralized project, is there ever a need to close source parts of the code?

Imagine if you had a decentralized project with a open sourced algorithm for Google's search result. How would you keep people from studying the algorithm to cheat it? There is a reason they keep it private. Is it an issue in the open source community if you close source only that part in a dll and feed info in, get info out and the rest of the system works with it?

I'm working on something sort of similar in idea.
28  Economy / Services / Re: What is most best way to agree on something if all actors are known? on: October 27, 2015, 03:30:03 AM
Classic one is Paxos though Raft is easier to understand and proven to be as correct.


Proofs of correctness for distributed algorithms depend critically on the assumptions made about the behavior of the components (nodes and network communications).  If one has mastered the subject matter in sufficient detail to have any hope of building successful implementations, then one will have little trouble following Paxos.  If one hasn't reached this level of mastery,  my suggestion is to do some serious study before charging off and designing any systems that rely on distributed protocols.  (And before that, one should understand how to prove correctness of programs.) It is also advisable to be familiar with the various "impossibility" results for distributed systems, lest one try to invent something that is impossible.

The issues involved are far more subtle than may appear at first glance.



Thank you everyone!

Raft seems reasonably easy and apparently is correct.  Is there a reason not to use that?  Seems to me like it'd be relatively easy to implement.  Because yes, doing research would be great but need to be nimble since it's a startup app.

How resistant is Raft to 51% attack?  I guess a 51% attacker would just try to block or vote for each other as leader?  Anyone know performance?   Seems to me like bandwidth might be an issue if people are agreeing via the internet... which is one reason something blockchain like might be better and I do have a lot of blockchain experience by this point.

Edit: Actually I may want to tweak this a little bit.  If anyone who is an expert in this field would like to discuss my ideas an tweaks that work a little bit better given our known information, I would be willing to pay something, either equity or cash.
29  Economy / Services / What is most best way to agree on something if all actors are known? on: October 27, 2015, 12:30:10 AM
Let's say that I and my friends want to basically have a mini-version of Bitcoin.  We don't have to rely on Proof of Work because we know who the actors are and we can basically say that they all have equal mining power that is linked to their known public keys (aka wallet addresses).

Is the best way to come to agreement still to build a blockchain?  Assume we aren't that great of friends and can't just trust each other. Or are there better ways for coming to agreement when the miners are known?

Better can be faster or more secure or something else I'm not thinking of.

Note: I'm applying it to a different type of problem but occurs to me that Bitcoiners probably know their techy stuff and it might lead to an interesting conversation.

Thanks!
30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: October 24, 2015, 10:19:16 PM
So, you basically do the same thing as Stellar, which has excellent documentation and an actual working product... but Stellar's market value is less than $10 million, yours is not yet released and you are selling it as if it has a market cap of $1 billion?  100 times higher?  Really?  Am I missing something?


Yes. You are missing a lot of things, mainly common sense by assuming the market valuation of a project (Stellar) that used by nobody is more relevant than the market valuation of an other project (Skycoin) that is also used by nobody.

Terms of whether Skycoin does the same thing as Stellar or not, no. Skycoin does not do the same thing as Stellar. Skycoin has a unique vision mainly with regards to the mesh network and of course all other aspects of digital currency. There is a reason why many follow this project and why virtually is nobody interested in Stellar in the real world despite the large team of Stellar.

Summa summarum, be happy with your $ 10 million venture (even if that value has same meaning as the Monopoly play money) and no shilling of Stellar is required in the thread of other digital currencies.

How does it's mesh network work?  What is the difference between this and Stellar?

Stellar also achieves the goal that if the majority of your followers are honest, then you get the right result, right?

Anyway I really am interested in learning more about this.

Though regardless this is still definitely too expensive to my taste... I want to be able to make an upside if people start using it, not hope to break even.
31  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SKY] Skycoin Launch Announcement on: October 23, 2015, 02:42:39 AM
So, you basically do the same thing as Stellar, which has excellent documentation and an actual working product... but Stellar's market value is less than $10 million, yours is not yet released and you are selling it as if it has a market cap of $1 billion?  100 times higher?  Really?  Am I missing something?

Can I also short it for that price?
32  Economy / Trading Discussion / Looking at History of Bitcoin Trades Buy sell volumes on: October 09, 2015, 10:34:41 PM
Hello,

I'm trying to do some analysis of Bitcoin's historical trading.  I'm wondering if you would know if it's possible to get a long list of volume per day and buy sell orders for Bitcoin.  Specifically it's important to know whether something was a buy or a sell order.  And I need to know volume in terms of USD, not BTC.

Thank you!
33  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: October 07, 2015, 01:09:44 PM
Sounds interesting.  where's the source, you got a github?
Not yet, I'll probably throw one up soon though.. trying to decide if we should just put it all out there before we are ready to launch.

Anyway, send me a private message with email address, and maybe a little bit about your background? I'd be willing to share my part of the source so far though.

We have two Rust programmers including me and two web guys.
34  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: October 07, 2015, 01:17:58 AM
not POW or POS or POC. It is a blockchain though.

Just remember, Nothing is Cheaper than Proof of Work, according to

http://www.truthcoin.info/blog/pow-cheapest/

Honestly that article is a little hard to read in my opinion, though I think I get the idea. Think this same idea might at least partially get around it too though... we'll see.

We've got 4 coders on board at this point anyone else interested? Maybe another guy who would be interested in learning Rust? Happy to teach the cryptocurrency side of things.

Or a lawyer, so we can ask a couple trademark like questions and maybe a couple other things?

Or a marketer? Though we mostly have that covered.

Basically anyone who thinks they have skills, let me know and maybe we can put you to work.
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 on: October 05, 2015, 08:54:47 PM
Howdy folks, how's life these days?

I'm trying to buy cheapish 5TB to 8TB hard drives, any one have suggestions for finding them?  Got me thinking about Burst.. it's been a while. Smiley
36  Bitcoin / Development & Technical Discussion / How to sync clocks to Bitcoin's timestamp? on: October 04, 2015, 12:59:25 AM
I had an interesting thought, given that every block in Bitcoin has a timestamp attached to it, is there a way to use the timestamps plus the time that you saw an average block in order to sync your clock to the time on the network?  What if someone fakes the timestamp and fudges a little bit, can you at least stay within say 15 seconds assuming the majority is honest and it takes 10 seconds for a block to propagate to 75% of the network?

On a similar note, how do Proof of Stake blockchains agree to time?  After all many of those algorithms involve a time component based on the time since the network saw the last block.. in those cases does the network need to have it's clocks in sync in order to mine together? Or can they work together to agree on a time based on blockchain info?
37  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 30, 2015, 08:54:37 PM
I am in the process of writing a new cryptocurrency, because of the uniqueness of the mining algorithm
not POW or POS or POC. It is a blockchain though.

If it's not PoW then there's no mining.
If it's not PoS then there's no staking.

You may have to pick a new verb...

Indeed.. will have to think about it.
38  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 30, 2015, 06:27:26 PM
I am in the process of writing a new cryptocurrency, because of the uniqueness of the mining algorithm, it needs to be re-written from scratch.

Are you using Hashcash for proof of work (with your own custom hash function) ?

No, more unique.. not POW or POS or POC. It is a blockchain though.
39  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 30, 2015, 12:46:16 AM
Appreciate it 50_cent!

Anyone else?  I've got big plans for this currency.  This currency is going to be the result of almost 2 years of trying to fix all the things I thought were problems with Bitcoin.
40  Alternate cryptocurrencies / Altcoin Discussion / Re: New Cryptocurrency written using 'Rust', looking for another programmer on: September 29, 2015, 06:35:17 PM
The coin I am making is pretty unique and different from any other coin I've seen out there.

Let me talk to you via private message, I suspect we could work something out though, particularly if you guys have any developers or marketers that I could hire, such as you.. mostly paying stock options for now but I could probably pay one developer in cash to help with a few of the smaller features required for the initial release. At that point we can get investors and have enough money to hire others.

Will there be an IPO/ICO  Huh

Potentially.. the coin will mostly be given to people via mining but I may start with some initially sold in that fashion to raise some development funds.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!