Forum: Upcoming News Stories Jul 12th, 2006 |
| Replies: 5 Views: 1,340 IMHO it's a bad thing to do this. Same goes for putting UK and/or Canada at the top. Such a list should *always* be alphabetical. And you don't have to scroll btw, you can just type in the letter 'u'... |
Forum: Shell Scripting May 25th, 2004 |
| Replies: 18 Views: 14,989 I see. Thanks for your explanations - I didn't think about the possibility of a small hack becoming a big project (having never been in that situation before), but I guess it's pretty logical :)... |
Forum: Shell Scripting May 25th, 2004 |
| Replies: 18 Views: 14,989 Don't know if Python would be any better for such a project - but wouldn't a compiled language (C maybe) be better for something so big?
Don't know a lot about the sizes of projects as I'm not a... |
Forum: Viruses, Spyware and other Nasties May 24th, 2004 |
| Replies: 11 Views: 3,326 No way man! 1'm 31337, 1 u53 t3h pr0x135!!!!!1111 |
Forum: Shell Scripting May 24th, 2004 |
| Replies: 18 Views: 14,989 I doubt it'd be easy to find an unbiased view about Python<->something, as most people are generally fond of one the languages they're comparing. However, here's a pretty good read on Python vs. Perl... |
Forum: Viruses, Spyware and other Nasties May 24th, 2004 |
| Replies: 11 Views: 3,326 Nope, I seriously doubt you can. I've gotten pretty good at stalking in the course of years. It's an art, you know. You'll need to blame alc<insertsomenumbershere> for my being here though, as I... |
Forum: Networking Hardware Configuration May 23rd, 2004 |
| Replies: 4 Views: 3,821 I thought the same about download accelerators at first.
I've got prozilla installed now though, and it's excellent. What it does is create 4 connections (by default, that canbe changed though) to... |
Forum: Shell Scripting May 23rd, 2004 |
| Replies: 6 Views: 4,011 It's compiled, yep. It's based on Pascal, so it probably resembles it a lot.
It runs on many/most platforms, there's a GNU compiler for it which is pretty popular: gnat. |
Forum: Shell Scripting May 23rd, 2004 |
| Replies: 3 Views: 4,062 You didn't say what language it is...
This should really be in your manual though, as it's pretty basic stuff. Otherwise, I'd recommend finding a better one ;) |
Forum: Viruses, Spyware and other Nasties May 23rd, 2004 |
| Replies: 11 Views: 3,326 No idea, but installing an anti-virus (AV XP is pretty good) would probably help you out here. |
Forum: HTML and CSS May 23rd, 2004 |
| Replies: 1 Views: 7,021 Posting your code would help :)
It's really not the number of boxes which matters, you probably just have a small mistake in the large webpage. |
Forum: Visual Basic 4 / 5 / 6 May 23rd, 2004 |
| Replies: 33 Views: 30,609 On PlanetSourceCode, there are examples of 'VB Operating Systems' - they aren't realy OS's though. You can't make a true OS in VB.... |
Forum: Shell Scripting May 23rd, 2004 |
| Replies: 18 Views: 14,989 I'm very interested... I know I need to pick up these languages some day anyway. I already started learning Python a while back, but I quit at some point. I just lack the motivation to read those... |
Forum: Shell Scripting May 22nd, 2004 |
| Replies: 18 Views: 14,989 Thanks *a lot* for posting that Perl example, Ben. I've been wondering for a while how hard system programming would be, and in Perl it seems fairly easy - I'm very much surprised that's all that's... |
Forum: Shell Scripting May 22nd, 2004 |
| Replies: 18 Views: 14,989 Well by now I suppose (s)he had to hand in the assignment already (if it was homework in the first place), so now the only people benefitting (speeling?) from it would be other readers (or so I... |
Forum: Shell Scripting May 21st, 2004 |
| Replies: 18 Views: 14,989 IMHO you can keep it much simpler than liliafan's script, by using 'the right tool for the right job' as they say ;)
#!/bin/bash
echo Total: $(ls | wc -l)
echo Total files: $(ls -F | grep -v /$... |