<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>James Badger&#039;s Personal Site &#187; University</title>
	<atom:link href="http://jamesbadger.ca/category/university/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamesbadger.ca</link>
	<description></description>
	<lastBuildDate>Wed, 21 Mar 2012 00:45:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cut Wifi Login Times (University of Calgary)</title>
		<link>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/</link>
		<comments>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 15:39:38 +0000</pubDate>
		<dc:creator>James Badger</dc:creator>
				<category><![CDATA[University]]></category>
		<category><![CDATA[devicescape]]></category>
		<category><![CDATA[UofC]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://jamesbadger.ca/?p=75</guid>
		<description><![CDATA[Those at the University of Calgary with laptops know that there is a public wireless network available for students. It&#8217;s unencrypted, but requires a login through a portal before internet services are provided. I found that whenever I moved between &#8230; <a href="http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Those at the <a href="http://ucalgary.ca/">University of Calgary</a> with laptops know that there is a <a href="http://www.ucalgary.ca/it/networks/airuc-wireless">public wireless network available for students</a>. It&#8217;s unencrypted, but requires a login through a portal before internet services are provided. I found that whenever I moved between classes or left my laptop off for more than half an hour, I had to login again, which is not very efficient if you have to do it five times a day. What if you only had to do it once? What if you had a program to do it automatically for you?</p>
<p>Someone undoubtedly thought of this, and created <a href="http://www.devicescape.com/">Devicescape</a>. A multi-platform application that will automatically log you into (certain) wireless networks, one of which is the UofC network. It&#8217;s simple to use, just hop over to their site and <a href="https://my.devicescape.com/">download the Devicescape client</a>. Sign up for an account, load up your airUC credentials, and the program will do the rest. As soon as your device connects to airUC, Devicescape will login within seconds, allowing you to skip loading the login page in your browser.</p>
<p>One of the best parts is how well it integrates with your OS. On OS X, it sits in the menubar and notifies you when it is logged in or out. No dialogs, no preference pane, no clunky application. It also runs on most mobile devices, <a href="https://my.devicescape.com/learn/faqs#type">take a look at the list</a> to see if yours is supported. Be sure to also check that the networks you want to connect to are supported as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Login</title>
		<link>http://jamesbadger.ca/2005/10/21/remote-login/</link>
		<comments>http://jamesbadger.ca/2005/10/21/remote-login/#comments</comments>
		<pubDate>Sat, 22 Oct 2005 00:08:39 +0000</pubDate>
		<dc:creator>James Badger</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://www.jamesbadger.ca/?p=12</guid>
		<description><![CDATA[How to remote login into your UofC Engineering account - and use XEmacs! <a href="http://jamesbadger.ca/2005/10/21/remote-login/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, I discovered something pretty useful recently.</p>
<p>I&#8217;ve known for awhile that you can use the Terminal program bundled with Mac OS X to connect to the engineering lab, and access your account. If you have an account there, you can try it by typing this command into the terminal:</p>
<p><code>ssh yourlogin@remote.engg.ucalgary.ca</code></p>
<p>Replace &#8220;yourlogin&#8221; with the username you use to log into the lab computers. It will prompt you for the corresponding password. Once you&#8217;re in, you can use the Terminal just like you were at the lab computer, which means you have access to all your files. This is really handy for moving around files, but you may quickly notice one problem: you can&#8217;t launch any application that requires a GUI, like xemacs. This kinda sucks.</p>
<p>But there is a solution (for Mac OS X)!<br />
<span id="more-12"></span><br />
It requires a program called X11, which is either in your Applications folder, or in your Utilities folder in your Applications folder. If it isn&#8217;t, you might have to install it from your Mac OS X installer disk (it usually is on the last disk).</p>
<p><img src="/wp-downloads/x11_1.png" title="The default X11 terminal - xterm" style="border: 1px solid #000" /></p>
<p>When you launch it, you will notice it looks like the terminal. Well, it&#8217;s a bit more than that. It can run programs with GUIs!<br />
(Want to see an example? Type <code>xeyes</code> in the window and press enter.)</p>
<p>Now, let&#8217;s log into the Engineering lab using this program, but we&#8217;re going to use a slightly different command:</p>
<p><code>ssh -X yourlogin@remote.engg.ucalgary.ca</code></p>
<p>As before, you&#8217;ll want to replace <code>yourlogin</code> with the username you use to login, and then enter your password when it asks you for it. And when you login, it will look like what we had before with the Terminal. Now, try to use xemacs:</p>
<p><code>xemacs writeup</code></p>
<p><img src="/wp-downloads/x11_2.png" title="XEMACS running over SSH" style="border: 1px solid #000" /></p>
<p>Excellent, we can now edit our files as if we were using one of the lab computers. Good luck!</p>
<p>Note: I hit a snag with the fonts not showing up properly in XEmacs. The longer way to fix it: If you know what fink is, you can use that to install these packages (at least one of them fixes it):</p>
<ul>
<li>root-freetype
<li>freetype
<li>intlfonts
<li>type1inst
<li>freetype
<li>freefonts
<li>xfontpath</ul>
<p>If you don&#8217;t know what fink is, don&#8217;t bother installing it just for this, that would be too much of a hassle. I&#8217;ll figure something out, or maybe somebody else will.</p>
]]></content:encoded>
			<wfw:commentRss>http://jamesbadger.ca/2005/10/21/remote-login/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

