Jeff Terrell

Jeff Terrell
Ph.D. Candidate
Department of Computer Science
University of North Carolina at Chapel Hill

jsterrel AT cs.unc.edu
(919) 962-1791 (office)

View Source of articles/resolutions.php

In the interest of open source, and in the interest of keeping Mr. Webmaster honest, here is the PHP source of articles/resolutions.php. (This encourages him to write clean, easy-to-understand code...well, relatively clean and easy-to-understand, that is.) If you become interested in PHP, you can read more about it at PHP: Hypertext Preprocessor. You will also see plenty of HTML code, which is what makes the World Wide Web go 'round. You can read more about HTML (and CSS, another technology used on this site) here, at the official page of the very official World Wide Web Consortium (W3C). Anyway, enough rambling, here's the code!


<?php include("../header1.php"); ?>
<?php $THIS_FILE 
"articles/resolutions.php"?>
  <title>Jeff T. - Problems and Resolutions</title>
<?php include("../header2.php"); ?>
<?php 
include("localheader.php"); ?>

  <h1>Problems and Resolutions</h1>
  <p>This is a list of issues I run into on a day-to-day basis, and my resolutions.  I keep this here not only for my own reference (since I know I will forget all my methods in a few weeks), but also so that the knowledge might be shared for others who run into similar situations.  Comments, corrections, suggestions, and anecdotes welcome.  Enjoy!</p>

  <table>
    <tr>
      <th>Description</th>
      <th>Symptom</th>
      <th>Date Created</th>
    </tr>

    <tr>
      <td><a href="vim-c-preproc-fold.php">C preprocessor folding in Vim</a></td>
      <td></td>
      <td>2007-02-13</td>
    </tr>

    <tr>
      <td><a href="tcpslice-largefiles2.php">tcpslice-1.1a3 breaks on large traces</a></td>
      <td><code>File size limit exceeded</code></td>
      <td>2005-04-25</td>
    </tr>

    <tr>
      <td><a href="tcpslice-largefiles.php">tcpslice-1.1a3 breaks on large traces</a></td>
      <td><code>fseek() failed in read_up_to()</code></td>
      <td>2005-04-25</td>
    </tr>

    <tr>
      <td><a href="net-bpf.php">No /usr/include/net/bpf.h header in Linux</a></td>
      <td>C code with <code>#include &lt;net/bpf.h&gt;</code> fails to compile</td>
      <td>2005-04-25</td>
    </tr>

    <tr>
      <td><a href="rsh-fails.php">rsh to root with command on FreeBSD 5.1 fails</a></td>
      <td><code>rshd: Login incorrect.</code></td>
      <td>2005-04-25</td>
    </tr>

    <tr>
      <td><a href="rsh-inetd.php">rsh to FreeBSD 5.1 does not work</a></td>
      <td>Hangs while waiting, then eventually fails</td>
      <td>2005-04-25</td>
    </tr>

    <tr>
      <td><a href="tcsh-prompt.php">tcsh-style prompt in bash</a></td>
      <td></td>
      <td>2005-04-25</td>
    </tr>

  </table>


<?php include("../footer.php"); ?>
viewsource.php: Last Modified: 08/13/07@20:34:26 | Size: 2780 bytes | View Source