create account

BlockPay Engine --- To hell with HTTP, DNS and App Store approval! by kencode

View this thread on: hive.blogpeakd.comecency.com
· @kencode ·
$277.34
BlockPay Engine --- To hell with HTTP, DNS and App Store approval!
Now that the UN has taken over the Internet, I fully expect to see China-style firewalls popping up and extreme censorship globally. We have already seen some App Stores denying crypto-apps and now ISP's are to start blocking "unapproved" crypto. So, a couple months ago, we started a rather large upgrade for all of our apps and modules. Our meshnet friends are working on making the ISP's obsolete, and we are finishing the infrastructure to allow crypto apps to grow and prosper. Decentralization is more than just the nodes, it is the software itself. 
 
## #1 
 
We have completed our Proof Of Concept (POC) on using IPFS in BlockPay and our findings are as follows: 
 
If we want to use IPNS, then the IPFS daemon of the source computer should always remain ON. Otherwise it shows β€œError: Can't resolve the name.” The process of resolving IPNS is very slow on both PC and android with the daemon as well as the http gateway. Fetching large files (>1MB) from IPFS takes too much time (youtu.be/PiMcZW1sux0) if you force the user to wait. So, we will move this fetching process into the background and give the user the UI so he/she never has to wait for a sync. 
 
Conclusion regarding our IPFS tests are as follows: 
 
A]  public_nodes.json (let IPFS keep track of where our global nodes are): 
- We created a json file containing the nodes array on IPFS and successfully used that file in our test app. 
 
B]  File which handles the 0.5% network fee: 
- We created a json file containing a fees array on IPFS and successfully used that file in our test app. 
 
C] File which handles the coin logos, coin name, details about the coin, etc. 
- We created a folder on IPFS and put all the coin logos in png format. We also created a json file containing all the coins' info and a separate file that contains all the altcoins' info. This way we managed to remove dependency from our server to fetch the Smartcoins list and from the Bridge server to fetch the current altcoins list. 
 
Now for example, if we need to change the name of any coin, its logo or other static data, then we just need to update 1 file on IPFS and it will be done automatically behind the scenes in all BlockPay distributions. 
 
D] File which handles all connections with coin Bridges: 
- We can only keep the urls of gateways/bridges in an IPFS file. And still it might not work as not all gateway/bridges will have the same api calls. Until we have our own Bridge someday, we will skip this feature for now. 
 
E] Regarding changing the BlockPay layout and color themes through IPFS files: 
- We found that although it is possible to render the layout on runtime from IPFS files, it takes too much time to render via IPFS directly each time, as well as a lot of effort for developing an xml parser. So, these BlockPay screens (home screen, qr code screen, thank you screen, transactions screen, settings screen, etc) will be stored on IPFS as Templates, but we will sync them locally for fast access. Updates to these local files can come on a schedule if the merchant chooses to allow updates. 
 
Instead of storing the entire layout on IPFS, we created a json file that stores static attributes like background color, font color and font size, the messages on the qr code screen, etc. Then we used that file to change the attributes of the layout in our app dynamically from the sync'd local copy. aka: "Sync on Schedule" 
 
F] Regarding changing the text messages: 
- If we change the text on runtime from IPFS files then it will change the text in all languages. However, we cannot pull all of the language files from IPFS each time, as android requires them to be present at compile time. So this file will have to sync locally as well, instead of asking IPFS for the file every time BlockPay is loaded. So we will make the language files also Sync on Schedule.
 
G] Regarding storing Merchant data (logo, company name, tax rate, address, url, etc): 
- Storing this data on IPFS was not really necessary since this kind of data is not really "permanent", as the merchant may want to update it from time to time, so we have another solution designed for this... 
 
==================================== 
 
> **BlockPay enables any merchant to accept one or more digital currencies at Zero Cost.** 
 
==================================== 
 
## #2 
 
### The new BlockPay "Engine" is now being designed. 
 
**"Why?"** 
 
When we first developed BlockPay, we had no idea so many merchants around the world would contact us and want BlockPay integrated with their existing systems (like vending machines, electric auto charging stations, proprietary Point Of Sale systems, major eCommerce websites, Hotel and Grocery chains, etc). What we quickly realized was that upgrades and new feature integrations for all of those custom systems would be a major pain in the butt. If for example Dash were to change the logo for their coin, we would have to go back and edit countless integrations at every one of those businesses and firmware installs. Relying on Gravatar to serve up the merchant's profile and logo to thousands of customer eReceipts is not future-proofed either. What if a third-party API were to go down? All of these things and a lot more do not allow a piece of software to scale properly, and the risk of one thing going down could take down an entire grocery chain. This is a huge liability. BlockPay cannot rely on third-parties, period. 
 
