(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.

Exhibits,

Dan Peter Petersen Ready To Ship

Opening: Opening Wednesday 30 August, 6-8pm Dates: 30 August – 23 September 2017

Dan Peter Petersen exhibits locally in Melbourne and is currently undertaking his Master of Fine Arts at the Victorian College of the Arts, Melbourne. Recent exhibitions include “On hubris, irony and schadenfreude” at Lon Gallery (2016), “Excessive Convenience” at TCB Art Inc (2015) and “No More Drama” at Seventh Gallery (2015).

“Ready To Ship”, is an exhibition of receptacles, containers, boxes, cartons, packages and envelopes. Each of which contain a certain personal collection, such as ‘all the hair from haircuts given at a past address, or all transaction receipts from the 2010 to 2015’.

Each of the pieces (containers) in the exhibition use a certain tool as plinth, such as scales and hand trolleys, referencing devices that aid in the movement or comprehension of objects. These items demonstrate their own ‘readiness’ to be transported, inherently mobile by design.

The exhibition is a display of the intersection between my ever-present compulsions to collect and archive and my constant inability to feel secure enough to ‘unpack’. The precise cataloguing of specific collections reduces the mental and physical weight of many years of accumulation.

The exhibition presents some of the absurdities of sentimentality in a positive and constructive light, questioning what it is to assign value to banal objects. The austerity and practicality of packaging devices is offset by the fundamentally impractical and romantic nature of amassing ‘useless’ items.

Rather than the obvious and tried method of discarding all of one’s material possessions, as artists have done triumphantly in the past (Baldessari’s cremating of all of his paintings between 1953-1966/ Michael Landy systematically destroying absolutely everything he owned) I wish to present a method of efficient organization and compartmentalization, coolly and calmly “hanging on”.

Documentation by Christo Crocker.

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 b195100f5312425223d4d9e04c6ddfbc197cb4db+1731484613.d7b3011d187673eb9c63.17b1bb178eaffa47e7b412dc16092ab3fcf5ebd5d576e0e4ab80f89ba8aedbe6
empty
Key Value
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI busprojects.org.au
REDIRECT_STATUS 200
HTTP_AUTHORIZATION
HTTPS on
SSL_TLS_SNI 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 Mon, 12 Aug 2024 14:24:25 GMT
HTTP_ACCEPT_ENCODING br,gzip
HTTP_HOST 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 busprojects.org.au Port 443</address>
SERVER_SOFTWARE Apache/2.4.59 (Debian)
SERVER_NAME busprojects.org.au
SERVER_ADDR 178.128.118.106
SERVER_PORT 443
REMOTE_ADDR 34.239.153.44
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 32802
REDIRECT_URL /program/ready-to-ship
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /program/ready-to-ship
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1731477413.2937
REQUEST_TIME 1731477413
empty
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\CallbackHandler