<?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>Rammblings and Madness &#187; Work</title>
	<atom:link href="http://noronha.id.au/tag/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://noronha.id.au</link>
	<description>Life is boring if things "Just Work" !</description>
	<lastBuildDate>Fri, 30 Jul 2010 08:23:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing AGVCRToMPEG2 on 9.04</title>
		<link>http://noronha.id.au/2009/10/installing-agvcrtompeg2-on-9-04/</link>
		<comments>http://noronha.id.au/2009/10/installing-agvcrtompeg2-on-9-04/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:08:36 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[/usr]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=180</guid>
		<description><![CDATA[AGVCRtoMPEG2 &#8211; is an old and outdated program that can convert your AGVCR recordings to avi or mp3. README can be found at https://svn.ci.uchicago.edu/svn/if-media/AGVCRToMPEG2/README Dependencies from apt repos: Scons Subversion Build-essentials libgsm libsamplerate libz sudo apt-get install scons subversion build-essential libgsm1-dev libsamplerate-dev libz-dev Download the code form the svn repository svn co https://svn.ci.uchicago.edu/svn/if-media/AGVCRToMPEG2 We have [...]]]></description>
			<content:encoded><![CDATA[<p>AGVCRtoMPEG2 &#8211; is an old and outdated program that can convert your AGVCR recordings to avi or mp3.</p>
<p>README can be found at <a href="https://svn.ci.uchicago.edu/svn/if-media/AGVCRToMPEG2/README" target="_blank">https://svn.ci.uchicago.edu/svn/if-media/AGVCRToMPEG2/README</a></p>
<p>Dependencies from apt repos:</p>
<ul>
<li>Scons</li>
<li>Subversion</li>
<li>Build-essentials</li>
<li>libgsm</li>
<li>libsamplerate</li>
<li>libz</li>
</ul>
<blockquote><p>sudo apt-get install scons subversion build-essential libgsm1-dev libsamplerate-dev libz-dev</p></blockquote>
<p>Download the code form the svn repository</p>
<blockquote><p>svn co https://svn.ci.uchicago.edu/svn/if-media/AGVCRToMPEG2</p></blockquote>
<p>We have to use the exact version of ffmpeg that he used in development since he has used superseeded functions from the ffmpeg libiary</p>
<blockquote><p>svn co svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg -r 5652</p></blockquote>
<p>Configure and Make ffmpeg (don&#8217;t install unless you want to)</p>
<p>cd ffmpeg</p>
<blockquote><p>./configure</p></blockquote>
<blockquote><p>make</p></blockquote>
<p>Next we have to edit the scons file in cd ~/AGVCRToMPEG2 , it is meant to take the command argument of where you complied the version of ffmpeg but it seems to use old and outdated scons code so we hard code the location in.</p>
<p>Using your favourite editor e.g vim SConstruct</p>
<p>On line 23:</p>
<p>ffmpeg_path = env['ffmpeg_path']<br />
#ffmpeg_path= /home/jack/D/project/ffmpeg</p>
<p>change to</p>
<p>#ffmpeg_path = env['ffmpeg_path']<br />
ffmpeg_path= &#8216;/home/carma/ffmpeg&#8217;</p>
<p>replace carma with your username</p>
<p>We can now attempt to compile the code with the the command scons. but your most likely to get errors due to poor C++ coding most are just related to messing #includes</p>
<p>The following files will need to be edited:</p>
<p>AGVCRToMPEG2.cpp<br />
VPMedia/video/h261/VPMH261ASEncoder.cpp<br />
VPMedia/video/h261/VPMH261Encoder-mash.cpp<br />
VPMedia/video/VPMVideoBufferSink.cpp<br />
VPMedia/video/VPMVideoAssembler.cpp<br />
AudioMixer.cpp<br />
VPMSSRCManager.cpp</p>
<p>To make things easier attached is the output of svn diff <a href="http://noronha.id.au/wp-content/uploads/2009/10/AGVCRTOMPEG2_904update.patch.gz">AGVCRTOMPEG2_904update.patch</a> Note gunzip because of wordpress security doesn&#8217;t allow patch files.</p>
<blockquote><p>gunzip AGVCRTOMPEG2_904update.patch.gz</p></blockquote>
<p>now patch</p>
<blockquote><p>patch -p0 &lt; AGVCRTOMPEG2_904update.patch</p></blockquote>
<p>Compile attempt 2</p>
<blockquote><p>scons</p></blockquote>
<p>Readme contains many examples and hopefully you now have a working system.</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2009/10/installing-agvcrtompeg2-on-9-04/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access Grid and VNC abuse</title>
		<link>http://noronha.id.au/2009/05/access-grid-and-vnc-abuse/</link>
		<comments>http://noronha.id.au/2009/05/access-grid-and-vnc-abuse/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:25:30 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Access Grid]]></category>
		<category><![CDATA[Newcastle]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=155</guid>
		<description><![CDATA[Ok yesterday was the first day I worked as a Access grid support officer. And as a whole the software is pretty cool. 3 Universities inside the country live video and audio the software reports back it&#8217;s moving data at about 1 Mb/s My problem is how they use VNC&#8230;. Lecturer has a powerpoint presenation [...]]]></description>
			<content:encoded><![CDATA[<p>Ok yesterday was the first day I worked as a Access grid support officer.</p>
<p>And as a whole the software is pretty cool.</p>
<p>3 Universities inside the country live video and audio the software reports back it&#8217;s moving data at about 1 Mb/s</p>
<p>My problem is how they use VNC&#8230;.</p>
<p>Lecturer has a powerpoint presenation he wants to show the other end they log into a VNC server on the presenating computer.</p>
<p>1st problem differing resolutions at the other end. Our vnc server desktop is 4 screens long.  so it&#8217;s got a combined resolution of  roughly <span style="text-decoration: line-through;">1024 x  3072</span>4096&#215;768.    where the other end appeared to only have a single screen and that of only 1024&#215;768.  so the powerpoint presentation had to be windowed and shrunk so the didn&#8217;t exceed the display of the other ends.</p>
<p>2nd problem is that then the power point has animations. Now we have a pretty fast link at the university and so do the other universities. But VNC wasn&#8217;t designed to broadcast video, It sends still screen shots at a fast enough refresh rate that remote administration is doable most of the time.  But here is a screen of size <span style="text-decoration: line-through;">1024x 3072 </span>4096&#215;768 and we are being asked why the image being received by the Unis in Melbourne and SA, doesn&#8217;t have smooth animations.</p>
<p>I understand why VNC is used it allows both ends to have control of the screen so other students in the topological groups course can actually write there questions on the electronic whiteboards (smart boards ) and the lecturer and other students can see them and edit the question and answer it.  But oddly enough Microsoft had a solution to this years ago and that was Microsoft&#8217;s Netmeeting has a whiteboard application so multiple users can write on the same &#8220;whiteboard&#8221;  space .. .now this was well before the smart boards came along.</p>
<p>looks like there is plenty of room to improve methods.  And the challenge in this new job isn&#8217;t getting your room in order but if one of the other locations don&#8217;t have a techie on hand.</p>
<p>Also if you know any great applications for this sort of stuff leave a message.</p>
<p>Edit: got my resolution the wrong way 4 screens long so 4096&#215;768 .  Always get confused with the is it height then width or width then height.</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2009/05/access-grid-and-vnc-abuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Job</title>
		<link>http://noronha.id.au/2009/04/new-job/</link>
		<comments>http://noronha.id.au/2009/04/new-job/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 10:16:57 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Access Grid]]></category>
		<category><![CDATA[Newcastle]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=151</guid>
		<description><![CDATA[This afternoon after an interview before Easter. I was offered the job of Access Grid Support Officer working for 17000 at the University of Newcastle. It looks like it&#8217;s going to be a great part time job while I&#8217;m at Uni. Basics of the Job is that I&#8217;ll be running and tech support for the [...]]]></description>
			<content:encoded><![CDATA[<p>This afternoon after an interview before Easter. I was offered the job of Access Grid Support Officer working for 17000 at the University of Newcastle.</p>
<p>It looks like it&#8217;s going to be a great part time job while I&#8217;m at Uni.</p>
<p>Basics of the Job is that I&#8217;ll be running and tech support for the Universities Teleconference suite. (or <a href="http://en.wikipedia.org/wiki/Access_Grid">Access grid</a>)  The University has 2 of these rooms both located at the top of the maths building. (one equipped with smart boards a the other a touch screen TV)</p>
<p>At the moment the only group using the room is the Maths department for topological groups and other distance education courses. But there are plans to open the rooms up to other departments as well as offering a commercial service to the public sector.</p>
<p>I&#8217;ve been told the software running the room is open source, which should be another plus.</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2009/04/new-job/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Uni, new degree and blog fame.</title>
		<link>http://noronha.id.au/2009/03/uni-new-degree-and-blog-fame/</link>
		<comments>http://noronha.id.au/2009/03/uni-new-degree-and-blog-fame/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 02:54:16 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[boredom]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=145</guid>
		<description><![CDATA[Firstly I&#8217;ve had a hard time getting to the rhythm of uni life again. For those who care I&#8217;ve changed degrees. I decided to after spending a lot of time last year in the engineering building, it holds my interest more than maths I changed degrees this year from my B. Mathematics degree to a [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly I&#8217;ve had a hard time getting to the rhythm of uni life again. For those who care I&#8217;ve changed degrees. I decided to after spending a lot of time last year in the engineering building, it holds my interest more than maths I changed degrees this year from my B. Mathematics degree to a B. Engineering (computer) / B. Mathematics Combined. Of course this makes everything feel weird as I go from ELEC1700 first year subject to a 3rd year subject in programmable logic then number theory.</p>
<p>A lot of people had a good laugh at <a href="http://noronha.id.au/?p=142">my last blog</a> post actually it has been my most popular to date. I didn&#8217;t really mind people laughing since if I did I wouldn&#8217;t of blogged. I did get a couple strange comments though, a lot of if its a server config use a server.. someone said to use a Mac ?! and <a href="http://www.windowswatch.co.uk/2009/03/live-cds-can-be.html">this guy </a>from windows watch, miss labeled Mandriva as a live cd which it isn&#8217;t (sorta technically you can argue) and then segwayed into why having no screen or keyboard is good.</p>
<p>I don&#8217;t really see my computer as a serious server, yes it&#8217;s on 24/7, it is my personal SVN server but why spend a tonne of money I don&#8217;t have just so I can easier sync my uni work between my laptops and desktop, and have some revision control on the programs and latex files I write.</p>
<p>Just a note for me while I slowly re-build my computer. Some documentation that comes in handy.</p>
<ul>
<li><a href="https://help.ubuntu.com/8.04/serverguide/C/subversion.html">Subversion installation</a></li>
<li><a href="http://www.engadget.com/2006/07/25/how-to-network-your-ups/">Nut UPS software</a></li>
</ul>
<p>I&#8217;ve also applied for a Job with <a href="https://17000.newcastle.edu.au">17000</a> to be the techincal help with the <a href="http://en.wikipedia.org/wiki/Access_Grid">access grid room</a>. It would be a nice job since it looks to require you to sit in the room during the access grid lectures, and work the equipment and according to my mates in the maths deparment the lectures can be pretty interesting. Haven&#8217;t heard back yet, and I&#8217;m not sure I will get it since I did direct them to this blog as a refrence and the last couple of posts don&#8217;t make me look smart&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2009/03/uni-new-degree-and-blog-fame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2007</title>
		<link>http://noronha.id.au/2008/10/office-2007/</link>
		<comments>http://noronha.id.au/2008/10/office-2007/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 08:17:28 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[Mircosoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=55</guid>
		<description><![CDATA[Ordered a Brand new computer with Windows XP Pro and Office Small Business 2007 this is for work mind you, I&#8217;m still personally running Ubuntu and using Latex for all my word processing needs. Ok you get your new OEM computer what&#8217;s the first thing you do ?  Yes that&#8217;s right format the blasted thing [...]]]></description>
			<content:encoded><![CDATA[<p>Ordered a Brand new computer with Windows XP Pro and Office Small Business 2007 this is for work mind you, I&#8217;m still personally running Ubuntu and using Latex for all my word processing needs.</p>
<p>Ok you get your new OEM computer what&#8217;s the first thing you do ?  Yes that&#8217;s right format the blasted thing because the guys installed a trial version of Norton and other garbage. Plus it&#8217;s going into a law office so I need to know exactly what&#8217;s on the machine.</p>
<p>Windows install was fine it was a windows install &#8220;next, next&#8221; then restart.</p>
<p>Then it came to office I found the office package I was sent &#8220;Medialess License Kit &#8211; No Discs Included&#8221; Pain in the arse MS, I then set about searching MS for a download, no luck.</p>
<p>I pulled out the card with the key on it and on the back it says &#8220;Backup discs can be ordered using this Key at <a href="http://www.microsoft.com/office/backup">http://www.microsoft.com/office/backup</a> &#8221; I thought I really want it now not have to wait but it might be useful to have a CD somewhere.</p>
<p>OK if you googled and found this looking to find the install files they are downloadable when you put in your order for a backup disk. Once you give MS your personal details it then ask you about Shipping cost, slow down around here because it&#8217;s here you&#8217;ll find a link to once again give MS your email address. Then wait for an email. THEN and only then do you get a link to 500+ MB of office 2007 installs.</p>
<p>At this stage why couldn&#8217;t MS just have sold me a CD.</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2008/10/office-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing JMP on ubuntu</title>
		<link>http://noronha.id.au/2008/03/installing-jmp-on-ubuntu/</link>
		<comments>http://noronha.id.au/2008/03/installing-jmp-on-ubuntu/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 08:42:02 +0000</pubDate>
		<dc:creator>Gabz</dc:creator>
				<category><![CDATA[/usr]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://noronha.id.au/?p=30</guid>
		<description><![CDATA[In order to do my stat2000 labs i need to use JMP, the university gives out copies of JMP out to students on some sort of site licences, the instructions where to go down to uprint and pick up a disk for a small fee ($5). I went down got my disk took it home, [...]]]></description>
			<content:encoded><![CDATA[<p>In order to do my stat2000 labs i need to use  <a href="http://www.jmp.com/">JMP</a>, the university gives out copies of JMP out to students on some sort of site licences, the instructions where to go down to uprint and pick up a disk for a small fee ($5).  I went down got my disk took it home, and too my disappointment it was only the windows version. JMP is multi-platform as shown by the <a href="http://www.jmp.com/software/jmp7/system_requirements.shtml">System Requirements </a></p>
<p>A couple emails later to lecturers then he emailed desktop services, i got a email saying that they have a license file for me and a disk with the Linux installer.</p>
<p>Which brings the next problem the linux installer really is only a Red Hat installer. And my linux of choice is of course ubuntu.</p>
<p><code>gabriel@ubuntu1:/media/cdrom$ ls -la<br />
total 506854<br />
dr-xr-xr-x 10 root root      4096 2008-03-06 12:07 .<br />
drwxr-xr-x  5 root root      4096 2008-03-13 16:57 ..<br />
-r--r--r--  1 root root        10 2008-03-06 12:07 cd.id<br />
dr-xr-xr-x  2 root root      2048 2008-03-06 12:07 fonts<br />
dr-xr-xr-x  2 root root      2048 2008-03-06 12:07 java<br />
-r--r--r--  1 root root  29142815 2007-09-29 04:46 jmp-base-al-7.0.1-1.i686.rpm<br />
-r--r--r--  1 root root  54675183 2007-09-29 04:46 jmp-lang-deDE-7.0.1-1.noarch.rpm<br />
-r--r--r--  1 root root  54591039 2007-09-29 04:46 jmp-lang-enUS-7.0.1-1.noarch.rpm<br />
-r--r--r--  1 root root  54693795 2007-09-29 04:46 jmp-lang-frFR-7.0.1-1.noarch.rpm<br />
-r--r--r--  1 root root 119767152 2007-09-29 04:47 jmp-lang-jaJP-7.0.1-4.noarch.rpm<br />
-r--r--r--  1 root root  92146971 2007-09-29 04:47 jmp-lang-koKR-7.0.1-3.noarch.rpm<br />
-r--r--r--  1 root root 106242682 2007-09-29 04:47 jmp-lang-zhCN-7.0.1-4.noarch.rpm<br />
-r-xr-xr-x  1 root root   5241003 2007-09-29 04:48 jmp-setup<br />
-r--r--r--  1 root root   2477691 2007-09-29 04:48 jmp-setup-al-1.2-3.i686.rpm<br />
dr-xr-xr-x  2 root root      2048 2008-03-06 12:07 media_data<br />
dr-xr-xr-x  3 root root      2048 2008-03-06 12:07 order_data<br />
dr-xr-xr-x  3 root root      2048 2008-03-06 12:07 product_data<br />
-r--r--r--  1 root root     11536 2007-09-29 04:45 ReadMe.html<br />
dr-xr-xr-x  8 root root      2048 2008-03-06 12:07 Resources<br />
dr-xr-xr-x  3 root root      2048 2008-03-06 12:07 tools<br />
dr-xr-xr-x  2 root root      2048 2008-03-06 12:07 unixODBC<br />
</code></p>
<p>So we have a random binary jmp-setup and some rpms.</p>
<p>So we start with the rpms i think. Start be installing alien<br />
<code>sudo apt-get install alien </code></p>
<p>The next setup is moving the files off the cd-rom on to the hard drive as alien needs to be run where you have read write access.</p>
<p>We convert the following rpms.<br />
<code><br />
sudo alien jmp-lang-enUS-7.0.1-1.noarch.rpm<br />
sudo alien jmp-setup-al-1.2-3.i686.rpm<br />
sudo alien jmp-base-al-7.0.1-1.i686.rpm<br />
</code></p>
<p>Install your new debs using dpkg<br />
<code><br />
sudo dpkg -i jmp-setup-al_1.2-4_i386.deb<br />
sudo dpkg -i jmp-lang-enus_7.0.1-2_all.deb<br />
sudo dpkg -i jmp-base-al_7.0.1-2_i386.deb<br />
</code></p>
<p>I located JMP in my /opt/SAS/JMP7 folder.</p>
<p>I ran sudo ./jmp and yay it showed up in well outdated qt goodness..3.3.8 but the next problem was the license file, i copied and pasted it over from the email i was sent and added it but apparently it&#8217;s invalid. Of course having to run jmp as root isn&#8217;t ideal but it&#8217;s better than rebooting to windows.</p>
<p><strong>Edit:</strong></p>
<p>After reading the License file again there where  2 lines which looked odd 32 and 33, they started the line with a * instead of a space like all the other lines. i deleted these leading *&#8217;s and what do you know the file worked fine i now have a working version of JMP installed on ubuntu.</p>
<p>No Problems found yet but i haven&#8217;t started my assignment.</p>
]]></content:encoded>
			<wfw:commentRss>http://noronha.id.au/2008/03/installing-jmp-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
