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 - cn-members

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 ... 25
46
Seeing as that BM realises BTS is about to fail and is putting it in as a desperate step, everybody should vote yes.

spoiler alert : BTS is gonna go viral in several months due to some major promotion effort in China , unless we do something to drag their feet . A crowd funding company already got millions of USD of VC to operate their operation on BTS . That's once in a life time opportunity for BTS .

As a matter of fact , all they want is no more surprises , a stable wallet and protocol ,  everything will work out eventually .

47
I thought this was an excellent idea, and I believe the risk/reward ratio is highly in our favor. Bytemaster said that by the end of the year, anyone will be able to do this with smart contracts anyways, so the concerns about potential "regulatory crackdown" for gambling are a moot point. To turn down the opportunity to create some desperately needed utility for bitAssets at this point would be foolish.

As for user adoption, think about how many people play "bingo" instant lottery tickets. Hundreds of thousands? Millions? Imagine if they found out that they could play them online, using real money, to win real money. A lightweight wallet that you could fund and then play? And completely decentralized, so people from every country in the world would be driving the jackpots higher and higher. The upside potential is huge, considering the 80 hours it would take to implement. (bytemaster's estimate).

Without a major fiat portal to support the price of BTS , do you really think BTA can be used by millions of users ?
Until the fully decentralized trading status achieved (tens of thousands of gateways around the world) , we shouldn't be gambling with the only fiat portal at hand , period .

BTA relies on BTS .

48
If anyone wants to drive BTS out of  China and lost the only major fiat portal we could ever have in at least 6 months and ruin all the hard working promotion effort with serious VC investors  , please do this . 

Otherwise , don't .

No gambling should be on BTS wallet , period .

I've already obtained opinion from experienced lawyers .

Agreed..  what about the BTS blockchain?

you mean a different looking and branding wallet using the BTS chain ?

49
If anyone wants to drive BTS out of  China and lost the only major fiat portal we could ever have in at least 6 months and ruin all the hard working promotion effort with serious VC investors  , please do this . 

Otherwise , don't .

No gambling should be on BTS wallet , period .

I've already obtained opinion from experienced lawyers .


50
DevShares / Re: DVS Light Wallet for Mac Open Beta
« on: February 02, 2015, 03:07:20 pm »
I found the robohash is different on qt-wallet and light-wallet:




any suggestions?

51
DevShares / Re: DVS Light Wallet for Mac Open Beta
« on: February 02, 2015, 03:05:51 pm »
Build the window version by vs2013 is success.
But i try to build the android version by windows and looks like it can't be done.
I use the qt for android(windows) and need to build the boost by mingw, and the lib boost_context can't build on windows by mingw, any idea?


I think i figure out how to build the boost_context, will try it later.

guide please? I never get to know how to use VS, but certainly I want to build the Windows version. Thanks

不知道你是到哪一步卡住了,假设你已经能能用vs编译命令行的钱包,如果不行的话看BUILD_WIN32.md文件。

编译轻钱包另外用到了库qml-extras和qml-material,qt开发包Qt 5.4.0 for Windows 32-bit (VS 2013, OpenGL) ,Qt 5.4.0 for Android (Windows 32-bit),可以在http://www.qt.io/download-open-source/#section-3下载。

Qt5.4或5.3版本应该都可以,用qt5.4 for android其实只是用来编译qml-extras和qml-material,用Qt 5.4.0 for Windows 32-bit (MinGW 4.9.1)也可以。
编译qml-extras和qml-material一样,都用命令行设置环境变量后用mingw编译。假设qt for android安装在d:/qt/qtAndroid
Code: [Select]
set PATH=D:\Qt\qtAndroid\5.4\mingw491_32\bin;D:\Qt\qtAndroid\Tools\mingw491_32\bin;%PATH%;
qmake
mingw32-make.exe
mingw32-make.exe check
mingw32-make.exe install
编译成功后D:\Qt\qtAndroid\5.4\mingw491_32\qml目录下就会有material,拷贝material到Qt for Window目录下D:\Qt\Qt5.4.0\5.4\msvc2013_opengl\qml。我觉着ubuntu下编译出来的material应该也可以直接拷贝过来用。


在能编译命令行钱包的基础上添加环境变量,设置vs使用的qt库目录
CMAKE_PREFIX_PATH D:\Qt\Qt5.3.0\5.3\msvc2013
添加编译轻钱包
INCLUDE_LIGHT_WALLET TRUE

这样就行了。

多謝 我再試試看

52
DevShares / Re: DVS Light Wallet for Mac Open Beta
« on: February 02, 2015, 12:22:55 pm »
Build the window version by vs2013 is success.
But i try to build the android version by windows and looks like it can't be done.
I use the qt for android(windows) and need to build the boost by mingw, and the lib boost_context can't build on windows by mingw, any idea?


I think i figure out how to build the boost_context, will try it later.

guide please? I never get to know how to use VS, but certainly I want to build the Windows version. Thanks

53
DevShares / Re: DVS Light Wallet for Mac Open Beta
« on: February 01, 2015, 05:31:27 pm »
Finally I get it worked on ubuntu 14.04:


this is how I did it:
1. Install qt5.4 from PPA
Code: [Select]
add-apt-repository ppa:beineri/opt-qt54-trusty
apt-get update
apt-get install qt54-meta-full

2. set variables
Code: [Select]
export QTDIR=/opt/qt54/
export PATH=$QTDIR/bin:$PATH   
export MANPATH=$QTDIR/man:$MANPATH   
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH 

you can use:
Code: [Select]
qmake -vto check if the version is correct

3. build qml-extra & qml-material
Code: [Select]
git clone https://github.com/papyros/qml-extras
cd qml-extras
qmake
make
make check
sudo make install
cd ..

Code: [Select]
git clone https://github.com/nathanhourt/qml-material
cd qml-material
qmake
make
make check
sudo make install
cd ..

4. final thing: compile dvs-light wallet
Code: [Select]
git clone https://github.com/BitShares/bitshares
cd bitshares
git checkout devshares
git submodule init
git submodule update
cmake -DINCLUDE_LIGHT_WALLET=ON CMakeLists.txt
make

and the process is in
bitshares/programs/light_wallet/LightWallet

54
DevShares / Re: DVS Light Wallet for Mac Open Beta
« on: January 31, 2015, 02:03:38 pm »
where are the sources for the light-client? I'd like to compile locally
it's in the original repository:
https://github.com/BitShares/bitshares

just cmake with
-DINCLUDE_LIGHT_WALLET=ON

also you need to build& install:
https://github.com/papyros/qml-extras
https://github.com/nathanhourt/qml-material

however, I still encountered the problem that arhag mentioned:
3453531ms th_a       thread.cpp:95                 thread               ] name:ntp tid:140008780953344
QML debugging is enabled. Only use this in a safe environment.
3453531ms ntp        ntp.cpp:77                    request_now          ] resolving... ["pool.ntp.org",123]
3453538ms ntp        ntp.cpp:81                    request_now          ] sending request to 120.119.28.1:123
3453549ms ntp        ntp.cpp:147                   read_loop            ] received ntp reply from 120.119.28.1:123
3453549ms ntp        ntp.cpp:161                   read_loop            ] ntp offset: -210141, round_trip_delay 11227
3453549ms ntp        ntp.cpp:177                   read_loop            ] ntp_delta_time updated to -210141
QQmlApplicationEngine failed to load component
qrc:/qml/main.qml:1 module "QtQuick" version 2.4 is not installed

