<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:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Wages for Art(work)</title>
	<link>https://wagesforart.com</link>
	<description>Wages for Art(work)</description>
	<pubDate>Sat, 05 Jul 2025 21:21:08 +0000</pubDate>
	<generator>https://wagesforart.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Nav copy</title>
				
		<link>https://wagesforart.com/Nav-copy</link>

		<pubDate>Sat, 05 Jul 2025 21:21:08 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/Nav-copy</guid>

		<description>// create canvas element and append it to document body
var canvas = document.createElement('canvas');
document.body.appendChild(canvas);

// some hotfixes... ( ≖_≖)
document.body.style.margin = 0;
canvas.style.position = 'fixed';

// get canvas 2D context and set him correct size
var ctx = canvas.getContext('2d');
resize();

// last known position
var pos = { x: 0, y: 0 };
var isDrawing = false;

window.addEventListener('resize', resize);
document.addEventListener('mousedown', startDrawing);
document.addEventListener('mousemove', draw);
document.addEventListener('mouseup', endDrawing);
document.addEventListener('touchstart', startDrawing);
document.addEventListener('touchmove', draw);
document.addEventListener('touchend', endDrawing);

// new position from mouse event
function setPosition(e) {
  pos.x = e.clientX &#124;&#124; e.touches[0].clientX;
  pos.y = e.clientY &#124;&#124; e.touches[0].clientY;
}

// resize canvas
function resize() {
  ctx.canvas.width = window.innerWidth;
  ctx.canvas.height = window.innerHeight;
}

function startDrawing(e) {
  setPosition(e);
  isDrawing = true;
}

function draw(e) {
  if (!isDrawing) return;

  ctx.beginPath(); // begin

  ctx.lineWidth = 20;
  ctx.lineJoin = 'round';
  ctx.lineCap = 'round';
  ctx.shadowBlur = 20;

  // color-changing effect
  var hue = Math.abs(Math.sin(Date.now() / 2000)) * 360;
  var color1 = '#6117FF';
  var color2 = '#F0E9FF';
  var gradient = ctx.createLinearGradient(0, 0, ctx.canvas.width, ctx.canvas.height);
  gradient.addColorStop(0, color1);
  gradient.addColorStop(0.5, color2);
  gradient.addColorStop(1, color1);
  ctx.strokeStyle = gradient;

  // set shadow color to match line color
  var shadowGradient = ctx.createLinearGradient(0, 0, ctx.canvas.width, ctx.canvas.height);
  shadowGradient.addColorStop(0, 'rgba(0, 0, 0, 0.5)');
  shadowGradient.addColorStop(0.5, 'rgba(0, 0, 0, 0)');
  shadowGradient.addColorStop(1, 'rgba(0, 0, 0, 0.5)');
  ctx.shadowColor = shadowGradient;

  ctx.moveTo(pos.x, pos.y); // from
  setPosition(e);
  ctx.lineTo(pos.x, pos.y); // to

  ctx.stroke(); // draw it!
}

function endDrawing(e) {
  isDrawing = false;
}








	Wages for Art(work)
    
    
    is a participatory art project by artist and tech worker Quinlan Maggio. 
During the hours that the artist is working a job, participants are invited to book an hour-long session to ‘work’ alongside them. Participants can use that hour to make art, write, sleep, take a walk—anything that is creatively generative for them. Participants are then compensated for this time at the rate of
  $40
  
    
      USD
      EUR
      JPY
      GBP
      AUD
      CAD
      CHF
      CNY
      HKD
      NZD
      SEK
      KRW
      SGD
      NOK
      MXN
      INR
      RUB
      ZAR
      TRY
      BRL
      TWD
      DKK
      PLN
      THB
      IDR
      HUF
      CZK
  
      CLP
      PHP
      AED
      COP
      SAR
      MYR
      RON
      EGP
      NGN
      PKR
      IQD
      QAR
      KES
      BDT
      OMR
      MAD
      TND
      VEF
      LBP
    
  
