dmace

Members
  • Content

    43
  • Joined

  • Last visited

  • Feedback

    0%

Community Reputation

0 Neutral

Gear

  • Main Canopy Size
    140
  • Reserve Canopy Size
    155
  • AAD
    Cypres

Jump Profile

  • Home DZ
    Le-Blanc
  • License
    C
  • License Number
    100596
  • Licensing Organization
    BPA
  • Number of Jumps
    650
  • Years in Sport
    6
  • First Choice Discipline
    Freeflying
  • Second Choice Discipline
    Formation Skydiving

Ratings and Rigging

  • Pro Rating
    Yes
  1. The dropzone is very friendly towards experienced skydivers. The staff are great and make you feel really welcome from the start (and after jumping has finished as well). The plane is just as good as a porter and the views are great what with the dropzone being on the coast. Although a lot of tandems go through the place I never had to wait long for a slot and they were proactive on putting me on loads. I was travelling without my rig and there was no problem hiring gear, alti, dytter etc. I would have liked to hire a smaller main (the smallest they have is a 180) but was happy that they had that. They also have a wingsuit instructor (Tomas) and I did my first wingsuit jump there. Great! And great views to go along with it as well! Overall a great place and I recommend it. They need more sporties though to pack out the plane!
  2. Hi The website for CERPCO Le Blanc (France) > http://www.dropzone.com/dropzone/Detailed/389.shtml is out of date. It has changed to http://efp-leblanc.com/ Thanks
  3. dmace

    Excel help

    Don't know if there is a keyboard shortcut but you can use the following workaround: e.g. In "ThisWorkbook" add the following code Public Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean) Dim ws As Worksheet Set ws = Sh If ws.Name = "Sheet1" And Target = Cells(1, 1) Then MsgBox "Hello" End If End Sub Then create a module and put the following code in it Sub auto_open() Application.OnKey "+^{H}", "test" End Sub Public Sub test() ThisWorkbook.Workbook_SheetBeforeDoubleClick ActiveSheet, ActiveCell, False End Sub Everytime you hit Ctrl + Shift + H together it will simulate a mouse double click event. In this example if you "double click" with the keyboard shortcut on cell A1 of sheet 1 a message box will appear saying "hello". "double click" with the keyboard shortcut anywhere else and nothing will happen. You can do the same for right click as well using the "Workbook_SheetBeforeRightClick" event.
  4. dmace

    PKR.com

    http://pokerwize.com/ isn't bad either. Good graphics and free tables to learn on as well
  5. dmace

    JAVA arrays

    try this: import java.util.*; public class value { public static void main(String [] args) { Scanner stdin = new Scanner(System.in); int numberOfValues; System.out.println("How many values? "); numberOfValues = stdin.nextInt(); int [] numbers = new int [numberOfValues]; int sum; for(int i=0; i < numbers.length; i++) { System.out.println("Enter a value: "); numbers = stdin.nextInt(); } sum = getSum(numbers); System.out.println("The sum is " + sum); } public static int getSum(int [] list) { int iSum = 0; for(int i=0; i < list.length; i++) { iSum = iSum + list; } return iSum; } } weird, replying doesn't show the brackets [] ... should be: numbers BRACKET "i" BRACKET = stdin.nextInt(); and iSum = iSum + list BRACKET "i" BRACKET;
  6. dmace

    JAVA arrays

    Post the code you have. Let's see what we can do with it
  7. dmace

    Desktop Images

    Took this one 3 weeks ago on the Great Barrier Reef. It's such a bummer being back at work
  8. dmace

    Help with Excel

    Here ya go Sub Yoink() Dim a() As String Dim i As Integer i = 1 While Range("A" & i).Value "" a = parseIt(i) For j = 0 To UBound(a) Range("B" & i + j).Value = a(j) Range("A" & i + j + 1).Select If j UBound(a) Then Selection.EntireRow.Insert Next i = i + j Wend End Sub Public Function parseIt(iRowNumber As Integer) As String() Dim k As Integer Dim j As Integer Dim s As String Dim jeux() As String s = Trim(Cells(iRowNumber, 2).Value) 'let's see if there are more than one set if not just return that j = InStr(s, ",") If j = 0 Then ReDim jeux(0) As String jeux(0) = s parseIt = jeux Exit Function Else 'so there's at least 2 While j 0 ReDim Preserve jeux(k) jeux(k) = Mid(s, 1, j - 1) s = Right(s, (Len(s) - j)) j = InStr(s, ",") k = k + 1 Wend ReDim Preserve jeux(k) jeux(k) = s parseIt = jeux End If End Function
  9. Just got mine a few days ago
  10. try this; SELECT movie.title, customer.lastname, customer.firstname, customer.zipcode, store.* from customer customer, store store, reservation res, movie movie, video vid where customer.accountid = res.accountid and res.videoid = vid.videoid and vid.storeid = store.storeid and vid.movieid = movie.movieid
  11. how cool is that! Just got the game today, will certainly be checking that one out!
  12. Just want to hear about the finish of the container really. Does it have the deflecters at the bottom of the reserve container in the main pod? Does it have internal riser covers like the Atom? Is it more a longer, narrower container or more square'ish? Good news about the lateral cut. Trying to weigh up the options between different containers on the market. What are the main differences between the Out and In, apart from the obvious reserve differences. Is the Out newer?
  13. Hi Searching for information on this container has pulled up a few things about 8 months ago but with not much detail. Has anybody had any recent experiences with this container...have any new opinions? What's the build like, confort.....etc Am thinking about the Out rather than the In Thanks