Slashdot Mirror


User: tony+clifton

tony+clifton's activity in the archive.

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

Comments · 53

  1. Have they improved garbage collection? on Guido Von Rossum on Python · · Score: 1
    Last time I heard, Python still used a lame reference-counting implementation of garbage-collection. Where each object, had a count of objects which referred to it, and when the count dropped to 0, the object was garbage collected.

    The problem with this is the obvious circular-reference problem, where an entire network of objects is self-referring, but the network is cut loose and should be collected.

    This is fine (and simple) when it's just a collection of scripts which run pretty quickly, but in the context of something like Zope where the program's more of a server and runs for days, this is going to present serious memory-management headaches.

  2. Re:OK, what's the angle? on Rep. Gets It - Boucher Re-Examines Fair Use · · Score: 1
    It depends which corp -- the tech industry (if you hadn't noticed) has had a pretty severe dropoff in sales.

    So if you're selling PC's, hard drives, home LAN's, Broadband Crap, etc., or even operating systems, the wins that the entertainment industry have been chalking up are coming out of your hide. You want people to be trading big files over the internet -- it's in your interest.

  3. Anyone run Samba under this? on Linux On Windows - The Thin End Of The Wedge? · · Score: 1

    Cool, filesharing actually works!

  4. I've seen a Handspring rep at Fry's on Undercover Sales Consultants? · · Score: 1

    A few months ago I was at the Fry's in Anaheim and I saw a rep from Handspring in the PDA isle.

  5. Oh cripes, everyone's an artist on Where Is The Line Between Programmer And Artist? · · Score: 1
    I spent a few years doing game programming (fairly low salary, high stress, long hours, not recommended) and the only relation to the artists is that the programmers worked with them.

    If you're doing your job right, you're spending your time buried in MSDN CD's, doing the simplest thing which could work, and installing your software on as many different hardware/OS combinations as you can find... because DirectX can act differently.

    The only thing expected of you is to get things done on time and competently. Don't crash, keep the framerate up, don't do anything weird. Reaching that level of transparent simplicity is actually quite hard, most progammers can't do it. But I wouldn't call it art. And -- oh yeah -- nobody cares about how well factored or designed your code is, because the bits are going to get burned on a CD, and that's the primary focus. Will it get done on time? That's the question.

    The creative people (and it's not you, you don't have time) write a script which gets approved by a publisher. That's where all the cool ideas which people appreciate come from. And the Photoshop and 3DStudio jockeys -- the artist -- they make decisions about the look, usually the script'll have a bit of discression for them.

    But in terms of creative interaction? Well -- if you're supporting 8-bit graphics, you'll spend a fair amount of time convincing the artists why they should use the same palette on all their bitmaps. And that you need to change it at the last minute.

    In terms of creativity -- I've had a lot more satisfaction doing business and web programming. In those realms, a good O-O design is seen as an asset and not just "geek talk".

  6. Proof-Positive on BIND Security Info For "Members Only"? · · Score: 1

    There should be more DNS implementations: if there were a rich collection of nameservers out there, with "redundant" TLD's running different implementations, it would be a lot less likely that one buffer-overflow puts the whole internet at risk.

  7. Another bit of beautiful code -- for the lispers on Where Can I Find Beautiful Code? · · Score: 1
    Peter Norvig's book Paradigms of Artificial Intelligence Programming is really quite good. It gives code and commentary on some really amazing programming.

    As well as it might pay, most of the work done in Java and on the internet these days is a lot closer to COBOL programming (batch and transactional) than anything close to the complexity and ingenuity of an Eliza or GPS.

  8. Smalltalk on Where Can I Find Beautiful Code? · · Score: 1
    In Cincom VisualWorks or Squeak Smalltalk, there's probably the most mature base of object-oriented code in existence. And good browsing tools.

    Totally beautiful -- in my case it took someone who understoon object-oriented principles and had done a bit of C++ in small 6-week to 3-month college projects into the culture of real O-O development.

    Caveats -- after doing Smalltalk, C++ will get really painful and you'll keep snickering every time you read Java code.

  9. A Question -- Can it allow Win2k VPN? on Why iptables (Linux 2.4 Firewalling) Rocks · · Score: 1
    I use ipchains w/ masquerading on my 2.2 linux box to implement NAT and allow the internal network to see the outside world -- allowing only packets with the SYN bit set back in.

    This works fine for web and ssh and outgoing mail and dns and all -- but not when I need to use Win2k's VPN client to establish a tunnel -- my understanding is that the VPN server tries to establish a connection back (expecting to hit Win2k, but hitting to the linux box) which is refused.

    How can I configure IPTables so I can tunnel and stay firewalled?

  10. Get an Accountant on Is There Still A Contract Market For Programmers? · · Score: 3
    Especially if you incorporate -- there are a ton of rules in terms of how you can pay yourself. No company is doing withholding, it's all on you. So ask a contractor who seems to be doing OK for the name of their accountant. And it's a pain in the ass to do yourself -- I can debug two dozen EJB's at once, scrawl UML on a napkin, and solve a halting problem: but bookkeeping is a black art as far as I'm concerned. I'll leave it to an adult.

    And buy QuickBooks. If you're contracting, you'll need to do invoicing and keep track of your expenses. Your accountant will appreciate its reporting abilities too: beats a shoebox of receipts. QB does a great job -- has anyone found an open-source alternative that compares?

  11. Re:How? on Is There Still A Contract Market For Programmers? · · Score: 1
    Well -- if he's got free time, doing open source is a great way to learn new things, if you're lucky get your reputation out there, etc.

    When I have down time, I do three things -- vacation, get some training, and find something interesting to hack on.

  12. Re:contract work is hard..... on Is There Still A Contract Market For Programmers? · · Score: 2
    Yeah agencies skim your check, but they provide a lot of liquidity. Even with an agency, I'm easily making twice the going salaries.

    And -- with dot.coms going under, it's really nice if your contract is with the agency than directly with the company.

    Benefits? There aren't any. Except the extra money and tax writeoffs when you incorporate!

  13. OO Allows for Optimization (Re:Another reason ...) on The Object Oriented Hype · · Score: 1
    I'll agree that this isn't really a compiler issue, it's one of judicious optimization. O-O is about modelling a system correctly, producing code which is relevant in a multi-year project when 20% of your staff is turning over every year.

    Unless you're designing a system with pretty extreme realtime constraints *everywhere*, odds are that less than 10% will impact real performance. That's where you re-code in C or assembly or whatever works. And the remaining 90% involves control structures and network and database calls. Who cares -- speeding this up will have minimal impact on system performance, you'll just call NOP more often.

    Data point: I worked a few years ago on a fairly large exotic finance application. In Smalltalk. There was a competing system which had been written in C++ (also object-oriented, but especially at the time wasn't used very well). Smalltalk runs between 2 and 10 times slower than C++, especially for floating point performance (because they're portable across architectures). And when you're pricing derivatives, you do a lot of floating point.

    End result? Not only was out system written substantially quicker -- which is the norm for experienced smalltalkers, but it was **faster**. Because we had a more understandable system, we had better tools to identify the 10% which was slowing things down, and we were able to make it work smarter.

  14. Get a Masters Degree on H-1B Visas Increased In 96-To-1 Vote · · Score: 1

    One really insidious piece of the legislation appears to be the part which exempts holders of MS or better degrees from the cap. Now it's just a piece of paper.. but well, I've always wanted to learn about wavelets anyway.

  15. Modern Interview on Programming Interviews Exposed · · Score: 1

    Goes like this -- "Can you spell 'C'?"

  16. Write off the development time on Adopt-a-Free-Software-Project Program Launched · · Score: 1
    What if people writing open-source software were able to write off the time at a reasonable rate: say [if they were self-employed] as a business development expense or [otherwise] as a donation?

    I'd think that if this practice could fly, open-source would really flourish.

  17. An OSS RDBMS would be a good thing on Is there An Enterprise-Level Open Source RDBMS? · · Score: 1

    The incompatibilities even at the SQL-layer between SQLServer, Oracle, Informix, etc are just silly: it's not just Microsoft which is locking in their customers.

    Scaling up mSQL or any of the others and keeping them standards-compliant would be a really good thing and hopefully provide a Reference Implementation of how these DB's ought to behave -- at least from the client perspective.

  18. Well -- mine came two days ago on Netpliance Ban I-Opener Mods · · Score: 1

    Haven't even opened it: was waiting for the weekend to get the IDE device. I'll call them up and cancel service as soon as I get a chance though.

  19. Re:Don't Opt Out -- Make It Worthless on DoubleClick Workaround: IDcide · · Score: 1

    Moderate this up!!

    I was going to suggest writing a script which habitually deletes cookies from doubleclick and others (while keeping my slashdot and yahoo cookies)...

    But feeding doubleclick garbage? Cool..

    I wonder if this can cause a buffer overflow on their end? :-)

  20. Super-Nifty!! (CD-ROM??) on Flat Panel Linux Box for $99? · · Score: 3

    An IDE CD-ROM is a lot cheaper and easier to work with than a 2.5" hard disk. If the BIOS supports the El-Torito Bootable CDRom stuff, that's another way to get your favorite linux distro on it -- especially if you can get the 16M flash to work as well. Nifty!!!

  21. Could be a nice MP3 player as well on Flat Panel Linux Box for $99? · · Score: 2
    From the site:

    Yamaha YMF715 Stereo Speakers Doesn't say anything about the sound chip, though? Is it any good [or upgradable?]. I don't think that PLIP could get the bandwidth, but with USB ethernet, I could also plug this into my home network to play MP3's stored on my server!!

  22. Re:Why Encrypted Anyway? on Symantec Tries to Censor Criticism · · Score: 1
    If you recall Brock Meeks's Keys to the Kingdom , the list of sites is what makes one filtering product better different than the other. It really is Intellectual Property / a Trade Secret.

    Here's a tie-in with the DVD case, though: How trivial could the encryption be to claim that it was "illegally" reverse-engineered under DMCA? If being XOR'd with "Hi mom" would qualify, how about being XOR'd with "". i.e. trivial (non-) encryption?

    By that definition, any text is encrypted (most of it badly)

  23. Excellent Idea (Re:How about doing it right then?) on Symantec Tries to Censor Criticism · · Score: 1
    We can "Do it right" and implement two things:

    A Reference Model of how to block sites with substantially lower error rates than our commercial cousins.

    For those [ahem] interested, a better way to find web porn.

    And who wouldn't enjoy destroying the revenue of the censorware companies while we're at it?

    The obvious caveat: To actually deploy this we'd have to write a Win32 version for the home PC's.

  24. Intel Creepiness on Intel Giving Away Free Computers To Employees · · Score: 1

    Given some of the creepy intel practices as seen on Face Intel I'd be really nervous about using it for much of anything -- they're already known to break into visitor cars and hire private investigators.

  25. So -- how to get around it on Clinton Frowns on Anonymity · · Score: 2

    I've been thinking of this for some time, ever since it seems that every ISP out there broadcasts the region and state I'm in in the dialup IP address they give me. Seems to me that this creates a great opportunity to plant a few linux boxes in the West Indies (Anguila apparently, any place else) and sell IP tunneling and cleansing services to people with dialup and cable modem accounts.