55
DevShares / Re: DevShares 0.6.2 Feedback
« on: January 30, 2015, 12:59:01 am »
the following feedbacks are collected from the chinese community:

The feedback I take is that the chinese community loves the bitshares Team   :P

1. fuck-3i account message  8)
2. squatting toasts name  8)




Quite true.  Sometimes the more you love,  the more you hate.

56
DevShares / Re: DevShares 0.6.2 Feedback
« on: January 29, 2015, 02:02:17 pm »
the following feedbacks are collected from the chinese community:

1. Chinese localization is still incompleted, also with lots of 'toolbar.xxx' tags


2. in Windows client, the recipient of transaction disappeared.


3. while moving my mouse cursor to the lower right corner, there will suddenly appear one more scroll bar and change the layout


4. no specific information while syncing (i.e., how many blocka are yet to be synced, or how many times left to complete syncing)


5. issues while unlock wallet on windows GUI: sometimes you have to enter your password and press unlock twice to unlock, sometimes it just get infinitely stucked on three running dots.


6. the block explorer should links to http://dvs.bitsharesblocks.com, not http://bitsharesblocks.com/

58
受托人机制是非常不错的方法,但如果控制不对,便是害死BTS最大问题,系统的通涨,对小散的股份稀释,价格的长期低迷,会使更多的人逃离BTS,请问这个问题核心开发没有任何人正视么? BM对受托人的机制到现在还未见到一点点提议,对此对BTS的发展保持长期担忧?还请各个呼吁社区正视问题的存在。。

从第一个受托人产生到现在,总共是两个月时间,5个月是?

59
公告:有人教你用命令利用BUG刷币,是假的,大家千万不要上当,自己看清楚那是转账命令,会把资金转给别人,小心在bts中重现atm转账骗局!!!!!

60
General Discussion / Re: [Video] Help testing new features in DevShares
« on: January 25, 2015, 04:06:52 pm »
Sweet .. but IIRC devshares are supposed to have VALUE too .. so its not really a "testnet" with worthless tokens!!

saw the word "testnet" on Github issues by the devs .

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 ... 25