Bitcoin Forum
May 25, 2024, 07:40:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 ... 104 »
301  Other / Meta / Re: Beta of new forum software now officially open on: April 19, 2016, 04:32:43 AM
Also why doesn't it show the my posts made after 11th April ?

That's the day they imported the current database into the Beta to have content, it's not synced to the live forum.
Ah I see. But where did they come up with the magical number of 1505?

Edit : There are no ranks on the new forum?
Edit 2 : What about personal messages? Wont they be imported?

1505 is just a miscalculation/placeholder for your post count, everyone has absurd values, it also seems everyone is "HERO" as of now which I'm sure will be fixed with time

PMs? https://www.youtube.com/watch?v=4QRgKbDsVGU
302  Other / Meta / Re: Beta of new forum software now officially open on: April 19, 2016, 04:21:47 AM
Also why doesn't it show the my posts made after 11th April ?

That's the day they imported the current database into the Beta to have content, it's not synced to the live forum.
303  Economy / Services / Re: PHP programmer needed on: April 19, 2016, 03:50:30 AM
LOL. Well ok. Tongue

Just tried to send half of that to Bitsky since his was a much better solution but forgot a zero  Grin
https://www.blocktrail.com/BTC/tx/469547a17e4e625799cc184324b14c1438c9be5fb63cd8f19da9e3d9973f5f5d
304  Economy / Digital goods / Re: Your OWN [Private] Pornportal Account ! Brazzers,Mofos etc[Vouch copy Available] on: April 19, 2016, 12:55:57 AM
Hey Brute,

you should check your PMs... Bitspill is a nice guy but i would also be up for the vouch Smiley
i already sent an vouch account to whywefight  2 months ago !  Roll Eyes  

gg whywefight :|



Good luck with the sale TheBrute Smiley
305  Economy / Services / Re: PHP programmer needed on: April 18, 2016, 11:53:56 PM
Why so complex?

Hehe, haven't touched php in a while and it was quite late. But I knew it was bad thus my comment about being a fun exercise and there being better ways Wink

I thought about a pure regex solution later but didn't know the function to cal, I was browsing the docs for each function  as I got to it because I couldn't remember them and I didn't feel like going back at it again, your solution is much better Tongue
306  Economy / Services / Re: PHP programmer needed on: April 18, 2016, 04:43:23 AM
Here's a quick solution, there's probably a more elegant/performant way around however.


Code:
<?php
function extractUppercase($str) { 
$ret = array();
$arr preg_split("/[\s,\.\p{P}]+/"$str);

$count count($arr);
for ($i 0$i $count$i++) {                
if ($arr[$i] == strtoupper($arr[$i]) && !empty($arr[$i]) && !is_numeric($arr[$i]))
$ret[] = $arr[$i];
}
return $ret;
}


echo 
"<pre>";


$test '4. A quick and lively dance. [Obs.]
Make you dance canary With sprightly fire and motion. Shak.
CANARY
Ca*na"ry, v. i.
Defn: To perform the canary dance; to move nimbly; to caper. [Obs.]
But to jig of a tune at the tongue\'s end, canary to it with your
feet. Shak.
CANARY BIRD
Ca*na"ry bird`. (Zoöl.)
Defn: A small singing bird of the Finch family (Serinus Canarius), a
native of the Canary Islands. It was brought to Europe in the 16th
century, and made a household pet. It generally has a yellowish body
with the wings and tail greenish, but in its wild state it is more
frequently of gray or brown color. It is sometimes called canary
finch.canary.
Canary bird flower (Bot.), a climbing plant (Tropæolum peregrinum)
with canary-colored flowers of peculiar form; -- called also canary
vine.
CANASTER
Ca*nas"ter, n. Etym: [Sp. canasta, canastro, basket, fr. L.
canistrum. See Canister.]
Defn: A kind of tobacco for smoking, made of the dried leaves,
coarsely broken; -- so called from the rush baskets in which it is
packed in South America. McElrath.
CAN BUOY
Can" buoy`.
Defn: See under Buoy, n.
CANCAN
Can"can, n. Etym: [F.]
Defn: A rollicking French dance, accompanied by indecorous or
extravagant postures and gestures.
CANCEL
Can"cel, v. i. [Imp. & p. p. Canceled or Cancelled (; p. pr. & vb. n.
Canceling or Cancelling.] Etym: [L. cancellare to make like a
lattice, to strike or cross out (cf. Fr. canceller, OF. canceler) fr.
cancelli lattice, crossbars, dim. of cancer lattice; cf. Gr.
Chancel.}]'
;

$result extractUppercase($test);

echo 
"Test:\n\n"$test"\n\n\n\nResult:\n\n";
print_r($result);

echo 
"</pre>";
?>

