Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Count of La Mancha

Pages: [1]
1
General Discussion / What if..
« on: September 27, 2014, 08:08:18 pm »
What if someone decided to invest $30 million dollars to build infrastructure for a clone of BTSX and didn't honor AGS/PTS/X holders?
What if someone built a better wallet, a phone app, and had multiple gateway partners?
What if it isn't technology that mattered but network effect and partners?
What if the technology behind BTSX wins the day but another chain gains the network effect?
What if BTSX could do that first?
What if BTSX could invest $30 million dollars to do these things?
What if BTSX couldn't?
What if the BTSX development team could be 10 x larger? 
What if....



2
General Discussion / Re: Post Your Seed Nodes Here
« on: July 20, 2014, 02:33:28 pm »
The only node I can connect to right now:  78.46.32.25:1776

Console>

network_add_node "78.46.32.25:1776"   


3
General Discussion / Post Your Seed Nodes Here
« on: July 20, 2014, 02:28:23 pm »
If  you are running a node on a public server, please post it here.   

We need to get the nodes spread out among more people than just DAC Sun. 

4
General Discussion / Re: Is the password effectively a brain-wallet ?
« on: July 20, 2014, 02:07:01 pm »
Password performs the same purpose as the password on your bit coin wallet, it encrypts the private keys on your disk.   Private keys are generated from random data by Open SSL and secure.

Your password strength only becomes an issue if someone hacks your computer and wants to brute force your wallet password to get your private keys.   This is very different from a weak brain wallet where anyone can attempt to brute force your keys without even having to have hacked your computer.

6
General Discussion / Re: DACSunlimited - Sunrise!
« on: July 19, 2014, 02:50:54 pm »
Github is my little friend.... https://github.com/dacsunlimited

7
General Discussion / Re: DACSunlimited - Sunrise!
« on: July 19, 2014, 02:30:55 pm »
Can anyone find the github repo for DACSunlimited?

8
General Discussion / Re: DPOS chain based ratings and reputation
« on: May 12, 2014, 12:29:11 am »
For many DACs, it would be beneficial to have a built in ratings system to establish reliable reputation.  I propose that share transfer transactions allow the inclusion of additional transaction fee to purchase storage space in the blockchain exclusively reserved for a review of the receiver's performance by the sender.

Basically in addition to the standard transaction signatures by the sending addresses, an additional signature could be added from a DPOS registered name, attaching the transaction to that pseudonym ID and claiming the right to leave a review transaction signed by the chain registered ID after the business was concluded.

The reviews would have a different standard format specific to the needs of each chain's business model, and would persist in the chain tied to the reviewed ID.

Along with providing an indelible rating system, which increases the value of the platform, this would provide incentive for additional transaction fees, increasing dividends to shareholders.  Service providers would be motivated to provide discounts to those willing to review in order to build their reputations, and reviewers would not want to sacrifice their own reputations by providing fake reviews, or by failing to review after opting for review space in a payment.

I'd like to hear thoughts on both the economic model and the plausibility of implementing this with DPOS.  The biggest issue I see is finding a price for permanent blockchain storage space.

This is a solid idea.   The price per-byte is already determined by selecting a fixed limit on total chain size and adjusting fees to control demand.   

The biggest challenge is lack of privacy.  This is certainly viable for many uses though.



9
General Discussion / Re: Introduction
« on: May 11, 2014, 11:03:46 pm »
75% sure this is Dan. But who is DA?

Sent from my SCH-I535 using Tapatalk

I am The Count of La Mancha, but my friends call me *censored*.




10
Lack of understanding practical economies is so painfully missing. .

Abbe Faria: Define Economics.
Edmond: Economics is a science that deals with the production, distribution, and consumption of commodities.
Abbe Faria: Translation?
Edmond: Code first, money later.

11
“All human wisdom is contained in these two words--"Wait and Hope.”

12
Quote
While I am in agreement with other of your statements, this one just ruined it for me. Are you being serious? Dollar falling in value = increase in prices is true only for commodities or commodity currencies  --- not for equity gains.

Sir... you are clearly wrong.     If the dollar went to 0 in hyperinflation to price of the equities in terms of dollars would go to infinity.   An increase in the supply of money means there is more money to bid up the value of equities. 

You cannot pick and choose commodities, services, equities, etc for the purposes of inflation.  Anything that can be exchanged with dollars has its price affected due to changes in dollar valuation.

13
Obviously,FC is the fundamental library of bitshare toolkit.  i would like to have an in-depth study, but do not know how/where to start, is there any documentation i can refer to? attached below are some of my questions, appreciated if anyone help to clarify.

1) there is some following code under the data object,what is the purpose? how it work?and when such code will be executed?
Code: [Select]
FC_REFLECT(..)
2)there are many multiple thread program like below in bitshare toolkit, i  don't quit understand how it work.

Code: [Select]
my->....complete = fc::async( [=](){ my->process..(); } );
3)Serialization is also frequently used in the toolkit,what data format are the following functions convert to? and where are the data saved after the serialization?any difference of the data format between the following serialization functions

Code: [Select]
fc::raw::pack( ...); 

pub.serialize();

I am reviewing the code for the community and can shed some light on these questions based upon my observations.

Obviously,FC is the fundamental library of bitshare toolkit.  i would like to have an in-depth study, but do not know how/where to start, is there any documentation i can refer to? attached below are some of my questions, appreciated if anyone help to clarify.
1) there is some following code under the data object,what is the purpose? how it work?and when such code will be executed?
Code: [Select]
FC_REFLECT(..)

FC_REFLECT is a macro that expands into a template specialization that calls a method for each member.  It seems to enable the creation of different kinds of serialization techniques.   The two primary uses seems to be for what he calls 'raw' and 'json'.   raw appears to be just a binary representation and json is self explanatory.

Quote
2)there are many multiple thread program like below in bitshare toolkit, i  don't quit understand how it work.

Code: [Select]
my->....complete = fc::async( [=](){ my->process..(); } );

This code is actually cooperative multi-tasking and the fc library provides a scheduler that will manage the execution of multiple fibers in a single thread.  This is a very useful construct because you do not have to worry about context switching at arbitrary points like you do with multi-threading.   On the other hand if a fiber blocks without yielding the other tasks in the same thread will not get executed.     fc::async() dispatches a task to be run on the current thread the next time it yields.


14
General Discussion / Re: Introduction
« on: May 10, 2014, 07:00:45 pm »
Thanks for the warm welcome.   

I'll be reviewing the code and provide some feedback for the community.

15
General Discussion / Introduction
« on: May 10, 2014, 02:50:03 pm »


I have been following the crypto currency scene for a while and recently rediscovered an old Bitcoin wallet.   I am here to help.

Pages: [1]