<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.mintmedia.co.nz/research/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.mintmedia.co.nz/research/index.php?title=Special:NewPages&amp;feed=atom&amp;namespace=0</id>
		<title>mint media - New pages [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.mintmedia.co.nz/research/index.php?title=Special:NewPages&amp;feed=atom&amp;namespace=0"/>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Special:NewPages"/>
		<updated>2012-05-20T13:28:08Z</updated>
		<subtitle>From mint media</subtitle>
		<generator>MediaWiki 1.15.1</generator>

	<entry>
		<id>http://www.mintmedia.co.nz/Openframeworks</id>
		<title>Openframeworks</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Openframeworks"/>
				<updated>2011-11-24T01:55:42Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[http://wiki.openframeworks.cc/index.php?title=Creating_New_Project_in_Xcode Renaming a project]&lt;br /&gt;
*[https://sites.google.com/site/ofauckland/examples/8-artoolkit-example Ricks hints and tips]&lt;br /&gt;
*[http://wiki.openframeworks.cc/index.php?title=Ooops%21_%3D_Object_Oriented_Programming_%2B_Classes array tutorial]&lt;br /&gt;
*addons&lt;br /&gt;
**[http://forum.openframeworks.cc/index.php/topic,3316.msg21867.html#msg21867 download file vis HTTP] - this works&lt;br /&gt;
**[https://github.com/Flightphase/ofxImageSequence Display Image sequences] - compile errors&lt;br /&gt;
**[http://forum.openframeworks.cc/index.php?topic=1335.0 Threaded video playback] - compile errors&lt;br /&gt;
**[https://github.com/Flightphase/ofxQTKitVideoGrabber/tree/master/example Video grabber] - overkill&lt;br /&gt;
&lt;br /&gt;
==String formating==&lt;br /&gt;
Format int to string&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
string ofxFormatString(string format, int number) {&lt;br /&gt;
    char buffer[100];&lt;br /&gt;
    sprintf(buffer, format.c_str(), number);&lt;br /&gt;
    return (string)buffer;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Cast a string into a char array&lt;br /&gt;
 char *fileName = (char*)FileMeasure.c_str();&lt;br /&gt;
&lt;br /&gt;
sprintf can handle most type conversions into a char*&lt;br /&gt;
 sprintf(buffer, &amp;quot;mkdir -p %s&amp;quot;, path);&lt;br /&gt;
&lt;br /&gt;
==Mac OS X ACL==&lt;br /&gt;
  chmod +a &amp;quot;rcar004 allow file_inherit,add_file,add_subdirectory,directory_inherit&amp;quot; /Volumes/&lt;br /&gt;
But better to just set perms in finder.&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Marin_mountain_bike</id>
		<title>Marin mountain bike</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Marin_mountain_bike"/>
				<updated>2011-07-20T01:43:05Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Taken from outside AUT WT building crn Rutland St between 10am and 1:30pm Wednesday 20 July.&lt;br /&gt;
&lt;br /&gt;
*Marin Nail Trail mountain bike - Black&lt;br /&gt;
*White fox forks - partly peeled off stickers on the forks&lt;br /&gt;
*Schwalbe road tires&lt;br /&gt;
*White paint scratches on the frame.&lt;br /&gt;
*Very worn grips&lt;br /&gt;
*Contact: [mailto:rob@mintmedia.co.nz Robert Carter], 021 421 129&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Marin Nail Trail.jpg|thumb|500px]]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Simple_smb.conf</id>
		<title>Simple smb.conf</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Simple_smb.conf"/>
				<updated>2011-07-14T22:54:06Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
[global]&lt;br /&gt;
&lt;br /&gt;
netbios name = MEDIA&lt;br /&gt;
workgroup = WORKGROUP&lt;br /&gt;
security = user&lt;br /&gt;
encrypt passwords = yes&lt;br /&gt;
smb passwd file = /etc/samba/smbpasswd&lt;br /&gt;
interfaces = 192.168.1.1/16&lt;br /&gt;
guest account = rob&lt;br /&gt;
map to guest = Bad User &lt;br /&gt;
&lt;br /&gt;
[media]&lt;br /&gt;
&lt;br /&gt;
comment = media&lt;br /&gt;
path = /home/media&lt;br /&gt;
writeable = yes&lt;br /&gt;
create mask = 0770&lt;br /&gt;
force create mode = 0770&lt;br /&gt;
locking = yes&lt;br /&gt;
guest ok = yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then do:&lt;br /&gt;
 sudo smbpasswd -L -a rob&lt;br /&gt;
 sudo smbpasswd -L -e rob&lt;br /&gt;
to create and activate the user.&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Flashing_WRT64G_routers</id>
		<title>Flashing WRT64G routers</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Flashing_WRT64G_routers"/>
				<updated>2011-05-26T00:33:22Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Assign a static IP address to your host system&lt;br /&gt;
**IP: 192.168.1.123&lt;br /&gt;
**Mask: 255.255.255.0&lt;br /&gt;
*Set the ethernet config&lt;br /&gt;
**Speed: auto-select&lt;br /&gt;
**MTU:1500&lt;br /&gt;
&lt;br /&gt;
Power on the router and run this command. '''openwrt-wrt54g-squashfs.bin''' is the image to write to the firmware.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
rob-macbookpro:wrt54gl rcar004$ echo -e &amp;quot;verbose\nbinary\nrexmt 1\ntimeout 60\ntrace\nput openwrt-wrt54g-squashfs.bin\n&amp;quot; | tftp 192.168.1.1&lt;br /&gt;
Verbose mode on.&lt;br /&gt;
mode set to octet&lt;br /&gt;
Packet tracing on.&lt;br /&gt;
putting openwrt-wrt54g-squashfs.bin to 192.168.1.1:openwrt-wrt54g-squashfs.bin [octet]&lt;br /&gt;
sent WRQ &amp;lt;file=openwrt-wrt54g-squashfs.bin, mode=octet&amp;gt;&lt;br /&gt;
tftp: sendto: No route to host&lt;br /&gt;
rob-macbookpro:wrt54gl rcar004$ echo -e &amp;quot;verbose\nbinary\nrexmt 1\ntimeout 60\ntrace\nput openwrt-wrt54g-squashfs.bin\n&amp;quot; | tftp 192.168.1.1&lt;br /&gt;
Verbose mode on.&lt;br /&gt;
mode set to octet&lt;br /&gt;
Packet tracing on.&lt;br /&gt;
putting openwrt-wrt54g-squashfs.bin to 192.168.1.1:openwrt-wrt54g-squashfs.bin [octet]&lt;br /&gt;
sent WRQ &amp;lt;file=openwrt-wrt54g-squashfs.bin, mode=octet&amp;gt;&lt;br /&gt;
received ACK &amp;lt;block=0&amp;gt;&lt;br /&gt;
sent DATA &amp;lt;block=1, 512 bytes&amp;gt;&lt;br /&gt;
received ACK &amp;lt;block=1&amp;gt;&lt;br /&gt;
sent DATA &amp;lt;block=2, 512 bytes&amp;gt;&lt;br /&gt;
received ACK &amp;lt;block=2&amp;gt;&lt;br /&gt;
sent DATA &amp;lt;block=3, 512 bytes&amp;gt;&lt;br /&gt;
received ACK &amp;lt;block=3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/The_Netherlands</id>
		<title>The Netherlands</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/The_Netherlands"/>
				<updated>2011-04-24T03:23:37Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;/* UK passport application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==With an EU passport==&lt;br /&gt;
*Able to work without special permit.&lt;br /&gt;
&lt;br /&gt;
==UK passport application==&lt;br /&gt;
*[http://www.votemenot.co.nz/thread/200306/english-british-passort-for-my-children/ Children of non-uk passport holders cannot get a uk passport.]&lt;br /&gt;
&lt;br /&gt;
*[http://ukinnewzealand.fco.gov.uk/en/help-for-british-nationals/passports-old/applying-in-nz/passport-forms-in-New-Zealand Application forms]&lt;br /&gt;
*[http://ukinnewzealand.fco.gov.uk/en/help-for-british-nationals/passports-old/applying-in-nz/checklist1 Checklists]&lt;br /&gt;
&lt;br /&gt;
==Piet Zwart Institute Willem de Kooning Academy Rotterdam University==&lt;br /&gt;
*[http://pzwart.wdka.nl/networked-media/category/apply/deadlines/ Application deadline May 1]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
*http://www.netherlandsembassy.co.nz/&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Funding_organisations_and_trusts</id>
		<title>Funding organisations and trusts</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Funding_organisations_and_trusts"/>
				<updated>2011-01-17T02:58:44Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;Created page with 'In New Zealand if a bar or pub has gambling machines they are required to distribute a certain percentage of the profits to community organisations in order to offset the social …'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In New Zealand if a bar or pub has gambling machines they are required to distribute a certain percentage of the profits to community organisations in order to offset the social costs of such machines. Some community trusts are run as non-profit organisations to administer gambling and distributing the money to organisations such as sports clubs.&lt;br /&gt;
&lt;br /&gt;
== Authorised Purpose ==&lt;br /&gt;
&lt;br /&gt;
Under the gaming act trusts must award money to organisations based on rules. Here is an example for a [http://oxfordsportstrust.org.nz/index.htm sports club] funding body.&lt;br /&gt;
&lt;br /&gt;
*[http://www.dia.govt.nz/diawebsite.nsf/wpg_URL/Services-Casino-and-Non-Casino-Gaming-Authorised-Purpose-Guidelines-for-Societies-and-Clubs?OpenDocument&amp;amp;ExpandView General guidelines] from the Dept of Infernal Affairs&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
Most trusts require you to provide the following documentation.&lt;br /&gt;
*Three quotes&lt;br /&gt;
*Application signed by two committee members&lt;br /&gt;
*Employment contracts (if the grant will be used to pay someone)&lt;br /&gt;
*Meeting minutes showing a resolution to apply for funding&lt;br /&gt;
*Covering letter (on letterhead) describing the organisation and it's objectives&lt;br /&gt;
*Bank deposit slip or bank account number&lt;br /&gt;
*Affiliations (regional or national body)&lt;br /&gt;
*[[w:GST|GST]] registration status (GST number)&lt;br /&gt;
*Incorporation certificate is the organisation is an Inc.&lt;br /&gt;
*Trust certificate if the organisation is a trust.&lt;br /&gt;
*Latest income and expenditure account&lt;br /&gt;
&lt;br /&gt;
== Sports funding organisations and trusts ==&lt;br /&gt;
Though not exclusively funding sport these organisations give the majority of their funding to sports organisations.&lt;br /&gt;
*[http://nzct.org.nz/grants_applications.php NZCT]&lt;br /&gt;
**[http://nzct.org.nz/grants_get.php Application form]&lt;br /&gt;
*[http://oxfordsportstrust.org.nz/grants.htm Oxford Sports Trust]&lt;br /&gt;
**[http://oxfordsportstrust.org.nz/grantpolicy.pdf Grant policy]&lt;br /&gt;
**[http://oxfordsportstrust.org.nz/Application%20forms%203%20pages.pdf Application form]&lt;br /&gt;
*[http://www.centuryfoundation.co.nz Century Foundation]&lt;br /&gt;
**[http://www.centuryfoundation.co.nz/CenturyFoundation/New%20Pages/Images/Grants/Form/application%20form.pdf Application form]&lt;br /&gt;
&lt;br /&gt;
== General community funding organisations and trusts ==&lt;br /&gt;
*[http://southerntrust.org.nz/ Southern Trust]&lt;br /&gt;
**[http://southerntrust.org.nz/index.php?test_trg Application form]&lt;br /&gt;
**[http://southerntrust.org.nz/index.php?authorised_purpose Authorised purpose]&lt;br /&gt;
*[http://lionfoundation.org.nz/default.asp?ObjectID=122 Lion Foundation]&lt;br /&gt;
**[http://lionfoundation.org.nz/default.asp?ObjectID=150 Application form]&lt;br /&gt;
**Contributions: NZ$46,911,548 in year to 31 March 2006&lt;br /&gt;
*[http://pubcharity.org.nz/ Pub Charity]&lt;br /&gt;
**[http://www.pubcharity.org.nz/default.asp?pid=7&amp;amp;sid=14&amp;amp;tabcap=CC0000 Regulations]&lt;br /&gt;
**[http://www.iserve.co.nz/users-nt/www.pubcharity.org.nz/images/uploaded/Application%20Form.pdf Application form]&lt;br /&gt;
*[http://trillian.co.nz/ Trillian Trust]&lt;br /&gt;
**[http://trillian.co.nz/index.asp?pageID=2145827556 Applying]&lt;br /&gt;
**[mailto:shelley@trillian.co.nz?subject=Grant Request form by email]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Screen_printing_workshop</id>
		<title>Screen printing workshop</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Screen_printing_workshop"/>
				<updated>2011-01-07T21:24:22Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;/* What to bring */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Screenprinting]][[Category:Events]]&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;style type='text/css'&amp;gt;&lt;br /&gt;
#toc ul ul {display:none;}&lt;br /&gt;
#toc {float:right;}&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Who, when and where?==&lt;br /&gt;
[[File:Applying-emulsion.jpg|500px]]&lt;br /&gt;
* '''Facilitator''': [[Home|Robert Carter]] (cell 021 421129)&lt;br /&gt;
*Workshop phone: +64 (0) 22 069 2047&lt;br /&gt;
* '''Date''': Sunday 23 January 2011. 10am&lt;br /&gt;
* [http://www.tangleball.co.nz/?q=node/1 Tangleball], 27 Edinburgh St, Newton.&lt;br /&gt;
* '''Numbers''': Group of 8&lt;br /&gt;
&lt;br /&gt;
==What is screen printing?==&lt;br /&gt;
Screen printing is a fun and versatile way of printing artwork onto fabrics, wood, paper and a range of other materials. Also known as silk screen printing, silk screening, seriography, or serigraph, the process uses a fine mesh held under tension by a wood or aluminium frame. Historically the mesh was actually made from silk, but these days it's made from nylon monofilament. A rubber blade attached to a wooden handle, called a squeegee, is used to drag a pool of paint or ink across the screen.  &lt;br /&gt;
&lt;br /&gt;
The core concept of screen printing is the idea of a stencil. A stencil is a way of preventing paint from being able to pass through the screen mesh. A simple stencil could be a sheet of paper with a design cut out of it, taped to the down side of the screen. Where the paper has been cut out, the paint will pass through the screen and onto the work you are printing on. More sophisticated stencils can be made photographically using photo emulsion and a film positive.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;object width=&amp;quot;425&amp;quot; height=&amp;quot;344&amp;quot;&amp;gt;&amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;http://www.youtube.com/v/wogKeYH2wEE?fs=1&amp;amp;amp;hl=en_GB&amp;quot;&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name=&amp;quot;allowFullScreen&amp;quot; value=&amp;quot;true&amp;quot;&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name=&amp;quot;allowscriptaccess&amp;quot; value=&amp;quot;always&amp;quot;&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src=&amp;quot;http://www.youtube.com/v/wogKeYH2wEE?fs=1&amp;amp;amp;hl=en_GB&amp;quot; type=&amp;quot;application/x-shockwave-flash&amp;quot; allowscriptaccess=&amp;quot;always&amp;quot; allowfullscreen=&amp;quot;true&amp;quot; width=&amp;quot;425&amp;quot; height=&amp;quot;344&amp;quot;&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[http://mintmedia.co.nz/Category:Screenprinting Rob's screen printing photos and articles]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Screen-printing Wikipedia article on screen printing]&lt;br /&gt;
&lt;br /&gt;
==How much will it cost?==&lt;br /&gt;
*Base cost is $35 ($20 to Tangleball or Tumeke Cycle Space financial members). This amount is payable in advance to secure a place at the workshop.&lt;br /&gt;
*A limited number of screens will be available on the day at a $5 per screen.&lt;br /&gt;
*Add $5 if you want a screen already coated with photo emulsion - you need to tell me in advance if you want make a photo stencil. If you aren't sure or don't know please call or email.&lt;br /&gt;
&lt;br /&gt;
==Sounds great! How do I take part?==&lt;br /&gt;
*First email me ([mailto:rob@mintmedia.co.nz rob@mintmedia.co.nz]) with your info&lt;br /&gt;
** Name and contact details&lt;br /&gt;
*Make a direct debit payment to secure a place at the workshop, you can also take your chances and pay on the day.&lt;br /&gt;
*Account details: Mint Media, ANZ Bank, Ponsonby Branch, 010249-0081889-00&lt;br /&gt;
*Please note: We don't have EFTPOS facilities and we don't accept cheques or credit cards.&lt;br /&gt;
&lt;br /&gt;
== Subjects covered ==&lt;br /&gt;
I estimate the workshop would take half a day and covers these areas.&lt;br /&gt;
&lt;br /&gt;
* Safety - Risks and personal protection. Chemicals involved. Environmental management.&lt;br /&gt;
* Applications of screen printing in commercial and graphic art and a bit of history&lt;br /&gt;
* Materials - Screens. Squeegee. Paint. Emulsion. Emulsion remover. Degreaser.&lt;br /&gt;
* Practical experiments - Qualities of paints. Screen meshes. Kinds of stencils. Printing on what?&lt;br /&gt;
* Paper, plastic, photo stencils&lt;br /&gt;
* Screen preparation - degreasing, mixing and coating with photo emulsion, exposure and washing.&lt;br /&gt;
* Practical printing techniques - In pairs. Tests. Printing an edition. &lt;br /&gt;
* From here on depends on what the people want to know about / experiment with&lt;br /&gt;
* Project idea: Create a poster for Tangleball #2&lt;br /&gt;
&lt;br /&gt;
==What to bring==&lt;br /&gt;
*Clothes that can get paint on them&lt;br /&gt;
*Craft knife&lt;br /&gt;
*Things for drawing or sketching: Pens, pencils, markers.&lt;br /&gt;
*Source material: Sketches, books, posters, artwork you find interesting or inspiring.&lt;br /&gt;
*Transparencies (film positives) with your artwork photocopied or laser printed onto - bring two identical copies.&lt;br /&gt;
*Garments, paper or wood to print on.&lt;br /&gt;
*TWO transparencies with your design photocopied or laser printed onto them (not essential as we do hand cut stencils also)&lt;br /&gt;
&lt;br /&gt;
==Things to print on==&lt;br /&gt;
I will be providing some brown paper for tests and for paper printing.  There will be a small range of garments available for purchase at $10 per item ($5 for members). These include tops and t-shirts in mens and womens styles in a few sizes. I strongly recommend that you bring some garments, fabric items or sheets of paper as it's much nicer to print on something you've chosen yourself. You could also bring wood or MDF.&lt;br /&gt;
&lt;br /&gt;
==Frequently Asked Questions (FAQ) ==&lt;br /&gt;
&lt;br /&gt;
===Can I bring my own design and have it put on a screen and print it?===&lt;br /&gt;
Yes, BUT. You must do these things:&lt;br /&gt;
*Your design must be A3 size or less.&lt;br /&gt;
*You must bring two transparencies with your design photocopied (darkest setting) or laser printed onto. When backed up together and held up to the light you should see no light through the dark areas of the design.&lt;br /&gt;
*You must tell me in advance you want to do this so I can coat a screen with photo emulsion for you. You also need to pay $5 extra to cover the the cost of the emulsion.&lt;br /&gt;
*You must purchase the screen on the day&lt;br /&gt;
&lt;br /&gt;
===How about bring your own screen or use existing designs===&lt;br /&gt;
..for folks that are happy to have the experience and a t-shirt printed with an existing design?&lt;br /&gt;
&lt;br /&gt;
Yes, we have a range of existing screens you can use to print with. You don't have to purchase a screen as part of the workshop.&lt;br /&gt;
&lt;br /&gt;
===What can be printed on?===&lt;br /&gt;
Hats, denim, automobiles?&lt;br /&gt;
&lt;br /&gt;
We'll be providing assorted colours of fabric paint to print with. This will make nice prints on most fabrics, also paper and wood. You won't be able to print on your car, but you could print on the canvas spare-wheel cover of a 4WD for example. Hats are tricky as the print area is small and you would usually use a special small screen and a rig to do this. The screens we have are probably too big to print on hats, but people are welcome to try (provide your own hat).&lt;br /&gt;
&lt;br /&gt;
===Can we play around a bit with the pricing? I'm thinking about buying an extra screen or two===&lt;br /&gt;
I hope to have 10 screens available for purchase at the workshop. See the [[#How_much_will_it_cost?|pricing schedule]] for details.&lt;br /&gt;
&lt;br /&gt;
===Can I print photographic designs in multiple colours like on that Barak Obama / 50 Cent / Iron Maiden T-Shirt?===&lt;br /&gt;
No. We won't be using screen printing machines, just people and benches. It's best to leave that kind of work to the professionals.&lt;br /&gt;
&lt;br /&gt;
===Do you have EFT-POS?===&lt;br /&gt;
No, cash only.&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Home_new</id>
		<title>Home new</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Home_new"/>
				<updated>2010-06-21T05:01:31Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOEDITSECTION____NOTOC__{{HideTitle}}&lt;br /&gt;
My name is Robert Carter.  Collected here are images, writing and links to my work and the work of others that I find interesting, inspiring or curious.&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&amp;lt;table style='width:800px;'&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td style='width:398px;'&amp;gt;&lt;br /&gt;
[[Image:Magic Garden closeup.jpg|398px|link=Magic Garden]]&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style='width:398px;'&amp;gt;&lt;br /&gt;
[[Image:Doro.jpg|398px|link=Doro - A short film]]&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Blake</id>
		<title>Blake</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Blake"/>
				<updated>2010-05-31T01:44:25Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Blake Ange and Luna 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Blake Ange and Luna 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Blake and Luna 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Blake.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Blake Ange and Luna 3.jpg]]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Archives</id>
		<title>Archives</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Archives"/>
				<updated>2010-04-06T04:26:56Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;Created page with '&amp;lt;span style='font-size:11pt; font-weight: lighter; color: #777;'&amp;gt;Recently added&amp;lt;/span&amp;gt; {{NavBox |image = Photodiode_in_situ.jpg |link  = Fan oscillator }} {{NavBox |image = Juicy…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style='font-size:11pt; font-weight: lighter; color: #777;'&amp;gt;Recently added&amp;lt;/span&amp;gt;&lt;br /&gt;
{{NavBox&lt;br /&gt;
|image = Photodiode_in_situ.jpg&lt;br /&gt;
|link  = Fan oscillator&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|image = Juicy_Threes_old_pads_rear_view.jpg&lt;br /&gt;
|link  = Juicy Threes brake pad service&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|image = Garlic.JPG&lt;br /&gt;
|link  = File:Garlic.JPG&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|image = Scholarship_application_2010.JPG&lt;br /&gt;
|link  = :Category:Scholarship_application_2010&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Oscilloscope&lt;br /&gt;
|image = Oscilloscope.JPG&lt;br /&gt;
|link  = :Category:Oscilloscope&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
&amp;lt;span style='font-size:11pt; font-weight: lighter; color: #777;'&amp;gt;Previous stuff&amp;lt;/span&amp;gt;&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Album covers&lt;br /&gt;
|image = Album covers.JPG&lt;br /&gt;
|link  = :Category:Album covers&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Ampex&lt;br /&gt;
|image = Ampex.JPG&lt;br /&gt;
|link  = :Category:Ampex&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Apartment series&lt;br /&gt;
|image = Apartment series.JPG&lt;br /&gt;
|link  = :Category:Apartment series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Architecture&lt;br /&gt;
|image = Architecture.JPG&lt;br /&gt;
|link  = :Category:Architecture&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Archive&lt;br /&gt;
|image = Archive.JPG&lt;br /&gt;
|link  = :Category:Archive&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Art&lt;br /&gt;
|image = Art.JPG&lt;br /&gt;
|link  = :Category:Art&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Books&lt;br /&gt;
|image = Books.JPG&lt;br /&gt;
|link  = :Category:Books&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Cassette series&lt;br /&gt;
|image = Cassette series.JPG&lt;br /&gt;
|link  = :Category:Cassette series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Current listening&lt;br /&gt;
|image = Current listening.JPG&lt;br /&gt;
|link  = :Category:Current listening&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Design&lt;br /&gt;
|image = Design.JPG&lt;br /&gt;
|link  = :Category:Design&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Electronics&lt;br /&gt;
|image = Electronics.JPG&lt;br /&gt;
|link  = :Category:Electronics&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Events&lt;br /&gt;
|image = Events.JPG&lt;br /&gt;
|link  = :Category:Events&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|FRAK series&lt;br /&gt;
|image = FRAK series.JPG&lt;br /&gt;
|link  = :Category:FRAK series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Film&lt;br /&gt;
|image = Film.JPG&lt;br /&gt;
|link  = :Category:Film&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Fog&lt;br /&gt;
|image = Fog.JPG&lt;br /&gt;
|link  = :Category:Fog&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Foo&lt;br /&gt;
|image = Foo.jpg&lt;br /&gt;
|link  = Foo&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
| Hazard signs&lt;br /&gt;
|image = Hazard signs.JPG&lt;br /&gt;
|link  = :Category:Hazard signs&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Luna&lt;br /&gt;
|image = Luna.JPG&lt;br /&gt;
|link  = :Category:Luna&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Pacific series&lt;br /&gt;
|image = Pacific series.JPG&lt;br /&gt;
|link  = :Category:Pacific series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|People&lt;br /&gt;
|image = People.JPG&lt;br /&gt;
|link  = :Category:People&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Photography&lt;br /&gt;
|image = Photography.JPG&lt;br /&gt;
|link  = :Category:Photography&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Printing&lt;br /&gt;
|image = Printing.JPG&lt;br /&gt;
|link  = :Category:Printing&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Proof sheet screen&lt;br /&gt;
|image = Proof sheet screen.JPG&lt;br /&gt;
|link  = :Category:Proof sheet screen&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Science&lt;br /&gt;
|image = Science.JPG&lt;br /&gt;
|link  = :Category:Science&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Screenprinting&lt;br /&gt;
|image = Screenprinting.JPG&lt;br /&gt;
|link  = :Category:Screenprinting&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Sculpture&lt;br /&gt;
|image = Sculpture.JPG&lt;br /&gt;
|link  = :Category: Sculpture&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Skyhawk series&lt;br /&gt;
|image = Skyhawk series.JPG&lt;br /&gt;
|link  = :Category:Skyhawk series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Solex series&lt;br /&gt;
|image = Solex series.JPG&lt;br /&gt;
|link  = :Category:Solex series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Stencils&lt;br /&gt;
|image = Stencils.JPG&lt;br /&gt;
|link  = :Category:Stencils&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Street art&lt;br /&gt;
|image = Street art.JPG&lt;br /&gt;
|link  = :Category:Street art&lt;br /&gt;
}}&lt;br /&gt;
{{Clear}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Theatre&lt;br /&gt;
|image = Theatre.JPG&lt;br /&gt;
|link  = :Category:Theatre&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Tony's girl series&lt;br /&gt;
|image = Tony's girl series.JPG&lt;br /&gt;
|link  = :Category:Tony's girl series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Tree series&lt;br /&gt;
|image = Tree series.JPG&lt;br /&gt;
|link  = :Category:Tree series&lt;br /&gt;
}}&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Wallpaper prints&lt;br /&gt;
|image = Wallpaper prints.JPG&lt;br /&gt;
|link  = :Category:Wallpaper prints&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class='nav-box'&amp;gt;&amp;lt;div class='nav-image'&amp;gt;[[Image:Wedding.jpg|130px|link=http://mintmedia.co.nz/wedding]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{NavBox&lt;br /&gt;
|Gallery of images&lt;br /&gt;
|image = Big-king-water-tower.jpg&lt;br /&gt;
|link  = Special:NewImages&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Timber</id>
		<title>Timber</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Timber"/>
				<updated>2010-02-13T02:15:46Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;Created page with '500px  500px'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Timber.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
[[File:Timber closeup.jpg|500px]]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Fan_oscillator</id>
		<title>Fan oscillator</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Fan_oscillator"/>
				<updated>2010-01-18T21:31:27Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__[[Category:Electronics]]&lt;br /&gt;
I wanted to make a simple synth that produced nice bass sounds. [http://gieskes.nl/instruments/?file=synth-fan Gijs Gieskes] fan synth project  shows a simple circuit to make an oscillator based on a fan. Gijs has done some interesting original stuff so check his site out.&lt;br /&gt;
&lt;br /&gt;
The oscillator would generate analogue frequencies down to the [[W:Absolute_threshold_of_hearing|limit of human hearing]]. It also has some very nice distortion threshold conditions. &lt;br /&gt;
&lt;br /&gt;
The on/off switching you hear in the second clip is me turning on and off a lamp above the photocell  - the lamp acts like a distortion pedal.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;object height=&amp;quot;81&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt; &amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvdu23%2Ffan-audio-test-1&amp;amp;amp;show_comments=true&amp;amp;amp;auto_play=false&amp;amp;amp;color=18400c&amp;quot;&amp;gt;&amp;lt;/param&amp;gt; &amp;lt;param name=&amp;quot;allowscriptaccess&amp;quot; value=&amp;quot;always&amp;quot;&amp;gt;&amp;lt;/param&amp;gt; &amp;lt;embed allowscriptaccess=&amp;quot;always&amp;quot; height=&amp;quot;81&amp;quot; src=&amp;quot;http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvdu23%2Ffan-audio-test-1&amp;amp;amp;show_comments=true&amp;amp;amp;auto_play=false&amp;amp;amp;color=18400c&amp;quot; type=&amp;quot;application/x-shockwave-flash&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;/embed&amp;gt; &amp;lt;/object&amp;gt;   &amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;http://soundcloud.com/vdu23/fan-audio-test-1&amp;quot;&amp;gt;Fan audio test 1&amp;lt;/a&amp;gt;  by  &amp;lt;a href=&amp;quot;http://soundcloud.com/vdu23&amp;quot;&amp;gt;vdu23&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;object height=&amp;quot;81&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt; &amp;lt;param name=&amp;quot;movie&amp;quot; value=&amp;quot;http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvdu23%2Ffan-synth-test-with-lamp-switching&amp;amp;amp;show_comments=true&amp;amp;amp;auto_play=false&amp;amp;amp;color=18400c&amp;quot;&amp;gt;&amp;lt;/param&amp;gt; &amp;lt;param name=&amp;quot;allowscriptaccess&amp;quot; value=&amp;quot;always&amp;quot;&amp;gt;&amp;lt;/param&amp;gt; &amp;lt;embed allowscriptaccess=&amp;quot;always&amp;quot; height=&amp;quot;81&amp;quot; src=&amp;quot;http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fvdu23%2Ffan-synth-test-with-lamp-switching&amp;amp;amp;show_comments=true&amp;amp;amp;auto_play=false&amp;amp;amp;color=18400c&amp;quot; type=&amp;quot;application/x-shockwave-flash&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;/embed&amp;gt; &amp;lt;/object&amp;gt;   &amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;http://soundcloud.com/vdu23/fan-synth-test-with-lamp-switching&amp;quot;&amp;gt;Fan synth test with lamp switching&amp;lt;/a&amp;gt;  by  &amp;lt;a href=&amp;quot;http://soundcloud.com/vdu23&amp;quot;&amp;gt;vdu23&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is what it physically looks like - see Gijs site for the schematic diagram (the section on the right).&lt;br /&gt;
&lt;br /&gt;
[[Image:Fan oscillator on breadboard.jpg|600px]]&lt;br /&gt;
&lt;br /&gt;
That's not quite true, the fan itself is connected to a 10K pot to control it's speed.&lt;br /&gt;
&lt;br /&gt;
The next step is the build this into a half-way decent instrument and perhaps add a light sequencer to allow you to chop up the sound.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[http://www.jaycar.co.nz/productView.asp?ID=ZD1950&amp;amp;CATID=33&amp;amp;form=CAT&amp;amp;SUBCATID=245 IR Phototransistor]&lt;br /&gt;
*[[Wikipedia:555_timer_IC|555 timer]]&lt;br /&gt;
*[http://home.cogeco.ca/~rpaisley4/LM555.html Extensive LM555 oscillator circuits]&lt;br /&gt;
*[http://www.jaycar.co.nz/products_uploaded/ZD1948.pdf datasheet for the photodiode]&lt;br /&gt;
*[http://chiphacker.com/questions/1485/sensing-light-and-outputing-voltage-suitable-for-audio/1493#1493 Chiphacker question and answers]&lt;br /&gt;
*[http://delicious.com/robmint/electronics Datasheets and links]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	<entry>
		<id>http://www.mintmedia.co.nz/Juicy_Threes_brake_pad_service</id>
		<title>Juicy Threes brake pad service</title>
		<link rel="alternate" type="text/html" href="http://www.mintmedia.co.nz/Juicy_Threes_brake_pad_service"/>
				<updated>2010-01-15T00:27:13Z</updated>
		
		<summary type="html">&lt;p&gt;Rob:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are hydraulic disc brakes and it's tricky to replace the pads. The system uses a non-standard bleed nipple which requires you to buy a special kit. I didn't want to go to this trouble, so here is how I replaced the pads with minimum fuss.&lt;br /&gt;
&lt;br /&gt;
Firstly don't remove the bake calliper from the frame, just remove the wheel and sit the bike upside down. Don't touch the brake lever at any time during the work, other wise expect to spend an hour or so pushing the brake piston back into the cylinder.&lt;br /&gt;
&lt;br /&gt;
[[Image:Juicy Threes old pads rear view.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
Push a small flat head screw driver between the outside of each pad - the side that does not touch the disc. There should be a small amount of play where the pad backing plate can move. Lever the brake piston to push it back into it's cylinder - use a medium amount of force so as not to damage the piston.&lt;br /&gt;
&lt;br /&gt;
Do this on both sides so both pistons give you clearance to remove the old brake pad assembly. The two pads are installed with a spring clip that separates them from the disc when the pistons are retracted, when not under braking.&lt;br /&gt;
&lt;br /&gt;
You should be able to remove each pad one at a time, then the spring.&lt;br /&gt;
&lt;br /&gt;
[[Image:Juicy Threes old pads disassembly.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
At this point you should check you piston clearance to make sure the pistons are retracted. Be very careful not to touch the brake lever when the brake is in this state.&lt;br /&gt;
&lt;br /&gt;
[[Image:Juicy Threes rear view no pads.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
Remove the new brake pads from the packaging and remove the protective cardboard between the pads. Holding the pads and spring together push them into the brake calliper - making sure you have them the right way around.&lt;br /&gt;
&lt;br /&gt;
I helps if you remove one of the pads to let the spring and the other side fit more easily. You can then use the small screwdriver to bend the spring to let you fit the second pad behind it. Each pad will click into the calliper fitting with it's two ''ears''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Juicy Threes rear view new pads.jpg|500px]]&lt;/div&gt;</summary>
		<author><name>Rob</name></author>	</entry>

	</feed>