Which leads to this sample output:

Test:

4. A quick and lively dance. [Obs.]
Make you dance canary With sprightly fire and motion. Shak.
CANARY
Ca*na"ry, v. i.
Defn: To perform the canary dance; to move nimbly; to caper. [Obs.]
But to jig of a tune at the tongue's end, canary to it with your
feet. Shak.
CANARY BIRD
Ca*na"ry bird`. (Zoöl.)
Defn: A small singing bird of the Finch family (Serinus Canarius), a
native of the Canary Islands. It was brought to Europe in the 16th
century, and made a household pet. It generally has a yellowish body
with the wings and tail greenish, but in its wild state it is more
frequently of gray or brown color. It is sometimes called canary
finch.canary.
Canary bird flower (Bot.), a climbing plant (Tropæolum peregrinum)
with canary-colored flowers of peculiar form; -- called also canary
vine.
CANASTER
Ca*nas"ter, n. Etym: [Sp. canasta, canastro, basket, fr. L.
canistrum. See Canister.]
Defn: A kind of tobacco for smoking, made of the dried leaves,
coarsely broken; -- so called from the rush baskets in which it is
packed in South America. McElrath.
CAN BUOY
Can" buoy`.
Defn: See under Buoy, n.
CANCAN
Can"can, n. Etym: [F.]
Defn: A rollicking French dance, accompanied by indecorous or
extravagant postures and gestures.
CANCEL
Can"cel, v. i. [Imp. & p. p. Canceled or Cancelled (; p. pr. & vb. n.
Canceling or Cancelling.] Etym: [L. cancellare to make like a
lattice, to strike or cross out (cf. Fr. canceller, OF. canceler) fr.
cancelli lattice, crossbars, dim. of cancer lattice; cf. Gr.
Chancel.}]



Result:

Array
(
    [ 0] => A
    [ 1] => CANARY
    [ 2] => CANARY
    [ 3] => BIRD
    [ 4] => A
    [ 5] => CANASTER
    [ 6] => L
    [ 7] => A
    [ 8] => CAN
    [ 9] => BUOY
    [ 10] => CANCAN
    [ 11] => F
    [ 12] => A
    [ 13] => CANCEL
    [ 14] => L
    [ 15] => OF
)



If it does the deed feel free to send a tip to 12VJryWvJaUNa9LWKVnY38Ds1YMqZjE8L1 otherwise this was a fun exercise Wink
307  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 17, 2016, 02:45:32 PM
Is there any luck for a Sia mining pool yet? Difficulty is too high to solo mine

I started working on a mining pool and got the basic framework down but it currently does not payout or track much for worker performance.

Without a direct incentive to continue working on it I've been redirected towards other projects, I hope to get back and work on the mining pool again soon tm


lol. Number of commits is not a measure of progress. Did you miss our beta release last weekend?

You announced that Storj is joining Azure as BaaS. Can you provide an Azure's official link for this announcement? I can't find it anywhere online.

I also couldn't find anything on either Azure github repository for their templates. Although isn't this question better asked in the StorJ thread than here?
308  Economy / Services / Re: WWII potentially new work. Audio transcription. on: April 17, 2016, 05:52:18 AM
I completed the file "Complete_Broadcast_Day_440606_Part_014". Please verify the same.

My BTC address is: 1CMfb5cUG8o3PxPwy9XVDdnaaHS8pz2jps

I want to take up Part 11.

The accuracy was quite well however there were a handful of words mixed up that I'll have to go back and fix Wink

A few examples:
nasty = Nazi
reasons = beaches
animated world = any news or


0.03 BTC ($12.87) $5 for timestamps and $7.87/$10 for accuracy and length
https://www.blocktrail.com/BTC/tx/9ff671e0148c3d05b81174c4d8bb323220e915f9c24717a01b7bd245b3758b7c
309  Economy / Services / Re: WWII potentially new work. Audio transcription. on: April 16, 2016, 09:38:41 PM
I completed the file "Complete_Broadcast_Day_440606_Part_014". Please verify the same.

My BTC address is: 1CMfb5cUG8o3PxPwy9XVDdnaaHS8pz2jps

I want to take up Part 11.

I may just be overly tired... where did you send me the completed transcript?

Sorry. I forgot to post the link where I uploaded the file: drive.google.com/drive/folders/0B6zNrNXdWm43VlJQa3BnZ1V1cGM

Just skimmed the document at work, it looks pretty good and you weren't kidding when you said that track had a lot of music haha


After work tonight I'll do a more thorough verification and send the payment.

Did you use any software for the timestamps or did you do it manually?
310  Economy / Services / Re: WWII potentially new work. Audio transcription. on: April 16, 2016, 07:22:05 PM
I completed the file "Complete_Broadcast_Day_440606_Part_014". Please verify the same.

