Bitcoin Forum
June 14, 2024, 07:19:14 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 [168] 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 ... 244 »
  Print  
Author Topic: [ANN][PRT] Particle | CPU/GPU, Fast, Easy Mine, * NO PREMINE * | Official Thread  (Read 354203 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
needmoreprofit
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
March 17, 2014, 09:59:27 AM
 #3341

Particle Advanced Wallet BETA 1

Download Particle BETA 1 from Mega.co.nz

In addition, I have uploaded the source code for a very basic Sample Application.  It is a VS2012 class library project.  This sample app assembly is included in the Plugins folder of the BETA above.  This way you can see it running, and then look at the source code to see how to create an app that will load into the UI.

SampleApp

The sample app posts messages to the message bus.  Those messages are picked up by the Monitor app as it listens for IStatusMessage and IErrorMessage on the CoreMessageBus.  So you can type in a message, send it, it posts to the message bus, and moments later you can see it get received by and appear in the Monitor.


Already download wallet...
Looking very cool and work smooth. This is GREAT wallet! Exactly what I expected from you. Great work moonmoon!

PRT - PbmHw7wksumZhvf5EwznD26VedTQ3agEvU
qbd1313
Sr. Member
****
Offline Offline

Activity: 332
Merit: 250


View Profile
March 17, 2014, 10:00:18 AM
 #3342

Particle Advanced Wallet BETA 1

Download Particle BETA 1 from Mega.co.nz

In addition, I have uploaded the source code for a very basic Sample Application.  It is a VS2012 class library project.  This sample app assembly is included in the Plugins folder of the BETA above.  This way you can see it running, and then look at the source code to see how to create an app that will load into the UI.

SampleApp

The sample app posts messages to the message bus.  Those messages are picked up by the Monitor app as it listens for IStatusMessage and IErrorMessage on the CoreMessageBus.  So you can type in a message, send it, it posts to the message bus, and moments later you can see it get received by and appear in the Monitor.



Hi Moon,
Does it not support 32 bit OS?? Could you tune something so that it can be supported?

You need to install .net 4.0 environmental
你需要安装.net 4.0 或者4.5 环境
lucienlu
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
March 17, 2014, 10:03:09 AM
 #3343

Particle Advanced Wallet BETA 1

Download Particle BETA 1 from Mega.co.nz

In addition, I have uploaded the source code for a very basic Sample Application.  It is a VS2012 class library project.  This sample app assembly is included in the Plugins folder of the BETA above.  This way you can see it running, and then look at the source code to see how to create an app that will load into the UI.

SampleApp

The sample app posts messages to the message bus.  Those messages are picked up by the Monitor app as it listens for IStatusMessage and IErrorMessage on the CoreMessageBus.  So you can type in a message, send it, it posts to the message bus, and moments later you can see it get received by and appear in the Monitor.



Hi Moon,
Does it not support 32 bit OS?? Could you tune something so that it can be supported?

You need to install .net 4.0 environmental
你需要安装.net 4.0 或者4.5 环境


thanks for you reminder!!!

Get Daily Free SIGNs before too late.T4gejMMptw2hAf4Zi1BbD4ZtvJDEqeGXE8
Click here-enjoy-Pirate-coin: Pw2t7Ly1uFCjGiZrKhYeXWJnxfp6ttcC6g
3ACoin -IPO-FREE-POS 10%-Web Games.
needmoreprofit
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
March 17, 2014, 10:03:23 AM
 #3344

Particle Advanced Wallet BETA 1

Download Particle BETA 1 from Mega.co.nz

In addition, I have uploaded the source code for a very basic Sample Application.  It is a VS2012 class library project.  This sample app assembly is included in the Plugins folder of the BETA above.  This way you can see it running, and then look at the source code to see how to create an app that will load into the UI.

SampleApp

The sample app posts messages to the message bus.  Those messages are picked up by the Monitor app as it listens for IStatusMessage and IErrorMessage on the CoreMessageBus.  So you can type in a message, send it, it posts to the message bus, and moments later you can see it get received by and appear in the Monitor.



Hi Moon,
Does it not support 32 bit OS?? Could you tune something so that it can be supported?
Wallet support 32bit OS , first you need config BitParticle.Wallet.exe.config file :
<add key="rpcuser" value="PUT you RPCUSER"/>
<add key="rpcpassword" value="PUT you RPCPASSWORD"/>
You can set rpcuser and rpcpassword in particle.conf( must be in C:\Users\home\AppData\Roaming\Particle\)

PRT - PbmHw7wksumZhvf5EwznD26VedTQ3agEvU
moonmoon (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
March 17, 2014, 10:08:54 AM
 #3345

How to listen to the message bus:

Code:
BitParticleContext.Instance.CoreMessageBus.MessageReceived += CoreMessageBus_MessageReceived;

And then:

Code:
void CoreMessageBus_MessageReceived(object sender, Interface.IMessageBusEventArgs<Interface.CoreMessages.ICoreMessage> e)
        {
            if (e.Message is IGetInfoResponseMessage)
            {
                BitParticleContext.Instance.SynchronizationContext.Post(AddDifficulty, ((IGetInfoResponseMessage)e.Message).GetInfoResult.Difficulty);
            }
        }

You can see above that we are then posting to a SynchronizationContext.  You need to do this if you are going to update your user interface, to ensure you are on the UI thread.  In the above example it calls a method AddDifficulty that adds a value to the status chart.

You can also use the alternate syntax:
Code:
BitParticleContext.Instance.CoreMessageBus.MessageReceived += new EventHandler<IMessageBusEventArgs<ICoreMessage>>(CoreListener);
            BitParticleContext.Instance.AppMessageBus.MessageReceived += new EventHandler<IMessageBusEventArgs<IAppMessage>>(AppListener);   

And e.g.:

Code:
private void CoreListener(object sender, IMessageBusEventArgs<ICoreMessage> e)
        {
            AppendMessage(e.Message.ToString());
        }

        private void AppListener(object sender, IMessageBusEventArgs<IAppMessage> e)
        {
            AppendMessage(e.Message.ToString());
        }

But as above, you can handle the MessageReceived event and then test the type of the Message to filter for the ones you are interested in.

particle://prt/send/Pjh1SXpcgaQ7bbbweXU1ioQUWcNtW4yZZx
vsmamm
Sr. Member
****
Offline Offline

Activity: 278
Merit: 250


View Profile
March 17, 2014, 10:11:19 AM
 #3346

How to listen to the message bus:

Code:
BitParticleContext.Instance.CoreMessageBus.MessageReceived += CoreMessageBus_MessageReceived;

And then:

Code:
void CoreMessageBus_MessageReceived(object sender, Interface.IMessageBusEventArgs<Interface.CoreMessages.ICoreMessage> e)
        {
            if (e.Message is IGetInfoResponseMessage)
            {
                BitParticleContext.Instance.SynchronizationContext.Post(AddDifficulty, ((IGetInfoResponseMessage)e.Message).GetInfoResult.Difficulty);
            }
        }

You can see above that we are then posting to a SynchronizationContext.  You need to do this if you are going to update your user interface, to ensure you are on the UI thread.  In the above example it calls a method AddDifficulty that adds a value to the status chart.

You can also use the alternate syntax:
Code:
BitParticleContext.Instance.CoreMessageBus.MessageReceived += new EventHandler<IMessageBusEventArgs<ICoreMessage>>(CoreListener);
            BitParticleContext.Instance.AppMessageBus.MessageReceived += new EventHandler<IMessageBusEventArgs<IAppMessage>>(AppListener);   

And e.g.:

Code:
private void CoreListener(object sender, IMessageBusEventArgs<ICoreMessage> e)
        {
            AppendMessage(e.Message.ToString());
        }

        private void AppListener(object sender, IMessageBusEventArgs<IAppMessage> e)
        {
            AppendMessage(e.Message.ToString());
        }

But as above, you can handle the MessageReceived event and then test the type of the Message to filter for the ones you are interested in.


You'd better put these instructions in the first page

CarlosWing
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
March 17, 2014, 10:25:25 AM
 #3347

......

Get Daily Free SignatureCoins. Swmovzkbt7KuLq59j1exChkocEznU2VJeH
moonmoon (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
March 17, 2014, 10:31:12 AM
 #3348

Carlos update your rpcuser and rpcpassword in BitParticle.Wallet.exe.conf to match what is in your particle.conf.

particle://prt/send/Pjh1SXpcgaQ7bbbweXU1ioQUWcNtW4yZZx
CarlosWing
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
March 17, 2014, 10:33:00 AM
 #3349

Carlos update your rpcuser and rpcpassword in BitParticle.Wallet.exe.conf to match what is in your particle.conf.
..YEs...I was copy the wrong BitParticle.Wallet.exe.conf..

Get Daily Free SignatureCoins. Swmovzkbt7KuLq59j1exChkocEznU2VJeH
qbd1313
Sr. Member
****
Offline Offline

Activity: 332
Merit: 250


View Profile
March 17, 2014, 10:37:02 AM
 #3350

Carlos update your rpcuser and rpcpassword in BitParticle.Wallet.exe.conf to match what is in your particle.conf.
..YEs...I was copy the wrong BitParticle.Wallet.exe.conf..

pls tell us how to use it
thx
CarlosWing
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
March 17, 2014, 10:37:27 AM
 #3351

Carlos update your rpcuser and rpcpassword in BitParticle.Wallet.exe.conf to match what is in your particle.conf.
It has some error
It said :

ParticleNewsFeed:The underlying connection was closed: An unexpected error occurred on a send

What it means

Get Daily Free SignatureCoins. Swmovzkbt7KuLq59j1exChkocEznU2VJeH
needmoreprofit
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
March 17, 2014, 10:46:20 AM
 #3352

Just copy this BitParticle.Wallet.exe.config to you new wallet folder (Particle Advanced Wallet BETA 1) and to  Daemon folder (in new wallet folder) .
And copy this particle.conf to you Particle roaming folder (my folder is - C:\Users\home\AppData\Roaming\Particle\)

PRT - PbmHw7wksumZhvf5EwznD26VedTQ3agEvU
qbd1313
Sr. Member
****
Offline Offline

Activity: 332
Merit: 250


View Profile
March 17, 2014, 10:51:49 AM
 #3353

Just copy this BitParticle.Wallet.exe.config to you new wallet folder (Particle Advanced Wallet BETA 1) and to  Daemon folder (in new wallet folder) .
And copy this particle.conf to you Particle roaming folder (my folder is - C:\Users\home\AppData\Roaming\Particle\)

+1, Cheesy
thx,needmoreprofit
waldwichtel
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
March 17, 2014, 10:53:17 AM
 #3354

I'm unable to start the wallet on any of my computers (Win7 64).
Always stucks at "starting particled"

according to the taskmanager particled got started and works, but wallet's still stucked at startup Sad
is there anything else than net.framework 4.5 i have to install?
needmoreprofit
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
March 17, 2014, 10:56:09 AM
 #3355

I'm unable to start the wallet on any of my computers (Win7 64).
Always stucks at "starting particled"

according to the taskmanager particled got started and works, but wallet's still stucked at startup Sad
is there anything else than net.framework 4.5 i have to install?
You have this problem because you config file and you particle.conf not convergent . Do like i write and you will don't stuck on "starting particled"

PRT - PbmHw7wksumZhvf5EwznD26VedTQ3agEvU
waldwichtel
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
March 17, 2014, 11:05:08 AM
 #3356

You have this problem because you config file and you particle.conf not convergent . Do like i write and you will don't stuck on "starting particled"
Thought i did so, but got typo at rpcport. Now all's fine Smiley

Thanks
BrienLai
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 17, 2014, 11:18:28 AM
 #3357

finally, it is out.
needmoreprofit
Member
**
Offline Offline

Activity: 83
Merit: 10


View Profile
March 17, 2014, 11:27:15 AM
 #3358

Someone dumping price on bter ...

PRT - PbmHw7wksumZhvf5EwznD26VedTQ3agEvU
qbd1313
Sr. Member
****
Offline Offline

Activity: 332
Merit: 250


View Profile
March 17, 2014, 12:03:28 PM
 #3359

Someone dumping price on bter ...
No problem,take it esay,my friend Wink
qbd1313
Sr. Member
****
Offline Offline

Activity: 332
Merit: 250


View Profile
March 17, 2014, 12:18:28 PM
 #3360

The Particle Foundation Discussion Process

Propose an idea ---> Vote this idea ---> Free or how much funding ---> Who and How do it ---> Doing it ---> DONE



what do you think about it? it is ok?
Pages: « 1 ... 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 [168] 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 ... 244 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!