(0)

Cart.

Qty. Item Subtotal
Total $0.00
(Close)

Bus
Projects

GF, 7 Ltl. Miller St
Brunswick East,
VIC 3057 AUS

Opening Hours

Wed–Fri 12–5pm
Sat 12–4pm

FB, TW, IG.

Engages,

Archie Barry Pen running out, trundling smudge

Opening: Saturday 9 November, 3pm

Archie Barry will present a thread of curated readings from their diary entries written between 1999 and 2019, laced together with excerpts of affect theory, linguistics and existential philosophy. Polyvocal and correlative, the presentation searches for ramified language that could function (or dysfunction) to touch the perpetual flux of personhood.

WRITING & CONCEPTS is a lecture and publication series exploring the insights that practitioners have in to their own creative and cultural practices, and provides an opportunity for them to discuss and publish these insights in a public forum. Contributors include practitioners for whom the written form is their primary professional output and practitioners whose work manifests as exhibitions or events within the domain of contemporary art.

This is a free lecture, bookings are essential: Book here

ARCHIE BARRY (born 1990, Sydney) is an artist working in Melbourne on unceded Wurundjeri/Birrarung land. Their performance work has been recently exhibited at The Australian Centre for Contemporary Art, The Museum of Contemporary Art, Buxton Contemporary, Artspace and Sydney Contemporary Art Fair.

They have been in panel discussions, given readings and performance lectures at Parsons and the New School (New York), the National Gallery of Victoria, the Centre for Contemporary Photography, Monash University Museum of Art, Testing Grounds and Melbourne Art Fair.

Their writing has been published in Art + Australia and Archer Magazine. Recently they co-authored ‘Clear Expectations: Guidelines for institutions, galleries and curators working with trans, non-binary and gender diverse artists’ with artist Spence Messih.

They are currently a sessional teacher at the Victorian College of the Arts, the University of Melbourne.

Related,

Kirby CMS Debugger
Whoops \ Exception \ ErrorException (E_NOTICE)
fwrite(): Write of 275 bytes failed with errno=28 No space left on device Whoops\Exception\ErrorException thrown with message "fwrite(): Write of 275 bytes failed with errno=28 No space left on device" Stacktrace: #3 Whoops\Exception\ErrorException in /var/www/bus-projects/kirby/src/Session/FileSessionStore.php:288 #2 fwrite in /var/www/bus-projects/kirby/src/Session/FileSessionStore.php:288 #1 Kirby\Session\FileSessionStore:set in /var/www/bus-projects/kirby/src/Session/Session.php:377 #0 Kirby\Session\Session:commit in [internal]:0
Stack frames (4)
3
Whoops\Exception\ErrorException
/kirby/src/Session/FileSessionStore.php288
2
fwrite
/kirby/src/Session/FileSessionStore.php288
1
Kirby\Session\FileSessionStore set
/kirby/src/Session/Session.php377
0
Kirby\Session\Session commit
[internal]0
/var/www/bus-projects/kirby/src/Session/FileSessionStore.php
                'fallback'  => 'Cannot write to session "' . $name . '", because it is not locked',
                'translate' => false,
                'httpCode'  => 500
            ]);
        }
 
        // delete all file contents first
        if (rewind($handle) !== true || ftruncate($handle, 0) !== true) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
 
        // write the new contents
        $result = fwrite($handle, $data);
        if (!is_int($result) || $result === 0) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
    }
 
    /**
     * Deletes the given session
     *
     * Needs to throw an Exception on error.
     *
     * @param int $expiryTime Timestamp
     * @param string $id Session ID
     * @return void
/var/www/bus-projects/kirby/src/Session/FileSessionStore.php
                'fallback'  => 'Cannot write to session "' . $name . '", because it is not locked',
                'translate' => false,
                'httpCode'  => 500
            ]);
        }
 
        // delete all file contents first
        if (rewind($handle) !== true || ftruncate($handle, 0) !== true) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
 
        // write the new contents
        $result = fwrite($handle, $data);
        if (!is_int($result) || $result === 0) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
    }
 
    /**
     * Deletes the given session
     *
     * Needs to throw an Exception on error.
     *
     * @param int $expiryTime Timestamp
     * @param string $id Session ID
     * @return void
/var/www/bus-projects/kirby/src/Session/Session.php
                'newSession' => $this->newSession
            ];
        } else {
            $data = [
                'startTime'    => $this->startTime(),
                'expiryTime'   => $this->expiryTime(),
                'duration'     => $this->duration(),
                'timeout'      => $this->timeout(),
                'lastActivity' => $this->lastActivity,
                'renewable'    => $this->renewable(),
                'data'         => $this->data()->get()
            ];
        }
 
        // encode the data and attach an HMAC
        $data = serialize($data);
        $data = hash_hmac('sha256', $data, $this->tokenKey) . "\n" . $data;
 
        // store the data
        $this->sessions->store()->set($this->tokenExpiry, $this->tokenId, $data);
        $this->sessions->store()->unlock($this->tokenExpiry, $this->tokenId);
        $this->writeMode = false;
    }
 
    /**
     * Entirely destroys the session
     *
     * @return void
     */
    public function destroy()
    {
        // no need to destroy new or destroyed sessions
        if ($this->tokenExpiry === null || $this->destroyed === true) {
            return;
        }
 
        // remove session file
        $this->sessions->store()->destroy($this->tokenExpiry, $this->tokenId);
        $this->destroyed           = true;
        $this->writeMode           = false;
[internal]

Environment & details:

empty
empty
empty
Key Value
kirby_session 765967a9e694cf4c1ee63c404614647b8c33adb8+1731544092.84e644a6d6ad7c717068.252bcb3f181463a798a03251e761b1a1bafa6f54b6324aee89d0d1841778fe86
empty
Key Value
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI www.busprojects.org.au
REDIRECT_STATUS 200
HTTP_AUTHORIZATION
HTTPS on
SSL_TLS_SNI www.busprojects.org.au
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_IF_MODIFIED_SINCE Sat, 18 May 2024 00:56:10 GMT
HTTP_ACCEPT_ENCODING br,gzip
HTTP_HOST www.busprojects.org.au
HTTP_CONNECTION Keep-Alive
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE <address>Apache/2.4.59 (Debian) Server at www.busprojects.org.au Port 443</address>
SERVER_SOFTWARE Apache/2.4.59 (Debian)
SERVER_NAME www.busprojects.org.au
SERVER_ADDR 178.128.118.106
SERVER_PORT 443
REMOTE_ADDR 3.233.242.216
DOCUMENT_ROOT /var/www/bus-projects
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/bus-projects
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/bus-projects/index.php
REMOTE_PORT 40768
REDIRECT_URL /program/pen-running-out-trundling-smudge
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /program/pen-running-out-trundling-smudge
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1731536892.2459
REQUEST_TIME 1731536892
empty
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\CallbackHandler