My BTC address is: 1CMfb5cUG8o3PxPwy9XVDdnaaHS8pz2jps

I want to take up Part 11.

I may just be overly tired... where did you send me the completed transcript?
311  Other / Off-topic / Re: Flat Earth on: April 15, 2016, 12:22:57 AM
Start from a point A and head towards North and just start walking/riding/flying with no directional change . You will someday reach at the same point A if you have got enough fuel for this cruise .

Two questions.

1) How will you know you haven't changed direction? At some point you'll have to step around a tree or building

2) What would that prove?
312  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 14, 2016, 10:38:21 PM
Just an FYI, the mac qt is buggy; doesn't open properly once the app has been minimized, and takes up much more system resources than any other qt wallets I have installed on my computer.

Any plans to update this soon?

There is no QT wallet for Sia.

Sia uses a framework by the name Electron which is a fancy desktop wrapper around Chromium, it should require just about as much system resources as opening a couple of tabs in Google Chrome. What do you consider to be excessive in terms of system usage?

As for the minimization issue I can't offer any assistance as I don't have a Mac, perhaps another can chime in who may be able to help.
313  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 14, 2016, 04:37:25 PM
I tried beta and I'm saying it's awesome! After Storj the best cloud file hosting platform. One of the best investments. So cheap... I predict x3-x5 price will up soon.

Can I ask why you place it after StorJ?

Can't make Sia better if they don't know what's "wrong" with it.
314  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 12, 2016, 09:04:21 PM
I think we need other exchange now, buy support is pretty nice.
Thanks.

Sia is on 2 exchanges.

https://www.cryptomic.com/trade?c=SC&p=BTC
https://poloniex.com/exchange#btc_sc
315  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 08, 2016, 09:53:32 PM
Tyring to sync wallet and get this error

with v0.52

Quote
./siad
Loading...
(1/7) Loading gateway...
(2/7) Loading consensus...
(3/7) Loading transaction pool...
unexpected fault address 0x30c5c040
fatal error: fault
[signal 0xb code=0x1 addr=0x30c5c040 pc=0x292e00]

goroutine 12 [running]:
runtime.throw(0x585f38, 0x5)
   /usr/local/go/src/runtime/panic.go:530 +0x79 fp=0x111ed16c sp=0x111ed160
runtime.sigpanic()
   /usr/local/go/src/runtime/sigpanic_unix.go:27 +0x27b fp=0x111ed198 sp=0x111ed16c
github.com/NebulousLabs/bolt.(*Tx).rollback(0x110ed700)
   /home/luke/go/src/github.com/NebulousLabs/bolt/tx.go:245 +0x60 fp=0x111ed1b8 sp=0x111ed198
github.com/NebulousLabs/bolt.(*Tx).Commit(0x110ed700, 0x0, 0x0)
   /home/luke/go/src/github.com/NebulousLabs/bolt/tx.go:163 +0x1ec fp=0x111ed274 sp=0x111ed1b8
github.com/NebulousLabs/bolt.(*DB).Update(0x10b837a0, 0x111ed2cc, 0x0, 0x0)
   /home/luke/go/src/github.com/NebulousLabs/bolt/db.go:580 +0xee fp=0x111ed2a0 sp=0x111ed274
github.com/NebulousLabs/Sia/modules/consensus.(*ConsensusSet).addBlockToTree(0x10b79080, 0x0, 0x9b640000, 0x787a362e, 0xb5d8458d, 0xb4bb180e, 0x727ff446, 0x21456bf3, 0xf6d20d7d, 0x144b571f, ...)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/accept.go:183 +0xd8 fp=0x111ed328 sp=0x111ed2a0
github.com/NebulousLabs/Sia/modules/consensus.(*ConsensusSet).managedAcceptBlock(0x10b79080, 0x0, 0x9b640000, 0x787a362e, 0xb5d8458d, 0xb4bb180e, 0x727ff446, 0x21456bf3, 0xf6d20d7d, 0x144b571f, ...)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/accept.go:259 +0x102 fp=0x111ed408 sp=0x111ed328
github.com/NebulousLabs/Sia/modules/consensus.(*ConsensusSet).threadedReceiveBlocks(0x10b79080, 0x30b9e2c0, 0x10c7e028, 0x0, 0x0)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/synchronize.go:213 +0x6da fp=0x111edd98 sp=0x111ed408
github.com/NebulousLabs/Sia/modules/consensus.(*ConsensusSet).(github.com/NebulousLabs/Sia/modules/consensus.threadedReceiveBlocks)-fm(0x30b9e2c0, 0x10c7e028, 0x0, 0x0)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/consensusset.go:134 +0x36 fp=0x111eddb0 sp=0x111edd98
github.com/NebulousLabs/Sia/modules/gateway.(*Gateway).RPC(0x10bd7b80, 0x10c2b880, 0x12, 0x5b5410, 0xa, 0x10c7e000, 0x0, 0x0)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/gateway/rpc.go:53 +0x3cf fp=0x111ede58 sp=0x111eddb0
github.com/NebulousLabs/Sia/modules/consensus.(*ConsensusSet).threadedInitialBlockchainDownload(0x10b79080)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/synchronize.go:475 +0x57a fp=0x111edfa0 sp=0x111ede58
github.com/NebulousLabs/Sia/modules/consensus.New.func1(0x10b79080, 0x30b607d8, 0x10bd7b80)
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/consensusset.go:126 +0x1f fp=0x111edfb8 sp=0x111edfa0
runtime.goexit()
   /usr/local/go/src/runtime/asm_386.s:1585 +0x1 fp=0x111edfbc sp=0x111edfb8