an hour, 50% of Quinlan’s hourly wage.
  
  
function updateRate() {
  var rate = document.getElementById("rate");
  var unit = document.getElementById("unit");
  var currency = document.getElementById("currency").value;
  switch(currency) {case "USD":
      rate.innerHTML = "$40";
      break;
    case "EUR":
      rate.innerHTML = "€36.93";
      break;
    case "JPY":
      rate.innerHTML = "¥5,922";
      break;
    case "GBP":
      rate.innerHTML = "£30.98";
      break;
    case "CHF":
      rate.innerHTML = "CHF35.23";
      break;
    case "AUD":
      rate.innerHTML = "AU$63.49";
      break;
    case "CAD":
      rate.innerHTML = "CA$57.50";
      break;
    case "HKD":
      rate.innerHTML = "HK$310.83";
      break;
    case "NZD":
      rate.innerHTML = "NZ$70.04";
      break;
    case "SEK":
      rate.innerHTML = "403.73 kr";
      break;
    case "KRW":
      rate.innerHTML = "₩59,220";
      break;
    case "NOK":
      rate.innerHTML = "427.80 kr";
      break;
    case "MXN":
      rate.innerHTML = "MX$813.81";
      break;
    case "SGD":
      rate.innerHTML = "S$53.24";
      break;
    case "TRY":
      rate.innerHTML = "₺1,095";
      break;
    case "INR":
      rate.innerHTML = "₹3,486";
      break;
    case "RUB":
      rate.innerHTML = "₽3,776";
      break;
    case "ZAR":
      rate.innerHTML = "R730.04";
      break;
    case "BRL":
      rate.innerHTML = "R$206.07";
      break;
    case "CNY":
      rate.innerHTML = "¥289.37";
      break;
    case "AED":
      rate.innerHTML = "د.إ146.91";
      break;
    case "ARS":
      rate.innerHTML = "$8,000";
      break;
    case "COP":
      rate.innerHTML = "$160,000";
      break;
    case "CLP":
      rate.innerHTML = "$32,000";
      break;
    case "CZK":
      rate.innerHTML = "880 Kč";
      break;
    case "DKK":
      rate.innerHTML = "276 kr";
      break;
    case "EGP":
      rate.innerHTML = "E£1,200";
      break;
    case "HUF":
      rate.innerHTML = "14,000 Ft";
      break;
    case "IDR":
      rate.innerHTML = "Rp600,000";
      break;
   
    case "KES":
      rate.innerHTML = "Ksh4,400";
      break;
    case "MYR":
      rate.innerHTML = "RM180";
      break;
    case "NGN":
      rate.innerHTML = "₦18,400";
      break;
    case "PHP":
      rate.innerHTML = "₱2,200";
      break;
    case "PKR":
      rate.innerHTML = "₨11,214";
      break;
  }
}






Participate by booking a session here

&#60;img width="342" height="172" width_o="342" height_o="172" data-src="https://freight.cargo.site/t/original/i/d71b2751e06174bf03754e499219d06528d179a69689eda5211e0d5cae66a6ca/Screen-Shot-2023-04-10-at-4.39.08-PM.png" data-mid="235437328" border="0"  src="https://freight.cargo.site/w/342/i/d71b2751e06174bf03754e499219d06528d179a69689eda5211e0d5cae66a6ca/Screen-Shot-2023-04-10-at-4.39.08-PM.png" /&#62;
	

Intro💡
About the Project 🔍
Participate 💵
The Archive 📷
FAQ❓
News ☕
Contact ✉️

