Pages:
Author

Topic: ["WAIT LIST"] BFL Singles Order Date / Ship Date - page 16. (Read 100885 times)

legendary
Activity: 2212
Merit: 1001
Perhaps. As with all things BFL, we will know for sure when we see it actually happening.

Oh its true,I ordered my Jallies Sunday & checked all my options.I would've gone for the 40gh model,but am short on cash & BTC.

So instead I got 4 jallies coming (to keep pace with the diff increase coming upon release of Asics) & decided to keep my single until I have $700 to trade MY Single in for the 40gh one  Wink
sr. member
Activity: 476
Merit: 250
Perhaps. As with all things BFL, we will know for sure when we see it actually happening.
legendary
Activity: 2212
Merit: 1001
But,he could go for 8 Jallies (28gh total) for his unit + $600 instead.But that would be foolish,unless that's all the cash/BTC you can come up with  Wink
sr. member
Activity: 476
Merit: 250
Oh. No problem. I thought you were referring to the $700 I mentioned, not his initial outlay.

But there is another potential issue I've not seen discussed yet for overseas buyers. Many or most of them paid a VAT (or equivalent import duty, whatever) fee on the original $600 purchase. When/if they upgrade, I bet they will have to pay that fee on the new equipment valuation of $1399 when they receive it. In effect, having paid double on the first $600 worth of the new $1400 piece of equipment.
hero member
Activity: 546
Merit: 500
If I purchase a BFL Single now for 700 (shipping included ) am I right in understanding that when the ASICs come out , I can send them back the Single, pay the extra say 600 and I will be offered the ASIC?

He must be international. This is the 700 I was referring to. Sorry about that.
sr. member
Activity: 476
Merit: 250
$600 you mean?
No.

http://www.butterflylabs.com/bitforce-sc-release-notes/

"What’s a typical trade in example?  A customer can trade in his 832 MH/s Single and get $599 credit towards the purchase of a $1,299 SC Single.  The end cost to upgrade to 40 GH/s would be $699."

Plus shipping and all required taxes / fees.
hero member
Activity: 546
Merit: 500
$600 you mean?
newbie
Activity: 28
Merit: 0
Thanks for clearing that up for me
sr. member
Activity: 476
Merit: 250
If I purchase a BFL Single now for 700 (shipping included ) am I right in understanding that when the ASICs come out , I can send them back the Single, pay the extra say 600 and I will be offered the ASIC?
Close. It is another $700 (and then shipping on top).

The exchange option expires in March 2013.
newbie
Activity: 28
Merit: 0
If I purchase a BFL Single now for 700 (shipping included ) am I right in understanding that when the ASICs come out , I can send them back the Single, pay the extra say 600 and I will be offered the ASIC?
newbie
Activity: 63
Merit: 0
Hey all,
Jody has informed me that my singles have shipped today. Probably expect them around Wednesday via 2 tracking numbers.
sr. member
Activity: 252
Merit: 250
Inactive
Sweet, that's handy. I'll be sending a tip over soon.


FYI, the SC thread is google spreadsheet with script.  So, if you have any requests pls specify them on the SC thread.
hero member
Activity: 546
Merit: 500
Oh and it is coded to match the alignment of the cells on the excel sheet.

Thanks for the tip!
rjk
sr. member
Activity: 448
Merit: 250
1ngldh
Sweet, that's handy. I'll be sending a tip over soon.
hero member
Activity: 546
Merit: 500
I just wrote this up. I am not sure how well it will work with other tables out there but this is set up for cells that aren't merged. It cycles through the specified start column and stops at the specified stop column and then goes down through the rows until it finds a cell in the first column that is blank.  The output is placed on a new sheet in the first cell.

There's no error handling for the input boxes so if you enter something out of range or just random characters, it won't work.

Code:
Sub CreateBBTable()
Dim startColumn As String, stopColumn As String, startRow As Integer
Dim curCol As Integer, curRow As Integer
Dim outputStr As String

Const sctr = "[center]"
Const ectr = "[/center]"
Const sright = "[right]"
Const eright = "[/right]"

startColumn = InputBox("Enter the column to start at (A - Z)", "Start Column")
stopColumn = InputBox("Enter the column to stop at (A - Z)", "Stop Column")
startRow = InputBox("Enter the row to start at (1 and up)", "Start Row")

curRow = startRow

outputStr = "[table]"
Do Until Range(startColumn & curRow) = ""
    outputStr = outputStr & "[tr]"
    curCol = Asc(startColumn)
    Do Until curCol > Asc(stopColumn)
        outputStr = outputStr & "[td]"
        
        Select Case Range(Chr(curCol) & curRow).HorizontalAlignment
        Case xlCenter
            outputStr = outputStr & sctr & Range(Chr(curCol) & curRow) & ectr
        Case xlRight
            outputStr = outputStr & sright & Range(Chr(curCol) & curRow) & eright
        Case Else
            outputStr = outputStr & Range(Chr(curCol) & curRow)
        End Select
        
        outputStr = outputStr & "[/td]"
        curCol = curCol + 1
    Loop
    outputStr = outputStr & "[/tr]" & vbCrLf
    curRow = curRow + 1
Loop
outputStr = outputStr & "[/table]"

Sheets.Add After:=Sheets(Sheets.count)
Sheets(Sheets.count).Select
Range("A1") = outputStr
End Sub

edit: Edited one of the declarations
sr. member
Activity: 447
Merit: 250
My 4 shipped, looks like they'll arrive Wed Jun 27th.
rjk
sr. member
Activity: 448
Merit: 250
1ngldh
Yea it can with VB.

That's how I did the table initially. I put all the data in there and coded it to output the code to a cell then pasted it here.  It was just easier to copy and paste then edit after that.

That table looks pretty nice.
Would you be so kind as to share that bit of VB with us/me? Or at least with those that want to maintain the SC threads.
hero member
Activity: 546
Merit: 500
Yea it can with VB.

That's how I did the table initially. I put all the data in there and coded it to output the code to a cell then pasted it here.  It was just easier to copy and paste then edit after that.

That table looks pretty nice.
rjk
sr. member
Activity: 448
Merit: 250
1ngldh
I wonder whether Excel can generate BBcode tables?
Here is a little thing I made to read the HTML forum table, it's pretty cool:



Those hash rates and power draws are based on total ordered, not total received.
sr. member
Activity: 402
Merit: 250
missing from the list is that i received mine 5th of June. They were in customs for a ~week prior to that.
Pages:
Jump to: