Geenstijl
Legendary
Offline
Activity: 1232
Merit: 1000
|
|
February 06, 2015, 05:06:14 PM |
|
Just the fact that the DEV has faith in his own coin and put's his full identity in the open tells a lot about the potential of a coin.
|
|
|
|
etoque
Legendary
Offline
Activity: 1988
Merit: 1000
|
|
February 06, 2015, 09:26:52 PM |
|
Just the fact that the DEV has faith in his own coin and put's his full identity in the open tells a lot about the potential of a coin.
+1 Love sapience,this is gonna be HUGE 50k market cap now are literally a joke for this kind of project, set your seatbelt
|
|
|
|
zoppp
Newbie
Offline
Activity: 28
Merit: 0
|
|
February 06, 2015, 09:43:06 PM |
|
I just noticed my wallet looks a lot different then the one on the first post
|
|
|
|
myagui
Legendary
Offline
Activity: 1154
Merit: 1001
|
|
February 06, 2015, 10:29:47 PM |
|
I just noticed my wallet looks a lot different then the one on the first post You'll need to read the actual post to notice that the screenshot is for a sister project, Quotient/XQN! Don't be too worried. Holding Sapience/XAI, you're in the right place! If you don't have any Quotient/XQN, I'd say you should definitely have a look! Here you go: Quotient/XQN ANN
|
|
|
|
zoppp
Newbie
Offline
Activity: 28
Merit: 0
|
|
February 06, 2015, 11:12:19 PM |
|
I just noticed my wallet looks a lot different then the one on the first post You'll need to read the actual post to notice that the screenshot is for a sister project, Quotient/XQN! Don't be too worried. Holding Sapience/XAI, you're in the right place! If you don't have any Quotient/XQN, I'd say you should definitely have a look! Here you go: Quotient/XQN ANNWhy the hell have screenshot of other wallet? That is tremendously stupid thing to do and misleading the public about this wallet. Ok whatever, not big deal. Just confuses people.
|
|
|
|
CedricQuotient (OP)
|
|
February 07, 2015, 12:10:51 AM |
|
I just noticed my wallet looks a lot different then the one on the first post You'll need to read the actual post to notice that the screenshot is for a sister project, Quotient/XQN! Don't be too worried. Holding Sapience/XAI, you're in the right place! If you don't have any Quotient/XQN, I'd say you should definitely have a look! Here you go: Quotient/XQN ANNWhy the hell have screenshot of other wallet? That is tremendously stupid thing to do and misleading the public about this wallet. Ok whatever, not big deal. Just confuses people. If you read the OP and the briefs, the purpose of that is because my idea is that XQN can act as a "reference client" to show how you can adopt and consume the AIFX platform. And also just to demonstrate that I know what I'm doing and can build some pretty cool stuff. Which I have been heads down working my butt off on XAI for the past few months Also I saw your other post about wanting to try some staking tweaks. You might be interested to take a look at the latest Quotient commit on github and see where I made some tweaks for that, maybe you can re-use some of it. If you do come up with anything cool for XAI and you are inclined to share, feel free to submit pull requests on github, I'll look at them and maybe merge them.
|
|
|
|
CedricQuotient (OP)
|
|
February 07, 2015, 12:27:00 AM |
|
Just a quick update on the tech preview coming out... I am working on it, want to push a clean release, a few segfaults popped up while I was testing last night across android and linux. I fixed most of the issues, still a couple things to take care of before I can push the release. Been up for a couple days straight so I need to catch up on some sleep and recharge. Got a little time today for a nap but I'm just popping my head up to give a status update.
This test build has the PlumeDB and P2P peering all up and running and testable. Its a layered DHT approach with the low level DHT running entirely over the Bitcoin P2P messaging bus (e.g. messages with serialized payloads sent through the existing node/addrman infrastructure, as opposed to a parallel libtorrent or UDP network running side-by-side). Then on top of that there's a DHT2 layer for "tracker" type functionality and metadata, and a PHT layer which is multi-homed index functionality provided by the "slave" nodes (probably should think of a cooler name than "slave" for them).
As far as the data format, all data is key/value with values in JSON format and keys comprised of infohash + 3 attribute slots. On top of that the planned abstraction is for 3 primary data types - time series data (e.g. druid.io), NoSQL style json data (e.g. mongodb style), and Atom formatted data (opencog AtomSpace). It might also make sense to add a 4th for data formatted for NLP. But the strategy is basic core architecture that more complex things can be built on top of (you could leverage the key structure for instance to map a ternary tree into it, kind of how the trie serialization works).
If you wanted to do something like DropBox style data or file/blob storage, right now you'd have to write your own adapter that could take that data, chunk it and split it across records. Default max limits right now are 1 GB of space allocated by the node as available capacity to the network, 1MB max record size. There will be settings surfaced so the end user can configure their own values - right now I've got the user-configurable settings for the fees implemented.
This is a complex build with a huge amount of code behind it, but will be so worth it. Just want to make sure I'm not dropping builds that blow up after 15-20 minutes of running, or get SIGABRT'd by Android because of the aggressive ANR stuff, or have locking issues, etc. I think I got most of it. I really need to crash for awhile though so my brain can function again...
|
|
|
|
ethought
Legendary
Offline
Activity: 1316
Merit: 1000
|
|
February 07, 2015, 04:03:26 AM |
|
Just a quick update on the tech preview coming out... I am working on it, want to push a clean release, a few segfaults popped up while I was testing last night across android and linux. I fixed most of the issues, still a couple things to take care of before I can push the release. Been up for a couple days straight so I need to catch up on some sleep and recharge. Got a little time today for a nap but I'm just popping my head up to give a status update.
This test build has the PlumeDB and P2P peering all up and running and testable. Its a layered DHT approach with the low level DHT running entirely over the Bitcoin P2P messaging bus (e.g. messages with serialized payloads sent through the existing node/addrman infrastructure, as opposed to a parallel libtorrent or UDP network running side-by-side). Then on top of that there's a DHT2 layer for "tracker" type functionality and metadata, and a PHT layer which is multi-homed index functionality provided by the "slave" nodes (probably should think of a cooler name than "slave" for them).
As far as the data format, all data is key/value with values in JSON format and keys comprised of infohash + 3 attribute slots. On top of that the planned abstraction is for 3 primary data types - time series data (e.g. druid.io), NoSQL style json data (e.g. mongodb style), and Atom formatted data (opencog AtomSpace). It might also make sense to add a 4th for data formatted for NLP. But the strategy is basic core architecture that more complex things can be built on top of (you could leverage the key structure for instance to map a ternary tree into it, kind of how the trie serialization works).
If you wanted to do something like DropBox style data or file/blob storage, right now you'd have to write your own adapter that could take that data, chunk it and split it across records. Default max limits right now are 1 GB of space allocated by the node as available capacity to the network, 1MB max record size. There will be settings surfaced so the end user can configure their own values - right now I've got the user-configurable settings for the fees implemented.
This is a complex build with a huge amount of code behind it, but will be so worth it. Just want to make sure I'm not dropping builds that blow up after 15-20 minutes of running, or get SIGABRT'd by Android because of the aggressive ANR stuff, or have locking issues, etc. I think I got most of it. I really need to crash for awhile though so my brain can function again...
Thanks for the update!!
|
|
|
|
etoque
Legendary
Offline
Activity: 1988
Merit: 1000
|
|
February 07, 2015, 04:11:22 AM |
|
^ thanks to keep us informed
|
|
|
|
|
etoque
Legendary
Offline
Activity: 1988
Merit: 1000
|
|
February 07, 2015, 05:57:43 PM |
|
soon we will see 100k 100k? Yeah that's irrevelant. But I see 13 BTC to 500k...I think in a week or two we gonna really blow up the chart, maybe sooner than later
|
|
|
|
Geenstijl
Legendary
Offline
Activity: 1232
Merit: 1000
|
|
February 07, 2015, 07:03:58 PM |
|
soon we will see 100k 100k? Yeah that's irrevelant. But I see 13 BTC to 500k...I think in a week or two we gonna really blow up the chart, maybe sooner than later The good thing is that there is not Mining in this coin. No additional Sell Pressure is great for Long-Term
|
|
|
|
tiggytomb
Legendary
Offline
Activity: 1848
Merit: 1000
|
|
February 07, 2015, 07:36:49 PM |
|
just invested in this anyone use the android wallet?
|
|
|
|
tiggytomb
Legendary
Offline
Activity: 1848
Merit: 1000
|
|
February 07, 2015, 07:57:37 PM |
|
just invested in this anyone use the android wallet?
Yeah, it's sexy. Do you need help with it? Cool, Just wondering if it is working well? if I send my coins over they will stake ? I'm getting in now as I think this project has a real purpose and future, interesting to see how it develops
|
|
|
|
Kruemmelmonster
|
|
February 07, 2015, 08:00:47 PM |
|
just invested in this anyone use the android wallet?
Yeah, it's sexy. Do you need help with it? Cool, Just wondering if it is working well? if I send my coins over they will stake ? I'm getting in now as I think this project has a real purpose and future, interesting to see how it develops yes the android wallet has a staking function... i think we are still in early stage if you are interested in a good longterm coin
|
|
|
|
etoque
Legendary
Offline
Activity: 1988
Merit: 1000
|
|
February 07, 2015, 08:05:45 PM |
|
We have a good active dev,and this is a major +! Look how many coin with obscure dev growth on CoinMarketCap. At least the initial project was sexy,this coin is very good for /short/mid/long term
|
|
|
|
ethought
Legendary
Offline
Activity: 1316
Merit: 1000
|
|
February 07, 2015, 08:06:14 PM |
|
just invested in this anyone use the android wallet?
Yeah, it's sexy. Do you need help with it? Cool, Just wondering if it is working well? if I send my coins over they will stake ? I'm getting in now as I think this project has a real purpose and future, interesting to see how it develops Yes, staking works well. Doesn't even seem to drain battery power. The only issue is sometimes the wallet can be a little hard to read because the layout is not really responsive but that will be fixed in future updates.
|
|
|
|
tiggytomb
Legendary
Offline
Activity: 1848
Merit: 1000
|
|
February 07, 2015, 08:12:48 PM |
|
just invested in this anyone use the android wallet?
Yeah, it's sexy. Do you need help with it? Cool, Just wondering if it is working well? if I send my coins over they will stake ? I'm getting in now as I think this project has a real purpose and future, interesting to see how it develops Yes, staking works well. Doesn't even seem to drain battery power. The only issue is sometimes the wallet can be a little hard to read because the layout is not really responsive but that will be fixed in future updates. I agree with the layout it is a bit difficult to read, the encrypt wallet password screen is unreadable on my SG3 but like you say I am sure this will be sorted in future updates.
|
|
|
|
Geenstijl
Legendary
Offline
Activity: 1232
Merit: 1000
|
|
February 07, 2015, 09:02:44 PM |
|
Who's doing the marketing for this coin? These movies of the Dev explaining the whole thing are simply brilliant.
|
|
|
|
sofu
Legendary
Offline
Activity: 1890
Merit: 1085
Degenerate Crypto Gambler
|
|
February 07, 2015, 09:35:00 PM |
|
Lol there are only ~12k coins left on the sell side. This will be big
|
|
|
|
|