| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 4 months |
| seen | Dec 25 '12 at 20:09 | |
| stats | profile views | 76 |
|
Jan 20 |
awarded | Yearling |
|
Jun 30 |
comment |
Using RMAIL to send an e-mail rmail in emacs has nothing to do with the (long obsolete) shell command of that same name. If you are looking to read email in emacs, there are a large number of options (of which rmail is certainly a possibility.) |
|
Jun 5 |
comment |
BASH automating a process No, you are not. "Emulating a TTY" means running an interactive program under a pty because it will not function unless stdin and stdout are attached to /dev/tty -- examples are programs like telnet, slogin or emacs. By contrast, in this case, you were dealing with a normal program that is almost certainly happy if stdin and stdout are attached to pipes or what have you. popen(3) will work just fine. |
|
Apr 10 |
answered | how to use expect in shell script |
|
Apr 10 |
answered | Ruby BigDecimal rounding |
|
Apr 9 |
comment |
know udp packet size with poll select or epoll That is correct. The sockets interface will only return full packets, not fragments. |
|
Apr 9 |
comment |
Tool for socket visualisation What would the visual representation give you, other than fancy boxes with rounded corners showing you things you didn't understand anyway? A GUI does not substitute for education. Adding a fancy clickable interface doesn't magically convey understanding to people who don't have it. Have you even tried to use tcpdump? Have you tried wireshark? If not, on what rational basis are you dismissing them? |
|
Apr 8 |
comment |
Using RMAIL to send an e-mail No modern system will, in the general case, let you set the "From" address to something arbitrary. In any case, "rmail" became obsolete with the end of UUCP, which has been dead for well over a decade, you should probably ask the instructor if using /usr/bin/mail is okay (and I bet they'll say yes). |
|
Apr 8 |
comment |
Tool for socket visualisation I think that, in general, "visualizing" isn't what you want when you're debugging. You want a clean list of the packets exchanged through time. As with many other debugging situations, the command line is generally your friend. I'm not against GUIs in general, but I've been debugging packet traces for over 20 years with tcpdump and there is really no faster way to figure out what is going on. |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? This is perhaps a matter of taste or age, but my ability to remember numerous rules is limited. The more rules you add, the harder it is to recall all of them. I know and have to use a dozen programming languages fairly regularly, and I no longer have the memory I did at 25, so after a while this sort of thing becomes more a bother than a help. Of course, some people have different tastes -- to each his own. |
|
Apr 6 |
revised |
Using RMAIL to send an e-mail remove homework note, since someone added the tag. |
|
Apr 6 |
answered | Tool for socket visualisation |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? @MatheusMoreira: Because, among other things, humans aren't nearly so good at remembering hundreds of fiddly grammar rules as machines are. Programming languages are best when they're simple, because then humans don't have trouble figuring out how to use them. |
|
Apr 6 |
answered | Using RMAIL to send an e-mail |
|
Apr 6 |
comment |
Algorithm to find maximum sum of elements in an array such that not more than k elements are adjacent Is this homework? If so, it should be tagged as such. |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? (It appears to be on page 31...) |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? Ah, very cool. I don't suppose you could edit that to list the page it is on? |
|
Apr 6 |
accepted | Are “begin” and “end” reserved words or not? |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? That doesn't seem to be official documentation though. (I haven't found any mention about it in official documents, though that does not imply that it doesn't exist.) |
|
Apr 6 |
comment |
Are “begin” and “end” reserved words or not? Your claim about parentheses seems to be false, at least in Ruby 1.9.3 -- begin() does not seem to work for me. |