Slashdot Mirror


User: gbr

gbr's activity in the archive.

Stories
0
Comments
97
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 97

  1. Cross Platform on Transitioning From Windows to Linux Development? · · Score: 1

    There are a ton of cross-platform tools that will let you develop for Windows and Linux platforms. Personally, I use wxWindows, but you should also look at Kylix, QT, MONO, etc.

  2. What... Again? on The Age of Aggressive Linux Advocacy Is Upon Us? · · Score: 2, Funny

    It seems that every week there is a new 'critical period' for Linux. Sheesh. Give it up guys, and lets just agree that we're in one massive 'critical period' instead of a bunch of tiny ones.

  3. Re:For those who *can* use Windows... on Build Your own "Set-Top" Box · · Score: 1

    Just don't try this under XP. The drivers suck and hard reset the system.

    I had to re-install XP.

  4. Rock Climbing on Geek Outdoor Hobbies? · · Score: 1

    The only way to have outdoor fun! Seriously! When you rock climb, you enter the same 'zone' that you do coding.

  5. CVS or BitKeeper on Tips on Managing Concurrent Development? · · Score: 1

    I'm really surprised that CVS doesn't work for you. I've used it on single person and 15+ person projects, and we never had situations where people had to re-apply their work.

    The only thing that I wish CVS had is transactional based updates. That is, either all check-ins work, or they all fail, as a single transaction. And that transaction logs (all files that are part of a check in are remembered as a group, rather than as individual checkins).

  6. PCMCIA on What's the Worst Acronym You've Ever Heard? · · Score: 1

    People can't memorize computer industry acronyms.

  7. Use a two step process on Backing Up 100 Gigs in an Hour? · · Score: 1

    I didn't read this while scanning he other messages, so....

    1. Backup to an separate system, onto its hard drives.

    2. Tape backup the separate system.

    You get speed, and your tape requirement.

  8. What about MPEG 2 on Non-MP3 Codecs? · · Score: 1

    I know a local software developer that uses mpeg-2. The size is about the same, from what I understand, but you don't get the messy license agreements with it.

  9. Re:The Prisoner on New Years Marathons · · Score: 1

    I've got it on VHS, from a long time ago...

  10. The Prisoner on New Years Marathons · · Score: 3, Informative

    I'll be watching every episode of the classic 'The Prisoner'

  11. Re:this is a good first step, but.. on Microsoft Attempts to Secure IIS · · Score: 1
    Rewriting from scratch is ALWAYS a bad idea. All of the holes that they have already plugged, plus who knows what else.

    What they should do is perhaps re-design IIS, and use as much existing (heavily peer reviewed) code as possible.

    Read the Gartner story here and then the whole spiel here. Joel's a highly opinionated person, but we tend to agree on a lot of things.

  12. This is one on Macromedia Flash Client for Linux? · · Score: 2, Informative

    I'm not sure if it has an IDE or not...
    JGenerator

  13. What about C/C++ Applets on Browser Bindings for Python, Perl, and other Languages? · · Score: 1

    How about a browser plugin for C/C++ apps? ANybody know of one?

  14. Canada Status on Attacks On US Continued Reports · · Score: 2, Informative

    All Canadian Airports are shutdown, except for flights that are already in the air. They are providing landing for those planes.

    The Canadian/US border is closed.

    Canadian Military is on alert, and miltary police are in key locations.

    Toronto Stock Exchange is closed.

  15. Re:Core Programming Books on Computer Books For A Library? · · Score: 1

    Also 'Code Complete'. Same author, I think. From Microsoft Press

  16. Re:Open Source vs Proprietary on Debian GNU/Linux Used in Electronic Voting Trials · · Score: 1
    No shit, open source products rip all their idea from the closed source, proprietary products.

    I'd have to disagree with that, in the same way I'd have to disagree if you said 'closed source products rip all their ideas from other closed source products'.

    Every products gets new ideas from competing products, Open Source is no different. Open Source software can (and does) have some features that proprietary software does not yet have. Notice the word 'yet'. Proprietary software will copy features that work as well.

  17. Open Source vs Proprietary on Debian GNU/Linux Used in Electronic Voting Trials · · Score: 2

    Although I believe in Open Source, I don't think they make a valid point about its use.

    Both a proprietary and an Open Source system can be code audited by outside people, if the proprietary company allows it. I think that any government should make that a stipulation before using anybodies code.

    I prefer the Open Source solution, but if a proprietary solution comes along that performs the job better (and can be code audited) then use it. Better yet, wait two weeks and the Open Source product will have all of the same features!

  18. Re:SDSC != Netapp on Terabyte File Server for $5,000 · · Score: 2

    Take a look at SnapFS for Linux. You can find it on Freshmeat.

    It does snapshots on top of most filesystems!

  19. Re:Cable Modem on How Much Bandwidth Does VNC Require? · · Score: 1

    I forgot to mention....

    With the Windows Server, I have 'Poll Full Screen' activated.

  20. Cable Modem on How Much Bandwidth Does VNC Require? · · Score: 1
    My cable modem is about 100K up and 200K down. I am running a Win 2000 Server under VMware.

    With a Windows VNC client, and a Windows VNC Server at 1152 x 864 @ 32 bits (client forcing 8 bit), I can use VNC for everyday tasks. There is a noticable lag on screen updates, but nothing that can't be lived with.

    Under the same setup, with a Linux VNC server at 1200 x 900 @ 16 bits (not forcing to 8 bits), I get better speeds.

  21. Re:Two key problems that can come up on Code Reviews- Do They Really Exist, In Practice? · · Score: 1

    I have to disagree with your point number 1.

    If the company has coding style guidelines, and a proper detailed design document has been written and approved, then the code review cannot be judgemental. Granted, discussion about whether to use a do..while or a while loop may come up, but that decision is the devlopers not the reviewers. As long as the code is not buggy. Through the discussion, the coder may find that a do...while would be better suited to the problem at hand, and then change the code, but it should not be a formal request that comes out of the code review.

    Of course, if the coder does change from a while to a do...while, then his/her changes need to be reviewed again.

    As to your point number 2, an approved Detail Design Document should solve that problem. A Detailed Design document also needs to go through a review process.

  22. We do them on Code Reviews- Do They Really Exist, In Practice? · · Score: 1

    We do formal code reviewes for all new code that is generated. We include at least 2 senior, 1 intermediate, and/or 1 junior developer.

    The code reviews are formalized, and result in a list of changes required to the code. When the developer makes the changes, the changes are once again reviewed.

    The design and flow of the code is not reviewed here, since that was done when the detailed design was written and reviewed. However, the code is verified to follow the design.

    For code that has been code reviewed and accepted, minor bug fixes do not go through a formal review. However, a senior devloper must be brought in to view the changes and confirm them.

    Major code changes go through another code review process.

    I find code reviews (and all of the other peer reviews in the process) to be helpful, although they are time-consuming. We tend to find actual code and logic problems more in the junior and intermediate developers work, but they do occur in some seniors work as well.

    Most of out code reviews find problems in the devlopers not following our coding style guidelines.

  23. Browser Plug-in on C Styled Script - C-like Scripting Language · · Score: 1

    I once saw a browser plug-in that would execute C code (muchlike java, interpreted, etc).

    I seem to have lost the pointer to it. Anybody know where I can still find this?

  24. This is unfortunate... on VA Linux Systems Leaving The Hardware Business · · Score: 3

    I purchased several VA systems when I was at Videon here in Winnipeg. The systems have proven to be stable and reliable.

    I'm sorry to see this hardware resource go, and wish them the best of luck in the software world.

  25. History Repeats Itself on Authentication is the Key · · Score: 1
    Man, haven't we seen this already? Go back to the 70's and 80's where everyone* had Mainframes or Unix Servers. Just take away the LAN, and throw in the Internet. Voila... Brave New World indeed!

    *Everyone being the larger corporations