Mig-23
Legendary
Offline
Activity: 1176
Merit: 1000
|
|
January 14, 2015, 01:13:12 AM |
|
@vpncoin once again i give advice for you,...but its up to you
please change the ANN explain the detail about VPNcoin, step by step,..step by step this is not for us here ,but for new people or new member who interested with vpncoin about the features,about the functions,.. etc provide tutorial how to use or anything related VPNcoin like;p2p call,video cam,domain and website system,..etc this is most important as the marketing
once again,..this is up to you,..i just give the advice
|
|
|
|
Cryptock
|
|
January 14, 2015, 01:52:26 AM |
|
provide tutorial,..video if needed is it hard for you... many people out there didn't know how to use thats is why vpncoin doesn't popular
Did you mean that you can't understand from these pic ? any new update ?
|
|
|
|
marek3ball-orig
Member
Offline
Activity: 80
Merit: 10
|
|
January 14, 2015, 09:20:57 AM |
|
I think that problem is that you have created all tech and you are too smart --> you shouldn't make tutorials . This tutorial looks easy but there are some problems: 1) what is goal of this tutorial? 2) how to open google.com in banned country? 3) TOR comming soon make me think I should wait and don't follow tutorial 4) What is difference between VPN and TOR? I see very interesting all these features but hopefully I don't need them in my country. I would be really glad to see it in action. 1) goal; 2) progress; 3) result ----> I will watch it or read it and I could help to somebody else because I personaly don't need it. Please pay to somebody to make simple, informative tutorials for every single feature: 1) Domain system 2) Website system 3) P2p vpn proxy system 4) P2p proxy system 5) P2p Instant communication system 6) Cross-currency networking system 7) AES Chat 8| P2P Phone system 9) P2P Video system 10) Network tip system
|
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 10:16:49 AM Last edit: January 14, 2015, 10:49:05 AM by vpncoin |
|
How it work ?
Q1: The new chat UI like a webpage? Yes, it is a local webpage, in the wallet app ( website\BitNet-IRC ) folder. When you type message and press ENTER button from this webpage, it pass your message to BitNet control by javascript, Then BitNet socket send your message to P2P node or send to IRC server. When other's message come in, BitNet control send it to the WebPage by javascript. The webpage UI just for display awesome chat interface.
coming soon.
|
|
|
|
bitbollox
|
|
January 14, 2015, 12:34:30 PM |
|
We really need a video screenshots dont cut the mustard Im afraid! and I was also thinking to make it easier on the dev would it be an idea that any comment,ideas,how to and such like the thread should start with [DEV] this way the dev only has to read certain maybe only rely on the dev if the forum doesnt provide an answer
|
|
|
|
gkv9
Legendary
Offline
Activity: 1246
Merit: 1000
!!! RiSe aBovE ThE StoRm !!!
|
|
January 14, 2015, 01:15:48 PM |
|
We really need a video screenshots dont cut the mustard Im afraid! and I was also thinking to make it easier on the dev would it be an idea that any comment,ideas,how to and such like the thread should start with [DEV] this way the dev only has to read certain maybe only rely on the dev if the forum doesnt provide an answer
Thanks for your advice and that's a good idea though... @vpncoin, Please, also see to what we, the forum members, have to say... Please do prepare a video for the same... Also, the new format of wallet looks cool...
|
|
|
|
bitbollox
|
|
January 14, 2015, 01:27:40 PM |
|
my first good idea of 2015
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 01:30:43 PM |
|
We really need a video screenshots dont cut the mustard Im afraid! and I was also thinking to make it easier on the dev would it be an idea that any comment,ideas,how to and such like the thread should start with [DEV] this way the dev only has to read certain maybe only rely on the dev if the forum doesnt provide an answer
Thanks for your advice and that's a good idea though... @vpncoin, Please, also see to what we, the forum members, have to say... Please do prepare a video for the same... Also, the new format of wallet looks cool... Thanks for your support. Can you tell me what is you can't understand ? 1,... 2,... 3,... I will answer every question.
|
|
|
|
gkv9
Legendary
Offline
Activity: 1246
Merit: 1000
!!! RiSe aBovE ThE StoRm !!!
|
|
January 14, 2015, 01:46:57 PM |
|
Thanks for your support. Can you tell me what is you can't understand ? 1,... 2,... 3,...
I will answer every question.
Dear Vpncoin, It's not that I didn't understand anything, but the newbies who jump on this thread don't know much about what vpncoin is and what exactly will it be used by them, I mean why and how will they use it? I think you should make a video demonstrating everything about VPNCoin, so that it may catch some good amount of prospects towards it and get a good exposure and value too...
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 01:49:01 PM |
|
About New features: website TIP This is my website in BitNet, the TIP code in web page as below: <html> <head> <style type="text/css"> #tipbutton { right: 30px; top: 30px; z-index: 520; position: absolute; }
</style></head> <body>
<div id="tipbutton"> <input id="img_tipBtn" name="submit" type="image" value="20" src="tipbt_en.png" title="When you click this button, you will send 20VPN to me." OnClick="sendgetreq(this.value);"/> </div>
<script type="text/javascript"> var req; var lang; if( navigator.userLanguage ){ lang = navigator.userLanguage; } else{ lang = navigator.language; } var lang2 = lang.substr(0,2); var cHost = "http://" + window.location.hostname; var timestamp = new Date().getTime();
function zswFun(){ if(req.readyState == 4 && req.status == 200){ var b = req.responseText; } } function sendgetreq(tipCoins) { req = new XMLHttpRequest(); req.onreadystatechange = zswFun; sUrl = cHost + '/bitnet-webtip?a=Vs6dtTrS1tmhoZjBcJQPKyovZiPbXe4w9p&v=' + tipCoins + '&t=' + timestamp + '&m=' + encodeURI("Im Bit Lee, Thanks for your tip"); req.open('GET', sUrl, true); req.setRequestHeader('Cache-Control', 'no-cache'); req.send(null); }
if( lang2 == 'zh' ){ var btn = document.getElementById("img_tipBtn"); btn.src = 'tipbt_cn.png'; btn.title = '当你点击这个按钮,你将发送20VPN给我。'; } </script>
</body></html>
|
|
|
|
hack_
|
|
January 14, 2015, 02:25:36 PM |
|
this looks very impressive. Could someone quickly summarize ?
|
|
|
|
marek3ball-orig
Member
Offline
Activity: 80
Merit: 10
|
|
January 14, 2015, 02:30:20 PM |
|
Thanks for your advice and that's a good idea though... @vpncoin, Please, also see to what we, the forum members, have to say... Please do prepare a video for the same... Also, the new format of wallet looks cool... Thanks for your support. Can you tell me what is you can't understand ? 1,... 2,... 3,... I will answer every question. Tutorial A - banned web pagesSteps in one cool video tutorial: 1) problem - show how it looks like if somebody in country which ban web is trying to open google.com, facebook.com in chrome 2) solution - step by step how to use BitNet tool to solve this problem 3) final result - show how it looks like to browse banned web pages using BitNet People will see how usefull BitNet is. Tutorial B - banned crypto currencyHow to use BTC or NXT in country where it is banned with help of SuperNet.
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 02:41:43 PM |
|
Tutorial A - banned web pages Steps in one cool video tutorial: 1) problem - show how it looks like if somebody in country which ban web is trying to open google.com, facebook.com in chrome 2) solution - step by step how to use BitNet tool to solve this problem 3) final result - show how it looks like to browse banned web pages using BitNet
People will see how usefull BitNet is.
Tutorial B - banned crypto currency How to use BTC or NXT in country where it is banned with help of SuperNet.
You mean how to dial-in VPN? Follow this step, the 1125 version auto registry your wallet address to VPN server, did not need click "Registry" button. If the "Dial-in" button's color is gray, it's mean that you need deposits vpncoins to you selected VPN server. The blue or green color's VPN node is ours. About supernet, i think you need to ask @jl777
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 02:58:58 PM |
|
this looks very impressive. Could someone quickly summarize ?
Hello, 1: VPN service; 2: P2P (Voice and Video) Chat & Tx file, all support AES encrypt; 3: P2P Domain & P2P Website Platform. This Is BitNet.
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 03:01:36 PM Last edit: January 14, 2015, 03:12:52 PM by vpncoin |
|
About New features: website TIP This is my website in BitNet, the TIP code in web page as below: <html> <head> <style type="text/css"> #tipbutton { right: 30px; top: 30px; z-index: 520; position: absolute; }
</style></head> <body>
<div id="tipbutton"> <input id="img_tipBtn" name="submit" type="image" value="20" src="tipbt_en.png" title="When you click this button, you will send 20VPN to me." OnClick="sendgetreq(this.value);"/> </div>
<script type="text/javascript"> var req; var lang; if( navigator.userLanguage ){ lang = navigator.userLanguage; } else{ lang = navigator.language; } var lang2 = lang.substr(0,2); var cHost = "http://" + window.location.hostname; var timestamp = new Date().getTime();
function zswFun(){ if(req.readyState == 4 && req.status == 200){ var b = req.responseText; } } function sendgetreq(tipCoins) { req = new XMLHttpRequest(); req.onreadystatechange = zswFun; sUrl = cHost + '/bitnet-webtip?a=Vs6dtTrS1tmhoZjBcJQPKyovZiPbXe4w9p&v=' + tipCoins + '&t=' + timestamp + '&m=' + encodeURI("Im Bit Lee, Thanks for your tip"); req.open('GET', sUrl, true); req.setRequestHeader('Cache-Control', 'no-cache'); req.send(null); }
if( lang2 == 'zh' ){ var btn = document.getElementById("img_tipBtn"); btn.src = 'tipbt_cn.png'; btn.title = '当你点击这个按钮,你将发送20VPN给我。'; } </script>
</body></html>
How to browse other node's website or publish your website in BitNet?
|
|
|
|
marek3ball-orig
Member
Offline
Activity: 80
Merit: 10
|
|
January 14, 2015, 03:25:55 PM |
|
Tutorial A - banned web pages Steps in one cool video tutorial: 1) problem - show how it looks like if somebody in country which ban web is trying to open google.com, facebook.com in chrome 2) solution - step by step how to use BitNet tool to solve this problem 3) final result - show how it looks like to browse banned web pages using BitNet
People will see how usefull BitNet is.
Tutorial B - banned crypto currency How to use BTC or NXT in country where it is banned with help of SuperNet.
You mean how to dial-in VPN? Follow this step, the 1125 version auto registry your wallet address to VPN server, did not need click "Registry" button. If the "Dial-in" button's color is gray, it's mean that you need deposits vpncoins to you selected VPN server. The blue or green color's VPN node is ours. http://oi57.tinypic.com/nwd45y.jpghttp://oi58.tinypic.com/23uag0n.jpgAbout supernet, i think you need to ask @jl777 I'm trying to describe what people need to see before they will start spending their time to learn something new. Tutorial A - banned web pages see above - as you mentioned version 1125 looks different than your tutorial print screens
- fortunately I don't live in a country where are banned pages, so I can't test it
- I would love to see the whole process in action - described by me in "Tutorial A" above
Tutorial B - was only example, it could be another cool feature
|
|
|
|
vpncoin (OP)
|
|
January 14, 2015, 03:40:31 PM |
|
I'm trying to describe what people need to see before they will start spending their time to learn something new. Tutorial A - banned web pages see above - as you mentioned version 1125 looks different than your tutorial print screens
- fortunately I don't live in a country where are banned pages, so I can't test it
- I would love to see the whole process in action - described by me in "Tutorial A" above
Tutorial B - was only example, it could be another cool feature I come from china, we can't browse facebook, gmail... So I developed vpncoin .
|
|
|
|
Mig-23
Legendary
Offline
Activity: 1176
Merit: 1000
|
|
January 14, 2015, 04:03:38 PM |
|
i dont know how to give the advice to Vpncoin,.. did you never understand that all the advice from the comunity here... is for newbie or new comer,.. the tutorial is not for us here,... its for newbie or new comer,..
|
|
|
|
Mig-23
Legendary
Offline
Activity: 1176
Merit: 1000
|
|
January 14, 2015, 04:04:59 PM |
|
put it the ANN or provide the link,. so the new people never confused to use it,..
|
|
|
|
|