<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>software</title>
  <link rel="alternate" type="text/html" href="http://pingv.com/tag/software"/>
  <link rel="self" type="application/atom+xml" href="http://pingv.com/taxonomy/term/197/atom/feed"/>
  <id>http://pingv.com/taxonomy/term/197/atom/feed</id>
  <updated>2008-01-05T11:21:34-06:00</updated>
  <entry>
    <title>Installing anti-virus software on Linux</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/greghines/2007/installing-anti-virus-software-linux" />
    <id>http://pingv.com/blog/greghines/2007/installing-anti-virus-software-linux</id>
    <published>2007-12-13T12:02:41-06:00</published>
    <updated>2008-06-19T14:40:46-05:00</updated>
    <author>
      <name>GregHines</name>
    </author>
    <category term="anti-virus" />
    <category term="ClamAV" />
    <category term="install" />
    <category term="Linux" />
    <category term="software" />
    <category term="Ubuntu" />
    <content type="html"><![CDATA[ <p>We recently needed to provide proof that we're running anti-virus software on our work machines, only many of us in the office are running <a href="http://www.ubuntu.com/">Ubuntu</a>. Though we don't really need it, we've installed <a href="http://www.clamav.net/">ClamAV</a> to check for viruses.</p>
<p>This is a guide to help you set up ClamAV on Ubuntu. First, you'll need to make sure you're getting packages from Universe. From the menu bar, go to System &rarr; Administration &rarr; Software Sources and check the "Community-maintained Open Source software (universe)" checkbox if it isn't already checked.</p>
<p>Now, open up a Terminal window and enter this command:</p>
<p><code>$ sudo apt-get install clamav</code></p>
<p>Before running your first scan, you'll want to update your anti-virus definitions:</p>
<p><code>$ sudo freshclam</code></p>
<p>Now you can finally run your first scan:</p>
<p><code>$ sudo clamscan -r -i / &gt; mail name@example.com</code></p>
<p>This will run the on-demand virus scan (<code>clamscan</code>) on your computer's root directory; it will recurse through the entire filesystem (<code>-r</code>) and it will only output the names of infected files (<code>-i</code>). And when it's done running, it will send you an e-mail with the results of the scan. Alternately, you can redirect the output of the command to a text file. Just change <code>mail name@example.com</code> to <code>clamscan.log</code>. Or, if you'd rather have the output display to the screen, just remove the <code>&gt;</code> and everything after it.</p>
<p>To set up a regular scan, you'll want to edit your /etc/crontab file:</p>
<p><code>$ sudo gedit /etc/crontab</code></p>
<p>Add these two lines to the end of the file and save the file:</p>
<div class="codeblock"><code>0 12&nbsp;&nbsp;&nbsp; * * *&nbsp;&nbsp; root&nbsp;&nbsp;&nbsp; freshclam<br />5 12&nbsp;&nbsp;&nbsp; * * *&nbsp;&nbsp; root&nbsp;&nbsp;&nbsp; clamscan -r -i / &gt; mail name@example.com</code></div>
<p>This runs every day at noon and updates the virus definitions before running the scan. You may want to make adjustments to the frequency or time of the scan, but this should give you a good starting point.</p>
     ]]></content>
  </entry>
  <entry>
    <title>Adobe&#039;s Creative Suite for Web 1.0</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200703/adobes-creative-suite-for-web-1-0" />
    <id>http://pingv.com/blog/laura/200703/adobes-creative-suite-for-web-1-0</id>
    <published>2007-03-30T12:09:38-05:00</published>
    <updated>2008-01-05T11:21:34-06:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Web Design" />
    <category term="Adobe" />
    <category term="best practices" />
    <category term="CSS" />
    <category term="design" />
    <category term="Drupal" />
    <category term="software" />
    <category term="tools" />
    <content type="html"><![CDATA[ <p>There is a horrible disservice being perpetrated on young web designers and web design students: that learning Dreamweaver is anything but irrelevant to your needs. We are in a Web 2.0 world, where semantic CSS and clean xhtml are the standard. And yet university art and design departments continue to push Dreamweaver as some sort of useful skill. We see Dreamweaver knowledge listed at the top of a frighteningly large percentage of applications for web design positions at pingVision. (Personally, I'd rather receive an enthusiastic note about the ideas in <a href="http://www.transcendingcss.com/">Andy Clarke's <i>Transcending CSS</i></a> or <a href="http://www.amazon.com/Universal-Principles-Design-Usability-Perception/dp/1592530079">William Lidwell, Kritina Holden and Jill Butler's <i>Universal Principles of Design</i></a>.)</p>
<p>What's perhaps more disheartening is that we see such backward-looking thinking in the top-line offerings from the king of design software companies, <a href="https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&amp;view=ols_prod&amp;category=/Applications/DesignPremium&amp;distributionMethod=FULL&amp;promoid=RWTS&amp;nr=0#view=ols_prod&amp;loc=en_us&amp;store=OLS-US&amp;categoryOID=1641620&amp;distributionOID=103&amp;category=/Applications/DesignPremium&amp;distributionMethod=FULL&amp;promoid=RWTS&amp;nr=0">Adobe</a>.</p>
<p>
<blockquote><b>Adobe Creative Suite 3 Web Standard</b><br />The basic toolkit for web designers and developers, Adobe® Creative Suite® 3 Web Standard software features all-new versions of the fundamental tools for creating and maintaining interactive websites, applications, and mobile device content. Prototype your projects, design assets, and build and maintain professional web experiences. Work on your choice of Mac or Windows®.</p>
<p>Combines Adobe Dreamweaver® CS3, Flash® CS3 Professional, Fireworks® CS3, Contribute® CS3, Bridge CS3, Version Cue® CS3, and Device Central CS3.</p></blockquote>
<p>As a web designer, I look at this offering and shrug with frustration. Aside from Bridge and perhaps Fireworks, I have no use for any of these applications. It's just not relevant to the requirements of web design these days.</p>
<p>When it comes to theming for Drupal or any other content management system or even basic blog system, what you need are decent graphic design tools (such as Photoshop, Illustrator, Fireworks...) and a proper text editor (BBEdit, TextWrangler, TextMate...).</p>
<p>If you're a student or just starting out in web design, my recommendation is to order the Adobe <a href="https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&amp;view=ols_prod&amp;category=/Applications/DesignPremium&amp;distributionMethod=FULL&amp;promoid=RWTS&amp;nr=0#view=ols_prod&amp;loc=en_us&amp;store=OLS-US&amp;categoryOID=1641620&amp;distributionOID=103&amp;category=/Applications/DesignPremium&amp;distributionMethod=FULL&amp;promoid=RWTS&amp;nr=0">Creative Suite 3 Design Standard</a>. Unless you're a Flash artist, the "Web Design" packages are just a waste of disk space.</p>
     ]]></content>
  </entry>
</feed>
