Slashdot Mirror


User: petermgreen

petermgreen's activity in the archive.

Stories
0
Comments
10,783
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 10,783

  1. Re:I think you mean: do this cheaper than Rutan on DIY High-Altitude Ballooning · · Score: 1

    the trouble with returning from orbit is you have to dump your lateral velocity

    theres no easy way round this. The normal way spacecraft do it is to use atnospheric friction but this needs a MASSIVE heat shield.

    retro rockets would be another option but i can't see this being practical in anything suit like either. (they don't use it for spacecraft because it would mean sending up so much extra fuel)

  2. Re:Not new on A Pistol Mouse for Your Fragging Pleasure · · Score: 1

    the trouble with lightguns is they need to lock to the video signal

    whilst i guess you could make one that locked to svga i imagine it would be a lot tricker than doing it for composite video (much faster sync rates)

  3. Re:Wrong way on Free Pascal 2.0 Released · · Score: 1

    heh range checking is an option in pascal and for most code i write it has to stay off ;)

  4. Re:Pardon my semi-igonrance but... on Free Pascal 2.0 Released · · Score: 1

    no it doesn't run under delphi as such it is a compiler in its own right.

    it can (in the appropriate mode) compile delphi like pascal code and it has much of the nonvisual parts of the delphi libraries availible (visual parts are being handled by the seperate lazarus project)

    there have been some experments with using freepascal with the zarus although arm functionality is kinda expermental right now (its not good enough to cycle the compiler on arm right now but you can cross compile a compiler for arm and use that compiler to make simple apps)

    if you wan't to see good arm support then you probablly wan't to donate a fast arm box to one of the developers. ;)

  5. Re:Standard reading on Free Pascal 2.0 Released · · Score: 2, Informative

    read it and what it really says is that ISO PASCAL is a horrid language. I do not dispute this.

    however the recent borland like dialects of pascal are very different. Maybe the pascal name should have been dropped at some point (borland did pretty much drop it with later delphi versions). But we don't really have any better names that people would recognise and that don't have connections we don't want (the name delphi is strongly associated with the delphi ide)

  6. Re:Why bother? on Free Pascal 2.0 Released · · Score: 2, Informative

    However all the advantages of Delphi do not apply to Free Pascal

    freepascal supports almost all of the language features of delphi and most of the nonvisual classes

    the visual bits are being cloned by a seperate project known as lazarus (its rather unpolished atm but its getting there).

  7. Re:A bit late... on Free Pascal 2.0 Released · · Score: 1

    maybe we've never really had a good new name though

    generally we use the term pascal in passing conversation and object pascal (which is what borland used for the language itself with earlier versions of delphi) when we wan't to be a bit more precise

    the name delphi kind of implies the delphi RAD environment as well as the language imo.

  8. Re:The good old days... on Free Pascal 2.0 Released · · Score: 1

    true though C++ builder apps are using a component library written in pascal so there is pascal code compiled into that binary ;)

  9. Re:awesome on Free Pascal 2.0 Released · · Score: 1

    yes but they put in this nice feature called a typecast which is basically telling the compiler that you know you are bending the rules but you wan't to do it anyway.

    so it gets in the way just enough to make it hard to fuck up by mistake but when you really want to do something the compiler wouldn't normally allow its easy to force.

  10. Re:A bit late... on Free Pascal 2.0 Released · · Score: 1

    freepascal has mostly followed what borland did with the language up to and including about delphi 5 and ahs made a few improvements of its own.

    i can't compare to modula 3 as i've never used it.

  11. Re:So what do pascal programmers eat now adays? on Free Pascal 2.0 Released · · Score: 0

    well i code in pascal and i mainly eat the following

    sausage and bacon for breakfast usually

    for other meals usually one of the following
    cheese sandwitches
    SPAM sandwitches
    sausage sandwitches

  12. Re:Can we make an ARM cross compiler out of FPK? on Free Pascal 2.0 Released · · Score: 1

    it shouldn't be too hard its really just a matter of someone with the skills and the motivation getting round to doing it

  13. Re:missed opportunity on Free Pascal 2.0 Released · · Score: 1

    grr that should have been before not though

  14. Re:missed opportunity on Free Pascal 2.0 Released · · Score: 0, Offtopic

    lol i've never heared my nick described that way though

  15. Re:Out of curiousity... on Free Pascal 2.0 Released · · Score: 2, Informative

    that depends on the mode setting you use. In delphi mode it tries to be as close to dlephi as possible. In objfpc mode it supports most delphi features but with slightly cleaner syntax rules in some areas. The other modes are procedural only afaict

    most of the nonvisual components from delphi are there in some form. Visual stuff is being handled seperately by the lazarus project.

  16. Re:awww on Free Pascal 2.0 Released · · Score: 1

    well with freepascal on *nix running the following code as root tends to do it

    program forkbomb;
    uses baseunix,unix;
    begin
    repeat
    fpfork;
    until false;
    end.

  17. Re:Easy to shoot your own foot w/Pascal on Free Pascal 2.0 Released · · Score: 1

    yeah this was a big issue with old style pascal strings (which were essentially just large arrays) if you weren't carefull

    btw you should have used const not var if you didn't intend to modify the parameter inside the procedure.

  18. Re:The good old days... on Free Pascal 2.0 Released · · Score: 1

    there are lots of delphi apps out there its just it isn't so obvious which ones they are (hint: look for names ending in .dfm in a resource viewer)

  19. Re:nightmares on Free Pascal 2.0 Released · · Score: 3, Informative

    its so sad the impressions people like you get of pascal from shitty expericances in the education system.

    modern object pascal (as in delphi and freepascal) is actually a very nice language that imo gets the balance between power and complexity just right. (unlike C++ which is extremely complecated and bytecode languages that imo feel crippled)

  20. Re:Here comes FSF knocking on Free Pascal 2.0 Released · · Score: 1

    afaict all practical CPUs are commercial

    as for the operating systems well it comes down to what people want to code for. It should be noted that the main article only mentioned new architectures and operating systems. linux freebsd and win32 support are still just fine ;)

  21. Re:awesome on Free Pascal 2.0 Released · · Score: 1

    what exactly do you mean by a B&D language?

    what i really like about it is that it has that friendlynees and ease for most code yet there isn't too much getting in your way when you want to do low level stuff.

  22. Re:Ahh Pascal on Free Pascal 2.0 Released · · Score: 1

    agreed i tend to consider those a special case whose meaning should be known to any decent programmer.

  23. Re:awesome on Free Pascal 2.0 Released · · Score: 2, Interesting

    does a hybrid procedural/oop language without the overcomplexity of C++, that compiles to native code without gc and similar shit and that lets you get down to the low level when you need to appeal to you.

    if so and the verbosity and case insensitivity don't bother you then it will probablly suit you.

  24. Re:missed opportunity on Free Pascal 2.0 Released · · Score: 2, Interesting

    you got a copy of the mails confirming that? i've never heared any of the developers mention it (and i hang out on irc with them a lot)

    freepascal does like to do things its own way and i don't really blame them. much less stressfull to stay away from politics and just write a compiler with a smallish but friendly team.

    The only real problem this brings is support for less CPU types than GCC has.

    btw freepascal is written in pascal (and only compiles using freepascal nowadays).

  25. Re:Out of curiousity... on Free Pascal 2.0 Released · · Score: 2, Informative

    think of delphi style object pascal (as seen in delphi and freepasca). as a hybrid oop/procedural language without the huge complexity of C++ but also without the nany state style restrictions or deployment issues of .net or java.

    also the delphi IDE was one of the few rad environments that could compare to the development speed of VB imo.