</description>
		
	</item>
		
		
	<item>
		<title>session form</title>
				
		<link>https://wagesforart.com/session-form</link>

		<pubDate>Fri, 09 Jun 2023 00:05:07 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/session-form</guid>

		<description>
    
    
    var ifr = document.getElementById("JotFormIFrame-231587771675066");
    if (ifr) {
      var src = ifr.src;
      var iframeParams = [];
      if (window.location.href &#38;&#38; window.location.href.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(window.location.href.substr(window.location.href.indexOf("?") + 1).split('&#38;'));
      }
      if (src &#38;&#38; src.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(src.substr(src.indexOf("?") + 1).split("&#38;"));
        src = src.substr(0, src.indexOf("?"))
      }
      iframeParams.push("isIframeEmbed=1");
      ifr.src = src + "?" + iframeParams.join('&#38;');
    }
    window.handleIFrameMessage = function(e) {
      if (typeof e.data === 'object') { return; }
      var args = e.data.split(":");
      if (args.length &#62; 2) { iframe = document.getElementById("JotFormIFrame-" + args[(args.length - 1)]); } else { iframe = document.getElementById("JotFormIFrame"); }
      if (!iframe) { return; }
      switch (args[0]) {
        case "scrollIntoView":
          iframe.scrollIntoView();
          break;
        case "setHeight":
          iframe.style.height = args[1] + "px";
          if (!isNaN(args[1]) &#38;&#38; parseInt(iframe.style.minHeight) &#62; parseInt(args[1])) {
            iframe.style.minHeight = args[1] + "px";
          }
          break;
        case "collapseErrorPage":
          if (iframe.clientHeight &#62; window.innerHeight) {
            iframe.style.height = window.innerHeight + "px";
          }
          break;
        case "reloadPage":
          window.location.reload();
          break;
        case "loadScript":
          if( !window.isPermitted(e.origin, ['jotform.com', 'jotform.pro']) ) { break; }
          var src = args[1];
          if (args.length &#62; 3) {
              src = args[1] + ':' + args[2];
          }
          var script = document.createElement('script');
          script.src = src;
          script.type = 'text/javascript';
          document.body.appendChild(script);
          break;
        case "exitFullscreen":
          if      (window.document.exitFullscreen)        window.document.exitFullscreen();
          else if (window.document.mozCancelFullScreen)   window.document.mozCancelFullScreen();
          else if (window.document.mozCancelFullscreen)   window.document.mozCancelFullScreen();
          else if (window.document.webkitExitFullscreen)  window.document.webkitExitFullscreen();
          else if (window.document.msExitFullscreen)      window.document.msExitFullscreen();
          break;
      }
      var isJotForm = (e.origin.indexOf("jotform") &#62; -1) ? true : false;
      if(isJotForm &#38;&#38; "contentWindow" in iframe &#38;&#38; "postMessage" in iframe.contentWindow) {
        var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)};
        iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*");
      }
    };
    window.isPermitted = function(originUrl, whitelisted_domains) {
      var url = document.createElement('a');
      url.href = originUrl;
      var hostname = url.hostname;
      var result = false;
      if( typeof hostname !== 'undefined' ) {
        whitelisted_domains.forEach(function(element) {
            if( hostname.slice((-1 * element.length - 1)) === '.'.concat(element) &#124;&#124;  hostname === element ) {
                result = true;
            }
        });
        return result;
      }
    };
    if (window.addEventListener) {
      window.addEventListener("message", handleIFrameMessage, false);
    } else if (window.attachEvent) {
      window.attachEvent("onmessage", handleIFrameMessage);
    }
    </description>
		
	</item>
		
		
	<item>
		<title>session form 2</title>
				
		<link>https://wagesforart.com/session-form-2</link>

		<pubDate>Mon, 13 Jan 2025 17:55:26 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/session-form-2</guid>

		<description>
    
    
    
    
    
    var ifr = document.getElementById("JotFormIFrame-231587771675066");
    if (ifr) {
      var src = ifr.src;
      var iframeParams = [];
      if (window.location.href &#38;&#38; window.location.href.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(window.location.href.substr(window.location.href.indexOf("?") + 1).split('&#38;'));
      }
      if (src &#38;&#38; src.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(src.substr(src.indexOf("?") + 1).split("&#38;"));
        src = src.substr(0, src.indexOf("?"))
      }
      iframeParams.push("isIframeEmbed=1");
      ifr.src = src + "?" + iframeParams.join('&#38;');
    }
    window.handleIFrameMessage = function(e) {
      if (typeof e.data === 'object') { return; }
      var args = e.data.split(":");
      if (args.length &#62; 2) { iframe = document.getElementById("JotFormIFrame-" + args[(args.length - 1)]); } else { iframe = document.getElementById("JotFormIFrame"); }
      if (!iframe) { return; }
      switch (args[0]) {
        case "scrollIntoView":
          iframe.scrollIntoView();
          break;
        case "setHeight":
          iframe.style.height = args[1] + "px";
          if (!isNaN(args[1]) &#38;&#38; parseInt(iframe.style.minHeight) &#62; parseInt(args[1])) {
            iframe.style.minHeight = args[1] + "px";
          }
          break;
        case "collapseErrorPage":
          if (iframe.clientHeight &#62; window.innerHeight) {
            iframe.style.height = window.innerHeight + "px";
          }
          break;
        case "reloadPage":
          window.location.reload();
          break;
        case "loadScript":
          if( !window.isPermitted(e.origin, ['jotform.com', 'jotform.pro']) ) { break; }
          var src = args[1];
          if (args.length &#62; 3) {
              src = args[1] + ':' + args[2];
          }
          var script = document.createElement('script');
          script.src = src;
          script.type = 'text/javascript';
          document.body.appendChild(script);
          break;
        case "exitFullscreen":
          if      (window.document.exitFullscreen)        window.document.exitFullscreen();
          else if (window.document.mozCancelFullScreen)   window.document.mozCancelFullScreen();
          else if (window.document.mozCancelFullscreen)   window.document.mozCancelFullScreen();
          else if (window.document.webkitExitFullscreen)  window.document.webkitExitFullscreen();
          else if (window.document.msExitFullscreen)      window.document.msExitFullscreen();
          break;
      }
      var isJotForm = (e.origin.indexOf("jotform") &#62; -1) ? true : false;
      if(isJotForm &#38;&#38; "contentWindow" in iframe &#38;&#38; "postMessage" in iframe.contentWindow) {
        var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)};
        iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*");
      }
    };
    window.isPermitted = function(originUrl, whitelisted_domains) {
      var url = document.createElement('a');
      url.href = originUrl;
      var hostname = url.hostname;
      var result = false;
      if( typeof hostname !== 'undefined' ) {
        whitelisted_domains.forEach(function(element) {
            if( hostname.slice((-1 * element.length - 1)) === '.'.concat(element) &#124;&#124;  hostname === element ) {
                result = true;
            }
        });
        return result;
      }
    };
    if (window.addEventListener) {
      window.addEventListener("message", handleIFrameMessage, false);
    } else if (window.attachEvent) {
      window.attachEvent("onmessage", handleIFrameMessage);
    }
    </description>
		
	</item>
		
		
	<item>
		<title>thank you</title>
				
		<link>https://wagesforart.com/thank-you</link>

		<pubDate>Fri, 09 Jun 2023 00:16:45 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/thank-you</guid>

		<description>Thank you for your participation!