**Sooo, we are decentralizing BlockPay even more now...** 
 
https://ipfs.pics/ipfs/QmbBNdRb2LShS7K1WuNbYc7YkdLUNusoVUqDNQfqXV7bdZ 
 
**IPFS** 
 
All BlockPay static components will be hosted from one of our IPFS full-nodes (we have 2 currently, and will add a third full-node in Brazil next month). Static data that rarely changes (coin details, coin logos, merchant logos, template files, language files, public nodes, Bridge data, etc) will be hosted on IPFS and pulled from the nodes upon BlockPay install, or in the background via a local "Sync on Schedule" update. 
 
**Bitshares blockchain**
 
The Bitshares blockchain will host basic text for each BlockPay merchant that changes occasionally, such as the merchant address, tax rate, website address, phone number, eReceipt thank you message, BlockPay settings-screen choices, etc. These values will be stored on the blockchain in a single memo field. Here is an example where someone used the blockchain to store text and make it available to the public (like we can do on an eReceipt): cryptofresh.com/u/announce - The text that **we** will store in the memo field however will be compressed and base58 encoded so that very few bytes will be consumed. The great thing about storing this minimal json data in a memo field for the merchant, is it makes their current info available to all of their customers in the eReceipts. That data will also pre-populate the BlockPay settings screen for the merchant should they ever have to uninstall and reinstall BlockPay in the future, or install BlockPay on additional devices. 
 
This new **"1-Step Setup"** makes BlockPay even easier than before!
 
**Local files** 
 
Upon install or scheduled update, BlockPay can easily grab the latest data from IPFS and the blockchain in the background, and update/sync its local copy. Even the files for the app itself will be served from IPFS/IPNS so that when App Stores start blocking crypto apps (which they already are), BlockPay will still be online and available, no matter what. Also, as we have seen, reliance on a third-party can kill an App, so by taking the time to finish this new Engine for BlockPay, it will make BlockPay (and our Smartcoins Wallet as well) even faster, super-scalable, more decentralized and unstoppable. This new BlockPay Engine should be ready for download by Christmas. 
 
Note: If you are already running BlockPay (Integrated, or "S" versions) you will receive this free upgrade automatically. Your BlockPay Ambassador can show you this as well.
 
## Please Upvote & Share: Decentralization is Freedom :) 
 
