Bitcoin Forum
May 07, 2024, 09:56:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 [1007] 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 ... 1315 »
  Print  
Author Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000  (Read 2170603 times)
pinballdude
Sr. Member
****
Offline Offline

Activity: 286
Merit: 250


View Profile
April 09, 2015, 09:27:12 PM
 #20121

The donations to our BTC account cleared up by re-syncing the blockchain:

- I donated 0.03819606 BTC at 08.32 CET today
- Someone else donated 0.0799 at 14.00 CET today, but remains anonymous. If you want you nick on the Hall of Fame-page, please email burst@countermail or PM me Smiley No-matter-what, thank you for the donation! Smiley

i sent a small donation of 2500 burst
someone else also sent 2500, don't know who that was.

my transaction as a message mentioning my nick
1715118996
Hero Member
*
Offline Offline

Posts: 1715118996

View Profile Personal Message (Offline)

Ignore
1715118996
Reply with quote  #2

1715118996
Report to moderator
If you see garbage posts (off-topic, trolling, spam, no point, etc.), use the "report to moderator" links. All reports are investigated, though you will rarely be contacted about your reports.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715118996
Hero Member
*
Offline Offline

Posts: 1715118996

View Profile Personal Message (Offline)

Ignore
1715118996
Reply with quote  #2

1715118996
Report to moderator
1715118996
Hero Member
*
Offline Offline

Posts: 1715118996

View Profile Personal Message (Offline)

Ignore
1715118996
Reply with quote  #2

1715118996
Report to moderator
1715118996
Hero Member
*
Offline Offline

Posts: 1715118996

View Profile Personal Message (Offline)

Ignore
1715118996
Reply with quote  #2

1715118996
Report to moderator
loonb
Full Member
***
Offline Offline

Activity: 193
Merit: 100



View Profile
April 09, 2015, 09:48:11 PM
 #20122

Hey, can i get smwhr black t-shirt with brst logo?
Irontiga
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
April 09, 2015, 10:19:08 PM
 #20123

Hey, can i get smwhr black t-shirt with brst logo?

Hmm...nope, but u can get a B clip. https://burstforum.com/index.php?threads/3d-printed-burst-b-clip.177/
FakeAccount
Full Member
***
Offline Offline

Activity: 248
Merit: 100


I'm not real


View Profile
April 09, 2015, 10:53:37 PM
 #20124

Sweet!!! ty!
does anyone have any suggestions on how to modify the java wallet start batch file so that when the java wallet crashes, the bat file will launch it again?
I added a simple :start and goto start around current bat file but I think it just starts it in an infinite loop.
any ideas?
the java wallet started crashing today on win 10 all of a sudden.

Yeah, I can modify my run anywhere script to that - as long as it is fully crashing, if it's just going comatose I can't detect that. Incorporating a "kill the wallet every n <time period> would also work with the script.

H.

Here you go:



H.


so when I'm testing this, I get this:

C:\burst_1.2.2>runLoop.bat
Checking Path only
Java found at: C:\Windows\System32\java.exe
C:\burst_1.2.2>

it launches the browser but local wallet does not start

Tested it on a couple of my machines, and it's working without issue - the wallet does start in a separate window though. However the fact you're dropping out of the batch file indicates something is failing. Change the @echo off to @echo on and run it again, then post the full output.

H.


C:\burst_1.2.2_2>runLoop.bat

C:\burst_1.2.2_2>echo Checking Path only
Checking Path only

C:\burst_1.2.2_2>for %f in (java.exe) do if exist %~$path:f (
echo Java found at: %~$path:f
 set launch="BURST" %~$path:f -cp burst.jar;lib\*;conf nxt.Nxt
 goto startup
)  else (
echo Not found in Path, Searching full C drive
 for /F "tokens=*" %f in ('where /F /R C: java.exe') do (
echo Java found at: %f
 set launch="BURST" %f -cp burst.jar;lib\*;conf nxt.Nxt
 goto startup
)
)

C:\burst_1.2.2_2>if exist C:\Windows\System32\java.exe (
echo Java found at: C:\Windows\System32\java.exe
 set launch="BURST" C:\Windows\System32\java.exe -cp burst.jar;lib\*;conf nxt.Nxt
 goto startup
)  else (
echo Not found in Path, Searching full C drive
 for /F "tokens=*" %f in ('where /F /R C: java.exe') do (
echo Java found at: java.exe
 set launch="BURST" java.exe -cp burst.jar;lib\*;conf nxt.Nxt
 goto startup
)
)
Java found at: C:\Windows\System32\java.exe

C:\burst_1.2.2_2>start http://localhost:8125
C:\burst_1.2.2_2>
haitch
Hero Member
*****
Offline Offline

