<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page Print 
             and everything recently tagged Print -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>Print on SWiK</title>
        <doap:name>Print</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/Print</link>
        <doap:homepage></doap:homepage>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>Jonas Bonér &quot; Blog Archive &quot; Clustering Scala Actors with Terracotta</title>
            <link>http://swik.net/scala/del.icio.us%2Ftag%2Fscala/Jonas+Bon%C3%A9r+%22+Blog+Archive+%22+Clustering+Scala+Actors+with+Terracotta/cgwd7</link>
            <description></description>
            
            <pubDate>Mon, 06 Oct 2008 03:16:55 -0700</pubDate>
        </item>
            
        <item>
            <title>Jonas Bonér &quot; Blog Archive &quot; Real-World Scala: Dependency Injection (DI)</title>
            <link>http://swik.net/scala/del.icio.us%2Ftag%2Fscala/Jonas+Bon%C3%A9r+%22+Blog+Archive+%22+Real-World+Scala%3A+Dependency+Injection+%28DI%29/cgwd3</link>
            <description></description>
            
            <pubDate>Mon, 06 Oct 2008 03:16:45 -0700</pubDate>
        </item>
            
        <item>
            <title>XML Paper Specification (.xps): Overview</title>
            <link>http://swik.net/XML/del.icio.us%2Ftag%2Fxml/XML+Paper+Specification+%28.xps%29%3A+Overview/cgvx5</link>
            <description>The XML Paper Specification (XPS) provides users and developers with a robust, open and trustworthy format for electronic paper. The XML Paper Specification describes electronic paper in a way that can be read by hardware, read by software, and read by people. XPS documents print better, can be shared easier, are more secure and can be archived with confidence.</description>
            
            <pubDate>Mon, 06 Oct 2008 00:43:37 -0700</pubDate>
        </item>
            
        <item>
            <title>PDF Export - Meta</title>
            <link>http://swik.net/MediaWiki/del.icio.us%2Ftag%2Fmediawiki/PDF+Export+-+Meta/cgulc</link>
            <description></description>
            
            <pubDate>Sun, 05 Oct 2008 13:59:01 -0700</pubDate>
        </item>
            
        <item>
            <title>Quick Linux and Windows OpenVPN HOWTO and tutorial, including VPN routing</title>
            <link>http://swik.net/User:davidapnic/Quick+Linux+and+Windows+OpenVPN+HOWTO+and+tutorial%2C+including+VPN+routing</link>
            <description>&lt;p&gt;http://www.adamsinfo.com/quick-linux-and-windows-openvpn-howto-and-tutorial-including-vpn-routing/&lt;/p&gt;


	&lt;p&gt;OpenVPN is a popular Windows/Linux &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt; Server/Client pair. I think there’s a separate &lt;span class=&quot;caps&quot;&gt;GUI&lt;/span&gt; available for it if you’re so minded. This howto will cover command line usage only.&lt;/p&gt;


	&lt;p&gt;I’ll provide example configuration based on a Linux server and a Windows client, however the same applies pretty easily if you wanted to mix and match.&lt;/p&gt;


	&lt;p&gt;On debian, apt-get install openvpn. On any other linux distro, use your own package manager or alternatively download from source and compile.&lt;/p&gt;


	&lt;p&gt;I create my config /etc/openvpn/myvpn.conf and enter the following:&lt;/p&gt;


	&lt;p&gt;dev tun
proto udp
ifconfig 10.8.0.1 10.8.0.2
secret /etc/openvpn/static.key
comp-lzo
keepalive 10 60
daemon&lt;/p&gt;


	&lt;p&gt;In short, I’m specifying that we’ll use the ‘tun’ interface as opposed to ‘tap’, and that we’ll communicate over &lt;span class=&quot;caps&quot;&gt;UDP&lt;/span&gt;. Next I specify that this machine’s tun0 interface will have &lt;span class=&quot;caps&quot;&gt;IP 10&lt;/span&gt;.8.0.1 and the client will be given 10.8.0.2. My secret key is stored in /etc/openvpn/static.key which you can generate with openvpn –genkey –secret static.key. I’d like to use comp-lzo for compression and also specify a keepalive time to prevent problems on those networks that terminate idle connections. We’ll also have openvpn daemonize.
For the client:&lt;/p&gt;


	&lt;p&gt;remote XX.XXX.124.95 ;server IP address
