Slashdot Mirror


User: mjschultz

mjschultz's activity in the archive.

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

Comments · 17

  1. Re:Really? on Deep Packet Inspection Set To Return · · Score: 1

    The better analogy is letting the USPS read our postcards and use information from that to create better advertisements to help pay for the service. You have a legitimate right to privacy with a sealed envelope (according to the law) and you have that same right to privacy if you seal your packets (i.e. encrypt them). In fact, your ability to protect your private packets is much stronger than your ability to protect your private mail.

    Now, my personal opinion on the matter is that a decent company shouldn't use DPI in such ways, but it is my responsibility to protect information I want to keep private and to educate others to do the same.

  2. Re:Hasn't everyone written a bogus shell at some t on XKCD Deploys Command Line Interface · · Score: 2, Informative

    I spent way too much time after I tried the most natural command line program `look`. Yeah, there is a tiny game in there too. Also, you still don't want to `sudo rm -rf /` cause then you'll have to restart the page.

  3. Re:This is College on Professors Banning Laptops In the Lecture Hall · · Score: 1

    My guess is that the attendance is taken to given them factual numbers to point to when the student fails out of a class. When a kid's parent calls the department to complain that little Timmy is too smart to be failing out of algebra and Professor Tweed should be fired, he can say that Timmy never showed up to class.

    I agree that it is ridiculous that professors take attendance, but I don't think that is the problem. It's the parents who can't let their kid deal with consequences (and to be fair, more often than not I think the parent's $30,000 is paying the tuition bill).

  4. Re:use openvpn ? on Coping With 1 Million SSH Authentication Failures? · · Score: 1

    My users have complained about that before. Especially with respect to SVN over SSH, because SVN has a nasty habit of creating a few connections and if they are quickly browsing the repository with `svn ls` of looking at log messages with different ranges the connections add up very quickly. This led to frustrated users yelling at me. I dialed back the numbers a bit to minimize the impact, but the invalid attempts started scaling back up.

  5. Re:Exactly on Coping With 1 Million SSH Authentication Failures? · · Score: 2, Interesting

    But a million cars haven't driven past. Only ~1200 --- in the past year. This is no big deal. Hell, I start thinking something is wrong when I DON'T see many failed SSH attempts in the daily log reports.

  6. Re:why is it so unreasonable? on Typical Windows User Patches Every 5 Days · · Score: 1

    I think the major complaint here is that there are so many updating systems for a Windows machine. On Linux, yeah I update every day, but it is all done through the same interface. I'm not saying this is perfect. But, it beats running the Windows Update, then the Office Update, then the Adobe Update, then the Apple Update, then the * Update, ad nauseum.

  7. Re:sucks to be support on Typical Windows User Patches Every 5 Days · · Score: 1

    I'm not often a Windows user, but I had just the opposite experience recently and it *really* pissed me off. Windows was doing its auto-updates in the background and I had already gone through a patch-reboot cycle, then it pops up a message saying that it will automatically restart in 10 minutes.

    The first time I saw the message, I clicked remind me again in 10 minutes (the other options were 30 minutes, 1 hour, or 2 hours). 20 minutes later all my programs close and I'm looking at an "Installing Updates" screen. I didn't even get a chance to save my work. The "restarting in 10 minutes" window popped up behind the active window, so I didn't see it.

    This was Windows 7 and there was no "I'll restart the computer myself" option on the interface. I did a bit of searching and the fix involved going through a *.msi file and toggling some setting.

    I assume I must have done something wrong somewhere, because if that is the way Microsoft designed this functionality by default I am glad I don't have to deal with that.

  8. Re:Confused as hell about this line on Google Italy Execs Convicted Over YouTube Bullying Video · · Score: 1

    Ah yes, posting pre-coffee always leads to trouble. Sorry about that.

  9. Re:Confused as hell about this line on Google Italy Execs Convicted Over YouTube Bullying Video · · Score: 1

    All four were convicted of two crimes: failure to comply with the Italian privacy code and criminal defamation. Three of the four were convicted on the first one, failure to comply with the Italian privacy code. None were found guilty on the second, criminal defamation.

  10. Re:Twelve? on Apple Patches Massive Holes In OS X · · Score: 5, Insightful

    Apple's own security update page (http://support.apple.com/kb/HT4004) lists these six, where did Threatpost author get the number 12 from?

    The Flash update is actually 7 vulnerabilities.

  11. Re:Why? on Are Ad Servers Bogging Down the Web? · · Score: 3, Interesting

    I realize that most websites run some version or another of "adverts", but generally speaking, most of those sites are marginal value to start. The sites I frequent usually use text ads, and not the flash (pun intended) graphical ads on some of the more questionable sites.

    That actually reminded me of a short study I did in my English class a number of years ago. I wanted to know if you could get a quick feeling for the quality of a magazine based only on the number of advertisements/glossiness of the publication. Given the limited time and amount of money I was willing to spend I chose "Popular Science" and "Scientific American." PopSci had many more adverts than SciAm and, IMO, this means that SciAm is the better magazine. Yeah, it was a little subjective, but it was only a 5 page paper for an English class.

    It's nice to see that the same thinking still applies to websites.

  12. Re:It's obvious on Fedora 12 Lets Users Install Signed Packages, Sans Root Privileges · · Score: 2, Interesting

    Honest question: Do RPM files have a way of distinguishing between system- and user-level software? It seems like a fairly obvious thing to have/check, then users could install safe applications (i.e. those that don't have programs in /sbin or /usr/sbin), for their own uses.

    Moreover, why can't RPMs just let users install in a private fakeroot directory (like there home directory). That way they don't have to touch the root file system and can easily install packages without needing a password. (Like if I wanted Eclipse, I could just find the RPM and double click to install it, no password, no fuss.)

    I think Fedora could make this right if they wanted to.

  13. Re:Buy a cheap CRT on Making Old Games Look Good On Modern LCDs? · · Score: 3, Funny

    Actually, forget about John Titor and going back in time. I would recommend asking Slashdot what they think to do. Much easier than going back in time.

  14. Re:Comments are good on If the Comments Are Ugly, the Code Is Ugly · · Score: 1

    Well, it seems like if you left the comments and followed the algorithm:

    Read comment,
    Read code,
    Do they agree?
        - Yes, good, this is probably not the bug
        - No, is this a bug?
            - Yes, comment is correct, fix code, check if bug still exists
            - No, correct comment.

    It seems faster, and leaves the comments for the next time you or someone else looks at the code. Also, the comments are correct now.

    More often than not, people *THINK* correctly and code incorrectly, so the comments are useful. If the thought is incorrect, you've probably just found a bug in the software. Yeah, it is useful to understand the entire code base yourself, but that will come naturally as you have to dig down farther to find the flaws.

  15. Re:The comment may also be complex.. on If the Comments Are Ugly, the Code Is Ugly · · Score: 4, Interesting

    I've gotten into the habit of commenting first, coding second. It is especially useful in complex systems.

    I find that if I write the high level logic in comments of all the functions I'm going to write, it helps me find where I should break out repeated logic and solidifies the design. Once everything has been commented, I can go back and write the code.

    This lets me know what the variables are going to be and can name them appropriately (why name it `i` when I can call is `block_index`). I don't lose the big picture of what needs to get done. It gives me targets to meet and stopping points at the end of the day (a sense of accomplishment and goals for tomorrow is *really* nice). Future coders can read my comments and see what I was thinking (this has actually happened to me). As a bonus, I can worry more about corner cases as I'm writing the code instead of creating corner cases to worry about later.

    I've done it with a Flash memory interface, O/S memory manager, and a kernel module. Each time I've finished, even if it isn't the best code in the world, I know that if the next person reads the comments, they'll know what I was thinking.

    Better code all around.

  16. Re:Heh on x86 Emulator on PSP Runs Windows & Linux · · Score: 1

    well thats just silly, why not emulate x86 on a psp running linux, running wine, running the psp emulator, lather, rinse, and repeat. That would make more sense to me.

  17. Re:G-Franchise on Google Donating Bandwidth and Servers to Wikipedia · · Score: 1

    I read that and it took me a while to figure out what else $ would mean. No, G$s for me.