Slashdot Mirror


Forums for Windows Admins?

Work-w/-MCSEs asks: "I work with Microsoft products for a living, as well as for fun. I've been lurking in Slashdot discussions for a while now. I find a lot of the stories interesting, but it is obviously geared more toward Unix people. Stories about MS products are often full of flames. I can see the reasons why Microsoft users aren't accepted as 'true geeks'. I acknowledge that Unix people are more technical (by necessity since they often compile their own software), and I'm not asking or expecting the attitudes here to change. However, I do wish I could find a similar forum for us to talk about our chosen operating system, applications, viruses, and other issues. Usenet is just too full of spam to be useful. Where is a Windows user to go for good discussion?"

32 of 114 comments (clear)

  1. Best Windows Discussions... by Ieshan · · Score: 4, Insightful

    Usually take place over at symantec.com. They're full of all the information you need to secure your machine against the latest exploits and viruses.

    I mean, that's what you want to talk about, right? The exploits?

    -----------------

    On a more serious note, I'm not sure such a true forum exists simply because of the way Windows is run. Linux (and slashdot) are much more meltingpot, and the ideas here are really just a community reflection. I mean, supposing someone *does* come up with some great code ideas and additions to Windows, how will they go about getting those changes implemented?

    Most Windows forums that I've seen are either "ask the experts" things or "games games games". Lots of good Linux info can be found on slashdot, lots of good windows info can be found scattered around by means of the google.

    1. Re:Best Windows Discussions... by linzeal · · Score: 2, Informative

      Try MSDN newsgroups, when I was admining some SQL/2000 Advance Server boxes that place came in handy.

  2. Hmm by Medgur · · Score: 3, Informative

    I've been using this one for years: http://www.experts-exchange.com

    It's mostly help forums, but I haven't really felt a strong desire to get in touch with people on the grounds of a single software paradigm.

    1. Re:Hmm by dtfinch · · Score: 2, Funny

      Previously known as http://www.ExpertSexChange.com, but they renamed it after a bunch of people started making "off-topic" posts relating to the domain name.

      There's a lot of great info there for Windows developers.

  3. Usenet by Anonymous Coward · · Score: 4, Interesting

    Learn to filter. Learn to use groups.google.com. Also, even when no one else is helping you and you find the answer elsewhere, post back to the board in question with the answer, if for no other reason, that you can find it again in groups.google.com -- embarassingly, I have plugged in complete questions into google and found the forum where I asked the exact same question 2 years ago.

    1. Re:Usenet by scott_davey · · Score: 2, Informative

      I also find Google's web and usenet search invaluable to my MS solution searching.

      Those not-so-helpful error messages like 'Application error C05482375' you find in the Event Log are great when pumped into Google. Good signal-to-noise ratio with searches like 'C05482375' :-)

      And be helpful to others and reply to posts, even if they are two years old. Chances are there's 200 other sysadmins with your problem, too.

  4. Some sysadmin support sites... by databank · · Score: 2, Interesting

    Most good sysadmins have to wear multiple OS hats so here's a bunch that I frequent when researching for solutions....

    http://www.sysinternals.com...it's a decent place for windows related discussions...

    For sun stuff, the best place is really sun itself http://forum.sun.com...

    For tru64 stuff go subscribe to the tru64 mailing lists, I think it's the only thing that's staying alive for that stuff...

    as for Linux, well...really you could look just about anywhere for that...

  5. a couple places to start... by tvadakia · · Score: 2, Informative

    http://bink.nu/

    http://www.only4gurus.com/v2/index.asp

    Hope that helps.

    --
    Unique.
  6. I'll stand up and be flamed. by bluephone · · Score: 5, Insightful
    *nix people are NOT more technical by nature. I know DOZENS of Linux "geeks" who compile their own software only because of easy compile scripts and easy packages. I started on non-DOS systems, but found DOS _extremely_ usable with QEMM and DesqView, later found Win98 tolerable, and find NT/2k/XP very usable. I'm far more techincal than at least 50% of the programmers in the wild becaus eI know _hardware_. I can't tell you how many coders over the years I've met and known who can write magnificent code, but couldn't install a SIMM in their old 386 if their lives depended on it.

    By default, Windows is very insecure, and does need adjusting to become a fast, tech-friendly environment, but so does any Linux distro (although it's usually more secure by default). Being a Windows admin doesn't have to mean a dearth of techincal knowledge. EDUCATE YOURSELF. Don't rely on your PC or OS to educate you. Read technical books, play with hardware, get Cygwin and play with the command line tools. Compile your own programs, too. There's lots of open source Windows software. Learn to program, also.

    Don't be intimidated by someone just because they use Linux. Don't be intimidated by the OS holy wars that have been raging since before DOS even existed. Anyone who says ONE OS is better than all is a fool. They're all around because of various niches that needed filled. Linux is growing while Windows is flattening (they're BOTH fattening, too...), sure, but that doesn't mean you're not a useful Admin.

    Now, that said, I'll preemptively defend myself. I'd never put Windows up as a server, unless we're talking a home net where the server is also used as a PC. Putting Windows as a server on the net is insane. Linux is far superior there. But, as it stands, Windows is still a better desktop OS. I do sincerely hope Linux keeps improving there, though. Competition is good.

    --
    jX [ Make everything as simple as possible, but no simpler. - Einstein ]
    1. Re:I'll stand up and be flamed. by orthogonal · · Score: 3, Interesting

      *nix people are NOT more technical by nature. I know DOZENS of Linux "geeks" who compile their own software only because of easy compile scripts and easy packages.

      Actually, I suspect *nix people may well be more technical; *nix encourages the idea of (for example) stringing together awk | sed | cut | sort | grep to do things that under Windows would almost always be implemented as a monolithic program.

      But let me second (part of) the parent poster's comment: compilation is so ridiculously easy these days on linux-y systems.

      I remember when I -- a professional programmer -- hesitated to compile unfamiliar source, because of conflicting headers, non-standard "Standards" (before C++98/C99, everyone and his brother had a different idea of what bool should be), and other gotchas.

      These problems have largely disappeared on linux-y systems, thanks mostly to configure scripts. Nowadays, I have no real worries about downloading source I'd never heard of before, and I'm surprised if it doesn't compile cleanly the first time.

      Funnily enough, I do most of my compiling not under linux per se, but Cygwin. And most of what I've been doing recently has been cross-compiling, for the SH-1 and the StrongArm processors. Still, I have few problems, mostly because of the configure scripts.

      If you've never used a configure script, it compiles a battery of test code in such a way as to test for any particularities of your environment, and adapts the Makefile to your system.

      Nor are decent Makefiles limited to linux-y environments; Neil Hodgson, in addition to writing the excellent SciTE editor, also makes the source available with Makefiles that perform flawlessly for a number of compilers -- I was able to compile using the Borland command line compiler "out of the box" using Neil's Borland makefile.

      What I dread these days are "Integrated Development Environments" with "projects" or other proprietary replacements for Makefiles. True, the Makefile is a dated and awkward format that goes so far as to (disastrously, if you don't know about it!) make semantic distinctions between spaces and tabs. But it also works most anywhere.

      Recently, I took an app written for Qt on some linux distribution, and after a few days of compensating for the fact that it used the 3.x QT libraries and I was using 2.3.3, I was able to cross-compile it under Cygwin for my Sharp Zaurus. Other than implementing Qt 3.x functionality using Qt 2.3.3 classes, the configure script took care of all the work for me.

      The parent poster also wrote "Linux is far superior there. But, as it stands, Windows is still a better desktop OS."

      With Cygwin under Windows 2000, and a policy of using programs -- like Mozilla -- that are Open and exist in both MS-Windows and Linux -- I really think I have the best of both worlds.

    2. Re:I'll stand up and be flamed. by unixbob · · Score: 3, Interesting

      *nix people are NOT more technical by nature. I

      I disagree with this completely. The original story appears to come from a professional windows admin. By the nature of ths OS, that is an easier job to be competent at than a UNIX admin.

      I'm not flaming. Here's 2 examples:
      If you need to setup an email / groupware server then go and install MS Exchange on a Windows 2000 server. I've done it. Click, Click, Click and you're done. For your clients you can install MS Outlook, point them at the Exchange server, give it a username and your done. Try and do the same thing on UNIX. You'll need to install an IMAP server. Then a separate LDAP server (which the IMAP server must be able to use). Then work out which of the myriad of Groupware options is the best for what you need. Then you'll need to configure each of the clients for the IMAP settings, LDAP settings, etc. Neither of these systems will work just by running ./configure, make, make install. You'll need to have an understanding of how they work and how to configure them to play nicely together. And shared calendars from Windows clients communicating with a UNIX server? Not the simplest thing in the world.

      What about a web server. Add Remove programs, Windows Components, Internet Information Server. Stick in the CD, away you go. Sure, it's simple to install apache on a linux box. But for dynamic pages? Well you can unstall PHP, but should you enable track vars? Which XML options should you choose? which database is better? Want to use mod_perl instead? should you install it as a DSO option or compile it into Apache? Or should you go the JSP route. then which version of tomcat do you choose?

      Microsoft's product is designed to be easy. It's meant to be simple to setup a server. And as such it allows for less skilled individuals to get something working. If you actually did what I suggested in my examples then you would be having issues with your Windows Servers pretty quickly if they get reasonable load on them. For someone to understand exactly what their Windows server is doing and for it to be a scalable and reliable system, then they will need to be as knowledgable and experienced as their UNIX counterparts have to be. But the nature of the platform allows for lower skilled techs to get the systems running and that's why it's perceived to be a less technical solution to UNIX

      --
      The Romans didn't find algebra very challenging, because X was always 10
    3. Re:I'll stand up and be flamed. by NemoX · · Score: 2, Insightful

      I see where you are coming from but that is not always as clear cut as you make it. I have experience with Linux, Solaris, Windows, and DNS, E-Mail servers, Web and Database servers in all three environments.

      UNIX takes more understanding when initially setting up. I know more UNIX commands then I could write down in one day (ok, an exageration :) ). I can do seeming more advanced administration from *NIX platforms, but that is because of the cool tools that come with the systems by default (windows requires a "resource kit" to get many similar, but not nearly all, of the admin functionalities as a *NIX)

      Windows on the other hand is more *click* *click* crap, and yes, VERY easy to install by comparision.

      HOWEVER...what determines an admins knowledge? The ability to set something up or fix it when it is broken?

      I can set up either with ease. But, because windows is constantly randomly breaking, I have learned SO much more about networks and OS' then any class or certification course has ever taught me. I feel much more challenged when a *NIX station suddenly goes dumb, mostly because it rarely happens (I think I can count the number of times on one hand with out my tumb or pinkie :D) I have to scratch my head and think about what I once read in order to fix it. If a windows box goes down, I know that system inside and out, because I have been everywhere fixing so many problems with those boxes. All of the books I read stay fresh in my head, because I have to use its information more frequently. Whereas, on *NIX stations, there are several places I have not ever had to venture.

      I have learned more about DNS from setting it up in UNIX, but more about network data packets from constantly monitoring oddities with windows. (for example)

      So, while one is more challenging to setup and remember its commands and purpose/functionality, the other is more challenging to keep up and running. Herein lies the knowledge differences. Different, but oddly equal in their own respect.

    4. Re:I'll stand up and be flamed. by jonadab · · Score: 3, Insightful

      > The original story appears to come from a professional windows admin. By the
      > nature of ths OS, that is an easier job to be competent at than a UNIX admin.

      Actually, I'd say it's much harder to be a *competent* Windows admin. I have
      more experience with Windows than with *nix (though not as *much* more as I
      used to have), but I'm definitely more competent with *nix.

      > If you need to setup an email / groupware server then go and install MS
      > Exchange on a Windows 2000 server. I've done it. Click, Click, Click and
      > you're done.

      Heh. Rose-tinted glasses you're wearing. More like Click, click, click,
      (most of those clicks are on "Next" BTW) and then you're just getting
      started, because next week you're going to be googling for some obscure
      error message trying to figure out what the heck it means. (Granted, this
      happens with Linux too, but less often -- and when it does happen on Linux,
      it's usually when you were making changes (e.g., installing a new version),
      not out of the blue. Unless you have a hard drive start to quietly go bad,
      in which case all *sorts* of weird things happen, as I know from experience.)

      > For your clients you can install MS Outlook

      Sure, and then your whole network goes down for two days at a time once or
      twice per quarter. See, that's what I'm talking about; it's easy enough to
      be a novice Windows admin, but competence is harder; you have to learn things
      the hard way. For Windows desktops, you install Pegasus Mail for email, or
      at least Eudora, or Agent, or *something*. No competent admin would install
      Outlook for a fresh deployment unless directly ordered to do so by management,
      because Outlook is virtually impossible to keep running smoothly over the
      medium term. But you don't find that out (unless you're the kind who does
      research on every piece of software before you deploy it) until you've been
      running it for a few weeks/months, and by then your users have invested time
      in learning it that you don't want to take away from them, so you're stuck
      between a rock and a hard place. So you scour the internet for tips on
      securing Outlook and Exchange. Now you have to learn five or ten times as
      much (as you would have needed to learn if you installed a different option),
      because you have to filter all the mail traffic, removing not only certain
      content types, but also *any* content-type with certain filename extensions,
      and you need to block outgoing connections to port 110 and 143 and 220 and
      maybe 993. So you need to set up a firewall that all of your network's
      traffic goes through... Now you've branched out into content-filtering
      *and* firewalls, two relatively technical subjects, just to keep email
      working properly. This is typical with Windows administration.

      > Try and do the same thing on UNIX.

      It takes longer to be "done" on *nix, yes, but when you're done your
      actually mostly done. Say for example you install Postfix. (This is
      really hard: in rpmdrake you click on the checkbox for postfix and hit
      the "Install" button.) Now, granted, before you're "done" you have to
      configure it, because otherwise nothing's going to work. So you fire up
      a text editor and read through the config file (which is well commented,
      as virtually all config files are on the major distros these days) and
      change the options you need to change. Now, this *does* take longer than
      installing Exchange, *and* it requires more technical knowledge, such as
      how to use a text editor.

      However, once you're done you can hire a chimpanzee to administer it, provided
      you tie up the chimp so he can't touch anything. Security is mostly a matter
      of scanning the slashdot headlines once a day just in case there's a big
      exploit (in which case, you fire up the "update" utility, look for a Postfix
      update, click its checkbox, and hit "install".)

      > What about a web server. Add Remove programs, Windo

      --
      Cut that out, or I will ship you to Norilsk in a box.
    5. Re:I'll stand up and be flamed. by gtrubetskoy · · Score: 3, Insightful
      Click, Click, Click and you're done.

      But have you ever tried to set up a web hosting scenario where you have multiple clients acessing their sites in a secure way? On unix - just create a group, chown/chmod and you're done. On Windows you'll be clicking till sunrise, only to learn that there is no way to change permissions from command line.

      So it's clickity-click on Windows until you run into one of these gotchas. Unix tends to be easier on you this way - once you've mastered the basic stuff, there is no limit to what you can do. On Windows, there is always a catch, and M$ is working hard on coming up with more.

  7. Mailing Lists by shyster · · Score: 4, Informative
    The problem with web forums is that, by and large, they get inundated with Windows users looking for help. USENET, as you mentioned, is a haven to spam, plus there's multiple groups and NNTP servers to track.

    Microsoft does have a news server which I use occassionally, both on the Web and through NNTP. There's alot of granularity in the groups, which is nice when I'm, say, working on a scripting problem, I can hit the .NET Scripting group and get good responses. There's also multiple languages available, perhaps useful for non-English speakers. But, unless if you're looking for more general discussions like Slashdot has, I don't think you'll find it there.

    For general sysadmin and related discussion, problem solving, tips, etc., I've found mailing lists are much more manageable and informative. A real good provider is Sunbelt Software. The NTSysAdmin and Exchange lists are the most popular and general (and the only ones I'm a member of), but there's also ones dedicated to Windows security, Active Directory, etc. Be aware, though, that there's a LOT of traffic on some of these lists. Mine go into a Public Folder, but you can also get the digest if you prefer. One other one that I have used and recommend is the WinNT-List. I'm not on it currently, but mainly because of time restraints. Then again...I hardly check the Sunbelt lists anymore either....

    And, of course, I've yet to find a similar forum to replace Slashdot's unique blend of tech, news, and politics...that's why I'm still here.

  8. Microsoft newsgroups by dedazo · · Score: 2, Informative
    news://msnews.microsoft.com/

    Look for the microsoft.public.windows* hierarchy. Keep in mind many of these are not very active and some of them (for some reason) are pretty much abandoned because they're duplicated. But use Google to see which ones are more active.

    The servers have very little spam and as most non-technoreligious deals they're mostly technical and to the point, though you do see the occasional flame war.

    Plus, it's Usenet so just use whatever NNTP reader you like and post away.

    --
    Web2.0: I love when people Flickr my cuil and digg my boingboing until my google is reddit and I start to yahoo
  9. who sells the software? by mugnyte · · Score: 3, Interesting

    I write for Windows boxen all the time. I use MS's own site, where they host newgroups, BBSs, publish white papers, host sample code, and have entire ".NET channel" TV-like programs to suck bandwidth.

    All in all, MS wants nobody to feel confused or threatened using their software, including admins. This means everything is hosted, or sysadmin'd by people who just get to the fact, no BS. So, your slashdot-like knockabout sites are elsewhere. There are lots of them (google Expert/Advice/Programming) in various flavors of competance.

    Those thick books people layer on their desk are great now and then, but at ~$50 a pop, you may want to just register for an online book resource. Sorry, no link, but Books24x7 and stuff like that.

    So if you want technial knowledge, MS shovels it out. Magazines, websites galore. If you're looking for general "science news" and the resultant BS chatter, then /. is your best choice. Sorry.

    Personally I reconcile the two by not trying to change the world everywhere. My company pays me to do technical, and mostly interesting work. If it's on an MS box, an automotive-microcontroller, or just DSP math research in school, you're still in the tech world. So just put up with the flames and read /. for the fun of it. I won't tell anyone you're not a "real geek" if you don't bring it up ;)

  10. Ars Technica OpenForum's by harakh · · Score: 4, Insightful

    Ars Technica, known for alot of good articles often referred to on slashdot and other sites, have a very active forum which includes NT, Win2K and XP Technical Mojo. From my limited knowledge it seems like the place you are looking for.

    1. Re:Ars Technica OpenForum's by sp1nl0ck · · Score: 2

      Another vote for Ars here. There is, as mentioned above, the NT, 2K and XP Technical Mojo forum, which concentrates on systems management and the like, and there's the MSOS&SC (aka the Microsoft OS and Software Colloquium), which covers more application and home PC-related issues.

      There are plenty more forums to have a look at if you go the Ars OpenForum Homepage.

      --
      War is God's way of teaching Americans geography
  11. Neowin by polyp2000 · · Score: 2, Informative

    Its known for its Windows bias, but still has the other interesting geek related articles common to slashdot.To some of my geeky windows buddys , this is their slashdot.
    I personally find the windows bias rather annoying but then Im a linux guy!

    Oh, and the link http://www.neowin.net/

    --
    Electronic Music Made Using Linux http://soundcloud.com/polyp
  12. Re:Why not ... by ctr2sprt · · Score: 2, Funny

    "No Windows questions on Slashdot?! Well, fine! I'll start my own website, with blackjack, and hookers! In fact, forget the website!"

  13. NTBugtraq by molo · · Score: 2, Informative

    When I used to work with Windows, I found Russ Cooper's NTBugtraq mailing list to be an invaluable resource.

    More info at http://www.ntbugtraq.com/

    -molo

    --
    Using your sig line to advertise for friends is lame.
  14. You are very welcome on Slashdot. by Futurepower(R) · · Score: 4, Insightful


    You are very welcome on Slashdot. Those aren't flames you are seeing, they are people trying to cope with Microsoft's abusiveness. With Linux and BSD, the users come first. There are no billionaires to spoil the party.

    Slashdot published my questions about drive imaging software and about mirroring controllers. Both discussions were very valuable to me in my work on Windows systems:

    Experiences w/ Drive Imaging Software?

    Mirroring Controllers - What have been Your Experiences?

    Microsoft has serious management problems. People don't always know how to respond to this. Sometimes they become very upset.

    On the other hand, I feel some sympathy for Microsoft's managers. It is not easy to run a large corporation in a caring way.

  15. Cause and effct by the_womble · · Score: 2, Interesting
    I acknowledge that Unix people are more technical (by necessity since they often compile their own software

    I think you have cause and effect mixed up here.

  16. Not anymore, man by tres · · Score: 4, Informative

    You mean Expert bait-'n-switch, don't you?

    I feel sorry for all the schmoes who put their time and energy into giving Experts Exchange their hard-earned knowledge.

    I searched the other day on an issue with Exchange server; when I did a Google search for the relevant information I was pointed to Experts Exchange. The problem was, the page was no longer available--unless I paid for a subscription.

    I had to read the google archive to get the info.

    Experts Exchange is the epitome of what defines open vs. closed source products and knowledge. (And as much as I love the BSD's) Experts Exchange shows exactly what kind of protection the GPL provides us, as the valuable assets we are--whether it's our knowledge of building products, or building the documentation they require.

    --
    Notes From Under *nix: blas.phemo.us
  17. commercial OS = commercial support by ajagci · · Score: 2, Insightful

    However, I do wish I could find a similar forum for us to talk about our chosen operating system, applications, viruses, and other issues.

    It's called MSDN and microsoft.com. You can also hire consultants, subscribe to commercial newsletters, and go to commercial training courses. You picked a commercial platform, your support is going to be commercial and you get astroturf for a community. I mean, what do you expect?

    Linux and open source isn't as much about the software, it's about the community. If you want an open source-like community, you have to use software that comes out of that community, even if you would prefer something else in terms of software.

    Occasionally, you will find a commercial platform with a vibrant and enthusiastic user community. But such situations usually only arise when the commercial platform is a technological breakthrough, and they usually don't last more than a few years. Eventually, people ask themselves: why should I work for free, only so that the company that's making the product can cut back on support and increase their profits?

  18. Re:Asking for it ? by kinnell · · Score: 2, Insightful
    you sadist !

    I think you mean masochist. A sadist is someone who forces other people to use windows for fun.

    --
    If I seem short sighted, it is because I stand on the shoulders of midgets
  19. What I did for Linux... by Isomer · · Score: 2, Interesting

    I wanted a place for highly technical information about Linux, particularly programming documentation. I'd read the HOWTO's and had used google, but was irritated that google tended to find me the question, but rarely the answer.

    My solution was to set up the WLUG Wiki. If you can find a group of like minded people to "seed" the community with your problems (and solutions) then slowly, over time other people join in. We've been running the wlug wiki for 18 months now, and it's now the top hit on google for all kinds of things, and is linked from all kinds of official pages as documentation.

    Theres been several people that have said that they'd love to have a general "system administration" wiki for Windows, but there are none (and I'm not going to set one up -- I don't know enough about administering windows!)

    So, set one up, it's not difficult. Try and write down what problems you've solved each day and what their solution were into the wiki, and try and get a couple of other people to join in. Pretty soon you'll have created you're own resource

  20. Unix == less techincal than windows by smoon · · Score: 2, Insightful

    "I acknowledge that Unix people are more technical (by necessity since they often compile their own software)"

    I disagree. Yes, paper MCSE-morons are less technical since they view the world as a series of wizards, magical patches, and religious rites (like reboots).

    However, true windows experts are _way_ more techincal than Unix type people. Unix people get to look at source code to figure out how things work. Unix people get to rely on published standards for reference. Unix people get to draw on decades of collective experience and can often see how things evolved over time, and usually have some kind of known-good reference site to emulate.

    Windows, on the other hand, requires you to work with closed, buggy code, figure out where the bugs are and how to work around them, figure out what proprietary 'extensions' MS has 'helpfully added' to otherwise standard protocols, figure out how to script an essentially unscriptable system, deal with mysterious registry problems, malware, viruses, virtually no security to protect important files, etc. Ever try to replicate an IIS metabase to several servers? Ask an apache admin how hard it is (copy a few text files), then a seasoned windows person (buy a really expensive tool from Microsoft, or try to script it, or use ghost to move _the_entire_operating_system, or more likely manually point and click through the whole thing). Then think about which has the more challenging job. The Apache guy just needs to know a text editor and some copy commands. The Windows guy needs to understand, at a fundamental level, how the metabase file is used, why it cant be copied directly, and how to work around the situation. Frequently this type of problem then requires you to purchase a tool, either from MS or a 3rd party which means the ability to understand the problem well enough to explain it to management, evaluate the options, etc.

    So, no, I don't think Unix people are more technical, they just aren't as masochistic.

    --
    "But actually trying to use m4 as a general-purpose langage would be deeply perverse" --ESR
  21. You forgot to mention... by leonbrooks · · Score: 4, Insightful

    ...that we're "more technical" because we have better toys. Having any modern Linux distribution is like having a honking great Lego (tm) collection (top toy, and it runs under MS-Windows as well). Having MS-Windows is like having Barbie dolls - sure they look pretty, and have all of these neat (and expensive) accessories, but after you've posed them in variations of six different ways, that's about it for imagination. For kids, it's time to rip the legs off and see what makes them go.

    The shiny stuff in modern Linux distros (KDE, GNOME etc) is like modern Lego in that it is kind of pre-built. This takes some of the fun out of it but also saves doing some repetitive tasks (e.g. "assemble Bob the Builder model") and more accurately represents small objects.

    PS, I very seldom "compile my own software" (although I've been doing a lot of it this last week for customers). When I do, I sing halleliujahs for the ability to do it, sadly absent in much MS-Windows software. But for 99% of what I do, eminently suitable "shrink-wrapped" versions exist, and most stuff is modular enough that BASH will glue it together if the existing stuff falls short.

    Oh... that's right, you don't have BASH. Well, try the CygWin suite which includes it, and/or pull down a free PERL and have a go with that as a glue language.

    I haven't had time to er, use usenet for ages. Google's interface is a pretty good newbie gateway to it.

    --
    Got time? Spend some of it coding or testing
  22. Yeah? by leonbrooks · · Score: 2, Funny
    And I quote:
    Your search - C05482375 - did not match any documents.
    --
    Got time? Spend some of it coding or testing
  23. No, You my new friend are incorrect by Bill,+Shooter+of+Bul · · Score: 2, Informative

    Just pointing out.that you can do exactly that with win xp. What don't believe me? ok, take a look at This

    --
    Well.. maybe. Or Maybe not. But Definitely not sort of.