dev tun
ifconfig 10.8.0.2 10.8.0.1
secret static.key
comp-lzo
keepalive 10 60&lt;/p&gt;


	&lt;p&gt;This configure is mostly identical to the server’s above.&lt;/p&gt;


	&lt;p&gt;Now copy the static.key that you generated on the server, to the client. Then just run ‘openvpn config.conf’ it’ll print the relevant debug messages and you’ll be there. At this point, you should be able to ping 10.8.0.1from your client and 10.8.0.2 from your server. If you can, all is good.&lt;/p&gt;


	&lt;p&gt;On your server, you’ll now need to allow routing so your client is able to route it’s traffic through the &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt;:&lt;/p&gt;


	&lt;p&gt;iptables -t nat -A &lt;span class=&quot;caps&quot;&gt;POSTROUTING&lt;/span&gt; -s 10.8.0.0/24 -o eth0 -j &lt;span class=&quot;caps&quot;&gt;MASQUERADE&lt;/span&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;FORWARD&lt;/span&gt; -i tun0 -s 10.8.0.0/24 -o eth0 -j &lt;span class=&quot;caps&quot;&gt;ACCEPT&lt;/span&gt;
iptables -A &lt;span class=&quot;caps&quot;&gt;FORWARD&lt;/span&gt; -i eth0 -o tun0 -m state –state &lt;span class=&quot;caps&quot;&gt;ESTABLISHED&lt;/span&gt;,RELATED -j &lt;span class=&quot;caps&quot;&gt;ACCEPT&lt;/span&gt;
echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward&lt;/p&gt;


	&lt;p&gt;…Or similar to suit your needs.&lt;/p&gt;


	&lt;p&gt;On your windows client, you’ll now need to change your default gateway:&lt;/p&gt;


	&lt;p&gt;Use route print and find out your current default gateway, then, assuming your current local default gateway is: 192.168.1.1 and server’s IP address is XX.XXX.124.95, issue the following commands:&lt;/p&gt;


	&lt;p&gt;route &lt;span class=&quot;caps&quot;&gt;DELETE 0&lt;/span&gt;.0.0.0
route &lt;span class=&quot;caps&quot;&gt;ADD XX&lt;/span&gt;.XXX.124.95 &lt;span class=&quot;caps&quot;&gt;MASK 255&lt;/span&gt;.255.255.255 192.168.1.1
route &lt;span class=&quot;caps&quot;&gt;ADD 0&lt;/span&gt;.0.0.0 &lt;span class=&quot;caps&quot;&gt;MASK 0&lt;/span&gt;.0.0.0 10.8.0.1&lt;/p&gt;


	&lt;p&gt;The first &lt;span class=&quot;caps&quot;&gt;ADD&lt;/span&gt; command is used to tell your client how to access the ‘new default gateway’. Without specifying your real default gateway, the client machine would have no idea how to reach your &lt;span class=&quot;caps&quot;&gt;VPN&lt;/span&gt; server. You can specify 10.8.0.1 as your default gateway, as it is now virtually on the same &lt;span class=&quot;caps&quot;&gt;LAN&lt;/span&gt; as your 10.8.0.2 adapter, but without the additional route to XX.XXX.124.95, your connection to the server would have to terminate and you’d lose your tun interface.&lt;/p&gt;


	&lt;p&gt;Now try and ping something &amp;#8211; it should be successful. If not, get onto the server and run tcpdump -n tun0. If the server is seeing your traffic but not forwarding it to the outside world, chances are your iptables and masquerading is set up incorrectly. If the server isn’t even seeing any traffic from you, then chances are your windows routing setup is incorrect.&lt;/p&gt;


	&lt;p&gt;Hope this was useful! Comments and feedback are welcome as always.&lt;/p&gt;
</description>
                        <category>linux</category>
            <category>apt-get</category>
            <category>udp</category>
            <category>interface</category>
            <category>Print</category>
            <category>tcpdump</category>
            <category>manager</category>
            <category>Debian</category>
            <category>Client</category>
            <category>routing</category>

            <pubDate>Fri, 03 Oct 2008 03:23:57 -0700</pubDate>
        </item>
            
        <item>
            <title>∞ unlimited edition</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/%E2%88%9E+unlimited+edition/cgbmq</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 07:15:24 -0700</pubDate>
        </item>
            
        <item>
            <title>Con la herramienta de impresión HP Smart Web Printing puede imprimir publicaciones Web de manera sencilla y previsible, además de controlar los documentos que desea imprimir y la forma en que desea hacerlo.</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Con+la+herramienta+de+impresi%C3%B3n+HP+Smart+Web+Printing+puede+imprimir+publicaciones+Web+de+manera+sencilla+y+previsible%2C+adem%C3%A1s+de+controlar+los+documentos+que+desea+imprimir+y+la+forma+en+que+desea+hacerlo./cga0r</link>
            <description></description>
            
            <pubDate>Tue, 30 Sep 2008 04:15:07 -0700</pubDate>
        </item>
            
        <item>
            <title>HP Smart Web Printing enables simple, predictable web page printing.</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/HP+Smart+Web+Printing+enables+simple%2C+predictable+web+page+printing./cf7fa</link>
            <description></description>
            
            <pubDate>Mon, 29 Sep 2008 07:22:38 -0700</pubDate>
        </item>
            
        <item>
            <title>Indesign: why do i have to override Master pages everytime?</title>
            <link>http://swik.net/loopfuse/Web+Design+Forum/Indesign%3A+why+do+i+have+to+override+Master+pages+everytime%3F/cf5hz</link>
            <description>&lt;div&gt;problem solved&lt;/div&gt;