Please give 24 hours for payment to arrive via Paypal. Contact wagesforart@gmail.com with any questions or concerns.
Click here to book another session or visit the project archive here.
</description>
		
	</item>
		
		
	<item>
		<title>payscale</title>
				
		<link>https://wagesforart.com/payscale</link>

		<pubDate>Fri, 09 Jun 2023 00:23:23 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/payscale</guid>

		<description>Payscale informationWages for Art(work) is an art project by Quinlan Maggio, a white tech worker living in Brooklyn, NY on occupied Lenape land. This project is intended as a small form of wealth redistribution.
The default payment per session is $40, half of the artist’s hourly wage. Participants who self-identify as from a marginalized group are eligible to receive $80 total, the full artist’s wage. Participants can also opt to donate their session payment to relief efforts in Gaza via the Palestine Children’s Relief Fund.
Please choose the option that feels best for you and your participation in the project.</description>
		
	</item>
		
		
	<item>
		<title>Residency FAQs</title>
				
		<link>https://wagesforart.com/Residency-FAQs</link>

		<pubDate>Sun, 17 Nov 2024 18:19:41 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/Residency-FAQs</guid>

		<description>2025 Residency FAQs
	What is the time commitment and requirements for this residency?The time commitment for this residency is 8 hours of coworking sessions total over the course of 2 weeks. During our sessions, you are invited to do something creatively generative for you while I work at my day job. At the beginning of each session, you and I will have a quick check-in over voice/video call or text chat to kick off the coworking session. At the end of each session, you will be asked to upload a digital snapshot of your creative time. At the end of the week, you will send one physical artifact from your creative time to be collected into the project’s new physical archive. In exchange, I will send you $500 total compensation, roughly $62.50/hour for your time and effort.What are the exact dates of each residency?The available residency periods are as follows:January 5th - 18thJanuary 19th - 31stFebruary 2nd - 15thFebruary 16th -28thMarch 2nd - 15thMarch 16th - 29thI work during most of the week. How will the coworking sessions be scheduled?Before the start of the residency, I will send a scheduling calendar with many options for 1-2 hour sessions throughout the 2 week period. Ideally, our sessions would take place between Monday-Friday, 10am-6pm EST. However, I am flexible and can work with you if evening or weekend sessions are needed.What can the physical artifact be? How will I get it to you?The physical artifact can be a sketch, sheet music, a handwritten recipe, a usb, a feather, a rubbing, a wayward leaf found on a walk, anything that you feel represents your creative time spent. Please do not send finished artworks—remnants, artifacts, and/or documentation is preferred. A mailer kit for your physical artifact (size and weight limit TBD) will be sent to your location so that you can drop it off at USPS for no cost. If you live outside the U.S., we will work together to figure out the best shipping method at no cost to you.What will you do with the documentation from my creative time?The project’s archive is a vital part of Wages for Art(work). The digital documentation lives on the website (soon to be re-designed). The physical artifact you send will live in the archive's public collection and potentially be in future gallery shows in which you will be given credit and invited to participate in its curation.Why a residency? Will the previous model of Wages for Art(work) continue?The reason for a virtual residency is threefold: primarily, I wanted to try a model that lends to deeper and slightly more prolonged engagement with participants. Second, the residency program will run while I develop a new website for the original model of Wages for Art(work) that will allow other people to sponsor their own creative sessions. Lastly, I am calling it a residency so that participants can add it to their CVs.Is this residency open to the public?Priority is being given to past participants in the Wages for Art(work) project. If there are any slots available after the initial sign up period, I will post an open call for new participants. If you know someone that might be interested in participating, please have them send me an email in the meantime!