Activity: 539
Merit: 500



View Profile
April 09, 2015, 11:14:12 PM
 #20125

Sweet!!! ty!
does anyone have any suggestions on how to modify the java wallet start batch file so that when the java wallet crashes, the bat file will launch it again?
I added a simple :start and goto start around current bat file but I think it just starts it in an infinite loop.
any ideas?
the java wallet started crashing today on win 10 all of a sudden.

Yeah, I can modify my run anywhere script to that - as long as it is fully crashing, if it's just going comatose I can't detect that. Incorporating a "kill the wallet every n <time period> would also work with the script.

H.

Here you go:



H.


so when I'm testing this, I get this:

C:\burst_1.2.2>runLoop.bat
Checking Path only
Java found at: C:\Windows\System32\java.exe
C:\burst_1.2.2>

it launches the browser but local wallet does not start

Tested it on a couple of my machines, and it's working without issue - the wallet does start in a separate window though. However the fact you're dropping out of the batch file indicates something is failing. Change the @echo off to @echo on and run it again, then post the full output.

H.



Java found at: C:\Windows\System32\java.exe

C:\burst_1.2.2_2>start http://localhost:8125
C:\burst_1.2.2_2>

Looks fine, until it fails to even try to start the wallet .....

change the batch to look like this:
.....
:startup
REM start http://localhost:8125        <-- change this line
:loop
Echo Launch Params: %launch%      <-- add this line
start /wait %launch%
goto :loop
:done
pause




  ███        ███    ███
   ███      ███    ███
    ███    ███    ███
     ███  ███    ███
█████████████████████████
        ███    ███
       ███    ███
      ███    ███
IRELINE


       ██████
      ██████

     ██████
    ██████
   ██████
  ██████
 ██████
██████

   Largest Fund worldwide for distributed application makers   
   ███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████

       wireline.io  -  facebook.com/wirelineio  -  @wirelineio



       ██████
      ██████

     ██████
    ██████
   ██████
  ██████
 ██████
██████

ICO
  September 1
mczarnek
Hero Member
*****
Offline Offline

Activity: 527
Merit: 502


View Profile
April 10, 2015, 12:07:33 AM
 #20126

The donations to our BTC account cleared up by re-syncing the blockchain:

- I donated 0.03819606 BTC at 08.32 CET today
- Someone else donated 0.0799 at 14.00 CET today, but remains anonymous. If you want you nick on the Hall of Fame-page, please email burst@countermail or PM me Smiley No-matter-what, thank you for the donation! Smiley

My name can appear on a list if I donate? That actually does make me want to donate a little. What address?

BitSend ◢◤Clients | Source
www.bitsend.info
█▄
█████▄
████████▄
███████████▄
██████████████
███████████▀
████████▀
█████▀
█▀












Segwit | Core 0.14 | Masternodes
XEVAN | DK3 | Electrum soon
Bitcore - BTX/BTC -Project












BSD -USDT | Bittrex | C.Gather | S.Exchange
Cryptopia | NovaExchange | Livecoin
Litebit.eu | Faucet | Bitsend Airdrop













████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████

████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████
haitch
Hero Member
*****
Offline Offline

Activity: 539
Merit: 500



View Profile
April 10, 2015, 12:10:25 AM
 #20127

The donations to our BTC account cleared up by re-syncing the blockchain:

- I donated 0.03819606 BTC at 08.32 CET today
- Someone else donated 0.0799 at 14.00 CET today, but remains anonymous. If you want you nick on the Hall of Fame-page, please email burst@countermail or PM me Smiley No-matter-what, thank you for the donation! Smiley

My name can appear on a list if I donate? That actually does make me want to donate a little. What address?

From mmmaybe's sig:

Quote
Please support the BURST PR team by donating some satoshis or BURST (as we have no funding from premine or IPOs):
BTC: 17SrpSXT6Zv1DvtyoSaSM1mzGhCMX7szRg BURST: BURST-NUKZ-MDJR-G7VD-BQ5A6
For the time being, donors will be honored on http://burstcoin.info/about/. Spending of donation will be reported on BurstForum.com: http://bit.ly/1JiBu2t. Send a PM or an email to burst@countermail.com so we can give you proper credit. Thanks, The BURST' Community PR TEAM

H.




  ███        ███    ███
   ███      ███    ███
    ███    ███    ███
     ███  ███    ███
█████████████████████████
        ███    ███
       ███    ███
      ███    ███
IRELINE


       ██████
      ██████

     ██████
    ██████
   ██████
  ██████
 ██████