</description>
            
            <pubDate>Sun, 28 Sep 2008 18:24:36 -0700</pubDate>
        </item>
            
        <item>
            <title>[Techtalk] Samba Printer - Access Denied, unable to connect</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/%5BTechtalk%5D+Samba+Printer+-+Access+Denied%2C+unable+to+connect/cf5bt</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>&lt;b&gt;experts&lt;/b&gt;-&lt;b&gt;exchange.com&lt;/b&gt;/Operating_Systems/Linux/Linux_Printing/Q_20326077.html</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/%3Cb%3Eexperts%3C%2Fb%3E-%3Cb%3Eexchange.com%3C%2Fb%3E%2FOperating_Systems%2FLinux%2FLinux_Printing%2FQ_20326077.html/cf5bs</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>marc.info</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/marc.info/cf5br</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>mar2</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/mar2/cf5bq</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>Book of Screed</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/Book+of+Screed/cf5bp</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>Nabble - Samba - General - Unstable printing w/3.2.0</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/Nabble+-+Samba+-+General+-+Unstable+printing+w%2F3.2.0/cf5bo</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>your friend</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/your+friend/cf5bn</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>SAMBA (Domaincontroller) Server For Small Workgroups With Ubuntu 5.10 ...</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/SAMBA+%28Domaincontroller%29+Server+For+Small+Workgroups+With+Ubuntu+5.10+.../cf5bm</link>
            <description></description>
            
            <pubDate>Sun, 28 Sep 2008 17:14:06 -0700</pubDate>
        </item>
            
        <item>
            <title>Running A File-, Print-, Proxy-, DHCP-, AND Time-Server For Small/Medium Enterprises | HowtoForge - Linux Howtos and Tutorials</title>
            <link>http://swik.net/Samba/del.icio.us+tag%2Fsamba/Running+A+File-%2C+Print-%2C+Proxy-%2C+DHCP-%2C+AND+Time-Server+For+Small%2FMedium+Enterprises+%7C+HowtoForge+-+Linux+Howtos+and+Tutorials/cf0e1</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 19:13:23 -0700</pubDate>
        </item>
            
        <item>
            <title>Pretty-printing XML with Emacs&#039; NXML-mode &quot; sinewalker</title>
            <link>http://swik.net/Emacs/del.icio.us+tag%2Femacs/Pretty-printing+XML+with+Emacs%27+NXML-mode+%22+sinewalker/cfyol</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 09:13:26 -0700</pubDate>
        </item>
            
        <item>
            <title>Pretty-printing XML with Emacs&#039; NXML-mode &quot; sinewalker</title>
            <link>http://swik.net/XML/del.icio.us%2Ftag%2Fxml/Pretty-printing+XML+with+Emacs%27+NXML-mode+%22+sinewalker/cfyjg</link>
            <description></description>
            
            <pubDate>Fri, 26 Sep 2008 08:17:44 -0700</pubDate>
        </item>
            
        <item>
            <title>Indesign wont let me install!</title>
            <link>http://swik.net/loopfuse/Web+Design+Forum/Indesign+wont+let+me+install%21/cfxzy</link>
            <description>&lt;div&gt;ive been getting errors on my serial number when it asked me again to &amp;quot;Personalize my indesign software&amp;quot; when i try to run it just right after i installed.. ive done some reading on the net and it said it has something to do with my computer not letting it run..&lt;br/&gt;
 &lt;br/&gt;
ive done the cacls command and all but it still wont let me run it! anyone had problems like this before? please i need help i need to use the program, thank you!!&lt;/div&gt;

</description>
            
            <pubDate>Fri, 26 Sep 2008 05:23:40 -0700</pubDate>
        </item>
            
        <item>
            <title>starter</title>
            <link>http://swik.net/loopfuse/Web+Design+Forum/starter/cfuyi</link>
            <description>&lt;div&gt;i´m green in all this graphic design, prints and stuff, and i want to learn much about it, cause i love this kind of art. so... would you recommend some good, easy software to start with?&lt;br/&gt;
 &lt;br/&gt;
thank you, guys!&lt;/div&gt;