.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 387 others
πŸ‘Ž  
properties (23)
authorkencode
permlinkblockpay-engine-to-hell-with-http-dns-and-app-store-approval
categorycrypto-news
json_metadata{"tags":["crypto-news","blockpay","bitcoin","steem","bitshares-munich"],"image":["https://ipfs.pics/ipfs/QmbBNdRb2LShS7K1WuNbYc7YkdLUNusoVUqDNQfqXV7bdZ"]}
created2016-10-12 12:17:12
last_update2016-10-12 12:17:12
depth0
children26
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value260.528 HBD
curator_payout_value16.810 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,022
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,513,385
net_rshares138,402,043,936,289
author_curate_reward""
vote details (452)
@alechahn ·
Very cool @kencode ! I have seen you have a partnership with cryptobuyer.io in Venezuela? Is that correct?
πŸ‘  
properties (23)
authoralechahn
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t192837826z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"users":["kencode"]}
created2016-10-12 19:28:45
last_update2016-10-12 19:28:45
depth1
children1
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation3,988,273,361,034
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,517,053
net_rshares120,704,642
author_curate_reward""
vote details (1)
@kencode ·
I know Rodrigo (our CMO) has quite a few BlockPay Ambassadors out there in Venezuela, Colombia and other economy-is-in-freefall countries, but you'd have to ask him (rodrigo@bitshares-munich.de). It's pretty awesome that people are discovering BlockPay now and seeing its real potential. IMO, BlockPay rollouts can literally save lives.
properties (22)
authorkencode
permlinkre-alechahn-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t063500585z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 06:35:00
last_update2016-10-13 06:35:00
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,521,170
net_rshares0
@bleujay ·
$0.05
Brilliant.  Thank you for posting.  Your first paragraph expressed premise and motive for the work you do.... assisting in establishing a frame of reference for those who are not geared technically yet engaged  and able to recogize the danger without being able to provide solutions.  All the best to you and your endeavors.  Cheers.
πŸ‘  ,
properties (23)
authorbleujay
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t132005366z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 13:20:06
last_update2016-10-13 13:20:06
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length333
author_reputation212,575,430,351,326
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,523,122
net_rshares579,546,452,526
author_curate_reward""
vote details (2)
@cryptomental ·
$0.05
Thanks, upvoted and followed. You are doing great job in Muenchen, I am confident the ICO goes well.
πŸ‘  
properties (23)
authorcryptomental
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t071259327z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 07:13:00
last_update2016-10-13 07:13:00
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation6,756,831,217,523
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,521,321
net_rshares543,761,414,608
author_curate_reward""
vote details (1)
@dailybitcoinnews ·
Thanks for posting this.
properties (22)
authordailybitcoinnews
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t154316905z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 15:43:21
last_update2016-10-12 15:43:21
depth1
children1
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation90,771,889,126,829
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,795
net_rshares0
@kencode ·
Thanx for reading it. Most people just gloss over this stuff, but our Internet is under fire, as well as our economies, and lives. We have to build as fast as possible now, render the old dinosaur systems obsolete. This has got to be  a primary reason why BlockPay is getting so popular in places like Venezuela now, they are desperate for real change. I feel like the proverbial chicken with head cut off, the sky really is falling..
πŸ‘  
properties (23)
authorkencode
permlinkre-dailybitcoinnews-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t193227222z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 19:32:27
last_update2016-10-13 19:32:27
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,526,407
net_rshares1,041,255,101
author_curate_reward""
vote details (1)
@daowisp ·
$0.05
There are thousands of small-business ISPs around the world who could form the backbone of a new decentralized Internet.  They're known as WISPs (Wireless ISPs) and are on the verge of outcompeting the big corporate networks.  I wrote an article about this a few months ago - https://steemit.com/networking/@daowisp/building-the-infrastructure-of-decentralized-civilization  
I know that here at the network I operate, I'm eager to support Blockpay (IPFS Node) and other crypto projects on a local, close-to-customers scale.
πŸ‘  
properties (23)
authordaowisp
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t181644335z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"links":["https://steemit.com/networking/@daowisp/building-the-infrastructure-of-decentralized-civilization"]}
created2016-10-12 18:16:45
last_update2016-10-12 18:16:45
depth1
children2
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length524
author_reputation2,750,638,235,966
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,516,157
net_rshares554,858,586,335
author_curate_reward""
vote details (1)
@kencode ·
WOW!! I am HUGE into meshnet, thank you so much for posting about WISP's. I have upvoted you and Followed you (I do not typically follow anyone). Great work, please keep the WISP articles and how-to's coming!! :) 
 
## UPVOTED
πŸ‘  
properties (23)
authorkencode
permlinkre-daowisp-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t064141192z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 06:41:42
last_update2016-10-13 06:41:42
depth2
children1
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,521,199
net_rshares19,750,074,870
author_curate_reward""
vote details (1)
@daowisp ·
Hey Ken, thanks!  Finally back on steemit, had a massive rush of new customers sign up and we're a 2-man show, gotta focus on the main biz sometimes!

Noticed you over on VIVA too.  Lots going on right now in crypto-frontier-land.
properties (22)
authordaowisp
permlinkre-kencode-re-daowisp-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20170607t062522606z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-06-07 06:25:21
last_update2017-06-07 06:25:21
depth3
children0
last_payout2017-06-14 06:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation2,750,638,235,966
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,319,488
net_rshares0
@eric-boucher ·
$0.49
Lots of words of wisdom in this little article packed with goodness! Thanks a bunch, once again. All for one and one for all!   Namaste    :)
πŸ‘  , ,
properties (23)
authoreric-boucher
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t173033802z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 17:30:33
last_update2016-10-12 17:30:33
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.417 HBD
curator_payout_value0.072 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation68,503,601,066,539
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,515,679
net_rshares3,436,490,364,385
author_curate_reward""
vote details (3)
@faddat ·
$0.02
Ken your work is awesome.  

Can we set up a phone call to discuss points of integration?
πŸ‘  
properties (23)
authorfaddat
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t175622203z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 17:56:21
last_update2016-10-12 17:56:21
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation36,581,868,473,026
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,515,942
net_rshares257,262,628,258
author_curate_reward""
vote details (1)
@faddat ·
Ken, 