Please contact me at wagesforart@gmail.com with further questions or concerns about the residency program.

</description>
		
	</item>
		
		
	<item>
		<title>hours</title>
				
		<link>https://wagesforart.com/hours</link>

		<pubDate>Mon, 10 Apr 2023 20:24:15 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/hours</guid>

		<description>Hours

Wages for Art(work) is dependent on the artist’s working schedule. Below are general hours with some variation week to week. Please click here to see their hours in more depth and to book a Wages for Art(work) session.

	Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
	10am - 6pm
10am - 6pm10am - 6pm10am - 6pm10am - 2pm
Off
Off
</description>
		
	</item>
		
		
	<item>
		<title>intro</title>
				
		<link>https://wagesforart.com/intro</link>

		<pubDate>Sun, 02 Apr 2023 14:42:46 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/intro</guid>

		<description>IntroCreative time is time spent doing, thinking, moving in a way that brings something into the world. It’s often unstructured, open-ended time that does not have a predetermined outcome. The beauty of creative time is that even if goals are not met, or there are questions unanswered, it is never time wasted. Creative time is its own reward. 

People are not given enough creative time. Between the grind of work and social reproduction tasks of cooking, cleaning, childcare, laundry, rest, self care, and more, it is difficult to set aside dedicated time for creative pursuits. Wages for Art(work) is an experimental art project in which participants are compensated for an hour of creative time. The sessions take place during the artist’s working hours and are funded by half of the artist’s hourly wage. The name of this project is inspired by the 70s feminist movement Wages for Housework, which made the political argument that housework and other unpaid labor is a form of work and should be compensated as such. 

Since Covid-19, there has been movement towards compensating people for creative time, for example, the guaranteed income for artists program by Creatives Rebuild New York. As well, organizations such as W.A.G.E. and Get Artists Paid have provided resources, created industry baselines, and started conversations to ensure artists receive fair compensation. Wages for Art(work) takes a micro approach to address the issue of uncompensated creative labor. Unlike most artist grant programs, participation in the project has few strings attached; participants are only asked to share a snapshot of their creative time spent for the project’s digital archive.

Wages for Art(work) is an experiment. The goal of the project is to open up space for people to engage with creativity on their own terms. The future of the project is open as well, and will depend heavily on feedback from participants. Ultimately, this project seeks to leverage the artist’s labor power to give creative time back to people, one hour at a time.


</description>
		
	</item>
		
		
	<item>
		<title>about</title>
				
		<link>https://wagesforart.com/about</link>

		<pubDate>Mon, 10 Apr 2023 16:37:40 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/about</guid>

		<description>About the Project
Wages for Art(work) is an experimental art project in which participants are compensated for creative time. The project was created by Quinlan Maggio, an artist and tech worker based in Brooklyn, NY. Wages for Art(work) is primarily virtual, with the coworking sessions scheduled online and an archive of participant’s photos living on this website. The project launched on June 16th, 2023, and will run for one year. 

How to participate
Participating in Wages for Art(work) is a simple process: 

1. Sign up for a session here
2. Spend your designated hour in whatever creative way you choose
3. Snap a photo, video, or other form of documentation at the end of your session and upload it to the follow-up email4. Receive payment

Who can participate
Wages for Art(work) is open to anyone who wants to participate. Participants are generally compensated at the rate of $25/hour, half of the artist’s hourly wage. Participants from a marginalized group (self-identified) are eligible for an additional $25/hour upon completion of the session.Click here to see the artist’s working schedule 
and here to participate in the project.

</description>
		
	</item>
		
		
	<item>
		<title>participate</title>
				
		<link>https://wagesforart.com/participate</link>

		<pubDate>Mon, 10 Apr 2023 16:39:39 +0000</pubDate>

		<dc:creator>Wages for Art(work)</dc:creator>

		<guid isPermaLink="true">https://wagesforart.com/participate</guid>

		<description>Participate

To participate in a Wages for Art(work) session, select a date and time on the calendar below. Additional instructions will be sent to your email address. Please limit your bookings to once per week.






</description>
		
	</item>
		
	</channel>
</rss>