██████

   Largest Fund worldwide for distributed application makers   
   ███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████

       wireline.io  -  facebook.com/wirelineio  -  @wirelineio



       ██████
      ██████

     ██████
    ██████
   ██████
  ██████
 ██████
██████

ICO
  September 1
mczarnek
Hero Member
*****
Offline Offline

Activity: 527
Merit: 502


View Profile
April 10, 2015, 02:22:16 AM
 #20128

The donations to our BTC account cleared up by re-syncing the blockchain:

- I donated 0.03819606 BTC at 08.32 CET today
- Someone else donated 0.0799 at 14.00 CET today, but remains anonymous. If you want you nick on the Hall of Fame-page, please email burst@countermail or PM me Smiley No-matter-what, thank you for the donation! Smiley

My name can appear on a list if I donate? That actually does make me want to donate a little. What address?

From mmmaybe's sig:

Quote
Please support the BURST PR team by donating some satoshis or BURST (as we have no funding from premine or IPOs):
BTC: 17SrpSXT6Zv1DvtyoSaSM1mzGhCMX7szRg BURST: BURST-NUKZ-MDJR-G7VD-BQ5A6
For the time being, donors will be honored on http://burstcoin.info/about/. Spending of donation will be reported on BurstForum.com: http://bit.ly/1JiBu2t. Send a PM or an email to burst@countermail.com so we can give you proper credit. Thanks, The BURST' Community PR TEAM

H.


Thanks Smiley

BitSend ◢◤Clients | Source
www.bitsend.info
█▄
█████▄
████████▄
███████████▄
██████████████
███████████▀
████████▀
█████▀
█▀












Segwit | Core 0.14 | Masternodes
XEVAN | DK3 | Electrum soon
Bitcore - BTX/BTC -Project












BSD -USDT | Bittrex | C.Gather | S.Exchange
Cryptopia | NovaExchange | Livecoin
Litebit.eu | Faucet | Bitsend Airdrop













████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████

████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████
k0r3
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
April 10, 2015, 03:09:00 AM
 #20129

Quote
Please support the BURST PR team by donating some satoshis or BURST (as we have no funding from premine or IPOs):
BTC: 17SrpSXT6Zv1DvtyoSaSM1mzGhCMX7szRg BURST: BURST-NUKZ-MDJR-G7VD-BQ5A6

Just sent 25k, Keep up the good work!
FakeAccount
Full Member
***
Offline Offline

Activity: 248
Merit: 100


I'm not real


View Profile
April 10, 2015, 03:21:48 AM
 #20130

Blago,
when your miner encounters this condition: "Unexpected end of file xxxxxxxxxxxxxxxxxxx_100000000_xxxxxxxx_xxxxxx" i don't think the memory is released/cleared the same way as if a thread finishes normally.  Does this make sense or am I imagining this? thanks!

hmmm.... memory should be released/cleared as normal. Can you PM me screenshots of miner, memory usage and plot's filesize/filename? 
This error should not appear at all.
it does appear due to the last stagger not being properly written out I think when that specific plot file was generated. I didn't want to re-plot a large file so the last few gigs are not important, but it does cause this error to pop up on that plot file often enough, it's displayed by the miner.  it is not caused by memory issue.  the miner reads it all the way till the last few gigs, so i don't care about this error, other than i noticed memory clearing differently if a mining round encounters it.

however, I have made an OS change earlier today and I don't have the same win7 battles anymore, so I don't experience issues related to this on win7 anymore.  i should have switched much sooner in retrospect.
m3ta
Sr. Member
****
Offline Offline

Activity: 435
Merit: 250



View Profile WWW
April 10, 2015, 06:55:11 AM
 #20131

Burstcoin English Wiki http://wiki.burstcoin.de

Update and News: Poolmining Guide is now available

This wiki will soon be implemented in the offical wiki.


If you want to keep parroting the same message, at least fix the "offical" typo.

Why the frell so many retards spell "ect" as an abbreviation of "Et Cetera"? "ETC", DAMMIT! http://en.wikipedia.org/wiki/Et_cetera

Host:/# rm -rf /var/forum/trolls
mmmaybe
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile WWW
April 10, 2015, 07:25:06 AM
Last edit: April 10, 2015, 07:41:03 AM by mmmaybe
 #20132

The donations to our BTC account cleared up by re-syncing the blockchain:

- I donated 0.03819606 BTC at 08.32 CET today
- Someone else donated 0.0799 at 14.00 CET today, but remains anonymous. If you want you nick on the Hall of Fame-page, please email burst@countermail or PM me Smiley No-matter-what, thank you for the donation! Smiley

i sent a small donation of 2500 burst
someone else also sent 2500, don't know who that was.