This sounds absolutely great.  I want to talk with you about using the BlockPay API in web applications.  

faddat@gmail.com
properties (22)
authorfaddat
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161021t183503949z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-21 18:35:03
last_update2016-10-21 18:35:03
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation36,581,868,473,026
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,590,344
net_rshares0
@imyao · (edited)
$0.05
That's really AWESOME!Fly over the Great Firewall  :-οΌ‰
Fantastic job!
πŸ‘  
properties (23)
authorimyao
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t194009387z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 19:40:09
last_update2016-10-12 19:43:21
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation2,782,342,637,822
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,517,195
net_rshares554,858,586,335
author_curate_reward""
vote details (1)
@jamesc ·
$0.16
Wow, this is really fantastic.  This kind of stuff made BTS and STEEM what it is today.  You're really rolling with it in a new direction.  Just today I was thinking about a delicious IPFS Bread and Onion sandwich.

You have meshnet friends!  cool..
πŸ‘  ,
properties (23)
authorjamesc
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t212738219z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 21:27:39
last_update2016-10-12 21:27:39
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.139 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation11,900,157,451,513
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,517,990
net_rshares1,510,651,550,149
author_curate_reward""
vote details (2)
@kencode ·
$1.05
**What a coincidence that just now the DNS was hijacked over at blockchain.info too. Now you see why I am so paranoid about security!**  
 
https://m.reddit.com/r/Bitcoin/comments/573lis/it_looks_like_blockchaininfo_has_been_dns_hijacked/?utm_source=mweb_redirect&compact=true
πŸ‘  , , , , , , ,
properties (23)
authorkencode
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t142434124z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"links":["https://m.reddit.com/r/Bitcoin/comments/573lis/it_looks_like_blockchaininfo_has_been_dns_hijacked/?utm_source=mweb_redirect&compact=true"]}
created2016-10-12 14:24:36
last_update2016-10-12 14:24:36
depth1
children2
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.788 HBD
curator_payout_value0.261 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,242
net_rshares5,661,090,435,896
author_curate_reward""
vote details (8)
@kencode ·
more DNS comedy today: 
http://www.zerohedge.com/news/2016-10-21/enormous-cyber-attack-takes-down-hundreds-websites-how-track-global-cyber-war
properties (22)
authorkencode
permlinkre-kencode-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161021t192226295z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"links":["http://www.zerohedge.com/news/2016-10-21/enormous-cyber-attack-takes-down-hundreds-websites-how-track-global-cyber-war"]}
created2016-10-21 19:22:30
last_update2016-10-21 19:22:30
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,590,669
net_rshares0
@tinfoilfedora ·
That was quick. Time for a namecoin backup?
properties (22)
authortinfoilfedora
permlinkre-kencode-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t171317600z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-13 17:13:39
last_update2016-10-13 17:13:39
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation20,279,768,518,195
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,525,158
net_rshares0
@kooshikoo ·
$0.70
Yes, decentralisation is freedom!
THat is why we need the [SAFE Network](https://safenetwork.org)
It is the only solution that provides privacy security and freedom, totally deccentralised, from the ground up.
And I believe that it will eventually run a meshnet as well.
Other solutions do not seem as secure by far, and they have difficulty in scaling.
πŸ‘  , , , , ,
properties (23)
authorkooshikoo
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t160600753z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"links":["https://safenetwork.org"]}
created2016-10-12 16:05:03
last_update2016-10-12 16:05:03
depth1
children1
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.529 HBD
curator_payout_value0.175 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length353
author_reputation2,159,492,091,156
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,957
net_rshares4,387,730,181,303
author_curate_reward""
vote details (6)
@kencode ·
$0.89
We don't have time to wait around for Maidsafe though. IPFS already does all of those things and more. There are thousands of websites running on IPFS as well (including our own).
 
As for meshnet, I wish more people knew about openwrt and the standard was to share and relay, as then we could actually dump our ISP's this century :) 
 
The technology for meshnet has been here for a long time but getting people to try it out is a whole different story. It's like NFC vs QR. Not too many people use QR codes (even though they are free) because of the amount of advertising that goes out for all that "wonderful" nfc hardware that they want to sell to merchants.
πŸ‘  , , , , , , , , , ,
properties (23)
authorkencode
permlinkre-kooshikoo-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t163400178z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 16:34:00
last_update2016-10-12 16:34:00
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.675 HBD
curator_payout_value0.210 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length662
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,515,197
net_rshares5,085,472,868,892
author_curate_reward""
vote details (11)
@kus-knee ·
$1.00
This is the type of forward thinking and DOING that we need!

