User jj33 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:32:29Z http://stackoverflow.com/feeds/user/430 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1126047/how-can-i-parse-a-raw-snmp-trap-in-perl 3 How can I parse a raw SNMP trap in Perl? jj33 2009-07-14T15:11:16Z 2009-11-17T15:50:43Z <p>A few weeks ago I wrote an SNMP relayer for our ops group. They have some dumb devices that can only send traps to a single IP, and we have a monitoring system that listens on multiple IPs for availability. The code's dead simple, and essentially:</p> <pre><code>while (recv($packet)) { foreach $target (@targets) { send($target, $packet); } } </code></pre> <p>It's worked, basically, but now the obvious short coming that it doesn't include the originator IP is an issue (apparently the first class of device included the info as a varbind and some new class does not).</p> <p>What I would like to do is change my code to something like this:</p> <pre><code>while ($server-&gt;recv($packet)) { my $obj = decompile($packet) if (!$obj-&gt;{varbind}{snmpTrapAddress}) { $obj-&gt;{varbind}{snmpTrapAddress} = inet_ntoa($server-&gt;peeraddr()); } $packet = compile($obj); foreach $target (@targets) { send($target, $packet); } } </code></pre> <p>In other words, if my sender isn't including snmpTrapAddress, add it. The problem is that every SNMP package I've looked at for Perl seems very heavily focused on the infrastructure of receiving traps and performing gets.</p> <p>So: Is there a simple Perl module that will allow me to say "here's a blob of data representing an snmp trap. decode it into something I can easily manipulate, then recompile it back into a blob I can throw over the network"?</p> <p>If the answer you give is "use SNMP dummy", can you provide examples of this? I may just be blind, but from the output of <a href="http://search.cpan.org/perldoc/SNMP" rel="nofollow">perldoc SNMP</a> it's not obvious to me how to use it in this manner.</p> <p>EDIT:</p> <p>Turns out after looking around a bit that "SNMP encoding" is really ASN.1 BER (Basic Encoding Rules). Based on this I'm having a go with Convert::BER. I would still welcome any easy break down/edit/rebuild tips for SNMP.</p> http://stackoverflow.com/questions/1126047/how-can-i-parse-a-raw-snmp-trap-in-perl/1133231#1133231 2 Answer by jj33 for How can I parse a raw SNMP trap in Perl? jj33 2009-07-15T18:49:41Z 2009-07-15T18:49:41Z <p>I never found a perfect solution to this. Net::SNMP::Message (part of <a href="http://search.cpan.org/~dtown/Net-SNMP-5.2.0/" rel="nofollow">Net::SNMP</a>) might allow this but doesn't seem to have a publicly defined interface, and none of the Net::SNMP interface seemed especially relevant. <a href="http://search.cpan.org/~kragen/NSNMP-0.5/NSNMP.pm" rel="nofollow">NSNMP</a> is closest to the spirit of what I was looking for, but it's brittle and didn't work for my packet out of the box and if I'm going to support brittle code, it's going to be my own brittle code =).</p> <p><a href="http://search.cpan.org/~trockij/Mon-0.11/Mon/SNMP.pm" rel="nofollow">Mon::SNMP</a> also got close to what I was looking for, but it too was broken out of the box. It appears to be abandoned, with the last release in 2001 and the developer's last CPAN release in 2002. I didn't realize it at the time but I now think that it's broken because of a change in the interface to the Convert::BER module it uses.</p> <p>Mon::SNMP got me pointed toward <a href="http://search.cpan.org/~gbarr/Convert-BER-1.3101/BER.pod" rel="nofollow">Convert::BER</a>. A few thousand reads of the Convert::BER POD, the Mon::SNMP source, and <a href="http://www.faqs.org/rfcs/rfc1157.html" rel="nofollow">RFC 1157</a> (esp. 4.1.6, "The Trap-PDU") later and I came up with this code as a proof of concept to do what I wanted. This is just proof of concept (for reasons I'll detail after the code) so it may not be perfect, but I thought it might provide useful reference for future Perl people working in this area, so here it is:</p> <pre><code>#!/usr/bin/perl use Convert::BER; use Convert::BER qw(/^(\$|BER_)/); my $ber = Convert::BER-&gt;new(); # OID I want to add to the trap if not already present my $snmpTrapAddress = '1.3.6.1.6.3.18.1.3'; # this would be from the incoming socket in production my $source_ip = '10.137.54.253'; # convert the octets into chars to match SNMP standard for IPs my $source_ip_str = join('', map { chr($_); } split(/\./, $source_ip)); # Read the binary trap data from STDIN or ARGV. Normally this would # come from the UDP receiver my $d = join('', &lt;&gt;); # Stuff my trap data into $ber $ber-&gt;buffer($d); print STDERR "Original packet:\n"; $ber-&gt;dump(); # Just decode the first two fields so we can tell what version we're dealing with $ber-&gt;decode( SEQUENCE =&gt; [ INTEGER =&gt; \$version, STRING =&gt; \$community, BER =&gt; \$rest_of_trap, ], ) || die "Couldn't decode packet: ".$ber-&gt;error()."\n"; if ($version == 0) { #print STDERR "This is a version 1 trap, proceeding\n"; # decode the PDU up to but not including the VARBINDS $rest_of_trap-&gt;decode( [ SEQUENCE =&gt; BER_CONTEXT | BER_CONSTRUCTOR | 0x04 ] =&gt; [ OBJECT_ID =&gt; \$enterprise_oid, [ STRING =&gt; BER_APPLICATION | 0x00 ] =&gt; \$agentaddr, INTEGER =&gt; \$generic, INTEGER =&gt; \$specific, [ INTEGER =&gt; BER_APPLICATION | 0x03 ] =&gt; \$timeticks, SEQUENCE =&gt; [ BER =&gt; \$varbind_ber, ], ], ) || die "Couldn't decode packet: ".$extra-&gt;error()."\n";; # now decode the actual VARBINDS (just the OIDs really, to decode the values # We'd have to go to the MIBs, which I neither want nor need to do my($r, $t_oid, $t_val, %varbinds); while ($r = $varbind_ber-&gt;decode( SEQUENCE =&gt; [ OBJECT_ID =&gt; \$t_oid, ANY =&gt; \$t_val, ], )) { if (!$r) { die "Couldn't decode SEQUENCE: ".$extra-&gt;error()."\n"; } $varbinds{$t_oid} = $t_val; } if ($varbinds{$snmpTrapAddress} || $varbinds{"$snmpTrapAddress.0"}) { # the original trap already had the data, just print it back out print $d; } else { # snmpTrapAddress isn't present, create a new object and rebuild the packet my $new_trap = new Convert::BER; $new_trap-&gt;encode( SEQUENCE =&gt; [ INTEGER =&gt; $version, STRING =&gt; $community, [ SEQUENCE =&gt; BER_CONTEXT | BER_CONSTRUCTOR | 0x04 ] =&gt; [ OBJECT_ID =&gt; $enterprise_oid, [ STRING =&gt; BER_APPLICATION | 0x00 ] =&gt; $agentaddr, INTEGER =&gt; $generic, INTEGER =&gt; $specific, [ INTEGER =&gt; BER_APPLICATION | 0x03 ] =&gt; $timeticks, SEQUENCE =&gt; [ BER =&gt; $varbind_ber, # this next oid/val is the only mod we should be making SEQUENCE =&gt; [ OBJECT_ID =&gt; "$snmpTrapAddress.0", [ STRING =&gt; BER_APPLICATION | 0x00 ] =&gt; $source_ip_str, ], ], ], ], ); print STDERR "New packet:\n"; $new_trap-&gt;dump(); print $new_trap-&gt;buffer; } } else { print STDERR "I don't know how to decode non-v1 packets yet\n"; # send back the original packet print $d; } </code></pre> <p>So, that's it. Here's the kicker. I took ops at their word that they weren't getting the IP of the original sender in the trap. While working through this example, I found that, at least in the example they gave me, the original IP was in the agent-addr field in the trap. After showing them this and where in the API of the tool their using this is exposed they went off to try to make the change on their end. I'm daving the code above against the time they ask me for something I actually need to muck in the packet for, but for now the above will remain non-rigorously-tested proof of concept code. Hope it helps someone someday.</p> http://stackoverflow.com/questions/14118/how-can-i-test-stdin-without-blocking-in-perl/14124#14124 8 Answer by jj33 for How can I test STDIN without blocking in Perl? jj33 2008-08-18T03:12:06Z 2009-07-15T04:26:55Z <p>The Perl built-in is <a href="http://perldoc.perl.org/functions/select.html" rel="nofollow"><code>select()</code></a>, which is a pass-through to the <code>select()</code> system call, but for sane people I recommend <a href="http://search.cpan.org/dist/IO/lib/IO/Select.pm" rel="nofollow"><code>IO::Select</code></a>.</p> <p>Code sample:</p> <pre><code>#!/usr/bin/perl use IO::Select; $s = IO::Select-&gt;new(); $s-&gt;add(\*STDIN); while (++$i) { print "Hiya $i!\n"; sleep(5); if ($s-&gt;can_read(.5)) { chomp($foo = &lt;STDIN&gt;); print "Got '$foo' from STDIN\n"; } } </code></pre> http://stackoverflow.com/questions/3376/what-are-your-must-have-tools 12 What are your must-have tools? jj33 2008-08-06T13:37:47Z 2009-06-20T23:55:29Z <p>I'm curious about what types of tools and specific tools people can't live without in their daily work. Anyone interested, please post up to 10 categories of tools you can't live without, and then with it as many specific implementations of that tool that you use. The reason for this category/implementation split is to compensate for the disparate backgrounds of all the readers here. I'll try to collate responses back into this question as responses come in. Here are mine to get things started:</p> <ol> <li>Web browser (Firefox)</li> <li>Remote machine management (SecureCRT, Remote Desktop, VNC)</li> <li>Text editor (vi/vim for *nix, gvim for Windows, BBEdit for Mac OS X)</li> <li>IM client (Pidgin, MS OCS)</li> <li>Email client (pine, Outlook, Lotus Notes)</li> <li>Data visualizer (Perl + MS Excel's graphing functions)</li> <li>Network sniffer (tcpdump for linux/Mac OS X, snoop for solaris, Wireshark for Windows and visualizing dumps from other tools)</li> <li>VPN client (Cisco VPN client)</li> <li>scripting tools (ksh, Perl)</li> </ol> <p>Looking through this list the big ones I would expect to see from others that I don't use are an IDE (I'm not a professional programmer anymore) and version control (which I ought to rely on but don't at this point).</p> <p>EDIT: while I think my question was asked from a different POV, it looks like the answers in the thread <a href="http://beta.stackoverflow.com/questions/2187/essential-programming-tools" rel="nofollow">Essential Programming Tools</a> would be along the same lines as this one. Believe it or not I did look before I posted =)</p> http://stackoverflow.com/questions/802107/how-do-i-check-whether-a-perl-module-is-installed/802119#802119 2 Answer by jj33 for How do I check whether a Perl module is installed? jj33 2009-04-29T12:26:38Z 2009-04-29T12:26:38Z <pre><code>perl -MSome::Module -e ';' </code></pre> <p>Whoops, misread the question. I thought you wanted to know in a one-off instance, not discovering it in a recoverable manner. I always use something like this:</p> <pre><code>sub try_load { my $mod = shift; eval("use $mod"); if ($@) { #print "\$@ = $@\n"; return(0); } else { return(1); } } </code></pre> <p>Which you use like this:</p> <pre><code>$module = Some::Module; if (try_load($module)) { print "loaded\n"; } else { print "not loaded\n"; } </code></pre> http://stackoverflow.com/questions/797993/how-do-i-chomp-a-string-if-i-have-perl-4/798042#798042 0 Answer by jj33 for How do I chomp a string if I have Perl 4? jj33 2009-04-28T13:50:26Z 2009-04-28T17:03:13Z <p>I believe chop() was used in pre-5 perl. Not as useful as chomp() of course. If you're handling random input you would probably be better off using a regexp, but if you're always parsing a unix-formatted file:</p> <pre><code>while (&lt;F&gt;) { chop(); do_stuff(); } </code></pre> <p>As the comment below states, chop() always removes the last character of the lvalue, not just if it is a newline character (or what's in the line ending var). I knew this (hence the "not as useful as chomp()" comment) but somehow forgot to actually type it out.</p> http://stackoverflow.com/questions/749268/how-can-i-find-out-which-server-hosts-ldap-on-my-windows-domain/749355#749355 1 Answer by jj33 for How can I find out which server hosts LDAP on my windows domain? jj33 2009-04-14T21:00:54Z 2009-04-14T21:00:54Z <p>If the machine you are on is part of the AD domain, it should have its name servers set to the AD name servers (or hopefully use a DNS server path that will eventually resolve your AD domains). Using your example of dc=domain,dc=com, if you look up domain.com in the AD name servers it will return a list of the IPs of each AD Controller. Example from my company (w/ the domain name changed, but otherwise it's a real example):</p> <pre> mokey 0 /home/jj33 > nslookup example.ad Server: 172.16.2.10 Address: 172.16.2.10#53 Non-authoritative answer: Name: example.ad Address: 172.16.6.2 Name: example.ad Address: 172.16.141.160 Name: example.ad Address: 172.16.7.9 Name: example.ad Address: 172.19.1.14 Name: example.ad Address: 172.19.1.3 Name: example.ad Address: 172.19.1.11 Name: example.ad Address: 172.16.3.2 </pre> <p>Note I'm actually making the query from a non-AD machine, but our unix name servers know to send queries for our AD domain (example.ad) over to the AD DNS servers.</p> <p>I'm sure there's a super-slick windowsy way to do this, but I like using the DNS method when I need to find the LDAP servers from a non-windows server.</p> http://stackoverflow.com/questions/737647/snmp-mib-visualizer-recommendations 1 SNMP MIB Visualizer recommendations? jj33 2009-04-10T13:41:18Z 2009-04-10T13:46:54Z <p>Are there any free visualization tools for MIBs? I've been assigned some SNMP trap normalization/enrichment work and been given Cisco ONS 15454s to start with. The MIBs seem more complex than others I have seen. Lots of object cross-references, including some to objects that are defined in other MIBs and exported. A quick example of trying to trace down the port number of an alarm:</p> <p>Alarm definition:</p> <pre><code>Cerent454AlarmEntry ::= SEQUENCE { cerent454AlarmIndex INTEGER, cerent454AlarmObjectType Cerent454EntityClass, cerent454AlarmSlotNumber INTEGER, cerent454AlarmPortNumber CerentPortNumber, cerent454AlarmLineNumber INTEGER, cerent454AlarmObjectIndex INTEGER, cerent454AlarmType Cerent454AlarmType, cerent454AlarmState CerentNotificationClass, cerent454AlarmTimeStamp TimeStamp, cerent454AlarmObjectName DisplayString, cerent454AlarmAdditionalInfo DisplayString } </code></pre> <p>CerentPortNumber references from the same file (CERENT-454.mib):</p> <pre><code>IMPORTS (...) CerentPortNumber FROM CERENT-TC (...) cerent454AlarmPortNumber OBJECT-TYPE SYNTAX CerentPortNumber ACCESS read-only STATUS mandatory DESCRIPTION "This will indicate what is the port of the object which raised this alarm." ::= { cerent454AlarmEntry 40 } </code></pre> <p>The actual syntax for CerentPortNumber, from CERENT-TC.mib:</p> <pre><code>CerentPortNumber ::= INTEGER { unknown (1), port0 (5), port1 (10), port2 (20), (...) port62 (620), port63 (630), port64 (640), portAll (10240) } </code></pre> <p>Maybe this isn't as complex as it feels, but this is just one small example. It feels like there should be a GUI-based "explorer" type app that would allow me to see these references easily without a lot of back and forth between files and locations in files. Any recommendations?</p> http://stackoverflow.com/questions/687189/sharepoint-web-parts-can-you-embed-one-web-part-into-another/687257#687257 0 Answer by jj33 for SharePoint web parts - Can you embed one web part into another? jj33 2009-03-26T19:38:17Z 2009-03-26T19:38:17Z <p>I'm not 100% sure I'm answering your question, but I did this by building my base site in a wiki library, which gave me the rich text stuff. Then I embedded other elements into the wiki page as I needed. So, in my case each page is dedicated to a network site. The main text is about that site, and then I embedded a site photo library, a doc library dedicated to that site, a task library dedicated to that site, etc...</p> http://stackoverflow.com/questions/529045/dated-reminders-in-sharepoint-calendars 6 Dated reminders in sharepoint calendars jj33 2009-02-09T17:16:58Z 2009-03-25T13:29:06Z <p>I have a departmental maintenance that needs to be done roughly every 3 months. The maintenance itself can't be automated (it involves physically swapping a primary and spare piece of networking hardware to verify the spare is still working correctly).</p> <p>I could put this as a recurring event in Outlook and give it a two week reminder window, but I don't want it to be tied to an individual's account (if I or one of my coworkers leaves the company, I still want the reminder to go to the department).</p> <p>We're working on implementing Sharepoint and my group has a maintenance calendar, which seems like a lovely place to put this. However, there don't seem to be dated notifications for the events. You can set up notifications if the event <strong>changes</strong>, and you can subscribe to the calendar and set up a notification via Outlook, but that notification is still a per-user notification.</p> <p>At this point I'm probably just going to write a cronjob on a linux server that emails a reminder, but I thought I'd ask if there's a way to do it using all these expensive collab tools we're putting in place.</p> <p>So, any idea how to get notifications of a dated event that is not tied to individual users? I also welcome being told that my entire take on the problem is false as long as it involves some good alternatives. Thanks!</p> http://stackoverflow.com/questions/666996/how-do-i-use-a-block-as-an-or-clause-instead-of-a-simple-die/667067#667067 3 Answer by jj33 for How do I use a block as an 'or' clause instead of a simple die? jj33 2009-03-20T17:05:13Z 2009-03-20T17:05:13Z <p>or do{}; always makes my head hurt. Is there a good reason to use "or" syntax (which I admit using a lot for one liners) vs "if" (which I prefer for multi liners)?</p> <p>So, is there a reason to use or not use one of these methods in preference of the other?</p> <pre><code>foo() or do { log($error); return($error); }; log($success); if (!foo()) { log($error); return($error); } log($success); </code></pre> http://stackoverflow.com/questions/640406/how-to-join-first-n-lines-in-a-file/640465#640465 1 Answer by jj33 for How to join first n lines in a file jj33 2009-03-12T21:01:50Z 2009-03-12T21:01:50Z <p>cat file | perl -ne 'chomp(); print $_, !(++$i%3) ? "\n" : ",";'</p> http://stackoverflow.com/questions/639187/exim-configuration-accept-all-mail/639452#639452 3 Answer by jj33 for exim configuration - accept all mail jj33 2009-03-12T16:33:32Z 2009-03-12T16:33:32Z <p>There's a mailing list at <a href="http://www.exim.org/maillist.html" rel="nofollow">http://www.exim.org/maillist.html</a>. The problem you will face as an Ubuntu user is that there's always been a slight tension between Debian packagers/users and the main Exim user base because Debian chose to heavily customize their configuration. Their reasons for customizing it are sound, but it results in Debian users showing up on the main mailing list asking questions using terms that aren't recognizable to non-Debian users. Debian runs its own exim-dedicated help list (I don't have the address handy, but it's in the distro docs). Unfortunately this ends up causing you a problem because Ubuntu adopted all these packages from Debian, but doesn't support them in the same way as Debian does, and Debian packagers seem to feel put upon to be asked to support these Ubuntu users.</p> <p>So, Ubuntu user goes to main Exim list and is told to ask their packager for help. So they go to the Debian lists and ask for help and may or may not be helped.</p> <p>Now, to answer your original question, there are a ton of ways to do what you ask, and probably the best way for you is going to be specific to the Debian/Ubuntu configurations. However, to get you started, you could add something like this to your routers:</p> <pre><code>catchall: driver = redirect domains = +local_domains data = youraddress@example.com </code></pre> <p>If you place that after your general alias/local delivery routers and before any forced-failure routers, that will redirect all mail to any unhandled local_part at any domain in local_domains to youraddress@example.com.</p> <p>local_domain is a domain list defined in the standard exim config file. If you don't have it or an equivalent, you can replace it with a colon-delimited list of local domains, like "example.com:example.net:example.foo"</p> <p>One of the reasons it's hard to get up to speed with Exim is that you can literally do anything with it (literally, someone on the list proved the expansion syntax is turing complete a few years ago, IIRC). So, for instance, you could use the above framework to look the domains up out of a file, to apply regular expressions against the local_parts to catch, save the mail to a file instead of redirecting to an address, put it in front of the routers and use "unseen" to save copies of all mail, etc. If you really want to administer an Exim install, I strongly recommend reading the documentation from cover to cover, it's really, really good once you get a toe hold.</p> <p>Good luck!</p> http://stackoverflow.com/questions/571286/how-best-to-validate-that-a-url-is-on-the-public-internet/571333#571333 0 Answer by jj33 for How best to validate that a URL is on the public internet? jj33 2009-02-20T21:38:52Z 2009-02-20T21:38:52Z <p>Wouldn't the ultimate validation be to create a list of networks local to you (for instance, behind your own firewall) and, if it's not, try to connect the host? If you can connect and it's not local, you would have no reason to expect that any other location on the internet couldn't connect.</p> http://stackoverflow.com/questions/561480/looking-for-an-ftp-and-file-parser-application/561632#561632 0 Answer by jj33 for Looking for an FTP and file parser application jj33 2009-02-18T15:48:33Z 2009-02-18T15:48:33Z <p>Wouldn't this be a task for perl or python glue? At least in the perl world there's lots of modules supporting FTP and DBI, and the language was basically made to parse files...</p> http://stackoverflow.com/questions/546817/iterating-over-two-lists-in-parallel-in-bin-sh/546972#546972 1 Answer by jj33 for Iterating over two lists in parallel in /bin/sh jj33 2009-02-13T17:55:01Z 2009-02-13T18:13:47Z <p>NEVERMIND, SAW "BOURNE" and thought "BOURNE AGAIN". Leaving this here because it might be useful for someone, but clearly not the answer to the question asked, sorry!</p> <p>--</p> <p>This has some shortcomings (it doesn't gracefully handle lists that are different sizes), but it works for the example you gave:</p> <pre><code>#!/bin/bash list1="a b c" list2="1 2 3" c=0 for i in $list1 do l1[$c]=$i c=$(($c+1)) done c=0 for i in $list2 do echo ${l1[$c]} $i c=$(($c+1)) done </code></pre> <p>There are more graceful ways using common unix tools like awk and cut, but the above is a pure-bash implementation as requested</p> <p>Commenting on the accepted answer, it didn't work for me in either linux or Solaris, the problem was the \S character class shortcut in the regexp for sed. I replaced it with [^ ] and it worked:</p> <pre><code>#!/bin/sh list1="1 2 3" list2="a b c" while [ -n "$list1" ] do head1=`echo "$list1" | cut -d ' ' -f 1` list1=`echo "$list1" | sed 's/[^ ]* *\(.*\)$/\1/'` head2=`echo "$list2" | cut -d ' ' -f 1` list2=`echo "$list2" | sed 's/[^ ]* *\(.*\)$/\1/'` echo $head1 $head2 done </code></pre> http://stackoverflow.com/questions/537437/can-tmp-in-linux-ever-fill-up/537895#537895 1 Answer by jj33 for Can /tmp in Linux ever fill up? jj33 2009-02-11T17:32:59Z 2009-02-11T17:32:59Z <p>You can't just blindly delete everything that hasn't been modified for a certain amount of time. A lot of programs store sockets in there, which never get modified but are still an integral part of the program working. Take for instance mysql from one of my servers:</p> <pre><code>srwxrwxrwx 1 mysql mysql 0 Sep 11 04:01 mysql.sock= </code></pre> <p>That's a valid, working "file" in /tmp. It just looks old because mysql hasn't been restarted in a while. Either limit your find with '-type f' or use one of the distro-provided tools others have mentioned.</p> http://stackoverflow.com/questions/537191/the-sort-r-command-doesnt-sort-lines-randomly-in-linux/537482#537482 1 Answer by jj33 for The sort -R command doesn't sort lines randomly in Linux jj33 2009-02-11T16:02:57Z 2009-02-11T16:02:57Z <p>I don't know if bash works this way, but in ksh there's the "whence" command which tells you exactly what will execute if you were to type the argument as a command, whereas "which" just tells you the first instance of the command in $PATH. For instance:</p> <pre><code>wembley 0 /home/jj33 &gt; which ls /bin/ls wembley 0 /home/jj33 &gt; whence ls '/bin/ls -FC' </code></pre> <p>I doubt it's your problem, but a next troubleshooting step would be to specify the exact path (or escape a possible alias with a backslash) for "sort" when you execute it:</p> <pre><code>$ echo -e "2\n1\n3\n5\n4" | /bin/sort -R </code></pre> <p>After that, I might suspect an environment or locale setting that's making it wonky. Not necessarily important, but the LC_* variables often have unexpected side effects (the first thing I do on a new box is set LC_ALL=C to turn it all off =)).</p> http://stackoverflow.com/questions/537058/do-you-get-freelance-projects-while-you-have-a-job/537095#537095 0 Answer by jj33 for Do you get Freelance projects while you have a job ? jj33 2009-02-11T14:42:21Z 2009-02-11T14:42:21Z <p>I've taken a few, but only on the condition that it never interfere with my day job or my family. It's just not worth the extra money to bite the hand that feeds me.</p> http://stackoverflow.com/questions/520092/pubdate-guid-is-essential-to-rss-how-i-create-a-good-rss-in-yahoo-pipes-if-the/520312#520312 1 Answer by jj33 for PubDate/Guid is essential to RSS? How I create a good RSS in Yahoo! Pipes if the source doesn't provide different dates for the items? jj33 2009-02-06T13:37:41Z 2009-02-06T13:37:41Z <p>I don't have a definitive answer for you, but anecdotely I have been maintaining a private feed reader for the last 4 years or so. I've been exposed to a lot of vagaries of RSS/ATOM and I can tell you that a lot of feeds don't have dates associated with the items. It might be an RSS version issue.</p> http://stackoverflow.com/questions/296603/does-your-email-client-let-you-add-custom-headers-programmatically/495708#495708 1 Answer by jj33 for Does your email client let you add custom headers programmatically? jj33 2009-01-30T14:39:47Z 2009-01-30T14:39:47Z <p>One way to make it work in pine without modifying pine itself or modifying the mail server is to have pine deliver via a command line program (traditionally /usr/sbin/sendmail or the like) and have the called program be a wrapper for the original program. Then you can add whatever header you need.</p> <p>That's ugly though, it certainly wouldn't scale for a whole user base.</p> http://stackoverflow.com/questions/495553/firefox-dns-question/495681#495681 0 Answer by jj33 for Firefox DNS question jj33 2009-01-30T14:34:43Z 2009-01-30T14:34:43Z <p>I wonder if you could write a custom rule for Fiddler to do what you want? IE uses no proxy, Firefox points to Fiddler, Fiddler uses custom rule to direct requests to the dev server...</p> <p><a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">http://www.fiddlertool.com/fiddler/</a></p> http://stackoverflow.com/questions/213298/mmorpg-client-server-coding/213332#213332 0 Answer by jj33 for MMORPG Client/Server Coding jj33 2008-10-17T18:39:04Z 2008-12-29T03:02:03Z <p>Half of your question (transport layer protocols used) could be answered by installing wireshark and looking at the traffic.</p> http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/240594#240594 24 Answer by jj33 for Worst "muscle memory" keyboard shortcut? jj33 2008-10-27T16:50:45Z 2008-10-27T16:50:45Z <p>"ESC" when I'm done typing in non-vi/vim environments. Most apps ignore the escape, but in a lot of IM clients ESC seems to mean "throw away all the stuff I just wrote". Since I usually only do it after I've typed a lot, I usually lose quite a bit of information.</p> <p>tappitytappitytappitytappitytappity-tap-<em>AAARGGGGGGHHHHH!!!!!!</em></p> http://stackoverflow.com/questions/233721/dns-domain-name-syntax-examples/233941#233941 -1 Answer by jj33 for DNS domain name syntax examples. jj33 2008-10-24T15:05:30Z 2008-10-24T15:21:35Z <p><a href="http://www.ietf.org/rfc/rfc1035.txt" rel="nofollow">RFC1035</a> doesn't say that DNS <strong>names</strong> can contain those characters. In section 5 (MASTER FILES) it says that the <strong>file</strong> that contains the RR information can contain those characters. Specifically: "Because these files are text files several special encodings are necessary to allow arbitrary data to be loaded." There's text other than domains that can go into zone files. For instance, the entry in a TXT record is free text, so you might want to put a binary character in it, represented with a \ddd string, etc. You are also allowed to make comments, so you might use these "special encodings" in your comments.</p> <p>There is support for internationalized domain names, but RFC1035 is from 1987, it wasn't talking about i18n domain names at that time.</p> <p>EDIT: I just reread it and I think I'm wrong. The stuff above is technically about the file format. However, this is also in the RFC in section 3.1:</p> <blockquote> <pre><code>Although labels can contain any 8 bit values in octets that make up a label, it is strongly recommended that labels follow the preferred syntax described elsewhere in this memo, which is compatible with existing host naming conventions. Name servers and resolvers must compare labels in a case-insensitive manner (i.e., A=a), assuming ASCII with zero parity. Non-alphabetic codes must match exactly. </code></pre> </blockquote> <p>So, that says that any 8-bit char can be part of a label (where a label is that part of the domain name between dots). This doc is describing the technical capability of the DNS protocol, though. Common usage is a different thing. In fact, in section "2.3.1. Preferred name syntax":</p> <pre><code>The following syntax will result in fewer problems with many applications that use domain names (e.g., mail, TELNET). &lt;domain&gt; ::= &lt;subdomain&gt; | " " &lt;subdomain&gt; ::= &lt;label&gt; | &lt;subdomain&gt; "." &lt;label&gt; &lt;label&gt; ::= &lt;letter&gt; [ [ &lt;ldh-str&gt; ] &lt;let-dig&gt; ] &lt;ldh-str&gt; ::= &lt;let-dig-hyp&gt; | &lt;let-dig-hyp&gt; &lt;ldh-str&gt; &lt;let-dig-hyp&gt; ::= &lt;let-dig&gt; | "-" &lt;let-dig&gt; ::= &lt;letter&gt; | &lt;digit&gt; &lt;letter&gt; ::= any one of the 52 alphabetic characters A through Z in upper case and a through z in lower case &lt;digit&gt; ::= any one of the ten digits 0 through 9 </code></pre> <p>In other words, the DNS protocol was defined from the beginning to work with 8-bit ascii. However, if you actually wanted your programs to be able to use the domains in the DNS, you should stick with [a-z-].</p> <p>As for an example, I think this just meant you could have a DNS entry like this:</p> <pre><code>IHaveAn\020EmbeddedTab IN A 172.24.3.1 </code></pre> http://stackoverflow.com/questions/225603/perl-prints-specific-lines/225630#225630 5 Answer by jj33 for perl prints specific lines jj33 2008-10-22T12:59:54Z 2008-10-22T12:59:54Z <p>You are never putting a new value into $_ in your until loop. This:</p> <pre><code> do { print "$inputLine\n"; &lt;INFILE&gt;; chomp; $inputLine=$_; } until ($inputLine=~ /$endSearchText/i); </code></pre> <p>Should be this:</p> <pre><code> do { print "$inputLine\n"; $_ = &lt;INFILE&gt;; chomp; $inputLine=$_; } until ($inputLine=~ /$endSearchText/i); </code></pre> <p>(Note when I say "should" I mean "the smallest change possible to make your code not be in an infinite loop". You formatting and style's a bit odd for my taste and the code may have other bugs.)</p> http://stackoverflow.com/questions/208919/how-do-i-search-text-then-print-the-result/208951#208951 8 Answer by jj33 for How do I search text then print the result? jj33 2008-10-16T15:08:54Z 2008-10-16T15:08:54Z <pre><code>grep o data.txt perl -ne 'print if (/o/);' &lt;data.txt </code></pre> http://stackoverflow.com/questions/208098/can-syslog-performance-be-improved/208276#208276 2 Answer by jj33 for Can syslog Performance Be Improved? jj33 2008-10-16T12:08:52Z 2008-10-16T14:08:09Z <p>One trick you can use if you control the source to the logging application is to mask out the log level you want in the app itself, instead of in syslog.conf. I did this years ago with an app that generated a huge, huge, huge amount of debug logs. Rather than remove the calls from the production code, we just masked so that debug level calls never got sent to the daemon. I actually found the code, it's Perl but it's just a front to the setlogmask(3) call.</p> <pre><code>use Sys::Syslog; # Start system logging # setlogmask controls what levels we're going to let get through. If we mask # them off here, then the syslog daemon doesn't need to be concerned by them # 1 = emerg # 2 = alert # 4 = crit # 8 = err # 16 = warning # 32 = notice # 64 = info # 128 = debug Sys::Syslog::setlogsock('unix'); openlog($myname,'pid,cons,nowait','mail'); setlogmask(127); # allow everything but debug #setlogmask(255); # everything syslog('debug',"syslog opened"); </code></pre> <p>Not sure why I used decimal instead of a bitmask... <em>shrug</em></p> http://stackoverflow.com/questions/199219/ping-always-succeeds-cant-easily-check-uptime-using-ping-on-a-url/199376#199376 0 Answer by jj33 for Ping always succeeds, cant easily check uptime using ping on a url jj33 2008-10-13T23:08:26Z 2008-10-13T23:08:26Z <p>If you tend toward the sys-admin solution rather than the programming solution you could install a local name server and tell it not to accept anything but NS records for delegation only zones. This was the fix I (and I assumed everyone else on the internet) used when Network Solution/Verisign broke this last time. I installed BIND on a couple of local machine, told my DHCP servers to hand out those addrs as the local name servers, and set up something like the following for each of the delegation only zones that I cared about:</p> <pre><code>zone "com" { type delegation-only; }; zone "net" { type delegation-only; }; </code></pre> <p>Come to think of this, I think this might be turned on by default in later BIND versions. As an added bonus you tend to get more stable DNS resolution than most ISPs provide, you control your own cache, a little patching and you don't have to rely on your ISP to fix the latest DNS attack, etc.</p> http://stackoverflow.com/questions/3337/what-programming-language-do-you-wish-would-catch-on/3353#3353 2 Answer by jj33 for What programming language do you wish would catch on? jj33 2008-08-06T13:14:14Z 2008-10-12T12:34:47Z <p>A few months ago I was looking for a library for a specific task in Perl and couldn't find anything sized correctly. I happened across a library written in Lua and it was so perfect that I spent some time learning the language. There is something very pleasing about Lua. It's very simple but all the power is there. I admit I've not used it since but I wouldn't be upset if it and I crossed paths in the future.</p> http://stackoverflow.com/questions/1126047/how-can-i-parse-a-raw-snmp-trap-in-perl/1130512#1130512 Comment by jj33 on How can I parse a raw SNMP trap in Perl? jj33 2009-07-15T15:39:28Z 2009-07-15T15:39:28Z The concept of NSNMP should work, but it's a very fragile module. It only supports one limited version and it doesn't match what I need right now, going back to building my own which I can expand to suit all versions later now that I understand better how BER works. +1 for the good suggestion though. http://stackoverflow.com/questions/1126047/how-can-i-parse-a-raw-snmp-trap-in-perl/1130512#1130512 Comment by jj33 on How can I parse a raw SNMP trap in Perl? jj33 2009-07-15T13:10:27Z 2009-07-15T13:10:27Z Argh! I thought I had, but it looks like what I actually stumbled across was NSNMP::Simple, which isn't what I want. NSNMP looks like a likely solution. Poking at it some now... http://stackoverflow.com/questions/797993/how-do-i-chomp-a-string-if-i-have-perl-4/798042#798042 Comment by jj33 on How do I chomp a string if I have Perl 4? jj33 2009-04-29T14:40:05Z 2009-04-29T14:40:05Z Brian, what was then convention in perl4? I only really &quot;speak&quot; perl5, but the perl4 code I have had to review used &quot;chop()&quot; the way people use &quot;chomp()&quot; now, because they understood the format of the file they were going to be parsing. If it was idiomatic to not use chop() or to wrap a lot of it in protective logic, could you provide an example? Otherwise, despite my downvotes, I feel my answer of &quot;chop() was the not-as-good alternative to chomp() in perl4&quot; is a very valid answer to &quot;Is there an alternative to chomp() in perl4?&quot; http://stackoverflow.com/questions/772042/regarding-latency-in-ping/772055#772055 Comment by jj33 on Regarding Latency In Ping jj33 2009-04-21T12:24:37Z 2009-04-21T12:24:37Z ascii art is always +1 http://stackoverflow.com/questions/747465/recursively-list-all-directories-and-files/747479#747479 Comment by jj33 on Recursively List all directories and files jj33 2009-04-14T13:16:40Z 2009-04-14T13:16:40Z incorrect syntax for find http://stackoverflow.com/questions/666996/how-do-i-use-a-block-as-an-or-clause-instead-of-a-simple-die/667067#667067 Comment by jj33 on How do I use a block as an 'or' clause instead of a simple die? jj33 2009-03-20T18:29:30Z 2009-03-20T18:29:30Z So the answers seem to be because one way makes more sense or looks better (I see the point about using or do{} when the action spans multiple lines, but I don't buy the &quot;too much emphasis on error handling&quot; logic). Ultimately both of these answers have to do with aesthetics and not performance... http://stackoverflow.com/questions/640406/how-to-join-first-n-lines-in-a-file/641350#641350 Comment by jj33 on How to join first n lines in a file jj33 2009-03-13T13:19:18Z 2009-03-13T13:19:18Z Good one on the non-mulitple-of-three files. I knew mine didn't handle it but didn't see the solution in 3 minutes I took on this. http://stackoverflow.com/questions/569772/how-do-i-read-two-items-at-a-time-in-a-perl-foreach-loop/569812#569812 Comment by jj33 on How do I read two items at a time in a Perl foreach loop? jj33 2009-02-20T15:08:04Z 2009-02-20T15:08:04Z +1 for the standard for() loop. Some control structures are a classic because they work =). http://stackoverflow.com/questions/546817/iterating-over-two-lists-in-parallel-in-bin-sh/546991#546991 Comment by jj33 on Iterating over two lists in parallel in /bin/sh jj33 2009-02-13T19:53:49Z 2009-02-13T19:53:49Z Commenting on the accepted answer, it didn't work for me in either linux or Solaris, the problem was the \S character class shortcut in the regexp for sed. I replaced it with [^ ] and it worked http://stackoverflow.com/questions/546817/iterating-over-two-lists-in-parallel-in-bin-sh/546991#546991 Comment by jj33 on Iterating over two lists in parallel in /bin/sh jj33 2009-02-13T18:04:49Z 2009-02-13T18:04:49Z FWIW this doesn't work under /bin/sh on a solaris server. it gets stuck in an endless loop repeating &quot;1 a&quot; http://stackoverflow.com/questions/529045/dated-reminders-in-sharepoint-calendars/529295#529295 Comment by jj33 on Dated reminders in sharepoint calendars jj33 2009-02-10T15:31:35Z 2009-02-10T15:31:35Z thanks ryan, nice coverage of the topic http://stackoverflow.com/questions/527991/allow-oracle-user-to-connect-from-one-ip-address-only/528002#528002 Comment by jj33 on Allow Oracle User to connect from one IP address only jj33 2009-02-09T20:57:20Z 2009-02-09T20:57:20Z JosefAssad, the difference is that there's very good reason to embed it in the app stack. Yes, of course you limit the incoming IPs that can connect to oracle. And in addition you limit specific IPs to specific usernames, which will add to the security, not replace it - belt and suspenders. http://stackoverflow.com/questions/527991/allow-oracle-user-to-connect-from-one-ip-address-only/528002#528002 Comment by jj33 on Allow Oracle User to connect from one IP address only jj33 2009-02-09T13:39:20Z 2009-02-09T13:39:20Z This isn't an answer. &quot;limiting all oracle activity to one IP&quot; is not the same as &quot;limit connections to oracle using a specific username to one IP&quot; http://stackoverflow.com/questions/495553/firefox-dns-question Comment by jj33 on Firefox DNS question jj33 2009-01-30T14:35:36Z 2009-01-30T14:35:36Z Why would you downvote this? Using different DNS names is obviously the normal way to do this, but having firefax override DNS is still an interesting problem. http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243031#243031 Comment by jj33 on Dealbreakers for new programming jobs? jj33 2008-10-28T13:15:06Z 2008-10-28T13:15:06Z I shared your answer w/ a coworker because we have had bad experience with Notes. He reminded me of the steaming pile that is Oracle Collaboration Suite. Hooboy, vhat a stinkah. At least Notes works, though it's a pain.