</description>
            
            <pubDate>Thu, 25 Sep 2008 09:21:13 -0700</pubDate>
        </item>
            
        <item>
            <title>Free Design Software</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Free+Design+Software/cfn0c</link>
            <description></description>
            
            <pubDate>Tue, 23 Sep 2008 17:10:09 -0700</pubDate>
        </item>
            
        <item>
            <title>LearnTech News: PrintWhatYouLike</title>
            <link>http://swik.net/open-source/del.icio.us+tag%2Fopen-source/LearnTech+News%3A+PrintWhatYouLike/cfg4v</link>
            <description></description>
            
            <pubDate>Mon, 22 Sep 2008 01:59:31 -0700</pubDate>
        </item>
            
        <item>
            <title>PrintWhatYouLike.com {beta}: Save money and the environment printing only what you want.</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/PrintWhatYouLike.com+%7Bbeta%7D%3A+Save+money+and+the+environment+printing+only+what+you+want./cfcav</link>
            <description></description>
            
            <pubDate>Sat, 20 Sep 2008 07:58:20 -0700</pubDate>
        </item>
            
        <item>
            <title>Free cPanel Web Hosting with PHP5/Mysq</title>
            <link>http://swik.net/loopfuse/Web+Design+Forum/Free+cPanel+Web+Hosting+with+PHP5%2FMysq/cfa9l</link>
            <description>&lt;div&gt;&lt;font color=&quot;Indigo&quot;&gt;&lt;b&gt;&lt;font&gt; We can offer you a free web hosting package packed with advanced features for hosting &amp;amp; building professional dynamic websites. We provide secure free web space with all the web hosting tools you could possibly ever need.&lt;br/&gt;
&lt;br/&gt;
Our package includes:&lt;br/&gt;
- 350 MB of Disk Space, 100 GB Bandwidth &lt;br/&gt;
- Host your own domain &lt;br/&gt;
- cPanel Powered Hosting (you will love it)&lt;br/&gt;
- Over 500 website templates ready to download&lt;br/&gt;
- Easy to use website builder&lt;br/&gt;
- Free POP3 Email Box with Webmail access&lt;br/&gt;
- FTP and Web based File Manager &lt;br/&gt;
- PHP, MySQL, Perl, CGI, Ruby.&lt;br/&gt;
- And many more..&lt;br/&gt;
 &lt;/font&gt;&lt;/b&gt;&lt;/font&gt;&lt;b&gt;&lt;font&gt;:linux:Click here to visit us: &lt;a href=&quot;http://www.000webhost.com/66171.html&quot;&gt;Free Web Hosting with PHP, MySQL and cPanel, No Ads&lt;/a&gt;&lt;br/&gt;
 &lt;br/&gt;
 &lt;/font&gt;&lt;/b&gt;&lt;/div&gt;

</description>
            
            <pubDate>Fri, 19 Sep 2008 21:04:55 -0700</pubDate>
        </item>
            
        <item>
            <title>Four Up</title>
            <link>http://swik.net/loopfuse/Web+Design+Forum/Four+Up/ce9r8</link>
            <description>&lt;div&gt;Does anyone (preferably someone with experience) fancy explaining to me how to set up a four up layout in indesign CS.&lt;/div&gt;

</description>
            
            <pubDate>Fri, 19 Sep 2008 11:07:49 -0700</pubDate>
        </item>
            
        <item>
            <title>An experimental non-commercial project to archive and re-publish public domain works - PublicDomainReprints.org</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/An+experimental+non-commercial+project+to+archive+and+re-publish+public+domain+works+-+PublicDomainReprints.org/ceyw0</link>
            <description>This is an experimental project, which is focused on archiving and republishing public domain works. At this time, this service can take a book from any of the supported sites such as the the Internet Archive (books in public domain ONLY) and reprint it via print on demand techology. For more information, please check the various sections of this site using the above menu bar.</description>
            
            <pubDate>Tue, 16 Sep 2008 22:05:13 -0700</pubDate>
        </item>
            
        <item>
            <title>techcrunch&#039;s json_printer at master — GitHub</title>
            <link>http://swik.net/json/del.icio.us%2Ftag%2Fjson/techcrunch%27s+json_printer+at+master+%E2%80%94+GitHub/ceykk</link>
            <description></description>
            
            <pubDate>Tue, 16 Sep 2008 19:08:28 -0700</pubDate>
        </item>
            
        <item>
            <title>Abduction! :: Firefox Add-ons</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Abduction%21+%3A%3A+Firefox+Add-ons/cewwu</link>
            <description></description>
            
            <pubDate>Tue, 16 Sep 2008 10:05:41 -0700</pubDate>
        </item>
                </channel>
</rss>