@kus-knee
https://s14.postimg.org/jhkmrf58h/image.jpg
πŸ‘  , , , , , ,
properties (23)
authorkus-knee
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t152623889z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"users":["kus-knee"],"image":["https://s14.postimg.org/jhkmrf58h/image.jpg"]}
created2016-10-12 15:26:24
last_update2016-10-12 15:26:24
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.751 HBD
curator_payout_value0.249 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation307,925,583,264,282
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,656
net_rshares5,491,606,220,304
author_curate_reward""
vote details (7)
@l0k1 · (edited)
$0.78
It's amazing that the DNS system has managed not to have a huge problem up to now, they actually were not doing such a bad job. But now it's going to be a big problem and bind is not going to be the only kid on the block anymore. 

Blockchains are going to pop up like mushrooms after heavy rains pretty soon. Centralisation has only just started to show it's weaknesses in network systems.

https://i.imgflip.com/1c9ru5.jpg
πŸ‘  , , , ,
properties (23)
authorl0k1
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t150630006z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"image":["https://i.imgflip.com/1c9ru5.jpg"]}
created2016-10-12 15:06:30
last_update2016-10-13 12:12:45
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.649 HBD
curator_payout_value0.126 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length424
author_reputation94,800,257,230,993
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,499
net_rshares4,665,770,458,614
author_curate_reward""
vote details (5)
@linkback-bot-v0 ·
This post has been linked to from another place on Steem.


  - [Advanced Steem Metrics Report for 12th October 2016](https://steemit.com/stats/@ontofractal/advanced-steem-metrics-report-for-12th-october-2016) by @ontofractal


Learn more about [**linkback bot v0.4**](https://steemit.com/steem/@ontofractal/steem-linkback-bot-v0-4-released). Upvote if you want the bot to continue posting linkbacks for your posts. Flag if otherwise.

Built by @ontofractal
properties (22)
authorlinkback-bot-v0
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-linkbacks
categorycrypto-news
json_metadata{}
created2016-10-13 17:04:00
last_update2016-10-13 17:04:00
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length458
author_reputation1,915,954,976,722
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,525,059
net_rshares0
@mariandavp ·
$1.05
Great! Resteemed πŸ‘
πŸ‘  , , , , , ,
properties (23)
authormariandavp
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t135129723z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 13:51:36
last_update2016-10-12 13:51:36
depth1
children1
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.792 HBD
curator_payout_value0.262 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation200,420,201,215,223
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,005
net_rshares5,676,020,223,865
author_curate_reward""
vote details (7)
@kencode ·
Thank you so much! :)
properties (22)
authorkencode
permlinkre-mariandavp-re-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t142143516z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 14:21:42
last_update2016-10-12 14:21:42
depth2
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation140,643,562,588,487
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,514,226
net_rshares0
@piedpiper ·
$0.05
Love it! Resteemed :)
πŸ‘  
properties (23)
authorpiedpiper
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161012t194734800z
categorycrypto-news
json_metadata{"tags":["crypto-news"]}
created2016-10-12 19:47:30
last_update2016-10-12 19:47:30
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation107,591,773,402,443
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,517,257
net_rshares554,858,586,335
author_curate_reward""
vote details (1)
@steempowerwhale ·
$0.05
Top Post
Congratulations. Your post received the most upvotes yesterday.
https://s19.postimg.org/ns5q07yur/12102016kencode.png
https://steemit.com/stats/@steempowerwhale/key-stats-for-authors-wednesday-october-12-2016
πŸ‘  
properties (23)
authorsteempowerwhale
permlinkre-kencode-blockpay-engine-to-hell-with-http-dns-and-app-store-approval-20161013t063654923z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"image":["https://s19.postimg.org/ns5q07yur/12102016kencode.png"]}
created2016-10-13 06:36:54
last_update2016-10-13 06:36:54
depth1
children0
last_payout2016-11-12 19:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation6,727,613,422,973
root_title"BlockPay Engine --- To hell with HTTP, DNS and App Store approval!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,521,183
net_rshares543,761,414,608
author_curate_reward""
vote details (1)