Originally posted by Anastasius
View Post
Youtube says Update your browser
Collapse
X
-
-
-
Originally posted by ferneyhoughgeliebte View Post- more-or-less how I was thinking; none of the new features look as if I'd ever have much use for them and the new appearance looks like it might take a while to get used to; neither of which would detract me from "upgrading" if there were distinct advantages to my doing so (such as future security updates) of which I was unaware. I'm quite content with what Windows7 does.
Comment
-
-
Originally posted by Bryn View PostOh I could "work out how to use it" well enough. Damn thing was far to selective as to what it would work with. The DVD drive would not even recognise DVD-Rs written using another device. The same discs were not only recognised by all the various Windoze machines I had available, they played well in them too. Damned Apple rubbish did not like mp2 codec (from DAB) either, nor FLAC. Like the old Commodore computers, Apple is too heavily devoted to tying users in. I have been using various Macs in work/study situations since 1985. Even back then I preferred working with CP/M+ than with MSDOS or Mac OS, ah the delights and flexibility of PIP.
OK - I've written in machine code, assembler, low level languages, scripting languages, high level languages, more modern high level languages - and used many different types of machine. There's no way I'm willingly going to go back to using slow machines in any form of low level language, and I'm just sad that so many people are still writing code using **** languages.
This is just about the kind of code I appreciate - though it still seems to me unnecessarily verbose:
<<qsort1>>=
qsort1 :: Ord a => [a] -> [a]
qsort1 [] = []
qsort1 (p:xs) = qsort1 lesser ++ [p] ++ qsort1 greater
where
lesser = [ y | y <- xs, y < p ]
greater = [ y | y <- xs, y >= p ]
See http://en.literateprograms.org/Quicksort_(Haskell)
I accept perfectly well that at the time you had your Mac it did not work for you. I did point out that I had one which was not great, and that it gave up in about a year and I returned it, probably for scrap. Since then things have got better for Macs, and very probably for PCs and Windows too. The last version of Windows I used in earnest was Windows 7. People should use what works for them, and equally not use what doesn't work for them.
Comment
-
Comment