my transaction as a message mentioning my nick


Thanks! Good idea with the inclusion of nick Smiley Donors, that is a third way verifying your contribution.



I'm really happy someone donated a smaller sum as those can prove really important if *many* holders/miner understand that they do not need to donate 100K.

Would be great if we could create a culture where smaller donations (few hundred/Ks) become an everyday thing for holders/miner to people/groups contributing to BURST. That can very well bring in more money overall to the devs (or who you want to support) than the huuuge donations (which we ofc also welcome as they today are necessary;) ).

It might also make more community members contributing with "dev work" if they almost know they will get a few K for it.



mmmaybe
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile WWW
April 10, 2015, 10:16:09 AM
Last edit: April 10, 2015, 12:51:35 PM by mmmaybe
 #20133

We've changed the BURST donation address to:

BURST-BRL2-BDNK-EZW8-5F3V8



DO NOT DONATE TO THE OLD ADDRESS!!

So far, these donations have been given but the majority is anonymous. That's ok to be, but if you want credit on the Hall of Fame-page (http://burstcoin.info/about/) please email burst@countermail.com or PM me.




EDIT: The presentation of donors has been a bit updated too

bobafett
Hero Member
*****
Offline Offline

Activity: 619
Merit: 500



View Profile
April 10, 2015, 11:59:33 AM
 #20134

Burstcoin English Wiki http://wiki.burstcoin.de

Update and News: Plot Optimization with Windows Guide is now available

This wiki will soon be implemented in the offical wiki.

mczarnek
Hero Member
*****
Offline Offline

Activity: 527
Merit: 502


View Profile
April 10, 2015, 01:20:43 PM
 #20135

Hello BURST community !!

Can anyone please guide me on how to create a custom burn address?

Will appreciate your kind help.

http://wiki.burstcoin.de/index.php?title=FAQ

If vandalay really meant a burn address this would not help completely, as he would have access to it.
Well, at least I would not trust a burn address like that, just send coins to genesis acc

Can you please elaborate on the genesis account?
I know it exists for NXT as well

how is it provably unspendable?
and what is the public key of the BURST gen account?

You guys are sure it works in Burst as well?  I could see burstdev having removed it and it just being a regular account.. which has a known password.

You should probably test it by sending a couple Burst there before using it as a Burn address.

BitSend ◢◤Clients | Source
www.bitsend.info
█▄
█████▄
████████▄
███████████▄
██████████████
███████████▀
████████▀
█████▀
█▀












Segwit | Core 0.14 | Masternodes
XEVAN | DK3 | Electrum soon
Bitcore - BTX/BTC -Project












BSD -USDT | Bittrex | C.Gather | S.Exchange
Cryptopia | NovaExchange | Livecoin
Litebit.eu | Faucet | Bitsend Airdrop













████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████

████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████
mmmaybe
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile WWW
April 10, 2015, 03:56:53 PM
Last edit: April 10, 2015, 04:19:04 PM by mmmaybe
 #20136

The donation section at http://burstcoin.info/about/ has been updated - thanks to k0r3 for 25,000 BURST! Smiley

Please remember that we (perhaps mostly) have expenses in BTC, and we would rather not sell BURSTs to get BTC. So your satoshi change is very welcome Smiley

k0r3
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
April 10, 2015, 04:16:23 PM
 #20137

The donation section at http://burstcoin.info/about/ has been updated - thanks to k0r3 for 25,000 BURST! Smiley

Please remember that we have expenses in BTC too, and we would rather not sell BURSTs to get BTC. So your satoshi change is very welcome Smiley

Sent 0.01 BTC!
mmmaybe
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile WWW
April 10, 2015, 04:19:40 PM
 #20138

The donation section at http://burstcoin.info/about/ has been updated - thanks to k0r3 for 25,000 BURST! Smiley

Please remember that we have expenses in BTC too, and we would rather not sell BURSTs to get BTC. So your satoshi change is very welcome Smiley

Sent 0.01 BTC!

Great, thanks Smiley

k0r3
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
April 10, 2015, 04:23:12 PM
 #20139

The donation section at http://burstcoin.info/about/ has been updated - thanks to k0r3 for 25,000 BURST! Smiley

Please remember that we have expenses in BTC too, and we would rather not sell BURSTs to get BTC. So your satoshi change is very welcome Smiley

Sent 0.01 BTC!

Great, thanks Smiley

No problem, I love burst  Grin
maxpayne1256
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
April 10, 2015, 06:10:35 PM
 #20140

I wasn't here since a longe time -> are there any important news about burst?
Pages: « 1 ... 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 [1007] 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 ... 1315 »
  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!