created by github.com/NebulousLabs/Sia/modules/consensus.New
   /home/luke/go/src/github.com/NebulousLabs/Sia/modules/consensus/consensusset.go:140 +0x611



Are you on a 32 bit OS, unfortunately 32 bit support had to be dropped due to a limitation of the database utilized in the consensus.db
316  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 08, 2016, 08:37:02 PM
Could someone explain why does Sia need a POW gpu mining model instead of pure storage sharing model like the others ?

PoW provides the generation of coins for the purpose of renting storage as well as securing the advancement of the blockchain for the purpose of maintaining an accurate record of contracts and facilitating secure and verifiable payment


Which "others" and their "pure storage sharing model" are you referring to?
317  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 08, 2016, 07:51:47 PM
Thanks @bitspill.

Based on your advice to date and what I've otherwise read/guessed, this should be the sequence of steps:

1. Back up old wallet folder

2. Back up old consensus folder

3. Download and install the new client

4. Open the new client and create new wallet (I'm assuming the same thing will happen on opening 0.5.2 as did for 0.5.1 – i.e. automatic generation of a new password/wallet)

5. Close the client

6. Replace the new wallet folder with the old wallet folder

7. Replace the new consensus folder with the old consensus folder

8. Open the new client again and old balance from previous wallet will appear.

Is that correct?

Thanks for your further help  Smiley

Yes, except you can skip step 4. since you're copying over the old wallet no need to create one just to throw it away
318  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 08, 2016, 02:27:14 AM
Is there a developer issued/approved 'fool proof' guide to upgrading the wallet to 0.5.2?

(I'm currently running 0.5.1.)

Thanks Smiley

Backup everything.
Download new version.
Drop new files over old files.
Huh
Profit.

Thanks - specifically, the renter, miner and wallet folders?

Or, given that I haven't been hosting or renting, would it be ok just to copy across the existing wallet folder to the new location?

Presumably, having copied over (at least) the old wallet folder, the new wallet will have the same password as before or will I be prompted to save a new password?

Apologies for asking basic questions and thanks for any further help.

If you have a wallet backup wallet folder
If you have uploaded anything backup your renter folder
If you have announced yourself has a host backup your host folder
If you don't want to resync from zero backup your consensus folder
The miner and gateway folders contain basic files which can/will be regenerated


If you copy over your old wallet then the password will be unchanged


Don't be afraid to ask questions, it's better safe than sorry.
319  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 07, 2016, 06:28:44 PM
Thank you, but where do you get a siafund file?  Where can I buy siafunds and how much do they cost?

Only the people who initially bought siafunds in the crowd-sale or on Nxt AE have the siafund files which contain the siafunds they bought. Now you can buy siafunds from those initial siafund buyers. They can transfer the siafunds into your wallet directly. Your wallet can take both siacoins and siafunds. You can go to the trading channel on Sia slack to ask if anyone wants to sell you some siafunds. I saw one person who was selling his/her siafunds there before.

how much do they cost?
From the Slack #siafund channel:

Quote
@cryptoscalper
thanks for the mentions, folks!  :simple_smile:
i had an idea...  changing my Ask slightly while i continue my experiment
*WTS 4 Siafunds for 20M SIA*
only good if all 4 are purchased and for as long as SIA is trading above 20 sats
below 20 sats the Ask is automatically back to:  WTS 4 Siafunds - 10M SIA per Siafund  :simple_smile:
320  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage - Working Beta - Currency has been released on: April 06, 2016, 07:06:07 AM
Is there a developer issued/approved 'fool proof' guide to upgrading the wallet to 0.5.2?

(I'm currently running 0.5.1.)

Thanks Smiley

Backup everything.
Download new version.
Drop new files over old files.
Huh
Profit.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 ... 104 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!