content stringlengths 4 1.04M | lang stringclasses 358 values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
Scriptname DGIntimidateAliasScript extends ReferenceAlias
; -----
; updated by Enai Siaion
; -----
Faction Property DGIntimidateFaction Auto
Weapon Property UnarmedWeapon Auto
Import Game
; -----
Event OnUpdate()
; this used to contain a condition that was always false, checking if the owning quest stage is < 15 AND > 20
; blanked out
EndEvent
; -----
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
Actor TheActor = GetActorRef()
Actor ThePlayer = GetPlayer()
If akAggressor == ThePlayer && ((GetOwningQuest() as DGIntimidateQuestScript).CR04Running == 0)
; only count the player
If (akSource as Weapon && akSource != UnarmedWeapon) || ((akSource as Spell) && (akSource as Spell).IsHostile()) || (akSource as Scroll)
; weapon hits but not actual punches
; hostile spells (including shouts)
; scrolls
ThePlayer.RemoveFromFaction(DGIntimidateFaction)
TheActor.RemoveFromFaction(DGIntimidateFaction)
TheActor.StopCombat()
TheActor.SendAssaultAlarm()
TheActor.StartCombat(ThePlayer)
GetOwningQuest().SetStage(150)
; note - enchantments are not checked because it is not possible to quickly distinguish between armor and weapon enchantments
EndIf
EndIf
EndEvent
; -----
Event OnEnterBleedout()
; well done rocky
GetOwningQuest().SetStage(15)
GetActorReference().EvaluatePackage() ; to make sure the forcegreet happens
EndEvent
; ----- | Papyrus | 4 | chesko256/Campfire | Scripts/Source/DGIntimidateAliasScript.psc | [
"MIT"
] |
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon\Mvc\Model;
use Phalcon\Mvc\ModelInterface;
/**
* Phalcon\Mvc\Model\ResultInterface
*
* All single objects passed as base objects to Resultsets must implement this interface
*/
interface ResultInterface
{
/**
* Sets the object's state
*/
public function setDirtyState(int dirtyState) -> <ModelInterface> | bool;
}
| Zephir | 4 | tidytrax/cphalcon | phalcon/Mvc/Model/ResultInterface.zep | [
"BSD-3-Clause"
] |
=pod
=head1 NAME
EVP_PKEY,
EVP_PKEY_new,
EVP_PKEY_up_ref,
EVP_PKEY_dup,
EVP_PKEY_free,
EVP_PKEY_new_raw_private_key_ex,
EVP_PKEY_new_raw_private_key,
EVP_PKEY_new_raw_public_key_ex,
EVP_PKEY_new_raw_public_key,
EVP_PKEY_new_CMAC_key,
EVP_PKEY_new_mac_key,
EVP_PKEY_get_raw_private_key,
EVP_PKEY_get_raw_public_key
- public/private key allocation and raw key handling functions
=head1 SYNOPSIS
#include <openssl/evp.h>
typedef evp_pkey_st EVP_PKEY;
EVP_PKEY *EVP_PKEY_new(void);
int EVP_PKEY_up_ref(EVP_PKEY *key);
EVP_PKEY *EVP_PKEY_dup(EVP_PKEY *key);
void EVP_PKEY_free(EVP_PKEY *key);
EVP_PKEY *EVP_PKEY_new_raw_private_key_ex(OSSL_LIB_CTX *libctx,
const char *keytype,
const char *propq,
const unsigned char *key,
size_t keylen);
EVP_PKEY *EVP_PKEY_new_raw_private_key(int type, ENGINE *e,
const unsigned char *key, size_t keylen);
EVP_PKEY *EVP_PKEY_new_raw_public_key_ex(OSSL_LIB_CTX *libctx,
const char *keytype,
const char *propq,
const unsigned char *key,
size_t keylen);
EVP_PKEY *EVP_PKEY_new_raw_public_key(int type, ENGINE *e,
const unsigned char *key, size_t keylen);
EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *e, const unsigned char *key,
int keylen);
int EVP_PKEY_get_raw_private_key(const EVP_PKEY *pkey, unsigned char *priv,
size_t *len);
int EVP_PKEY_get_raw_public_key(const EVP_PKEY *pkey, unsigned char *pub,
size_t *len);
The following function has been deprecated since OpenSSL 3.0, and can be
hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
see L<openssl_user_macros(7)>:
EVP_PKEY *EVP_PKEY_new_CMAC_key(ENGINE *e, const unsigned char *priv,
size_t len, const EVP_CIPHER *cipher);
=head1 DESCRIPTION
B<EVP_PKEY> is a generic structure to hold diverse types of asymmetric keys
(also known as "key pairs"), and can be used for diverse operations, like
signing, verifying signatures, key derivation, etc. The asymmetric keys
themselves are often refered to as the "internal key", and are handled by
backends, such as providers (through L<EVP_KEYMGMT(3)>) or B<ENGINE>s.
Conceptually, an B<EVP_PKEY> internal key may hold a private key, a public
key, or both (a keypair), and along with those, key parameters if the key type
requires them. The presence of these components determine what operations can
be made; for example, signing normally requires the presence of a private key,
and verifying normally requires the presence of a public key.
=for comment ED signature require both the private and public key...
B<EVP_PKEY> has also been used for MAC algorithm that were conceived as
producing signatures, although not being public key algorithms; "POLY1305",
"SIPHASH", "HMAC", "CMAC". This usage is considered legacy and is discouraged
in favor of the L<EVP_MAC(3)> API.
The EVP_PKEY_new() function allocates an empty B<EVP_PKEY> structure which is
used by OpenSSL to store public and private keys. The reference count is set to
B<1>.
EVP_PKEY_up_ref() increments the reference count of I<key>.
EVP_PKEY_dup() duplicates the I<key>. The I<key> must not be ENGINE based or
a raw key, otherwise the duplication will fail.
EVP_PKEY_free() decrements the reference count of I<key> and, if the reference
count is zero, frees it up. If I<key> is NULL, nothing is done.
EVP_PKEY_new_raw_private_key_ex() allocates a new B<EVP_PKEY>. Unless an
engine should be used for the key type, a provider for the key is found using
the library context I<libctx> and the property query string I<propq>. The
I<keytype> argument indicates what kind of key this is. The value should be a
string for a public key algorithm that supports raw private keys, i.e one of
"X25519", "ED25519", "X448" or "ED448". I<key> points to the raw private key
data for this B<EVP_PKEY> which should be of length I<keylen>. The length
should be appropriate for the type of the key. The public key data will be
automatically derived from the given private key data (if appropriate for the
algorithm type).
EVP_PKEY_new_raw_private_key() does the same as
EVP_PKEY_new_raw_private_key_ex() except that the default library context and
default property query are used instead. If I<e> is non-NULL then the new
B<EVP_PKEY> structure is associated with the engine I<e>. The I<type> argument
indicates what kind of key this is. The value should be a NID for a public key
algorithm that supports raw private keys, i.e. one of B<EVP_PKEY_X25519>,
B<EVP_PKEY_ED25519>, B<EVP_PKEY_X448> or B<EVP_PKEY_ED448>.
EVP_PKEY_new_raw_private_key_ex() and EVP_PKEY_new_raw_private_key() may also
be used with most MACs implemented as public key algorithms, so key types such
as "HMAC", "POLY1305", "SIPHASH", or their NID form B<EVP_PKEY_POLY1305>,
B<EVP_PKEY_SIPHASH>, B<EVP_PKEY_HMAC> are also accepted. This usage is,
as mentioned above, discouraged in favor of the L<EVP_MAC(3)> API.
EVP_PKEY_new_raw_public_key_ex() works in the same way as
EVP_PKEY_new_raw_private_key_ex() except that I<key> points to the raw
public key data. The B<EVP_PKEY> structure will be initialised without any
private key information. Algorithm types that support raw public keys are
"X25519", "ED25519", "X448" or "ED448".
EVP_PKEY_new_raw_public_key() works in the same way as
EVP_PKEY_new_raw_private_key() except that I<key> points to the raw public key
data. The B<EVP_PKEY> structure will be initialised without any private key
information. Algorithm types that support raw public keys are
B<EVP_PKEY_X25519>, B<EVP_PKEY_ED25519>, B<EVP_PKEY_X448> or B<EVP_PKEY_ED448>.
EVP_PKEY_new_mac_key() works in the same way as EVP_PKEY_new_raw_private_key().
New applications should use EVP_PKEY_new_raw_private_key() instead.
EVP_PKEY_get_raw_private_key() fills the buffer provided by I<priv> with raw
private key data. The size of the I<priv> buffer should be in I<*len> on entry
to the function, and on exit I<*len> is updated with the number of bytes
actually written. If the buffer I<priv> is NULL then I<*len> is populated with
the number of bytes required to hold the key. The calling application is
responsible for ensuring that the buffer is large enough to receive the private
key data. This function only works for algorithms that support raw private keys.
Currently this is: B<EVP_PKEY_HMAC>, B<EVP_PKEY_POLY1305>, B<EVP_PKEY_SIPHASH>,
B<EVP_PKEY_X25519>, B<EVP_PKEY_ED25519>, B<EVP_PKEY_X448> or B<EVP_PKEY_ED448>.
EVP_PKEY_get_raw_public_key() fills the buffer provided by I<pub> with raw
public key data. The size of the I<pub> buffer should be in I<*len> on entry
to the function, and on exit I<*len> is updated with the number of bytes
actually written. If the buffer I<pub> is NULL then I<*len> is populated with
the number of bytes required to hold the key. The calling application is
responsible for ensuring that the buffer is large enough to receive the public
key data. This function only works for algorithms that support raw public keys.
Currently this is: B<EVP_PKEY_X25519>, B<EVP_PKEY_ED25519>, B<EVP_PKEY_X448> or
B<EVP_PKEY_ED448>.
EVP_PKEY_new_CMAC_key() works in the same way as EVP_PKEY_new_raw_private_key()
except it is only for the B<EVP_PKEY_CMAC> algorithm type. In addition to the
raw private key data, it also takes a cipher algorithm to be used during
creation of a CMAC in the B<cipher> argument. The cipher should be a standard
encryption-only cipher. For example AEAD and XTS ciphers should not be used.
Applications should use the L<EVP_MAC(3)> API instead
and set the B<OSSL_MAC_PARAM_CIPHER> parameter on the B<EVP_MAC_CTX> object
with the name of the cipher being used.
=head1 NOTES
The B<EVP_PKEY> structure is used by various OpenSSL functions which require a
general private key without reference to any particular algorithm.
The structure returned by EVP_PKEY_new() is empty. To add a private or public
key to this empty structure use the appropriate functions described in
L<EVP_PKEY_set1_RSA(3)>, L<EVP_PKEY_set1_DSA(3)>, L<EVP_PKEY_set1_DH(3)> or
L<EVP_PKEY_set1_EC_KEY(3)>.
=head1 RETURN VALUES
EVP_PKEY_new(), EVP_PKEY_new_raw_private_key(), EVP_PKEY_new_raw_public_key(),
EVP_PKEY_new_CMAC_key() and EVP_PKEY_new_mac_key() return either the newly
allocated B<EVP_PKEY> structure or NULL if an error occurred.
EVP_PKEY_dup() returns the key duplicate or NULL if an error occurred.
EVP_PKEY_up_ref(), EVP_PKEY_get_raw_private_key() and
EVP_PKEY_get_raw_public_key() return 1 for success and 0 for failure.
=head1 SEE ALSO
L<EVP_PKEY_set1_RSA(3)>, L<EVP_PKEY_set1_DSA(3)>, L<EVP_PKEY_set1_DH(3)> or
L<EVP_PKEY_set1_EC_KEY(3)>
=head1 HISTORY
The
EVP_PKEY_new() and EVP_PKEY_free() functions exist in all versions of OpenSSL.
The EVP_PKEY_up_ref() function was added in OpenSSL 1.1.0.
The
EVP_PKEY_new_raw_private_key(), EVP_PKEY_new_raw_public_key(),
EVP_PKEY_new_CMAC_key(), EVP_PKEY_new_raw_private_key() and
EVP_PKEY_get_raw_public_key() functions were added in OpenSSL 1.1.1.
The EVP_PKEY_dup(), EVP_PKEY_new_raw_private_key_ex(), and
EVP_PKEY_new_raw_public_key_ex()
functions were added in OpenSSL 3.0.
The EVP_PKEY_new_CMAC_key() was deprecated in OpenSSL 3.0.
The documentation of B<EVP_PKEY> was amended in OpenSSL 3.0 to allow there to
be the private part of the keypair without the public part, where this was
previously implied to be disallowed.
=head1 COPYRIGHT
Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.
=cut
| Pod | 5 | lbbxsxlz/openssl | doc/man3/EVP_PKEY_new.pod | [
"Apache-2.0"
] |
<?php
/**
* @var string $name
* @var int $age
*/
echo "My name is $name and I am $age years old";
| HTML+PHP | 1 | tidytrax/cphalcon | tests/_data/fixtures/views/simple/params.phtml | [
"BSD-3-Clause"
] |
def _avro_ocf__help:
{ notes: "Supports reading Avro Object Container Format (OCF) files based on the 1.11.0 specification.
Capable of handling null, deflate, and snappy codecs for data compression.
Limitations:
- Schema does not support self-referential types, only built-in types.
- Decimal logical types are not supported for decoding, will just be treated as their primitive type",
links: [
{url: "https://avro.apache.org/docs/current/spec.html#Object+Container+Files"}
]
};
| JSONiq | 3 | bbhunter/fq | format/avro/avro_ocf.jq | [
"MIT"
] |
--TEST--
Bug #44703 (htmlspecialchars() does not detect bad character set argument)
--FILE--
<?php
var_dump(htmlspecialchars("<a href='test'>Test</a>", ENT_COMPAT, 1));
var_dump(htmlspecialchars("<a href='test'>Test</a>", ENT_COMPAT, 12));
var_dump(htmlspecialchars("<a href='test'>Test</a>", ENT_COMPAT, 125));
var_dump(htmlspecialchars("<a href='test'>Test</a>", ENT_COMPAT, 1252));
var_dump(htmlspecialchars("<a href='test'>Test</a>", ENT_COMPAT, 12526));
var_dump(htmlspecialchars("<>", ENT_COMPAT, 866));
var_dump(htmlspecialchars("<>", ENT_COMPAT, 8666));
var_dump(htmlspecialchars("<>", ENT_COMPAT, NULL));
var_dump(htmlspecialchars("<>", ENT_COMPAT, 'SJIS'));
var_dump(htmlspecialchars("<>", ENT_COMPAT, 'SjiS'));
var_dump(htmlspecialchars("<>", ENT_COMPAT, str_repeat('a', 100)));
?>
--EXPECTF--
Warning: htmlspecialchars(): Charset "1" is not supported, assuming UTF-8 in %s on line %d
string(35) "<a href='test'>Test</a>"
Warning: htmlspecialchars(): Charset "12" is not supported, assuming UTF-8 in %s on line %d
string(35) "<a href='test'>Test</a>"
Warning: htmlspecialchars(): Charset "125" is not supported, assuming UTF-8 in %s on line %d
string(35) "<a href='test'>Test</a>"
string(35) "<a href='test'>Test</a>"
Warning: htmlspecialchars(): Charset "12526" is not supported, assuming UTF-8 in %s on line %d
string(35) "<a href='test'>Test</a>"
string(8) "<>"
Warning: htmlspecialchars(): Charset "8666" is not supported, assuming UTF-8 in %s on line %d
string(8) "<>"
string(8) "<>"
string(8) "<>"
string(8) "<>"
Warning: htmlspecialchars(): Charset "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" is not supported, assuming UTF-8 in %s on line %d
string(8) "<>"
| PHP | 3 | NathanFreeman/php-src | ext/standard/tests/strings/bug44703.phpt | [
"PHP-3.01"
] |
package
public fun bar(/*0*/ x: kotlin.Int, /*1*/ y: kotlin.Int): kotlin.Unit
public fun foo1(/*0*/ i: (kotlin.Int) -> kotlin.Unit): kotlin.Unit
public fun foo2(/*0*/ i: (kotlin.Int, kotlin.Int) -> kotlin.Unit): kotlin.Unit
public fun foo3(/*0*/ i: (Pair) -> kotlin.Unit): kotlin.Unit
public final data class Pair {
public constructor Pair(/*0*/ a: kotlin.Int, /*1*/ b: kotlin.Int)
public final val a: kotlin.Int
public final val b: kotlin.Int
public final operator /*synthesized*/ fun component1(): kotlin.Int
public final operator /*synthesized*/ fun component2(): kotlin.Int
public final /*synthesized*/ fun copy(/*0*/ a: kotlin.Int = ..., /*1*/ b: kotlin.Int = ...): Pair
public open override /*1*/ /*synthesized*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*synthesized*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*synthesized*/ fun toString(): kotlin.String
}
| Text | 3 | qussarah/declare | compiler/testData/diagnostics/tests/shadowing/ShadowLambdaParameter.txt | [
"Apache-2.0"
] |
/++
Auto-generated Linux syscall constants for ARM
+/
module mir.linux.arch.arm.uapi._asm.unistd;
version(LDC) pragma(LDC_no_moduleinfo);
enum NR_restart_syscall = 0;
enum NR_exit = 1;
enum NR_fork = 2;
enum NR_read = 3;
enum NR_write = 4;
enum NR_open = 5;
enum NR_close = 6;
enum NR_creat = 8;
enum NR_link = 9;
enum NR_unlink = 10;
enum NR_execve = 11;
enum NR_chdir = 12;
enum NR_time = 13;
enum NR_mknod = 14;
enum NR_chmod = 15;
enum NR_lchown = 16;
enum NR_lseek = 19;
enum NR_getpid = 20;
enum NR_mount = 21;
enum NR_umount = 22;
enum NR_setuid = 23;
enum NR_getuid = 24;
enum NR_stime = 25;
enum NR_ptrace = 26;
enum NR_alarm = 27;
enum NR_pause = 29;
enum NR_utime = 30;
enum NR_access = 33;
enum NR_nice = 34;
enum NR_sync = 36;
enum NR_kill = 37;
enum NR_rename = 38;
enum NR_mkdir = 39;
enum NR_rmdir = 40;
enum NR_dup = 41;
enum NR_pipe = 42;
enum NR_times = 43;
enum NR_brk = 45;
enum NR_setgid = 46;
enum NR_getgid = 47;
enum NR_geteuid = 49;
enum NR_getegid = 50;
enum NR_acct = 51;
enum NR_umount2 = 52;
enum NR_ioctl = 54;
enum NR_fcntl = 55;
enum NR_setpgid = 57;
enum NR_umask = 60;
enum NR_chroot = 61;
enum NR_ustat = 62;
enum NR_dup2 = 63;
enum NR_getppid = 64;
enum NR_getpgrp = 65;
enum NR_setsid = 66;
enum NR_sigaction = 67;
enum NR_setreuid = 70;
enum NR_setregid = 71;
enum NR_sigsuspend = 72;
enum NR_sigpending = 73;
enum NR_sethostname = 74;
enum NR_setrlimit = 75;
enum NR_getrlimit = 76;
enum NR_getrusage = 77;
enum NR_gettimeofday = 78;
enum NR_settimeofday = 79;
enum NR_getgroups = 80;
enum NR_setgroups = 81;
enum NR_select = 82;
enum NR_symlink = 83;
enum NR_readlink = 85;
enum NR_uselib = 86;
enum NR_swapon = 87;
enum NR_reboot = 88;
enum NR_readdir = 89;
enum NR_mmap = 90;
enum NR_munmap = 91;
enum NR_truncate = 92;
enum NR_ftruncate = 93;
enum NR_fchmod = 94;
enum NR_fchown = 95;
enum NR_getpriority = 96;
enum NR_setpriority = 97;
enum NR_statfs = 99;
enum NR_fstatfs = 100;
enum NR_socketcall = 102;
enum NR_syslog = 103;
enum NR_setitimer = 104;
enum NR_getitimer = 105;
enum NR_stat = 106;
enum NR_lstat = 107;
enum NR_fstat = 108;
enum NR_vhangup = 111;
enum NR_syscall = 113;
enum NR_wait4 = 114;
enum NR_swapoff = 115;
enum NR_sysinfo = 116;
enum NR_ipc = 117;
enum NR_fsync = 118;
enum NR_sigreturn = 119;
enum NR_clone = 120;
enum NR_setdomainname = 121;
enum NR_uname = 122;
enum NR_adjtimex = 124;
enum NR_mprotect = 125;
enum NR_sigprocmask = 126;
enum NR_init_module = 128;
enum NR_delete_module = 129;
enum NR_quotactl = 131;
enum NR_getpgid = 132;
enum NR_fchdir = 133;
enum NR_bdflush = 134;
enum NR_sysfs = 135;
enum NR_personality = 136;
enum NR_setfsuid = 138;
enum NR_setfsgid = 139;
enum NR__llseek = 140;
enum NR_getdents = 141;
enum NR__newselect = 142;
enum NR_flock = 143;
enum NR_msync = 144;
enum NR_readv = 145;
enum NR_writev = 146;
enum NR_getsid = 147;
enum NR_fdatasync = 148;
enum NR__sysctl = 149;
enum NR_mlock = 150;
enum NR_munlock = 151;
enum NR_mlockall = 152;
enum NR_munlockall = 153;
enum NR_sched_setparam = 154;
enum NR_sched_getparam = 155;
enum NR_sched_setscheduler = 156;
enum NR_sched_getscheduler = 157;
enum NR_sched_yield = 158;
enum NR_sched_get_priority_max = 159;
enum NR_sched_get_priority_min = 160;
enum NR_sched_rr_get_interval = 161;
enum NR_nanosleep = 162;
enum NR_mremap = 163;
enum NR_setresuid = 164;
enum NR_getresuid = 165;
enum NR_poll = 168;
enum NR_nfsservctl = 169;
enum NR_setresgid = 170;
enum NR_getresgid = 171;
enum NR_prctl = 172;
enum NR_rt_sigreturn = 173;
enum NR_rt_sigaction = 174;
enum NR_rt_sigprocmask = 175;
enum NR_rt_sigpending = 176;
enum NR_rt_sigtimedwait = 177;
enum NR_rt_sigqueueinfo = 178;
enum NR_rt_sigsuspend = 179;
enum NR_pread64 = 180;
enum NR_pwrite64 = 181;
enum NR_chown = 182;
enum NR_getcwd = 183;
enum NR_capget = 184;
enum NR_capset = 185;
enum NR_sigaltstack = 186;
enum NR_sendfile = 187;
enum NR_vfork = 190;
enum NR_ugetrlimit = 191;
enum NR_mmap2 = 192;
enum NR_truncate64 = 193;
enum NR_ftruncate64 = 194;
enum NR_stat64 = 195;
enum NR_lstat64 = 196;
enum NR_fstat64 = 197;
enum NR_lchown32 = 198;
enum NR_getuid32 = 199;
enum NR_getgid32 = 200;
enum NR_geteuid32 = 201;
enum NR_getegid32 = 202;
enum NR_setreuid32 = 203;
enum NR_setregid32 = 204;
enum NR_getgroups32 = 205;
enum NR_setgroups32 = 206;
enum NR_fchown32 = 207;
enum NR_setresuid32 = 208;
enum NR_getresuid32 = 209;
enum NR_setresgid32 = 210;
enum NR_getresgid32 = 211;
enum NR_chown32 = 212;
enum NR_setuid32 = 213;
enum NR_setgid32 = 214;
enum NR_setfsuid32 = 215;
enum NR_setfsgid32 = 216;
enum NR_getdents64 = 217;
enum NR_pivot_root = 218;
enum NR_mincore = 219;
enum NR_madvise = 220;
enum NR_fcntl64 = 221;
enum NR_gettid = 224;
enum NR_readahead = 225;
enum NR_setxattr = 226;
enum NR_lsetxattr = 227;
enum NR_fsetxattr = 228;
enum NR_getxattr = 229;
enum NR_lgetxattr = 230;
enum NR_fgetxattr = 231;
enum NR_listxattr = 232;
enum NR_llistxattr = 233;
enum NR_flistxattr = 234;
enum NR_removexattr = 235;
enum NR_lremovexattr = 236;
enum NR_fremovexattr = 237;
enum NR_tkill = 238;
enum NR_sendfile64 = 239;
enum NR_futex = 240;
enum NR_sched_setaffinity = 241;
enum NR_sched_getaffinity = 242;
enum NR_io_setup = 243;
enum NR_io_destroy = 244;
enum NR_io_getevents = 245;
enum NR_io_submit = 246;
enum NR_io_cancel = 247;
enum NR_exit_group = 248;
enum NR_lookup_dcookie = 249;
enum NR_epoll_create = 250;
enum NR_epoll_ctl = 251;
enum NR_epoll_wait = 252;
enum NR_remap_file_pages = 253;
enum NR_set_tid_address = 256;
enum NR_timer_create = 257;
enum NR_timer_settime = 258;
enum NR_timer_gettime = 259;
enum NR_timer_getoverrun = 260;
enum NR_timer_delete = 261;
enum NR_clock_settime = 262;
enum NR_clock_gettime = 263;
enum NR_clock_getres = 264;
enum NR_clock_nanosleep = 265;
enum NR_statfs64 = 266;
enum NR_fstatfs64 = 267;
enum NR_tgkill = 268;
enum NR_utimes = 269;
enum NR_arm_fadvise64_64 = 270;
enum NR_pciconfig_iobase = 271;
enum NR_pciconfig_read = 272;
enum NR_pciconfig_write = 273;
enum NR_mq_open = 274;
enum NR_mq_unlink = 275;
enum NR_mq_timedsend = 276;
enum NR_mq_timedreceive = 277;
enum NR_mq_notify = 278;
enum NR_mq_getsetattr = 279;
enum NR_waitid = 280;
enum NR_socket = 281;
enum NR_bind = 282;
enum NR_connect = 283;
enum NR_listen = 284;
enum NR_accept = 285;
enum NR_getsockname = 286;
enum NR_getpeername = 287;
enum NR_socketpair = 288;
enum NR_send = 289;
enum NR_sendto = 290;
enum NR_recv = 291;
enum NR_recvfrom = 292;
enum NR_shutdown = 293;
enum NR_setsockopt = 294;
enum NR_getsockopt = 295;
enum NR_sendmsg = 296;
enum NR_recvmsg = 297;
enum NR_semop = 298;
enum NR_semget = 299;
enum NR_semctl = 300;
enum NR_msgsnd = 301;
enum NR_msgrcv = 302;
enum NR_msgget = 303;
enum NR_msgctl = 304;
enum NR_shmat = 305;
enum NR_shmdt = 306;
enum NR_shmget = 307;
enum NR_shmctl = 308;
enum NR_add_key = 309;
enum NR_request_key = 310;
enum NR_keyctl = 311;
enum NR_semtimedop = 312;
enum NR_vserver = 313;
enum NR_ioprio_set = 314;
enum NR_ioprio_get = 315;
enum NR_inotify_init = 316;
enum NR_inotify_add_watch = 317;
enum NR_inotify_rm_watch = 318;
enum NR_mbind = 319;
enum NR_get_mempolicy = 320;
enum NR_set_mempolicy = 321;
enum NR_openat = 322;
enum NR_mkdirat = 323;
enum NR_mknodat = 324;
enum NR_fchownat = 325;
enum NR_futimesat = 326;
enum NR_fstatat64 = 327;
enum NR_unlinkat = 328;
enum NR_renameat = 329;
enum NR_linkat = 330;
enum NR_symlinkat = 331;
enum NR_readlinkat = 332;
enum NR_fchmodat = 333;
enum NR_faccessat = 334;
enum NR_pselect6 = 335;
enum NR_ppoll = 336;
enum NR_unshare = 337;
enum NR_set_robust_list = 338;
enum NR_get_robust_list = 339;
enum NR_splice = 340;
enum NR_arm_sync_file_range = 341;
enum NR_tee = 342;
enum NR_vmsplice = 343;
enum NR_move_pages = 344;
enum NR_getcpu = 345;
enum NR_epoll_pwait = 346;
enum NR_kexec_load = 347;
enum NR_utimensat = 348;
enum NR_signalfd = 349;
enum NR_timerfd_create = 350;
enum NR_eventfd = 351;
enum NR_fallocate = 352;
enum NR_timerfd_settime = 353;
enum NR_timerfd_gettime = 354;
enum NR_signalfd4 = 355;
enum NR_eventfd2 = 356;
enum NR_epoll_create1 = 357;
enum NR_dup3 = 358;
enum NR_pipe2 = 359;
enum NR_inotify_init1 = 360;
enum NR_preadv = 361;
enum NR_pwritev = 362;
enum NR_rt_tgsigqueueinfo = 363;
enum NR_perf_event_open = 364;
enum NR_recvmmsg = 365;
enum NR_accept4 = 366;
enum NR_fanotify_init = 367;
enum NR_fanotify_mark = 368;
enum NR_prlimit64 = 369;
enum NR_name_to_handle_at = 370;
enum NR_open_by_handle_at = 371;
enum NR_clock_adjtime = 372;
enum NR_syncfs = 373;
enum NR_sendmmsg = 374;
enum NR_setns = 375;
enum NR_process_vm_readv = 376;
enum NR_process_vm_writev = 377;
enum NR_kcmp = 378;
enum NR_finit_module = 379;
enum NR_sched_setattr = 380;
enum NR_sched_getattr = 381;
enum NR_renameat2 = 382;
enum NR_seccomp = 383;
enum NR_getrandom = 384;
enum NR_memfd_create = 385;
enum NR_bpf = 386;
enum NR_execveat = 387;
enum NR_userfaultfd = 388;
enum NR_membarrier = 389;
enum NR_mlock2 = 390;
enum NR_copy_file_range = 391;
enum NR_preadv2 = 392;
enum NR_pwritev2 = 393;
enum NR_pkey_mprotect = 394;
enum NR_pkey_alloc = 395;
enum NR_pkey_free = 396;
enum NR_statx = 397;
enum NR_rseq = 398;
enum NR_io_pgetevents = 399;
enum NR_migrate_pages = 400;
enum NR_kexec_file_load = 401;
enum NR_clock_gettime64 = 403;
enum NR_clock_settime64 = 404;
enum NR_clock_adjtime64 = 405;
enum NR_clock_getres_time64 = 406;
enum NR_clock_nanosleep_time64 = 407;
enum NR_timer_gettime64 = 408;
enum NR_timer_settime64 = 409;
enum NR_timerfd_gettime64 = 410;
enum NR_timerfd_settime64 = 411;
enum NR_utimensat_time64 = 412;
enum NR_pselect6_time64 = 413;
enum NR_ppoll_time64 = 414;
enum NR_io_pgetevents_time64 = 416;
enum NR_recvmmsg_time64 = 417;
enum NR_mq_timedsend_time64 = 418;
enum NR_mq_timedreceive_time64 = 419;
enum NR_semtimedop_time64 = 420;
enum NR_rt_sigtimedwait_time64 = 421;
enum NR_futex_time64 = 422;
enum NR_sched_rr_get_interval_time64 = 423;
enum NR_pidfd_send_signal = 424;
enum NR_io_uring_setup = 425;
enum NR_io_uring_enter = 426;
enum NR_io_uring_register = 427;
enum NR_open_tree = 428;
enum NR_move_mount = 429;
enum NR_fsopen = 430;
enum NR_fsconfig = 431;
enum NR_fsmount = 432;
enum NR_fspick = 433;
enum NR_pidfd_open = 434;
enum NR_clone3 = 435;
enum NR_close_range = 436;
enum NR_openat2 = 437;
enum NR_pidfd_getfd = 438;
enum NR_faccessat2 = 439;
enum NR_process_madvise = 440;
enum NR_epoll_pwait2 = 441;
enum NR_mount_setattr = 442;
enum NR_quotactl_fd = 443;
enum NR_landlock_create_ruleset = 444;
enum NR_landlock_add_rule = 445;
enum NR_landlock_restrict_self = 446;
enum NR_process_mrelease = 448;
| D | 4 | libmir/mir-linux-kernel | source/mir/linux/arch/arm/uapi/_asm/unistd.di | [
"BSL-1.0"
] |
include("base_map_object.nut");
include("hoist.nut");
include("door.nut");
include("background_animation.nut");
include("switch.nut");
include("mine.nut");
include("electric_wall.nut");
include("slam_door.nut");
enum ObjectTypesAe
{
Hoist = 2,
Door = 5,
BackgroundAnimation = 13,
Switch = 17,
Mine = 24,
ElectricWall = 38,
SlamDoor = 85
}
function init_object_factory()
{
objects <- {};
objects.ae <-
{
[ObjectTypesAe.Hoist] = Hoist,
[ObjectTypesAe.Door] = Door,
[ObjectTypesAe.BackgroundAnimation] = BackgroundAnimation,
[ObjectTypesAe.Switch] = Switch,
[ObjectTypesAe.Mine] = Mine,
[ObjectTypesAe.ElectricWall] = ElectricWall,
[ObjectTypesAe.SlamDoor] = SlamDoor
};
objects.ao <-
{
};
}
function object_factory(/*MapObject*/ mapObj, /*GridMap*/ map, isAo, typeId, /*ObjRect*/ rect, /*IStream*/ stream)
{
if (isAo)
{
log_error("AO objects not implemented");
return null;
}
if (typeId in objects.ae)
{
local factory = objects.ae[typeId];
log_info("Constructing object for type " + typeId);
local obj = factory(mapObj, map, rect, stream);
log_info("Setting instance");
mapObj.SetScriptInstance(obj); // Store the squirrel object instance ref in the C++ object
log_info("Returning");
return true;
}
log_info("No factory found for object type " + typeId);
return false;
}
| Squirrel | 5 | mouzedrift/alive | data/scripts/object_factory.nut | [
"MIT"
] |
import unittest
from django.core.management.color import no_style
from django.db import connection
from django.test import TestCase
from ..models import Person, Tag
@unittest.skipUnless(connection.vendor == 'sqlite', 'SQLite tests.')
class SQLiteOperationsTests(TestCase):
def test_sql_flush(self):
self.assertEqual(
connection.ops.sql_flush(
no_style(),
[Person._meta.db_table, Tag._meta.db_table],
),
[
'DELETE FROM "backends_person";',
'DELETE FROM "backends_tag";',
],
)
def test_sql_flush_allow_cascade(self):
statements = connection.ops.sql_flush(
no_style(),
[Person._meta.db_table, Tag._meta.db_table],
allow_cascade=True,
)
self.assertEqual(
# The tables are processed in an unordered set.
sorted(statements),
[
'DELETE FROM "backends_person";',
'DELETE FROM "backends_tag";',
'DELETE FROM "backends_verylongmodelnamezzzzzzzzzzzzzzzzzzzzzz'
'zzzzzzzzzzzzzzzzzzzz_m2m_also_quite_long_zzzzzzzzzzzzzzzzzzzz'
'zzzzzzzzzzzzzzzzzzzzzzz";',
],
)
def test_sql_flush_sequences(self):
self.assertEqual(
connection.ops.sql_flush(
no_style(),
[Person._meta.db_table, Tag._meta.db_table],
reset_sequences=True,
),
[
'DELETE FROM "backends_person";',
'DELETE FROM "backends_tag";',
'UPDATE "sqlite_sequence" SET "seq" = 0 WHERE "name" IN '
'(\'backends_person\', \'backends_tag\');',
],
)
def test_sql_flush_sequences_allow_cascade(self):
statements = connection.ops.sql_flush(
no_style(),
[Person._meta.db_table, Tag._meta.db_table],
reset_sequences=True,
allow_cascade=True,
)
self.assertEqual(
# The tables are processed in an unordered set.
sorted(statements[:-1]),
[
'DELETE FROM "backends_person";',
'DELETE FROM "backends_tag";',
'DELETE FROM "backends_verylongmodelnamezzzzzzzzzzzzzzzzzzzzzz'
'zzzzzzzzzzzzzzzzzzzz_m2m_also_quite_long_zzzzzzzzzzzzzzzzzzzz'
'zzzzzzzzzzzzzzzzzzzzzzz";',
],
)
self.assertIs(statements[-1].startswith(
'UPDATE "sqlite_sequence" SET "seq" = 0 WHERE "name" IN ('
), True)
self.assertIn("'backends_person'", statements[-1])
self.assertIn("'backends_tag'", statements[-1])
self.assertIn(
"'backends_verylongmodelnamezzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
"zzzz_m2m_also_quite_long_zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
"zzz'",
statements[-1],
)
| Python | 4 | ni-ning/django | tests/backends/sqlite/test_operations.py | [
"CNRI-Python-GPL-Compatible",
"BSD-3-Clause"
] |
module Up2date =
autoload xfm
(* funky syntax: this matches one or more of a-z, A-Z, [ or ]. *)
let akey = /[]a-zA-Z[]+/
let avalue = /[^ \t\n]*([ \t]+[^ \t\n]+)*/
let setting = Build.key_value_line akey (del "=" "=") (store avalue)
let lns = ( Util.empty | Util.comment | setting ) *
let xfm = transform lns (incl "/etc/sysconfig/rhn/up2date")
| Augeas | 4 | jaredjennings/puppet-cmits-augeas | files/1.2.0/lenses/up2date.aug | [
"Apache-2.0"
] |
# Description: a simple test for the fish shell.
# Args: <hello_to>. Say hello to someone.
function say_hello
echo Hello $argv
end
| fish | 4 | groner/desk | examples/hello.fish | [
"MIT"
] |
let {(k,i,j) in TxIxJ} u[k,i,j] := sum{(t,l) in TxL: t>0 && t<=k} (v[t,l]*ul[k-t+1,i,j,l]) + uh[k,i,j];
| AMPL | 3 | thuenen/State-Elimination-for-Mixed-Integer-Optimal-Control-of-PDEs-by-Semigroup-Theory | HeatCtrl/BuildSolPlOp.ampl | [
"MIT"
] |
output "Route53_info" {
value = aws_route53_record.aws_route53.*
description = "List of DNS records"
}
output "masters_public_ip" {
value = "${aws_instance.master.*.public_ip}"
description = "The public IP of the AWS node"
}
| HCL | 4 | ursinnDev/rancher_rancher | tests/validation/tests/v3_api/resource/terraform/k3s/master/output.tf | [
"Apache-2.0"
] |
#include "colors.inc"
#include "textures.inc"
// Camera
camera {
location <4, 4, -7>
look_at <1, 0, 0>
}
// Sunlight
light_source {
<1000, 1000, -1000>
color White
}
// Sky
sphere {
<0, 0, 0>, 1
hollow
pigment {
gradient <0, 1, 0>
color_map {
[0.0 color White]
[0.5 color SkyBlue]
[1.0 color NavyBlue]
}
}
finish {
ambient 1
diffuse 0
}
scale 10000
}
// Outermost surface
#declare canoe_ellipsoid =
sphere {
<0, 0, 0>, 1
scale <3, 1.5, 1>
translate<0, 0.5, 0>
}
// Each seat of the canoe
#declare canoe_seat =
box {
<-0.2, 0, -1>, <0.2, 0.05, 1>
pigment {
wood
color_map {
[0.4 rgb <1.0, 0.8, 0.6>]
[0.6 rgb <1.0, 0.9, 0.7>]
}
turbulence 0.5
scale <0.5, 0.5, 5>
rotate y * 20
}
finish {
ambient 0.3
}
}
#declare canoe_hull_pigment =
pigment {
gradient x
color_map {
[0.2 rgb <1.0, 1.0, 1.0>]
[0.4 rgb <0.97, 0.97, 0.97>]
[0.6 rgb <0.94, 0.94, 0.94>]
[0.8 rgb <0.97, 0.97, 0.97>]
}
scale 2
turbulence 0.5
}
// Hull of the canoe
#declare canoe_hull =
difference {
// Outermost surface defined by the ellipsoid
object {
canoe_ellipsoid
}
// Make the ellipsoid hollow
object {
canoe_ellipsoid
scale <0.98, 0.95, 0.94>
}
// Remove the top surface of the ellipsoid to make a hull
sphere {
<0, 0, 0>, 1
scale <2.5, 1, 20>
rotate <0, 0, 0>
translate <0, 1.3, 0>
}
pigment {
canoe_hull_pigment
translate <1, 0, 0>
}
finish {
phong 1
ambient 0.3
}
}
// A set of three seats in the canoe
#declare canoe_seats =
intersection {
object {
canoe_ellipsoid
pigment {
color rgb <0.94, 0.94, 0.94>
}
}
union {
object {
canoe_seat
translate <0, 0.15, 0>
}
object {
canoe_seat
translate <-1.9, 0.40, 0>
}
object {
canoe_seat
translate <1.9, 0.40, 0>
}
}
}
// Complete canoe
#declare canoe =
union {
object {
canoe_hull
}
object {
canoe_seats
}
}
// Water
difference {
plane {
<0, 1, 0>, 0
}
object {
canoe_ellipsoid
translate <0, 0, 1>
}
normal {
crackle
turbulence 1
}
finish {
diffuse 0.3
reflection 0.6
}
}
// Place the canoe on water
object {
canoe
translate <0, 0, 1>
}
| POV-Ray SDL | 4 | spcask/pov-ray-tracing | src/scene18.pov | [
"MIT"
] |
exec("swigtest.start", -1);
//try
// x = new_Foo();
//catch
// swigtesterror();
//end
//if Foo_test(x) <> 0 then swigtesterror(); end
//if Foo_test(x, 1) <> 1 then swigtesterror(); end
//if Foo_test(x, 2, 3) <> 5 then swigtesterror(); end
//if Foo_test(x, "Hello, swig!") <> 2 then swigtesterror(); end
exec("swigtest.quit", -1);
| Scilab | 3 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/overload_extend_runme.sci | [
"BSD-3-Clause"
] |
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/core/grappler/utils/frame.h"
#include "tensorflow/core/framework/attr_value.pb.h"
#include "tensorflow/core/framework/node_def.pb.h"
#include "tensorflow/core/grappler/utils/graph_view.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/test.h"
namespace tensorflow {
namespace grappler {
namespace {
using GraphTypes =
::testing::Types<GraphDef, utils::GraphView, utils::MutableGraphView>;
template <typename T>
class FrameViewTest : public ::testing::Test {
protected:
NodeDef CreateNode(const string& name, const std::vector<string>& inputs) {
return CreateNode(name, "", "", inputs);
}
NodeDef CreateNode(const string& name, const string& op,
const std::vector<string>& inputs) {
return CreateNode(name, op, "", inputs);
}
NodeDef CreateNode(const string& name, const string& op, const string& frame,
const std::vector<string>& inputs) {
NodeDef node;
node.set_name(name);
if (!op.empty()) {
node.set_op(op);
}
if (!frame.empty()) {
AttrValue frame_name;
frame_name.set_s(frame);
node.mutable_attr()->insert({"frame_name", frame_name});
}
for (const string& input : inputs) {
node.add_input(input);
}
return node;
}
};
TYPED_TEST_SUITE(FrameViewTest, GraphTypes);
template <typename T>
void InferFromGraph(FrameView* frame_view, GraphDef* graph, bool valid) {
Status status;
T graph_view(graph, &status);
TF_ASSERT_OK(status);
status = frame_view->InferFromGraphView(graph_view);
if (valid) {
TF_ASSERT_OK(status);
} else {
ASSERT_FALSE(status.ok());
}
}
template <>
void InferFromGraph<GraphDef>(FrameView* frame_view, GraphDef* graph,
bool valid) {
Status status = frame_view->InferFromGraph(*graph);
if (valid) {
TF_ASSERT_OK(status);
} else {
ASSERT_FALSE(status.ok());
}
}
TYPED_TEST(FrameViewTest, NestedLoop) {
GraphDef graph;
// Create a two-level nested loop
*graph.add_node() = this->CreateNode("0", {});
*graph.add_node() = this->CreateNode("1", "Enter", "while/context1", {"0"});
*graph.add_node() = this->CreateNode("2", {"1"});
*graph.add_node() = this->CreateNode("3", "Merge", {"2", "14"});
*graph.add_node() = this->CreateNode("4", {"3"});
*graph.add_node() = this->CreateNode("5", "Switch", {"4"});
*graph.add_node() = this->CreateNode("6", {"5"});
*graph.add_node() = this->CreateNode("7", "Enter", "while/context2", {"6"});
*graph.add_node() = this->CreateNode("8", {"7"});
*graph.add_node() = this->CreateNode("9", "Merge", {"8", "12"});
*graph.add_node() = this->CreateNode("10", {"9"});
*graph.add_node() = this->CreateNode("11", "Switch", {"10"});
*graph.add_node() = this->CreateNode("12", "NextIteration", {"11"});
*graph.add_node() = this->CreateNode("13", "Exit", {"11"});
*graph.add_node() = this->CreateNode("14", "NextIteration", {"13"});
*graph.add_node() = this->CreateNode("15", {"5"});
*graph.add_node() = this->CreateNode("16", "Exit", {"15"});
*graph.add_node() = this->CreateNode("17", {"16"});
FrameView frame_view;
InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true);
std::unordered_map<string, std::vector<int>> expected = {
{"0", {}}, {"1", {0}}, {"2", {0}}, {"3", {0}},
{"4", {0}}, {"5", {0}}, {"6", {0}}, {"7", {0, 1}},
{"8", {0, 1}}, {"9", {0, 1}}, {"10", {0, 1}}, {"11", {0, 1}},
{"12", {0, 1}}, {"13", {0, 1}}, {"14", {0}}, {"15", {0}},
{"16", {0}}, {"17", {}}};
EXPECT_EQ(frame_view.num_frames(), 2);
for (const NodeDef& node : graph.node()) {
std::vector<int> expected_frames = expected[node.name()];
std::vector<int> node_frames = frame_view.Frames(node);
EXPECT_EQ(expected_frames, node_frames);
}
}
TYPED_TEST(FrameViewTest, MultipleInputsToEnter) {
GraphDef graph;
*graph.add_node() = this->CreateNode("0", {});
*graph.add_node() = this->CreateNode("1", {});
*graph.add_node() =
this->CreateNode("2", "Enter", "while/context", {"0", "1"});
*graph.add_node() = this->CreateNode("3", "Exit", {"2"});
FrameView frame_view;
InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true);
std::unordered_map<string, std::vector<int>> expected = {
{"0", {}}, {"1", {}}, {"2", {0}}, {"3", {0}}};
EXPECT_EQ(frame_view.num_frames(), 1);
for (const NodeDef& node : graph.node()) {
std::vector<int> expected_frames = expected[node.name()];
std::vector<int> node_frames = frame_view.Frames(node);
EXPECT_EQ(expected_frames, node_frames);
}
}
TYPED_TEST(FrameViewTest, ExitOutput) {
GraphDef graph;
*graph.add_node() = this->CreateNode("0", {});
*graph.add_node() = this->CreateNode("1", "Enter", "while/context", {"0"});
*graph.add_node() = this->CreateNode("2", "Exit", {"1"});
*graph.add_node() = this->CreateNode("3", {});
*graph.add_node() = this->CreateNode("4", {"2", "3"});
FrameView frame_view;
InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true);
std::unordered_map<string, std::vector<int>> expected = {
{"0", {}}, {"1", {0}}, {"2", {0}}, {"3", {}}, {"4", {}}};
EXPECT_EQ(frame_view.num_frames(), 1);
for (const NodeDef& node : graph.node()) {
std::vector<int> expected_frames = expected[node.name()];
std::vector<int> node_frames = frame_view.Frames(node);
EXPECT_EQ(expected_frames, node_frames);
}
}
TYPED_TEST(FrameViewTest, MultipleEnterNodes) {
GraphDef graph;
*graph.add_node() = this->CreateNode("0", {});
*graph.add_node() = this->CreateNode("1", "Enter", "while/context", {"0"});
*graph.add_node() = this->CreateNode("2", {"1"});
*graph.add_node() = this->CreateNode("5", {});
*graph.add_node() = this->CreateNode("4", "Enter", "while/context", {"5"});
*graph.add_node() = this->CreateNode("3", {"4", "2"});
*graph.add_node() = this->CreateNode("6", "Merge", {"3", "8"});
*graph.add_node() = this->CreateNode("7", "Switch", {"6"});
*graph.add_node() = this->CreateNode("8", "NextIteration", {"7"});
*graph.add_node() = this->CreateNode("9", "Exit", {"7"});
FrameView frame_view;
InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/true);
std::unordered_map<string, std::vector<int>> expected = {
{"0", {}}, {"1", {0}}, {"2", {0}}, {"3", {0}}, {"4", {0}},
{"5", {}}, {"6", {0}}, {"7", {0}}, {"8", {0}}, {"9", {0}}};
EXPECT_EQ(frame_view.num_frames(), 1);
for (const NodeDef& node : graph.node()) {
std::vector<int> expected_frames = expected[node.name()];
std::vector<int> node_frames = frame_view.Frames(node);
EXPECT_EQ(expected_frames, node_frames);
}
}
TYPED_TEST(FrameViewTest, ConflictingFrames) {
GraphDef graph;
*graph.add_node() = this->CreateNode("0", {});
*graph.add_node() = this->CreateNode("1", "Enter", "while/context1", {"0"});
*graph.add_node() = this->CreateNode("2", "Enter", "while/context2", {"1"});
*graph.add_node() = this->CreateNode("3", {"1", "2"});
FrameView frame_view;
InferFromGraph<TypeParam>(&frame_view, &graph, /*valid=*/false);
}
} // namespace
} // namespace grappler
} // namespace tensorflow
| C++ | 4 | abhaikollara/tensorflow | tensorflow/core/grappler/utils/frame_test.cc | [
"Apache-2.0"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IConfigurationCache, ConfigurationKey } from 'vs/workbench/services/configuration/common/configuration';
import { URI } from 'vs/base/common/uri';
import { FileOperationError, FileOperationResult, IFileService } from 'vs/platform/files/common/files';
import { joinPath } from 'vs/base/common/resources';
import { VSBuffer } from 'vs/base/common/buffer';
import { Queue } from 'vs/base/common/async';
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
export class ConfigurationCache implements IConfigurationCache {
private readonly cacheHome: URI;
private readonly cachedConfigurations: Map<string, CachedConfiguration> = new Map<string, CachedConfiguration>();
constructor(
private readonly donotCacheResourcesWithSchemes: string[],
environmentService: IEnvironmentService,
private readonly fileService: IFileService
) {
this.cacheHome = environmentService.cacheHome;
}
needsCaching(resource: URI): boolean {
// Cache all non native resources
return !this.donotCacheResourcesWithSchemes.includes(resource.scheme);
}
read(key: ConfigurationKey): Promise<string> {
return this.getCachedConfiguration(key).read();
}
write(key: ConfigurationKey, content: string): Promise<void> {
return this.getCachedConfiguration(key).save(content);
}
remove(key: ConfigurationKey): Promise<void> {
return this.getCachedConfiguration(key).remove();
}
private getCachedConfiguration({ type, key }: ConfigurationKey): CachedConfiguration {
const k = `${type}:${key}`;
let cachedConfiguration = this.cachedConfigurations.get(k);
if (!cachedConfiguration) {
cachedConfiguration = new CachedConfiguration({ type, key }, this.cacheHome, this.fileService);
this.cachedConfigurations.set(k, cachedConfiguration);
}
return cachedConfiguration;
}
}
class CachedConfiguration {
private queue: Queue<void>;
private cachedConfigurationFolderResource: URI;
private cachedConfigurationFileResource: URI;
constructor(
{ type, key }: ConfigurationKey,
cacheHome: URI,
private readonly fileService: IFileService
) {
this.cachedConfigurationFolderResource = joinPath(cacheHome, 'CachedConfigurations', type, key);
this.cachedConfigurationFileResource = joinPath(this.cachedConfigurationFolderResource, type === 'workspaces' ? 'workspace.json' : 'configuration.json');
this.queue = new Queue<void>();
}
async read(): Promise<string> {
try {
const content = await this.fileService.readFile(this.cachedConfigurationFileResource);
return content.value.toString();
} catch (e) {
return '';
}
}
async save(content: string): Promise<void> {
const created = await this.createCachedFolder();
if (created) {
await this.queue.queue(async () => {
await this.fileService.writeFile(this.cachedConfigurationFileResource, VSBuffer.fromString(content));
});
}
}
async remove(): Promise<void> {
try {
await this.queue.queue(() => this.fileService.del(this.cachedConfigurationFolderResource, { recursive: true, useTrash: false }));
} catch (error) {
if ((<FileOperationError>error).fileOperationResult !== FileOperationResult.FILE_NOT_FOUND) {
throw error;
}
}
}
private async createCachedFolder(): Promise<boolean> {
if (await this.fileService.exists(this.cachedConfigurationFolderResource)) {
return true;
}
try {
await this.fileService.createFolder(this.cachedConfigurationFolderResource);
return true;
} catch (error) {
return false;
}
}
}
| TypeScript | 5 | sbj42/vscode | src/vs/workbench/services/configuration/common/configurationCache.ts | [
"MIT"
] |
"""Tests for the Switch as X Siren platform."""
from homeassistant.components.siren import DOMAIN as SIREN_DOMAIN
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
from homeassistant.components.switch_as_x.const import CONF_TARGET_DOMAIN, DOMAIN
from homeassistant.const import (
CONF_ENTITY_ID,
SERVICE_TOGGLE,
SERVICE_TURN_OFF,
SERVICE_TURN_ON,
STATE_OFF,
STATE_ON,
Platform,
)
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
from tests.common import MockConfigEntry
async def test_default_state(hass: HomeAssistant) -> None:
"""Test siren switch default state."""
config_entry = MockConfigEntry(
data={},
domain=DOMAIN,
options={
CONF_ENTITY_ID: "switch.test",
CONF_TARGET_DOMAIN: Platform.SIREN,
},
title="Noise Maker",
)
config_entry.add_to_hass(hass)
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
state = hass.states.get("siren.noise_maker")
assert state is not None
assert state.state == "unavailable"
assert state.attributes["supported_features"] == 3
async def test_service_calls(hass: HomeAssistant) -> None:
"""Test service calls affecting the switch as siren entity."""
await async_setup_component(hass, "switch", {"switch": [{"platform": "demo"}]})
config_entry = MockConfigEntry(
data={},
domain=DOMAIN,
options={
CONF_ENTITY_ID: "switch.decorative_lights",
CONF_TARGET_DOMAIN: Platform.SIREN,
},
title="noise_maker",
)
config_entry.add_to_hass(hass)
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
assert hass.states.get("siren.noise_maker").state == STATE_ON
await hass.services.async_call(
SIREN_DOMAIN,
SERVICE_TOGGLE,
{CONF_ENTITY_ID: "siren.noise_maker"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_OFF
assert hass.states.get("siren.noise_maker").state == STATE_OFF
await hass.services.async_call(
SIREN_DOMAIN,
SERVICE_TURN_ON,
{CONF_ENTITY_ID: "siren.noise_maker"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_ON
assert hass.states.get("siren.noise_maker").state == STATE_ON
await hass.services.async_call(
SIREN_DOMAIN,
SERVICE_TURN_OFF,
{CONF_ENTITY_ID: "siren.noise_maker"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_OFF
assert hass.states.get("siren.noise_maker").state == STATE_OFF
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_ON,
{CONF_ENTITY_ID: "switch.decorative_lights"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_ON
assert hass.states.get("siren.noise_maker").state == STATE_ON
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_OFF,
{CONF_ENTITY_ID: "switch.decorative_lights"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_OFF
assert hass.states.get("siren.noise_maker").state == STATE_OFF
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TOGGLE,
{CONF_ENTITY_ID: "switch.decorative_lights"},
blocking=True,
)
assert hass.states.get("switch.decorative_lights").state == STATE_ON
assert hass.states.get("siren.noise_maker").state == STATE_ON
| Python | 4 | MrDelik/core | tests/components/switch_as_x/test_siren.py | [
"Apache-2.0"
] |
import "ecere"
import "LicensesDialog"
// This is a method you can use to respect Ecere's software license
// agreements when distributing software based on Ecere SDK either
// freely or commercially.
//
// Other software licenses used in your applications or those that
// are part of Ecere SDK can also be displayed in order to comply
// with each license's terms.
//
// V2 of this sample shows how you to display additional licenses.
//
// TODO:
// - add missing licenses
// - implement method to show only the license you've choosen to
// use in your application. i.e.: which flavor of ecere you're
// using.
#ifdef SAMPLE_V2
class MyLicensesDialog : LicensesDialog
{
LicenseTab myLicense { tabControl = tabControl, text = "MyApp", sourceFile = ":licenses/myapp.LICENSE" };
}
#endif
class MyAppAboutDialog : Window
{
text = "Application About Dialog";
background = activeBorder;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
size = { 640, 480 };
nativeDecorations = true;
Button licensingBtn
{
this, position = { 40, 300 }; hotKey = l; text = "Software Licenses";
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
#ifdef SAMPLE_V2
MyLicensesDialog { }.Modal();
#else
LicensesDialog { }.Modal();
#endif
return true;
}
};
}
MyAppAboutDialog myAppAboutDialog {};
| eC | 4 | N-eil/ecere-sdk | samples/misc/licensing/licensing.ec | [
"BSD-3-Clause"
] |
# Detects a Hurricane Panda tactic of using Hurricane Electric to resolve commonly accessed websites
# Alerts when a domain in the Alexa top 500 is resolved via Hurricane Electric and/or when a host connects to an IP in the DNS response
# CrowdStrike 2015
# josh.liburdi@crowdstrike.com
@load base/protocols/dns
@load base/frameworks/notice
@load base/frameworks/input
module CrowdStrike::Hurricane_Panda;
export {
redef enum Notice::Type += {
HE_Request,
HE_Successful_Conn
};
}
# Current as of 01/20/2015
# alexa.com/topsites
const alexa_table: set[string] = {
google.com,
facebook.com,
youtube.com,
yahoo.com,
baidu.com,
amazon.com,
wikipedia.org,
twitter.com,
taobao.com,
qq.com,
google.co.in,
live.com,
sina.com.cn,
weibo.com,
linkedin.com,
yahoo.co.jp,
tmall.com,
blogspot.com,
ebay.com,
hao123.com,
google.co.jp,
google.de,
yandex.ru,
bing.com,
sohu.com,
vk.com,
instagram.com,
tumblr.com,
reddit.com,
google.co.uk,
pinterest.com,
amazon.co.jp,
wordpress.com,
msn.com,
imgur.com,
google.fr,
adcash.com,
google.com.br,
ask.com,
paypal.com,
imdb.com,
aliexpress.com,
xvideos.com,
alibaba.com,
apple.com,
fc2.com,
microsoft.com,
mail.ru,
t.co,
google.it,
360.cn,
google.ru,
amazon.de,
google.es,
kickass.so,
netflix.com,
163.com,
go.com,
xinhuanet.com,
gmw.cn,
onclickads.net,
google.com.hk,
craigslist.org,
stackoverflow.com,
xhamster.com,
people.com.cn,
google.ca,
amazon.co.uk,
naver.com,
soso.com,
amazon.cn,
googleadservices.com,
pornhub.com,
bbc.co.uk,
google.com.tr,
cnn.com,
diply.com,
rakuten.co.jp,
espn.go.com,
ebay.de,
nicovideo.jp,
dailymotion.com,
google.com.mx,
adobe.com,
cntv.cn,
flipkart.com,
google.pl,
youku.com,
google.com.au,
alipay.com,
ok.ru,
blogger.com,
huffingtonpost.com,
dropbox.com,
chinadaily.com.cn,
googleusercontent.com,
wikia.com,
nytimes.com,
google.co.kr,
ebay.co.uk,
dailymail.co.uk,
china.com,
livedoor.com,
github.com,
indiatimes.com,
pixnet.net,
jd.com,
tudou.com,
sogou.com,
outbrain.com,
uol.com.br,
buzzfeed.com,
gmail.com,
xnxx.com,
google.com.tw,
blogspot.in,
amazon.in,
booking.com,
google.com.eg,
chase.com,
ameblo.jp,
cnet.com,
redtube.com,
pconline.com.cn,
directrev.com,
flickr.com,
amazon.fr,
douban.com,
about.com,
yelp.com,
wordpress.org,
dmm.co.jp,
ettoday.net,
walmart.com,
globo.com,
bankofamerica.com,
youporn.com,
bp.blogspot.com,
youradexchange.com,
vimeo.com,
google.com.pk,
coccoc.com,
google.nl,
etsy.com,
snapdeal.com,
naver.jp,
deviantart.com,
godaddy.com,
bbc.com,
daum.net,
amazonaws.com,
themeforest.net,
bestbuy.com,
aol.com,
theguardian.com,
weather.com,
zol.com.cn,
google.com.ar,
adf.ly,
amazon.it,
livejasmin.com,
life.com.tw,
salesforce.com,
google.com.sa,
twitch.tv,
forbes.com,
bycontext.com,
livejournal.com,
soundcloud.com,
loading-delivery1.com,
wikihow.com,
slideshare.net,
wellsfargo.com,
google.gr,
stackexchange.com,
jabong.com,
google.co.id,
google.co.za,
leboncoin.fr,
blogfa.com,
feedly.com,
indeed.com,
ikea.com,
quora.com,
ups.com,
xcar.com.cn,
espncricinfo.com,
target.com,
china.com.cn,
ziddu.com,
theadgateway.com,
allegro.pl,
businessinsider.com,
popads.net,
w3schools.com,
pixiv.net,
mozilla.org,
onet.pl,
reference.com,
google.com.ua,
torrentz.eu,
9gag.com,
mediafire.com,
files.wordpress.com,
tubecup.com,
archive.org,
wikimedia.org,
likes.com,
mailchimp.com,
tripadvisor.com,
amazon.es,
theladbible.com,
goo.ne.jp,
usps.com,
foxnews.com,
steampowered.com,
ifeng.com,
sourceforge.net,
google.be,
ndtv.com,
badoo.com,
google.co.th,
zillow.com,
mystart.com,
web.de,
google.com.vn,
slickdeals.net,
washingtonpost.com,
kakaku.com,
huanqiu.com,
tianya.cn,
google.ro,
skype.com,
dmm.com,
ask.fm,
comcast.net,
telegraph.co.uk,
americanexpress.com,
gmx.net,
google.com.my,
secureserver.net,
bet365.com,
avg.com,
mama.cn,
ign.com,
force.com,
akamaihd.net,
orange.fr,
gfycat.com,
steamcommunity.com,
ppomppu.co.kr,
gameforge.com,
answers.com,
media.tumblr.com,
google.cn,
softonic.com,
google.se,
newegg.com,
google.com.co,
mashable.com,
reimageplus.com,
doorblog.jp,
goodreads.com,
google.com.ng,
rediff.com,
ilividnewtab.com,
groupon.com,
stumbleupon.com,
icicibank.com,
google.com.sg,
doublepimp.com,
google.at,
wp.pl,
b5m.com,
tube8.com,
rutracker.org,
chinatimes.com,
fedex.com,
abs-cbnnews.com,
engadget.com,
zhihu.com,
caijing.com.cn,
smzdm.com,
bild.de,
pchome.net,
hdfcbank.com,
quikr.com,
rambler.ru,
amazon.ca,
google.pt,
mercadolivre.com.br,
spiegel.de,
nfl.com,
bleacherreport.com,
t-online.de,
xuite.net,
webssearches.com,
taboola.com,
weebly.com,
gizmodo.com,
hurriyet.com.tr,
pandora.com,
shutterstock.com,
wsj.com,
gome.com.cn,
avito.ru,
what-character-are-you.com,
homedepot.com,
seznam.cz,
youth.cn,
pclady.com.cn,
iqiyi.com,
nih.gov,
usatoday.com,
vice.com,
lifehacker.com,
webmd.com,
wix.com,
hulu.com,
ebay.in,
samsung.com,
hp.com,
hootsuite.com,
google.dz,
extratorrent.cc,
accuweather.com,
addthis.com,
firstmediahub.com,
speedtest.net,
kompas.com,
google.ch,
ameba.jp,
macys.com,
gsmarena.com,
liveinternet.ru,
milliyet.com.tr,
photobucket.com,
fiverr.com,
hupu.com,
39.net,
dell.com,
youm7.com,
adsrvmedia.net,
wow.com,
4shared.com,
microsoftonline.com,
github.io,
bilibili.com,
varzesh3.com,
retailmenot.com,
myntra.com,
mobile01.com,
google.com.pe,
google.com.bd,
udn.com,
capitalone.com,
tistory.com,
spotify.com,
evernote.com,
theverge.com,
babytree.com,
liputan6.com,
xda-developers.com,
att.com,
omiga-plus.com,
google.com.ph,
nba.com,
techcrunch.com,
wordreference.com,
google.no,
battle.net,
office.com,
uploaded.net,
reuters.com,
libero.it,
in.com,
rt.com,
disqus.com,
google.co.hu,
ebay.com.au,
rbc.ru,
google.cz,
time.com,
goal.com,
google.ae,
hstpnetwork.com,
moz.com,
intoday.in,
rottentomatoes.com,
aili.com,
goodgamestudios.com,
lady8844.com,
onlinesbi.com,
hudong.com,
kaskus.co.id,
twimg.com,
stylene.net,
teepr.com,
zendesk.com,
google.ie,
gap.com,
codecanyon.net,
yandex.ua,
verizonwireless.com,
olx.in,
okcupid.com,
bloomberg.com,
nordstrom.com,
google.co.il,
justdial.com,
intuit.com,
googleapis.com,
trackingclick.net,
ltn.com.tw,
sahibinden.com,
2ch.net,
free.fr,
so.com,
ebay.it,
thefreedictionary.com,
csdn.net,
12306.cn,
meetup.com,
trello.com,
fbcdn.net,
autohome.com.cn,
cnzz.com,
kinopoisk.ru,
dsrlte.com,
gmarket.co.kr,
detik.com,
staticwebdom.com,
marca.com,
bhaskar.com,
chinaz.com,
naukri.com,
ganji.com,
gamefaqs.com,
kohls.com,
eksisozluk.com,
ero-advertising.com,
agoda.com,
expedia.com,
npr.org,
bitly.com,
mackeeper.com,
styletv.com.cn,
allrecipes.com,
repubblica.it,
google.fi,
exoclick.com,
kickstarter.com,
baomihua.com,
beeg.com,
sears.com,
mbtrx.com,
faithtap.com,
citibank.com,
ehow.com,
cloudfront.net,
tmz.com,
blog.jp,
hostgator.com,
doubleclick.com,
media1first.com,
jmpdirect01.com,
livedoor.biz,
slimspots.com,
abcnews.go.com,
oracle.com,
chaturbate.com,
scribd.com,
outlook.com,
eyny.com,
popcash.net,
xe.com,
mega.co.nz,
ink361.com,
gawker.com,
sex.com,
woot.com,
xywy.com,
lemonde.fr,
asos.com,
ci123.com,
zippyshare.com,
chip.de,
elpais.com,
putlocker.is,
nbcnews.com,
php.net,
nyaa.se,
eastday.com,
google.az,
list-manage.com,
eonline.com,
foodnetwork.com,
google.dk,
independent.co.uk,
statcounter.com
} &redef;
const he_nets: set[subnet] = {
216.218.130.2,
216.66.1.2,
216.66.80.18,
216.218.132.2,
216.218.131.2
} &redef;
# Pattern used to identify subdomains
const subdomains = /^d?ns[0-9]*\./ |
/^smtp[0-9]*\./ |
/^mail[0-9]*\./ |
/^pop[0-9]*\./ |
/^imap[0-9]*\./ |
/^www[0-9]*\./ |
/^ftp[0-9]*\./ |
/^img[0-9]*\./ |
/^images?[0-9]*\./ |
/^search[0-9]*\./ |
/^nginx[0-9]*\./ &redef;
# Container to store IP address answers from Hurricane Electric queries
# Each entry expires 5 minutes after the last time it was written
global he_answers: set[addr] &write_expire=5min;
event DNS::log_dns(rec: DNS::Info)
{
# Do not process the event if no query exists or if the query is not being resolved by Hurricane Electric
if ( ! rec?$query ) return;
if ( rec$id$resp_h !in he_nets ) return;
# If necessary, clean the query so that it can be found in the list of Alexa domains
local query = rec$query;
if ( subdomains in query )
query = sub(rec$query,subdomains,"");
# Check if the query is in the list of Alexa domains
# If it is, then this activity is suspicious and should be investigated
if ( query in alexa_table )
{
# Prepare the sub-message for the notice
# Include the domain queried in the sub-message
local sub_msg = fmt("Query: %s",query);
# If the query was answered, include the answers in the sub-message
if ( rec?$answers )
{
sub_msg += fmt(" %s: ", rec$total_answers > 1 ? "Answers":"Answer");
for ( ans in rec$answers )
{
# If an answers value is an IP address, store it for later processing
if ( is_valid_ip(rec$answers[ans]) == T )
add he_answers[to_addr(rec$answers[ans])];
sub_msg += fmt("%s, ", rec$answers[ans]);
}
# Clean the sub-message.
sub_msg = cut_tail(sub_msg,2);
}
# Generate the notice
# Includes the connection flow, host intiating the lookup, domain queried, and query answers (if available)
NOTICE([$note=HE_Request,
$msg=fmt("%s made a suspicious DNS lookup to Hurricane Electric", rec$id$orig_h),
$sub=sub_msg,
$id=rec$id,
$uid=rec$uid,
$identifier=cat(rec$id$orig_h,rec$query)]);
}
}
event connection_state_remove(c: connection)
{
# Check if a host connected to an IP address seen in an answer from Hurricane Electric
if ( c$id$resp_h in he_answers )
NOTICE([$note=HE_Successful_Conn,
$conn=c,
$msg=fmt("%s connected to a suspicious server resolved by Hurricane Electric", c$id$orig_h),
$identifier=cat(c$id$orig_h,c$id$resp_h)]);
}
| Bro | 5 | kingtuna/cs-bro | bro-scripts/adversaries/hurricane-panda/rogue-dns/static/detect-rogue-dns.bro | [
"BSD-2-Clause"
] |
'use strict'
export class Graphicx
args = @args = {}
# CTOR
(generator, options) ->
# 3 Colour TODO: also in xcolor - include xcolor instead?
# 4.2 Rotation
# rotation
# \rotatebox[key-val list]{angle}{text}
args.\rotatebox = <[ H kv? n hg ]>
\rotatebox : (kvl, angle, text) ->
# origin=one or two of: lrctbB
# x=<dimen>
# y=<dimen>
# units=<number>
# 4.3 Scaling
# TODO: check if they all need to be hg instead of g?
# \scalebox{h-scale}[v-scale]{text}
args.\scalebox = <[ H n n? g ]>
\scalebox : (hsc, vsc, text) ->
# style="transform: scale(hsc, vsc);"
# \reflectbox{text}
args.\reflectbox = <[ H g ]>
\reflectbox : (text) ->
@\scalebox -1, 1, text
# \resizebox*{h-length}{v-length}{text}
args.\resizebox = <[ H s l l g ]>
\resizebox : (s, hl, vl, text) ->
# 4.4 Including Graphics Files
# TODO: restrict to just one path?
# { {path1/} {path2/} }
args.\graphicspath = <[ HV gl ]>
\graphicspath : (paths) !->
# graphics: \includegraphics*[<llx,lly>][<urx,ury>]{<file>} TODO
# graphicx: \includegraphics*[<key-val list>]{<file>}
args.\includegraphics = <[ H s kv? kv? k ]>
\includegraphics : (s, kvl, kvl2, file) ->
# LaTeX supports the following keys:
#
# set bounding box:
# * bb = a b c d
# * bbllx=a, bblly=b, bburx=c, bbury=d => equivalent to bb=a b c d
# * natwidth=w, natheight=h => equivalent to bb=0 0 h w
#
# hiresbb, pagebox
#
# viewport
# trim
#
# angle, origin (for rotation)
#
# width, height
# totalheight
#
# scale
#
# clip
# draft
#
# type, ext, read, command
#
# quiet
# page (when including a pdf)
# interpolate
# order of the keys is important! insert into map in order!
[ @g.createImage kvl.get("width"), kvl.get("height"), file ]
| LiveScript | 4 | michael-brade/LaTeX.js | src/packages/graphicx.ls | [
"MIT"
] |
#' Import a module into the current scope
#'
#' \code{module = import('module')} imports a specified module and makes its
#' code available via the environment-like object it returns.
#'
#' @param module an identifier specifying the full module path
#' @param attach if \code{TRUE}, attach the newly loaded module to the object
#' search path (see \code{Details})
#' @param attach_operators if \code{TRUE}, attach operators of module to the
#' object search path, even if \code{attach} is \code{FALSE}
#' @return the loaded module environment (invisible)
#'
#' @details Modules are loaded in an isolated environment which is returned, and
#' optionally attached to the object search path of the current scope (if
#' argument \code{attach} is \code{TRUE}).
#' \code{attach} defaults to \code{FALSE}. However, in interactive code it is
#' often helpful to attach packages by default. Therefore, in interactive code
#' invoked directly from the terminal only (i.e. not within modules),
#' \code{attach} defaults to the value of \code{options('import.attach')}, which
#' can be set to \code{TRUE} or \code{FALSE} depending on the user’s preference.
#'
#' \code{attach_operators} causes \emph{operators} to be attached by default,
#' because operators can only be invoked in R if they re found in the search
#' path. Not attaching them therefore drastically limits a module’s usefulness.
#'
#' Modules are searched in the module search path \code{options('import.path')}.
#' This is a vector of paths to consider, from the highest to the lowest
#' priority. The current directory is \emph{always} considered first. That is,
#' if a file \code{a.r} exists both in the current directory and in a module
#' search path, the local file \code{./a.r} will be loaded.
#'
#' Module names can be fully qualified to refer to nested paths. See
#' \code{Examples}.
#'
#' @note Unlike for packages, attaching happens \emph{locally}: if
#' \code{import} is executed in the global environment, the effect is the same.
#' Otherwise, the imported module is inserted as the parent of the current
#' \code{environment()}. When used (globally) \emph{inside} a module, the newly
#' imported module is only available inside the module’s search path, not
#' outside it (nor in other modules which might be loaded).
#'
#' @examples
#' # `a.r` is a file in the local directory containing a function `f`.
#' a = import('a')
#' a$f()
#'
#' # b/c.r is a file in path `b`, containing a function `g`.
#' import('b/c', attach = TRUE)
#' g() # No module name qualification necessary
#'
#' @seealso \code{unload}
#' @seealso \code{reload}
#' @seealso \code{module_name}
#' @export
import = function (module, attach, attach_operators = TRUE) {
module = substitute(module)
stopifnot(inherits(module, 'name'))
if (missing(attach)) {
attach = if (interactive() && is.null(module_name()))
getOption('import.attach', FALSE)
else
FALSE
}
stopifnot(class(attach) == 'logical' && length(attach) == 1)
module_path = try(find_module(module), silent = TRUE)
if (inherits(module_path, 'try-error'))
stop(attr(module_path, 'condition')$message)
containing_modules = module_init_files(module, module_path)
mapply(do_import, names(containing_modules), containing_modules)
mod_ns = do_import(as.character(module), module_path)
module_parent = parent.frame()
mod_env = exhibit_namespace(mod_ns, as.character(module), module_parent)
if (attach) {
if (identical(module_parent, .GlobalEnv))
attach(mod_env, name = environmentName(mod_env))
else
parent.env(module_parent) = mod_env
}
else if (attach_operators)
export_operators(mod_ns, module_parent)
invisible(mod_env)
}
do_import = function (module_name, module_path) {
if (is_module_loaded(module_path))
return(get_loaded_module(module_path))
# The namespace contains a module’s content. This schema is very much like
# R package organisation.
# A good resource for this is:
# <http://obeautifulcode.com/R/How-R-Searches-And-Finds-Stuff/>
namespace = structure(new.env(parent = .BaseNamespaceEnv),
name = paste('namespace', module_name, sep = ':'),
path = module_path,
class = c('namespace', 'environment'))
local(source(attr(environment(), 'path'), chdir = TRUE, local = TRUE),
envir = namespace)
cache_module(namespace)
namespace
}
exhibit_namespace = function (namespace, name, parent) {
exported_functions = lsf.str(namespace)
# Skip one parent environment because this module is hooked into the chain
# between the calling environment and its ancestor, thus sitting in its
# local object search path.
structure(list2env(sapply(exported_functions, get, envir = namespace),
parent = parent.env(parent)),
name = paste('module', name, sep = ':'),
path = module_path(namespace),
class = c('module', 'environment'))
}
export_operators = function (namespace, parent) {
# `$` cannot be overwritten, but it is generic so S3 variants of it can be
# defined. We therefore test it as well.
ops = c('+', '-', '*', '/', '^', '**', '&', '|', ':', '::', ':::', '$', '=',
'<-', '<<-', '==', '<', '<=', '>', '>=', '!=', '~', '&&', '||')
is_predefined = function (f) f %in% ops
is_op = function (f) {
prefix = strsplit(f, '\\.')[[1]][1]
is_predefined(prefix) || grepl('^%.*%$', prefix)
}
operators = Filter(is_op, lsf.str(namespace))
name = module_name(namespace)
# Skip one parent environment because this module is hooked into the chain
# between the calling environment and its ancestor, thus sitting in its
# local object search path.
op_env = structure(list2env(sapply(operators, get, envir = namespace),
parent = parent.env(parent)),
name = paste('operators', name, sep = ':'),
path = module_path(namespace),
class = c('module', 'environment'))
if (identical(parent, .GlobalEnv))
attach(op_env, name = environmentName(op_env))
else
parent.env(parent) = op_env
}
#' Unload a given module
#'
#' Unset the module variable that is being passed as a parameter, and remove the
#' loaded module from cache.
#' @param module reference to the module which should be unloaded
#' @note Any other references to the loaded modules remain unchanged, and will
#' still work. However, subsequently importing the module again will reload its
#' source files, which would not have happened without \code{unload}.
#' Unloading modules is primarily useful for testing during development, and
#' should not be used in production code.
#'
#' \code{unload} does not currently detach environments.
#' @seealso \code{import}
#' @seealso \code{reload}
#' @export
unload = function (module) {
stopifnot(inherits(module, 'module'))
module_ref = as.character(substitute(module))
rm(list = module_path(module), envir = .loaded_modules)
# unset the module reference in its scope, i.e. the caller’s environment or
# some parent thereof.
rm(list = module_ref, envir = parent.frame(), inherits = TRUE)
}
#' Reload a given module
#'
#' Remove the loaded module from the cache, forcing a reload. The newly reloaded
#' module is assigned to the module reference in the calling scope.
#' @param module reference to the module which should be unloaded
#' @note Any other references to the loaded modules remain unchanged, and will
#' still work. Reloading modules is primarily useful for testing during
#' development, and should not be used in production code.
#'
#' \code{reload} does not work correctly with attached environments.
#' @seealso \code{import}
#' @seealso \code{unload}
#' @export
reload = function (module) {
stopifnot(inherits(module, 'module'))
module_ref = as.character(substitute(module))
module_path = module_path(module)
module_name = module_name(module)
rm(list = module_path, envir = .loaded_modules)
#' @TODO Once we have `attach`, need also to take care of the search path
#' and whatnot.
mod_ns = do_import(module_name, module_path)
module_parent = parent.frame()
mod_env = exhibit_namespace(mod_ns, module_ref, module_parent)
assign(module_ref, mod_env, envir = module_parent, inherits = TRUE)
}
| R | 5 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/R/import.r | [
"MIT"
] |
copy %_NTTREE%\vtapp.exe %_NTTREE%\unittests\vtapp.exe
te %_NTTREE%\unittests\conhost.uia.tests.dll %1 %2 %3 %4 %5 %6 %7 %8 %9 | Batchfile | 0 | Ghosty141/Terminal | src/host/ft_uia/run.bat | [
"MIT"
] |
-- " Test for expression comparators.
local helpers = require('test.functional.helpers')(after_each)
local clear, eq = helpers.clear, helpers.eq
local eval, command = helpers.eval, helpers.command
describe('comparators', function()
before_each(clear)
it('is working', function()
command('set isident+=#')
eq(1, eval('1 is#1'))
end)
end)
| Lua | 4 | uga-rosa/neovim | test/functional/legacy/comparators_spec.lua | [
"Vim"
] |
---
name: Leaflet.ClickTolerance
category: events
repo: https://github.com/geoloep/Leaflet.ClickTolerance
author: Geoloep
author-url: https://github.com/geoloep
demo:
compatible-v0:
compatible-v1: true
---
This plugin allows you to increase the click tolerance of canvas powered layers, making it possible to increase the clickable area of vector layers beyond their visible extent. Useful when your features are difficult to click otherwise.
| Markdown | 2 | geoapify/Leaflet | docs/_plugins/events/leaflet-clicktolerance.md | [
"BSD-2-Clause"
] |
/*
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.servlet.handler;
import java.util.Collections;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import org.springframework.beans.FatalBeanException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.support.StaticApplicationContext;
import org.springframework.web.context.support.XmlWebApplicationContext;
import org.springframework.web.servlet.HandlerExecutionChain;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.HandlerMapping;
import org.springframework.web.testfixture.servlet.MockHttpServletRequest;
import org.springframework.web.testfixture.servlet.MockServletContext;
import org.springframework.web.util.WebUtils;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.springframework.web.servlet.HandlerMapping.BEST_MATCHING_HANDLER_ATTRIBUTE;
import static org.springframework.web.servlet.HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE;
/**
* @author Rod Johnson
* @author Juergen Hoeller
*/
public class SimpleUrlHandlerMappingTests {
@Test
@SuppressWarnings("resource")
public void handlerBeanNotFound() {
MockServletContext sc = new MockServletContext("");
XmlWebApplicationContext root = new XmlWebApplicationContext();
root.setServletContext(sc);
root.setConfigLocations("/org/springframework/web/servlet/handler/map1.xml");
root.refresh();
XmlWebApplicationContext wac = new XmlWebApplicationContext();
wac.setParent(root);
wac.setServletContext(sc);
wac.setNamespace("map2err");
wac.setConfigLocations("/org/springframework/web/servlet/handler/map2err.xml");
assertThatExceptionOfType(FatalBeanException.class)
.isThrownBy(wac::refresh)
.withCauseInstanceOf(NoSuchBeanDefinitionException.class)
.satisfies(ex -> {
NoSuchBeanDefinitionException cause = (NoSuchBeanDefinitionException) ex.getCause();
assertThat(cause.getBeanName()).isEqualTo("mainControlle");
});
}
@Test
public void testNewlineInRequest() throws Exception {
Object controller = new Object();
SimpleUrlHandlerMapping mapping = new SimpleUrlHandlerMapping(Collections.singletonMap("/*/baz", controller));
mapping.setUrlDecode(false);
mapping.setApplicationContext(new StaticApplicationContext());
MockHttpServletRequest request = new MockHttpServletRequest("GET", "/foo%0a%0dbar/baz");
HandlerExecutionChain hec = mapping.getHandler(request);
assertThat(hec).isNotNull();
assertThat(hec.getHandler()).isSameAs(controller);
}
@ParameterizedTest
@ValueSource(strings = {"urlMapping", "urlMappingWithProps", "urlMappingWithPathPatterns"})
void checkMappings(String beanName) throws Exception {
MockServletContext sc = new MockServletContext("");
XmlWebApplicationContext wac = new XmlWebApplicationContext();
wac.setServletContext(sc);
wac.setConfigLocations("/org/springframework/web/servlet/handler/map2.xml");
wac.refresh();
Object bean = wac.getBean("mainController");
Object otherBean = wac.getBean("otherController");
Object defaultBean = wac.getBean("starController");
HandlerMapping hm = (HandlerMapping) wac.getBean(beanName);
wac.close();
boolean usePathPatterns = (((AbstractHandlerMapping) hm).getPatternParser() != null);
MockHttpServletRequest request = PathPatternsTestUtils.initRequest("GET", "/welcome.html", usePathPatterns);
HandlerExecutionChain chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("/welcome.html");
assertThat(request.getAttribute(BEST_MATCHING_HANDLER_ATTRIBUTE)).isEqualTo(bean);
request = PathPatternsTestUtils.initRequest("GET", "/welcome.x", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(otherBean);
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("welcome.x");
assertThat(request.getAttribute(BEST_MATCHING_HANDLER_ATTRIBUTE)).isEqualTo(otherBean);
request = PathPatternsTestUtils.initRequest("GET", "/app", "/welcome.x", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(otherBean);
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("welcome.x");
assertThat(request.getAttribute(BEST_MATCHING_HANDLER_ATTRIBUTE)).isEqualTo(otherBean);
request = PathPatternsTestUtils.initRequest("GET", "/welcome/", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(otherBean);
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("welcome");
request = PathPatternsTestUtils.initRequest("GET", "/", usePathPatterns);
request.setServletPath("/welcome.html");
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", "/app", "/welcome.html", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", "/show.html", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", "/bookseats.html", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", null, "/original-welcome.html", usePathPatterns,
req -> req.setAttribute(WebUtils.INCLUDE_REQUEST_URI_ATTRIBUTE, "/welcome.html"));
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", null, "/original-show.html", usePathPatterns,
req -> req.setAttribute(WebUtils.INCLUDE_REQUEST_URI_ATTRIBUTE, "/show.html"));
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", null, "/original-bookseats.html", usePathPatterns,
req -> req.setAttribute(WebUtils.INCLUDE_REQUEST_URI_ATTRIBUTE, "/bookseats.html"));
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
request = PathPatternsTestUtils.initRequest("GET", "/", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler()).isSameAs(bean);
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("/");
request = PathPatternsTestUtils.initRequest("GET", "/somePath", usePathPatterns);
chain = getHandler(hm, request);
assertThat(chain.getHandler() == defaultBean).as("Handler is correct bean").isTrue();
assertThat(request.getAttribute(PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE)).isEqualTo("/somePath");
}
private HandlerExecutionChain getHandler(HandlerMapping mapping, MockHttpServletRequest request) throws Exception {
HandlerExecutionChain chain = mapping.getHandler(request);
for (HandlerInterceptor interceptor : chain.getInterceptorList()) {
interceptor.preHandle(request, null, chain.getHandler());
}
return chain;
}
}
| Java | 5 | spreoW/spring-framework | spring-webmvc/src/test/java/org/springframework/web/servlet/handler/SimpleUrlHandlerMappingTests.java | [
"Apache-2.0"
] |
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/kernels/internal/reference/broadcast_to.h"
#include <string.h>
#include <cstdint>
#include <memory>
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/kernels/internal/tensor.h"
#include "tensorflow/lite/kernels/kernel_util.h"
namespace tflite {
namespace ops {
namespace builtin {
namespace broadcastto {
constexpr int kInputTensor = 0;
constexpr int kShapeTensor = 1;
constexpr int kOutputTensor = 0;
constexpr int kMaxDims = 8;
struct BroadcastToContext {
BroadcastToContext(TfLiteContext* context, TfLiteNode* node) {
input = GetInput(context, node, kInputTensor);
shape = GetInput(context, node, kShapeTensor);
output = GetOutput(context, node, kOutputTensor);
}
const TfLiteTensor* input;
const TfLiteTensor* shape;
TfLiteTensor* output;
};
TfLiteStatus ResizeOutputTensor(TfLiteContext* context,
BroadcastToContext* op_context) {
// Ensures the shape is 1D tensor.
TF_LITE_ENSURE_EQ(context, NumDimensions(op_context->shape), 1);
// Ensure output dims is not less than input dims.
int input_num_dims = NumDimensions(op_context->input);
int output_num_dims = SizeOfDimension(op_context->shape, 0);
TF_LITE_ENSURE_MSG(context, input_num_dims <= output_num_dims,
"Output shape must be broadcastable from input shape.");
TF_LITE_ENSURE_MSG(context, output_num_dims <= kMaxDims,
"BroadcastTo only supports 1-8D tensor.");
// Check if output shape is broadcastable from input shape.
auto get_shape_data = [op_context](int i) -> int32_t {
if (op_context->shape->type == kTfLiteInt32) {
return GetTensorData<int32_t>(op_context->shape)[i];
} else {
return GetTensorData<int64_t>(op_context->shape)[i];
}
};
int extending_dims = output_num_dims - input_num_dims;
for (int idx = 0; idx < input_num_dims; ++idx) {
TF_LITE_ENSURE_MSG(context,
(SizeOfDimension(op_context->input, idx) == 1 ||
SizeOfDimension(op_context->input, idx) ==
get_shape_data(extending_dims + idx)),
"Output shape must be broadcastable from input shape.");
}
// Resizing the shape of the output tensor.
TfLiteIntArray* output_shape = TfLiteIntArrayCreate(output_num_dims);
std::unique_ptr<TfLiteIntArray, void (*)(TfLiteIntArray*)>
scoped_output_shape(output_shape, TfLiteIntArrayFree);
for (int idx = 0; idx < output_num_dims; ++idx) {
output_shape->data[idx] = get_shape_data(idx);
}
return context->ResizeTensor(context, op_context->output,
scoped_output_shape.release());
}
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
TF_LITE_ENSURE(context, NumInputs(node) == 2);
TF_LITE_ENSURE_EQ(context, NumOutputs(node), 1);
TF_LITE_ENSURE_MSG(context,
(NumDimensions(GetInput(context, node, 0)) <= kMaxDims),
"BroadcastTo only supports 1-8D tensor.");
BroadcastToContext op_context(context, node);
TF_LITE_ENSURE(context, op_context.shape->type == kTfLiteInt32 ||
op_context.shape->type == kTfLiteInt64);
TF_LITE_ENSURE_EQ(context, op_context.input->type, op_context.output->type);
// Not yet support string type due to the use of memcopy with fixed size.
TF_LITE_ENSURE(context, op_context.input->type != kTfLiteString);
if (IsConstantTensor(op_context.shape)) {
return ResizeOutputTensor(context, &op_context);
}
SetTensorToDynamic(op_context.output);
return kTfLiteOk;
}
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
BroadcastToContext op_context(context, node);
if (IsDynamicTensor(op_context.output)) {
TF_LITE_ENSURE_OK(context, ResizeOutputTensor(context, &op_context));
}
// BroadcastTo op support upto 8 dims, matching the support of Tensorflow.
reference_ops::BroadcastTo<kMaxDims>(
GetTensorShape(op_context.input), op_context.input->data.raw,
GetTensorShape(op_context.output), op_context.output->data.raw,
op_context.input->type);
return kTfLiteOk;
}
} // namespace broadcastto
TfLiteRegistration* Register_BROADCAST_TO() {
static TfLiteRegistration r = {nullptr, nullptr, broadcastto::Prepare,
broadcastto::Eval};
return &r;
}
} // namespace builtin
} // namespace ops
} // namespace tflite
| C++ | 5 | EricRemmerswaal/tensorflow | tensorflow/lite/kernels/broadcast_to.cc | [
"Apache-2.0"
] |
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_CORE_KERNELS_STACK_H_
#define TENSORFLOW_CORE_KERNELS_STACK_H_
// See docs in ../ops/data_flow_ops.cc.
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/types.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
// A per-run local stack. The stack uses a "per-step" resource manager which
// ensures that correct garbage collection on error or successful completion.
class StackOp : public OpKernel {
public:
explicit StackOp(OpKernelConstruction* context);
void Compute(OpKernelContext* ctx) override;
private:
DataType elem_type_;
string stack_name_;
TF_DISALLOW_COPY_AND_ASSIGN(StackOp);
};
class StackPushOp : public AsyncOpKernel {
public:
StackPushOp(OpKernelConstruction* context, bool allow_swapping);
void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override;
bool IsExpensive() override;
private:
bool swap_memory_ = false;
};
// Templated helper to make it easier to register kernels with or without
// swapping.
template <bool allow_swapping>
class TemplatedStackPushOp : public StackPushOp {
public:
TemplatedStackPushOp(OpKernelConstruction* context)
: StackPushOp(context, allow_swapping) {}
};
class StackPopOp : public AsyncOpKernel {
public:
explicit StackPopOp(OpKernelConstruction* context);
void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override;
bool IsExpensive() override;
};
class StackCloseOp : public OpKernel {
public:
explicit StackCloseOp(OpKernelConstruction* context);
void Compute(OpKernelContext* ctx) override;
bool IsExpensive() override;
};
} // namespace tensorflow
#endif // TENSORFLOW_CORE_KERNELS_STACK_H_
| C | 3 | abhaikollara/tensorflow | tensorflow/core/kernels/stack.h | [
"Apache-2.0"
] |
[Desktop Entry]
Name=Genesis Plus GX
Comment=Genesis Plus GX for GCW-Zero
MimeType=application/zip;application/x-genesis-rom;application/x-megadrive-rom;application/x-sms-rom;application/x-cd-image;
Exec=gen_gcw0 %f
Terminal=false
Type=Application
StartupNotify=true
Icon=md
Categories=emulators;
X-OD-Manual=gcw0readme.txt
| desktop | 2 | MatPoliquin/retro | retro/cores/genesis/gcw0/opk-data/default.gcw0.desktop | [
"MIT-0",
"MIT"
] |
s: [
prin "s: "
probe s
print "do s"
]
do s
| Rebol | 0 | MakeNowJust/quine | quine.r3 | [
"Beerware"
] |
[Files]
Source: "RevitPythonShell\bin\Release\2018\PythonConsoleControl.dll"; DestDir: "{app}"; Flags: replacesameversion
Source: "RevitPythonShell\bin\Release\2018\RevitPythonShell.dll"; DestDir: "{app}"; Flags: replacesameversion
Source: "RevitPythonShell\bin\Release\2018\RpsRuntime.dll"; DestDir: "{app}"; Flags: replacesameversion
Source: "RevitPythonShell\bin\Release\2018\RevitPythonShell.addin"; DestDir: "{userappdata}\Autodesk\Revit\Addins\2018"; Flags: replacesameversion
Source: "RevitPythonShell\bin\Release\2018\ICSharpCode.AvalonEdit.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\IronPython.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\IronPython.Modules.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\Microsoft.Scripting.Metadata.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\Microsoft.Dynamic.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\Microsoft.Scripting.dll"; DestDir: "{app}"
Source: "RevitPythonShell\bin\Release\2018\DefaultConfig\RevitPythonShell.xml"; DestDir: "{userappdata}\RevitPythonShell\2018"; Flags: onlyifdoesntexist
Source: "RevitPythonShell\bin\Release\2018\DefaultConfig\init.py"; DestDir: {userappdata}\RevitPythonShell\2018; Flags: confirmoverwrite;
Source: "RevitPythonShell\bin\Release\2018\DefaultConfig\startup.py"; DestDir: {userappdata}\RevitPythonShell\2018; Flags: confirmoverwrite;
[code]
{ HANDLE INSTALL PROCESS STEPS }
procedure CurStepChanged(CurStep: TSetupStep);
var
AddInFilePath: String;
LoadedFile : TStrings;
AddInFileContents: String;
ReplaceString: String;
SearchString: String;
begin
if CurStep = ssPostInstall then
begin
AddinFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\2018\RevitPythonShell.addin');
LoadedFile := TStringList.Create;
SearchString := 'Assembly>RevitPythonShell.dll<';
ReplaceString := 'Assembly>' + ExpandConstant('{app}') + '\RevitPythonShell.dll<';
try
LoadedFile.LoadFromFile(AddInFilePath);
AddInFileContents := LoadedFile.Text;
{ Only save if text has been changed. }
if StringChangeEx(AddInFileContents, SearchString, ReplaceString, True) > 0 then
begin;
LoadedFile.Text := AddInFileContents;
LoadedFile.SaveToFile(AddInFilePath);
end;
finally
LoadedFile.Free;
end;
end;
end;
[Setup]
AppName=RevitPythonShell for Autodesk Revit 2018
AppVerName=RevitPythonShell for Autodesk Revit 2018
RestartIfNeededByRun=false
DefaultDirName={pf32}\RevitPythonShell\2018
OutputBaseFilename=Setup_RevitPythonShell_2018
ShowLanguageDialog=auto
FlatComponentsList=false
UninstallFilesDir={app}\Uninstall
UninstallDisplayName=RevitPythonShell for Autodesk Revit 2018
AppVersion=2018.0
VersionInfoVersion=2018.0
VersionInfoDescription=RevitPythonShell for Autodesk Revit 2018
VersionInfoTextVersion=RevitPythonShell for Autodesk Revit 2018
| Inno Setup | 4 | PavelAltynnikov/revitpythonshell | Setup_RevitPythonShell_2018.iss | [
"MIT"
] |
2.788650 0.400948 -9.594930 0.278860 0.040094 -0.959495
4.111870 0.591198 -9.096320 0.389602 0.056016 -0.919278
2.817330 0.000000 -9.594930 0.281727 -0.000000 -0.959494
2.703210 0.793732 -9.594930 0.280320 0.080039 -0.956564
3.985880 1.170360 -9.096320 0.419268 0.123109 -0.899477
0.793732 2.703210 -9.594930 0.080039 0.280320 -0.956564
0.591198 4.111870 -9.096320 0.056016 0.389602 -0.919278
1.170360 3.985880 -9.096320 0.123109 0.419268 -0.899477
0.400948 2.788650 -9.594930 0.040094 0.278860 -0.959495
0.000000 2.817330 -9.594930 0.000000 0.281727 -0.959494
0.000000 4.154150 -9.096320 0.000000 0.436968 -0.899477
-0.591198 4.111870 -9.096320 -0.056016 0.389602 -0.919278
-0.400948 2.788650 -9.594930 -0.040094 0.278860 -0.959495
-0.793732 2.703210 -9.594930 -0.080039 0.280320 -0.956564
-1.170360 3.985880 -9.096320 -0.123109 0.419268 -0.899477
-2.703210 0.793732 -9.594930 -0.280320 0.080039 -0.956564
-4.111870 0.591198 -9.096320 -0.389602 0.056016 -0.919278
-3.985880 1.170360 -9.096320 -0.419268 0.123109 -0.899477
-2.788650 0.400948 -9.594930 -0.278860 0.040094 -0.959495
-2.817330 0.000000 -9.594930 -0.281727 0.000000 -0.959494
-4.154150 0.000000 -9.096320 -0.436968 0.000000 -0.899477
-4.111870 -0.591198 -9.096320 -0.389602 -0.056016 -0.919278
-2.788650 -0.400948 -9.594930 -0.278860 -0.040094 -0.959495
-2.703210 -0.793732 -9.594930 -0.280320 -0.080039 -0.956564
-3.985880 -1.170360 -9.096320 -0.419268 -0.123109 -0.899477
-0.793732 -2.703210 -9.594930 -0.080039 -0.280320 -0.956564
-0.591198 -4.111870 -9.096320 -0.056016 -0.389602 -0.919278
-1.170360 -3.985880 -9.096320 -0.123109 -0.419268 -0.899477
-0.400948 -2.788650 -9.594930 -0.040094 -0.278860 -0.959495
0.000000 -2.817330 -9.594930 0.000000 -0.281727 -0.959494
0.000000 -4.154150 -9.096320 0.000000 -0.436968 -0.899477
0.591198 -4.111870 -9.096320 0.056016 -0.389602 -0.919278
0.400948 -2.788650 -9.594930 0.040094 -0.278860 -0.959495
0.793732 -2.703210 -9.594930 0.080039 -0.280320 -0.956564
1.170360 -3.985880 -9.096320 0.123109 -0.419268 -0.899477
4.154150 0.000000 -9.096320 0.436968 0.000000 -0.899477
2.703210 -0.793732 -9.594930 0.280320 -0.080039 -0.956564
2.788650 -0.400948 -9.594930 0.278860 -0.040094 -0.959495
4.111870 -0.591198 -9.096320 0.389602 -0.056016 -0.919278
3.985880 -1.170360 -9.096320 0.419268 -0.123109 -0.899477
3.494690 2.245900 -9.096320 0.356647 0.237372 -0.903580
4.548160 2.922920 -8.412540 0.464662 0.292785 -0.835683
3.778750 1.725700 -9.096320 0.367349 0.173160 -0.913822
1.725700 3.778750 -9.096320 0.173160 0.367349 -0.913822
2.922920 4.548160 -8.412540 0.292785 0.464662 -0.835683
2.245900 3.494690 -9.096320 0.237372 0.356647 -0.903580
-2.245900 3.494690 -9.096320 -0.237372 0.356647 -0.903580
-2.922920 4.548160 -8.412540 -0.292785 0.464662 -0.835683
-1.725700 3.778750 -9.096320 -0.173160 0.367349 -0.913822
-3.778750 1.725700 -9.096320 -0.367349 0.173160 -0.913822
-4.548160 2.922920 -8.412540 -0.464662 0.292785 -0.835683
-3.494690 2.245900 -9.096320 -0.356647 0.237372 -0.903580
-3.494690 -2.245900 -9.096320 -0.356647 -0.237372 -0.903580
-4.548160 -2.922920 -8.412540 -0.464662 -0.292785 -0.835683
-3.778750 -1.725700 -9.096320 -0.367349 -0.173160 -0.913822
-1.725700 -3.778750 -9.096320 -0.173160 -0.367349 -0.913822
-2.922920 -4.548160 -8.412540 -0.292785 -0.464662 -0.835683
-2.245900 -3.494690 -9.096320 -0.237372 -0.356647 -0.903580
2.245900 -3.494690 -9.096320 0.237372 -0.356647 -0.903580
2.922920 -4.548160 -8.412540 0.292785 -0.464662 -0.835683
1.725700 -3.778750 -9.096320 0.173160 -0.367349 -0.913822
3.778750 -1.725700 -9.096320 0.367349 -0.173160 -0.913822
4.548160 -2.922920 -8.412540 0.464662 -0.292785 -0.835683
3.494690 -2.245900 -9.096320 0.356647 -0.237372 -0.903580
4.917840 2.245900 -8.412540 0.483623 0.213308 -0.848886
5.956820 2.720390 -7.557500 0.579121 0.264475 -0.771150
5.509040 3.540440 -7.557500 0.565385 0.351300 -0.746276
4.949110 4.288420 -7.557500 0.493771 0.418273 -0.762390
4.085890 3.540440 -8.412540 0.393313 0.340807 -0.853906
4.288420 4.949110 -7.557500 0.429221 0.504724 -0.749015
3.540440 5.509040 -7.557500 0.351300 0.565385 -0.746276
2.720390 5.956820 -7.557500 0.264475 0.579121 -0.771150
3.540440 4.085890 -8.412540 0.355119 0.407643 -0.841260
2.245900 4.917840 -8.412540 0.213308 0.483623 -0.848886
-2.245900 4.917840 -8.412540 -0.213308 0.483623 -0.848886
-2.720390 5.956820 -7.557500 -0.264475 0.579121 -0.771150
-3.540440 5.509040 -7.557500 -0.351300 0.565385 -0.746276
-4.288420 4.949110 -7.557500 -0.429221 0.504724 -0.749015
-3.540440 4.085890 -8.412540 -0.355119 0.407643 -0.841260
-4.085890 3.540440 -8.412540 -0.393313 0.340807 -0.853906
-4.949110 4.288420 -7.557500 -0.493771 0.418273 -0.762390
-5.509040 3.540440 -7.557500 -0.565385 0.351300 -0.746276
-5.956820 2.720390 -7.557500 -0.579121 0.264475 -0.771150
-4.917840 2.245900 -8.412540 -0.483623 0.213308 -0.848886
-4.917840 -2.245900 -8.412540 -0.483623 -0.213308 -0.848886
-5.956820 -2.720390 -7.557500 -0.579121 -0.264475 -0.771150
-5.509040 -3.540440 -7.557500 -0.565385 -0.351300 -0.746276
-4.949110 -4.288420 -7.557500 -0.493771 -0.418273 -0.762390
-4.085890 -3.540440 -8.412540 -0.393313 -0.340807 -0.853906
-3.540440 -4.085890 -8.412540 -0.355119 -0.407643 -0.841260
-4.288420 -4.949110 -7.557500 -0.429221 -0.504724 -0.749015
-3.540440 -5.509040 -7.557500 -0.351300 -0.565385 -0.746276
-2.720390 -5.956820 -7.557500 -0.264475 -0.579121 -0.771150
-2.245900 -4.917840 -8.412540 -0.213308 -0.483623 -0.848886
2.245900 -4.917840 -8.412540 0.213308 -0.483623 -0.848886
2.720390 -5.956820 -7.557500 0.264475 -0.579121 -0.771150
3.540440 -5.509040 -7.557500 0.351300 -0.565385 -0.746276
3.540440 -4.085890 -8.412540 0.355119 -0.407643 -0.841260
4.288420 -4.949110 -7.557500 0.429221 -0.504724 -0.749015
4.085890 -3.540440 -8.412540 0.393313 -0.340807 -0.853906
4.949110 -4.288420 -7.557500 0.493771 -0.418273 -0.762390
5.509040 -3.540440 -7.557500 0.565385 -0.351300 -0.746276
5.956820 -2.720390 -7.557500 0.579121 -0.264475 -0.771150
4.917840 -2.245900 -8.412540 0.483623 -0.213308 -0.848886
6.357770 4.085890 -6.548610 0.636372 0.407646 -0.654871
5.711580 4.949110 -6.548610 0.571880 0.494062 -0.654871
4.949110 5.711580 -6.548610 0.504986 0.582786 -0.636671
4.085890 6.357770 -6.548610 0.407646 0.636372 -0.654871
-4.085890 6.357770 -6.548610 -0.407646 0.636372 -0.654871
-4.949110 5.711580 -6.548610 -0.504986 0.582786 -0.636671
-6.357770 4.085890 -6.548610 -0.636372 0.407646 -0.654871
-5.711580 4.949110 -6.548610 -0.571880 0.494062 -0.654871
-6.357770 -4.085890 -6.548610 -0.636372 -0.407646 -0.654871
-5.711580 -4.949110 -6.548610 -0.571880 -0.494062 -0.654871
-4.085890 -6.357770 -6.548610 -0.407646 -0.636372 -0.654871
-4.949110 -5.711580 -6.548610 -0.504986 -0.582786 -0.636671
4.085890 -6.357770 -6.548610 0.407646 -0.636372 -0.654871
4.949110 -5.711580 -6.548610 0.504986 -0.582786 -0.636671
6.357770 -4.085890 -6.548610 0.636372 -0.407646 -0.654871
5.711580 -4.949110 -6.548610 0.571880 -0.494062 -0.654871
7.652310 3.494690 -5.406410 0.753288 0.344015 -0.560545
7.077080 4.548160 -5.406410 0.707856 0.464658 -0.532008
6.874540 3.139500 -6.548610 0.673054 0.307374 -0.672696
4.548160 7.077080 -5.406410 0.464658 0.707856 -0.532008
3.494690 7.652310 -5.406410 0.344015 0.753288 -0.560545
3.139500 6.874540 -6.548610 0.307374 0.673054 -0.672696
-3.494690 7.652310 -5.406410 -0.344015 0.753288 -0.560545
-4.548160 7.077080 -5.406410 -0.464658 0.707856 -0.532008
-3.139500 6.874540 -6.548610 -0.307374 0.673054 -0.672696
-7.652310 3.494690 -5.406410 -0.753288 0.344015 -0.560545
-7.077080 4.548160 -5.406410 -0.707856 0.464658 -0.532008
-6.874540 3.139500 -6.548610 -0.673054 0.307374 -0.672696
-7.652310 -3.494690 -5.406410 -0.753288 -0.344015 -0.560545
-7.077080 -4.548160 -5.406410 -0.707856 -0.464658 -0.532008
-6.874540 -3.139500 -6.548610 -0.673054 -0.307374 -0.672696
-3.494690 -7.652310 -5.406410 -0.344015 -0.753288 -0.560545
-4.548160 -7.077080 -5.406410 -0.464658 -0.707856 -0.532008
-3.139500 -6.874540 -6.548610 -0.307374 -0.673054 -0.672696
3.494690 -7.652310 -5.406410 0.344015 -0.753288 -0.560545
4.548160 -7.077080 -5.406410 0.464658 -0.707856 -0.532008
3.139500 -6.874540 -6.548610 0.307374 -0.673054 -0.672696
6.874540 -3.139500 -6.548610 0.673054 -0.307374 -0.672696
7.652310 -3.494690 -5.406410 0.753288 -0.344015 -0.560545
7.077080 -4.548160 -5.406410 0.707856 -0.464658 -0.532008
8.071770 2.370090 -5.406410 0.819306 0.240571 -0.520445
9.003730 1.294540 -4.154150 0.897446 0.119338 -0.424676
8.326910 1.197230 -5.406410 0.823258 0.129964 -0.552590
8.727860 2.562730 -4.154150 0.882098 0.245008 -0.402336
6.874540 5.956820 -4.154150 0.679773 0.589027 -0.436984
7.652310 4.917840 -4.154150 0.762817 0.506199 -0.402335
6.357770 5.509040 -5.406410 0.622305 0.554421 -0.552588
5.956820 6.874540 -4.154150 0.596213 0.686989 -0.415424
5.509040 6.357770 -5.406410 0.565375 0.633261 -0.528519
4.917840 7.652310 -4.154150 0.506199 0.762817 -0.402335
2.370090 8.071770 -5.406410 0.240571 0.819306 -0.520445
1.294540 9.003730 -4.154150 0.119338 0.897446 -0.424676
2.562730 8.727860 -4.154150 0.245008 0.882098 -0.402336
1.197230 8.326910 -5.406410 0.129964 0.823258 -0.552590
0.000000 8.412540 -5.406410 0.000000 0.841248 -0.540650
0.000000 9.096320 -4.154150 0.000000 0.909628 -0.415423
-1.294540 9.003730 -4.154150 -0.119338 0.897446 -0.424676
-1.197230 8.326910 -5.406410 -0.129964 0.823258 -0.552590
-2.370090 8.071770 -5.406410 -0.240571 0.819306 -0.520445
-2.562730 8.727860 -4.154150 -0.245008 0.882098 -0.402336
-5.956820 6.874540 -4.154150 -0.596213 0.686989 -0.415424
-4.917840 7.652310 -4.154150 -0.506199 0.762817 -0.402335
-5.509040 6.357770 -5.406410 -0.565375 0.633261 -0.528519
-6.874540 5.956820 -4.154150 -0.679773 0.589027 -0.436984
-6.357770 5.509040 -5.406410 -0.622305 0.554421 -0.552588
-7.652310 4.917840 -4.154150 -0.762817 0.506199 -0.402335
-8.071770 2.370090 -5.406410 -0.819306 0.240571 -0.520445
-9.003730 1.294540 -4.154150 -0.897446 0.119338 -0.424676
-8.727860 2.562730 -4.154150 -0.882098 0.245008 -0.402336
-8.326910 1.197230 -5.406410 -0.823258 0.129964 -0.552590
-8.412540 0.000000 -5.406410 -0.841248 0.000000 -0.540650
-9.096320 0.000000 -4.154150 -0.909628 0.000000 -0.415423
-9.003730 -1.294540 -4.154150 -0.897446 -0.119338 -0.424676
-8.326910 -1.197230 -5.406410 -0.823258 -0.129964 -0.552590
-8.071770 -2.370090 -5.406410 -0.819306 -0.240571 -0.520445
-8.727860 -2.562730 -4.154150 -0.882098 -0.245008 -0.402336
-6.874540 -5.956820 -4.154150 -0.679773 -0.589027 -0.436984
-7.652310 -4.917840 -4.154150 -0.762817 -0.506199 -0.402335
-6.357770 -5.509040 -5.406410 -0.622305 -0.554421 -0.552588
-5.956820 -6.874540 -4.154150 -0.596213 -0.686989 -0.415424
-5.509040 -6.357770 -5.406410 -0.565375 -0.633261 -0.528519
-4.917840 -7.652310 -4.154150 -0.506199 -0.762817 -0.402335
-2.370090 -8.071770 -5.406410 -0.240571 -0.819306 -0.520445
-1.294540 -9.003730 -4.154150 -0.119338 -0.897446 -0.424676
-2.562730 -8.727860 -4.154150 -0.245008 -0.882098 -0.402336
-1.197230 -8.326910 -5.406410 -0.129964 -0.823258 -0.552590
0.000000 -8.412540 -5.406410 0.000000 -0.841248 -0.540650
0.000000 -9.096320 -4.154150 0.000000 -0.909628 -0.415423
1.294540 -9.003730 -4.154150 0.119338 -0.897446 -0.424676
1.197230 -8.326910 -5.406410 0.129964 -0.823258 -0.552590
2.370090 -8.071770 -5.406410 0.240571 -0.819306 -0.520445
2.562730 -8.727860 -4.154150 0.245008 -0.882098 -0.402336
5.956820 -6.874540 -4.154150 0.596213 -0.686989 -0.415424
4.917840 -7.652310 -4.154150 0.506199 -0.762817 -0.402335
5.509040 -6.357770 -5.406410 0.565375 -0.633261 -0.528519
6.874540 -5.956820 -4.154150 0.679773 -0.589027 -0.436984
6.357770 -5.509040 -5.406410 0.622305 -0.554421 -0.552588
7.652310 -4.917840 -4.154150 0.762817 -0.506199 -0.402335
9.096320 0.000000 -4.154150 0.909628 0.000000 -0.415423
8.412540 0.000000 -5.406410 0.841248 0.000000 -0.540650
8.071770 -2.370090 -5.406410 0.819306 -0.240571 -0.520445
8.326910 -1.197230 -5.406410 0.823258 -0.129964 -0.552590
9.003730 -1.294540 -4.154150 0.897446 -0.119338 -0.424676
8.727860 -2.562730 -4.154150 0.882098 -0.245008 -0.402336
9.594930 0.000000 -2.817330 0.952503 -0.000000 -0.304530
9.497270 1.365500 -2.817330 0.949792 0.136075 -0.281742
8.274300 3.778750 -4.154150 0.827426 0.377874 -0.415425
9.206270 2.703210 -2.817330 0.920592 0.280314 -0.271909
8.727860 3.985880 -2.817330 0.872783 0.398588 -0.281740
3.778750 8.274300 -4.154150 0.377874 0.827426 -0.415425
2.703210 9.206270 -2.817330 0.280314 0.920592 -0.271909
3.985880 8.727860 -2.817330 0.398588 0.872783 -0.281740
0.000000 9.594930 -2.817330 0.000000 0.952503 -0.304530
1.365500 9.497270 -2.817330 0.136075 0.949792 -0.281742
-1.365500 9.497270 -2.817330 -0.136075 0.949792 -0.281742
-3.778750 8.274300 -4.154150 -0.377874 0.827426 -0.415425
-2.703210 9.206270 -2.817330 -0.280314 0.920592 -0.271909
-3.985880 8.727860 -2.817330 -0.398588 0.872783 -0.281740
-8.274300 3.778750 -4.154150 -0.827426 0.377874 -0.415425
-9.206270 2.703210 -2.817330 -0.920592 0.280314 -0.271909
-8.727860 3.985880 -2.817330 -0.872783 0.398588 -0.281740
-9.594930 0.000000 -2.817330 -0.952503 0.000000 -0.304530
-9.497270 1.365500 -2.817330 -0.949792 0.136075 -0.281742
-9.497270 -1.365500 -2.817330 -0.949792 -0.136075 -0.281742
-8.274300 -3.778750 -4.154150 -0.827426 -0.377874 -0.415425
-9.206270 -2.703210 -2.817330 -0.920592 -0.280314 -0.271909
-8.727860 -3.985880 -2.817330 -0.872783 -0.398588 -0.281740
-3.778750 -8.274300 -4.154150 -0.377874 -0.827426 -0.415425
-2.703210 -9.206270 -2.817330 -0.280314 -0.920592 -0.271909
-3.985880 -8.727860 -2.817330 -0.398588 -0.872783 -0.281740
0.000000 -9.594930 -2.817330 -0.000000 -0.952503 -0.304530
-1.365500 -9.497270 -2.817330 -0.136075 -0.949792 -0.281742
1.365500 -9.497270 -2.817330 0.136075 -0.949792 -0.281742
3.778750 -8.274300 -4.154150 0.377874 -0.827426 -0.415425
2.703210 -9.206270 -2.817330 0.280314 -0.920592 -0.271909
3.985880 -8.727860 -2.817330 0.398588 -0.872783 -0.281740
8.274300 -3.778750 -4.154150 0.827426 -0.377874 -0.415425
9.206270 -2.703210 -2.817330 0.920592 -0.280314 -0.271909
8.727860 -3.985880 -2.817330 0.872783 -0.398588 -0.281740
9.497270 -1.365500 -2.817330 0.949792 -0.136075 -0.281742
9.797470 1.408660 -1.423150 0.976116 0.164179 -0.142279
9.497270 2.788650 -1.423150 0.949726 0.278867 -0.142317
9.003730 4.111870 -1.423150 0.900373 0.411187 -0.142317
8.071770 5.187410 -2.817330 0.814706 0.512171 -0.271910
8.326910 5.351380 -1.423150 0.826500 0.548159 -0.128135
7.480570 6.481950 -1.423150 0.745280 0.645790 -0.165869
7.251370 6.283340 -2.817330 0.719854 0.623757 -0.304528
5.187410 8.071770 -2.817330 0.512171 0.814706 -0.271910
6.481950 7.480570 -1.423150 0.648378 0.747898 -0.142320
6.283340 7.251370 -2.817330 0.628694 0.724822 -0.281739
5.351380 8.326910 -1.423150 0.548159 0.826500 -0.128135
4.111870 9.003730 -1.423150 0.411187 0.900373 -0.142317
2.788650 9.497270 -1.423150 0.278867 0.949726 -0.142317
1.408660 9.797470 -1.423150 0.164179 0.976116 -0.142279
-1.408660 9.797470 -1.423150 -0.164179 0.976116 -0.142279
-2.788650 9.497270 -1.423150 -0.278867 0.949726 -0.142317
-4.111870 9.003730 -1.423150 -0.411187 0.900373 -0.142317
-5.187410 8.071770 -2.817330 -0.512171 0.814706 -0.271910
-5.351380 8.326910 -1.423150 -0.548159 0.826500 -0.128135
-6.481950 7.480570 -1.423150 -0.648378 0.747898 -0.142320
-6.283340 7.251370 -2.817330 -0.628694 0.724822 -0.281739
-8.071770 5.187410 -2.817330 -0.814706 0.512171 -0.271910
-7.480570 6.481950 -1.423150 -0.745280 0.645790 -0.165869
-7.251370 6.283340 -2.817330 -0.719854 0.623757 -0.304528
-8.326910 5.351380 -1.423150 -0.826500 0.548159 -0.128135
-9.003730 4.111870 -1.423150 -0.900373 0.411187 -0.142317
-9.497270 2.788650 -1.423150 -0.949726 0.278867 -0.142317
-9.797470 1.408660 -1.423150 -0.976116 0.164179 -0.142279
-9.797470 -1.408660 -1.423150 -0.976116 -0.164179 -0.142279
-9.497270 -2.788650 -1.423150 -0.949726 -0.278867 -0.142317
-9.003730 -4.111870 -1.423150 -0.900373 -0.411187 -0.142317
-8.071770 -5.187410 -2.817330 -0.814706 -0.512171 -0.271910
-8.326910 -5.351380 -1.423150 -0.826500 -0.548159 -0.128135
-7.480570 -6.481950 -1.423150 -0.745280 -0.645790 -0.165869
-7.251370 -6.283340 -2.817330 -0.719854 -0.623757 -0.304528
-5.187410 -8.071770 -2.817330 -0.512171 -0.814706 -0.271910
-6.481950 -7.480570 -1.423150 -0.648378 -0.747898 -0.142320
-6.283340 -7.251370 -2.817330 -0.628694 -0.724822 -0.281739
-5.351380 -8.326910 -1.423150 -0.548159 -0.826500 -0.128135
-4.111870 -9.003730 -1.423150 -0.411187 -0.900373 -0.142317
-2.788650 -9.497270 -1.423150 -0.278867 -0.949726 -0.142317
-1.408660 -9.797470 -1.423150 -0.164179 -0.976116 -0.142279
1.408660 -9.797470 -1.423150 0.164179 -0.976116 -0.142279
2.788650 -9.497270 -1.423150 0.278867 -0.949726 -0.142317
4.111870 -9.003730 -1.423150 0.411187 -0.900373 -0.142317
5.187410 -8.071770 -2.817330 0.512171 -0.814706 -0.271910
5.351380 -8.326910 -1.423150 0.548159 -0.826500 -0.128135
6.481950 -7.480570 -1.423150 0.648378 -0.747898 -0.142320
6.283340 -7.251370 -2.817330 0.628694 -0.724822 -0.281739
8.071770 -5.187410 -2.817330 0.814706 -0.512171 -0.271910
7.480570 -6.481950 -1.423150 0.745280 -0.645790 -0.165869
7.251370 -6.283340 -2.817330 0.719854 -0.623757 -0.304528
8.326910 -5.351380 -1.423150 0.826500 -0.548159 -0.128135
9.003730 -4.111870 -1.423150 0.900373 -0.411187 -0.142317
9.497270 -2.788650 -1.423150 0.949726 -0.278867 -0.142317
9.797470 -1.408660 -1.423150 0.976116 -0.164179 -0.142279
9.594930 2.817330 0.000000 0.959492 0.281735 0.000000
9.898220 1.423150 0.000000 0.992932 0.118683 0.000000
8.412540 5.406410 0.000000 0.853901 0.520435 0.000000
7.557500 6.548610 0.000000 0.755749 0.654861 -0.000000
6.548610 7.557500 0.000000 0.636663 0.771142 0.000000
5.406410 8.412540 0.000000 0.520435 0.853901 0.000000
2.817330 9.594930 0.000000 0.281735 0.959492 0.000000
1.423150 9.898220 0.000000 0.118683 0.992932 -0.000000
-2.817330 9.594930 0.000000 -0.281735 0.959492 0.000000
-1.423150 9.898220 0.000000 -0.118683 0.992932 0.000000
-5.406410 8.412540 0.000000 -0.520435 0.853901 0.000000
-6.548610 7.557500 0.000000 -0.636663 0.771142 0.000000
-7.557500 6.548610 0.000000 -0.755749 0.654861 0.000000
-8.412540 5.406410 0.000000 -0.853901 0.520435 0.000000
-9.594930 2.817330 0.000000 -0.959492 0.281735 0.000000
-9.898220 1.423150 0.000000 -0.992932 0.118683 -0.000000
-9.594930 -2.817330 0.000000 -0.959492 -0.281735 0.000000
-9.898220 -1.423150 0.000000 -0.992932 -0.118683 -0.000000
-8.412540 -5.406410 0.000000 -0.853901 -0.520435 0.000000
-7.557500 -6.548610 0.000000 -0.755749 -0.654861 -0.000000
-6.548610 -7.557500 0.000000 -0.636663 -0.771142 0.000000
-5.406410 -8.412540 0.000000 -0.520435 -0.853901 0.000000
-2.817330 -9.594930 0.000000 -0.281735 -0.959492 0.000000
-1.423150 -9.898220 0.000000 -0.118683 -0.992932 0.000000
2.817330 -9.594930 0.000000 0.281735 -0.959492 0.000000
1.423150 -9.898220 0.000000 0.118683 -0.992932 -0.000000
5.406410 -8.412540 0.000000 0.520435 -0.853901 0.000000
6.548610 -7.557500 0.000000 0.636663 -0.771142 0.000000
7.557500 -6.548610 0.000000 0.755749 -0.654861 0.000000
8.412540 -5.406410 0.000000 0.853901 -0.520435 0.000000
9.594930 -2.817330 0.000000 0.959492 -0.281735 0.000000
9.898220 -1.423150 0.000000 0.992932 -0.118683 0.000000
9.797470 1.408660 1.423150 0.976116 0.164179 0.142279
9.497270 2.788650 1.423150 0.949726 0.278867 0.142317
9.003730 4.111870 1.423150 0.900373 0.411187 0.142317
9.096320 4.154150 0.000000 0.909632 0.415414 0.000000
8.326910 5.351380 1.423150 0.826500 0.548159 0.128135
7.480570 6.481950 1.423150 0.745280 0.645790 0.165869
6.481950 7.480570 1.423150 0.648378 0.747898 0.142320
5.351380 8.326910 1.423150 0.548159 0.826500 0.128135
4.111870 9.003730 1.423150 0.411187 0.900373 0.142317
4.154150 9.096320 0.000000 0.415414 0.909632 0.000000
2.788650 9.497270 1.423150 0.278867 0.949726 0.142317
1.408660 9.797470 1.423150 0.164179 0.976116 0.142279
-1.408660 9.797470 1.423150 -0.164179 0.976116 0.142279
-2.788650 9.497270 1.423150 -0.278867 0.949726 0.142317
-4.111870 9.003730 1.423150 -0.411187 0.900373 0.142317
-4.154150 9.096320 0.000000 -0.415414 0.909632 0.000000
-5.351380 8.326910 1.423150 -0.548159 0.826500 0.128135
-6.481950 7.480570 1.423150 -0.648378 0.747898 0.142320
-7.480570 6.481950 1.423150 -0.745280 0.645790 0.165869
-8.326910 5.351380 1.423150 -0.826500 0.548159 0.128135
-9.003730 4.111870 1.423150 -0.900373 0.411187 0.142317
-9.096320 4.154150 0.000000 -0.909632 0.415414 0.000000
-9.497270 2.788650 1.423150 -0.949726 0.278867 0.142317
-9.797470 1.408660 1.423150 -0.976116 0.164179 0.142279
-9.797470 -1.408660 1.423150 -0.976116 -0.164179 0.142279
-9.497270 -2.788650 1.423150 -0.949726 -0.278867 0.142317
-9.003730 -4.111870 1.423150 -0.900373 -0.411187 0.142317
-9.096320 -4.154150 0.000000 -0.909632 -0.415414 0.000000
-8.326910 -5.351380 1.423150 -0.826500 -0.548159 0.128135
-7.480570 -6.481950 1.423150 -0.745280 -0.645790 0.165869
-6.481950 -7.480570 1.423150 -0.648378 -0.747898 0.142320
-5.351380 -8.326910 1.423150 -0.548159 -0.826500 0.128135
-4.111870 -9.003730 1.423150 -0.411187 -0.900373 0.142317
-4.154150 -9.096320 0.000000 -0.415414 -0.909632 0.000000
-2.788650 -9.497270 1.423150 -0.278867 -0.949726 0.142317
-1.408660 -9.797470 1.423150 -0.164179 -0.976116 0.142279
1.408660 -9.797470 1.423150 0.164179 -0.976116 0.142279
2.788650 -9.497270 1.423150 0.278867 -0.949726 0.142317
4.111870 -9.003730 1.423150 0.411187 -0.900373 0.142317
4.154150 -9.096320 0.000000 0.415414 -0.909632 0.000000
5.351380 -8.326910 1.423150 0.548159 -0.826500 0.128135
6.481950 -7.480570 1.423150 0.648378 -0.747898 0.142320
7.480570 -6.481950 1.423150 0.745280 -0.645790 0.165869
8.326910 -5.351380 1.423150 0.826500 -0.548159 0.128135
9.003730 -4.111870 1.423150 0.900373 -0.411187 0.142317
9.096320 -4.154150 0.000000 0.909632 -0.415414 0.000000
9.497270 -2.788650 1.423150 0.949726 -0.278867 0.142317
9.797470 -1.408660 1.423150 0.976116 -0.164179 0.142279
9.206270 2.703210 2.817330 0.920592 0.280314 0.271909
9.497270 1.365500 2.817330 0.949792 0.136075 0.281742
2.703210 9.206270 2.817330 0.280314 0.920592 0.271909
1.365500 9.497270 2.817330 0.136075 0.949792 0.281742
-2.703210 9.206270 2.817330 -0.280314 0.920592 0.271909
-1.365500 9.497270 2.817330 -0.136075 0.949792 0.281742
-9.206270 2.703210 2.817330 -0.920592 0.280314 0.271909
-9.497270 1.365500 2.817330 -0.949792 0.136075 0.281742
-9.206270 -2.703210 2.817330 -0.920592 -0.280314 0.271909
-9.497270 -1.365500 2.817330 -0.949792 -0.136075 0.281742
-2.703210 -9.206270 2.817330 -0.280314 -0.920592 0.271909
-1.365500 -9.497270 2.817330 -0.136075 -0.949792 0.281742
2.703210 -9.206270 2.817330 0.280314 -0.920592 0.271909
1.365500 -9.497270 2.817330 0.136075 -0.949792 0.281742
9.206270 -2.703210 2.817330 0.920592 -0.280314 0.271909
9.497270 -1.365500 2.817330 0.949792 -0.136075 0.281742
9.003730 1.294540 4.154150 0.897446 0.119338 0.424676
9.594930 0.000000 2.817330 0.952503 0.000000 0.304530
8.274300 3.778750 4.154150 0.827426 0.377874 0.415425
8.727860 2.562730 4.154150 0.882098 0.245008 0.402336
8.727860 3.985880 2.817330 0.872783 0.398588 0.281740
8.071770 5.187410 2.817330 0.814706 0.512171 0.271910
7.251370 6.283340 2.817330 0.719854 0.623757 0.304528
6.283340 7.251370 2.817330 0.628694 0.724822 0.281739
5.187410 8.071770 2.817330 0.512171 0.814706 0.271910
3.985880 8.727860 2.817330 0.398588 0.872783 0.281740
2.562730 8.727860 4.154150 0.245008 0.882098 0.402336
3.778750 8.274300 4.154150 0.377874 0.827426 0.415425
0.000000 9.594930 2.817330 -0.000000 0.952503 0.304530
1.294540 9.003730 4.154150 0.119338 0.897446 0.424676
0.000000 9.096320 4.154150 0.000000 0.909628 0.415423
-1.294540 9.003730 4.154150 -0.119338 0.897446 0.424676
-3.778750 8.274300 4.154150 -0.377874 0.827426 0.415425
-2.562730 8.727860 4.154150 -0.245008 0.882098 0.402336
-3.985880 8.727860 2.817330 -0.398588 0.872783 0.281740
-5.187410 8.071770 2.817330 -0.512171 0.814706 0.271910
-6.283340 7.251370 2.817330 -0.628694 0.724822 0.281739
-7.251370 6.283340 2.817330 -0.719854 0.623757 0.304528
-8.071770 5.187410 2.817330 -0.814706 0.512171 0.271910
-8.727860 3.985880 2.817330 -0.872783 0.398588 0.281740
-8.727860 2.562730 4.154150 -0.882098 0.245008 0.402336
-8.274300 3.778750 4.154150 -0.827426 0.377874 0.415425
-9.594930 0.000000 2.817330 -0.952503 -0.000000 0.304530
-9.003730 1.294540 4.154150 -0.897446 0.119338 0.424676
-9.096320 0.000000 4.154150 -0.909628 0.000000 0.415423
-9.003730 -1.294540 4.154150 -0.897446 -0.119338 0.424676
-8.274300 -3.778750 4.154150 -0.827426 -0.377874 0.415425
-8.727860 -2.562730 4.154150 -0.882098 -0.245008 0.402336
-8.727860 -3.985880 2.817330 -0.872783 -0.398588 0.281740
-8.071770 -5.187410 2.817330 -0.814706 -0.512171 0.271910
-7.251370 -6.283340 2.817330 -0.719854 -0.623757 0.304528
-6.283340 -7.251370 2.817330 -0.628694 -0.724822 0.281739
-5.187410 -8.071770 2.817330 -0.512171 -0.814706 0.271910
-3.985880 -8.727860 2.817330 -0.398588 -0.872783 0.281740
-2.562730 -8.727860 4.154150 -0.245008 -0.882098 0.402336
-3.778750 -8.274300 4.154150 -0.377874 -0.827426 0.415425
0.000000 -9.594930 2.817330 0.000000 -0.952503 0.304530
-1.294540 -9.003730 4.154150 -0.119338 -0.897446 0.424676
0.000000 -9.096320 4.154150 0.000000 -0.909628 0.415423
1.294540 -9.003730 4.154150 0.119338 -0.897446 0.424676
3.778750 -8.274300 4.154150 0.377874 -0.827426 0.415425
2.562730 -8.727860 4.154150 0.245008 -0.882098 0.402336
3.985880 -8.727860 2.817330 0.398588 -0.872783 0.281740
5.187410 -8.071770 2.817330 0.512171 -0.814706 0.271910
6.283340 -7.251370 2.817330 0.628694 -0.724822 0.281739
7.251370 -6.283340 2.817330 0.719854 -0.623757 0.304528
8.071770 -5.187410 2.817330 0.814706 -0.512171 0.271910
8.727860 -3.985880 2.817330 0.872783 -0.398588 0.281740
9.096320 0.000000 4.154150 0.909628 0.000000 0.415423
9.003730 -1.294540 4.154150 0.897446 -0.119338 0.424676
8.274300 -3.778750 4.154150 0.827426 -0.377874 0.415425
8.727860 -2.562730 4.154150 0.882098 -0.245008 0.402336
8.412540 0.000000 5.406410 0.841248 0.000000 0.540650
8.326910 1.197230 5.406410 0.823258 0.129964 0.552590
8.071770 2.370090 5.406410 0.819306 0.240571 0.520445
6.874540 5.956820 4.154150 0.679773 0.589027 0.436984
7.077080 4.548160 5.406410 0.707856 0.464658 0.532008
7.652310 4.917840 4.154150 0.762817 0.506199 0.402335
6.357770 5.509040 5.406410 0.622305 0.554421 0.552588
5.509040 6.357770 5.406410 0.565375 0.633261 0.528519
5.956820 6.874540 4.154150 0.596213 0.686989 0.415424
4.548160 7.077080 5.406410 0.464658 0.707856 0.532008
4.917840 7.652310 4.154150 0.506199 0.762817 0.402335
2.370090 8.071770 5.406410 0.240571 0.819306 0.520445
1.197230 8.326910 5.406410 0.129964 0.823258 0.552590
0.000000 8.412540 5.406410 -0.000000 0.841248 0.540650
-1.197230 8.326910 5.406410 -0.129964 0.823258 0.552590
-2.370090 8.071770 5.406410 -0.240571 0.819306 0.520445
-5.956820 6.874540 4.154150 -0.596213 0.686989 0.415424
-4.548160 7.077080 5.406410 -0.464658 0.707856 0.532008
-4.917840 7.652310 4.154150 -0.506199 0.762817 0.402335
-5.509040 6.357770 5.406410 -0.565375 0.633261 0.528519
-6.357770 5.509040 5.406410 -0.622305 0.554421 0.552588
-6.874540 5.956820 4.154150 -0.679773 0.589027 0.436984
-7.077080 4.548160 5.406410 -0.707856 0.464658 0.532008
-7.652310 4.917840 4.154150 -0.762817 0.506199 0.402335
-8.071770 2.370090 5.406410 -0.819306 0.240571 0.520445
-8.326910 1.197230 5.406410 -0.823258 0.129964 0.552590
-8.412540 0.000000 5.406410 -0.841248 0.000000 0.540650
-8.326910 -1.197230 5.406410 -0.823258 -0.129964 0.552590
-8.071770 -2.370090 5.406410 -0.819306 -0.240571 0.520445
-6.874540 -5.956820 4.154150 -0.679773 -0.589027 0.436984
-7.077080 -4.548160 5.406410 -0.707856 -0.464658 0.532008
-7.652310 -4.917840 4.154150 -0.762817 -0.506199 0.402335
-6.357770 -5.509040 5.406410 -0.622305 -0.554421 0.552588
-5.509040 -6.357770 5.406410 -0.565375 -0.633261 0.528519
-5.956820 -6.874540 4.154150 -0.596213 -0.686989 0.415424
-4.548160 -7.077080 5.406410 -0.464658 -0.707856 0.532008
-4.917840 -7.652310 4.154150 -0.506199 -0.762817 0.402335
-2.370090 -8.071770 5.406410 -0.240571 -0.819306 0.520445
-1.197230 -8.326910 5.406410 -0.129964 -0.823258 0.552590
0.000000 -8.412540 5.406410 0.000000 -0.841248 0.540650
1.197230 -8.326910 5.406410 0.129964 -0.823258 0.552590
2.370090 -8.071770 5.406410 0.240571 -0.819306 0.520445
5.956820 -6.874540 4.154150 0.596213 -0.686989 0.415424
4.548160 -7.077080 5.406410 0.464658 -0.707856 0.532008
4.917840 -7.652310 4.154150 0.506199 -0.762817 0.402335
5.509040 -6.357770 5.406410 0.565375 -0.633261 0.528519
6.357770 -5.509040 5.406410 0.622305 -0.554421 0.552588
6.874540 -5.956820 4.154150 0.679773 -0.589027 0.436984
7.077080 -4.548160 5.406410 0.707856 -0.464658 0.532008
7.652310 -4.917840 4.154150 0.762817 -0.506199 0.402335
8.326910 -1.197230 5.406410 0.823258 -0.129964 0.552590
8.071770 -2.370090 5.406410 0.819306 -0.240571 0.520445
7.652310 3.494690 5.406410 0.753288 0.344015 0.560545
6.357770 4.085890 6.548610 0.636372 0.407646 0.654871
6.874540 3.139500 6.548610 0.673054 0.307374 0.672696
3.494690 7.652310 5.406410 0.344015 0.753288 0.560545
4.085890 6.357770 6.548610 0.407646 0.636372 0.654871
3.139500 6.874540 6.548610 0.307374 0.673054 0.672696
-3.494690 7.652310 5.406410 -0.344015 0.753288 0.560545
-4.085890 6.357770 6.548610 -0.407646 0.636372 0.654871
-3.139500 6.874540 6.548610 -0.307374 0.673054 0.672696
-7.652310 3.494690 5.406410 -0.753288 0.344015 0.560545
-6.357770 4.085890 6.548610 -0.636372 0.407646 0.654871
-6.874540 3.139500 6.548610 -0.673054 0.307374 0.672696
-7.652310 -3.494690 5.406410 -0.753288 -0.344015 0.560545
-6.357770 -4.085890 6.548610 -0.636372 -0.407646 0.654871
-6.874540 -3.139500 6.548610 -0.673054 -0.307374 0.672696
-3.494690 -7.652310 5.406410 -0.344015 -0.753288 0.560545
-4.085890 -6.357770 6.548610 -0.407646 -0.636372 0.654871
-3.139500 -6.874540 6.548610 -0.307374 -0.673054 0.672696
3.494690 -7.652310 5.406410 0.344015 -0.753288 0.560545
4.085890 -6.357770 6.548610 0.407646 -0.636372 0.654871
3.139500 -6.874540 6.548610 0.307374 -0.673054 0.672696
7.652310 -3.494690 5.406410 0.753288 -0.344015 0.560545
6.357770 -4.085890 6.548610 0.636372 -0.407646 0.654871
6.874540 -3.139500 6.548610 0.673054 -0.307374 0.672696
4.949110 4.288420 7.557500 0.493771 0.418273 0.762390
5.509040 3.540440 7.557500 0.565385 0.351300 0.746276
5.711580 4.949110 6.548610 0.571880 0.494062 0.654871
4.288420 4.949110 7.557500 0.429221 0.504724 0.749015
4.949110 5.711580 6.548610 0.504986 0.582786 0.636671
3.540440 5.509040 7.557500 0.351300 0.565385 0.746276
-4.288420 4.949110 7.557500 -0.429221 0.504724 0.749015
-3.540440 5.509040 7.557500 -0.351300 0.565385 0.746276
-4.949110 5.711580 6.548610 -0.504986 0.582786 0.636671
-4.949110 4.288420 7.557500 -0.493771 0.418273 0.762390
-5.711580 4.949110 6.548610 -0.571880 0.494062 0.654871
-5.509040 3.540440 7.557500 -0.565385 0.351300 0.746276
-4.949110 -4.288420 7.557500 -0.493771 -0.418273 0.762390
-5.509040 -3.540440 7.557500 -0.565385 -0.351300 0.746276
-5.711580 -4.949110 6.548610 -0.571880 -0.494062 0.654871
-4.288420 -4.949110 7.557500 -0.429221 -0.504724 0.749015
-4.949110 -5.711580 6.548610 -0.504986 -0.582786 0.636671
-3.540440 -5.509040 7.557500 -0.351300 -0.565385 0.746276
4.288420 -4.949110 7.557500 0.429221 -0.504724 0.749015
3.540440 -5.509040 7.557500 0.351300 -0.565385 0.746276
4.949110 -5.711580 6.548610 0.504986 -0.582786 0.636671
4.949110 -4.288420 7.557500 0.493771 -0.418273 0.762390
5.711580 -4.949110 6.548610 0.571880 -0.494062 0.654871
5.509040 -3.540440 7.557500 0.565385 -0.351300 0.746276
4.548160 2.922920 8.412540 0.464662 0.292785 0.835683
5.956820 2.720390 7.557500 0.579121 0.264475 0.771150
4.085890 3.540440 8.412540 0.393313 0.340807 0.853906
2.922920 4.548160 8.412540 0.292785 0.464662 0.835683
3.540440 4.085890 8.412540 0.355119 0.407643 0.841260
2.720390 5.956820 7.557500 0.264475 0.579121 0.771150
-2.922920 4.548160 8.412540 -0.292785 0.464662 0.835683
-2.720390 5.956820 7.557500 -0.264475 0.579121 0.771150
-3.540440 4.085890 8.412540 -0.355119 0.407643 0.841260
-4.548160 2.922920 8.412540 -0.464662 0.292785 0.835683
-4.085890 3.540440 8.412540 -0.393313 0.340807 0.853906
-5.956820 2.720390 7.557500 -0.579121 0.264475 0.771150
-4.548160 -2.922920 8.412540 -0.464662 -0.292785 0.835683
-5.956820 -2.720390 7.557500 -0.579121 -0.264475 0.771150
-4.085890 -3.540440 8.412540 -0.393313 -0.340807 0.853906
-2.922920 -4.548160 8.412540 -0.292785 -0.464662 0.835683
-3.540440 -4.085890 8.412540 -0.355119 -0.407643 0.841260
-2.720390 -5.956820 7.557500 -0.264475 -0.579121 0.771150
2.922920 -4.548160 8.412540 0.292785 -0.464662 0.835683
2.720390 -5.956820 7.557500 0.264475 -0.579121 0.771150
3.540440 -4.085890 8.412540 0.355119 -0.407643 0.841260
4.548160 -2.922920 8.412540 0.464662 -0.292785 0.835683
4.085890 -3.540440 8.412540 0.393313 -0.340807 0.853906
5.956820 -2.720390 7.557500 0.579121 -0.264475 0.771150
4.917840 2.245900 8.412540 0.483623 0.213308 0.848886
3.778750 1.725700 9.096320 0.367349 0.173160 0.913822
3.494690 2.245900 9.096320 0.356647 0.237372 0.903580
2.245900 4.917840 8.412540 0.213308 0.483623 0.848886
1.725700 3.778750 9.096320 0.173160 0.367349 0.913822
2.245900 3.494690 9.096320 0.237372 0.356647 0.903580
-2.245900 4.917840 8.412540 -0.213308 0.483623 0.848886
-1.725700 3.778750 9.096320 -0.173160 0.367349 0.913822
-2.245900 3.494690 9.096320 -0.237372 0.356647 0.903580
-3.778750 1.725700 9.096320 -0.367349 0.173160 0.913822
-3.494690 2.245900 9.096320 -0.356647 0.237372 0.903580
-4.917840 2.245900 8.412540 -0.483623 0.213308 0.848886
-4.917840 -2.245900 8.412540 -0.483623 -0.213308 0.848886
-3.778750 -1.725700 9.096320 -0.367349 -0.173160 0.913822
-3.494690 -2.245900 9.096320 -0.356647 -0.237372 0.903580
-2.245900 -4.917840 8.412540 -0.213308 -0.483623 0.848886
-1.725700 -3.778750 9.096320 -0.173160 -0.367349 0.913822
-2.245900 -3.494690 9.096320 -0.237372 -0.356647 0.903580
2.245900 -4.917840 8.412540 0.213308 -0.483623 0.848886
1.725700 -3.778750 9.096320 0.173160 -0.367349 0.913822
2.245900 -3.494690 9.096320 0.237372 -0.356647 0.903580
3.778750 -1.725700 9.096320 0.367349 -0.173160 0.913822
3.494690 -2.245900 9.096320 0.356647 -0.237372 0.903580
4.917840 -2.245900 8.412540 0.483623 -0.213308 0.848886
4.111870 0.591198 9.096320 0.389602 0.056016 0.919278
2.817330 0.000000 9.594930 0.281727 -0.000000 0.959494
4.154150 0.000000 9.096320 0.436968 0.000000 0.899477
2.788650 0.400948 9.594930 0.278860 0.040094 0.959495
2.703210 0.793732 9.594930 0.280320 0.080039 0.956564
3.985880 1.170360 9.096320 0.419268 0.123109 0.899477
0.591198 4.111870 9.096320 0.056016 0.389602 0.919278
0.793732 2.703210 9.594930 0.080039 0.280320 0.956564
1.170360 3.985880 9.096320 0.123109 0.419268 0.899477
0.400948 2.788650 9.594930 0.040094 0.278860 0.959495
0.000000 2.817330 9.594930 0.000000 0.281727 0.959494
0.000000 4.154150 9.096320 0.000000 0.436968 0.899477
-0.591198 4.111870 9.096320 -0.056016 0.389602 0.919278
-0.400948 2.788650 9.594930 -0.040094 0.278860 0.959495
-0.793732 2.703210 9.594930 -0.080039 0.280320 0.956564
-1.170360 3.985880 9.096320 -0.123109 0.419268 0.899477
-4.111870 0.591198 9.096320 -0.389602 0.056016 0.919278
-2.703210 0.793732 9.594930 -0.280320 0.080039 0.956564
-3.985880 1.170360 9.096320 -0.419268 0.123109 0.899477
-2.788650 0.400948 9.594930 -0.278860 0.040094 0.959495
-2.817330 0.000000 9.594930 -0.281727 -0.000000 0.959494
-4.154150 0.000000 9.096320 -0.436968 0.000000 0.899477
-4.111870 -0.591198 9.096320 -0.389602 -0.056016 0.919278
-2.788650 -0.400948 9.594930 -0.278860 -0.040094 0.959495
-2.703210 -0.793732 9.594930 -0.280320 -0.080039 0.956564
-3.985880 -1.170360 9.096320 -0.419268 -0.123109 0.899477
-0.591198 -4.111870 9.096320 -0.056016 -0.389602 0.919278
-0.793732 -2.703210 9.594930 -0.080039 -0.280320 0.956564
-1.170360 -3.985880 9.096320 -0.123109 -0.419268 0.899477
-0.400948 -2.788650 9.594930 -0.040094 -0.278860 0.959495
0.000000 -2.817330 9.594930 -0.000000 -0.281727 0.959494
0.000000 -4.154150 9.096320 -0.000000 -0.436968 0.899477
0.591198 -4.111870 9.096320 0.056016 -0.389602 0.919278
0.400948 -2.788650 9.594930 0.040094 -0.278860 0.959495
0.793732 -2.703210 9.594930 0.080039 -0.280320 0.956564
1.170360 -3.985880 9.096320 0.123109 -0.419268 0.899477
4.111870 -0.591198 9.096320 0.389602 -0.056016 0.919278
2.788650 -0.400948 9.594930 0.278860 -0.040094 0.959495
2.703210 -0.793732 9.594930 0.280320 -0.080039 0.956564
3.985880 -1.170360 9.096320 0.419268 -0.123109 0.899477
-7.251370 -2.129190 -6.548610 -0.733532 -0.207834 -0.647098
-7.251370 -2.129190 6.548610 -0.733532 -0.207834 0.647098
-6.481950 -0.931965 -7.557500 -0.654909 -0.100366 -0.749014
-7.480570 -1.075540 -6.548610 -0.758827 -0.097508 -0.643952
-7.557500 0.000000 -6.548610 -0.739920 0.000000 -0.672695
-9.898220 0.000000 -1.423150 -0.989821 0.000000 -0.142319
-10.000000 0.000000 0.000000 -1.000000 0.000000 0.000000
-9.898220 0.000000 1.423150 -0.989821 0.000000 0.142319
-7.480570 -1.075540 6.548610 -0.758827 -0.097508 0.643952
-7.557500 0.000000 6.548610 -0.739920 0.000000 0.672695
-6.481950 -0.931965 7.557500 -0.654909 -0.100366 0.749014
-6.481950 0.931965 -7.557500 -0.654909 0.100366 -0.749014
-7.480570 1.075540 -6.548610 -0.758827 0.097508 -0.643952
-6.548610 0.000000 -7.557500 -0.636654 -0.000000 -0.771150
-7.251370 2.129190 -6.548610 -0.733532 0.207834 -0.647098
-7.480570 1.075540 6.548610 -0.758827 0.097508 0.643952
-7.251370 2.129190 6.548610 -0.733532 0.207834 0.647098
-6.481950 0.931965 7.557500 -0.654909 0.100366 0.749014
-6.548610 0.000000 7.557500 -0.636654 0.000000 0.771150
7.251370 -2.129190 -6.548610 0.733532 -0.207834 -0.647098
7.251370 -2.129190 6.548610 0.733532 -0.207834 0.647098
6.548610 0.000000 -7.557500 0.636654 -0.000000 -0.771150
7.557500 0.000000 -6.548610 0.739920 0.000000 -0.672695
6.481950 -0.931965 -7.557500 0.654909 -0.100366 -0.749014
7.480570 -1.075540 -6.548610 0.758827 -0.097508 -0.643952
10.000000 0.000000 0.000000 1.000000 0.000000 0.000000
9.898220 0.000000 -1.423150 0.989821 -0.000000 -0.142319
9.898220 0.000000 1.423150 0.989821 0.000000 0.142319
7.480570 -1.075540 6.548610 0.758827 -0.097508 0.643952
7.557500 0.000000 6.548610 0.739920 0.000000 0.672695
6.548610 0.000000 7.557500 0.636654 0.000000 0.771150
6.481950 -0.931965 7.557500 0.654909 -0.100366 0.749014
6.481950 0.931965 -7.557500 0.654909 0.100366 -0.749014
7.480570 1.075540 -6.548610 0.758827 0.097508 -0.643952
7.251370 2.129190 -6.548610 0.733532 0.207834 -0.647098
7.480570 1.075540 6.548610 0.758827 0.097508 0.643952
7.251370 2.129190 6.548610 0.733532 0.207834 0.647098
6.481950 0.931965 7.557500 0.654909 0.100366 0.749014
-2.129190 -7.251370 -6.548610 -0.207834 -0.733532 -0.647098
-2.129190 -7.251370 6.548610 -0.207834 -0.733532 0.647098
-0.931965 -6.481950 -7.557500 -0.100366 -0.654909 -0.749014
0.000000 -7.557500 -6.548610 0.000000 -0.739920 -0.672695
-1.075540 -7.480570 -6.548610 -0.097508 -0.758827 -0.643952
0.000000 -9.898220 -1.423150 -0.000000 -0.989821 -0.142319
0.000000 -10.000000 0.000000 0.000000 -1.000000 0.000000
0.000000 -9.898220 1.423150 -0.000000 -0.989821 0.142319
-1.075540 -7.480570 6.548610 -0.097508 -0.758827 0.643952
0.000000 -7.557500 6.548610 0.000000 -0.739920 0.672695
-0.931965 -6.481950 7.557500 -0.100366 -0.654909 0.749014
0.931965 -6.481950 -7.557500 0.100366 -0.654909 -0.749014
1.075540 -7.480570 -6.548610 0.097508 -0.758827 -0.643952
0.000000 -6.548610 -7.557500 0.000000 -0.636654 -0.771150
2.129190 -7.251370 -6.548610 0.207834 -0.733532 -0.647098
1.075540 -7.480570 6.548610 0.097508 -0.758827 0.643952
2.129190 -7.251370 6.548610 0.207834 -0.733532 0.647098
0.931965 -6.481950 7.557500 0.100366 -0.654909 0.749014
0.000000 -6.548610 7.557500 0.000000 -0.636654 0.771150
-2.129190 7.251370 -6.548610 -0.207834 0.733532 -0.647098
-2.129190 7.251370 6.548610 -0.207834 0.733532 0.647098
-0.931965 6.481950 -7.557500 -0.100366 0.654909 -0.749014
-1.075540 7.480570 -6.548610 -0.097508 0.758827 -0.643952
0.000000 7.557500 -6.548610 0.000000 0.739920 -0.672695
0.000000 6.548610 -7.557500 0.000000 0.636654 -0.771150
0.000000 9.898220 -1.423150 0.000000 0.989821 -0.142319
0.000000 10.000000 0.000000 0.000000 1.000000 0.000000
0.000000 9.898220 1.423150 0.000000 0.989821 0.142319
-1.075540 7.480570 6.548610 -0.097508 0.758827 0.643952
0.000000 7.557500 6.548610 -0.000000 0.739920 0.672695
-0.931965 6.481950 7.557500 -0.100366 0.654909 0.749014
0.000000 6.548610 7.557500 -0.000000 0.636654 0.771150
0.931965 6.481950 -7.557500 0.100366 0.654909 -0.749014
1.075540 7.480570 -6.548610 0.097508 0.758827 -0.643952
2.129190 7.251370 -6.548610 0.207834 0.733532 -0.647098
1.075540 7.480570 6.548610 0.097508 0.758827 0.643952
2.129190 7.251370 6.548610 0.207834 0.733532 0.647098
0.931965 6.481950 7.557500 0.100366 0.654909 0.749014
-6.283340 -1.844950 -7.557500 -0.635743 -0.197237 -0.746276
-6.283340 1.844950 -7.557500 -0.635743 0.197237 -0.746276
-5.351380 -0.769413 -8.412540 -0.527455 -0.069637 -0.846724
-5.406410 0.000000 -8.412540 -0.540629 -0.000000 -0.841261
-5.187410 -1.523160 -8.412540 -0.537823 -0.157920 -0.828135
-5.187410 1.523160 -8.412540 -0.537823 0.157920 -0.828135
-5.351380 0.769413 -8.412540 -0.527455 0.069637 -0.846724
-1.844950 -6.283340 -7.557500 -0.197237 -0.635743 -0.746276
-2.720390 -3.139500 -9.096320 -0.273203 -0.312927 -0.909635
-3.139500 -2.720390 -9.096320 -0.297469 -0.257758 -0.919278
-1.844950 -2.129190 -9.594930 -0.185730 -0.211842 -0.959493
-2.129190 -1.844950 -9.594930 -0.195571 -0.169467 -0.965936
-2.562730 -1.170360 -9.594930 -0.235395 -0.107501 -0.965936
-2.370090 -1.523160 -9.594930 -0.256174 -0.164635 -0.952507
-2.370090 1.523160 -9.594930 -0.256174 0.164635 -0.952507
-3.139500 2.720390 -9.096320 -0.297469 0.257758 -0.919278
-2.129190 1.844950 -9.594930 -0.195571 0.169467 -0.965936
-2.562730 1.170360 -9.594930 -0.235395 0.107501 -0.965936
-2.720390 3.139500 -9.096320 -0.273203 0.312927 -0.909635
-1.844950 2.129190 -9.594930 -0.185730 0.211842 -0.959493
-1.844950 6.283340 -7.557500 -0.197237 0.635743 -0.746276
0.000000 -5.406410 -8.412540 0.000000 -0.540629 -0.841261
-0.769413 -5.351380 -8.412540 -0.069637 -0.527455 -0.846724
-1.523160 -5.187410 -8.412540 -0.157920 -0.537823 -0.828135
-1.523160 -2.370090 -9.594930 -0.164635 -0.256174 -0.952507
-1.170360 -2.562730 -9.594930 -0.107501 -0.235395 -0.965936
-1.408660 -0.202534 -9.898220 -0.164175 -0.023605 -0.986149
-1.423150 0.000000 -9.898220 -0.142311 0.000000 -0.989822
0.000000 0.000000 -10.000000 0.000000 0.000000 -1.000000
-1.365500 -0.400948 -9.898220 -0.149257 -0.047003 -0.987681
-1.294540 -0.591198 -9.898220 -0.129451 -0.059117 -0.989822
-1.197230 -0.769413 -9.898220 -0.139532 -0.089673 -0.986149
-1.075540 -0.931965 -9.898220 -0.107551 -0.093195 -0.989822
-0.931965 -1.075540 -9.898220 -0.104760 -0.116244 -0.987681
-0.769413 -1.197230 -9.898220 -0.089673 -0.139532 -0.986149
-0.591198 -1.294540 -9.898220 -0.059117 -0.129451 -0.989822
-0.400948 -1.365500 -9.898220 -0.047003 -0.149257 -0.987681
-0.202534 -1.408660 -9.898220 -0.023605 -0.164175 -0.986149
0.000000 -1.423150 -9.898220 0.000000 -0.142311 -0.989822
-0.202534 1.408660 -9.898220 -0.023605 0.164175 -0.986149
0.000000 1.423150 -9.898220 0.000000 0.142311 -0.989822
-0.400948 1.365500 -9.898220 -0.047003 0.149257 -0.987681
-1.170360 2.562730 -9.594930 -0.107501 0.235395 -0.965936
-0.591198 1.294540 -9.898220 -0.059117 0.129451 -0.989822
-0.769413 1.197230 -9.898220 -0.089673 0.139532 -0.986149
-1.523160 2.370090 -9.594930 -0.164635 0.256174 -0.952507
-0.931965 1.075540 -9.898220 -0.104760 0.116244 -0.987681
-1.075540 0.931965 -9.898220 -0.107551 0.093195 -0.989822
-1.197230 0.769413 -9.898220 -0.139532 0.089673 -0.986149
-1.294540 0.591198 -9.898220 -0.129451 0.059117 -0.989822
-1.365500 0.400948 -9.898220 -0.149257 0.047003 -0.987681
-1.408660 0.202534 -9.898220 -0.164175 0.023605 -0.986149
-0.769413 5.351380 -8.412540 -0.069637 0.527455 -0.846724
-1.523160 5.187410 -8.412540 -0.157920 0.537823 -0.828135
0.000000 5.406410 -8.412540 -0.000000 0.540629 -0.841261
1.844950 -6.283340 -7.557500 0.197237 -0.635743 -0.746276
1.523160 -5.187410 -8.412540 0.157920 -0.537823 -0.828135
0.769413 -5.351380 -8.412540 0.069637 -0.527455 -0.846724
1.170360 -2.562730 -9.594930 0.107501 -0.235395 -0.965936
1.523160 -2.370090 -9.594930 0.164635 -0.256174 -0.952507
1.844950 -2.129190 -9.594930 0.185730 -0.211842 -0.959493
2.720390 -3.139500 -9.096320 0.273203 -0.312927 -0.909635
0.202534 -1.408660 -9.898220 0.023605 -0.164175 -0.986149
0.400948 -1.365500 -9.898220 0.047003 -0.149257 -0.987681
0.591198 -1.294540 -9.898220 0.059117 -0.129451 -0.989822
0.769413 -1.197230 -9.898220 0.089673 -0.139532 -0.986149
0.931965 -1.075540 -9.898220 0.104760 -0.116244 -0.987681
2.129190 -1.844950 -9.594930 0.195571 -0.169467 -0.965936
1.075540 -0.931965 -9.898220 0.107551 -0.093195 -0.989822
1.197230 -0.769413 -9.898220 0.139532 -0.089673 -0.986149
2.370090 -1.523160 -9.594930 0.256174 -0.164635 -0.952507
2.562730 -1.170360 -9.594930 0.235395 -0.107501 -0.965936
1.294540 -0.591198 -9.898220 0.129451 -0.059117 -0.989822
1.365500 -0.400948 -9.898220 0.149257 -0.047003 -0.987681
1.408660 -0.202534 -9.898220 0.164175 -0.023605 -0.986149
1.423150 0.000000 -9.898220 0.142311 -0.000000 -0.989822
0.202534 1.408660 -9.898220 0.023605 0.164175 -0.986149
0.400948 1.365500 -9.898220 0.047003 0.149257 -0.987681
1.170360 2.562730 -9.594930 0.107501 0.235395 -0.965936
0.591198 1.294540 -9.898220 0.059117 0.129451 -0.989822
0.769413 1.197230 -9.898220 0.089673 0.139532 -0.986149
1.523160 2.370090 -9.594930 0.164635 0.256174 -0.952507
1.844950 2.129190 -9.594930 0.185730 0.211842 -0.959493
1.408660 0.202534 -9.898220 0.164175 0.023605 -0.986149
1.365500 0.400948 -9.898220 0.149257 0.047003 -0.987681
1.294540 0.591198 -9.898220 0.129451 0.059117 -0.989822
2.562730 1.170360 -9.594930 0.235395 0.107501 -0.965936
1.197230 0.769413 -9.898220 0.139532 0.089673 -0.986149
1.075540 0.931965 -9.898220 0.107551 0.093195 -0.989822
2.129190 1.844950 -9.594930 0.195571 0.169467 -0.965936
2.370090 1.523160 -9.594930 0.256174 0.164635 -0.952507
0.931965 1.075540 -9.898220 0.104760 0.116244 -0.987681
2.720390 3.139500 -9.096320 0.273203 0.312927 -0.909635
1.523160 5.187410 -8.412540 0.157920 0.537823 -0.828135
0.769413 5.351380 -8.412540 0.069637 0.527455 -0.846724
1.844950 6.283340 -7.557500 0.197237 0.635743 -0.746276
3.139500 -2.720390 -9.096320 0.297469 -0.257758 -0.919278
5.351380 -0.769413 -8.412540 0.527455 -0.069637 -0.846724
5.187410 -1.523160 -8.412540 0.537823 -0.157920 -0.828135
3.139500 2.720390 -9.096320 0.297469 0.257758 -0.919278
5.187410 1.523160 -8.412540 0.537823 0.157920 -0.828135
5.351380 0.769413 -8.412540 0.527455 0.069637 -0.846724
5.406410 0.000000 -8.412540 0.540629 0.000000 -0.841261
6.283340 -1.844950 -7.557500 0.635743 -0.197237 -0.746276
6.283340 1.844950 -7.557500 0.635743 0.197237 -0.746276
-6.283340 -1.844950 7.557500 -0.635743 -0.197237 0.746276
-6.283340 1.844950 7.557500 -0.635743 0.197237 0.746276
-5.351380 -0.769413 8.412540 -0.527455 -0.069637 0.846724
-5.406410 0.000000 8.412540 -0.540629 -0.000000 0.841261
-5.187410 -1.523160 8.412540 -0.537823 -0.157920 0.828135
-5.187410 1.523160 8.412540 -0.537823 0.157920 0.828135
-5.351380 0.769413 8.412540 -0.527455 0.069637 0.846724
-1.844950 -6.283340 7.557500 -0.197237 -0.635743 0.746276
-2.720390 -3.139500 9.096320 -0.273203 -0.312927 0.909635
-3.139500 -2.720390 9.096320 -0.297469 -0.257758 0.919278
-1.844950 -2.129190 9.594930 -0.185730 -0.211842 0.959493
-2.129190 -1.844950 9.594930 -0.195571 -0.169467 0.965936
-2.370090 -1.523160 9.594930 -0.256174 -0.164635 0.952507
-2.562730 -1.170360 9.594930 -0.235395 -0.107501 0.965936
-2.370090 1.523160 9.594930 -0.256174 0.164635 0.952507
-3.139500 2.720390 9.096320 -0.297469 0.257758 0.919278
-2.129190 1.844950 9.594930 -0.195571 0.169467 0.965936
-2.562730 1.170360 9.594930 -0.235395 0.107501 0.965936
-2.720390 3.139500 9.096320 -0.273203 0.312927 0.909635
-1.844950 2.129190 9.594930 -0.185730 0.211842 0.959493
-1.844950 6.283340 7.557500 -0.197237 0.635743 0.746276
-1.523160 -5.187410 8.412540 -0.157920 -0.537823 0.828135
-0.769413 -5.351380 8.412540 -0.069637 -0.527455 0.846724
0.000000 -5.406410 8.412540 0.000000 -0.540629 0.841261
-1.523160 -2.370090 9.594930 -0.164635 -0.256174 0.952507
-1.170360 -2.562730 9.594930 -0.107501 -0.235395 0.965936
0.000000 -1.423150 9.898220 0.000000 -0.142311 0.989822
0.000000 0.000000 10.000000 0.000000 -0.000000 1.000000
-0.202534 -1.408660 9.898220 -0.023605 -0.164175 0.986149
-0.400948 -1.365500 9.898220 -0.047003 -0.149257 0.987681
-0.591198 -1.294540 9.898220 -0.059117 -0.129451 0.989822
-0.769413 -1.197230 9.898220 -0.089673 -0.139532 0.986149
-0.931965 -1.075540 9.898220 -0.104760 -0.116244 0.987681
-1.075540 -0.931965 9.898220 -0.107551 -0.093195 0.989822
-1.197230 -0.769413 9.898220 -0.139532 -0.089673 0.986149
-1.294540 -0.591198 9.898220 -0.129451 -0.059117 0.989822
-1.365500 -0.400948 9.898220 -0.149257 -0.047003 0.987681
-1.408660 -0.202534 9.898220 -0.164175 -0.023605 0.986149
-1.423150 0.000000 9.898220 -0.142311 -0.000000 0.989822
-1.408660 0.202534 9.898220 -0.164175 0.023605 0.986149
-1.365500 0.400948 9.898220 -0.149257 0.047003 0.987681
-1.294540 0.591198 9.898220 -0.129451 0.059117 0.989822
-1.197230 0.769413 9.898220 -0.139532 0.089673 0.986149
-1.075540 0.931965 9.898220 -0.107551 0.093195 0.989822
-0.931965 1.075540 9.898220 -0.104760 0.116244 0.987681
-0.769413 1.197230 9.898220 -0.089673 0.139532 0.986149
-0.591198 1.294540 9.898220 -0.059117 0.129451 0.989822
-0.400948 1.365500 9.898220 -0.047003 0.149257 0.987681
-0.202534 1.408660 9.898220 -0.023605 0.164175 0.986149
0.000000 1.423150 9.898220 -0.000000 0.142311 0.989822
-1.170360 2.562730 9.594930 -0.107501 0.235395 0.965936
-1.523160 2.370090 9.594930 -0.164635 0.256174 0.952507
-1.523160 5.187410 8.412540 -0.157920 0.537823 0.828135
-0.769413 5.351380 8.412540 -0.069637 0.527455 0.846724
0.000000 5.406410 8.412540 0.000000 0.540629 0.841261
1.844950 -6.283340 7.557500 0.197237 -0.635743 0.746276
0.769413 -5.351380 8.412540 0.069637 -0.527455 0.846724
1.523160 -5.187410 8.412540 0.157920 -0.537823 0.828135
1.170360 -2.562730 9.594930 0.107501 -0.235395 0.965936
1.523160 -2.370090 9.594930 0.164635 -0.256174 0.952507
2.720390 -3.139500 9.096320 0.273203 -0.312927 0.909635
1.844950 -2.129190 9.594930 0.185730 -0.211842 0.959493
1.423150 0.000000 9.898220 0.142311 -0.000000 0.989822
1.408660 -0.202534 9.898220 0.164175 -0.023605 0.986149
1.365500 -0.400948 9.898220 0.149257 -0.047003 0.987681
1.294540 -0.591198 9.898220 0.129451 -0.059117 0.989822
1.197230 -0.769413 9.898220 0.139532 -0.089673 0.986149
1.075540 -0.931965 9.898220 0.107551 -0.093195 0.989822
0.931965 -1.075540 9.898220 0.104760 -0.116244 0.987681
0.769413 -1.197230 9.898220 0.089673 -0.139532 0.986149
0.591198 -1.294540 9.898220 0.059117 -0.129451 0.989822
0.400948 -1.365500 9.898220 0.047003 -0.149257 0.987681
0.202534 -1.408660 9.898220 0.023605 -0.164175 0.986149
2.562730 -1.170360 9.594930 0.235395 -0.107501 0.965936
2.370090 -1.523160 9.594930 0.256174 -0.164635 0.952507
2.129190 -1.844950 9.594930 0.195571 -0.169467 0.965936
1.408660 0.202534 9.898220 0.164175 0.023605 0.986149
1.365500 0.400948 9.898220 0.149257 0.047003 0.987681
2.562730 1.170360 9.594930 0.235395 0.107501 0.965936
1.294540 0.591198 9.898220 0.129451 0.059117 0.989822
1.197230 0.769413 9.898220 0.139532 0.089673 0.986149
2.370090 1.523160 9.594930 0.256174 0.164635 0.952507
2.129190 1.844950 9.594930 0.195571 0.169467 0.965936
1.075540 0.931965 9.898220 0.107551 0.093195 0.989822
0.931965 1.075540 9.898220 0.104760 0.116244 0.987681
1.844950 2.129190 9.594930 0.185730 0.211842 0.959493
1.523160 2.370090 9.594930 0.164635 0.256174 0.952507
0.769413 1.197230 9.898220 0.089673 0.139532 0.986149
0.591198 1.294540 9.898220 0.059117 0.129451 0.989822
1.170360 2.562730 9.594930 0.107501 0.235395 0.965936
0.400948 1.365500 9.898220 0.047003 0.149257 0.987681
0.202534 1.408660 9.898220 0.023605 0.164175 0.986149
2.720390 3.139500 9.096320 0.273203 0.312927 0.909635
1.523160 5.187410 8.412540 0.157920 0.537823 0.828135
0.769413 5.351380 8.412540 0.069637 0.527455 0.846724
1.844950 6.283340 7.557500 0.197237 0.635743 0.746276
3.139500 -2.720390 9.096320 0.297469 -0.257758 0.919278
5.187410 -1.523160 8.412540 0.537823 -0.157920 0.828135
5.351380 -0.769413 8.412540 0.527455 -0.069637 0.846724
3.139500 2.720390 9.096320 0.297469 0.257758 0.919278
5.187410 1.523160 8.412540 0.537823 0.157920 0.828135
5.351380 0.769413 8.412540 0.527455 0.069637 0.846724
5.406410 0.000000 8.412540 0.540629 -0.000000 0.841261
6.283340 -1.844950 7.557500 0.635743 -0.197237 0.746276
6.283340 1.844950 7.557500 0.635743 0.197237 0.746276
| PAWN | 1 | ffteja/cgal | Point_set_processing_3/test/Point_set_processing_3/data/sphere926.pwn | [
"CC0-1.0"
] |
def g: 45;
| JSONiq | 0 | Abhibob/gojq | cli/testdata/m3/m3.jq | [
"MIT"
] |
At: "after-01.hac":7:
parse error: syntax error
parser stacks:
state value
#STATE# (null)
#STATE# (process-prototype) [4:1..20]
#STATE# { [4:22]
#STATE# list<(def-body-item)>: (instance-decl) ... [5:1..9]
#STATE# keyword: prs [6:1..3]
#STATE# (null)
#STATE# { [6:5]
#STATE# (prs-literal) [7:1..5]
#STATE# int: 12 [7:7]
in state #STATE#, possible rules are:
single_prs: prs_expr . prs_arrow prs_literal_base dir (#RULE#)
acceptable tokens are:
IMPLIES (shift)
RARROW (shift)
HASH_ARROW (shift)
| Bison | 0 | broken-wheel/hacktist | hackt_docker/hackt/test/parser/prs/after-01.stderr.bison | [
"MIT"
] |
-------------------------------------------------------------
--Copyright 2020 Science and Technologies Facilities Council
--Licensed under the MIT License
--Author Aidan Chalk, STFC Hartree Centre
import "regent"
require("src/particles/core_part")
WALL = global(int32, 1);
FLUID = global(int32, 0);
fspace part{
core_part_space : core_part,
neighbour_part_space : neighbour_part,
--smoothing length
h : float,
--internal energy
u : float,
--Density
rho : float,
rho_base : float,
drho_dt : float,
rho_t_minus1 : float,
viscosity : float,
pressure : float,
soundspeed : float,
--Stress tensor
tau_xx : float,
tau_xy : float,
tau_xz : float,
tau_yy : float,
tau_yz : float,
tau_zz : float,
--Velocity gradient
grad_v_xx : float,
grad_v_xy : float,
grad_v_xz : float,
grad_v_yy : float,
grad_v_yz : float,
grad_v_zz : float,
--Particle type
is_wall : int32,
since_euler : int32,
max_visc : float,
--Acceleration
a_hydro_x : float,
a_hydro_y : float,
a_hydro_z : float,
--Previous timestep data
v_minus1_x : float,
v_minus1_y : float,
v_minus1_z : float,
--Constant acceleration term
a_const_x : float,
a_const_y : float,
a_const_z : float,
interactions : int32
}
| Rouge | 4 | stfc/RegentParticleDSL | src/interactions/WC_SPH/WCSPH_part.rg | [
"MIT"
] |
#summary LIBARCHIVE 3 manual page
== NAME ==
*libarchive_internals*
- description of libarchive internal interfaces
== OVERVIEW ==
The
*libarchive*
library provides a flexible interface for reading and writing
streaming archive files such as tar and cpio.
Internally, it follows a modular layered design that should
make it easy to add new archive and compression formats.
== GENERAL ARCHITECTURE ==
Externally, libarchive exposes most operations through an
opaque, object-style interface.
The
*archive_entry*(1)
objects store information about a single filesystem object.
The rest of the library provides facilities to write
*archive_entry*(1)
objects to archive files,
read them from archive files,
and write them to disk.
(There are plans to add a facility to read
*archive_entry*(1)
objects from disk as well.)
The read and write APIs each have four layers: a public API
layer, a format layer that understands the archive file format,
a compression layer, and an I/O layer.
The I/O layer is completely exposed to clients who can replace
it entirely with their own functions.
In order to provide as much consistency as possible for clients,
some public functions are virtualized.
Eventually, it should be possible for clients to open
an archive or disk writer, and then use a single set of
code to select and write entries, regardless of the target.
== READ ARCHITECTURE ==
From the outside, clients use the
*archive_read*(3)
API to manipulate an
*archive*
object to read entries and bodies from an archive stream.
Internally, the
*archive*
object is cast to an
*archive_read*
object, which holds all read-specific data.
The API has four layers:
The lowest layer is the I/O layer.
This layer can be overridden by clients, but most clients use
the packaged I/O callbacks provided, for example, by
*archive_read_open_memory*(3),
and
*archive_read_open_fd*(3).
The compression layer calls the I/O layer to
read bytes and decompresses them for the format layer.
The format layer unpacks a stream of uncompressed bytes and
creates
*archive_entry*
objects from the incoming data.
The API layer tracks overall state
(for example, it prevents clients from reading data before reading a header)
and invokes the format and compression layer operations
through registered function pointers.
In particular, the API layer drives the format-detection process:
When opening the archive, it reads an initial block of data
and offers it to each registered compression handler.
The one with the highest bid is initialized with the first block.
Similarly, the format handlers are polled to see which handler
is the best for each archive.
(Prior to 2.4.0, the format bidders were invoked for each
entry, but this design hindered error recovery.)
=== I/O Layer and Client Callbacks===
The read API goes to some lengths to be nice to clients.
As a result, there are few restrictions on the behavior of
the client callbacks.
The client read callback is expected to provide a block
of data on each call.
A zero-length return does indicate end of file, but otherwise
blocks may be as small as one byte or as large as the entire file.
In particular, blocks may be of different sizes.
The client skip callback returns the number of bytes actually
skipped, which may be much smaller than the skip requested.
The only requirement is that the skip not be larger.
In particular, clients are allowed to return zero for any
skip that they don't want to handle.
The skip callback must never be invoked with a negative value.
Keep in mind that not all clients are reading from disk:
clients reading from networks may provide different-sized
blocks on every request and cannot skip at all;
advanced clients may use
*mmap*(2)
to read the entire file into memory at once and return the
entire file to libarchive as a single block;
other clients may begin asynchronous I/O operations for the
next block on each request.
=== Decompresssion Layer===
The decompression layer not only handles decompression,
it also buffers data so that the format handlers see a
much nicer I/O model.
The decompression API is a two stage peek/consume model.
A read_ahead request specifies a minimum read amount;
the decompression layer must provide a pointer to at least
that much data.
If more data is immediately available, it should return more:
the format layer handles bulk data reads by asking for a minimum
of one byte and then copying as much data as is available.
A subsequent call to the
*consume*()
function advances the read pointer.
Note that data returned from a
*read_ahead*()
call is guaranteed to remain in place until
the next call to
*read_ahead*().
Intervening calls to
*consume*()
should not cause the data to move.
Skip requests must always be handled exactly.
Decompression handlers that cannot seek forward should
not register a skip handler;
the API layer fills in a generic skip handler that reads and discards data.
A decompression handler has a specific lifecycle:
<dl>
<dt>Registration/Configuration</dt><dd>
When the client invokes the public support function,
the decompression handler invokes the internal
*__archive_read_register_compression*()
function to provide bid and initialization functions.
This function returns
*NULL*
on error or else a pointer to a
*struct* decompressor_t.
This structure contains a
_void_ * config
slot that can be used for storing any customization information.
</dd><dt>Bid</dt><dd>
The bid function is invoked with a pointer and size of a block of data.
The decompressor can access its config data
through the
_decompressor_
element of the
*archive_read*
object.
The bid function is otherwise stateless.
In particular, it must not perform any I/O operations.
The value returned by the bid function indicates its suitability
for handling this data stream.
A bid of zero will ensure that this decompressor is never invoked.
Return zero if magic number checks fail.
Otherwise, your initial implementation should return the number of bits
actually checked.
For example, if you verify two full bytes and three bits of another
byte, bid 19.
Note that the initial block may be very short;
be careful to only inspect the data you are given.
(The current decompressors require two bytes for correct bidding.)
</dd><dt>Initialize</dt><dd>
The winning bidder will have its init function called.
This function should initialize the remaining slots of the
_struct_ decompressor_t
object pointed to by the
_decompressor_
element of the
_archive_read_
object.
In particular, it should allocate any working data it needs
in the
_data_
slot of that structure.
The init function is called with the block of data that
was used for tasting.
At this point, the decompressor is responsible for all I/O
requests to the client callbacks.
The decompressor is free to read more data as and when
necessary.
</dd><dt>Satisfy I/O requests</dt><dd>
The format handler will invoke the
_read_ahead_,
_consume_,
and
_skip_
functions as needed.
</dd><dt>Finish</dt><dd>
The finish method is called only once when the archive is closed.
It should release anything stored in the
_data_
and
_config_
slots of the
_decompressor_
object.
It should not invoke the client close callback.
</dd></dl>
=== Format Layer===
The read formats have a similar lifecycle to the decompression handlers:
<dl>
<dt>Registration</dt><dd>
Allocate your private data and initialize your pointers.
</dd><dt>Bid</dt><dd>
Formats bid by invoking the
*read_ahead*()
decompression method but not calling the
*consume*()
method.
This allows each bidder to look ahead in the input stream.
Bidders should not look further ahead than necessary, as long
look aheads put pressure on the decompression layer to buffer
lots of data.
Most formats only require a few hundred bytes of look ahead;
look aheads of a few kilobytes are reasonable.
(The ISO9660 reader sometimes looks ahead by 48k, which
should be considered an upper limit.)
</dd><dt>Read header</dt><dd>
The header read is usually the most complex part of any format.
There are a few strategies worth mentioning:
For formats such as tar or cpio, reading and parsing the header is
straightforward since headers alternate with data.
For formats that store all header data at the beginning of the file,
the first header read request may have to read all headers into
memory and store that data, sorted by the location of the file
data.
Subsequent header read requests will skip forward to the
beginning of the file data and return the corresponding header.
</dd><dt>Read Data</dt><dd>
The read data interface supports sparse files; this requires that
each call return a block of data specifying the file offset and
size.
This may require you to carefully track the location so that you
can return accurate file offsets for each read.
Remember that the decompressor will return as much data as it has.
Generally, you will want to request one byte,
examine the return value to see how much data is available, and
possibly trim that to the amount you can use.
You should invoke consume for each block just before you return it.
</dd><dt>Skip All Data</dt><dd>
The skip data call should skip over all file data and trailing padding.
This is called automatically by the API layer just before each
header read.
It is also called in response to the client calling the public
*data_skip*()
function.
</dd><dt>Cleanup</dt><dd>
On cleanup, the format should release all of its allocated memory.
</dd></dl>
=== API Layer===
XXX to do XXX
== WRITE ARCHITECTURE ==
The write API has a similar set of four layers:
an API layer, a format layer, a compression layer, and an I/O layer.
The registration here is much simpler because only
one format and one compression can be registered at a time.
=== I/O Layer and Client Callbacks===
XXX To be written XXX
=== Compression Layer===
XXX To be written XXX
=== Format Layer===
XXX To be written XXX
=== API Layer===
XXX To be written XXX
== WRITE_DISK ARCHITECTURE ==
The write_disk API is intended to look just like the write API
to clients.
Since it does not handle multiple formats or compression, it
is not layered internally.
== GENERAL SERVICES ==
The
*archive_read*,
*archive_write*,
and
*archive_write_disk*
objects all contain an initial
*archive*
object which provides common support for a set of standard services.
(Recall that ANSI/ISO C90 guarantees that you can cast freely between
a pointer to a structure and a pointer to the first element of that
structure.)
The
*archive*
object has a magic value that indicates which API this object
is associated with,
slots for storing error information,
and function pointers for virtualized API functions.
== MISCELLANEOUS NOTES ==
Connecting existing archiving libraries into libarchive is generally
quite difficult.
In particular, many existing libraries strongly assume that you
are reading from a file; they seek forwards and backwards as necessary
to locate various pieces of information.
In contrast, libarchive never seeks backwards in its input, which
sometimes requires very different approaches.
For example, libarchive's ISO9660 support operates very differently
from most ISO9660 readers.
The libarchive support utilizes a work-queue design that
keeps a list of known entries sorted by their location in the input.
Whenever libarchive's ISO9660 implementation is asked for the next
header, checks this list to find the next item on the disk.
Directories are parsed when they are encountered and new
items are added to the list.
This design relies heavily on the ISO9660 image being optimized so that
directories always occur earlier on the disk than the files they
describe.
Depending on the specific format, such approaches may not be possible.
The ZIP format specification, for example, allows archivers to store
key information only at the end of the file.
In theory, it is possible to create ZIP archives that cannot
be read without seeking.
Fortunately, such archives are very rare, and libarchive can read
most ZIP archives, though it cannot always extract as much information
as a dedicated ZIP program.
== SEE ALSO ==
*archive*(3),
*archive_entry*(3),
*archive_read*(3),
*archive_write*(3),
*archive_write_disk*(3)
== HISTORY ==
The
*libarchive*
library first appeared in
FreeBSD 5.3.
== AUTHORS ==
The
*libarchive*
library was written by
Tim Kientzle <kientzle@acm.org.>
== BUGS ==
| MediaWiki | 4 | OakCityLabs/ios_system | libarchive/libarchive/doc/wiki/ManPageLibarchiveInternals3.wiki | [
"BSD-3-Clause"
] |
CREATE TABLE hdb_catalog.hdb_computed_field
(
table_schema TEXT,
table_name TEXT,
computed_field_name TEXT,
definition JSONB NOT NULL,
comment TEXT NULL,
PRIMARY KEY (table_schema, table_name, computed_field_name),
FOREIGN KEY (table_schema, table_name) REFERENCES hdb_catalog.hdb_table(table_schema, table_name) ON UPDATE CASCADE
);
CREATE VIEW hdb_catalog.hdb_computed_field_function AS
(
SELECT
table_schema,
table_name,
computed_field_name,
CASE
WHEN (definition::jsonb -> 'function')::jsonb ->> 'name' IS NULL THEN definition::jsonb ->> 'function'
ELSE (definition::jsonb -> 'function')::jsonb ->> 'name'
END AS function_name,
CASE
WHEN (definition::jsonb -> 'function')::jsonb ->> 'schema' IS NULL THEN 'public'
ELSE (definition::jsonb -> 'function')::jsonb ->> 'schema'
END AS function_schema
FROM hdb_catalog.hdb_computed_field
);
CREATE OR REPLACE VIEW hdb_catalog.hdb_function_agg AS
(
SELECT
p.proname::text AS function_name,
pn.nspname::text AS function_schema,
pd.description,
CASE
WHEN (p.provariadic = (0) :: oid) THEN false
ELSE true
END AS has_variadic,
CASE
WHEN (
(p.provolatile) :: text = ('i' :: character(1)) :: text
) THEN 'IMMUTABLE' :: text
WHEN (
(p.provolatile) :: text = ('s' :: character(1)) :: text
) THEN 'STABLE' :: text
WHEN (
(p.provolatile) :: text = ('v' :: character(1)) :: text
) THEN 'VOLATILE' :: text
ELSE NULL :: text
END AS function_type,
pg_get_functiondef(p.oid) AS function_definition,
rtn.nspname::text as return_type_schema,
rt.typname::text as return_type_name,
rt.typtype::text as return_type_type,
p.proretset AS returns_set,
( SELECT
COALESCE(json_agg(
json_build_object('schema', q."schema",
'name', q."name",
'type', q."type"
)
), '[]')
FROM
(
SELECT
pt.typname AS "name",
pns.nspname AS "schema",
pt.typtype AS "type",
pat.ordinality
FROM
unnest(
COALESCE(p.proallargtypes, (p.proargtypes) :: oid [])
) WITH ORDINALITY pat(oid, ordinality)
LEFT JOIN pg_type pt ON ((pt.oid = pat.oid))
LEFT JOIN pg_namespace pns ON (pt.typnamespace = pns.oid)
ORDER BY pat.ordinality ASC
) q
) AS input_arg_types,
to_json(COALESCE(p.proargnames, ARRAY [] :: text [])) AS input_arg_names,
p.pronargdefaults AS default_args,
p.oid::integer AS function_oid
FROM
pg_proc p
JOIN pg_namespace pn ON (pn.oid = p.pronamespace)
JOIN pg_type rt ON (rt.oid = p.prorettype)
JOIN pg_namespace rtn ON (rtn.oid = rt.typnamespace)
LEFT JOIN pg_description pd ON p.oid = pd.objoid
WHERE
pn.nspname :: text NOT LIKE 'pg_%'
AND pn.nspname :: text NOT IN ('information_schema', 'hdb_catalog', 'hdb_views')
AND (NOT EXISTS (
SELECT
1
FROM
pg_aggregate
WHERE
((pg_aggregate.aggfnoid) :: oid = p.oid)
)
)
);
| SQL | 4 | gh-oss-contributor/graphql-engine-1 | server/src-rsr/migrations/25_to_26.sql | [
"Apache-2.0",
"MIT"
] |
module M2 where
import Prelude
import M1 as M1
baz :: M1.Foo -> String
baz = M1.foo
match :: M1.Foo -> String
match = \f -> case f of M1.Foo s -> s <> "foo"
| PureScript | 4 | metaleap/purs-with-dump-coreimp | examples/passing/Module/M2.purs | [
"BSD-3-Clause"
] |
$ORIGIN success-cases.
$TTL 3600
@ SOA primary admin 0 0 0 0 0
; A particular key does not need to have a value
s01 SVCB 0 . key123
; echconfig does not need to have a value
s02 SVCB 0 . echconfig
; When "no-default-alpn" is specified in an RR, "alpn" must also be specified
; in order for the RR to be "self-consistent"
s03 HTTPS 0 . alpn="h2,h3" no-default-alpn
; SHOULD is not MUST (so allowed)
; Zone-file implementations SHOULD enforce self-consistency
s04 HTTPS 0 . no-default-alpn
; SHOULD is not MUST (so allowed)
; (port and no-default-alpn are automatically mandatory keys with HTTPS)
; Other automatically mandatory keys SHOULD NOT appear in the list either.
s05 HTTPS 0 . alpn="dot" no-default-alpn port=853 mandatory=port
; Any valid base64 is okay for ech
s06 HTTPS 0 . ech="aGVsbG93b3JsZCE="
; echconfig is an alias for ech
s07 HTTPS 0 . echconfig="aGVsbG93b3JsZCE="
; maximum size allowed in a svcb rdata set (63 SvcParams)
s08 HTTPS 0 . ( key11=a key12=a key13=a key14=a key15=a key16=a key17=a key18=a key19=a key110=a key111=a key112=a key113=a key114=a key115=a key116=a key117=a key118=a key119=a key120=a key121=a key122=a key123=a key124=a key125=a key126=a key127=a key128=a key129=a key130=a key131=a key132=a key133=a key134=a key135=a key136=a key137=a key138=a key139=a key140=a key141=a key142=a key143=a key144=a key145=a key146=a key147=a key148=a key149=a key150=a key151=a key152=a key153=a key154=a key155=a key156=a key157=a key158=a key159=a key160=a key161=a key162=a key163=a)
; maximum alpn size allowed (255 characters)
s09 HTTPS 0 . ( alpn="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" )
| DNS Zone | 3 | luisdallos/unbound | testdata/svcb.tdir/svcb.success-cases.zone | [
"BSD-3-Clause"
] |
package jadx.core.utils;
import java.lang.reflect.Type;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
public class GsonUtils {
public static <T> InterfaceReplace<T> interfaceReplace(Class<T> replaceCls) {
return new InterfaceReplace<>(replaceCls);
}
private static final class InterfaceReplace<T> implements JsonSerializer<T>, JsonDeserializer<T> {
private final Class<T> replaceCls;
private InterfaceReplace(Class<T> replaceCls) {
this.replaceCls = replaceCls;
}
@Override
public T deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
return context.deserialize(json, this.replaceCls);
}
@Override
public JsonElement serialize(T src, Type typeOfSrc, JsonSerializationContext context) {
return context.serialize(src, this.replaceCls);
}
}
}
| Java | 4 | Dev-kishan1999/jadx | jadx-core/src/main/java/jadx/core/utils/GsonUtils.java | [
"Apache-2.0"
] |
h=.'Hello World'
h
| J | 0 | kennethsequeira/Hello-world | J/HelloWorld.ijs | [
"MIT"
] |
# It's often a good idea to start the test with 'setup'.
# See /selenium/setup for more info.
setup
open '/'
assert_title 'Home'
# More information about the commands is available at:
# http://release.openqa.org/selenium-core/nightly/reference.html
# See also the RDoc for SeleniumOnRails::TestBuilder.
#
# Point the browser to <%= testcase_link %> to see
# how this test is rendered, or to <%= suite_link %> to
# run the suite.
| RHTML | 4 | RockHong/railscasts-episodes | episode-116/store/vendor/plugins/selenium-on-rails/generators/selenium/templates/rselenese.rhtml | [
"MIT"
] |
; Octave CPU - Hello World
; R2R1 ← string
LAA R2, R1, string
loop:
; R0 ← [R2R1]
LOAD R2, R1
; IF R0 == 0, JMP exit
XOR R3, R3
ADD R3, R0
LRA exit
JMP R0 Z
; PRINT R3
OUT R3, 1
; INC R1
LOADI 0x01
ADD R1, R0
; JMP loop
LRA loop
JMP R0 NZP
exit:
HALT
string:
BYTES "Hello world!\n"
BYTE 0x00
| Octave | 3 | campaul/octave | hello-world.oct | [
"MIT"
] |
#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(dead_code)]
#![deny(unreachable_code)]
#![feature(type_ascription)]
fn a() {
// Here we issue that the "2nd-innermost" return is unreachable,
// but we stop there.
let x = {return {return {return;}}}; //~ ERROR unreachable
}
fn main() { }
| Rust | 3 | Eric-Arellano/rust | src/test/ui/reachable/expr_return.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
;;; ui/doom-dashboard/autoload.el -*- lexical-binding: t; -*-
(defun +doom-dashboard--help-echo ()
(when-let* ((btn (button-at (point)))
(msg (button-get btn 'help-echo)))
(message "%s" msg)))
;;;###autoload
(defun +doom-dashboard/open (frame)
"Switch to the dashboard in the current window, of the current FRAME."
(interactive (list (selected-frame)))
(with-selected-frame frame
(switch-to-buffer (doom-fallback-buffer))
(+doom-dashboard-reload t)))
;;;###autoload
(defun +doom-dashboard/forward-button (n)
"Like `forward-button', but don't wrap."
(interactive "p")
(forward-button n nil)
(+doom-dashboard--help-echo))
;;;###autoload
(defun +doom-dashboard/backward-button (n)
"Like `backward-button', but don't wrap."
(interactive "p")
(backward-button n nil)
(+doom-dashboard--help-echo))
| Emacs Lisp | 4 | leezu/doom-emacs | modules/ui/doom-dashboard/autoload.el | [
"MIT"
] |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <React/RCTDefines.h>
/* These macros are used to stub C functions. Here's an example:
*
* Helpers.h
* ------
* boolean ReturnsTrueOrFalse(void);
*
* FileToBeTested.h
* ------
* RCT_MOCK_DEF(Testing, ReturnsTrueOrFalse);
* #define ReturnsTrueOrFalse RCT_MOCK_USE(Testing, ReturnsTrueOrFalse)
*
* int FunctionToBeTested(int input) {
* return ReturnsTrueOrFalse() ? input + 1 : input - 1;
* }
*
* Test.h
* -----
* RCT_MOCK_GET(Testing, ReturnsTrueOrFalse);
*
* boolean _ReturnsTrue(void) { return true; }
* boolean _ReturnsFalse(void) { return false; }
*
* void TestFunctionTrue(void) {
* RCT_MOCK_SET(Testing, ReturnsTrueOrFalse, _ReturnsTrue);
* assert(FunctionToBeTested(5) == 6);
* RCT_MOCK_RESET(Testing, ReturnsTrueOrFalse);
* }
*
* void TestFunctionFalse(void) {
* RCT_MOCK_SET(Testing, ReturnsTrueOrFalse, _ReturnsFalse);
* assert(FunctionToBeTested(5) == 4);
* RCT_MOCK_RESET(Testing, ReturnsTrueOrFalse);
* }
*
*/
#ifdef RCT_DEV
#define RCT_MOCK_DEF(context, api) \
__typeof(__typeof(api) *) mockptr_##context##_##api = &api;
#define RCT_MOCK_REF(context, api) \
extern __typeof(__typeof(api) *) mockptr_##context##_##api;
#define RCT_MOCK_SET(context, api, mockapi) \
(mockptr_##context##_##api = &mockapi)
#define RCT_MOCK_RESET(context, api) (mockptr_##context##_##api = &api)
#define RCT_MOCK_USE(context, api) (*mockptr_##context##_##api)
#else
#define RCT_MOCK_DEF(context, api)
#define RCT_MOCK_REF(context, api)
#define RCT_MOCK_SET(context, api, mockapi)
#define RCT_MOCK_RESET(context, api)
#define RCT_MOCK_USE(context, api) api
#endif
| C | 4 | peterc1731/react-native | React/Base/RCTMockDef.h | [
"CC-BY-4.0",
"MIT"
] |
2016-02-18 11:43:50 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 11:43:50 [11:43]
2016-02-18 11:43:50 - Topic for ##systemau is "#systemau"
2016-02-18 11:43:50 - Topic set by root (root@localhost) on Thu, 18 Feb 2016 11:43:50
2016-02-18 11:43:50 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 11:43:50 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-18 11:43:50 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-18 11:43:50 > Adam (Adam@telegram) has joined ##systemau
2016-02-18 11:43:50 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-18 11:43:50 > Amir (Amir@telegram) has joined ##systemau
2016-02-18 11:43:50 > Angela (Angela@telegram) has joined ##systemau
2016-02-18 11:43:50 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-18 11:43:50 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-18 11:43:50 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-18 11:43:50 > emb (emb@telegram) has joined ##systemau
2016-02-18 11:43:50 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-18 11:43:50 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-18 11:43:50 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-18 11:43:50 > Joe (Joe@telegram) has joined ##systemau
2016-02-18 11:43:50 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-18 11:43:50 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-18 11:43:50 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-18 11:43:50 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-18 11:43:50 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-18 11:43:50 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-18 11:43:50 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-18 11:43:50 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-18 11:43:50 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-18 11:43:50 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-18 11:43:50 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-18 11:43:50 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-18 11:43:50 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-18 11:43:50 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-18 11:43:50 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-18 11:43:50 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-18 11:43:50 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-18 11:43:50 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-18 11:43:50 > Tom (Tom@telegram) has joined ##systemau
2016-02-18 11:43:50 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-18 11:43:50 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-18 11:43:50 NicholasB http://mashable.com/2016/02/17/world-cheapest-phone-freedom251/#YKUwD0MLXOqm
2016-02-18 11:43:57 NicholasB do i know any one in india?
2016-02-18 11:43:59 @fsociety well it worked
2016-02-18 11:44:08 @fsociety im now in telegram in bitlbee/weechat
2016-02-18 11:44:11 @fsociety i'll take a screenshot
2016-02-18 11:44:12 NicholasB the bitlbee or the font changing?
2016-02-18 11:44:14 NicholasB ohh
2016-02-18 11:44:18 NicholasB cool
2016-02-18 11:45:53 @fsociety https://u.teknik.io/6C49Y.png
2016-02-18 11:45:54 @fsociety taadaa
2016-02-18 11:46:01 @fsociety pretty easy to setup, and that was in gentoo
2016-02-18 11:47:52 NicholasB intresting how it say all the people have joined on sign in
2016-02-18 11:49:06 @fsociety it works through the pidgin plugin, either way it works tons better than telegram-cli
2016-02-18 11:49:58 @fsociety if you need help installing it just ask
2016-02-18 11:50:57 @fsociety the fact i can mush it in with my irc client saves me from loading up a million programs.
2016-02-18 11:52:04 NicholasB ill give it a burl maybe. i'm tempted to have a light pc weekend.
2016-02-18 11:52:22 NicholasB luckily there is a fucking nuts show in geelong on saturday
2016-02-18 11:52:24 NicholasB all day
2016-02-18 11:52:32 NicholasB all aussie garage rock
2016-02-18 11:52:43 @fsociety aussie garage prog rock?
2016-02-18 11:52:44 @fsociety ;)
2016-02-18 11:54:33 @fsociety on a serious note that sounds cool
2016-02-18 11:54:47 @fsociety i gotta get off my ass and join a band again
2016-02-18 11:55:04 @fsociety i get asked a lot, but i want to be in a band with no egos (an impossible task)
2016-02-18 12:01:00 [11:55]
2016-02-18 12:04:43 NicholasB yeah. i'm shit in bands.
2016-02-18 12:04:51 NicholasB jimbo and i are old friends so it works.
2016-02-18 12:04:59 NicholasB jerk fest 2!
2016-02-18 12:05:01 NicholasB its called
2016-02-18 12:05:13 NicholasB about 5 bands we played last year are on the bill
2016-02-18 12:11:00 [12:05]
2016-02-18 12:14:48 @fsociety haha.. that helps
2016-02-18 12:15:04 @fsociety i used to play in jazz band with my father eons ago.. = ultra arguments
2016-02-18 12:15:04 @fsociety haha
2016-02-18 12:17:28 NicholasB i can imagine. @Jimmy3600 and i often laugh because we jam shit and know where we are going. it's not great but it happens pretty naturally.
2016-02-18 12:18:23 @fsociety when you play melbourne again tell me
2016-02-18 12:19:29 NicholasB will do.
2016-02-18 12:19:36 NicholasB we have to record some new stuff first
2016-02-18 12:19:43 NicholasB and get some more songs in the set
2016-02-18 12:19:47 NicholasB get it up to over 20 minutes
2016-02-18 12:22:14 > Sean (Sean@telegram) has joined ##systemau
2016-02-18 12:22:14 Sean Nicholas B added user Sean by link.
2016-02-18 12:24:55 NicholasB g'day sean
2016-02-18 12:29:24 Sean Hey. Thanks for the link.
2016-02-18 12:29:24 [12:29]
2016-02-18 12:29:35 @fsociety welcome to the rabbit hole
2016-02-18 12:30:02 Sean I thought it was pretty roomy.
2016-02-18 12:30:25 @fsociety leave your phone not on silent and you will soon discover
2016-02-18 12:30:28 NicholasB No problem Sean. Not much has changed. Lots of shit talk and links :)
2016-02-18 12:30:35 NicholasB I still recommend turning off notifications.
2016-02-18 12:30:51 Sean Already did :)
2016-02-18 12:31:17 NicholasB smart man.
2016-02-18 12:31:29 NicholasB sometimes i wake up and there alite 300 missed messages
2016-02-18 12:32:00 Sean So what you're saying is you've become a speed reader
2016-02-18 12:34:39 NicholasB nah. a speed ignorer. :P
2016-02-18 12:35:20 NicholasB Hows Indiana?
2016-02-18 12:35:26 NicholasB that's your loc isn' tit
2016-02-18 12:35:33 NicholasB or am i getting people confused.
2016-02-18 12:36:58 Sean Yep. Its not too bad. Normal cold February. Can't wait until spring. Well, my spring, your fall :)
2016-02-18 12:38:19 NicholasB its already cold today for feb. which is normally pretty warm out here
2016-02-18 12:38:25 NicholasB all gloomy.
2016-02-18 12:39:32 Sean Damn climate change
2016-02-18 12:39:59 Sean Well you have a new season of footy to look forward to ;)
2016-02-18 12:41:05 Sean I actually like footy because its different. American Football is so boring here.
2016-02-18 12:41:30 NicholasB i'm not a big footy fan. but geelong is a huge football town\
2016-02-18 12:41:37 NicholasB i live near the stadium
2016-02-18 12:41:44 Sean Also too many armchair commentators. No one really like to talk tech.
2016-02-18 12:42:46 Sean Although I did get someone to switch from Windows to Ubuntu Unity. Pretty stoked about that. So far he likes it.
2016-02-18 12:42:54 NicholasB oh sweet.
2016-02-18 12:43:07 NicholasB i'm gunna get my little sister on to it by the end of the year
2016-02-18 12:43:11 NicholasB even if its dual boot :)
2016-02-18 12:43:16 NicholasB its my goal.
2016-02-18 12:43:23 Sean Nice!
2016-02-18 12:43:54 Sean He upgraded to 10 and got super pissed at it and was done with Windows.
2016-02-18 12:44:15 NicholasB ha.
2016-02-18 12:44:19 @fsociety Sean: He likes Unity?
2016-02-18 12:44:21 NicholasB that's a common story i think.
2016-02-18 12:45:07 Sean He likes it because he doesn't know different. He might start fiddling around but as a new father he doesn't have much time currently.
2016-02-18 12:45:07 [12:45]
2016-02-18 12:45:44 @fsociety that makes sense :) i thought maybe going to something more window like - for eg. cinnamon might even help the transition be even smoother
2016-02-18 12:46:54 Sean I was in the same boat as him when I talked to him about it.
2016-02-18 12:47:29 @fsociety last two days have been exciting in linux tech land. vulkan and what seems like quite a mature release of wayland
2016-02-18 12:47:32 Sean Now I use @wimpress distro. My wife likes it too.
2016-02-18 12:47:38 @fsociety the more i see every itteration of wayland i want to install it
2016-02-18 12:47:53 @fsociety ahh mate
2016-02-18 12:48:09 Sean Yep.
2016-02-18 12:48:15 @fsociety yeah i used that for a little bit, then i went back to normal ways :) but its like using the ubuntu i remember i loved :)
2016-02-18 12:48:30 Sean Runs so silky smooth for me.
2016-02-18 12:48:55 @fsociety as everyone else knows. i'm all tiling window managers, and terminal windows these days. my gf complains because she cant use my pc
2016-02-18 12:49:07 Sean Welp. Gotta get back to work. Later.
2016-02-18 12:49:10 NicholasB Ahhh Ubuntu Martin as I like to call it.
2016-02-18 12:49:13 NicholasB Catch ya.
2016-02-18 12:49:18 NicholasB thanks for popping in .
2016-02-18 12:49:42 Sean That's why I don't fiddle with mine too much. I'll get a different compy to do my own stuff on.
2016-02-18 12:49:51 @fsociety more people to add to the collection :)
2016-02-18 12:50:04 @fsociety NicholasB: though clearly you already knew him quite well
2016-02-18 12:50:27 Sean I like it :)
2016-02-18 12:52:38 @fsociety the fact i can now talk in telegram in weechat makes life wonderful
2016-02-18 12:55:08 NicholasB ive never even heard of weechat.
2016-02-18 12:55:11 NicholasB ill take a gander
2016-02-18 12:55:17 NicholasB when i get home if i remember.
2016-02-18 12:55:20 @fsociety https://youtu.be/NGNRaUOg6JE
2016-02-18 12:55:23 NicholasB :P
2016-02-18 12:55:29 @fsociety a much better tribute to bowie than that god awful lady gaga version
2016-02-18 12:55:33 @fsociety go mr steven wilson :)
2016-02-18 13:01:00 [12:55]
2016-02-18 13:20:12 - irc: disconnected from server
2016-02-18 13:20:12 [13:20]
2016-02-18 13:34:16 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 13:34:16 [13:34]
2016-02-18 13:34:16 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 13:49:24 - irc: disconnected from server
2016-02-18 13:49:24 [13:49]
2016-02-18 13:57:33 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 13:57:33 [13:57]
2016-02-18 13:57:33 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 14:03:33 @fsociety NicholasB: for some unknown reason the usbquirks aren't working for me anymore on ckb
2016-02-18 14:03:43 @fsociety i have to keep unplugging and plugging the keyboard back in
2016-02-18 14:09:00 [14:03]
2016-02-18 14:14:26 - irc: disconnected from server
2016-02-18 14:19:55 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 14:19:55 [14:19]
2016-02-18 14:19:55 - Topic for ##systemau is "#systemau"
2016-02-18 14:19:55 - Topic set by root (root@localhost) on Thu, 18 Feb 2016 14:19:55
2016-02-18 14:19:55 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 14:19:55 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-18 14:19:55 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-18 14:19:55 > Adam (Adam@telegram) has joined ##systemau
2016-02-18 14:19:55 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-18 14:19:55 > Amir (Amir@telegram) has joined ##systemau
2016-02-18 14:19:55 > Angela (Angela@telegram) has joined ##systemau
2016-02-18 14:19:55 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-18 14:19:55 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-18 14:19:55 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-18 14:19:55 > emb (emb@telegram) has joined ##systemau
2016-02-18 14:19:55 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-18 14:19:55 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-18 14:19:55 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-18 14:19:55 > Joe (Joe@telegram) has joined ##systemau
2016-02-18 14:19:55 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-18 14:19:55 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-18 14:19:55 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-18 14:19:55 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-18 14:19:55 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-18 14:19:55 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-18 14:19:55 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-18 14:19:55 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-18 14:19:55 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-18 14:19:55 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-18 14:19:55 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-18 14:19:55 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-18 14:19:55 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-18 14:19:55 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-18 14:19:55 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-18 14:19:55 > Sean (Sean@telegram) has joined ##systemau
2016-02-18 14:19:55 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-18 14:19:55 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-18 14:19:55 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-18 14:19:55 > Tom (Tom@telegram) has joined ##systemau
2016-02-18 14:19:55 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-18 14:19:55 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-18 14:19:55 NicholasB http://www.apple.com/customer-letter/
2016-02-18 14:20:05 NicholasB did everyone read this.
2016-02-18 14:20:09 NicholasB i like tim cook.
2016-02-18 14:20:16 NicholasB i don't like his products.
2016-02-18 14:20:19 NicholasB but i like him.
2016-02-18 14:20:29 @fsociety yeah i actually went wow he did something good for a change
2016-02-18 14:20:55 @fsociety my housemate and i and go rose gold is the best gold, jokingly over the mac books
2016-02-18 14:24:23 NicholasB ha
2016-02-18 14:30:00 [14:24]
2016-02-18 14:34:52 EricT Old Scottish gents use it, for a wee-chat, Laddie!
2016-02-18 14:35:29 NicholasB you've been working on that on eall day haven't you @kloinka
2016-02-18 14:36:33 EricT Aye, Laddies!
2016-02-18 14:36:48 EricT 😁
2016-02-18 14:38:19 EricT Mate, this group chat is hard! everytime I look there's 80 odd new messages...
2016-02-18 14:38:43 NicholasB Harden up Sunshine.
2016-02-18 14:39:01 EricT Being sociable is hard for me!
2016-02-18 14:39:44 NicholasB Ha. you seem fine at it to me.
2016-02-18 14:45:00 [14:39]
2016-02-18 14:53:05 @fsociety EricT: I call bullshit, how many messages do you put on here in a day?
2016-02-18 14:53:10 @fsociety ;)
2016-02-18 14:53:39 @fsociety EricT is just complaining because he hasn't posted his quota of 50,000 posts a day for a while
2016-02-18 14:59:00 [14:53]
2016-02-18 15:04:14 - irc: disconnected from server
2016-02-18 16:52:05 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 16:52:05 [16:52]
2016-02-18 16:52:05 - Topic for ##systemau is "#systemau"
2016-02-18 16:52:05 - Topic set by root (root@localhost) on Thu, 18 Feb 2016 16:52:05
2016-02-18 16:52:05 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 16:52:05 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-18 16:52:05 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-18 16:52:05 > Adam (Adam@telegram) has joined ##systemau
2016-02-18 16:52:05 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-18 16:52:05 > Amir (Amir@telegram) has joined ##systemau
2016-02-18 16:52:05 > Angela (Angela@telegram) has joined ##systemau
2016-02-18 16:52:05 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-18 16:52:05 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-18 16:52:05 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-18 16:52:05 > emb (emb@telegram) has joined ##systemau
2016-02-18 16:52:05 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-18 16:52:05 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-18 16:52:05 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-18 16:52:05 > Joe (Joe@telegram) has joined ##systemau
2016-02-18 16:52:05 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-18 16:52:05 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-18 16:52:05 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-18 16:52:05 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-18 16:52:05 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-18 16:52:05 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-18 16:52:05 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-18 16:52:05 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-18 16:52:05 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-18 16:52:05 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-18 16:52:05 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-18 16:52:05 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-18 16:52:05 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-18 16:52:05 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-18 16:52:05 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-18 16:52:05 > Sean (Sean@telegram) has joined ##systemau
2016-02-18 16:52:05 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-18 16:52:05 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-18 16:52:05 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-18 16:52:05 > Tom (Tom@telegram) has joined ##systemau
2016-02-18 16:52:05 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-18 16:52:05 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-18 16:52:05 NicholasB [15:08:21] you've scared him of dean.
2016-02-18 16:52:05 NicholasB [15:08:25] *off
2016-02-18 16:52:05 EricT [16:05:10] -""""-
2016-02-18 16:52:05 EricT [16:05:10] ' '
2016-02-18 16:52:05 EricT [16:05:10] / .===. \
2016-02-18 16:52:05 EricT [16:05:10] \/ 6 6 \/
2016-02-18 16:52:05 EricT [16:05:10] ( \___/ )
2016-02-18 16:52:05 EricT [16:05:10] _ooo__\_____/__________
2016-02-18 16:52:05 EricT [16:05:10] / \
2016-02-18 16:52:05 EricT [16:05:10] | Im Fucking |
2016-02-18 16:52:05 EricT [16:05:10] | ANTISOCIAL! |
2016-02-18 16:52:05 EricT [16:05:10] | |
2016-02-18 16:52:05 EricT [16:05:10] | |
2016-02-18 16:52:05 EricT [16:05:10] \______________ooo________/
2016-02-18 16:52:05 EricT [16:05:10] | | | |
2016-02-18 16:52:05 EricT [16:05:10] |_ | |_ |
2016-02-18 16:52:05 EricT [16:05:10] | | | |
2016-02-18 16:52:05 EricT [16:05:10] |__| |__|
2016-02-18 16:52:05 EricT [16:05:10] /_' Y '_\
2016-02-18 16:52:05 EricT [16:05:10] (___/ \___)
2016-02-18 16:52:05 EricT [16:05:30] Ascii degeneration
2016-02-18 16:52:05 EricT [16:14:16] . -""""-
2016-02-18 16:52:05 EricT [16:14:16] ' '
2016-02-18 16:52:05 EricT [16:14:16] / .===. \
2016-02-18 16:52:05 EricT [16:14:16] \/ 6 6 \/
2016-02-18 16:52:05 EricT [16:14:16] ( \___/ )
2016-02-18 16:52:05 EricT [16:14:16] _ooo__\_____/__________
2016-02-18 16:52:05 EricT [16:14:16] / \
2016-02-18 16:52:05 EricT [16:14:16] | Lets have a Wee-chat |
2016-02-18 16:52:05 EricT [16:14:16] | LADDIES! |
2016-02-18 16:52:05 EricT [16:14:16] | |
2016-02-18 16:52:05 EricT [16:14:16] | |
2016-02-18 16:52:05 EricT [16:14:16] \______________ooo_______/
2016-02-18 16:52:05 EricT [16:14:16] | | | |
2016-02-18 16:52:05 EricT [16:14:16] |_ | |_ |
2016-02-18 16:52:05 EricT [16:14:16] | | | |
2016-02-18 16:52:05 EricT [16:14:16] |__| |__|
2016-02-18 16:52:05 EricT [16:14:16] /_' Y '_\
2016-02-18 16:52:05 EricT [16:14:16] (___/ \___)
2016-02-18 16:52:05 NicholasB [16:14:20] <br><img id="1">
2016-02-18 16:52:05 EricT [16:23:31] it all depends on the "why" the android user chose Android, if because of price then I somewhat agree!
2016-02-18 16:53:09 @fsociety Haha.. Naa.. If anything Eric was the most entertaining at LinuxConf :)
2016-02-18 16:59:00 [16:53]
2016-02-18 17:00:07 EricT I <3 Dean, shucks....
2016-02-18 17:06:00 [17:00]
2016-02-18 17:47:29 NottheOtherDan <br><img id="4">
2016-02-18 17:47:29 [17:47]
2016-02-18 17:49:52 NicholasB look its a few years old. but i've just stumbled on to this little game from the papers please developer.
2016-02-18 17:49:55 NicholasB quite fun.
2016-02-18 17:49:57 NicholasB http://dukope.com/play.php?g=trt
2016-02-18 17:50:09 NicholasB in browser
2016-02-18 17:50:38 NicholasB use a state run newspaper to influence public opinion
2016-02-18 17:56:00 [17:50]
2016-02-18 18:33:45 EricT Convergence Bitches!
2016-02-18 18:33:45 [18:33]
2016-02-18 18:33:45 EricT http://i.imgur.com/JzFLBS4.png
2016-02-18 18:34:59 NicholasB Ha
2016-02-18 18:35:08 NicholasB Nice work.
2016-02-18 18:35:38 EricT I'll give some feedback to systemau!
2016-02-18 18:36:01 NicholasB fuck yeah.
2016-02-18 18:36:05 NicholasB that would be great.
2016-02-18 18:36:20 EricT or a vid demo, if possible
2016-02-18 18:36:35 NicholasB yeah we could link to it fo sure.
2016-02-18 18:36:40 NicholasB and mention it ./
2016-02-18 18:42:00 [18:36]
2016-02-18 18:57:16 NottheOtherDan <br><img id="5">
2016-02-18 18:57:16 [18:57]
2016-02-18 18:57:21 NottheOtherDan @F_s0c1ety
2016-02-18 19:02:09 EricT If you want an opinion ask a teen-ager, or an ARCH! user.
2016-02-18 19:02:24 NottheOtherDan <br><img id="6">
2016-02-18 19:02:59 EricT Lol, #truestory
2016-02-18 19:07:16 NottheOtherDan <br><img id="7">
2016-02-18 19:13:00 [19:07]
2016-02-18 19:15:05 EricT 40yr old ARCH user; " mom, what's for dinner? "
2016-02-18 19:16:20 PaulGleeson <br><img id="8">
2016-02-18 19:16:26 NottheOtherDan "Get out of my room Mum! This is a private area!!!"
2016-02-18 19:17:17 TristanJames <br><img id="9">
2016-02-18 19:17:35 NicholasB you win this round tristan.
2016-02-18 19:17:55 NicholasB i love that guy.
2016-02-18 19:18:00 EricT Agreed.
2016-02-18 19:18:22 NottheOtherDan Not the Other Dan changed photo.
2016-02-18 19:19:39 TristanJames It popped up on FB at just the right time.
2016-02-18 19:19:49 PaulGleeson @elChupaNibre Wimpress was shouting at you, did you speak to him?
2016-02-18 19:20:35 NottheOtherDan No, I haven't. Are you talking about the 6am group shouting?
2016-02-18 19:21:42 PaulGleeson Yes
2016-02-18 19:27:00 [19:21]
2016-02-18 19:30:42 EricT Only crazy people be up at sparrow fart!
2016-02-18 19:31:05 AlanPope I'm the 'voice' of Mycroft
2016-02-18 19:31:46 NicholasB i don't know if i could handle that.
2016-02-18 19:31:56 NicholasB because i know you.
2016-02-18 19:32:13 AlanPope Stuart said similar :)
2016-02-18 19:32:16 NicholasB mycroft play that xxx movie i've been saving.
2016-02-18 19:32:20 NicholasB sure nick.
2016-02-18 19:32:27 NicholasB in popey voice.
2016-02-18 19:32:42 AlanPope Quietly judging you...
2016-02-18 19:32:54 EricT When I get my Mycroft will change to The "male" computer on Red Dwarf
2016-02-18 19:33:49 NicholasB it's okay when you do it from the other side of the world but in my lounge thats altogeher different. .
2016-02-18 19:35:21 EricT Holly! Thanks googs.
2016-02-18 19:41:00 [19:35]
2016-02-18 19:47:09 NicholasB They were both called holly. :P
2016-02-18 19:47:32 NicholasB And there was queeg
2016-02-18 19:47:41 NicholasB For one episode.
2016-02-18 19:53:00 [19:47]
2016-02-18 20:08:35 AlanPope I am not convinced it will sound 100% like me
2016-02-18 20:08:35 [20:08]
2016-02-18 20:08:44 AlanPope Given it requires a lot of compute processing
2016-02-18 20:14:00 [20:08]
2016-02-18 20:17:30 NicholasB I'm looking forward to taking a look at the software. It would be cool to stick in a broken radio
2016-02-18 20:17:50 NicholasB Have a little fading led behind the speaker for when it talks.
2016-02-18 20:23:00 [20:17]
2016-02-18 20:24:43 EricT Sumo Ninja!
2016-02-18 20:25:17 EricT lol, and it's Diet Coke!
2016-02-18 20:31:00 [20:25]
2016-02-18 20:38:03 NottheOtherDan bbillyk!
2016-02-18 20:38:06 NottheOtherDan Love him
2016-02-18 20:38:57 NottheOtherDan https://www.youtube.com/user/bbillyk
2016-02-18 20:44:00 [20:38]
2016-02-18 20:44:00 EricT OMG he really hates BPA plastic bottles!
2016-02-18 20:49:42 NicholasB showing my desktop
2016-02-18 20:50:20 NicholasB <br><img id="10">
2016-02-18 20:51:23 NottheOtherDan Wow. KDE. You drunk?
2016-02-18 20:51:34 NicholasB not just kde
2016-02-18 20:51:39 NicholasB opensuse kde
2016-02-18 20:53:30 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 20:53:30 [20:53]
2016-02-18 20:53:30 - Topic for ##systemau is "#systemau"
2016-02-18 20:53:30 - Topic set by root (root@localhost) on Thu, 18 Feb 2016 20:53:30
2016-02-18 20:53:30 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 20:53:30 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-18 20:53:30 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-18 20:53:30 > Adam (Adam@telegram) has joined ##systemau
2016-02-18 20:53:30 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-18 20:53:30 > Amir (Amir@telegram) has joined ##systemau
2016-02-18 20:53:30 > Angela (Angela@telegram) has joined ##systemau
2016-02-18 20:53:30 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-18 20:53:30 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-18 20:53:30 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-18 20:53:30 > emb (emb@telegram) has joined ##systemau
2016-02-18 20:53:30 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-18 20:53:30 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-18 20:53:30 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-18 20:53:30 > Joe (Joe@telegram) has joined ##systemau
2016-02-18 20:53:30 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-18 20:53:30 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-18 20:53:30 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-18 20:53:30 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-18 20:53:30 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-18 20:53:30 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-18 20:53:30 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-18 20:53:30 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-18 20:53:30 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-18 20:53:30 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-18 20:53:30 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-18 20:53:30 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-18 20:53:30 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-18 20:53:30 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-18 20:53:30 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-18 20:53:30 > Sean (Sean@telegram) has joined ##systemau
2016-02-18 20:53:30 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-18 20:53:30 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-18 20:53:30 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-18 20:53:30 > Tom (Tom@telegram) has joined ##systemau
2016-02-18 20:53:30 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-18 20:53:30 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-18 20:53:30 NottheOtherDan [20:51:57] Really drunk.
2016-02-18 20:53:30 NicholasB [20:52:06] havent tried it in 5 years
2016-02-18 20:53:30 NicholasB [20:52:10] thought id give it a burl
2016-02-18 20:53:30 NicholasB [20:52:13] on the spare drive
2016-02-18 20:53:30 NottheOtherDan [20:52:19] How's it
2016-02-18 20:53:30 NicholasB [20:52:24] its kde
2016-02-18 20:53:30 NicholasB [20:52:27] actually
2016-02-18 20:53:30 NicholasB once you get it
2016-02-18 20:53:30 NicholasB its not bad. one click installs and the like
2016-02-18 21:05:25 @fsociety Had to patch the xpad module in the kernel so Grid Autosport wouldn't hard lock due to force feedback
2016-02-18 21:05:30 @fsociety irriating, but solved.
2016-02-18 21:09:47 - irc: disconnected from server
2016-02-18 21:09:47 [21:09]
2016-02-18 21:09:59 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 21:09:59 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 21:15:00 [21:09]
2016-02-18 21:26:13 - irc: disconnected from server
2016-02-18 21:26:25 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 21:26:25 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 21:28:11 - irc: disconnected from server
2016-02-18 21:59:37 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 21:59:37 [21:59]
2016-02-18 21:59:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 22:23:41 < root has kicked fsociety (Cleaning up channel)
2016-02-18 22:23:41 [22:23]
2016-02-18 22:23:41 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 22:23:41 - Topic for ##systemau is "#systemau"
2016-02-18 22:23:41 - Topic set by root (root@localhost) on Thu, 18 Feb 2016 22:23:41
2016-02-18 22:23:41 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 22:23:41 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-18 22:23:41 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-18 22:23:41 > Adam (Adam@telegram) has joined ##systemau
2016-02-18 22:23:41 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-18 22:23:41 > Amir (Amir@telegram) has joined ##systemau
2016-02-18 22:23:41 > Angela (Angela@telegram) has joined ##systemau
2016-02-18 22:23:41 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-18 22:23:41 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-18 22:23:41 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-18 22:23:41 > emb (emb@telegram) has joined ##systemau
2016-02-18 22:23:41 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-18 22:23:41 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-18 22:23:41 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-18 22:23:41 > Joe (Joe@telegram) has joined ##systemau
2016-02-18 22:23:41 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-18 22:23:41 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-18 22:23:41 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-18 22:23:41 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-18 22:23:41 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-18 22:23:41 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-18 22:23:41 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-18 22:23:41 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-18 22:23:41 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-18 22:23:41 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-18 22:23:41 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-18 22:23:41 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-18 22:23:41 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-18 22:23:41 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-18 22:23:41 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-18 22:23:41 > Sean (Sean@telegram) has joined ##systemau
2016-02-18 22:23:41 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-18 22:23:41 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-18 22:23:41 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-18 22:23:41 > Tom (Tom@telegram) has joined ##systemau
2016-02-18 22:23:41 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-18 22:23:41 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-18 22:23:41 NotDan <br><img id="3">
2016-02-18 22:24:27 NicholasB wow
2016-02-18 22:24:33 NicholasB thats a bit crazy
2016-02-18 22:25:44 NotDan yeah
2016-02-18 22:25:51 NotDan and the problem is people dont even know about it
2016-02-18 22:26:03 NotDan Those who I told about it were outraged
2016-02-18 22:26:19 NotDan They had no idea the WA Govt is trying to make protesting illegal
2016-02-18 22:26:25 NotDan Go local media! 👍
2016-02-18 22:26:32 NotDan or national media for that matter
2016-02-18 22:26:55 NicholasB they set up a law in victoria and the labour party repealed it
2016-02-18 22:27:19 NotDan nice
2016-02-18 22:31:03 NotDan still something to think twice about- the United Nations Human RIghts commissioner is commenting on a proposed law in our country
2016-02-18 22:31:20 NotDan or my state, anyway
2016-02-18 22:32:06 NicholasB yeah.. its super fucking nuts
2016-02-18 22:38:00 [22:32]
2016-02-18 22:51:40 - irc: disconnected from server
2016-02-18 22:52:21 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 22:52:21 [22:52]
2016-02-18 22:52:21 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 23:21:51 - irc: disconnected from server
2016-02-18 23:21:51 [23:21]
2016-02-18 23:22:07 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 23:22:07 [23:22]
2016-02-18 23:22:07 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 23:38:06 @fsociety echo.. echo.. echoo
2016-02-18 23:38:06 [23:38]
2016-02-18 23:38:17 @fsociety blist
2016-02-18 23:39:39 @fsociety so quiet
2016-02-18 23:42:28 - irc: disconnected from server
2016-02-18 23:44:56 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 23:44:56 [23:44]
2016-02-18 23:44:56 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-18 23:48:19 - irc: disconnected from server
2016-02-18 23:48:56 > fsociety (whoami@localhost) has joined ##systemau
2016-02-18 23:48:56 [23:48]
2016-02-18 23:48:56 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 00:08:29 - irc: disconnected from server
2016-02-19 00:08:29 [00:08]
2016-02-19 00:10:57 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 00:10:57 [00:10]
2016-02-19 00:10:57 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 00:13:01 - irc: disconnected from server
2016-02-19 00:14:25 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 00:14:25 [00:14]
2016-02-19 00:14:25 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 01:56:29 < root has kicked fsociety (Cleaning up channel)
2016-02-19 01:56:29 [01:56]
2016-02-19 01:56:29 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 01:56:29 - Topic for ##systemau is "#systemau"
2016-02-19 01:56:29 - Topic set by root (root@localhost) on Fri, 19 Feb 2016 01:56:29
2016-02-19 01:56:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 01:56:29 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-19 01:56:29 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-19 01:56:29 > Adam (Adam@telegram) has joined ##systemau
2016-02-19 01:56:29 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-19 01:56:29 > Amir (Amir@telegram) has joined ##systemau
2016-02-19 01:56:29 > Angela (Angela@telegram) has joined ##systemau
2016-02-19 01:56:29 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-19 01:56:29 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-19 01:56:29 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-19 01:56:29 > emb (emb@telegram) has joined ##systemau
2016-02-19 01:56:29 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-19 01:56:29 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-19 01:56:29 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-19 01:56:29 > Joe (Joe@telegram) has joined ##systemau
2016-02-19 01:56:29 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-19 01:56:29 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-19 01:56:29 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-19 01:56:29 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-19 01:56:29 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-19 01:56:29 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-19 01:56:29 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-19 01:56:29 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-19 01:56:29 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-19 01:56:29 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-19 01:56:29 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-19 01:56:29 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-19 01:56:29 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-19 01:56:29 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-19 01:56:29 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-19 01:56:29 > Sean (Sean@telegram) has joined ##systemau
2016-02-19 01:56:29 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-19 01:56:29 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-19 01:56:29 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-19 01:56:29 > Tom (Tom@telegram) has joined ##systemau
2016-02-19 01:56:29 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-19 01:56:29 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-19 01:56:29 Sean For this I do as well. It makes me think that the world has lost the art of investigation. b/c tech has brought us data on a silver platter we have decided that past ways of investigating crimes need to stay in the past.
2016-02-19 01:59:12 AlanPope Who made the artwork for systemau?
2016-02-19 01:59:16 AlanPope The picture of the computer
2016-02-19 02:05:00 [01:59]
2016-02-19 02:53:57 AlanPope http://ubuntupodcast.org/2016/02/18/s09e00-topical-solution/
2016-02-19 02:53:57 [02:53]
2016-02-19 02:54:02 AlanPope </spam> :)
2016-02-19 03:00:00 [02:54]
2016-02-19 03:58:41 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 [03:58]
2016-02-19 03:58:41 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < StefanReisener (Stefan_Reisener@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 03:58:41 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 07:29:14 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 07:29:14 [07:29]
2016-02-19 07:29:14 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 07:45:50 < root has kicked fsociety (Cleaning up channel)
2016-02-19 07:45:50 [07:45]
2016-02-19 07:45:50 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 07:45:50 - Topic for ##systemau is "#systemau"
2016-02-19 07:45:50 - Topic set by root (root@localhost) on Fri, 19 Feb 2016 07:45:50
2016-02-19 07:45:50 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 07:45:50 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-19 07:45:50 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-19 07:45:50 > Adam (Adam@telegram) has joined ##systemau
2016-02-19 07:45:50 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-19 07:45:50 > Amir (Amir@telegram) has joined ##systemau
2016-02-19 07:45:50 > Angela (Angela@telegram) has joined ##systemau
2016-02-19 07:45:50 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-19 07:45:50 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-19 07:45:50 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-19 07:45:50 > emb (emb@telegram) has joined ##systemau
2016-02-19 07:45:50 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-19 07:45:50 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-19 07:45:50 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-19 07:45:50 > Joe (Joe@telegram) has joined ##systemau
2016-02-19 07:45:50 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-19 07:45:50 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-19 07:45:50 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-19 07:45:50 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-19 07:45:50 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-19 07:45:50 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-19 07:45:50 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-19 07:45:50 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-19 07:45:50 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-19 07:45:50 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-19 07:45:50 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-19 07:45:50 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-19 07:45:50 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-19 07:45:50 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-19 07:45:50 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-19 07:45:50 > Sean (Sean@telegram) has joined ##systemau
2016-02-19 07:45:50 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-19 07:45:50 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-19 07:45:50 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-19 07:45:50 > Tom (Tom@telegram) has joined ##systemau
2016-02-19 07:45:50 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-19 07:45:50 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-19 07:45:50 Joe Sweet
2016-02-19 07:48:26 MartinWimpress I can never own a Mycroft now 😉
2016-02-19 07:48:53 MartinWimpress Mind you, telling popey to do stuff sounds agreeable.
2016-02-19 07:54:00 [07:48]
2016-02-19 08:19:51 Joe Finally got a screen for the Nexus 5
2016-02-19 08:19:51 [08:19]
2016-02-19 08:20:14 PeterMoynihan cool
2016-02-19 08:20:34 PeterMoynihan I swapped out the one on my nexus 4, wasnt too hard
2016-02-19 08:20:59 PeterMoynihan (I'm keeping that phone till it's destroyed in a nuclear blast)
2016-02-19 08:23:38 Joe I've got a Nexus 4 as well
2016-02-19 08:23:43 Joe It's a great phone
2016-02-19 08:23:52 Joe But the 5 is better
2016-02-19 08:24:44 Joe But the Oneplus One beats them both
2016-02-19 08:27:05 Joe @popeydc @wimpress have you spoken about Beep Beep Yarr on LUP?
2016-02-19 08:27:15 MartinWimpress Nope.
2016-02-19 08:27:39 Joe Maybe ask Chris if he'll let you
2016-02-19 08:27:42 MartinWimpress Graham could join LUP next week.
2016-02-19 08:27:52 Joe It would be good publicity for them
2016-02-19 08:27:54 MartinWimpress If he turn's up, he'll get on.
2016-02-19 08:27:56 Joe Good plan
2016-02-19 08:28:09 MartinWimpress Relay that message to Graham could you?
2016-02-19 08:28:28 MartinWimpress point him at @m_wimpress on Twitter if he has question about how to join ewtc.
2016-02-19 08:29:00 Joe Is it Tues at 10pm?
2016-02-19 08:34:00 [08:29]
2016-02-19 08:40:12 MartinWimpress Tuesday at 22:00 but we assemble at 21:30
2016-02-19 08:40:31 MartinWimpress Which he will need to do for a sound check.
2016-02-19 08:46:00 [08:40]
2016-02-19 08:49:25 Moritz Really like wogue's "subtle" hints:
2016-02-19 08:49:25 Moritz https://www.youtube.com/watch?v=yIoOKo2TO60
2016-02-19 08:50:10 NicholasB http://benpearmain.com/
2016-02-19 08:50:28 LewisCividin My Nexus 5x is possessed
2016-02-19 08:52:45 LewisCividin Ha! Awesome
2016-02-19 08:53:57 AlanPope ta
2016-02-19 08:54:20 AlanPope better to email the production stuff so chris knows ahead of time.
2016-02-19 08:54:25 AlanPope I'll send them an email
2016-02-19 08:55:03 Joe Graham wasn't active on irc
2016-02-19 08:55:08 MartinWimpress I'll ping Rotten
2016-02-19 08:55:15 Joe But I left him a message there
2016-02-19 08:55:33 Moritz @F_s0c1ety Do you love terminals? (Why do i even ask?)
2016-02-19 08:55:33 Moritz What's your opinion on Black Screen?
2016-02-19 08:55:33 Moritz https://github.com/shockone/black-screen
2016-02-19 08:56:20 AlanPope done
2016-02-19 08:57:08 MartinWimpress I've given Rottn a Sport Fuck too.
2016-02-19 09:00:39 MartinWimpress A tired man is on a late night coding bender.,
2016-02-19 09:06:00 [09:00]
2016-02-19 09:32:27 MartinWimpress Rottn says Graham join should be fine, but is double checking.
2016-02-19 09:32:27 [09:32]
2016-02-19 09:32:33 Moritz Whoops. Found two 1:45h long recordings on my phone. Didn't know i accidentally recorded myself. 😕 Weird to hear a big chunk of your day from inside your pocket.
2016-02-19 09:35:05 Joe Does anyone know the easiest way to get double tap to wake on a rooted Nexus 5?
2016-02-19 09:40:47 Moritz This intro:
2016-02-19 09:40:47 Moritz https://www.youtube.com/watch?v=Q-8MGYzn_n4
2016-02-19 09:46:00 [09:40]
2016-02-19 10:32:33 - irc: disconnected from server
2016-02-19 10:32:33 [10:32]
2016-02-19 10:32:37 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 10:32:37 [10:32]
2016-02-19 10:32:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 10:33:44 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 10:33:44 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 10:44:55 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 10:44:55 [10:44]
2016-02-19 10:44:55 - Topic for ##systemau is "#systemau"
2016-02-19 10:44:55 - Topic set by root (root@localhost) on Fri, 19 Feb 2016 10:44:55
2016-02-19 10:44:55 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 10:44:55 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-19 10:44:55 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-19 10:44:55 > Adam (Adam@telegram) has joined ##systemau
2016-02-19 10:44:55 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-19 10:44:55 > Amir (Amir@telegram) has joined ##systemau
2016-02-19 10:44:55 > Angela (Angela@telegram) has joined ##systemau
2016-02-19 10:44:55 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-19 10:44:55 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-19 10:44:55 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-19 10:44:55 > emb (emb@telegram) has joined ##systemau
2016-02-19 10:44:55 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-19 10:44:55 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-19 10:44:55 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-19 10:44:55 > Joe (Joe@telegram) has joined ##systemau
2016-02-19 10:44:55 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-19 10:44:55 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-19 10:44:55 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-19 10:44:55 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-19 10:44:55 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-19 10:44:55 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-19 10:44:55 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-19 10:44:55 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-19 10:44:55 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-19 10:44:55 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-19 10:44:55 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-19 10:44:55 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-19 10:44:55 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-19 10:44:55 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-19 10:44:55 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-19 10:44:55 > Sean (Sean@telegram) has joined ##systemau
2016-02-19 10:44:55 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-19 10:44:55 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-19 10:44:55 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-19 10:44:55 > Tom (Tom@telegram) has joined ##systemau
2016-02-19 10:44:55 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-19 10:44:55 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-19 10:44:55 EricT Doing lots of Zooming and Panning today with Visio so:
2016-02-19 10:44:55 EricT All I wanna do is zoom-zoom-zoom-zoom and a boom-boom
2016-02-19 10:44:55 EricT Just shake your rump!
2016-02-19 10:45:23 @fsociety Forgot to take your medication today EricT ;)
2016-02-19 10:45:24 systemau Message marked as read.
2016-02-19 10:45:53 EricT No toads around to lick, unfortunastely...
2016-02-19 10:51:00 [10:45]
2016-02-19 11:03:44 @fsociety Awww.. i just assume your students behaviour would start to wear off on you :)
2016-02-19 11:07:56 systemau Message marked as read.
2016-02-19 11:07:56 [11:07]
2016-02-19 11:32:01 MartinWimpress I bloody love Spotify.
2016-02-19 11:32:01 [11:32]
2016-02-19 11:33:13 @fsociety I would like it more if the android app had a good equalizer on it.
2016-02-19 11:33:56 systemau Message marked as read.
2016-02-19 11:39:00 [11:33]
2016-02-19 12:07:25 MartinWimpress Some C=64 chip tunes to keep me going.
2016-02-19 12:07:25 [12:07]
2016-02-19 12:08:55 @fsociety oh the sid chip, how i love thee. there are hardware boutique synths made out of sid chips. but are quite expensive as the chips are hard to come by. and not one chip sounds the same - why it is so hard to emulate.
2016-02-19 12:13:39 systemau Message marked as read.
2016-02-19 12:14:09 MartinWimpress Yeah, I was big sid fan.
2016-02-19 12:14:18 MartinWimpress Night peeps. Hacking is done.
2016-02-19 12:20:00 [12:14]
2016-02-19 14:09:31 @fsociety NicholasB: jason created an account for systemau telegram its sedman if you want to add him to the chat
2016-02-19 14:09:31 [14:09]
2016-02-19 14:11:21 systemau Message marked as read.
2016-02-19 14:14:58 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-19 14:14:58 JasonCca Nicholas B added user Jason Cca by link.
2016-02-19 14:16:04 @fsociety hey Jason
2016-02-19 14:16:13 systemau Message marked as read.
2016-02-19 14:16:16 JasonCca hey
2016-02-19 14:16:21 @fsociety welcome to the rabbit hole
2016-02-19 14:16:22 systemau Message marked as read.
2016-02-19 14:16:24 JasonCca nice avatar
2016-02-19 14:16:27 @fsociety i try
2016-02-19 14:16:28 systemau Message marked as read.
2016-02-19 14:16:44 @fsociety here you can relive that week in geelong every day of the year
2016-02-19 14:16:44 systemau Message marked as read.
2016-02-19 14:16:56 NicholasB Greeting Jason.
2016-02-19 14:17:00 NicholasB Greetings even.
2016-02-19 14:17:09 @fsociety I like singular greeting
2016-02-19 14:17:13 @fsociety it seems more accurate
2016-02-19 14:17:15 systemau Message marked as read.
2016-02-19 14:17:15 systemau Message marked as read.
2016-02-19 14:17:24 JasonCca Thankyou for inviting me
2016-02-19 14:17:39 @fsociety now you must go through the three trials
2016-02-19 14:17:39 systemau Message marked as read.
2016-02-19 14:17:39 NicholasB i recommend you turn off notifications.
2016-02-19 14:18:02 JasonCca african or euro?
2016-02-19 14:18:40 @fsociety brb i have to turn off a setting in telegram which constantly tells me you guys have read my messages. its getting irritating
2016-02-19 14:18:40 JasonCca yes, the dinging would getting annoying
2016-02-19 14:18:40 systemau Message marked as read.
2016-02-19 14:18:50 JasonCca lol
2016-02-19 14:19:36 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < StefanReisener (Stefan_Reisener@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:36 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-19 14:19:56 @fsociety and back
2016-02-19 14:20:27 @fsociety i've spent all afternoon reading about lennart poettering and now i think i'm slowly becoming a sociopath
2016-02-19 14:21:39 @fsociety i do love the comment linus made about him though
2016-02-19 14:23:48 @fsociety Kay, I'm f*cking tired of the fact that you don't fix problems in the code *you* write, so that the kernel then has to work around the problems you cause… This has been going on for *years*, and doesn't seem to be getting any better… I'm not willing to merge something where the maintainer is known to not care about bugs and regressions and then forces people in other projects to fix their
2016-02-19 14:23:48 @fsociety project. Because I am *not* willing to take patches from people who don't clean up after their problems, and don't admit that it's their problem to fix. Kay - one more time: you caused the problem, you need to fix it. None of this "I can do whatever I want, others have to clean up after me" crap. Linus
2016-02-19 17:58:30 > fsociety (whoami@localhost) has joined ##systemau
2016-02-19 17:58:30 [17:58]
2016-02-19 17:58:30 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-19 17:58:53 - irc: disconnected from server
2016-02-20 00:57:02 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 00:57:02 [00:57]
2016-02-20 00:57:02 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 00:57:06 < root has kicked fsociety (Cleaning up channel)
2016-02-20 00:57:06 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 00:57:06 - Topic for ##systemau is "#systemau"
2016-02-20 00:57:06 - Topic set by root (root@localhost) on Sat, 20 Feb 2016 00:57:06
2016-02-20 00:57:06 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 00:57:06 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-20 00:57:06 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-20 00:57:06 > Adam (Adam@telegram) has joined ##systemau
2016-02-20 00:57:06 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-20 00:57:06 > Amir (Amir@telegram) has joined ##systemau
2016-02-20 00:57:06 > Angela (Angela@telegram) has joined ##systemau
2016-02-20 00:57:06 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-20 00:57:06 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-20 00:57:06 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-20 00:57:06 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-20 00:57:06 > emb (emb@telegram) has joined ##systemau
2016-02-20 00:57:06 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-20 00:57:06 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-20 00:57:06 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-20 00:57:06 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-20 00:57:06 > Joe (Joe@telegram) has joined ##systemau
2016-02-20 00:57:06 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-20 00:57:06 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-20 00:57:06 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-20 00:57:06 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-20 00:57:06 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-20 00:57:06 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-20 00:57:06 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-20 00:57:06 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-20 00:57:06 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-20 00:57:06 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-20 00:57:06 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-20 00:57:06 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-20 00:57:06 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-20 00:57:06 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-20 00:57:06 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-20 00:57:06 > Sean (Sean@telegram) has joined ##systemau
2016-02-20 00:57:06 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-20 00:57:06 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-20 00:57:06 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-20 00:57:06 > Tom (Tom@telegram) has joined ##systemau
2016-02-20 00:57:06 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-20 00:57:06 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-20 00:57:06 LewisCividin [2016-02-19 18:02:44] I mostly lurk
2016-02-20 00:57:06 NicholasB [2016-02-19 18:03:30] and you're lovely.
2016-02-20 00:57:06 NicholasB [2016-02-19 18:03:33] see i was right.
2016-02-20 00:57:06 LewisCividin [2016-02-19 18:04:25] What's the best way to connect to a WPA network via command line these days iw?
2016-02-20 00:57:06 LewisCividin [2016-02-19 18:04:34] Oh lol
2016-02-20 00:57:08 LewisCividin [2016-02-19 18:05:15] <br><img id="1">
2016-02-20 00:57:08 PaulGleeson [2016-02-19 18:25:30] iw would be best
2016-02-20 00:57:08 LewisCividin [2016-02-19 18:48:41] Ok thanks Paul
2016-02-20 00:57:08 EricT [2016-02-19 21:33:15] Why do I enjoy watching Graig McLachlan's The Doctor Blake Mysteries, on the ABS? Whats the matter with me!
2016-02-20 00:57:08 PaulGleeson [2016-02-19 21:47:51] @kloinka Who knows anything about your life?
2016-02-20 00:57:08 EricT [2016-02-19 21:49:29] I'm a 63 yr old granny......😢
2016-02-20 00:57:08 EricT [2016-02-19 21:51:04] Rump shaker!
2016-02-20 00:57:57 NottheOtherDan [2016-02-19 22:24:59] <br><img id="4">
2016-02-20 00:57:57 NotDan [2016-02-19 22:26:55] <br><img id="5">
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 22:27:09] Nicholas B added user Azza Matazz by link.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:27:23] azzzzzza mataz
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 22:27:59] Hello! Ah that grey grey voice over gets me every time.
2016-02-20 00:57:57 PaulGleeson [2016-02-19 22:28:21] I know that name
2016-02-20 00:57:57 NicholasB [2016-02-19 22:30:43] well we got gray gray to re do it becuase there are a few name changes.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:30:49] you'll have to listen out next ep. :)
2016-02-20 00:57:57 NicholasB [2016-02-19 22:30:58] hopefully you are just as satisfied.
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 22:33:20] I am sure I will be, just finished listening to #25 now.
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 22:34:08] Oh I forget hash tags aren't numbers anymore.
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:34:12] I actually like hearing you say the names... Mainly because you got my last name right. :-)
2016-02-20 00:57:57 NicholasB [2016-02-19 22:34:35] i think he got it right this time. let me check.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:35:53] may be not perfect
2016-02-20 00:57:57 NicholasB [2016-02-19 22:36:03] but he's lost the kinch
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:36:14] Oh sweet
2016-02-20 00:57:57 NicholasB [2016-02-19 22:36:14] and more kinse
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:36:39] That's cool, it's all good. Thanks for checking.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:37:01] no probs. it bugged me too actually. but at the time it was heard to get the whole thing redone.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:37:07] *hard
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:37:54] Yeah I could imagine... Plus with all the names, there are going to be some differences.
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:38:12] I'm happy either way
2016-02-20 00:57:57 NicholasB [2016-02-19 22:38:21] i'm thinking ill get him to redo the list every month now. so its up to date.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:38:35] we used to just cut names in but it was a bit messy.
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:38:58] Ohhh, that makes sense
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:39:17] He won't be pissed being asked to do it every month?
2016-02-20 00:57:57 NicholasB [2016-02-19 22:39:32] we pay him. he charges accordingly.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:39:36] its a job to him.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:39:42] prob doesn';t even know what linux is
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:39:47] Can we send in aliases to be read instead of our real names? Hahahaha
2016-02-20 00:57:57 NicholasB [2016-02-19 22:40:05] of course as long as they aren't thinks like dick fart
2016-02-20 00:57:57 NicholasB [2016-02-19 22:40:11] we just use whats on patreon
2016-02-20 00:57:57 NicholasB [2016-02-19 22:40:26] he wont swear. one of his rules
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:40:36] Sure, I wouldn't send something rude
2016-02-20 00:57:57 NicholasB [2016-02-19 22:40:50] all good.
2016-02-20 00:57:57 BrentKincer [2016-02-19 22:41:05] Wow, he's got standards huh?
2016-02-20 00:57:57 NicholasB [2016-02-19 22:41:15] so are you an aussie local or from dispant shores.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:41:26] *distant. I can't type. It's well known around these parts
2016-02-20 00:57:57 NicholasB [2016-02-19 22:41:50] if i think about i can. @JoeRess said he's stop being so whiny if i learnt to type correctly.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:42:01] so i might just to it and destroy the concent of linux luddites.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:42:10] *concept
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 22:42:35] Local, down in sunny TAS!
2016-02-20 00:57:57 NicholasB [2016-02-19 22:42:52] oh nice.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:42:58] so we'll see you at lca next year?
2016-02-20 00:57:57 NicholasB [2016-02-19 22:43:26] yup. yup yup.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:44:21] <br><img id="6">
2016-02-20 00:57:57 TristanJames [2016-02-19 22:44:30] I'm drunk on a train back to Ballarat.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:44:43] we've all been there.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:45:00] Drunk? Train? Ballarat?
2016-02-20 00:57:57 NicholasB [2016-02-19 22:45:40] the trio.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:45:42] well
2016-02-20 00:57:57 NicholasB [2016-02-19 22:45:46] i have.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:45:59] granted. i was passing through ballarat.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:46:05] you're staying.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:46:40] I do love there.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:46:44] *live
2016-02-20 00:57:57 TristanJames [2016-02-19 22:46:48] Lol
2016-02-20 00:57:57 NicholasB [2016-02-19 22:46:56] you're doing a dj set tomorrow right.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:47:04] at the jam in the dam?
2016-02-20 00:57:57 TristanJames [2016-02-19 22:47:07] 2 of them
2016-02-20 00:57:57 NicholasB [2016-02-19 22:47:12] FAMOUS.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:47:20] Jam at the dam then at Karova
2016-02-20 00:57:57 TristanJames [2016-02-19 22:47:38] Shoosh
2016-02-20 00:57:57 NicholasB [2016-02-19 22:48:06] id come but im gunna be rocking out at jerk fest. which is going ot be soooo fucking good.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:48:33] I know, most of that gig is playing in Ballarat on April 8 I think.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] INSIDE STAGE TIMES:
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41]
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Straight Arrows 12:05 - 12:45
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Bits Of Shit 11:20 - 11:50
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] ORB 10:05 - 10:40
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] The Living Eyes 9:00 - 9:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Terry 8:00 - 8:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] School Damage 7:00 - 7:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Zig Zag 6:00 - 6:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Laughing Leave 5:00 - 5:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Cereal Killer 4:00 - 4:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Phlow 3:00 - 3:30
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41]
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] BARN STAGE TIMES:
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41]
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Ausmuteants 10:45 - 11:15
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Deafwish 9:30 - 10:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Hierophants 8:30 - 9:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Dreamin' Wild 7:30 - 8:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Sewerside 6:30 - 7:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Contrast 5:30 - 6:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] RMO 4:30 - 5:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:41] Dumb Punts 3:30 - 4:00
2016-02-20 00:57:57 NicholasB [2016-02-19 22:49:56] i think we played 5 of these bands on the show.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:50:22] I'm mates with RMO. Rick Moranis Overdrive
2016-02-20 00:57:57 NicholasB [2016-02-19 22:50:24] maybe 3. i thought wet balnkets were playing. keep forgetting they're not
2016-02-20 00:57:57 NicholasB [2016-02-19 22:50:52] @Jimmy3600 says they're great.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:52:08] I haven't seen them for ages, got theirs cd and it's pretty good. I'm biased though.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:52:50] on a computer note. i have a computer chair for the first time in years
2016-02-20 00:57:57 NicholasB [2016-02-19 22:52:59] they are better than kitchen chairs thats for sure.
2016-02-20 00:57:57 TristanJames [2016-02-19 22:55:06] My computer chair is whichever chair I sit in with my lappy. I can't imagine having a desktop these days.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:55:23] i didnt have a desktop till a 8 months back.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:55:27] i love it.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:55:50] having two monitors makes it
2016-02-20 00:57:57 TristanJames [2016-02-19 22:57:01] That would be nice.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:59:36] @F_s0c1ety has beutiful monitors and uses terminals for everything.
2016-02-20 00:57:57 NicholasB [2016-02-19 22:59:39] he's special.
2016-02-20 00:57:57 TristanJames [2016-02-19 23:00:51] May as well have crt's if you're using terminals for everything ;)
2016-02-20 00:57:57 NicholasB [2016-02-19 23:01:12] exactly.
2016-02-20 00:57:57 PaulGleeson [2016-02-19 23:01:17] @dj_salinger want to fight about it it
2016-02-20 00:57:57 NicholasB [2016-02-19 23:02:08] damn. i made myself want a taco.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:02:17] Though i did have a classic mixed grill for dinner
2016-02-20 00:57:57 NotDan [2016-02-19 23:02:19] I get free Tacos at work next Tuesday
2016-02-20 00:57:57 NotDan [2016-02-19 23:02:22] Just sayin'
2016-02-20 00:57:57 NicholasB [2016-02-19 23:02:27] b@stard
2016-02-20 00:57:57 NotDan [2016-02-19 23:02:33] 😊
2016-02-20 00:57:57 NotDan [2016-02-19 23:02:50] 🌮
2016-02-20 00:57:57 NotDan [2016-02-19 23:04:17] TooReal4Me
2016-02-20 00:57:57 NicholasB [2016-02-19 23:04:36] have to go flip my record
2016-02-20 00:57:57 NicholasB [2016-02-19 23:04:48] one day technology will advance to more than 22 minutes a side
2016-02-20 00:57:57 NotDan [2016-02-19 23:05:21] <br><img id="7">
2016-02-20 00:57:57 TristanJames [2016-02-19 23:05:42] Nobody tell him about CDs.
2016-02-20 00:57:57 NotDan [2016-02-19 23:06:07] Nobody will ever need more than 750MB
2016-02-20 00:57:57 TristanJames [2016-02-19 23:06:51] Is that for real?
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 23:07:00] Till you try and squeeze that last song on your mixed CD...
2016-02-20 00:57:57 PaulGleeson [2016-02-19 23:07:01] Nobody tell him about tapes
2016-02-20 00:57:57 NotDan [2016-02-19 23:07:02] @dj_salinger 100%
2016-02-20 00:57:57 TristanJames [2016-02-19 23:07:36] Stop the world, I want to get off.
2016-02-20 00:57:57 NotDan [2016-02-19 23:07:57] It's insane that this is how it works in this country
2016-02-20 00:57:57 NotDan [2016-02-19 23:08:03] A legitimate, widely read newspaper
2016-02-20 00:57:57 NotDan [2016-02-19 23:08:11] Has that as a front page.
2016-02-20 00:57:57 EricT [2016-02-19 23:08:28] Everything our Fathers fought for during 70s is now dead....Long live Big Business!
2016-02-20 00:57:57 TristanJames [2016-02-19 23:08:36] Something tells me he knows.
2016-02-20 00:57:57 EricT [2016-02-19 23:09:29] Sorry, I get leftwing when drunk!
2016-02-20 00:57:57 NicholasB [2016-02-19 23:09:43] this room is certainly on the left generally.
2016-02-20 00:57:57 NotDan [2016-02-19 23:09:43] Dont label your thoughts Eric
2016-02-20 00:57:57 NotDan [2016-02-19 23:09:50] They are what they are
2016-02-20 00:57:57 NicholasB [2016-02-19 23:10:38] i think linux users are more likely to be. its the nature of the gpl
2016-02-20 00:57:57 NicholasB [2016-02-19 23:10:44] that or libertarians.
2016-02-20 00:57:57 EricT [2016-02-19 23:10:54] I feel so sorry for my students now, they pay $4200 per semester, at TAFE! I went to Uni for free, worlds gone to the dogs!
2016-02-20 00:57:57 NicholasB [2016-02-19 23:11:08] nah just australia.
2016-02-20 00:57:57 NotDan [2016-02-19 23:11:25] It's OK, we'll soon be putting their debts on a market rate interest rate
2016-02-20 00:57:57 NotDan [2016-02-19 23:11:29] That'll do... something
2016-02-20 00:57:57 NotDan [2016-02-19 23:11:46] Don't look over here at the multi-billion dollar subsidies to multinational companies
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 23:12:03] We could package up the debts and sell them!
2016-02-20 00:57:57 NotDan [2016-02-19 23:12:15] A++ ratings
2016-02-20 00:57:57 NicholasB [2016-02-19 23:12:16] i'll be surprised if that gets through. but on pricipal you're right.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:12:42] i'll buy them. i can bug people to pay them back on twitter
2016-02-20 00:57:57 NotDan [2016-02-19 23:13:10] I love that NBN towers bit in the podcast
2016-02-20 00:57:57 NotDan [2016-02-19 23:13:12] The passion
2016-02-20 00:57:57 EricT [2016-02-19 23:13:20] Apple could buy them to reduce their tax liabilities...
2016-02-20 00:57:57 NotDan [2016-02-19 23:13:47] It's all suuuuch a farce
2016-02-20 00:57:57 EricT [2016-02-19 23:13:48] Ooops sorry, Apple doesnt pat tax in Aus..
2016-02-20 00:57:57 NotDan [2016-02-19 23:14:02] It's funny because it's painfully, agonizingly true
2016-02-20 00:57:57 NotDan [2016-02-19 23:14:13] <br><img id="8">
2016-02-20 00:57:57 EricT [2016-02-19 23:15:32] All those fancy Apple store full of mindless drones run at a loss.
2016-02-20 00:57:57 NotDan [2016-02-19 23:15:52] It's just one bit of a massive set of problems
2016-02-20 00:57:57 AzzaMatazz [2016-02-19 23:16:15] Negative geared business
2016-02-20 00:57:57 NotDan [2016-02-19 23:17:03] Ah yes, good old negative gearing
2016-02-20 00:57:57 EricT [2016-02-19 23:17:06] http://www.quickmeme.com/img/49/49b9b6f102ab9ec7defe87bd7c5c4c3d79c265571aba0581ab88f853a7771d7f.jpg
2016-02-20 00:57:57 NotDan [2016-02-19 23:17:25] Forget the children, think of the poor people with 7 investment properties and the consequences of negative gearing changes
2016-02-20 00:57:57 EricT [2016-02-19 23:18:13] http://www.quickmeme.com/img/09/09c3dfb0966929f64ae9e9f4ba9c24fd30788ff3fafb8882ceb0ba1aa2d10e70.jpg
2016-02-20 00:57:57 EricT [2016-02-19 23:18:37] Eats children...
2016-02-20 00:57:57 EricT [2016-02-19 23:18:41] lol
2016-02-20 00:57:57 EricT [2016-02-19 23:20:00] Shit! I might get sued...
2016-02-20 00:57:57 EricT [2016-02-19 23:20:22] Is she on this groupchat?
2016-02-20 00:57:57 NotDan [2016-02-19 23:20:58] I'm hell bent on getting a Linux OS on my main desktop this weekend
2016-02-20 00:57:57 NotDan [2016-02-19 23:20:59] AND
2016-02-20 00:57:57 NotDan [2016-02-19 23:21:08] getting my server set up finally
2016-02-20 00:57:57 NicholasB [2016-02-19 23:21:24] gina? yeah. im gina. i use a fake name for the show.
2016-02-20 00:57:57 NotDan [2016-02-19 23:21:25] I didnt have the + style screwdrivers to install my WD Red HDs
2016-02-20 00:57:57 NotDan [2016-02-19 23:21:35] @enjayembee I always suspected
2016-02-20 00:57:57 EricT [2016-02-19 23:22:37] see, I never mentioned names...I thought that meme was about Micheal Jackson
2016-02-20 00:57:57 NotDan [2016-02-19 23:23:08] on the drug?
2016-02-20 00:57:57 EricT [2016-02-19 23:23:31] no! it killed Rive Phoenix. man!
2016-02-20 00:57:57 NotDan [2016-02-19 23:23:38] fuck yes, Eric
2016-02-20 00:57:57 NotDan [2016-02-19 23:23:42] way to get the reference
2016-02-20 00:57:57 EricT [2016-02-19 23:24:33] Freebase n Snowballs be for loosers!
2016-02-20 00:57:57 NotDan [2016-02-19 23:25:34] Telegram would be a good name for the NBN
2016-02-20 00:57:57 NotDan [2016-02-19 23:26:02] It's almost 8:30pm
2016-02-20 00:57:57 NotDan [2016-02-19 23:26:09] It's way too early to feel this way
2016-02-20 00:57:57 TristanJames [2016-02-19 23:27:09] Hillary had it in his veins
2016-02-20 00:57:57 NotDan [2016-02-19 23:27:23] Is it 'Hillary' or 'He really"
2016-02-20 00:57:57 NicholasB [2016-02-19 23:27:42] nah hilary
2016-02-20 00:57:57 NotDan [2016-02-19 23:27:46] hm
2016-02-20 00:57:57 NicholasB [2016-02-19 23:27:47] hilary had everest in vein.
2016-02-20 00:57:57 TristanJames [2016-02-19 23:28:18] That's what I thought it referred to
2016-02-20 00:57:57 NotDan [2016-02-19 23:29:06] Too clever for me
2016-02-20 00:57:57 NicholasB [2016-02-19 23:29:08] Hilary had Everest in his veins
2016-02-20 00:57:57 NicholasB [2016-02-19 23:29:08] Armstrong did moon was not the same
2016-02-20 00:57:57 NicholasB [2016-02-19 23:29:08] Heroes explore to give us hope
2016-02-20 00:57:57 NicholasB [2016-02-19 23:29:08] River pushed back the envelope
2016-02-20 00:57:57 NotDan [2016-02-19 23:29:34] ahhh
2016-02-20 00:57:57 NotDan [2016-02-19 23:29:40] like i said, too clever for me
2016-02-20 00:57:57 NicholasB [2016-02-19 23:29:45] hahah
2016-02-20 00:57:57 TristanJames [2016-02-19 23:29:52] Greg the stop sign.
2016-02-20 00:57:57 NotDan [2016-02-19 23:29:53] i love the next verse
2016-02-20 00:57:57 NotDan [2016-02-19 23:30:17] I drank the slab that Bon Scott drunk etc
2016-02-20 00:57:57 NotDan [2016-02-19 23:30:25] Also a good song
2016-02-20 00:57:57 EricT [2016-02-19 23:30:51] Tism unmasked!
2016-02-20 00:57:57 NicholasB [2016-02-19 23:30:52] im now signing tism and listening to entombed
2016-02-20 00:57:57 NicholasB [2016-02-19 23:30:54] this is an odd mix
2016-02-20 00:57:57 NotDan [2016-02-19 23:31:06] Let's form a company
2016-02-20 00:57:57 NotDan [2016-02-19 23:31:51] I actually like a lot of the tracks on De Rigueurmortis
2016-02-20 00:57:57 NicholasB [2016-02-19 23:33:25] there were some good tracks. but just not as biting.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:33:45] this one gets me everytime
2016-02-20 00:57:57 NicholasB [2016-02-19 23:33:46] https://www.youtube.com/watch?v=x8CZXVFc-1E
2016-02-20 00:57:57 NotDan [2016-02-19 23:33:54] Where did he get it from
2016-02-20 00:57:57 NotDan [2016-02-19 23:34:00] I love that line for some reason
2016-02-20 00:57:57 NotDan [2016-02-19 23:34:18] For sure
2016-02-20 00:57:57 NicholasB [2016-02-19 23:34:26] "it's the cunts with the bad haircuts you've got to watch out for"
2016-02-20 00:57:57 NotDan [2016-02-19 23:34:32] haha
2016-02-20 00:57:57 EricT [2016-02-19 23:35:09] Lets go shoot an Elephant!
2016-02-20 00:57:57 NotDan [2016-02-19 23:37:20] Life got you in the end, pal
2016-02-20 00:57:57 NotDan [2016-02-19 23:38:04] /quote
2016-02-20 00:57:57 NotDan [2016-02-19 23:40:18] <br><img id="9">
2016-02-20 00:57:57 NicholasB [2016-02-19 23:40:49] did you insult a kid in counter strike again @mindtoker?
2016-02-20 00:57:57 NotDan [2016-02-19 23:40:56] haha
2016-02-20 00:57:57 NotDan [2016-02-19 23:41:30] he said something about carnal relations with a member of my family
2016-02-20 00:57:57 NotDan [2016-02-19 23:41:31] cant have that
2016-02-20 00:57:57 NicholasB [2016-02-19 23:42:08] justified
2016-02-20 00:57:57 NicholasB [2016-02-19 23:42:31] and ancient
2016-02-20 00:57:57 NicholasB [2016-02-19 23:42:33] https://www.youtube.com/watch?v=H7_ajdd99CM
2016-02-20 00:57:57 NicholasB [2016-02-19 23:42:52] "before her dead"
2016-02-20 00:57:57 TristanJames [2016-02-19 23:45:31] Ahh the Klondike Liberation Front.
2016-02-20 00:57:57 NotDan [2016-02-19 23:45:41] The 90s were great for songs that included a random rap in the middle
2016-02-20 00:57:57 NicholasB [2016-02-19 23:45:44] it one on my to get list
2016-02-20 00:57:57 NicholasB [2016-02-19 23:45:52] as well as the book.
2016-02-20 00:57:57 TristanJames [2016-02-19 23:46:03] The books is great.
2016-02-20 00:57:57 TristanJames [2016-02-19 23:46:21] She's justified and she's ancient and sh s dead.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:47:51] if you like counter culture stuff checkout the KLF wiki page
2016-02-20 00:57:57 NottheOtherDan [2016-02-19 23:50:21] One of my favourite things is when you Bork your system trying to install proprietary driver at 11:50 PM.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:51:00] ubuntu?
2016-02-20 00:57:57 NicholasB [2016-02-19 23:51:03] ppa?
2016-02-20 00:57:57 NottheOtherDan [2016-02-19 23:51:24] Fedora. No.
2016-02-20 00:57:57 NicholasB [2016-02-19 23:51:44] ahh fedora. never once gotten prop driver to install
2016-02-20 00:57:57 NicholasB [2016-02-19 23:51:49] always borking
2016-02-20 00:57:57 NicholasB [2016-02-19 23:51:51] never working
2016-02-20 00:57:57 NottheOtherDan [2016-02-19 23:52:34] Kinda gotta read it as walking for the rhyme to really work.
2016-02-20 00:57:57 NottheOtherDan [2016-02-19 23:52:41] Or berking
2016-02-20 00:57:57 NicholasB [2016-02-19 23:53:18] <br><img id="10">
2016-02-20 00:59:34 - irc: disconnected from server
2016-02-20 00:59:48 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 00:59:48 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 01:05:00 [00:59]
2016-02-20 02:04:50 < root has kicked fsociety (Cleaning up channel)
2016-02-20 02:04:50 [02:04]
2016-02-20 02:04:50 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 02:04:50 - Topic for ##systemau is "#systemau"
2016-02-20 02:04:50 - Topic set by root (root@localhost) on Sat, 20 Feb 2016 02:04:50
2016-02-20 02:04:50 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 02:04:50 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-20 02:04:50 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-20 02:04:50 > Adam (Adam@telegram) has joined ##systemau
2016-02-20 02:04:50 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-20 02:04:50 > Amir (Amir@telegram) has joined ##systemau
2016-02-20 02:04:50 > Angela (Angela@telegram) has joined ##systemau
2016-02-20 02:04:50 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-20 02:04:50 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-20 02:04:50 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-20 02:04:50 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-20 02:04:50 > emb (emb@telegram) has joined ##systemau
2016-02-20 02:04:50 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-20 02:04:50 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-20 02:04:50 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-20 02:04:50 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-20 02:04:50 > Joe (Joe@telegram) has joined ##systemau
2016-02-20 02:04:50 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-20 02:04:50 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-20 02:04:50 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-20 02:04:50 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-20 02:04:50 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-20 02:04:50 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-20 02:04:50 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-20 02:04:50 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-20 02:04:50 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-20 02:04:50 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-20 02:04:50 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-20 02:04:50 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-20 02:04:50 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-20 02:04:50 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-20 02:04:50 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-20 02:04:50 > Sean (Sean@telegram) has joined ##systemau
2016-02-20 02:04:50 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-20 02:04:50 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-20 02:04:50 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-20 02:04:50 > Tom (Tom@telegram) has joined ##systemau
2016-02-20 02:04:50 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-20 02:04:50 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-20 02:04:50 Moritz #GCHQ/#NSA have looked through innocents' webcams since 2008, and saved even bedroom shots: https://t.co/HCTQNA8cYg https://t.co/mo7CeldBbt
2016-02-20 02:04:50 Moritz
2016-02-20 02:04:50 Moritz https://twitter.com/Snowden/status/699697752926765056
2016-02-20 02:05:44 Moritz Knowing this I can finally sleep safely.
2016-02-20 02:11:00 [02:05]
2016-02-20 03:43:55 Moritz After listening to #25 I want that Jono reviews Kawai metal. Maybe a segment in Bad Voltage or so.
2016-02-20 03:43:55 [03:43]
2016-02-20 03:48:06 PaulGleeson It was great
2016-02-20 03:54:00 [03:48]
2016-02-20 04:01:14 PaulGleeson How's everyone doing?
2016-02-20 04:04:19 PaulGleeson Just chillin while waiting on a hotdog and milkshake. Thinking about stuff
2016-02-20 04:10:00 [04:04]
2016-02-20 04:11:36 AlanPope mmmm hotdogs
2016-02-20 04:11:41 AlanPope http://drool.popey.com/
2016-02-20 04:17:00 [04:11]
2016-02-20 04:21:25 Moritz Congrats on the great music selection in the last episode. Really enjoying it.
2016-02-20 04:27:00 [04:21]
2016-02-20 06:30:42 MartinWimpress Good start to Friday evening, my running buddy can't make it.
2016-02-20 06:30:42 [06:30]
2016-02-20 06:30:49 MartinWimpress I could go running.
2016-02-20 06:31:06 MartinWimpress Or I could watch Jessica Jones.
2016-02-20 06:31:38 PaulGleeson Jessica Jones is very good
2016-02-20 06:32:06 MartinWimpress Yeah, I'm about half way through the season.
2016-02-20 06:38:00 [06:32]
2016-02-20 07:31:50 Moritz 😡 looked at the website for public transport, it says I need a ticket E. I am late, have to get one in the train, because I only have D and risk getting a fine over 60€. The god of the tickets lectures me about entering the train without a ticket. But sells me one anyway. 😰
2016-02-20 07:31:50 [07:31]
2016-02-20 07:31:50 Moritz
2016-02-20 07:31:50 Moritz Realise later that he sold me a D ticket. Get my connection in time. Bus driver double checks my ticket two times. No problem.
2016-02-20 07:31:50 Moritz
2016-02-20 07:31:50 Moritz Either the website is wrong, or the employees don't know the price structure.
2016-02-20 07:31:50 Moritz
2016-02-20 07:31:50 Moritz Two people inconvenienced: Ticket god has no change left. I have to pay more for a single ticket D, I already had. I lost my breath as well as my dignity to the ticket god.
2016-02-20 10:13:39 EricT supidy dupidy? folks
2016-02-20 10:13:39 [10:13]
2016-02-20 10:13:54 PaulGleeson Hey @kloinka
2016-02-20 10:14:13 EricT yay! coffee!
2016-02-20 10:15:56 EricT Ah, the days when you could smoke on cartoons...
2016-02-20 10:16:37 NicholasB they still smoke in archer. thats a cartoon
2016-02-20 10:16:40 NicholasB also morning.
2016-02-20 10:16:54 NicholasB also i need to go get some breakfast.
2016-02-20 10:17:12 PaulGleeson There is Daffy duck cartoon where he gives his nephews cigars until there sick and starting to pass out
2016-02-20 10:17:18 EricT yep, today is bacon day!
2016-02-20 10:18:09 NicholasB i have no food in the house. the perilf of being single and a per meal cooker
2016-02-20 10:18:34 AlanPope Morning
2016-02-20 10:19:05 EricT has broken...
2016-02-20 10:19:16 NicholasB like the first morning.
2016-02-20 10:19:40 NicholasB something about bird
2016-02-20 10:19:44 NicholasB bnut nothing about bacon.
2016-02-20 10:20:09 EricT thats the Metal,version.
2016-02-20 10:20:51 NicholasB https://www.youtube.com/watch?v=qu0HTIuihy8
2016-02-20 10:20:54 NicholasB no really metal.
2016-02-20 10:22:11 NicholasB when does daylight saving swap back and start for the uk. will that destroy or early morning late night chats?
2016-02-20 10:22:26 EricT nice version
2016-02-20 10:22:52 NicholasB gimmie gimmies for the unitiated do great covers
2016-02-20 10:23:17 NicholasB https://www.youtube.com/watch?v=bpTM8DMGajM
2016-02-20 10:25:30 NicholasB I got my Computer top trumps card kickstarter thingy.
2016-02-20 10:25:36 NicholasB they are cool.
2016-02-20 10:25:55 NicholasB i have a pack for give away on the show but i haven't worked out a competition yet.
2016-02-20 10:25:55 PaulGleeson I watched the talk on that at fosdem
2016-02-20 10:26:06 NicholasB was it good?
2016-02-20 10:26:38 PaulGleeson The game sounded shit, but the build cabin he used to build it was really interesting
2016-02-20 10:27:10 PaulGleeson Like I was hyper focused when he got into the details
2016-02-20 10:27:24 NicholasB well its top trumps. its a kids game. he really just made the cards to the fit the old rules.
2016-02-20 10:28:11 PaulGleeson That's fair
2016-02-20 10:30:42 NicholasB i'd like to mount them and fram them as a computer room piece actually.
2016-02-20 10:30:42 [10:30]
2016-02-20 10:30:55 PaulGleeson Cool
2016-02-20 10:31:07 EricT I call Open Misère!
2016-02-20 10:31:26 NicholasB ahh 500. fuck i love that game. no one plays it
2016-02-20 10:31:42 EricT or Hearts
2016-02-20 10:32:13 NicholasB hey. windows xp users can still play hearts
2016-02-20 10:32:34 EricT I cant wait to get older and play Gin, Bridges and Whisk
2016-02-20 10:32:55 EricT all day long, ay Shady Palms..
2016-02-20 10:33:09 NicholasB i cant wait to get old and turn in to an italian man who sits in a barewalled caffee drinking coffee playing cards.
2016-02-20 10:33:16 NicholasB *cafe
2016-02-20 10:33:32 EricT need some worry beads to flip..
2016-02-20 10:33:43 NicholasB i need food.
2016-02-20 10:33:44 NicholasB catch ya
2016-02-20 10:39:00 [10:33]
2016-02-20 11:07:00 Joe I deny all accusations
2016-02-20 11:07:00 [11:07]
2016-02-20 11:07:09 @fsociety yawn. just woke up
2016-02-20 11:07:18 @fsociety time do some desktop ricing
2016-02-20 11:09:55 EricT get some food into you!, @F_s0c1ety , you too skinny!lol
2016-02-20 11:13:36 @fsociety And I'll always be like that, don't worry contemplating my breakfast food. Maybe some rice
2016-02-20 11:13:36 NicholasB Is @kloinka your mum @F_s0c1ety?
2016-02-20 11:13:36 @fsociety lol
2016-02-20 11:13:46 @fsociety Hahahahahaha. YES MUM
2016-02-20 11:14:06 NicholasB I'm going out to a show. So I'm having a bullshit big brunch
2016-02-20 11:14:10 EricT I want grandkids!
2016-02-20 11:14:19 NicholasB Cos I prob won't eat all day.
2016-02-20 11:14:30 NicholasB They don't want you!
2016-02-20 11:15:14 EricT Fuck kids, theyre a bunch of parasites!
2016-02-20 11:16:53 LewisCividin https://www.youtube.com/watch?v=AcdTABJzCPE
2016-02-20 11:19:09 LewisCividin Saw this today thought of you guys haha
2016-02-20 11:25:00 [11:19]
2016-02-20 11:27:38 TristanJames I hear ya. I need to last til 4am so had a couple of ham and cheese toasties
2016-02-20 11:29:13 NicholasB I'm having lamb and egg burgers.
2016-02-20 11:29:51 TristanJames Sounds like a good base layer to add alcohol onto.
2016-02-20 11:30:45 NicholasB Yup. On cheese and bacon rolls.
2016-02-20 11:31:19 NicholasB Carb protein fat. Then whiskey the rest of the day. I might try sneak in a flask.
2016-02-20 11:32:27 TristanJames My mate brought around a bottle of the recent winner of best Australian Single Malt yesterday. Had some before we went to Melbs for the soccer and then as a nightcap.
2016-02-20 11:34:09 - irc: disconnected from server
2016-02-20 15:55:22 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 15:55:22 [15:55]
2016-02-20 15:55:22 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 15:55:32 < root has kicked fsociety (Cleaning up channel)
2016-02-20 15:55:32 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 15:55:32 - Topic for ##systemau is "#systemau"
2016-02-20 15:55:32 - Topic set by root (root@localhost) on Sat, 20 Feb 2016 15:55:32
2016-02-20 15:55:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 15:55:32 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-20 15:55:32 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-20 15:55:32 > Adam (Adam@telegram) has joined ##systemau
2016-02-20 15:55:32 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-20 15:55:32 > Amir (Amir@telegram) has joined ##systemau
2016-02-20 15:55:32 > Angela (Angela@telegram) has joined ##systemau
2016-02-20 15:55:32 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-20 15:55:32 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-20 15:55:32 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-20 15:55:32 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-20 15:55:32 > emb (emb@telegram) has joined ##systemau
2016-02-20 15:55:32 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-20 15:55:32 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-20 15:55:32 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-20 15:55:32 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-20 15:55:32 > Joe (Joe@telegram) has joined ##systemau
2016-02-20 15:55:32 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-20 15:55:32 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-20 15:55:32 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-20 15:55:32 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-20 15:55:32 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-20 15:55:32 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-20 15:55:32 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-20 15:55:32 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-20 15:55:32 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-20 15:55:32 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-20 15:55:32 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-20 15:55:32 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-20 15:55:32 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-20 15:55:32 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-20 15:55:32 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-20 15:55:32 > Sean (Sean@telegram) has joined ##systemau
2016-02-20 15:55:32 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-20 15:55:32 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-20 15:55:32 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-20 15:55:32 > Tom (Tom@telegram) has joined ##systemau
2016-02-20 15:55:32 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-20 15:55:32 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-20 15:55:32 NicholasB [11:34:09] Sullivan's cove?
2016-02-20 15:55:32 TristanJames [11:34:34] Starward I think
2016-02-20 15:55:32 TristanJames [11:35:16] https://www.facebook.com/newworldwhisky/
2016-02-20 15:55:32 NicholasB [11:57:39] that was far too much food for breakfast.
2016-02-20 15:55:32 NicholasB [11:57:41] delicious.
2016-02-20 15:55:32 NicholasB [12:01:16] hey
2016-02-20 15:55:32 NicholasB [12:01:26] last podcast recording was done on internation free software day.
2016-02-20 15:55:32 NicholasB [12:01:31] i have no idea.
2016-02-20 15:55:32 EricT [12:06:54] Taylor Swift & Lorde looking AMAZING at the Grammys. http://imgur.com/gallery/yNjcAsW
2016-02-20 15:55:32 NicholasB [12:10:12] classic
2016-02-20 15:55:32 Joe [12:48:54] Ya Ya Ya
2016-02-20 15:55:41 AgDeMesa [12:50:00] <br><img id="3">
2016-02-20 15:55:41 Joe [12:56:04] Lorde's actually pretty cool
2016-02-20 15:55:41 Joe [12:56:30] She's complained about being Photoshopped
2016-02-20 15:55:41 Joe [12:56:49] Because of the unrealistic expectations it gives young people
2016-02-20 15:55:41 Joe [12:57:15] But maybe that's just her pr people saying that stuff and she's really a stupid bitch
2016-02-20 15:55:41 Joe [12:57:19] Who knows
2016-02-20 15:55:41 NicholasB [13:02:11] i don't think shes stupid. shes a kid.
2016-02-20 15:55:41 NicholasB [13:02:48] i think shes pretty genuine. thats why shes popular with so many groups or people
2016-02-20 15:55:41 Joe [13:06:11] Oh man I can totally keep being particular.
2016-02-20 15:55:41 Joe [13:06:22] Read: whining
2016-02-20 15:55:41 Joe [13:06:49] No caps, no apostrophes etc
2016-02-20 15:55:41 NicholasB [13:10:29] i pretty much never use capitals in chats or tweets. its more aesthetically pleasing to me.
2016-02-20 15:55:41 Moritz [13:22:05] https://www.youtube.com/watch?v=cslPzDzeyEA
2016-02-20 15:55:41 NottheOtherDan [13:32:43] @enjayembee what time's kick off?
2016-02-20 15:55:41 NicholasB [13:35:14] first band on at three.
2016-02-20 15:55:41 NicholasB [13:35:32] i'm aiming for around there. though stupidly i took out all my money as cash for the weekend
2016-02-20 15:55:41 NicholasB [13:35:36] so i cant get uber
2016-02-20 15:55:41 NicholasB [13:35:40] stupid me
2016-02-20 15:55:41 EricT [13:48:58] Geelong T-shirt, lol
2016-02-20 15:55:49 EricT [13:48:58] <br><img id="4">
2016-02-20 15:55:49 NicholasB [13:53:59] @gid beavis
2016-02-20 15:55:49 NicholasB [13:54:04] fuck
2016-02-20 15:55:49 NicholasB [13:54:22] my telegram is playing up.
2016-02-20 15:55:49 NicholasB [13:54:51] is what i wanted.
2016-02-20 15:55:49 EricT [13:55:07] Rock on!
2016-02-20 15:55:49 NottheOtherDan [14:03:34] <br><img id="5">
2016-02-20 15:55:49 Moritz [14:40:16] https://www.youtube.com/watch?v=rHFOwlMCdto
2016-02-20 15:55:49 Moritz [14:40:40] That video has a surprising turn.
2016-02-20 15:55:49 NicholasB [14:42:33] blocked in australia.
2016-02-20 15:55:49 NicholasB [14:42:44] thats a new for Last Week Tonight.
2016-02-20 15:55:49 NicholasB [14:43:12] oh weird. its just that video.
2016-02-20 15:55:49 NicholasB [14:43:23] maybe they wont clear it here till they air it.
2016-02-20 15:55:49 Moritz [14:43:44] wait a second
2016-02-20 15:55:49 Moritz [14:49:21] Only for a limited time and a systemau pre release:
2016-02-20 15:55:49 Moritz [14:49:21] http://37.138.232.64:8888/
2016-02-20 15:55:49 NicholasB [14:49:40] nice work.
2016-02-20 15:55:49 NicholasB [14:50:04] im a bout to walk out. but ive got it downloading.
2016-02-20 15:55:49 NicholasB [14:50:06] cheers.
2016-02-20 15:55:49 NicholasB [14:50:19] we shall discuss on my return.
2016-02-20 15:55:49 NicholasB [14:50:20] :)
2016-02-20 15:55:49 Moritz [15:01:00] https://www.youtube.com/watch?v=F5FEj9U-CJM
2016-02-20 15:56:45 @fsociety i could just upload the whole episode for you
2016-02-20 15:56:47 @fsociety in 720p
2016-02-20 15:56:55 @fsociety *shifty eyes*
2016-02-20 16:02:00 [15:56]
2016-02-20 16:37:43 NicholasB <br><img id="6">
2016-02-20 16:37:43 [16:37]
2016-02-20 16:37:43 NicholasB @dj_salinger
2016-02-20 16:38:18 TristanJames Hello boys.
2016-02-20 16:44:00 [16:38]
2016-02-20 18:52:40 EricT Hello River Song.
2016-02-20 18:52:40 [18:52]
2016-02-20 20:05:42 - irc: disconnected from server
2016-02-20 20:05:42 [20:05]
2016-02-20 20:05:46 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 20:05:46 [20:05]
2016-02-20 20:05:46 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 20:13:28 - irc: disconnected from server
2016-02-20 20:13:38 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 20:13:38 [20:13]
2016-02-20 20:13:38 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 20:56:36 < root has kicked fsociety (Cleaning up channel)
2016-02-20 20:56:36 [20:56]
2016-02-20 20:56:36 > fsociety (whoami@localhost) has joined ##systemau
2016-02-20 20:56:36 - Topic for ##systemau is "#systemau"
2016-02-20 20:56:36 - Topic set by root (root@localhost) on Sat, 20 Feb 2016 20:56:36
2016-02-20 20:56:36 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-20 20:56:36 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-20 20:56:36 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-20 20:56:36 > Adam (Adam@telegram) has joined ##systemau
2016-02-20 20:56:36 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-20 20:56:36 > Amir (Amir@telegram) has joined ##systemau
2016-02-20 20:56:36 > Angela (Angela@telegram) has joined ##systemau
2016-02-20 20:56:36 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-20 20:56:36 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-20 20:56:36 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-20 20:56:36 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-20 20:56:36 > emb (emb@telegram) has joined ##systemau
2016-02-20 20:56:36 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-20 20:56:36 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-20 20:56:36 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-20 20:56:36 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-20 20:56:36 > Joe (Joe@telegram) has joined ##systemau
2016-02-20 20:56:36 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-20 20:56:36 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-20 20:56:36 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-20 20:56:36 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-20 20:56:36 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-20 20:56:36 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-20 20:56:36 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-20 20:56:36 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-20 20:56:36 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-20 20:56:36 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-20 20:56:36 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-20 20:56:36 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-20 20:56:36 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-20 20:56:36 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-20 20:56:36 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-20 20:56:36 > Sean (Sean@telegram) has joined ##systemau
2016-02-20 20:56:36 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-20 20:56:36 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-20 20:56:36 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-20 20:56:36 > Tom (Tom@telegram) has joined ##systemau
2016-02-20 20:56:36 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-20 20:56:36 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-20 20:56:36 NicholasB Drunk post.
2016-02-20 20:56:52 NicholasB Hi I'm drunk posting nick.
2016-02-20 20:57:19 NicholasB @elChupaNibre just saw hierophants. Nice.
2016-02-20 20:59:04 NottheOtherDan Yeah, they're great. The supported King gizz when I went to see them on my birthday.
2016-02-20 21:01:29 TristanJames Hi drunk Nick
2016-02-20 21:07:00 [21:01]
2016-02-20 21:14:01 NicholasB <br><img id="3">
2016-02-20 21:14:01 NicholasB Living eyes!
2016-02-20 21:20:00 [21:14]
2016-02-20 21:44:35 @fsociety i'm trying to get powerline fonts to work and it just aint working, i think i need to get drunk out of the frustration
2016-02-20 21:44:35 [21:44]
2016-02-20 23:02:33 NicholasB <br><img id="4">
2016-02-20 23:02:33 [23:02]
2016-02-20 23:02:35 NicholasB Ausmutants
2016-02-20 23:02:47 NicholasB As played on system au
2016-02-20 23:08:00 [23:02]
2016-02-20 23:35:20 TristanJames So I left my laptop charger at home when I went to the gig today. Luckily the cops called the party off at exactly the same time my battery died. I've picked up the charger and I'm now at the second gig.
2016-02-20 23:35:20 [23:35]
2016-02-20 23:51:31 NicholasB <br><img id="5">
2016-02-20 23:51:31 [23:51]
2016-02-20 23:51:46 NicholasB Dude from 'bits of shit' is chromeing on stage.
2016-02-20 23:53:36 NicholasB ???? Cops shut it down?
2016-02-20 23:56:46 EricT Po-po shut us - (down)- Don't stop, make it pop. DJ, blow my speakers up. Tonight ...
2016-02-20 23:57:33 AzzaMatazz Freedom hater!
2016-02-20 23:59:04 TristanJames There'd been a few noise complaints and the cops came round about 10.30 so they closed it down a little early. It was really a 'private party' that needed a donation to Beyond Blue to get in.
2016-02-21 00:02:29 NicholasB Hey I'm in for on stage chroming. Silverly smiles all round!
2016-02-21 00:06:36 AzzaMatazz I bet! I'm at work and feeling jealous
2016-02-21 00:06:36 [00:06]
2016-02-21 00:07:26 NicholasB Ha. It's okay. Walking home time now. Though I spent far to much on records.
2016-02-21 00:13:00 [00:07]
2016-02-21 00:45:07 - irc: disconnected from server
2016-02-21 00:45:07 [00:45]
2016-02-21 00:45:14 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 00:45:14 [00:45]
2016-02-21 00:45:14 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 10:11:08 < root has kicked fsociety (Cleaning up channel)
2016-02-21 10:11:08 [10:11]
2016-02-21 10:11:08 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 10:11:08 - Topic for ##systemau is "#systemau"
2016-02-21 10:11:08 - Topic set by root (root@localhost) on Sun, 21 Feb 2016 10:11:08
2016-02-21 10:11:08 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 10:11:08 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-21 10:11:08 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-21 10:11:08 > Adam (Adam@telegram) has joined ##systemau
2016-02-21 10:11:08 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-21 10:11:08 > Amir (Amir@telegram) has joined ##systemau
2016-02-21 10:11:08 > Angela (Angela@telegram) has joined ##systemau
2016-02-21 10:11:08 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-21 10:11:08 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-21 10:11:08 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-21 10:11:08 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-21 10:11:08 > emb (emb@telegram) has joined ##systemau
2016-02-21 10:11:08 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-21 10:11:08 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-21 10:11:08 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-21 10:11:08 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-21 10:11:08 > Joe (Joe@telegram) has joined ##systemau
2016-02-21 10:11:08 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-21 10:11:08 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-21 10:11:08 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-21 10:11:08 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-21 10:11:08 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-21 10:11:08 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-21 10:11:08 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-21 10:11:08 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-21 10:11:08 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-21 10:11:08 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-21 10:11:08 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-21 10:11:08 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-21 10:11:08 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-21 10:11:08 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-21 10:11:08 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-21 10:11:08 > Sean (Sean@telegram) has joined ##systemau
2016-02-21 10:11:08 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-21 10:11:08 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-21 10:11:08 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-21 10:11:08 > Tom (Tom@telegram) has joined ##systemau
2016-02-21 10:11:08 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-21 10:11:08 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-21 10:11:08 Moritz Which videos from geelong do i have to watch? Already viewing Bradly's talk.
2016-02-21 10:14:40 NottheOtherDan Matthew Garrett's is entertaining
2016-02-21 10:20:00 [10:14]
2016-02-21 10:59:00 EricT The talks at Gheringhap Street by bunch of Linux fanboys!
2016-02-21 10:59:00 [10:59]
2016-02-21 10:59:00 EricT but they were not recorded, to the best of my knowledge :)
2016-02-21 11:01:47 NottheOtherDan Everything was recorded @kloinka. Everything.
2016-02-21 11:02:03 PaulGleeson @kloinka I can see you pee
2016-02-21 11:02:25 EricT Envy...
2016-02-21 11:02:44 PaulGleeson @F_s0c1ety stop lurking
2016-02-21 11:08:00 [11:02]
2016-02-21 11:47:27 @fsociety I always lurk
2016-02-21 11:47:27 [11:47]
2016-02-21 11:47:33 @fsociety lurk.. lurk... lurk... lurk
2016-02-21 11:49:47 NottheOtherDan @Flurk_s0c1ety
2016-02-21 11:55:00 [11:49]
2016-02-21 12:52:23 - irc: disconnected from server
2016-02-21 12:52:23 [12:52]
2016-02-21 17:51:23 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 17:51:23 [17:51]
2016-02-21 17:51:23 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 17:51:26 < root has kicked fsociety (Cleaning up channel)
2016-02-21 17:51:26 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 17:51:26 - Topic for ##systemau is "#systemau"
2016-02-21 17:51:26 - Topic set by root (root@localhost) on Sun, 21 Feb 2016 17:51:26
2016-02-21 17:51:26 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 17:51:26 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-21 17:51:26 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-21 17:51:26 > Adam (Adam@telegram) has joined ##systemau
2016-02-21 17:51:26 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-21 17:51:26 > Amir (Amir@telegram) has joined ##systemau
2016-02-21 17:51:26 > Angela (Angela@telegram) has joined ##systemau
2016-02-21 17:51:26 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-21 17:51:26 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-21 17:51:26 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-21 17:51:26 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-21 17:51:26 > emb (emb@telegram) has joined ##systemau
2016-02-21 17:51:26 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-21 17:51:26 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-21 17:51:26 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-21 17:51:26 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-21 17:51:26 > Joe (Joe@telegram) has joined ##systemau
2016-02-21 17:51:26 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-21 17:51:26 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-21 17:51:26 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-21 17:51:26 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-21 17:51:26 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-21 17:51:26 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-21 17:51:26 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-21 17:51:26 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-21 17:51:26 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-21 17:51:26 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-21 17:51:26 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-21 17:51:26 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-21 17:51:26 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-21 17:51:26 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-21 17:51:26 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-21 17:51:26 > Sean (Sean@telegram) has joined ##systemau
2016-02-21 17:51:26 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-21 17:51:26 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-21 17:51:26 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-21 17:51:26 > Tom (Tom@telegram) has joined ##systemau
2016-02-21 17:51:26 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-21 17:51:26 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-21 17:51:26 EricT [12:54:11] 1 of the seven deadly internet sins. 1. Lurking 2.Spamming....
2016-02-21 17:51:26 PaulGleeson [12:54:32] What are the other 5?
2016-02-21 17:51:26 EricT [12:54:45] Porn
2016-02-21 17:51:26 EricT [12:55:03] Torrenting
2016-02-21 17:51:26 EricT [12:55:09] VPN'ing
2016-02-21 17:51:26 EricT [12:56:27] Blogging about oneselve.
2016-02-21 17:51:26 PaulGleeson [12:56:37] Bring wrong
2016-02-21 17:51:26 PaulGleeson [12:56:39] Being*
2016-02-21 17:51:26 EricT [12:57:08] fact check people! lmgtfy.com
2016-02-21 17:51:26 EricT [12:58:45] cool gif, but it should be the Privacy Badger instead.lol
2016-02-21 17:51:26 PaulGleeson [12:59:12] Is it because the second you stop lurking for a moment your only in one place and not everywhere
2016-02-21 17:51:26 EricT [12:59:36] It's like the Quickening!
2016-02-21 17:51:26 EricT [12:59:41] lol
2016-02-21 17:51:26 PaulGleeson [13:00:12] @kloinka how are things mate?
2016-02-21 17:51:26 EricT [13:00:55] just vedging...doing laundry...excitement plus!
2016-02-21 17:51:26 PaulGleeson [13:01:11] I'm pure jelly
2016-02-21 17:51:26 PaulGleeson [13:01:28] @elChupaNibre yo
2016-02-21 17:51:26 NottheOtherDan [13:01:34] Word
2016-02-21 17:51:26 PaulGleeson [13:01:40] Craic?
2016-02-21 17:51:26 NottheOtherDan [13:02:17] I'm sick and staring at my laptop, while downloading steam games. What's happening @paul_gleeson ?
2016-02-21 17:51:26 PaulGleeson [13:02:51] Got bored of reading, too tired to get back of bed and too wired to sleep
2016-02-21 17:51:26 NottheOtherDan [13:03:09] Needs moar caffeine
2016-02-21 17:51:26 NottheOtherDan [13:03:24] Oirish Coffee
2016-02-21 17:51:26 EricT [13:03:28] I too have cough and producing lots of lung-custard...
2016-02-21 17:51:26 PaulGleeson [13:03:51] <br><img id="1">
2016-02-21 17:51:26 PaulGleeson [13:04:19] I'd rather Irish tea
2016-02-21 17:51:26 NottheOtherDan [13:04:33] I'd rather a hot toddie
2016-02-21 17:51:26 PaulGleeson [13:04:57] That's the most Scottish looking beard I've ever seen
2016-02-21 17:51:26 NottheOtherDan [13:05:25] No moustache. Must be irish
2016-02-21 17:51:26 PaulGleeson [13:06:58] I can grow a full moustache in 3 days, am I Scottish?
2016-02-21 17:51:26 NottheOtherDan [13:07:20] Or greek. I installed vanilla Ubuntu after borking my Fedora install the other night. I'm amazed. Everything just works. I haven't had any error messages.
2016-02-21 17:51:26 PaulGleeson [13:08:02] Must not be Ubuntu then
2016-02-21 17:51:26 NottheOtherDan [13:08:08] IKR!
2016-02-21 17:51:26 NottheOtherDan [13:08:47] The website i downloaded it from was a really fucking good clone of the official site.
2016-02-21 17:51:26 PaulGleeson [13:09:31] Did you enter all your passwords when asked like a good boy?
2016-02-21 17:51:26 NottheOtherDan [13:09:43] and credit card details.
2016-02-21 17:51:26 PaulGleeson [13:10:15] Goodman
2016-02-21 17:51:26 PaulGleeson [13:10:30] Your a influence to all of us
2016-02-21 17:51:26 PaulGleeson [13:10:33] An*
2016-02-21 17:51:26 NottheOtherDan [13:10:53] I'm an infuenza to all of you at the moment.
2016-02-21 17:51:26 EricT [13:11:26] http://i.imgur.com/bwbSZSp.png
2016-02-21 17:51:26 PaulGleeson [13:11:34] If I get sick, I'll worship you as a god
2016-02-21 17:51:26 NottheOtherDan [13:12:06] Will that make you sikh?
2016-02-21 17:51:29 - Mode ##systemau [+t]
2016-02-21 17:51:30 PaulGleeson [13:13:25] <br><img id="4">
2016-02-21 17:51:30 NottheOtherDan [13:13:34] <br><img id="5">
2016-02-21 17:51:30 PaulGleeson [13:13:46] Falling asleep attempt number something
2016-02-21 17:51:30 PaulGleeson [13:13:52] Night lads
2016-02-21 17:51:30 EricT [13:13:52] Fully Tabooli
2016-02-21 17:51:30 NottheOtherDan [13:13:57] Nite mate
2016-02-21 17:57:00 [17:51]
2016-02-21 18:31:43 EricT spoonfeed that man some cement!
2016-02-21 18:31:43 [18:31]
2016-02-21 20:00:07 - irc: disconnected from server
2016-02-21 20:00:07 [20:00]
2016-02-21 20:00:21 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 20:00:21 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 20:00:23 < root has kicked fsociety (Cleaning up channel)
2016-02-21 20:00:23 > fsociety (whoami@localhost) has joined ##systemau
2016-02-21 20:00:23 - Topic for ##systemau is "#systemau"
2016-02-21 20:00:23 - Topic set by root (root@localhost) on Sun, 21 Feb 2016 20:00:23
2016-02-21 20:00:23 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-21 20:00:23 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-21 20:00:23 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-21 20:00:23 > Adam (Adam@telegram) has joined ##systemau
2016-02-21 20:00:23 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-21 20:00:23 > Amir (Amir@telegram) has joined ##systemau
2016-02-21 20:00:23 > Angela (Angela@telegram) has joined ##systemau
2016-02-21 20:00:23 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-21 20:00:23 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-21 20:00:23 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-21 20:00:23 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-21 20:00:23 > emb (emb@telegram) has joined ##systemau
2016-02-21 20:00:23 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-21 20:00:23 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-21 20:00:23 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-21 20:00:23 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-21 20:00:23 > Joe (Joe@telegram) has joined ##systemau
2016-02-21 20:00:23 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-21 20:00:23 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-21 20:00:23 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-21 20:00:23 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-21 20:00:23 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-21 20:00:23 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-21 20:00:23 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-21 20:00:23 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-21 20:00:23 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-21 20:00:23 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-21 20:00:23 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-21 20:00:23 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-21 20:00:23 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-21 20:00:23 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-21 20:00:23 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-21 20:00:23 > Sean (Sean@telegram) has joined ##systemau
2016-02-21 20:00:23 > StefanReisener (Stefan_Reisener@telegram) has joined ##systemau
2016-02-21 20:00:23 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-21 20:00:23 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-21 20:00:23 > Tom (Tom@telegram) has joined ##systemau
2016-02-21 20:00:23 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-21 20:00:23 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-21 20:00:23 NotDan <br><img id="3">
2016-02-21 20:00:27 - Mode ##systemau [+t]
2016-02-21 20:06:00 [20:00]
2016-02-21 20:10:32 NotDan haha
2016-02-21 20:11:21 NotDan which film is that from
2016-02-21 20:11:47 NottheOtherDan Dunno, but it's a good BSD rage quit.
2016-02-21 20:17:00 [20:11]
2016-02-21 20:38:26 LewisCividin The other guys its a top film
2016-02-21 20:38:26 [20:38]
2016-02-21 20:39:05 LewisCividin http://www.imdb.com/title/tt1386588/
2016-02-21 20:40:09 LewisCividin Its got one of the funniest scenes in it with the rock and samuel l jackson
2016-02-21 20:41:07 @fsociety you still trying to use bsd dan?
2016-02-21 20:46:07 Joe Ghost BSD is by far the easiest
2016-02-21 20:50:37 NotDan Got my server hardware setup now, so yeah, diving in to the BSD system now
2016-02-21 20:50:45 NotDan Havent had time this weekend before now
2016-02-21 20:56:00 [20:50]
2016-02-21 21:24:43 @fsociety the only reason why i'd never use BSD is purely because of no Steam
2016-02-21 21:24:43 [21:24]
2016-02-21 21:29:12 NotDan Yeah, fair enough
2016-02-21 21:29:24 NotDan This would be purely for the purpose of server-based applications
2016-02-21 21:35:00 [21:29]
2016-02-21 21:44:39 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < StefanReisener (Stefan_Reisener@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:44:39 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-21 21:50:00 [21:44]
2016-02-21 21:55:25 - irc: disconnected from server
2016-02-22 09:20:49 > fsociety (whoami@localhost) has joined ##systemau
2016-02-22 09:20:49 [09:20]
2016-02-22 09:20:49 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-22 09:20:53 < root has kicked fsociety (Cleaning up channel)
2016-02-22 09:20:53 > fsociety (whoami@localhost) has joined ##systemau
2016-02-22 09:20:53 - Topic for ##systemau is "#systemau"
2016-02-22 09:20:53 - Topic set by root (root@localhost) on Mon, 22 Feb 2016 09:20:53
2016-02-22 09:20:53 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-22 09:20:53 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-22 09:20:53 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-22 09:20:53 > Adam (Adam@telegram) has joined ##systemau
2016-02-22 09:20:53 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-22 09:20:53 > Amir (Amir@telegram) has joined ##systemau
2016-02-22 09:20:53 > Angela (Angela@telegram) has joined ##systemau
2016-02-22 09:20:53 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-22 09:20:53 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-22 09:20:53 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-22 09:20:53 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-22 09:20:53 > emb (emb@telegram) has joined ##systemau
2016-02-22 09:20:53 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-22 09:20:53 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-22 09:20:53 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-22 09:20:53 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-22 09:20:53 > Joe (Joe@telegram) has joined ##systemau
2016-02-22 09:20:53 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-22 09:20:53 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-22 09:20:53 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-22 09:20:53 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-22 09:20:53 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-22 09:20:53 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-22 09:20:53 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-22 09:20:53 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-22 09:20:53 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-22 09:20:53 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-22 09:20:53 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-22 09:20:53 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-22 09:20:53 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-22 09:20:53 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-22 09:20:53 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-22 09:20:53 > Sean (Sean@telegram) has joined ##systemau
2016-02-22 09:20:53 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-22 09:20:53 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-22 09:20:53 > Tom (Tom@telegram) has joined ##systemau
2016-02-22 09:20:53 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-22 09:20:53 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:08:26] Ghostbsd is kinda useless
2016-02-22 09:20:53 Joe [2016-02-21 22:08:40] Why?
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:09:37] Lacks a community to properly test software outside the main system
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:11:38] I've only ever heard non BSD user talk about it
2016-02-22 09:20:53 EricT [2016-02-21 22:12:48] What about Dragonfly?
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:16:21] Dragonfly is just the freebsd pacakages
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:16:29] Like its the same tree
2016-02-22 09:20:53 EricT [2016-02-21 22:17:57] there was a lot of chatter about it a couple of years ago...
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:18:53] For a tiny project it has an insane speed of development
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:19:15] But they had to drop everything but amd64 to get there
2016-02-22 09:20:53 EricT [2016-02-21 22:20:30] OK, I guess suffer from what most "distro" do, not enough development community
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:21:39] Not really most BSDs have plenty if developers but lack a large community of users to break things and make reports
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:21:56] Of*
2016-02-22 09:20:53 EricT [2016-02-21 22:23:56] Don't know enouiigh about the BSDs...tried PCBSD 2 years ago, for about a month, then lost interest though have use PFsense and Monowall on pcengines boards for a while
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:24:25] Pfsense is great
2016-02-22 09:20:53 EricT [2016-02-21 22:24:53] I agree, by far the best opensource firewall
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:25:47] Apparently pf itself is one of the most common pieces of open source software in the world
2016-02-22 09:20:53 EricT [2016-02-21 22:29:13] Im actually thinking of running a vm of pfsense in my classes this term (for firewall, vpn and webproxy) instead of MS forefront TMG (which is a bloated peice of shit) which we have taught since MS ISA 2004 as our "perimeter security and internet gateway".
2016-02-22 09:20:53 PaulGleeson [2016-02-21 22:30:12] I would, its built to work in pure Microsoft environments
2016-02-22 09:20:53 EricT [2016-02-21 22:32:32] Now that MS is no longer actively creating the Firewall Server I can use other solution, I had an option for Cisco, but I would prefer opensource.
2016-02-22 09:20:55 - Mode ##systemau [+t]
2016-02-22 09:21:01 EricT [2016-02-21 22:34:10] <br><img id="3">
2016-02-22 09:21:01 EricT [2016-02-21 22:34:40] just reflowed my GTX770 after a cooling fan died it glitched, fingers crossed!
2016-02-22 09:21:01 MartinWimpress [2016-02-21 22:37:27] PfSense is pretty great. OpenSense is shaping up nicely too.
2016-02-22 09:21:01 EricT [2016-02-21 22:38:45] Isn't pfSence open? I know they offer support for $, but I thought there was a community version.
2016-02-22 09:21:01 PaulGleeson [2016-02-21 22:47:38] Shit
2016-02-22 09:21:01 PaulGleeson [2016-02-21 22:47:38] I did a Tristan
2016-02-22 09:21:01 PaulGleeson [2016-02-21 22:48:02] There is
2016-02-22 09:21:01 EricT [2016-02-21 22:48:12] no power brick ?
2016-02-22 09:21:01 PaulGleeson [2016-02-21 22:49:39] No I left voice recording going for the last 20 minutes
2016-02-22 09:21:02 Moritz [00:23:04] It is FOSS with optional commercial support.
2016-02-22 09:21:02 EricT [00:34:01] good to know....bedtime here....
2016-02-22 09:21:02 PaulGleeson [00:34:17] Night @kloinka
2016-02-22 09:21:02 EricT [00:34:45] yawn, scratch, fart......nite all!
2016-02-22 09:21:02 Moritz [01:57:10] https://defaultnamehere.tumblr.com/post/139351766005/graphing-when-your-facebook-friends-are-awake
2016-02-22 09:21:02 PaulGleeson [02:40:38] <br><img id="4">
2016-02-22 09:21:02 PaulGleeson [05:09:45] @sedman I was thinking if Ubuntu had been as stable as it is now years ago, we would have fewer distros
2016-02-22 09:21:02 PaulGleeson [05:10:50] And a lot less distro hoppers
2016-02-22 09:21:02 NicholasB [07:51:33] morning mother fuckers.
2016-02-22 09:21:02 NicholasB [07:51:39] whats going down
2016-02-22 09:21:02 PaulGleeson [07:53:08] Watching new xfiles
2016-02-22 09:21:02 NicholasB [07:58:21] how is it.
2016-02-22 09:21:02 NicholasB [07:58:30] any why did you scare Stefan off?
2016-02-22 09:21:02 PaulGleeson [08:21:39] No, we were actually talking about open source for once
2016-02-22 09:21:02 PaulGleeson [08:21:49] Maybe he had the wrong video about the group
2016-02-22 09:21:02 PaulGleeson [08:21:55] Idea* not video
2016-02-22 09:21:02 NicholasB [08:22:26] hahah. I would say at least 20 percent of discusiion here is software based :P
2016-02-22 09:21:02 NicholasB [08:22:52] 20 percent gif
2016-02-22 09:21:02 NicholasB [08:22:57] actually
2016-02-22 09:21:02 NicholasB [08:23:01] prob 40 percent gif.
2016-02-22 09:21:02 PaulGleeson [08:23:45] I'd say less than 10% gif
2016-02-22 09:21:02 NicholasB [08:24:08] depends when you're on.
2016-02-22 09:21:02 NicholasB [08:24:12] :D
2016-02-22 09:21:02 PaulGleeson [08:27:11] I suppose
2016-02-22 09:21:02 PaulGleeson [08:28:00] BTW the latest episode of BSDnow has a really good interview with a guy who has commit rights on freebsd, dragonfly and netbsd
2016-02-22 09:21:02 PaulGleeson [08:28:56] It explain the relationship between dragonfly and freebsd very well
2016-02-22 09:21:02 NicholasB [08:29:23] certainly.
2016-02-22 09:21:02 NicholasB [08:29:31] i'll try check it out.
2016-02-22 09:21:02 Joe [08:47:47] The Linux Mint website
2016-02-22 09:21:02 Joe [08:48:13] Shit's going down, yo
2016-02-22 09:21:02 NicholasB [08:48:17] that's good of it.
2016-02-22 09:21:02 NicholasB [08:48:42] ohh fuck. I just googled it
2016-02-22 09:21:02 NicholasB [08:48:44] that's massive.
2016-02-22 09:21:02 Joe [09:03:24] Yep
2016-02-22 09:21:02 NicholasB [09:06:51] I blame bulgaria
2016-02-22 09:21:02 Joe [09:07:19] Bloody Nodnollers
2016-02-22 09:21:02 MartinWimpress [09:10:39] I blame lack of sysadmin skillz
2016-02-22 09:21:02 MartinWimpress [09:10:45] I've got mad sysadmin skillz
2016-02-22 09:21:02 MartinWimpress [09:10:49] I'm so skillz.
2016-02-22 09:21:02 NicholasB [09:11:38] Nodnollers?
2016-02-22 09:21:02 NicholasB [09:11:58] Stopping hogging Skillz you Skillz hogger.
2016-02-22 09:21:02 MartinWimpress [09:12:49] I'm not sure a fat 43 year old can get away with saying "skillz".
2016-02-22 09:21:02 Joe [09:12:53] https://youtu.be/SeOdbkg970Q
2016-02-22 09:21:02 NicholasB [09:15:08] ahhh
2016-02-22 09:21:02 NicholasB [09:15:14] I recall that.
2016-02-22 09:21:02 NicholasB [09:15:23] never has a tv show aged so terribly.
2016-02-22 09:21:02 Moritz [09:15:28] Link please!🎈
2016-02-22 09:21:02 PaulGleeson [09:17:08] http://pca.st/kx9V
2016-02-22 09:21:02 PaulGleeson [09:18:16] Synthesize all the Things! | BSD Now 129 | Jupiter Broadcasting
2016-02-22 09:21:02 PaulGleeson [09:18:16] http://www.jupiterbroadcasting.com/93926/synthesize-all-the-things-bsd-now-129/
2016-02-22 09:21:02 PaulGleeson [09:18:26] The second has the show notes
2016-02-22 09:27:00 [09:21]
2016-02-22 09:30:50 Joe Yeah it seems a bit lame these days
2016-02-22 09:34:09 @fsociety once i met a sysadmin who required two seats and we couldn't sit next to him cause he smelt that bad
2016-02-22 09:34:16 @fsociety and the worst thing is, this isn't a joke
2016-02-22 09:35:36 @fsociety clearly a windows sysadmin ;)
2016-02-22 09:37:26 Sean <br><img id="5">
2016-02-22 09:37:45 Sean Just saw this creepy pic on the interwebs.
2016-02-22 09:39:34 EricT All in all, theyre just a brick in the wall!
2016-02-22 09:40:04 @fsociety i imagine that pink floyd's the wall is about developers working on windows 10
2016-02-22 09:40:44 EricT How can you have your pudding if you dont eat your meat?
2016-02-22 09:40:44 Joe What does his ability to extract metal from its ore have to do with your proximity to him?
2016-02-22 09:43:06 @fsociety now this conversation just went left of centre
2016-02-22 09:43:06 [09:43]
2016-02-22 09:43:27 Joe Smelled*
2016-02-22 09:46:53 @fsociety i completed firewatch and layers of fear the other day
2016-02-22 09:47:10 @fsociety i went on a serious game-a-thon and completed 3 games in 3 days.. i got steam brain burn-out
2016-02-22 09:47:36 EricT Which games?
2016-02-22 09:48:21 NottheOtherDan Firewatch any good?
2016-02-22 09:48:24 NottheOtherDan Hi all.
2016-02-22 09:48:25 @fsociety firewatch is awesome
2016-02-22 09:48:40 @fsociety layers of free, downfall redux and firewatch are what i completed Eric
2016-02-22 09:48:44 @fsociety layers of fear*
2016-02-22 09:48:51 @fsociety haha. layers of free.. i wish
2016-02-22 09:49:01 @fsociety firewatch is quite gripping story wise
2016-02-22 09:49:13 EricT The onion of fear!
2016-02-22 09:49:25 @fsociety layers of fear scared the shit out of me a few times
2016-02-22 09:49:50 @fsociety layers of fear took me about 4 hours to complete, and firewatch about 5 hours
2016-02-22 09:51:43 EricT Is @elChupaNibre over his manflu?
2016-02-22 09:52:20 NottheOtherDan No. It's cranked up a level to full body soreness.
2016-02-22 09:52:26 @fsociety i had the manflu after linuxconf
2016-02-22 09:52:29 @fsociety had it for a week
2016-02-22 09:52:38 NicholasB smelled is traditionally American, smelt is interchangeable in English. Are you American?
2016-02-22 09:53:53 @fsociety well i do watch a lot of american television
2016-02-22 09:53:55 EricT I hate English-Lit majors...
2016-02-22 09:53:57 Joe YEE HAW 2ND AMENDMENT 1776
2016-02-22 09:54:12 @fsociety you'd hate my gf then, shes actually has a phd in english
2016-02-22 09:54:21 @fsociety so she could destroy nicholasb
2016-02-22 09:54:36 EricT Does she constantly correct you?
2016-02-22 09:54:38 @fsociety yup
2016-02-22 09:54:42 @fsociety it's irritating
2016-02-22 09:54:59 @fsociety i respond "does it really matter, does it really"
2016-02-22 09:54:59 Joe My German wife corrects my spelling
2016-02-22 09:55:19 NicholasB anyone could destroy me. I've never claimed to be have great grammar.
2016-02-22 09:55:33 Joe >to be have
2016-02-22 09:55:37 @fsociety then shush
2016-02-22 09:55:44 NicholasB I just know smelt and smelled are both correct because some on pulled me up on it so I had to research it.
2016-02-22 09:56:06 Joe YOUR RETARTED
2016-02-22 09:56:10 EricT Stranded on an uninhabited island with an Eng-Lit major, you will die!
2016-02-22 09:56:21 @fsociety worst nightmare
2016-02-22 09:56:37 @fsociety trust me, i'm stranded in alphington/fairfield with an eng-lit teacher
2016-02-22 09:56:54 EricT Lol
2016-02-22 09:56:58 @fsociety i have nightmares and wake up, and she goes "dean you were saying *blah* in your sleep, its actually like this"
2016-02-22 09:59:32 @fsociety https://github.com/sjnewbury/gentoo-opencl
2016-02-22 09:59:32 [09:59]
2016-02-22 09:59:37 @fsociety woo.. vulkan drivers for gentoo
2016-02-22 10:05:00 [09:59]
2016-02-22 10:13:34 EricT Sounds like Spock in an Uber :)
2016-02-22 10:19:00 [10:13]
2016-02-22 10:25:16 @fsociety haha
2016-02-22 10:25:32 @fsociety so is there still going to be a school holidays meet up
2016-02-22 10:31:00 [10:25]
2016-02-22 10:36:54 NicholasB when is the chool holidays again?
2016-02-22 10:42:00 [10:36]
2016-02-22 10:58:03 @fsociety ill find out for you
2016-02-22 10:58:03 [10:58]
2016-02-22 10:59:03 @fsociety 25th of march to 10th of april
2016-02-22 11:05:00 [10:59]
2016-02-22 11:08:36 EricT Woow I get another 2 week break...life is good 😊
2016-02-22 11:10:03 NicholasB maybe the 2nd weekend of april
2016-02-22 11:12:08 @fsociety shut up eric
2016-02-22 11:12:10 @fsociety lol
2016-02-22 11:14:58 EricT Hey...It took me 43yrs to get this job!
2016-02-22 11:19:31 NottheOtherDan I'ma be moving to the new house.
2016-02-22 11:19:44 NicholasB ohhh
2016-02-22 11:19:53 NicholasB which is big news
2016-02-22 11:20:12 EricT House warming party!
2016-02-22 11:20:12 [11:20]
2016-02-22 11:20:18 NottheOtherDan Can we do the meet up in east gippsland?
2016-02-22 11:20:34 NicholasB systemau will be going remote people.
2016-02-22 11:21:53 TristanJames Are you moving to east Gippsland?
2016-02-22 11:21:59 NottheOtherDan Yes
2016-02-22 11:22:42 NottheOtherDan I'm moving from The Great Ocean Road to The Great Alpine Road. Great Road or GTFO.
2016-02-22 11:25:12 NicholasB From one internet black spot to another.
2016-02-22 11:25:36 NottheOtherDan I'm used to being 5kms from the exchange.
2016-02-22 11:27:59 @fsociety Moving to Gippsland, guaranteed fire burner
2016-02-22 11:29:06 NottheOtherDan https://www.youtube.com/watch?v=wmin5WkOuPw
2016-02-22 11:29:06 @fsociety I refuse to move from Alphington, if I was forced I'd be ripping up the Optus Cable and taking it with me.
2016-02-22 11:29:51 NottheOtherDan Yeah, try dling 3tb on an adsl2 line 5 kms from the exchange.
2016-02-22 11:30:28 NicholasB try downloading a 700 mg iso
2016-02-22 11:30:35 @fsociety try downloading a 2mb file
2016-02-22 11:30:35 @fsociety lol
2016-02-22 11:33:48 EricT Just checked GoogleMaps...heck of a comute to Melbourne, lol
2016-02-22 11:34:03 NottheOtherDan Who's commuting?
2016-02-22 11:34:26 @fsociety Eric can I convince you with strippers and blow?
2016-02-22 11:34:53 EricT Strippers, blow and a BBQ!
2016-02-22 11:34:59 EricT and bacon
2016-02-22 11:36:25 @fsociety how about bacon on the strippers
2016-02-22 11:36:25 [11:36]
2016-02-22 11:36:43 EricT WHS issues...
2016-02-22 11:37:05 @fsociety they're only strippers, they won't care
2016-02-22 11:37:13 @fsociety it's not like they have any self respect anyways
2016-02-22 11:37:23 @fsociety they'd probably be high on some amphetamine anyway
2016-02-22 11:37:59 EricT Meth sweat on my bacon! YUM!
2016-02-22 11:38:22 @fsociety ewwww
2016-02-22 11:38:27 @fsociety still wanna come to melbourne
2016-02-22 11:39:05 @fsociety ps. still enjoying telegram in irc
2016-02-22 11:39:10 @fsociety :)
2016-02-22 11:39:59 EricT You too hardcore, bro!
2016-02-22 11:40:22 NottheOtherDan Save that RAM!
2016-02-22 11:40:37 EricT bank it for your retirement!
2016-02-22 11:40:46 EricT so much ram!
2016-02-22 11:41:39 EricT McScrooge Duck swimming in dimms!
2016-02-22 11:42:02 @fsociety im scrooge mcdimm
2016-02-22 11:42:22 EricT it rubs the dimms on its skin...
2016-02-22 11:42:32 @fsociety though i'm about to compile ue4 so that should use some ram
2016-02-22 11:43:04 NottheOtherDan 1Gb used - 35Gb free
2016-02-22 11:43:45 @fsociety actually iv made it so gentoo compiles in tmpfs, so for example compiling firefox can use up to 12gb of ram during compile
2016-02-22 11:43:51 @fsociety but it speeds it up quite considerably
2016-02-22 11:44:25 NicholasB I used to run all my firefox and chrome in tmpfs to speed it up
2016-02-22 11:44:32 NicholasB esp on older laptops
2016-02-22 11:44:52 @fsociety did those laptops have oodles of ram?
2016-02-22 11:45:07 NicholasB 4 gig in my little netbooks
2016-02-22 11:45:13 NicholasB enough to make a difference
2016-02-22 11:45:31 NicholasB also when I had a small ssd in my laptop. and 8 gig of ram I did the same
2016-02-22 11:46:40 @fsociety ahh. i just use tmpfs during compiling, i really wanted to like palemoon.. but none of the extensions i use are compatible with it
2016-02-22 11:47:49 @fsociety so now im just alternating between firefox and qutebrowser
2016-02-22 11:48:03 @fsociety vimb is pretty good but lacks tabs
2016-02-22 11:48:30 @fsociety i think my biggest thing i need though is vim keyboard shortcuts in my browser, i've gotten so accustomed to it
2016-02-22 11:48:37 Moritz Fab about why you should leave Windows. (There are 5000 Locky infections per hour in Germany).
2016-02-22 11:48:37 Moritz
2016-02-22 11:48:37 Moritz http://m.heise.de/newsticker/meldung/Kommentar-zu-Locky-Windows-ist-ein-Sicherheits-Albtraum-3112837.html
2016-02-22 11:48:57 @fsociety Why you should leave Germany = Fab
2016-02-22 11:49:46 NicholasB i love how you can almost understand german if you speak English.
2016-02-22 11:50:17 NicholasB not always. but some sentences are like.
2016-02-22 11:50:25 NicholasB I KNOW WHAT THOSE WORDS ARE TRYING TO BE!
2016-02-22 11:50:48 @fsociety i would love to watch a german spelling bee
2016-02-22 11:51:14 NicholasB https://www.youtube.com/watch?v=bq07U0HLuM8
2016-02-22 11:52:33 @fsociety wish i could watch that right now
2016-02-22 11:52:33 [11:52]
2016-02-22 11:52:45 NicholasB its not that impressive.
2016-02-22 11:52:48 NicholasB he's a English kid
2016-02-22 11:52:56 NicholasB so its his second language and seem pretty simple.
2016-02-22 11:53:13 @fsociety i want moss from it crowd to do it
2016-02-22 11:53:13 NicholasB so that's awesome but its not like some genius german kids spelling 29 letter long words.
2016-02-22 11:54:18 Moritz Searching for Buchstabierwettbewerb on you tube doesn't help either.
2016-02-22 11:54:40 @fsociety tnetennba
2016-02-22 11:54:47 @fsociety STREET COUNTDOOOWWWWNNN
2016-02-22 11:58:00 @fsociety ..so forum
2016-02-22 11:58:05 @fsociety HMMMMMMMM....
2016-02-22 11:58:08 Moritz https://youtube.com/watch?v=bGdCeMayUjk
2016-02-22 11:59:44 EricT https://youtu.be/n4RjJKxsamQ
2016-02-22 12:00:55 Moritz Everything with Buchstabierwettbewerb is just dubbed or translated american stuff.
2016-02-22 12:01:20 @fsociety Moritz: lols at that youtube video
2016-02-22 12:02:04 NottheOtherDan https://www.youtube.com/watch?v=La4Dcd1aUcE
2016-02-22 12:02:59 EricT Ive been 1upped!
2016-02-22 12:03:09 @fsociety haha
2016-02-22 12:03:40 EricT fuck the luft ballos!
2016-02-22 12:04:05 NottheOtherDan I don't think that's what it translates to @kloinka
2016-02-22 12:04:24 EricT Lufty balls
2016-02-22 12:04:35 NottheOtherDan Yeah, something like that.
2016-02-22 12:04:59 EricT I will hit you all with some Greek Metal!
2016-02-22 12:05:31 EricT https://www.youtube.com/watch?v=2MCSBXiNOF8
2016-02-22 12:07:49 NottheOtherDan https://www.youtube.com/watch?v=aTLzAk3ajrI
2016-02-22 12:07:49 [12:07]
2016-02-22 12:11:05 EricT lunchtime, kids!
2016-02-22 12:16:34 TristanJames What's for lunch? I'm having pea and ham soup that I made with leftover Xmas ham and froze in lunch sized portions.
2016-02-22 12:17:45 EricT Protein! Meat on a stick
2016-02-22 12:20:46 - irc: disconnected from server
2016-02-22 12:20:49 > fsociety (whoami@localhost) has joined ##systemau
2016-02-22 12:20:49 [12:20]
2016-02-22 12:20:49 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-22 12:22:00 < root has kicked fsociety (Cleaning up channel)
2016-02-22 12:22:00 > fsociety (whoami@localhost) has joined ##systemau
2016-02-22 12:22:00 - Topic for ##systemau is "#systemau"
2016-02-22 12:22:00 - Topic set by root (root@localhost) on Mon, 22 Feb 2016 12:22:00
2016-02-22 12:22:00 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-22 12:22:00 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-22 12:22:00 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-22 12:22:00 > Adam (Adam@telegram) has joined ##systemau
2016-02-22 12:22:00 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-22 12:22:00 > Amir (Amir@telegram) has joined ##systemau
2016-02-22 12:22:00 > Angela (Angela@telegram) has joined ##systemau
2016-02-22 12:22:00 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-22 12:22:00 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-22 12:22:00 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-22 12:22:00 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-22 12:22:00 > emb (emb@telegram) has joined ##systemau
2016-02-22 12:22:00 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-22 12:22:00 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-22 12:22:00 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-22 12:22:00 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-22 12:22:00 > Joe (Joe@telegram) has joined ##systemau
2016-02-22 12:22:00 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-22 12:22:00 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-22 12:22:00 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-22 12:22:00 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-22 12:22:00 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-22 12:22:00 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-22 12:22:00 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-22 12:22:00 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-22 12:22:00 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-22 12:22:00 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-22 12:22:00 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-22 12:22:00 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-22 12:22:00 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-22 12:22:00 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-22 12:22:00 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-22 12:22:00 > Sean (Sean@telegram) has joined ##systemau
2016-02-22 12:22:00 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-22 12:22:00 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-22 12:22:00 > Tom (Tom@telegram) has joined ##systemau
2016-02-22 12:22:00 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-22 12:22:00 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-22 12:22:00 TristanJames Needs more carbs.
2016-02-22 12:24:41 @fsociety greek metal?
2016-02-22 12:24:52 @fsociety guessing the majority of it would be power metal
2016-02-22 12:25:27 @fsociety i'll give you metal, even metal that Nic would think is br00tz
2016-02-22 12:25:28 @fsociety https://www.youtube.com/watch?v=SIcnc_8UxXo
2016-02-22 12:31:00 [12:25]
2016-02-22 12:35:17 NicholasB roastveggie from the iga
2016-02-22 12:35:45 @fsociety that is pretty br00tz
2016-02-22 12:37:19 NicholasB its a little brootal
2016-02-22 12:43:00 [12:37]
2016-02-22 13:02:01 NicholasB looking up Singapore cost of living for my upcoming trip.
2016-02-22 13:02:01 [13:02]
2016-02-22 13:02:10 NicholasB most of its pretty similiar
2016-02-22 13:02:34 NicholasB but get this. a 2016 ford festiva, which goes for like 12-15k here.
2016-02-22 13:02:38 NicholasB 88k in Singapore.
2016-02-22 13:04:30 TristanJames What's the reason for that?
2016-02-22 13:05:05 NicholasB i'm guessing taxes.
2016-02-22 13:05:10 NicholasB due to congestion
2016-02-22 13:05:20 NicholasB just a thought. i was just looking at car sales sites
2016-02-22 13:06:47 NicholasB 41 percent duty.
2016-02-22 13:06:53 NicholasB 1000 bucks yearly rego
2016-02-22 13:12:00 [13:06]
2016-02-22 13:13:07 TristanJames geez
2016-02-22 13:19:00 [13:13]
2016-02-22 13:38:44 @fsociety when you are going to singapore
2016-02-22 13:38:44 [13:38]
2016-02-22 13:38:50 @fsociety when will systemau go on hiatus
2016-02-22 13:39:13 @fsociety i dont think i can handle a few weeks without systemau
2016-02-22 13:39:17 @fsociety *heavy breathing*
2016-02-22 13:45:00 [13:39]
2016-02-22 13:46:40 NicholasB april round the time of the move.
2016-02-22 13:46:44 NicholasB you know us. we still release
2016-02-22 13:46:50 NicholasB we'll just pre record etc
2016-02-22 13:52:00 [13:46]
2016-02-22 15:16:10 @fsociety https://msys2.github.io/
2016-02-22 15:16:10 [15:16]
2016-02-22 15:16:14 @fsociety a cygwin distro using pacman
2016-02-22 15:16:20 @fsociety i need to try this when i get home
2016-02-22 15:22:00 [15:16]
2016-02-22 16:28:56 - irc: disconnected from server
2016-02-22 16:28:56 [16:28]
2016-02-22 16:35:05 > fsociety (whoami@localhost) has joined ##systemau
2016-02-22 16:35:05 [16:35]
2016-02-22 16:35:05 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-22 16:44:02 - irc: disconnected from server
2016-02-23 01:39:40 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 01:39:40 [01:39]
2016-02-23 01:39:40 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 01:39:49 < root has kicked fsociety (Cleaning up channel)
2016-02-23 01:39:49 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 01:39:49 - Topic for ##systemau is "#systemau"
2016-02-23 01:39:49 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 01:39:49
2016-02-23 01:39:49 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 01:39:49 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 01:39:49 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 01:39:49 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 01:39:49 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 01:39:49 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 01:39:49 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 01:39:49 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 01:39:49 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 01:39:49 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 01:39:49 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 01:39:49 > emb (emb@telegram) has joined ##systemau
2016-02-23 01:39:49 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 01:39:49 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 01:39:49 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 01:39:49 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 01:39:49 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 01:39:49 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 01:39:49 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 01:39:49 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 01:39:49 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 01:39:49 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 01:39:49 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 01:39:49 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 01:39:49 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 01:39:49 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 01:39:49 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 01:39:49 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 01:39:49 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 01:39:49 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 01:39:49 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 01:39:49 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 01:39:49 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 01:39:49 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 01:39:49 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 01:39:49 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 01:39:49 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 01:39:49 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 01:39:49 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 01:39:49 EricT [2016-02-22 17:37:29] Home n chill. yay!
2016-02-23 01:39:49 PaulGleeson [2016-02-22 17:44:11] Morning
2016-02-23 01:39:49 EricT [2016-02-22 17:46:38] Sup, son of Glee!
2016-02-23 01:39:49 PaulGleeson [2016-02-22 17:48:02] Man I wanna go back to bed
2016-02-23 01:39:49 PaulGleeson [2016-02-22 17:48:56] How's your day been @kloinka ?
2016-02-23 01:39:49 EricT [2016-02-22 17:49:19] A classic Monday, survived it OK!
2016-02-23 01:39:49 PaulGleeson [2016-02-22 17:52:36] Good
2016-02-23 01:39:49 LachlanHolmes [2016-02-22 18:00:43] Nicholas B added user Lachlan Holmes by link.
2016-02-23 01:39:49 PaulGleeson [2016-02-22 18:02:42] Welcome
2016-02-23 01:39:49 EricT [2016-02-22 18:03:18] Olla!
2016-02-23 01:39:49 LachlanHolmes [2016-02-22 18:03:35] Hello fellow, aussie linux-ers!
2016-02-23 01:39:49 EricT [2016-02-22 18:04:20] Not all Aussie here, we be internationmal!
2016-02-23 01:39:49 EricT [2016-02-22 18:05:06] Linux Sans Frontières!
2016-02-23 01:39:49 LachlanHolmes [2016-02-22 18:05:18] Oh OK, well cool didn't really think sysau had sway outside of the island.
2016-02-23 01:39:49 PaulGleeson [2016-02-22 18:05:21] Non Aussie here
2016-02-23 01:39:49 EricT [2016-02-22 18:06:13] Im Ausie, shit yeh!
2016-02-23 01:39:49 EricT [2016-02-22 18:06:18] lol
2016-02-23 01:39:49 NicholasB [2016-02-22 18:06:24] hello.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:06:32] actually we have more overseas listeners.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:06:33] oddly.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:06:45] 55/45 split
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:00] unless of course our listeneres are using vpns
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:06] in foreign countries
2016-02-23 01:39:49 LachlanHolmes [2016-02-22 18:07:23] Strangely specific.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:31] i read stats.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:54] now lachlan. i present the following tale of caution to all new users of this group
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:55] turn
2016-02-23 01:39:49 NicholasB [2016-02-22 18:07:59] off notifications
2016-02-23 01:39:49 EricT [2016-02-22 18:08:14] what's the standard deviation?
2016-02-23 01:39:49 NicholasB [2016-02-22 18:08:17] you'll be a nnoyed and your phone will die.
2016-02-23 01:39:49 NicholasB [2016-02-22 18:08:26] BDSM i believe.
2016-02-23 01:39:49 EricT [2016-02-22 18:08:37] Im a non-standard deviate
2016-02-23 01:39:49 LachlanHolmes [2016-02-22 18:09:53] Lol OK. I thought I'd sign up to this and a few other channels for tech security announcements. What's the growth rate in listeners from pod release to pod release?
2016-02-23 01:39:49 NicholasB [2016-02-22 18:11:09] its stalled alittle through xmas. but thats too be expected. but its slowly rising.
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:11:33] <br><img id="3">
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:11:41] Lol
2016-02-23 01:39:51 EricT [2016-02-22 18:11:51] This is not a classic"announcements" kind of channel, more warbly banter
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:12:15] Cool cool.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:12:16] yeah. more like irc but not using legacy technology
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:15:38] I tried to do the whole irc thing but I just couldn't be bothered with the setup with nick servers and stuff.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:16:17] yeah. i find it feel like a chore to have it running. esp on my phone. plus all my non podcast buddies are on it now.
2016-02-23 01:39:51 TristanJames [2016-02-22 18:16:21] I haven't seen anyone use a/s/l on here either.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:16:22] nice and centralised
2016-02-23 01:39:51 NicholasB [2016-02-22 18:16:51] thats because i know you're in ballarat, i know you're up for it and i know you're legal.
2016-02-23 01:39:51 EricT [2016-02-22 18:18:27] can I hook up tinder to telegram?
2016-02-23 01:39:51 NicholasB [2016-02-22 18:18:41] in linux? no.
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:18:41] My friends use a combo of hangouts and signal for EFF style private chats.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:19:05] i never understood the attraction of signal because it still eaves metadata
2016-02-23 01:39:51 NicholasB [2016-02-22 18:19:14] for messages anyway.
2016-02-23 01:39:51 TristanJames [2016-02-22 18:19:16] Snap.
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:27:43] What metadata do you speak of? Signal is just like telegram it seems. If you have two users on signal then by default signal encrypts it. If not it reverts to txt messages. The encrypted message on signal is not sent over a txt message it's a data message rather then a txt. I provide it by 'signalling' someone with out my sim in my phone and they got the message.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:28:34] OK. Then that's my bad. I could have sworn it encrypted text messages like text secure.
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:29:47] Text secure and signal are the same thing. Text secure was rebranded to signal. They didn't change the methodology of encrypted messages when they rebranded. 👍
2016-02-23 01:39:51 NicholasB [2016-02-22 18:30:09] Ahhhhhh. Well there you go.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:30:42] I still thought it was just encrypted on the phone though.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:30:49] But now I know.
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:31:28] The only meta data you could claim the signal sends is ip traffic to a server probably outside of Australia. But telegram would be the same problem as well. 😐
2016-02-23 01:39:51 LachlanHolmes [2016-02-22 18:31:34] NP mate.
2016-02-23 01:39:51 NicholasB [2016-02-22 18:32:41] Yeah exactly. I think where my confusion was is that when I installed it like 4 years ago it fell back to sms
2016-02-23 01:39:51 NicholasB [2016-02-22 18:32:55] I assumed it was just encrypting the SMS.
2016-02-23 01:40:06 Joe [2016-02-22 18:43:56] <br><img id="4">
2016-02-23 01:40:06 Joe [2016-02-22 18:44:30] They clean the tube trains at night so someone drunk that this morning
2016-02-23 01:40:06 Joe [2016-02-22 18:44:44] It's not even 8am
2016-02-23 01:40:06 NicholasB [2016-02-22 18:46:55] They could have been a night shift worker.
2016-02-23 01:40:06 NicholasB [2016-02-22 18:47:09] Having one on the way home.
2016-02-23 01:40:06 Joe [2016-02-22 18:50:01] True
2016-02-23 01:40:06 Joe [2016-02-22 18:50:01] Do you have spesh there?
2016-02-23 01:40:06 NicholasB [2016-02-22 18:50:41] Spesh?
2016-02-23 01:40:06 NicholasB [2016-02-22 18:50:57] Oh that's the beer
2016-02-23 01:40:06 NicholasB [2016-02-22 18:51:07] Nah not that I can tell from the can.
2016-02-23 01:40:06 NicholasB [2016-02-22 18:51:19] We have the green calsberg cans.
2016-02-23 01:40:06 NicholasB [2016-02-22 18:51:33] But no one really drinks it.
2016-02-23 01:40:06 NicholasB [2016-02-22 18:52:26] I like how all anti graffiti chairs are blue with red green and red markings though. World wide.
2016-02-23 01:40:06 Joe [2016-02-22 19:07:10] Spesh is 9%
2016-02-23 01:40:06 NicholasB [2016-02-22 19:08:59] Ahh. Yeah we don't get strong beers in aus as a general rule. It might be a legal thing re: amount of tax.
2016-02-23 01:40:06 EricT [2016-02-22 19:10:14] well im frying up some giblets and hearts!
2016-02-23 01:40:06 NicholasB [2016-02-22 19:11:58] Ewww
2016-02-23 01:40:06 NicholasB [2016-02-22 19:12:06] For the dog I hope.
2016-02-23 01:40:06 EricT [2016-02-22 19:13:01] Chilli n lemon, fuck the dogs!
2016-02-23 01:40:06 NicholasB [2016-02-22 19:14:53] *shudder*
2016-02-23 01:40:06 EricT [2016-02-22 19:16:07] Mediterean thing...
2016-02-23 01:40:06 NicholasB [2016-02-22 19:17:34] Indeed. I mean I know they are in my sausages but they're camoflauged.
2016-02-23 01:40:06 EricT [2016-02-22 19:18:28] I celebrate all the innerds!
2016-02-23 01:40:06 NotDan [2016-02-22 20:35:29] https://www.youtube.com/watch?v=j0SU7hF8xLY
2016-02-23 01:40:06 EricT [2016-02-22 22:14:52] So I was considering getting a Vid card upgrade to a GTX970
2016-02-23 01:40:06 EricT [2016-02-22 22:14:59] or 980 but
2016-02-23 01:40:06 NicholasB [2016-02-22 22:16:38] but what.
2016-02-23 01:40:06 NicholasB [2016-02-22 22:16:39] DOOO IT
2016-02-23 01:40:06 EricT [2016-02-22 22:16:42] I may wait, Nvidia is due to release new Pascal Vid cards in April, so might have to put in my old GTX580 to replace one of my blown 770 and limp till available, the new GPUs look amazeballs!
2016-02-23 01:40:06 NicholasB [2016-02-22 22:16:51] ohhh
2016-02-23 01:40:06 NicholasB [2016-02-22 22:16:54] yeah. fair enough
2016-02-23 01:40:06 EricT [2016-02-22 22:17:15] performance on Pascal looks SUPER!
2016-02-23 01:40:06 EricT [2016-02-22 22:17:30] Quantum leap even!
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:17:36] Poor @F_s0c1ety
2016-02-23 01:40:06 NicholasB [2016-02-22 22:17:45] would that be turbo pascal?
2016-02-23 01:40:06 EricT [2016-02-22 22:17:48] http://wccftech.com/nvidia-gp100-pascal-zauba/
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:17:48] I'll stick with amd
2016-02-23 01:40:06 EricT [2016-02-22 22:18:01] you mad?
2016-02-23 01:40:06 EricT [2016-02-22 22:18:04] lol
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:18:24] No just not running any Linux boxes any more
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:18:28] There all bsd
2016-02-23 01:40:06 EricT [2016-02-22 22:18:36] Voodoo or GTFO
2016-02-23 01:40:06 EricT [2016-02-22 22:19:14] nice name too, GTX1080!
2016-02-23 01:40:06 EricT [2016-02-22 22:20:23] I tried BSD, but wine+Nvidia killed my enthusiam...
2016-02-23 01:40:06 EricT [2016-02-22 22:20:25] alas
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:20:39] I'm on dragonfly
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:20:55] The only os with full skylake support
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:21:09] Your telling me this isn't bleeding?
2016-02-23 01:40:06 EricT [2016-02-22 22:21:22] skylake's gpu
2016-02-23 01:40:06 NicholasB [2016-02-22 22:21:33] if i ever run a server I'll go for it. But as a everyday user I can
2016-02-23 01:40:06 NicholasB [2016-02-22 22:21:39] can't see any benefit
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:21:40] Point stands :P
2016-02-23 01:40:06 EricT [2016-02-22 22:21:52] ditto @F_s0c1ety
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:22:07] I recently got a 970, then oculus announced the minimum for the retail unit. And my mate was egging me to get it cause his VR crazy... But I was like meh, CBF to vr. He was really jelly. Angry jelly :O
2016-02-23 01:40:06 NicholasB [2016-02-22 22:22:33] im annoyed go i have the 960.
2016-02-23 01:40:06 EricT [2016-02-22 22:22:39] Cardboard or GTFO
2016-02-23 01:40:06 NicholasB [2016-02-22 22:22:43] ill still be getting it.
2016-02-23 01:40:06 EricT [2016-02-22 22:23:16] WOW I started a flurry of activity!
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:23:23] Steam support for HTC?
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:23:39] I should do some research on that thing.
2016-02-23 01:40:06 EricT [2016-02-22 22:23:40] Telegram is my soundboard for ideas...lol
2016-02-23 01:40:06 NicholasB [2016-02-22 22:23:43] yup. and steammachine too. so linux in effect
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:23:59] I thought you said furry
2016-02-23 01:40:06 EricT [2016-02-22 22:24:24] furries with tentacles or GTFO!
2016-02-23 01:40:06 NicholasB [2016-02-22 22:25:50] anyone want to buy my corsair k70-rgb
2016-02-23 01:40:06 NicholasB [2016-02-22 22:25:59] im offloading it. too much incompaitiblity
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:26:04] I want a steam controller and steam link so fucking bad it hurts!!! I reckon it's all because valve are valve time plus boycotting AUS from the l4d2 gore mode review rating thingo.
2016-02-23 01:40:06 EricT [2016-02-22 22:26:18] Why @enjayembee ?
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:26:42] Steam controller is great, when it doesn't lock my cpu
2016-02-23 01:40:06 NicholasB [2016-02-22 22:27:04] its not working properly. freezes boot, i cahnge the polling and it will work, but the colours wont. i cahnge it to another poll rate and the keyboard just repeats the same keypress.
2016-02-23 01:40:06 NicholasB [2016-02-22 22:27:13] seems to be after a kernel update.
2016-02-23 01:40:06 NicholasB [2016-02-22 22:27:27] a keyboard shouldnt be a source of consternation.
2016-02-23 01:40:06 EricT [2016-02-22 22:27:31] is it a dual usb?
2016-02-23 01:40:06 NicholasB [2016-02-22 22:27:35] yeah
2016-02-23 01:40:06 EricT [2016-02-22 22:28:22] you are using both ports?
2016-02-23 01:40:06 NicholasB [2016-02-22 22:28:28] yup
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:28:28] I've even thought about a mail forwarder from the USA to get it. Although it seems some aussie valve loving YouTubers have gotten some hardware.
2016-02-23 01:40:06 NicholasB [2016-02-22 22:28:46] got any us buddies?
2016-02-23 01:40:06 LachlanHolmes [2016-02-22 22:29:13] Yes I got friends but they won't forward it for me lol
2016-02-23 01:40:06 NotDan [2016-02-22 22:29:21] I have many US buddies
2016-02-23 01:40:06 EricT [2016-02-22 22:29:22] I had issues with my Ducky at start but that was because of USB KVM, Thje linux doesnt like Emulated Kboard
2016-02-23 01:40:06 NicholasB [2016-02-22 22:31:46] i'll have some more reading in to it. but i've pretty much done with it. i'll loose like 80 bucks out of the deal but i had it for 8 months .
2016-02-23 01:40:06 NicholasB [2016-02-22 22:31:48] ehh happens
2016-02-23 01:40:06 EricT [2016-02-22 22:31:55] repalce KVM with a totally non-emulated one and all is good
2016-02-23 01:40:06 NicholasB [2016-02-22 22:32:30] but it will need the emulation to run the custome software no?
2016-02-23 01:40:06 EricT [2016-02-22 22:40:54] it needs emulation for the shortcut keys, but that is only if behind an "intelligent" kvm
2016-02-23 01:40:06 NicholasB [2016-02-22 22:41:29] hmm. i'll look in to it tomorrow. but if i fail dismally then to the bay of e it goes.
2016-02-23 01:40:06 NicholasB [2016-02-22 22:42:12] to be honest my hundred buck generic cherry mech keybaord is more satisfying to type on.
2016-02-23 01:40:06 PaulGleeson [2016-02-22 22:42:18] hid device or go home
2016-02-23 01:40:06 EricT [2016-02-22 22:42:25] I still have to plug in my ducky and logitech k700 into a win box to program them, but once done they retain settings in flash
2016-02-23 01:40:06 NicholasB [2016-02-22 22:42:53] yeah the corsair remeber one setting but wont cycle with out the software. nor will they animate. just light up
2016-02-23 01:40:06 EricT [2016-02-22 22:43:00] I have 2 classic Cherry blacks with touchpads on them,lol
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:43:00] <br><img id="5">
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:43:18] I really need to change the colour
2016-02-23 01:40:08 NicholasB [2016-02-22 22:43:23] i like the colour.
2016-02-23 01:40:08 NicholasB [2016-02-22 22:43:30] how much did the key caps set you back?
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:43:43] 80 because of postage
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:43:50] 30 on there own
2016-02-23 01:40:08 NicholasB [2016-02-22 22:45:42] well i like em.
2016-02-23 01:40:08 NicholasB [2016-02-22 22:45:57] ill prob go down the simple back lit route and just get some nice custom caps
2016-02-23 01:40:08 EricT [2016-02-22 22:47:23] <br><img id="6">
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:47:45] <br><img id="7">
2016-02-23 01:40:08 NicholasB [2016-02-22 22:47:46] ohhh
2016-02-23 01:40:08 EricT [2016-02-22 22:48:03] <br><img id="8">
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:48:05] I like em big
2016-02-23 01:40:08 EricT [2016-02-22 22:48:19] DUCKY or GTFO!
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:48:36] How very casual
2016-02-23 01:40:08 EricT [2016-02-22 22:49:38] No Macro keys! I hate Macro keys!
2016-02-23 01:40:08 NicholasB [2016-02-22 22:50:26] ha..
2016-02-23 01:40:08 NicholasB [2016-02-22 22:50:35] well
2016-02-23 01:40:08 NicholasB [2016-02-22 22:50:38] its been real people.
2016-02-23 01:40:08 NicholasB [2016-02-22 22:50:51] but i need to get some sleep lest i be as grumpy at work tomorrow as i was today.
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:52:01] No
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:52:05] You started it
2016-02-23 01:40:08 EricT [2016-02-22 22:52:18] Its a school night kids!
2016-02-23 01:40:08 NicholasB [2016-02-22 22:52:18] and i'm ending it.
2016-02-23 01:40:08 NicholasB [2016-02-22 22:52:24] wanna fight about it
2016-02-23 01:40:08 NicholasB [2016-02-22 22:52:40] mano e mano
2016-02-23 01:40:08 EricT [2016-02-22 22:52:42] into your jammies and bed!
2016-02-23 01:40:08 PaulGleeson [2016-02-22 22:52:42] I'd argue but I haven't see blue skies in 5 days
2016-02-23 01:40:08 NicholasB [2016-02-22 22:54:37] put the xp wallper on your bsd machine and stare at the blue.
2016-02-23 01:40:08 EricT [2016-02-22 22:54:49] It's 11O'clock and
2016-02-23 01:40:08 EricT [2016-02-22 22:54:49] http://i.imgur.com/0gISoy2.png
2016-02-23 01:40:08 NicholasB [2016-02-22 22:55:03] fuck. we'll get that tomorrow
2016-02-23 01:40:08 NicholasB [2016-02-22 22:55:06] 39 degrees
2016-02-23 01:40:08 NicholasB [2016-02-22 22:55:10] fucking scorcher
2016-02-23 01:40:08 EricT [2016-02-22 22:55:13] look at Thurs!
2016-02-23 01:40:08 NicholasB [2016-02-22 22:55:35] i thought summer was over. i was wrong.
2016-02-23 01:40:08 EricT [2016-02-22 22:56:18] word.
2016-02-23 01:40:08 NotDan [00:37:30] Y'all bette realise there be no better ways to get yo' kicks. Westside, aii'te
2016-02-23 01:40:08 PaulGleeson [00:42:45] Naw mate ur wrong
2016-02-23 01:40:08 NotDan [00:42:57] For real?
2016-02-23 01:40:08 PaulGleeson [00:44:00] Ya mate u wrong
2016-02-23 01:40:08 NotDan [00:44:22] <br><img id="9">
2016-02-23 01:40:08 NotDan [00:46:18] <br><img id="10">
2016-02-23 01:40:08 PaulGleeson [00:46:47] All the Louie's
2016-02-23 01:40:08 NotDan [00:46:47] I fucking love Louie
2016-02-23 01:40:08 PaulGleeson [00:46:55] Who doesn't
2016-02-23 01:40:08 NotDan [00:47:05] WHo knows
2016-02-23 01:40:08 NotDan [00:47:08] But theyre wrong
2016-02-23 01:40:08 NotDan [00:47:22] It's one of the *best* things I've ever seen
2016-02-23 01:46:00 [01:40]
2016-02-23 02:11:13 PaulGleeson Today is definitely monday
2016-02-23 02:11:13 [02:11]
2016-02-23 02:11:42 PaulGleeson 3 hours to upload a giant ova and it gets currupted
2016-02-23 02:14:22 PaulGleeson OK retry took 3 minutes, internet is behaving
2016-02-23 02:20:00 [02:14]
2016-02-23 04:13:13 - irc: disconnected from server
2016-02-23 04:13:13 [04:13]
2016-02-23 04:13:32 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 04:13:32 [04:13]
2016-02-23 04:13:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 05:27:45 < root has kicked fsociety (Cleaning up channel)
2016-02-23 05:27:45 [05:27]
2016-02-23 05:27:45 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 05:27:45 - Topic for ##systemau is "#systemau"
2016-02-23 05:27:45 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 05:27:45
2016-02-23 05:27:45 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 05:27:45 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 05:27:45 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 05:27:45 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 05:27:45 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 05:27:45 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 05:27:45 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 05:27:45 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 05:27:45 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 05:27:45 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 05:27:45 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 05:27:45 > emb (emb@telegram) has joined ##systemau
2016-02-23 05:27:45 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 05:27:45 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 05:27:45 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 05:27:45 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 05:27:45 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 05:27:45 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 05:27:45 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 05:27:45 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 05:27:45 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 05:27:45 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 05:27:45 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 05:27:45 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 05:27:45 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 05:27:45 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 05:27:45 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 05:27:45 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 05:27:45 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 05:27:45 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 05:27:45 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 05:27:45 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 05:27:45 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 05:27:45 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 05:27:45 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 05:27:45 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 05:27:45 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 05:27:45 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 05:27:45 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 05:27:45 Moritz How many german listeners?
2016-02-23 05:34:23 @fsociety none at all :)
2016-02-23 05:38:44 Moritz If it is just one, try to get my pi on port 2222 🐙
2016-02-23 05:42:15 Moritz BTW: do you need to truncate ip addresses in logs? By EU privacy law you can't save whole IP addresses in e.g. your apache access_log. That's why it is a pain to setup Google Analytics lawfully. If you use the FOSS analytics software PIWIK you can just press a button to conform with EU privacy law. So handy. FOSS FTW
2016-02-23 05:42:41 Moritz *In Austrlia
2016-02-23 05:48:00 [05:42]
2016-02-23 05:51:37 - irc: disconnected from server
2016-02-23 05:51:50 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 05:51:50 [05:51]
2016-02-23 05:51:50 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 06:32:47 < root has kicked fsociety (Cleaning up channel)
2016-02-23 06:32:47 [06:32]
2016-02-23 06:32:47 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 06:32:47 - Topic for ##systemau is "#systemau"
2016-02-23 06:32:47 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 06:32:47
2016-02-23 06:32:47 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 06:32:47 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 06:32:47 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 06:32:47 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 06:32:47 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 06:32:47 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 06:32:47 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 06:32:47 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 06:32:47 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 06:32:47 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 06:32:47 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 06:32:47 > emb (emb@telegram) has joined ##systemau
2016-02-23 06:32:47 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 06:32:47 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 06:32:47 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 06:32:47 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 06:32:47 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 06:32:47 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 06:32:47 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 06:32:47 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 06:32:47 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 06:32:47 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 06:32:47 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 06:32:47 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 06:32:47 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 06:32:47 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 06:32:47 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 06:32:47 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 06:32:47 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 06:32:47 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 06:32:47 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 06:32:47 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 06:32:47 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 06:32:47 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 06:32:47 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 06:32:47 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 06:32:47 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 06:32:47 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 06:32:47 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 06:32:47 PaulGleeson Man them Austrian laws
2016-02-23 06:33:08 PaulGleeson You would be surprised how often ye are mentioned in work
2016-02-23 06:39:00 [06:33]
2016-02-23 07:06:57 - irc: disconnected from server
2016-02-23 07:06:57 [07:06]
2016-02-23 08:50:41 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 08:50:41 [08:50]
2016-02-23 08:50:41 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 08:50:43 < root has kicked fsociety (Cleaning up channel)
2016-02-23 08:50:43 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 08:50:43 - Topic for ##systemau is "#systemau"
2016-02-23 08:50:43 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 08:50:43
2016-02-23 08:50:43 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 08:50:43 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 08:50:43 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 08:50:43 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 08:50:43 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 08:50:43 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 08:50:43 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 08:50:43 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 08:50:43 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 08:50:43 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 08:50:43 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 08:50:43 > emb (emb@telegram) has joined ##systemau
2016-02-23 08:50:43 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 08:50:43 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 08:50:43 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 08:50:43 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 08:50:43 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 08:50:43 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 08:50:43 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 08:50:43 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 08:50:43 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 08:50:43 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 08:50:43 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 08:50:43 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 08:50:43 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 08:50:43 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 08:50:43 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 08:50:43 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 08:50:43 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 08:50:43 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 08:50:43 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 08:50:43 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 08:50:43 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 08:50:43 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 08:50:43 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 08:50:43 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 08:50:43 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 08:50:43 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 08:50:43 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 08:50:43 NicholasB [07:15:07] @lightonflux I don't see the IPs directly. Libsyn just gives me geographic locations. The last episode had 5 percent of our downloads (round about) from Germany.
2016-02-23 08:50:43 PaulGleeson [08:06:38] Do ye have 20 downloads
2016-02-23 08:50:43 NicholasB [08:07:56] some episode 21 downloads.
2016-02-23 08:50:43 NicholasB [08:08:00] that's good isn't it
2016-02-23 08:50:43 NicholasB [08:08:13] that's like world famous level right?
2016-02-23 08:50:43 PaulGleeson [08:09:04] Its cool thought and ye continue to improve
2016-02-23 08:50:43 NicholasB [08:09:56] we might get 30 dls per episode by the years end.
2016-02-23 08:50:43 NicholasB [08:10:16] I just got to work an hour ago but it feels like a lifetime.
2016-02-23 08:50:43 Moritz [08:30:53] https://www.youtube.com/watch?v=jBv_rgAVh4Q
2016-02-23 08:50:47 - Mode ##systemau [+t]
2016-02-23 08:56:00 [08:50]
2016-02-23 08:59:08 - irc: disconnected from server
2016-02-23 08:59:11 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 08:59:11 [08:59]
2016-02-23 08:59:11 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 09:23:34 < root has kicked fsociety (Cleaning up channel)
2016-02-23 09:23:34 [09:23]
2016-02-23 09:23:34 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 09:23:34 - Topic for ##systemau is "#systemau"
2016-02-23 09:23:34 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 09:23:34
2016-02-23 09:23:34 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 09:23:34 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 09:23:34 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 09:23:34 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 09:23:34 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 09:23:34 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 09:23:34 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 09:23:34 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 09:23:34 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 09:23:34 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 09:23:34 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 09:23:34 > emb (emb@telegram) has joined ##systemau
2016-02-23 09:23:34 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 09:23:34 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 09:23:34 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 09:23:34 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 09:23:34 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 09:23:34 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 09:23:34 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 09:23:34 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 09:23:34 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 09:23:34 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 09:23:34 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 09:23:34 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 09:23:34 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 09:23:34 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 09:23:34 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 09:23:34 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 09:23:34 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 09:23:34 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 09:23:34 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 09:23:34 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 09:23:34 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 09:23:34 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 09:23:34 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 09:23:34 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 09:23:34 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 09:23:34 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 09:23:34 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 09:23:34 NicholasB that was so good i shared it with my family.
2016-02-23 09:28:52 PaulGleeson Tis mental
2016-02-23 09:28:53 MartinWimpress Right serious coding needed. @popeydc, err I mean Mycroft (I'm so confused) play AC/DC on Spotify please.
2016-02-23 09:29:38 PaulGleeson Get back to work
2016-02-23 09:29:48 MartinWimpress Wat dat?
2016-02-23 09:30:46 MartinWimpress I started the testing with Steam. See you in a couple of days. That needs some serious testing.
2016-02-23 09:35:12 EricT Installed the Alpha2 16.04 Mate, I wonder if it has a backdoor?
2016-02-23 09:35:46 @fsociety backdoor into *cough* Mark
2016-02-23 09:37:18 MartinWimpress Back door. We are not fuck mothering Mint! 😍
2016-02-23 09:37:33 EricT Lolz, its looking good, gold star to @wimpress 🎖
2016-02-23 09:38:15 MartinWimpress I'd just like to add, with a touch of modesty, Ubuntu MATE 16.04 Beta 1 is the cat pyjamas.
2016-02-23 09:38:42 MartinWimpress Welcome is all kinds of brilliant now.
2016-02-23 09:38:42 [09:38]
2016-02-23 09:39:01 EricT It's got confetti!
2016-02-23 09:41:19 MartinWimpress @kloinka You running an upto date copy?
2016-02-23 09:47:00 [09:41]
2016-02-23 09:47:48 NicholasB actual martin i had a quick google and found nothing but i tried a 16.04 install (Ubuntu not mate) last night and if just hands on disk encryption section of installation, you heard anything. I had heard and issue about password screen on boot but this was during installation.
2016-02-23 09:48:05 NicholasB fuck
2016-02-23 09:48:11 NicholasB *it just hangs on
2016-02-23 09:54:00 [09:48]
2016-02-23 09:55:23 NicholasB tbf it was the alpha 2.
2016-02-23 09:55:28 NicholasB ill download beta 1 tonight.
2016-02-23 09:56:11 MartinWimpress Beta 1 isn't out till Thursday.
2016-02-23 09:59:48 @fsociety what is this ubuntu you speak of
2016-02-23 10:02:16 NicholasB oh
2016-02-23 10:02:32 NicholasB ill download it Thursday then. as you mentioned it i thought i twas out. :P
2016-02-23 10:03:05 NicholasB it fucking hilarious dude. get this you can run software with out having to compile it from source.
2016-02-23 10:04:50 @fsociety what is thing you call pre-compiled?
2016-02-23 10:04:51 @fsociety ;)
2016-02-23 10:08:23 - irc: disconnected from server
2016-02-23 10:11:14 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 10:11:14 [10:11]
2016-02-23 10:11:14 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 10:11:43 < root has kicked fsociety (Cleaning up channel)
2016-02-23 10:11:43 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 10:11:43 - Topic for ##systemau is "#systemau"
2016-02-23 10:11:43 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 10:11:43
2016-02-23 10:11:43 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 10:11:43 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 10:11:43 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 10:11:43 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 10:11:43 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 10:11:43 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 10:11:43 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 10:11:43 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 10:11:43 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 10:11:43 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 10:11:43 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 10:11:43 > emb (emb@telegram) has joined ##systemau
2016-02-23 10:11:43 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 10:11:43 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 10:11:43 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 10:11:43 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 10:11:43 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 10:11:43 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 10:11:43 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 10:11:43 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 10:11:43 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 10:11:43 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 10:11:43 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 10:11:43 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 10:11:43 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 10:11:43 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 10:11:43 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 10:11:43 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 10:11:43 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 10:11:43 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 10:11:43 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 10:11:43 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 10:11:43 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 10:11:43 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 10:11:43 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 10:11:43 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 10:11:43 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 10:11:43 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 10:11:43 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 10:11:43 MartinWimpress [10:09:46] <br><img id="4">
2016-02-23 10:11:43 MartinWimpress [10:09:59] Yes, that's a top menu.
2016-02-23 10:11:43 MartinWimpress [10:10:05] Yes, that Ubuntu MATE.
2016-02-23 10:13:57 @fsociety i want Ubuntu BSPWM
2016-02-23 10:13:58 @fsociety haha
2016-02-23 10:14:04 @fsociety or Ubuntu WMUTILS
2016-02-23 10:20:00 [10:14]
2016-02-23 10:20:10 NicholasB wait. so mate is being styled on unity now?
2016-02-23 10:20:32 NicholasB is there a MUNITY coming?
2016-02-23 10:20:54 LachlanHolmes i'd say it's one of the many presets that martin likes to include in the settings
2016-02-23 10:21:17 LachlanHolmes like redmond and cupertino
2016-02-23 10:22:01 NicholasB im not sure if i mentioned it on a show but i had a far too accurate xp theme on cinnamon one day
2016-02-23 10:22:03 NicholasB it was scary
2016-02-23 10:23:31 LachlanHolmes <br><img id="5">
2016-02-23 10:23:31 LachlanHolmes i just did a google image search for xenial xerus and found this image and thought, it was win 10 for a second :P
2016-02-23 10:24:18 LachlanHolmes but the start menu is not exactly a cc of win 10 but it's scary close.
2016-02-23 10:24:40 NicholasB i haven't used 10 yet.
2016-02-23 10:29:33 MartinWimpress Mutiny is a new panel layout.
2016-02-23 10:29:33 LachlanHolmes got it at work and here... only recently got a dual boot setup (2x ssds) for my gaming pc. Otherwise i use antergos for a systen76 lappy and ubuntu mate on my older Lenovo ( actually running the 16.04 alpha) :)
2016-02-23 10:29:54 MartinWimpress @dibZr Speaks the truth, it is activated via MATE Tweak.
2016-02-23 10:30:10 MartinWimpress But that top menu can be freely used in any panel.
2016-02-23 10:30:23 MartinWimpress Imagine that customisation 😉
2016-02-23 10:30:55 MartinWimpress And the dock, you can plonk it where you like 😮
2016-02-23 10:31:24 EricT Sorry at work, @wimpress downloaded alpha 2 from the buntus last night...
2016-02-23 10:32:25 LachlanHolmes @wimpress question for you, if you don't mind. Have you decided on a default launcher ( like gnome do or synapse or something) or really haven't found a good enough one for the task?
2016-02-23 10:38:00 [10:32]
2016-02-23 10:44:02 MartinWimpress @dibZr Awkward.
2016-02-23 10:44:27 MartinWimpress I favoured Synapse until it started segfaulting it pants in November last year 😞
2016-02-23 10:44:45 MartinWimpress So I've built a PPA for Albert. I like it, but it is not quite ready ready.
2016-02-23 10:45:08 MartinWimpress https://launchpad.net/~flexiondotorg/+archive/ubuntu/albert
2016-02-23 10:45:15 MartinWimpress But ALbert is shaping up nicely.
2016-02-23 10:45:21 LachlanHolmes LOOOL for a split second there i thought 'Awkward' was a new launcher i didn't know about :P
2016-02-23 10:45:36 MartinWimpress GNOME Do looks nice, but doesn't integrate with MATE.
2016-02-23 10:45:44 MartinWimpress Then there is Kupfer.
2016-02-23 10:45:51 MartinWimpress Which is dead upstream.
2016-02-23 10:46:15 MartinWimpress Most likely we will fork Kupfer and modernise it.
2016-02-23 10:46:25 MartinWimpress But that will not happen into for 16.04 😞
2016-02-23 10:46:27 LachlanHolmes ok cool cool, so don't expect a laucher for 16.04...
2016-02-23 10:46:40 LachlanHolmes thats fine thanks for answering
2016-02-23 10:46:44 MartinWimpress But we will back port it for 16.04 during the 16.10 development cycle.
2016-02-23 10:47:10 MartinWimpress If Synapse get fixed, I spoke with th dev earlier today, it is a shoe in.
2016-02-23 10:47:22 MartinWimpress Failing that, we will do something else in 16.10.
2016-02-23 10:47:54 MartinWimpress Back story, I added MATE compatibility to everywhere it is need to Synapse.
2016-02-23 10:48:03 MartinWimpress So if it works, it fully integrates.
2016-02-23 10:50:09 LachlanHolmes :) yeah im currntly using synapse with a config edit to make it work with the super key. for some werid reason in the config gui when you go to set the super key as the hotkey it doesn't detect it. 😐
2016-02-23 10:50:21 LachlanHolmes anyway thanks for the info.
2016-02-23 10:52:35 @fsociety systemau website on a minimal browser :)
2016-02-23 10:52:35 @fsociety https://u.teknik.io/A5FjE.png
2016-02-23 10:53:44 NicholasB i like that you need to read a how too on taking a screen shot.
2016-02-23 10:53:44 [10:53]
2016-02-23 10:53:45 NicholasB ;)
2016-02-23 10:56:59 @fsociety it was more so on how to take a screenshot of a window
2016-02-23 10:57:08 @fsociety i never do that usually
2016-02-23 10:57:13 @fsociety i didn't realise gimp had that functionality
2016-02-23 10:57:52 LachlanHolmes what's the browser?
2016-02-23 10:58:03 @fsociety qutebrowser
2016-02-23 10:58:16 @fsociety a browser designed if you love vim :)
2016-02-23 10:58:25 @fsociety well you don't have to use it like vim, but it is recommended
2016-02-23 10:58:47 NicholasB ive been looking at custom key caps. saw a vim set and thought of you.
2016-02-23 11:03:29 - irc: disconnected from server
2016-02-23 11:03:32 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 11:03:32 [11:03]
2016-02-23 11:03:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 11:06:53 < root has kicked fsociety (Cleaning up channel)
2016-02-23 11:06:53 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 11:06:53 - Topic for ##systemau is "#systemau"
2016-02-23 11:06:53 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 11:06:53
2016-02-23 11:06:53 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 11:06:53 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 11:06:53 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 11:06:53 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 11:06:53 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 11:06:53 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 11:06:53 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 11:06:53 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 11:06:53 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 11:06:53 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 11:06:53 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 11:06:53 > emb (emb@telegram) has joined ##systemau
2016-02-23 11:06:53 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 11:06:53 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 11:06:53 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 11:06:53 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 11:06:53 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 11:06:53 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 11:06:53 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 11:06:53 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 11:06:53 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 11:06:53 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 11:06:53 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 11:06:53 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 11:06:53 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 11:06:53 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 11:06:53 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 11:06:53 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 11:06:53 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 11:06:53 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 11:06:53 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 11:06:53 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 11:06:53 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 11:06:53 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 11:06:53 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 11:06:53 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 11:06:53 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 11:06:53 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 11:06:53 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 11:06:53 AlanPope Moo
2016-02-23 11:08:50 NicholasB Moo back atcha.
2016-02-23 11:08:58 NicholasB Sup Mr Pope.
2016-02-23 11:10:32 AlanPope Word
2016-02-23 11:10:46 AlanPope 1am. Time for sleeps
2016-02-23 11:11:03 AlanPope Oh! Hello alarm in 4 hours
2016-02-23 11:11:06 AlanPope Nn
2016-02-23 11:17:00 [11:11]
2016-02-23 11:17:34 NicholasB night.
2016-02-23 11:23:00 [11:17]
2016-02-23 11:34:28 @fsociety here is my work pc, been tweaking qutebrowser in the quiet moments
2016-02-23 11:34:29 @fsociety https://u.teknik.io/q0KrR.png
2016-02-23 11:36:13 NicholasB nice.
2016-02-23 11:37:31 - irc: disconnected from server
2016-02-23 11:37:35 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 11:37:35 [11:37]
2016-02-23 11:37:35 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 11:48:11 < root has kicked fsociety (Cleaning up channel)
2016-02-23 11:48:11 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 11:48:11 - Topic for ##systemau is "#systemau"
2016-02-23 11:48:11 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 11:48:11
2016-02-23 11:48:11 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 11:48:11 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 11:48:11 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 11:48:11 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 11:48:11 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 11:48:11 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 11:48:11 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 11:48:11 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 11:48:11 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 11:48:11 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 11:48:11 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 11:48:11 > emb (emb@telegram) has joined ##systemau
2016-02-23 11:48:11 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 11:48:11 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 11:48:11 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 11:48:11 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 11:48:11 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 11:48:11 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 11:48:11 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 11:48:11 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 11:48:11 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 11:48:11 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 11:48:11 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 11:48:11 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 11:48:11 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 11:48:11 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 11:48:11 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 11:48:11 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 11:48:11 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 11:48:11 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 11:48:11 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 11:48:11 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 11:48:11 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 11:48:11 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 11:48:11 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 11:48:11 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 11:48:11 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 11:48:11 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 11:48:11 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 11:48:11 NicholasB it just clicked withme that keyboard layout isn't locked at work anymore.
2016-02-23 11:48:23 NicholasB think i might be moving back to dvorak full time. ;)
2016-02-23 11:48:42 @fsociety you should go dvorak but then put it backwards
2016-02-23 11:54:00 [11:48]
2016-02-23 12:20:16 Sean Gold stars again for you good sir!
2016-02-23 12:20:16 [12:20]
2016-02-23 12:33:07 NicholasB karovd?
2016-02-23 12:36:59 @fsociety seems station st in fairfield is on fire
2016-02-23 12:36:59 [12:36]
2016-02-23 12:37:18 @fsociety smoke pushing into our house, my gf had to take the cats out of our house and they are currently in our car
2016-02-23 12:37:22 @fsociety my poor pc
2016-02-23 12:37:24 @fsociety no smoke for pc
2016-02-23 12:37:27 @fsociety NO SMOKE
2016-02-23 12:38:21 NicholasB ehh your pc will be fine.
2016-02-23 12:43:40 * fsociety pats pc
2016-02-23 12:43:46 @fsociety im more worried about our cats
2016-02-23 12:43:47 @fsociety poor thigns
2016-02-23 12:45:04 NicholasB i hope the aircon is on in the car.
2016-02-23 12:45:09 NicholasB its fucking hot out there.
2016-02-23 12:45:38 @fsociety it is
2016-02-23 12:45:56 @fsociety my cli weather app warned me of this day.. hahaha
2016-02-23 12:46:38 LachlanHolmes OK, lunch break over. Back to learning python. :)
2016-02-23 12:52:00 [12:46]
2016-02-23 12:52:00 NicholasB I'm cooking a mini roast in the work kitchen.
2016-02-23 12:52:14 NicholasB Only 35 minutes to nom nom nom.
2016-02-23 12:54:57 LachlanHolmes wow thats like alot of effort for a meal at work:P
2016-02-23 12:55:31 NicholasB its not really. i throw in mini potatoes whole cut a carrot in to for and wrap a chiken breast in foil . leave it in the over.
2016-02-23 12:55:39 NicholasB making a sandwich would literally take longer to prep
2016-02-23 12:55:45 NicholasB *oven
2016-02-23 12:56:48 LachlanHolmes guess if its a "SANDVICH" or a vegimite sandwich.
2016-02-23 12:57:17 NicholasB ha. yeah maybe not that. a salda and vege sandwich.
2016-02-23 12:57:24 NicholasB with ham. that takes longer
2016-02-23 12:58:28 NicholasB also. i have a chuck of down time.
2016-02-23 12:58:33 NicholasB *chunk
2016-02-23 12:59:09 - irc: disconnected from server
2016-02-23 20:03:28 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 20:03:28 [20:03]
2016-02-23 20:03:28 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 20:03:33 < root has kicked fsociety (Cleaning up channel)
2016-02-23 20:03:33 > fsociety (whoami@localhost) has joined ##systemau
2016-02-23 20:03:33 - Topic for ##systemau is "#systemau"
2016-02-23 20:03:33 - Topic set by root (root@localhost) on Tue, 23 Feb 2016 20:03:33
2016-02-23 20:03:33 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-23 20:03:33 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-23 20:03:33 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-23 20:03:33 > Adam (Adam@telegram) has joined ##systemau
2016-02-23 20:03:33 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-23 20:03:33 > Amir (Amir@telegram) has joined ##systemau
2016-02-23 20:03:33 > Angela (Angela@telegram) has joined ##systemau
2016-02-23 20:03:33 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-23 20:03:33 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-23 20:03:33 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-23 20:03:33 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-23 20:03:33 > emb (emb@telegram) has joined ##systemau
2016-02-23 20:03:33 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-23 20:03:33 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-23 20:03:33 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-23 20:03:33 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-23 20:03:33 > Joe (Joe@telegram) has joined ##systemau
2016-02-23 20:03:33 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-23 20:03:33 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-23 20:03:33 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-23 20:03:33 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-23 20:03:33 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-23 20:03:33 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-23 20:03:33 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-23 20:03:33 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-23 20:03:33 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-23 20:03:33 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-23 20:03:33 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-23 20:03:33 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-23 20:03:33 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-23 20:03:33 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-23 20:03:33 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-23 20:03:33 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-23 20:03:33 > Sean (Sean@telegram) has joined ##systemau
2016-02-23 20:03:33 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-23 20:03:33 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-23 20:03:33 > Tom (Tom@telegram) has joined ##systemau
2016-02-23 20:03:33 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-23 20:03:33 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-23 20:03:33 LachlanHolmes [12:59:30] i'm sure there would be a exponential scale that logs time spent over number of diffenent fillings....
2016-02-23 20:03:33 LachlanHolmes [13:00:20] yeah my work is strange.. i work 12 hour shifts. day or night. so i get huge chunks of nothing to do time.
2016-02-23 20:03:33 LachlanHolmes [13:00:42] different* fillings.
2016-02-23 20:03:33 NicholasB [13:01:06] oh no. how will you compile remotely now?
2016-02-23 20:03:33 LachlanHolmes [13:01:39] Make a VPS do it?
2016-02-23 20:03:33 NicholasB [13:01:50] you have a decent kitchen. i used to cook stews / curries at the trainstation i worked at
2016-02-23 20:03:33 LachlanHolmes [13:03:58] @enjayembee Yeah its not a bad kitchen actaully the most fancy thing i've done is cooked snags @ 3am for "lunch".
2016-02-23 20:03:33 NicholasB [13:05:27] what line of work are you involved in Lachlan?
2016-02-23 20:03:33 LachlanHolmes [13:07:30] I work at a datacentre. A NOC actually, along with like batch processing on old banking systems and you know general IT Janitor stuff around the DC.. only been at the place for like 4 months so far. how about yourself?
2016-02-23 20:03:33 NicholasB [13:08:29] Some sort of Railway fault aggregator and translator
2016-02-23 20:03:33 NicholasB [13:08:46] i take infrastructure faults and explain them to non techy managers
2016-02-23 20:03:33 LachlanHolmes [13:10:23] *** Points Wildy at the screen *** "SEE DIS BITCH?!?! It's broken!" *** Points at managers *** "Fix it-itch!"
2016-02-23 20:03:33 NicholasB [13:10:48] pretty much.
2016-02-23 20:03:33 NicholasB [13:10:52] but over a phone.
2016-02-23 20:03:33 LachlanHolmes [13:12:03] do you enjoy it / Is it interesting?
2016-02-23 20:03:33 LachlanHolmes [13:12:24] or cause its railway stuff it super time pressured.
2016-02-23 20:03:33 NicholasB [13:13:05] it's boring. i stare a lot. and i do stuff the day after it happens so its not time sensitive.
2016-02-23 20:03:33 LachlanHolmes [13:16:06] ohhh ok so you get like the issues from the previous day's work and then you need to dumb it down for the people so they can feel comfortable in themselves that they can repeat it at the next meeting and justify there wages? /s
2016-02-23 20:03:33 LachlanHolmes [13:16:06]
2016-02-23 20:03:33 LachlanHolmes [13:16:06] kinda-yah-nah?
2016-02-23 20:03:33 NicholasB [13:18:01] Exactly.
2016-02-23 20:03:40 NicholasB [13:18:17] <br><img id="2">
2016-02-23 20:03:40 LachlanHolmes [13:29:53] Tasty.
2016-02-23 20:03:40 NicholasB [13:33:14] its was!
2016-02-23 20:05:03 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:05:03 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-02-23 20:11:00 [20:05]
2016-02-24 00:31:06 - irc: disconnected from server
2016-02-24 00:31:06 [00:31]
2016-02-24 00:43:29 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:43:29 [00:43]
2016-02-24 00:43:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:47:42 - irc: disconnected from server
2016-02-24 00:48:51 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:48:51 [00:48]
2016-02-24 00:48:51 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:48:55 - irc: disconnected from server
2016-02-24 00:49:46 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:49:46 [00:49]
2016-02-24 00:49:46 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:49:55 - irc: disconnected from server
2016-02-24 00:50:20 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:50:20 [00:50]
2016-02-24 00:50:20 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:50:35 - irc: disconnected from server
2016-02-24 00:51:37 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:51:37 [00:51]
2016-02-24 00:51:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:51:40 - irc: disconnected from server
2016-02-24 00:51:46 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 00:51:46 [00:51]
2016-02-24 00:51:46 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 00:51:49 - irc: disconnected from server
2016-02-24 01:17:21 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 01:17:21 [01:17]
2016-02-24 01:17:21 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 01:17:26 - irc: disconnected from server
2016-02-24 01:18:12 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 01:18:12 [01:18]
2016-02-24 01:18:12 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 07:22:47 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 07:22:47 [07:22]
2016-02-24 07:22:47 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 07:22:49 - irc: disconnected from server
2016-02-24 07:22:55 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 07:22:55 [07:22]
2016-02-24 07:22:55 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 07:24:38 < root has kicked fsociety (Cleaning up channel)
2016-02-24 07:24:38 > fsociety (whoami@localhost) has joined ##systemau
2016-02-24 07:24:38 - Topic for ##systemau is "#systemau"
2016-02-24 07:24:38 - Topic set by root (root@localhost) on Wed, 24 Feb 2016 07:24:38
2016-02-24 07:24:38 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-24 07:24:38 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-24 07:24:38 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-24 07:24:38 > Adam (Adam@telegram) has joined ##systemau
2016-02-24 07:24:38 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-24 07:24:38 > Amir (Amir@telegram) has joined ##systemau
2016-02-24 07:24:38 > Angela (Angela@telegram) has joined ##systemau
2016-02-24 07:24:38 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-24 07:24:38 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-24 07:24:38 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-24 07:24:38 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-24 07:24:38 > emb (emb@telegram) has joined ##systemau
2016-02-24 07:24:38 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-24 07:24:38 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-24 07:24:38 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-24 07:24:38 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-24 07:24:38 > Joe (Joe@telegram) has joined ##systemau
2016-02-24 07:24:38 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-24 07:24:38 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-24 07:24:38 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-24 07:24:38 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-24 07:24:38 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-24 07:24:38 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-24 07:24:38 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-24 07:24:38 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-24 07:24:38 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-24 07:24:38 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-24 07:24:38 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-24 07:24:38 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-24 07:24:38 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-24 07:24:38 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-24 07:24:38 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-24 07:24:38 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-24 07:24:38 > Sean (Sean@telegram) has joined ##systemau
2016-02-24 07:24:38 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-24 07:24:38 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-24 07:24:38 > Tom (Tom@telegram) has joined ##systemau
2016-02-24 07:24:38 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-24 07:24:38 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-24 07:24:38 Joe Burn
2016-02-24 07:27:10 NicholasB lol. there site is pretty heavy.
2016-02-24 07:27:25 NicholasB *their
2016-02-24 07:27:31 PaulGleeson Did you get to work yet nick(
2016-02-24 07:27:47 NicholasB yup
2016-02-24 07:28:04 NicholasB 15 mins alte
2016-02-24 07:28:18 PaulGleeson Shite
2016-02-24 07:29:14 NicholasB all good. ill just hang back 15 minutes.
2016-02-24 07:29:28 NicholasB i'm taking tomorrow off so today has an air of cbf.
2016-02-24 07:29:44 NicholasB I even decided to wear shorts and a tshirt because fuck collars and slacks.
2016-02-24 07:34:35 LachlanHolmes Morning all.
2016-02-24 07:34:55 PaulGleeson Morning @dibZr
2016-02-24 07:37:43 NicholasB morning!
2016-02-24 07:43:00 [07:37]
2016-02-24 08:02:13 MartinWimpress Duck! Spam, incoming...
2016-02-24 08:02:13 [08:02]
2016-02-24 08:02:16 MartinWimpress https://photos.google.com/share/AF1QipOzHonm7arNuNgPlqbqXJTFasclMUOQ6IGftQ3QyK4KVQT10waaGU_qTwJn-nAMAg?key=RkliS2twVy0xS2t2MDh4emRpTGo0dFJOWHJNWmt3
2016-02-24 08:02:35 MartinWimpress Entroware Apollo is getting a first impression on Unplugged tonight.
2016-02-24 08:02:47 MartinWimpress @enjayembee You can ban me now 😉
2016-02-24 08:03:05 MartinWimpress Or, just remeber the first place I posted about Mutiny, was here 😊
2016-02-24 08:03:45 MartinWimpress Yeah.
2016-02-24 08:04:05 MartinWimpress This is the sort of thing you should do for your website.
2016-02-24 08:04:49 NicholasB I could never ban you..
2016-02-24 08:05:09 LachlanHolmes Is the Apollo the purism lappy with the bugs ironed out?
2016-02-24 08:05:13 MartinWimpress 💋
2016-02-24 08:05:19 MartinWimpress Pah.
2016-02-24 08:05:30 MartinWimpress The Apollo is made by Entroware.
2016-02-24 08:05:42 MartinWimpress It is a 13.3" Ultrabook.
2016-02-24 08:06:15 MartinWimpress i7 Skylake, multitouch trackpad, SSD and HDD Iris graphics, 1080p.
2016-02-24 08:07:01 NicholasB nice. I wish my laptop would die so I could justify a new one.
2016-02-24 08:08:35 LachlanHolmes Sounds like a upgraded version of my galago ultrapro.
2016-02-24 08:10:12 LachlanHolmes I was saddened to find out after the trouble of cost of shipping and us only power plug, that it was just a rebranded clevo laptop.
2016-02-24 08:13:38 LachlanHolmes None the less it's a pretty lappy.
2016-02-24 08:19:00 [08:13]
2016-02-24 09:11:02 @fsociety where is my systemau episode. hahaha
2016-02-24 09:11:02 [09:11]
2016-02-24 09:11:50 PaulGleeson Where is the installer for your desktop?
2016-02-24 09:12:49 NicholasB next Tuesday.
2016-02-24 09:13:02 NicholasB see you next Tuesday!
2016-02-24 09:14:01 @fsociety i'm so impatient
2016-02-24 09:14:02 @fsociety ;)
2016-02-24 09:14:33 NicholasB well you have to wait one day longer than usuall due to us release three eps this month and blowing our upload
2016-02-24 09:19:50 @fsociety i'll blow your upload ;)
2016-02-24 09:20:43 NicholasB *shudder*
2016-02-24 09:20:59 @fsociety hahahahaha
2016-02-24 09:21:06 @fsociety i love taking it one step too far
2016-02-24 09:27:00 [09:21]
2016-02-24 09:29:01 PaulGleeson Cool
2016-02-24 09:31:16 Sean I don't think I could ever justify getting a new laptop. Prob cause I never have a need for anything that new.
2016-02-24 09:32:12 Joe wttr.in
2016-02-24 09:32:40 MartinWimpress Joe, I like that 😊
2016-02-24 09:32:50 Sean Plus I like to take older ones people think are junk and then make them shine. Always like the shock look on their face.
2016-02-24 09:33:38 NicholasB More like De-Preston
2016-02-24 09:33:51 Sean Very cool @JoeRess !
2016-02-24 09:33:53 NicholasB https://www.youtube.com/watch?v=1NVOawOXxSA
2016-02-24 09:34:23 NicholasB That's always fun too. I just haven't notice my current laptop getting anyslower and its 4 years old.
2016-02-24 09:35:02 Sean Mine is eight. Only really need to replace battery. Ubuntu MATE has give my lappy new life.
2016-02-24 09:35:18 @fsociety i have had to deal with an amd 5800+ for the past 6 years at work.. i'm always finding more ways to make it still exist cause my boss is a cheap skate
2016-02-24 09:35:23 @fsociety how i got into tiling window managers
2016-02-24 09:35:32 @fsociety unfortunately it took over my home machine as well. haha
2016-02-24 09:36:20 Sean Unfortunately I'm the cheapskate towards myself :)
2016-02-24 09:42:00 [09:36]
2016-02-24 09:47:48 Sean <br><img id="2">
2016-02-24 09:47:48 Sean Found my keys!
2016-02-24 09:47:58 @fsociety haha
2016-02-24 09:48:02 NicholasB they're yours? lucky.
2016-02-24 09:49:02 Sean Oh yeah! House, bicycle, and Jeep keys
2016-02-24 09:49:36 Sean That's why I park out in the boondocks. Well and I like to walk too.
2016-02-24 09:55:00 [09:49]
2016-02-24 09:55:16 NicholasB podcast?
2016-02-24 09:55:48 Moritz Yes interview with the telegram founder.
2016-02-24 09:55:55 NicholasB oh sweet
2016-02-24 09:56:06 NicholasB ill check that out after lunch
2016-02-24 09:56:26 Moritz Just experienced how great the music playing capabilities are.
2016-02-24 09:56:44 NicholasB they're really quite good
2016-02-24 10:02:00 [09:56]
2016-02-24 10:27:28 Moritz <br><img id="3">
2016-02-24 10:27:28 [10:27]
2016-02-24 11:01:16 Moritz Dogs are the most graceful animals
2016-02-24 11:01:16 [11:01]
2016-02-24 11:01:16 Moritz http://i.imgur.com/HRoRJbH.gifv
2016-02-24 11:31:50 @fsociety i prefer cats personally
2016-02-24 11:31:50 [11:31]
2016-02-24 11:31:55 @fsociety my cat could eat most dogs for breakfast
2016-02-24 11:31:56 @fsociety haha
2016-02-24 11:32:08 @fsociety 11kgs of fun loving joy
2016-02-24 11:38:00 [11:32]
2016-02-24 11:41:52 EricT Scarface Claw from Donaldson's Dairy
2016-02-24 11:42:26 @fsociety excellent, new walking dead game out today
2016-02-24 11:42:29 @fsociety will purchase
2016-02-24 11:43:12 EricT I only did 2.5 seasons of the show....got repetitive
2016-02-24 11:43:21 @fsociety game is very different from the show
2016-02-24 11:43:23 @fsociety i hate the show
2016-02-24 11:43:26 @fsociety but the games are great
2016-02-24 11:43:51 EricT ponit n click adventures!
2016-02-24 11:45:13 EricT so, hows things Dean? I got a day off and too hot to do anything.
2016-02-24 11:51:00 [11:45]
2016-02-24 11:52:08 @fsociety not too bad
2016-02-24 11:52:18 @fsociety pay day today, so going to buy a few steam games me think
2016-02-24 11:52:44 NicholasB i bought new keycaps. that was my payday treat
2016-02-24 11:52:56 @fsociety for your dvorak
2016-02-24 11:53:25 @fsociety i've been playing around with qutebrowser a lot
2016-02-24 11:53:43 @fsociety its damn stable now, fast and zippy and i've essentially abandoned firefox and chrome
2016-02-24 11:54:53 @fsociety other than really considering purchasing another hdd drive today
2016-02-24 11:55:06 @fsociety only because i'm down to my last tb.
2016-02-24 11:56:04 NicholasB blank!
2016-02-24 11:56:15 NicholasB <br><img id="4">
2016-02-24 11:56:33 EricT looks rendered!
2016-02-24 11:56:50 NicholasB it is
2016-02-24 11:56:56 NicholasB for the moment
2016-02-24 11:57:21 EricT very 60s view of the future
2016-02-24 11:58:02 EricT Scae 1999!
2016-02-24 11:58:02 EricT Space*
2016-02-24 11:58:02 @fsociety i like the 60s view of the future, everything was ...curved
2016-02-24 11:58:21 NicholasB ohh i should show my space 1999 loving friend
2016-02-24 11:58:25 EricT and lots of Orange!
2016-02-24 11:59:41 EricT When really, the future is all black!
2016-02-24 11:59:59 EricT With carbon fibre decals
2016-02-24 12:00:43 EricT And brushed metals.
2016-02-24 12:00:52 NicholasB Carbon fibre needs to die. Brushmetal is fine.
2016-02-24 12:01:25 EricT Bring back nice extra shiny Chrome, I say!
2016-02-24 12:01:33 NicholasB But finger prints.
2016-02-24 12:01:43 EricT like a Kingswoods bumperbar!
2016-02-24 12:01:44 @fsociety well the off world colony starts this year
2016-02-24 12:02:03 @fsociety so expect replicants to a neighbourhood near you soon
2016-02-24 12:02:43 EricT I cant wait for my 80GB cerebral implant!
2016-02-24 12:02:55 @fsociety wrong movie
2016-02-24 12:02:56 @fsociety lol
2016-02-24 12:03:18 @fsociety we dont speak of mnemonic unless you bring up henry rollin's amazingly miscast role :)
2016-02-24 12:03:31 EricT can you even fit a 4k movie on that?
2016-02-24 12:03:37 @fsociety yeah
2016-02-24 12:03:42 @fsociety raw 4k film is about 52g
2016-02-24 12:04:02 EricT maybe the Directors cut?
2016-02-24 12:04:40 EricT "I know Kung Fu!"
2016-02-24 12:05:29 NicholasB I want to see a 4k vhs rip
2016-02-24 12:05:33 EricT lol My Own Private Idaho Hell
2016-02-24 12:06:01 EricT Keanou was the drug!
2016-02-24 12:06:01 [12:06]
2016-02-24 12:06:28 EricT that killed...
2016-02-24 12:07:06 EricT enough crap, got to go to Aldi for supplies, catch ya'll
2016-02-24 12:07:36 @fsociety haha cya
2016-02-24 12:07:54 @fsociety want me to make one for you :)
2016-02-24 12:10:56 NicholasB Ha. Maybe but only of wheel of fortune. You have to source one with the ads. And I've seen all the ones on YouTube so you can't fudge me off
2016-02-24 12:13:49 @fsociety i have a collection of old vhs's
2016-02-24 12:14:00 @fsociety i have the original turtles film on vhs
2016-02-24 12:14:00 @fsociety haha
2016-02-24 12:14:40 @fsociety i would like to see a parody of systemau down in the stylings of bill and ted
2016-02-24 12:14:41 @fsociety hahaha
2016-02-24 12:20:00 [12:14]
2016-02-24 12:38:17 NicholasB i never got bill and ted
2016-02-24 12:38:17 [12:38]
2016-02-24 12:38:19 NicholasB i was of the age
2016-02-24 12:38:31 NicholasB don't know why.
2016-02-24 12:39:54 TristanJames I think I just ate too much
2016-02-24 12:44:36 NicholasB of what?
2016-02-24 12:46:25 TristanJames Pork and cider sausages, broccoli, carrot, potato salad and a vanilla slice
2016-02-24 12:46:37 TristanJames http://www.theage.com.au/victoria/road-under-montague-street-bridge-could-be-lowered-to-avoid-truck-strikes-vicroads-20160223-gn1zi9.html
2016-02-24 12:46:48 @fsociety random bit of trivia
2016-02-24 12:47:03 @fsociety quickbasic is still being developed on actively
2016-02-24 12:47:04 @fsociety hahah
2016-02-24 12:47:11 @fsociety just not by microsoft anymore
2016-02-24 12:48:59 Sean <br><img id="5">
2016-02-24 12:49:21 Sean Pennies are so worthless they just sit there all day. No one wants them.
2016-02-24 12:50:16 Sean Are there no signs letting drivers know if they're so tall they can't go under?
2016-02-24 12:50:35 TristanJames Yeah there's heaps. Drivers are just dickheads
2016-02-24 12:50:48 Sean That's good to know.
2016-02-24 12:51:02 TristanJames It's a condition of their licence they know how high their vehicle is too.
2016-02-24 12:51:31 Sean Oh wow. So, they are just stupid then.
2016-02-24 12:51:59 TristanJames We're yet to find out the bus drivers excuse for the other day, but I'm sure stupidity plays a part.
2016-02-24 12:53:07 Sean Maybe they watch the railcars and loose track of what they're doing? Damn ADHD!
2016-02-24 12:59:00 [12:53]
2016-02-24 13:15:13 NicholasB fuck that sounds delcious
2016-02-24 13:15:13 [13:15]
2016-02-24 13:15:18 NicholasB greek salad here
2016-02-24 13:15:25 NicholasB diet boy is porking out
2016-02-24 13:15:26 @fsociety just subway here
2016-02-24 13:15:28 @fsociety not much near work
2016-02-24 13:15:50 TristanJames Mine was leftovers from last night. Except for the vanilla slice.
2016-02-24 13:16:06 TristanJames I baked the sausages in the oven so they were nice and moist.
2016-02-24 13:17:28 NicholasB i baked some steak for breakfast
2016-02-24 13:17:31 NicholasB with eggs
2016-02-24 13:17:35 NicholasB on a fake atkins diet
2016-02-24 13:18:48 @fsociety kitchenau
2016-02-24 13:19:30 NicholasB you forgot the hashbrown tag
2016-02-24 13:20:20 @fsociety haha
2016-02-24 13:26:00 [13:20]
2016-02-24 13:40:51 ScottHuntley Wait... Quickbasic is still being developed? 80 goto 10!
2016-02-24 13:46:00 [13:40]
2016-02-24 13:54:25 EricT I got to break out my TRS80!
2016-02-24 14:00:00 [13:54]
2016-02-24 14:00:55 NicholasB nice.
2016-02-24 14:00:56 @fsociety https://en.wikipedia.org/wiki/QB64
2016-02-24 14:00:59 @fsociety enjoy
2016-02-24 14:06:00 [14:00]
2016-02-24 14:23:47 ScottHuntley Now I need to connect my tape recorder to my computer to save my programs.
2016-02-24 14:23:47 [14:23]
2016-02-24 14:34:21 EricT Just get the code from the back of the Magazine and type it in! lol
2016-02-24 14:39:29 @fsociety Over the last 4 years, you've spent 780.5 hours playing this selection, which includes 322 items, is valued at $4493.34, and requires 1392.1 GB
2016-02-24 14:39:29 [14:39]
2016-02-24 14:39:33 @fsociety excellent :)
2016-02-24 14:39:42 @fsociety just bought 4 more games
2016-02-24 14:39:58 @fsociety american truck simulator, agathie christie abc murders, walking dead and downfall redux
2016-02-24 14:40:32 LachlanHolmes Playing what?
2016-02-24 14:46:00 [14:40]
2016-02-24 14:50:02 NicholasB Windows?
2016-02-24 14:50:24 @fsociety only walking dead is windows only
2016-02-24 14:50:28 @fsociety but you could easily get that running in wine
2016-02-24 14:50:37 @fsociety all telltale games are piss easy to get running under wine
2016-02-24 14:50:51 @fsociety downfall gets a linux build in the next week, only reason i know this cause the dev is one of my friends
2016-02-24 14:51:02 @fsociety but yeah all linux bar one
2016-02-24 14:53:25 NicholasB Is downfall based on the movie?
2016-02-24 14:54:14 @fsociety no its an original horror story about mental illness, specifically eating disorders and self harm
2016-02-24 14:54:22 @fsociety his other game was about chronic depression
2016-02-24 14:54:30 @fsociety truly depressing games, but damn great stories
2016-02-24 14:54:53 @fsociety both psychological horror
2016-02-24 14:55:32 NicholasB Ohh. I wanted Hitler bunker.
2016-02-24 14:58:17 @fsociety hitler bunker?
2016-02-24 15:01:19 NicholasB the movie downfall
2016-02-24 15:01:19 [15:01]
2016-02-24 15:01:27 NicholasB its about hitlers last days in the bunker
2016-02-24 15:01:34 NicholasB the source of all the hitler getting angry memes
2016-02-24 15:03:59 EricT Trucking simulators! change gear...change gear...change gear...kill a hitchiker....change gear...change gear...kill a truck-stop hooker....change gear...change gear... lol
2016-02-24 15:05:10 @fsociety i'm hoping for bathroom stops with glory holes and meth addicts
2016-02-24 15:05:14 @fsociety if not i'm making the mod
2016-02-24 15:05:34 @fsociety oh btw peeps. steam name swap if you want to add me
2016-02-24 15:05:42 @fsociety its either polymetric or fs0ciety one of the two
2016-02-24 15:06:07 EricT LOL...with TF2 type Trucker's caps!
2016-02-24 15:06:23 @fsociety oh sorry inf0sec it could be
2016-02-24 15:06:27 @fsociety hahah yeah
2016-02-24 15:06:38 @fsociety you have a meth meter
2016-02-24 15:06:42 @fsociety oh shit im gonna fall asleep
2016-02-24 15:06:45 @fsociety hahaha
2016-02-24 15:07:22 EricT a count of how many Uppers popped! Achievement unlocked!
2016-02-24 15:07:49 @fsociety hahaha
2016-02-24 15:07:59 @fsociety how many road side hookers can you kill in one trip
2016-02-24 15:09:51 EricT Wife-Bash-O-meter is running low!
2016-02-24 15:10:52 EricT to much sterotyping is bad!
2016-02-24 15:13:05 @fsociety hahahaha
2016-02-24 15:13:16 @fsociety where is my trailer trash simulator 2016
2016-02-24 15:13:39 @fsociety i used to always call euro truck simulator = euro slut simulator
2016-02-24 15:13:42 @fsociety sorry
2016-02-24 15:13:44 @fsociety euro slut stimulator
2016-02-24 15:19:00 [15:13]
2016-02-24 15:26:17 EricT I wanna be just like you Dean 😊
2016-02-24 15:26:17 EricT http://i.imgur.com/KVgKcPj.jpg
2016-02-24 15:30:46 @fsociety a fedora instance and two ubuntus
2016-02-24 15:31:37 @fsociety my housemate was using my computer last night, and he goes "does this feel weird dean?"
2016-02-24 15:31:46 @fsociety i respond "yeah it feels like i'm being cuckolded"
2016-02-24 15:31:47 @fsociety hahaha
2016-02-24 15:32:02 @fsociety he was violating my linux box with an exfat formatted drive
2016-02-24 15:32:19 @fsociety it was being violated by apple products for over four hours.. it's so dirty
2016-02-24 15:32:25 @fsociety hahaha
2016-02-24 15:32:25 EricT lol ssh-ing like a boss!
2016-02-24 15:32:38 @fsociety you need to tmux that shiz
2016-02-24 15:33:13 EricT nah, what all the terminals, look more hardcore 1337 then!
2016-02-24 15:33:27 @fsociety hahahaha
2016-02-24 15:33:29 EricT want*
2016-02-24 15:33:52 @fsociety you know, i dont have my desktop the way it is because its "l33t c007"
2016-02-24 15:33:56 @fsociety haha
2016-02-24 15:34:13 @fsociety i just prefer the workflow of tiling window managers, not a fan of floating
2016-02-24 15:34:13 [15:34]
2016-02-24 15:34:19 EricT its too xtreme, brah!
2016-02-24 15:34:45 @fsociety is use vim key shortcuts in a web browser extreme?
2016-02-24 15:35:18 @fsociety also that scrnshot, are you installing new instances of ubuntu?
2016-02-24 15:35:21 @fsociety thats a lot of updates
2016-02-24 15:35:43 EricT niche...for niche people (niche is a nice term for eccentric, which is nice term for cray-cray!)
2016-02-24 15:36:04 @fsociety yesssssss... im cray-cray
2016-02-24 15:36:10 EricT I havent fire up the pair of buty server in a week!
2016-02-24 15:36:12 @fsociety i actually think jason is more crazy
2016-02-24 15:36:28 @fsociety he wants to run a vm of linux through windows and have it passthrough instead of dual booting
2016-02-24 15:36:34 EricT bunty server running BTRFS Shares!
2016-02-24 15:36:46 @fsociety is it really server when you haven't booted it up for a week. hahaha
2016-02-24 15:37:26 EricT I know, hardly bother anymore...must be getting old!
2016-02-24 15:39:59 EricT I havent touch a game since coming back from Geelong...so sad
2016-02-24 15:43:04 EricT I am depressed, the big Five-O is only 2 weeks ahead for me...and then what? buy a red porche? oh well..... 😞
2016-02-24 15:49:00 [15:43]
2016-02-24 15:49:13 EricT Thanks, IKR, it seems so far away all your life, then, one day, you become your father! LOL
2016-02-24 15:53:08 @fsociety haha i don't think i'll ever become my father
2016-02-24 15:53:24 @fsociety we are similar in a few things, but i think general outlook is very different
2016-02-24 15:54:49 EricT Yeah, I mean, old, like our fathers..we are much wiser then they were! 😄
2016-02-24 16:00:00 [15:54]
2016-02-24 16:02:22 @fsociety haha
2016-02-24 16:02:47 @fsociety i wonder what your other half has prepared for your big 5-0
2016-02-24 16:08:00 [16:02]
2016-02-24 16:23:39 EricT Not sure, probably something.....
2016-02-24 16:23:39 [16:23]
2016-02-24 16:49:53 Sean @lightonflux thanks for the interview! Good listening on the way home from work.
2016-02-24 16:49:53 [16:49]
2016-02-24 16:59:32 NicholasB ha
2016-02-24 17:05:00 [16:59]
2016-02-24 18:51:50 Moritz Bastion and Transistor. Great athmosphere, fun to play and great music.
2016-02-24 18:51:50 [18:51]
2016-02-24 18:55:52 Moritz I can also recommend the Deponia Trilogy and Book of Unwritten Tales. If you like adventures.
2016-02-24 18:56:34 LachlanHolmes Off work now. Yay!
2016-02-24 18:56:41 Moritz And new and fresh with 6dof:
2016-02-24 18:56:41 Moritz http://store.steampowered.com/app/296010
2016-02-24 19:00:14 Moritz https://www.humblebundle.com/humble-indie-bundle-16
2016-02-24 19:01:24 Moritz With Trine3 and RetroCityRampage (think GTA in modern pixelart).
2016-02-24 19:01:24 Moritz
2016-02-24 19:01:24 Moritz And more to come. 7+ games DRM free and obviously for Linux.
2016-02-24 19:04:39 - irc: disconnected from server
2016-02-25 02:11:37 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 02:11:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 02:12:33 - irc: disconnected from server
2016-02-25 11:00:27 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 11:00:27 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 11:01:58 - irc: disconnected from server
2016-02-25 11:02:09 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 11:02:09 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 11:06:23 - irc: disconnected from server
2016-02-25 11:06:32 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 11:06:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 11:16:36 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 11:16:36 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 11:36:37 < root has kicked fsociety (Cleaning up channel)
2016-02-25 11:36:37 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 11:36:37 - Topic for ##systemau is "#systemau"
2016-02-25 11:36:37 - Topic set by root (root@localhost) on Thu, 25 Feb 2016 11:36:37
2016-02-25 11:36:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 11:36:37 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-25 11:36:37 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-25 11:36:37 > Adam (Adam@telegram) has joined ##systemau
2016-02-25 11:36:37 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-25 11:36:37 > Amir (Amir@telegram) has joined ##systemau
2016-02-25 11:36:37 > Angela (Angela@telegram) has joined ##systemau
2016-02-25 11:36:37 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-25 11:36:37 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-25 11:36:37 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-25 11:36:37 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-25 11:36:37 > emb (emb@telegram) has joined ##systemau
2016-02-25 11:36:37 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-25 11:36:37 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-25 11:36:37 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-25 11:36:37 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-25 11:36:37 > Joe (Joe@telegram) has joined ##systemau
2016-02-25 11:36:37 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-25 11:36:37 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-25 11:36:37 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-25 11:36:37 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-25 11:36:37 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-25 11:36:37 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-25 11:36:37 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-25 11:36:37 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-25 11:36:37 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-25 11:36:37 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-25 11:36:37 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-25 11:36:37 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-25 11:36:37 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-25 11:36:37 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-25 11:36:37 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-25 11:36:37 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-25 11:36:37 > Sean (Sean@telegram) has joined ##systemau
2016-02-25 11:36:37 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-25 11:36:37 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-25 11:36:37 > Tom (Tom@telegram) has joined ##systemau
2016-02-25 11:36:37 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-25 11:36:37 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-25 11:37:36 NicholasB morning.
2016-02-25 11:39:34 @fsociety one of those mornings where i just want go back to bed
2016-02-25 11:39:40 @fsociety probably cause it is so close friday
2016-02-25 11:39:47 @fsociety to friday*
2016-02-25 11:49:47 NicholasB i took the day off
2016-02-25 11:49:52 NicholasB i was in bed till and hour ago
2016-02-25 11:49:54 NicholasB YAY!
2016-02-25 11:52:49 EricT Bludgers!
2016-02-25 12:00:11 TristanJames I thought it was the weekend when I woke up this morning. I think it's because I went to the Melbourne Victory game last night and didn't get home til 12.30. The bloody bus detoured via Footscray and Ballan on the way back to Ballarat.
2016-02-25 12:02:21 TristanJames Anyone in need of some puppy love? http://www.gizmodo.com.au/2016/02/uber-is-delivering-puppies-to-australian-cities-today/
2016-02-25 12:08:05 @fsociety yeah i struggled to get out of bed
2016-02-25 12:08:12 @fsociety i got up at 9, thats when im suppose to start work
2016-02-25 12:08:12 @fsociety haha
2016-02-25 13:37:46 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-25 13:37:46 CarlosLopez Nicholas B added user Carlos Lopez by link.
2016-02-25 13:39:16 NicholasB CARRRRRRLLLOOOOOOOOOSSSSSSSS
2016-02-25 13:39:27 CarlosLopez Ahoy!
2016-02-25 13:39:32 NicholasB WELCOME.
2016-02-25 13:39:39 NicholasB i was wondering when you'd get around to joining.
2016-02-25 13:40:08 CarlosLopez Thanks you very much. I'd like thank my cat, ...
2016-02-25 13:40:50 NicholasB smart cat.
2016-02-25 13:42:08 CarlosLopez It took me so long to join because there was no room on my phone (I finally downloaded the linux x64 binary)
2016-02-25 13:42:27 NicholasB well standard housekeeping. turn off notifications. it will drain your phone and irritate you :)
2016-02-25 13:42:32 NicholasB ohh no room on your phone!
2016-02-25 13:42:36 NicholasB ha. what phone do you have?
2016-02-25 13:42:36 CarlosLopez nope
2016-02-25 13:42:56 CarlosLopez it's an old Motorola XT320
2016-02-25 13:43:02 NicholasB ahhhhh.
2016-02-25 13:43:29 CarlosLopez So what's cookin?
2016-02-25 13:43:49 NicholasB i lietrally just booked a pepper pork stir fry
2016-02-25 13:43:53 NicholasB but its all eaten now.
2016-02-25 13:43:57 NicholasB *cooked
2016-02-25 13:44:08 NicholasB and im about to have a coffee and a cigarette
2016-02-25 13:44:23 CarlosLopez damn. now I'm hungry.
2016-02-25 13:45:40 NicholasB this channel contain much talk of food. weather. tech and sticker posting.
2016-02-25 13:47:15 CarlosLopez warning: got a bad ADSL line, so I might go offline at times - Telstra "guarantee" tha an engineer will come and look at the line "within the next 10 working days". Prepare to hear whining from me.
2016-02-25 13:47:58 NicholasB all good. there is a bit of whining in here as well
2016-02-25 13:49:02 CarlosLopez So is this busier than the freenode channel? Are we it for the moment?
2016-02-25 13:49:26 NicholasB oh dude. this is a vertiable smorgasboard of conversation compritivley
2016-02-25 13:49:39 CarlosLopez noice
2016-02-25 13:49:42 NicholasB some days i wake up and there are like 300 missed messages
2016-02-25 13:50:10 JustinZobel I rejoined after about a month and it was in the order of about 5,000
2016-02-25 13:50:11 NicholasB we've got some brit in here who keep it going.
2016-02-25 13:50:16 NicholasB hahahaha
2016-02-25 13:50:19 CarlosLopez youch!
2016-02-25 13:50:33 NicholasB yeah. thus the notification turn off.
2016-02-25 13:51:16 CarlosLopez Well, it's my first time with the desktop client (first time with telegram at all) so I'll see what it does
2016-02-25 13:51:51 NicholasB sweet. if we're really lucky
2016-02-25 13:52:02 CarlosLopez myes?
2016-02-25 13:52:02 NicholasB @wimpress will give us secret mate updates
2016-02-25 13:52:17 CarlosLopez like how mate now comes with unity?
2016-02-25 13:52:29 NicholasB that was annouced her 30 mins before anywhere else!
2016-02-25 13:52:35 CarlosLopez lol - nice
2016-02-25 13:56:19 LachlanHolmes Yeah I loved the mutiny update from @wimpress. Should rename the channel to "Australian Ubuntu mate" user group.
2016-02-25 13:56:35 NicholasB Aussie Mate(s)
2016-02-25 13:57:19 LachlanHolmes Lol yeah I'm trying to think of something witty with mate Australia and Ubuntu. Coming up stumps, here.
2016-02-25 13:57:36 CarlosLopez [speaks as an aside to the audience] hell, I'm thinking of trying i3!
2016-02-25 13:57:56 NicholasB ha. tiling window managers are a hot toipic in here
2016-02-25 13:58:03 CarlosLopez hehehe
2016-02-25 13:58:42 CarlosLopez all right lads - I'm off to have my reheated curry from last night. Catch you in a bit.
2016-02-25 13:58:47 LachlanHolmes #aum - artist formerly known as #systemau.
2016-02-25 13:59:03 NicholasB catch ya. great to see you here!
2016-02-25 13:59:09 CarlosLopez 😂
2016-02-25 13:59:20 NicholasB <br><img id="3">
2016-02-25 14:01:18 LachlanHolmes So what's you linux of choice @enjayembee ?
2016-02-25 14:01:57 NicholasB um normally ubuntu mate or mint cinnamon.
2016-02-25 14:02:04 NicholasB i was a huge crunch bang fan.
2016-02-25 14:02:19 NicholasB but i can't seem to get in to as much these days
2016-02-25 14:02:21 NicholasB you?
2016-02-25 14:07:01 LachlanHolmes Historically Ubuntu. But I use Ubuntu, Ubuntu mate and antergos. For vm's for servers it's either Ubuntu server or freebsd.
2016-02-25 14:08:22 NicholasB i have a fan pc server box thing sitting here i really should set it up.
2016-02-25 14:08:31 NicholasB i still can justify a server just for me though.
2016-02-25 14:08:34 NicholasB *can't
2016-02-25 14:08:45 NicholasB i live alone and have a desktop and alaptop.
2016-02-25 14:08:47 NicholasB seems overkill
2016-02-25 14:09:53 LachlanHolmes Typical freebsd for packages that are super simple to setup. Ubuntu server for anything else that requires more current release of software or I I can use a easy to understand setup guide. Cause I'm basically shit at Linux if I can't find a how-to or find a solution via Google-fu.
2016-02-25 14:10:14 LachlanHolmes I have 1 server and 2 nas's at home.
2016-02-25 14:10:25 NicholasB you have a fwe people connected to it or just you?
2016-02-25 14:10:57 LachlanHolmes Me and GF really.
2016-02-25 14:13:16 LachlanHolmes Put I justify the setup and cost of it all cause I work in IT and the company's i've worked never want to spend on you to learn tech. So I have to be self taught. 😐
2016-02-25 14:13:32 LachlanHolmes But I justify***
2016-02-25 14:16:20 NicholasB fair enough.
2016-02-25 14:16:24 NicholasB right out for a bit.
2016-02-25 14:16:30 NicholasB catch.
2016-02-25 14:20:37 LewisCividin Hey how you all doing today?
2016-02-25 14:21:04 Sean Have you tried Emby for a media server. I've been nessibg around with that for a bit and I like it.
2016-02-25 14:21:16 Sean *messing
2016-02-25 14:21:31 Sean Hey Lewis
2016-02-25 14:41:30 @fsociety how big is nas LachlanHolmes?
2016-02-25 14:41:40 @fsociety big is the nas*
2016-02-25 14:47:02 EricT NAS envy?
2016-02-25 14:53:37 LachlanHolmes 1 is 8tb and the other is 12tb.
2016-02-25 14:59:39 LachlanHolmes Both are running freenas.
2016-02-25 15:01:33 @fsociety ahh nice, i've been running just one using openmediavault and it sits at 42tb
2016-02-25 15:01:59 @fsociety though i built the nas in mind using a micro-atx mobo and small case
2016-02-25 15:02:34 @fsociety on saying that openmediavault's new release comes out very soon. time to do that dreaded upgrade soon enough
2016-02-25 15:05:18 LachlanHolmes Yeah I tried open once, I should revisit it but freenas has always done what I've needed.
2016-02-25 15:07:36 AzzaMatazz I use openmediavault, only on a odroid as my nas. It runs great!
2016-02-25 15:08:06 LachlanHolmes My capacity is small but the 8tb nas is raidz2 with 6x2tb drives and the other one is the freenas mini. Which has about 20ish jails running on it😊 so it's basically another vm host really like my esxi box.
2016-02-25 15:09:01 LachlanHolmes Yeah alot of people like openmediavault. Makes me want to look at what vm's you can get for it now.
2016-02-25 15:09:21 AzzaMatazz What sort of hardware are you using? Zfs?
2016-02-25 15:10:52 LachlanHolmes 1 freenas mini with 4x4tb WD reds as raidz1 and well the other one is listed above.
2016-02-25 15:11:23 LachlanHolmes The 8tb was built 6years ago too :p
2016-02-25 15:12:54 AzzaMatazz Ah nice, wow that's going strong! i should get some proper hardware. I ran nas4free for a while, but drunk deleted a NFS mount before it was unmounted and found out BSD is really good at deletion 😅
2016-02-25 15:15:49 LachlanHolmes Yeah build a nas is fun but to me the most important part is getting the right mobo.
2016-02-25 15:17:46 LachlanHolmes Cause finding a hba that's actually a hba is annoying and to me if your hba dies you might not be able to get a replacement... But that was a while ago I haven't really looked to much. I just try and find a mobo that has a butt ton of sata ports.
2016-02-25 15:20:43 LachlanHolmes This link is the modern equivalent of my nas now a days. https://www.pccasegear.com/index.php?main_page=product_info&products_id=21683&cPath=547
2016-02-25 15:23:30 AzzaMatazz My main want is something quiet. Building one is on my todo list, I wouldn't know where to start with hardware choice though. But would like to give BSD another go, the jails looked really good, and I want to set up some zfs storage to play with.
2016-02-25 15:25:30 AzzaMatazz Oo that's a nice case!
2016-02-25 15:30:27 LachlanHolmes Yeah so I got 6 2tb drives in there and then a old shitty 80gb HDD for the base OS of freenas and it's been running strong for 6 years.
2016-02-25 15:37:16 @fsociety for my NAS I actually use mhhdfs which is a way to pool all drives and make it one using whatever file systems you wish. no need for raid or such. great software solution though.
2016-02-25 15:37:33 @fsociety so it seems the Linux Mint website has been compromised since mid Jan
2016-02-25 15:37:34 @fsociety ouch
2016-02-25 15:38:20 @fsociety just gets worse and worse
2016-02-25 15:38:48 CarlosLopez ouch indeed! I wonder whether anyone's testing compromised ISOs to see what's been affected
2016-02-25 15:39:50 @fsociety well looking at the isos the hacker was real amateurish to the point his script didn't work properly
2016-02-25 15:40:02 CarlosLopez lol
2016-02-25 15:40:09 @fsociety he put the execution of his script after an exit 0 in the rc.conf file
2016-02-25 15:40:10 CarlosLopez script kiddies
2016-02-25 15:40:45 @fsociety essentially mint got pawned by a script kiddie
2016-02-25 15:40:54 TristanJames Dick Smith Electronics to close all their stores. Everythings still massively overpriced.
2016-02-25 15:40:57 CarlosLopez not a good look
2016-02-25 15:41:08 @fsociety dick smith aren't closing . spoke to a staff member the other day
2016-02-25 15:41:23 LachlanHolmes I'll look into that. 😀
2016-02-25 15:41:27 TristanJames http://www.theage.com.au/business/retail/dick-smith-to-close-all-stores-3000-staff-to-go-20160225-gn3ios.html
2016-02-25 15:42:05 @fsociety ahh the staff member said about the expression of interest
2016-02-25 15:42:06 LachlanHolmes Isn't that just the regular result of receivership?
2016-02-25 15:42:55 @fsociety oh well, poor staff member.
2016-02-25 15:43:09 @fsociety all i buy from dse these days is well.... nothing
2016-02-25 15:43:10 @fsociety hahaha
2016-02-25 15:43:29 @fsociety actually i bought a 5.1 samsung unit eons ago that literally died 3 months after purchase
2016-02-25 15:43:30 AzzaMatazz Yeah after a quick search that looks like something to read up on. Is it like LVM?
2016-02-25 15:44:32 @fsociety what mhhdfs does is you chain the all drives in your fstab, and it will use the drives with the most free space and then move to thext one, but all coming under the one mount
2016-02-25 15:44:50 @fsociety the advantage of this, if you want to check the drive seperately and mount it you can
2016-02-25 15:44:50 LachlanHolmes So it's a jbod?
2016-02-25 15:45:06 TristanJames Exactly. I've gone in a couple of times in the last couple of months expecting half decent prices on things but everything I wanted was full price.
2016-02-25 15:45:29 @fsociety exaclty Lachlan
2016-02-25 15:46:04 @fsociety Probably the bank trying to get as much money back as possible
2016-02-25 15:46:16 @fsociety Same thing happened with Allans Music for a while, but right at the last minute they got bought up
2016-02-25 15:47:06 @fsociety romanrm.net/mhddfs
2016-02-25 15:47:41 LachlanHolmes Hmmm OK not the best for a nas in my opinion but it would be awesome for large fast temp storage before final commit to a more resilient storage device.
2016-02-25 15:47:53 AzzaMatazz Ha, just reading that now!
2016-02-25 15:48:13 @fsociety ive never had an issue with it tbh, not one failure in the past 3 years
2016-02-25 15:48:14 LachlanHolmes Like 4 m.2 sata drives as a jbod would be hectic!
2016-02-25 15:48:31 @fsociety i have 8 drives
2016-02-25 15:48:37 @fsociety mostly 4tb and two 6tbs
2016-02-25 15:49:16 NicholasB i always checked the bargain bin. same with hardley normal. there normal shit is stupidly priced but sometimes they clearance some good stuff.
2016-02-25 15:49:23 LachlanHolmes But if a disk dies all your data is toast right or just the data on that drive that you have no means of tracking it onto the disk as there is a layer of abstraction?
2016-02-25 15:49:30 @fsociety just the data on that drive
2016-02-25 15:49:58 @fsociety and tbh all my "important" data is backed up in several places.. nas is mainly my own netflix which is larger than netflix. haha
2016-02-25 15:50:11 @fsociety and being on 100mbit unlimited internet losing data isn't really so much an issue
2016-02-25 15:51:00 @fsociety i see what you are saying though, i've just never been a fan of RAID
2016-02-25 15:51:39 NicholasB i've never carded that much about my data. there is very little that i would cry over if i lost.
2016-02-25 15:51:46 LachlanHolmes Please correct me if I'm wrong but it sounds exactly like raid 0
2016-02-25 15:51:48 NicholasB maybe a few photos but ehhh.
2016-02-25 15:52:12 @fsociety but more versatile
2016-02-25 15:52:48 LachlanHolmes I only have about 200 GB of data I care about and that's just solely photos that are of family stuff. Everything else is expendable.
2016-02-25 15:53:09 @fsociety i'm not particarly attached to anything either on it.. its more of a service to my family and friends who are scared of downloading anything
2016-02-25 15:53:20 @fsociety every few months - dean heres another 2tb drive.. fill er up
2016-02-25 15:53:43 LachlanHolmes Cool cool
2016-02-25 15:53:56 @fsociety and i like to hoard
2016-02-25 15:54:08 LachlanHolmes Torrents, private torrents or usenet?
2016-02-25 15:54:16 @fsociety especially with programs like sonarr, couchpotato, etc
2016-02-25 15:54:20 @fsociety usenet
2016-02-25 15:54:24 @fsociety occasionally torrents
2016-02-25 15:54:26 LachlanHolmes OK usenet
2016-02-25 15:54:52 @fsociety torrents are run in a docker container that has OpenVPN inside it, so only VPN traffic is routed through that container
2016-02-25 15:54:54 LachlanHolmes Whose your provider?
2016-02-25 15:55:05 @fsociety i was with astra for years, then newshosting and now supernews
2016-02-25 15:55:12 LachlanHolmes Ah ok
2016-02-25 15:55:12 @fsociety newshosting was the best for retention, but they're expensive
2016-02-25 15:55:32 NicholasB im with astra now. but i use it so infrequently it doesn bear mnentionign.
2016-02-25 15:55:40 NicholasB i just pay for block 25 gig.
2016-02-25 15:55:48 NicholasB last me 6 months
2016-02-25 15:55:58 @fsociety once upon a time internode gave you astraweb for free
2016-02-25 15:56:09 NicholasB oh was that astraweb
2016-02-25 15:56:13 @fsociety yeah it was
2016-02-25 15:56:15 NicholasB i remember getting free newsgroups
2016-02-25 15:56:20 NicholasB didnt know it was astra
2016-02-25 15:56:45 @fsociety the unfortunate thing if i remember correctly is they didn't offer ssl over newsgroups
2016-02-25 15:56:50 LachlanHolmes Yeah I used internode's free usenet service for a long time but then got scared of them not offering a SSL version so I went with tweaknews.NL for a while.
2016-02-25 15:56:52 @fsociety so thats a little insecure, but thats about it
2016-02-25 15:57:32 @fsociety its like i used sabnzbd for years, then i discovered nzbget..
2016-02-25 15:57:42 @fsociety that was the last big change in usenet for me.. haha
2016-02-25 15:57:44 NicholasB as i have the vpn on ive never really been fussed about the ssl factor.
2016-02-25 15:57:54 NicholasB i enable it but it doesnt bother me.
2016-02-25 15:57:59 @fsociety dont route vpn through usenet.. shudder
2016-02-25 15:58:16 NicholasB why?
2016-02-25 15:58:28 NicholasB my routers runs the vpn. all goes through it
2016-02-25 15:58:31 @fsociety pointless, enable ssl and be done with it and use all bandwidth possible
2016-02-25 15:58:45 NicholasB ohh i dont care about bandwith. i mean i download little
2016-02-25 15:58:46 @fsociety yeah im finicky where my vpn routes.. thats why i set up containers
2016-02-25 15:58:52 NicholasB i still get 30mbs down
2016-02-25 15:58:54 @fsociety also steam will ban you if use a vpn consistantly
2016-02-25 15:59:05 NicholasB ahh when i download on steam i turn it off
2016-02-25 15:59:07 NicholasB but thats it
2016-02-25 15:59:25 NicholasB oh and time sensitive hangouts or mumble ill turn it off
2016-02-25 15:59:29 @fsociety yeah i dont want to steam to ban me... i'd lose 336 games
2016-02-25 15:59:48 NicholasB when you say ban you why?
2016-02-25 15:59:57 NicholasB i use a vpn all the time but i dont play networked games
2016-02-25 16:00:03 @fsociety price fixing
2016-02-25 16:00:15 NicholasB ohhh ok. well my vpn routes out of melbourne
2016-02-25 16:00:18 NicholasB so ehh
2016-02-25 16:00:30 @fsociety so you vpn connect to an au server?
2016-02-25 16:00:37 NicholasB yup.
2016-02-25 16:00:44 @fsociety interesting, any reason why
2016-02-25 16:00:56 NicholasB so i can torrent and do shit and not think about it
2016-02-25 16:01:02 NicholasB like i said i get 30mb speed
2016-02-25 16:01:12 LachlanHolmes Yeah so my sab was setup with openvpn client to tunnel to I think Lithuania and then ensured the was firewall rules on the jail to only get onto the internet via said VPN link. If it tried to get out via my AUS wan ip it would be blocked on the jail and the router.
2016-02-25 16:01:14 NicholasB more than adequate for everything.
2016-02-25 16:01:52 NicholasB and when i do online shoipping or searches i get local response
2016-02-25 16:02:01 @fsociety i just thought vpning using an au node was kinda pointless
2016-02-25 16:02:06 @fsociety especially if you want to watch US content
2016-02-25 16:02:07 @fsociety haha
2016-02-25 16:02:21 NicholasB its not pointless from the metadata retention point of view
2016-02-25 16:02:30 NicholasB VPN service providers arent calssified as ISPs
2016-02-25 16:02:53 @fsociety but thats not stopping the government down the track changing those laws in the future..
2016-02-25 16:03:02 @fsociety foresight into how they can manipulate everyone as they see fit
2016-02-25 16:03:10 NicholasB well if they change the laws in the future ill change it
2016-02-25 16:03:22 @fsociety haha im just a paranoid fuck, because i used to be in the pirate scene
2016-02-25 16:03:30 @fsociety i'd have to mandatory blowfish encrypt every irc chat
2016-02-25 16:04:11 LachlanHolmes It was also on a SSL session to the tweaknews server. But I've given up on downloading now. I got scared out if it cause of the Dallas shit. Even though they were going for bit torrent I'm a internode customer and felt my activity's would be next on the chopping block as iinet was the whipping boy of the multinationals... If you what I mean.
2016-02-25 16:04:38 NicholasB ha.
2016-02-25 16:05:42 NicholasB thus my vpn on everything. I
2016-02-25 16:06:03 NicholasB i pirate very little but the little i do i like to not think about it
2016-02-25 16:06:17 LachlanHolmes So yeah I only downloaded like two TV shows a week but id rather just not bother with it anymore.
2016-02-25 16:06:22 @fsociety i only pirate movies and tv shows
2016-02-25 16:06:44 LachlanHolmes Movies are the one thing that's going to get you caught first IMO.
2016-02-25 16:06:50 @fsociety i tried to go the itunes route but nooo... they don't accept debit card acting as a credit card
2016-02-25 16:07:15 @fsociety and also its itunes
2016-02-25 16:07:17 NicholasB i think it depends on the movies. i tend to download older movies. obscure movies.
2016-02-25 16:07:21 @fsociety same
2016-02-25 16:07:32 @fsociety i've been searching for a physical copy of Samurai Cop forever
2016-02-25 16:07:46 @fsociety i want the directors commentary
2016-02-25 16:08:17 NicholasB http://www.ebay.com.au/itm/Samurai-Cop-Special-Edition-Remastered-Deluxe-Edition-Region-4-New-/371520720206?hash=item56805c4d4e:g:tQMAAOSwZ1lWg8Pv
2016-02-25 16:08:19 NicholasB not looking hard
2016-02-25 16:08:28 @fsociety i meant when i was out at jb or something
2016-02-25 16:08:57 NicholasB ebay not good enough for you boy
2016-02-25 16:09:06 @fsociety i'd buy a digital copy of it i could find it
2016-02-25 16:09:13 @fsociety i also hate physical items
2016-02-25 16:09:31 @fsociety why i could never be a hipster
2016-02-25 16:09:48 NicholasB ha. were polar opposites.
2016-02-25 16:10:08 @fsociety you just figured that out
2016-02-25 16:10:10 NicholasB i love having records. not so much dvd or cds because they are just digital anyway
2016-02-25 16:10:15 NicholasB no i didnt
2016-02-25 16:10:18 @fsociety im a progressive metal head, and you hate it
2016-02-25 16:10:21 NicholasB just reminding myself.
2016-02-25 16:10:33 @fsociety hahaha
2016-02-25 16:10:54 NicholasB i like one tech death band
2016-02-25 16:10:56 @fsociety its like most of the time i skip the music on systemau... hahaha.. i confess
2016-02-25 16:11:02 NicholasB does that count?
2016-02-25 16:11:10 @fsociety and what tech death metal band is that
2016-02-25 16:11:16 NicholasB all good mate. i expect most people do
2016-02-25 16:11:24 NicholasB The Red Chord
2016-02-25 16:11:39 @fsociety its been a while since i listened to those guys
2016-02-25 16:11:48 @fsociety at least we can agree on one thing
2016-02-25 16:11:51 @fsociety jono's music taste is questionable
2016-02-25 16:12:00 NicholasB he's older than us.
2016-02-25 16:12:06 NicholasB differnt childhood.
2016-02-25 16:12:14 @fsociety oh i used to love megadeth as a kid, even used to listen to anthrax
2016-02-25 16:12:17 @fsociety i grew out of it
2016-02-25 16:12:18 @fsociety haha
2016-02-25 16:12:38 @fsociety then my music teacher gave me a frank zappa vinyl and i kinda got stuck
2016-02-25 16:12:52 NicholasB i gave all my zappa vinyl to a mate
2016-02-25 16:13:10 @fsociety hate zappa that much hey.. haha
2016-02-25 16:13:23 NicholasB ehh. i dont hate zappa i just can't be bothered
2016-02-25 16:13:30 NicholasB i like fine girlk
2016-02-25 16:13:41 @fsociety my first zappa album was weasel's ripped my flesh
2016-02-25 16:13:44 NicholasB https://www.youtube.com/watch?v=nRZpNfC-l54
2016-02-25 16:13:46 @fsociety and that was still mothers of invention
2016-02-25 16:14:26 @fsociety i've become less metal as i've become older also.. i've been stuck in porcupine tree mode for nearly 16 years now
2016-02-25 16:14:54 @fsociety how old is jono
2016-02-25 16:14:57 LachlanHolmes Vinyl is the shit!
2016-02-25 16:15:29 @fsociety as much as vinyl is wonderful from a retro point of view i prefer 24bit 96000khz bluray albums
2016-02-25 16:15:59 @fsociety i have a love for old 80s computers but i know if i sat down with one for more than a day i'd get irritated by it
2016-02-25 16:16:01 NicholasB vinyl isn't about the sound. its about tactility.
2016-02-25 16:16:09 @fsociety a true hipster
2016-02-25 16:16:19 LachlanHolmes You don't just want sound you can hear. YOU WANT ALL THE SOUND!!
2016-02-25 16:16:29 NicholasB fuck that. i've been collecting records since i kid.
2016-02-25 16:16:34 NicholasB haaaa
2016-02-25 16:16:44 NicholasB ALL OF THE SOUND.
2016-02-25 16:16:59 @fsociety so to be fair its all about nostalgia
2016-02-25 16:17:00 @fsociety lets be honest
2016-02-25 16:17:39 LachlanHolmes Although to be fair I like flac. 😯😳
2016-02-25 16:17:51 @fsociety 95% of music collection is flac now
2016-02-25 16:18:01 @fsociety unfortunately it makes my music collection 1.3tb
2016-02-25 16:18:32 @fsociety my gf finally understood why i chose flac, i used her car stereo as the culprit.. and she was like "shit, now i can hear everything"
2016-02-25 16:18:33 @fsociety hahaha
2016-02-25 16:18:50 LachlanHolmes Lachlan has changed the channel: "#Data hoarders 'r' us"
2016-02-25 16:19:08 @fsociety hahaha
2016-02-25 16:19:33 @fsociety a lot of my music collection is stuff that is even hard to pirate
2016-02-25 16:19:57 @fsociety i went through my dads old vinyl collection, and all my obscure purchases i bought from places like basement discs and converted them
2016-02-25 16:20:06 @fsociety now that physical collection collects dust
2016-02-25 16:20:21 NicholasB Oh i'f im downloading music it will be FLAC.
2016-02-25 16:20:30 NicholasB thats why I like bandcamp.
2016-02-25 16:20:34 @fsociety same
2016-02-25 16:20:36 @fsociety i love bandcamp
2016-02-25 16:20:43 @fsociety i got an album in 24bit FLAC from there
2016-02-25 16:20:49 @fsociety take that vinyl
2016-02-25 16:20:49 @fsociety lol
2016-02-25 16:21:31 @fsociety haha.. naa vinyl is okay
2016-02-25 16:21:38 @fsociety as long as the vinyls stay in good condition
2016-02-25 16:21:43 NicholasB Yeah. Im sure that 24bit FLAC is great when you want to read the liner notes with out a sdcreen
2016-02-25 16:21:43 @fsociety crack, pop.. crack crack.. pop
2016-02-25 16:21:46 LachlanHolmes Yeah but can you beat the sound of a dirty stylus pop?....
2016-02-25 16:21:46 LachlanHolmes
2016-02-25 16:21:46 LachlanHolmes Uh. Yes 😛
2016-02-25 16:21:56 @fsociety i hate that
2016-02-25 16:22:18 @fsociety im a musician trying to learn the parts and the fucking crackles and pops makes it difficult for me to transcribe the music
2016-02-25 16:22:43 @fsociety also i like to slow down parts with perfect pitch
2016-02-25 16:22:50 @fsociety this is where vinyl has its limits
2016-02-25 16:22:53 @fsociety but then again im not normal
2016-02-25 16:23:01 @fsociety as many people in this channel have pointed out
2016-02-25 16:23:03 @fsociety sigh
2016-02-25 16:23:17 NicholasB ha.
2016-02-25 16:23:24 NicholasB all good. no such things as normal.
2016-02-25 16:23:31 LachlanHolmes It's OK your box is over there...
2016-02-25 16:23:31 LachlanHolmes
2016-02-25 16:23:31 LachlanHolmes 😛
2016-02-25 16:23:35 @fsociety haha.. i just like ragging on vinyl
2016-02-25 16:23:41 @fsociety just for the sake of it
2016-02-25 16:23:52 @fsociety i actually adore my dads old vinyl collection
2016-02-25 16:24:07 NicholasB move flac is far easier when your lease is up.
2016-02-25 16:24:11 NicholasB ill give it that.
2016-02-25 16:24:20 @fsociety thats the reason why i dont like physcial items
2016-02-25 16:24:25 @fsociety i know i'll never own a house
2016-02-25 16:24:30 @fsociety its fucking impossible
2016-02-25 16:24:35 NicholasB actually part of the fun of vinyl is the care. replacing sleeves, cleaning catalouging
2016-02-25 16:24:45 @fsociety i have to deal with that enough with my drumkit
2016-02-25 16:24:56 @fsociety haha
2016-02-25 16:24:59 LachlanHolmes Why no own house?
2016-02-25 16:25:10 @fsociety cause i dont earn enough money... hmmmm...
2016-02-25 16:25:29 LachlanHolmes For your area?
2016-02-25 16:25:34 @fsociety i live in fairfield
2016-02-25 16:25:38 @fsociety minimum 1.2mil per house
2016-02-25 16:25:43 @fsociety no fucking way i'd could afford to buy here
2016-02-25 16:26:05 LachlanHolmes In Vic or NSW?
2016-02-25 16:26:08 @fsociety vic
2016-02-25 16:26:34 @fsociety property boom in fairfield/alphington went through the roof
2016-02-25 16:26:39 LachlanHolmes Oh OK I don't know Vic as well
2016-02-25 16:26:41 @fsociety the whole population of this area is upper middle class now
2016-02-25 16:27:04 @fsociety which irritates me, but i must say crime rate here is quite low.. surprisingly
2016-02-25 16:27:11 @fsociety considering i live two blocks away from the hells angels
2016-02-25 16:27:25 LachlanHolmes Gentrification!!!!!
2016-02-25 16:27:31 @fsociety soda sopa
2016-02-25 16:27:32 @fsociety ;)
2016-02-25 16:27:35 @fsociety again hipsters
2016-02-25 16:27:40 @fsociety fuckin hipsters
2016-02-25 16:27:44 @fsociety lol
2016-02-25 16:27:51 NicholasB hipsters dont have money.
2016-02-25 16:27:58 NicholasB hipsters rent.
2016-02-25 16:28:06 @fsociety ummm... most hipsters i know come from wealthy middle class families
2016-02-25 16:28:10 LachlanHolmes They live like they have it! 😛
2016-02-25 16:28:23 NicholasB we know different hipsters.
2016-02-25 16:28:30 @fsociety you do live in geelong
2016-02-25 16:28:30 @fsociety haha
2016-02-25 16:28:36 NicholasB for 3 years.
2016-02-25 16:28:37 @fsociety fitzroy for example
2016-02-25 16:28:43 NicholasB i lived in fairfieldbefore you did.
2016-02-25 16:28:43 @fsociety used to be cheap as fuck
2016-02-25 16:28:48 @fsociety gentrification destroyed that
2016-02-25 16:29:00 @fsociety when did you move into fairfield
2016-02-25 16:29:10 @fsociety and how do you know how long i've lived here
2016-02-25 16:29:10 NicholasB well i was one street off
2016-02-25 16:29:10 @fsociety haha
2016-02-25 16:29:13 NicholasB i was in alphington
2016-02-25 16:29:16 @fsociety same
2016-02-25 16:29:18 NicholasB 2006
2016-02-25 16:29:21 LachlanHolmes Hipsters to me are wealthy hippies, right? Who aren't afraid of having money. Or any I completely wrong?
2016-02-25 16:29:22 @fsociety im in alphington right on the border
2016-02-25 16:29:34 @fsociety exactly, hipsters are actually quite wealthy
2016-02-25 16:30:03 NicholasB hiopster is not really anything anymore is it. just label bandied about for people who like good coffee and flannel
2016-02-25 16:30:10 @fsociety i disagree
2016-02-25 16:30:25 @fsociety hipsters appropriate different cultures and destroy them all in the process
2016-02-25 16:30:41 LachlanHolmes They are the Borg.
2016-02-25 16:30:43 NicholasB like white people
2016-02-25 16:30:43 LachlanHolmes Lol
2016-02-25 16:30:50 @fsociety exactly like white people
2016-02-25 16:30:56 NicholasB so youre a hipster
2016-02-25 16:30:58 @fsociety generation x will be the next stolen generation
2016-02-25 16:30:59 @fsociety hahaha
2016-02-25 16:31:13 @fsociety hipsters i find are also ultra leftist
2016-02-25 16:31:18 @fsociety not just left, ultra leftist
2016-02-25 16:31:42 @fsociety naaa i'm not.. but my housemate colin is one
2016-02-25 16:31:50 NicholasB again i think thts just a label for people. no one seem sot really admit to being a hipster and someone else always is.
2016-02-25 16:31:54 @fsociety though i don't hold it against him
2016-02-25 16:32:03 @fsociety if i had to label myself
2016-02-25 16:32:05 LachlanHolmes Welp, I'm a hipster then. Should I go get some wayfarers?
2016-02-25 16:32:15 @fsociety i'm a fucking pretentious prog nazi
2016-02-25 16:32:16 NicholasB if you want. its a free world.
2016-02-25 16:32:19 TristanJames +1
2016-02-25 16:32:42 NicholasB <br><img id="5">
2016-02-25 16:32:52 @fsociety not sure if the world is free, well it wont be soon.. hahaha
2016-02-25 16:32:56 CarlosLopez what the hell is a prog nazi?
2016-02-25 16:32:59 @fsociety waits for 1984 to kick in
2016-02-25 16:33:32 @fsociety someone who listens to music with the need to fulfill technical prowess.. and if it doesnt have it, im not really interested
2016-02-25 16:33:56 @fsociety im pigeonholing myself here.. cause i'm not that bad.. but its fine nonetheless
2016-02-25 16:34:09 @fsociety it's like my gf keeps saying shes more br00tz than me
2016-02-25 16:34:20 @fsociety if there was a metalhead she is definetly one
2016-02-25 16:34:26 CarlosLopez okay, okay. What's br00tz?
2016-02-25 16:34:40 @fsociety look up the band car bomb on youtube
2016-02-25 16:34:43 @fsociety that should explain it
2016-02-25 16:34:49 CarlosLopez oh man, more work?
2016-02-25 16:34:49 LachlanHolmes I'm not sure either
2016-02-25 16:35:07 @fsociety brootz is the heaviest of all heaviest music
2016-02-25 16:35:07 @fsociety haha
2016-02-25 16:35:20 @fsociety if its not brootz enough, it means its not heavy enough
2016-02-25 16:35:23 CarlosLopez i'm obvioously getting old
2016-02-25 16:35:27 @fsociety how old are you
2016-02-25 16:35:36 CarlosLopez let's say mid-40s
2016-02-25 16:35:40 @fsociety ahh 35 here
2016-02-25 16:35:49 CarlosLopez you a babby!
2016-02-25 16:36:02 @fsociety haha..
2016-02-25 16:36:06 LachlanHolmes I'm mid 20s. Lol
2016-02-25 16:36:12 @fsociety HAHAHAHA
2016-02-25 16:36:15 CarlosLopez a babbier babby!
2016-02-25 16:36:22 @fsociety i'm just terribly ingrained in metal culture
2016-02-25 16:36:54 @fsociety Lachlan is a fetus then
2016-02-25 16:37:03 LachlanHolmes LOL
2016-02-25 16:37:04 CarlosLopez a babbiest!
2016-02-25 16:38:28 @fsociety haha, oh im grumpy today clearly.. and i apologise for anything i've said
2016-02-25 16:39:01 @fsociety i feel like a need a shotgun, rocking chair and a front lawn
2016-02-25 16:39:14 NicholasB i have a rocking chair. and a front lawn.
2016-02-25 16:39:31 @fsociety alright i'll replace the shotgun with the vape
2016-02-25 16:39:32 @fsociety haha
2016-02-25 16:39:42 @fsociety get of my yawn whippersnappers
2016-02-25 16:40:01 CarlosLopez there's an album title if I ever heard one
2016-02-25 16:42:25 @fsociety hahaha
2016-02-25 16:42:42 @fsociety i imagine some god awful 1970s album cover with band members that look questionable
2016-02-25 16:42:59 CarlosLopez and beardy
2016-02-25 16:43:06 @fsociety haha generally very hairy
2016-02-25 16:43:26 CarlosLopez wearing paisley
2016-02-25 16:43:36 @fsociety NicholasB - I remember going to fairfield in 2006, thats when fairfield was affordable
2016-02-25 16:43:41 @fsociety i moved in fairfield in 2010
2016-02-25 16:44:34 NicholasB Beeeeeeeeer oclock.
2016-02-25 16:44:47 NicholasB <br><img id="6">
2016-02-25 16:44:49 @fsociety which reminds me, i need to buy some of that geelong beer again
2016-02-25 16:45:06 @fsociety second highlight of linuxconf 2016
2016-02-25 16:45:15 @fsociety first was hanging out with you guys, thirdly linuxconf
2016-02-25 16:45:23 @fsociety to be fair, i've found linuxconf to be slightly disappointing
2016-02-25 16:45:29 CarlosLopez nice priorities!
2016-02-25 16:45:34 @fsociety the majority of the talks didn't do it for me
2016-02-25 16:45:37 NicholasB i loved it. but ive not been to a conference
2016-02-25 16:45:45 NicholasB and i learnt a bit
2016-02-25 16:45:56 @fsociety i look forward to pycon
2016-02-25 16:46:14 @fsociety but i'll go to linuxconf 2016 if the crew go
2016-02-25 16:46:20 @fsociety 2017*
2016-02-25 16:46:24 @fsociety not 2016* .. time warp
2016-02-25 16:46:40 CarlosLopez it's that jilong beer again
2016-02-25 16:47:46 NicholasB FURPHY
2016-02-25 16:47:48 NicholasB is the beer
2016-02-25 16:48:09 NicholasB i drink pure blonde these days because its the healthier option
2016-02-25 16:48:46 @fsociety i dont need healthy.. lol
2016-02-25 16:48:47 CarlosLopez i have to admit, it drinks okay
2016-02-25 16:48:53 @fsociety if i went healthy i'd disappear
2016-02-25 16:49:00 NicholasB the pure blonde?
2016-02-25 16:49:07 CarlosLopez yup
2016-02-25 16:49:18 NicholasB yeah its not great. but for an everyday beer its fine
2016-02-25 16:49:19 @fsociety i dont like beer at all, but i like the geelong stuff
2016-02-25 16:49:26 @fsociety im usually spirits only
2016-02-25 16:49:36 @fsociety thats because i have stomach issues
2016-02-25 16:49:44 CarlosLopez you're a spiritual dude, dean
2016-02-25 16:49:50 @fsociety hahaha
2016-02-25 16:50:04 CarlosLopez spirited?
2016-02-25 16:50:10 CarlosLopez sprite?
2016-02-25 16:50:13 @fsociety i got bad bacteria in stomach a few years back, was bed ridden for two months.. finally got it fixed, but never fully recovered
2016-02-25 16:50:24 NicholasB ow
2016-02-25 16:50:24 CarlosLopez youch. not nice
2016-02-25 16:50:27 @fsociety they put me on the ultimate hipster diet
2016-02-25 16:50:31 @fsociety worst time of my life
2016-02-25 16:50:40 @fsociety gluten, lactose and everything free
2016-02-25 16:50:41 CarlosLopez um ... kale and ... kale?
2016-02-25 16:51:01 @fsociety and antibiotics..
2016-02-25 16:51:19 @fsociety im blame my rampant drug habit of the early 00s
2016-02-25 16:51:30 CarlosLopez lol
2016-02-25 16:51:34 CarlosLopez worth it then?
2016-02-25 16:51:40 @fsociety then, not now
2016-02-25 16:51:48 @fsociety you know how you go through that im invincible 20 sometings
2016-02-25 16:51:57 @fsociety yeah...
2016-02-25 16:51:58 CarlosLopez i vaguely recall ...
2016-02-25 16:52:14 @fsociety also being a muso didn't help
2016-02-25 16:52:15 @fsociety hahahaha
2016-02-25 16:52:26 CarlosLopez hell, my drug of choice was (once upon a time) tequila!
2016-02-25 16:52:33 @fsociety for me it was lsd
2016-02-25 16:52:33 @fsociety haha
2016-02-25 16:52:39 CarlosLopez couldn't stand the stuff, but it went down
2016-02-25 16:52:59 CarlosLopez hang on ... how does acid give tou some godawful stomach thing?
2016-02-25 16:53:04 CarlosLopez *you*
2016-02-25 16:53:17 @fsociety you'd be surprised, lsd in copious amount can fuck the stomach
2016-02-25 16:53:25 CarlosLopez never knew!
2016-02-25 16:53:29 @fsociety not to mention the mdma i took on certain bouts
2016-02-25 16:53:36 @fsociety fun then, not now
2016-02-25 16:53:40 CarlosLopez aye
2016-02-25 16:53:42 @fsociety now i just run and hide from it
2016-02-25 16:54:09 @fsociety now its cigarettes, but thanks to nic that will stop tomorrow
2016-02-25 16:54:29 CarlosLopez vaping instead? cold turkey? what?
2016-02-25 16:56:57 NicholasB i send him a spare vapekit i had
2016-02-25 16:57:02 NicholasB *sent
2016-02-25 16:57:06 NicholasB today.
2016-02-25 16:57:16 CarlosLopez nice
2016-02-25 16:57:17 NicholasB battery a few clearos and a fuckton of coils.
2016-02-25 16:57:22 NicholasB a few juices
2016-02-25 16:57:34 CarlosLopez are YOU giving up?
2016-02-25 16:57:42 NicholasB me no. a friend gave up gave me his stuff.
2016-02-25 16:57:53 CarlosLopez share and share alike - nice
2016-02-25 16:57:54 NicholasB but i use different batteries and stuff now. was not much use to me.
2016-02-25 16:58:06 CarlosLopez even better - decluttering
2016-02-25 16:58:09 NicholasB i took the juices kept the two heads i wanted
2016-02-25 16:58:42 NicholasB a lot of it was new. but to get it under 500 gms i killed some packaging :P
2016-02-25 17:03:50 Sean Holy shit after midnight you guys come out in force!
2016-02-25 17:07:09 @fsociety what you talking about willis? it aint midnight. ;)
2016-02-25 17:13:57 CarlosLopez it IS still a couple of hours before I leave work, though
2016-02-25 17:14:40 @fsociety what do yo do Carlos?
2016-02-25 17:14:53 CarlosLopez librarian. for my crimes.
2016-02-25 17:15:06 @fsociety thats right
2016-02-25 17:15:34 CarlosLopez And semester started this week, so we get all the newbs asking where the toilets are.
2016-02-25 17:15:36 @fsociety and your refusal to document everythng
2016-02-25 17:15:47 CarlosLopez well, yeah.
2016-02-25 17:16:02 @fsociety spoken like a true IT nerd
2016-02-25 17:16:04 @fsociety :)
2016-02-25 17:16:17 CarlosLopez one tries (though not very hard)
2016-02-25 17:16:45 @fsociety im just going home from work now, time to get some steam time in
2016-02-25 17:17:06 CarlosLopez Luck.
2016-02-25 17:17:07 @fsociety though the steam clients been a bit fucked since the new nvidia drivers
2016-02-25 17:17:24 @fsociety i think they fixed it in the new beta
2016-02-25 17:21:55 CarlosLopez (sorry I've only got an onboard card so I can't even play Cities Skylines)
2016-02-25 17:22:50 @fsociety i made a decision early last year that i will be console free. even sold my ps4
2016-02-25 17:35:01 CarlosLopez lofty golas!
2016-02-25 17:35:07 CarlosLopez or even goals!
2016-02-25 17:38:01 @fsociety so what does everyone have on for the weekend? anything exciting?
2016-02-25 17:41:42 CarlosLopez family stuff, then sleep
2016-02-25 17:44:23 AzzaMatazz Work and sleep. You?
2016-02-25 17:46:47 AzzaMatazz Ah Clarke and Dawe always funny
2016-02-25 17:53:38 @fsociety have to go ao 21st bday party which im not looking forward to. feeel oolldd
2016-02-25 17:54:03 @fsociety other than that probably watch some movies and play some video games
2016-02-25 18:12:37 CarlosLopez okay - bos is leaving now so I can fire up minecraft
2016-02-25 18:45:27 EricT Home is where the arse is...
2016-02-25 18:45:50 CarlosLopez home is still 2 hours away
2016-02-25 18:46:26 CarlosLopez Hey Eric, did you get your Mycroft yet?
2016-02-25 18:46:28 EricT It was 42' at work 2day thank the sky wizards for Aircon!
2016-02-25 18:46:43 CarlosLopez [wall wizards more likely]
2016-02-25 18:47:13 EricT Nah, still waiting, there was an update a couple of days agoe, but ddnt readit..
2016-02-25 18:47:52 EricT got no ener g y al l sap ped o ut o f m e !
2016-02-25 18:48:05 CarlosLopez veg, man
2016-02-25 18:48:22 EricT typing is hard, brah!
2016-02-25 18:51:29 EricT oops...thats the smart pi touch update,,,
2016-02-25 18:53:06 CarlosLopez looks interesting
2016-02-25 18:53:34 EricT Yeah, I thought it was a good deal and good track record.
2016-02-25 18:55:34 CarlosLopez Going back to what I'm doing this weekend, I've just printed out a paper: "On the reception and detection of pseudo-profound bullshit" (sounds like fun)
2016-02-25 18:56:09 EricT Substance!
2016-02-25 18:57:37 EricT My favourite quote of the week (about some copyleft evangelist); "a wannabe politician, trying to find a way to become important by peddling solutions to non-problems."
2016-02-25 18:58:02 CarlosLopez got some snark points there
2016-02-25 18:58:19 EricT lol, nice!
2016-02-25 19:03:37 AzzaMatazz Got any x-ray records? I'd never heard of them. Interesting stuff. https://youtu.be/XMCCYnDvpJQ
2016-02-25 19:07:02 NicholasB no. i wish.
2016-02-25 19:07:35 NicholasB though i do have russian never mind the bolloks heres the sex pistols russian edition just after the soviet union feel
2016-02-25 19:07:38 NicholasB *fell
2016-02-25 19:07:49 NicholasB which im happy with.
2016-02-25 19:14:03 AzzaMatazz That's pretty cool, does it have a different sleeve? Yeah I reckon collecting could easily get out of hand! I like records, but mine are under the house now.
2016-02-25 19:15:46 NicholasB it has the same sleeve but russian translations
2016-02-25 19:16:18 CarlosLopez Did you ... did you kill them?
2016-02-25 19:17:42 AzzaMatazz Ha, not that deep underneath. But if I hear one more click or pop....
2016-02-25 19:19:10 NicholasB <br><img id="7">
2016-02-25 19:19:12 NicholasB <br><img id="8">
2016-02-25 19:19:12 NicholasB <br><img id="9">
2016-02-25 19:19:25 NicholasB i posted these on a facebook group.
2016-02-25 19:19:31 NicholasB thought id share them.
2016-02-25 19:20:15 CarlosLopez Nice! They didn't translate (or even transliterate) the track listings
2016-02-25 19:21:04 NicholasB i did a google translate on it.
2016-02-25 19:21:06 EricT God save the queen. The fascist regime.
2016-02-25 19:21:09 NicholasB to get the blurb
2016-02-25 19:21:23 NicholasB they translated on the gover not the disc
2016-02-25 19:22:13 AzzaMatazz That's cool, I like the emblem with the Russian round it
2016-02-25 19:22:24 CarlosLopez sorry I meant on the disc label
2016-02-25 19:23:07 CarlosLopez Yeah. Good find Nick!
2016-02-25 19:23:34 NicholasB the internet. its great. ;)
2016-02-25 19:23:44 NicholasB digging for records in aus can be hard.
2016-02-25 19:27:00 CarlosLopez All right. Time to close up. As they say in the classics, "screw you guys; I'm going home"
2016-02-25 19:28:14 NicholasB night boss.
2016-02-25 19:28:16 NicholasB enjoys
2016-02-25 19:28:24 CarlosLopez later duds
2016-02-25 19:59:39 Moritz Enterprise Upgrade+Migration path: install ubuntu 12.04 → migrate zimbra → upgrade a zimbra → upgrade ubuntu → upgrade zimbra another million times
2016-02-25 20:17:54 PaulGleeson Morning chaps
2016-02-25 20:18:56 LachlanHolmes Howdy
2016-02-25 20:20:17 PaulGleeson How's she cutting?
2016-02-25 20:21:45 LachlanHolmes Nfi.🙃
2016-02-25 20:51:54 - irc: disconnected from server
2016-02-25 21:51:19 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 21:51:19 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 21:51:24 < root has kicked fsociety (Cleaning up channel)
2016-02-25 21:51:24 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 21:51:24 - Topic for ##systemau is "#systemau"
2016-02-25 21:51:24 - Topic set by root (root@localhost) on Thu, 25 Feb 2016 21:51:24
2016-02-25 21:51:24 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-25 21:51:24 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-25 21:51:24 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-25 21:51:24 > Adam (Adam@telegram) has joined ##systemau
2016-02-25 21:51:24 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-25 21:51:24 > Amir (Amir@telegram) has joined ##systemau
2016-02-25 21:51:24 > Angela (Angela@telegram) has joined ##systemau
2016-02-25 21:51:24 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-25 21:51:24 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-25 21:51:24 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-25 21:51:24 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-25 21:51:24 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-25 21:51:24 > emb (emb@telegram) has joined ##systemau
2016-02-25 21:51:24 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-25 21:51:24 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-25 21:51:24 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-25 21:51:24 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-25 21:51:24 > Joe (Joe@telegram) has joined ##systemau
2016-02-25 21:51:24 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-25 21:51:24 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-25 21:51:24 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-25 21:51:24 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-25 21:51:24 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-25 21:51:24 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-25 21:51:24 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-25 21:51:24 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-25 21:51:24 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-25 21:51:24 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-25 21:51:24 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-25 21:51:24 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-25 21:51:24 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-25 21:51:24 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-25 21:51:24 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-25 21:51:24 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-25 21:51:24 > Sean (Sean@telegram) has joined ##systemau
2016-02-25 21:51:24 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-25 21:51:24 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-25 21:51:24 > Tom (Tom@telegram) has joined ##systemau
2016-02-25 21:51:24 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-25 21:51:24 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-25 21:51:24 NicholasB [21:03:33] come on @wimpress i want that beta! :D
2016-02-25 21:51:24 NicholasB [21:03:39] beta beta beta
2016-02-25 21:51:24 PaulGleeson [21:03:49] Hi @enjayembee
2016-02-25 21:51:24 PaulGleeson [21:04:10] Looking good man, those glasses suit you
2016-02-25 21:51:24 NicholasB [21:04:11] hello paul.
2016-02-25 21:51:24 NicholasB [21:04:14] how are you tonioght.
2016-02-25 21:51:24 PaulGleeson [21:04:40] Good, less ventilated
2016-02-25 21:51:24 PaulGleeson [21:05:17] How's your evening
2016-02-25 21:51:24 NicholasB [21:08:15] not bad
2016-02-25 21:51:24 NicholasB [21:08:19] i wish i had a project
2016-02-25 21:51:24 NicholasB [21:08:29] but im sort of randomly broswing the net at a bit of a loose end.
2016-02-25 21:51:24 NicholasB [21:08:43] thus wanting the Beta. :P
2016-02-25 21:51:24 LachlanHolmes [21:09:32] silly question. but other the two "not dan"s im guessing dan is not in here:P
2016-02-25 21:51:24 PaulGleeson [21:09:34] Beta for Ubuntu mate?
2016-02-25 21:51:24 NicholasB [21:09:49] dan is in here.
2016-02-25 21:51:24 NicholasB [21:10:10] but he's been doing some non at home stuff for the last few days
2016-02-25 21:51:24 NicholasB [21:10:15] since you joined.
2016-02-25 21:51:24 NicholasB [21:10:35] not dan is not dan. he was dan but we all got confused and he voiluntarily changed it up
2016-02-25 21:51:24 LachlanHolmes [21:10:49] LOL ok
2016-02-25 21:51:24 NicholasB [21:10:49] thanks @mindtoker (not dan)
2016-02-25 21:51:24 NicholasB [21:11:03] yah
2016-02-25 21:51:24 PaulGleeson [21:11:07] Cool
2016-02-25 21:51:24 LachlanHolmes [21:11:07] so dan is not named dan in here?
2016-02-25 21:51:24 NicholasB [21:11:15] Yeah
2016-02-25 21:51:24 NicholasB [21:11:18] hes dan k
2016-02-25 21:51:24 PaulGleeson [21:11:26] He is @elChupaNibre
2016-02-25 21:51:24 NicholasB [21:11:31] that too
2016-02-25 21:51:24 PaulGleeson [21:11:49] So also a pretty good sobg
2016-02-25 21:51:24 NicholasB [21:11:50] if you give yourself a username people can @ you
2016-02-25 21:51:24 PaulGleeson [21:11:55] Song*
2016-02-25 21:51:24 PaulGleeson [21:12:06] Like this
2016-02-25 21:51:24 LachlanHolmes [21:12:08] ok so the second not dan is actually the real dan
2016-02-25 21:51:24 PaulGleeson [21:12:12] @peterthehermit hi peter
2016-02-25 21:51:24 LachlanHolmes [21:12:16] i have a user name
2016-02-25 21:51:24 PaulGleeson [21:12:27] @dibZr you there?
2016-02-25 21:51:24 LachlanHolmes [21:12:28] @dibZr see?
2016-02-25 21:51:24 LachlanHolmes [21:12:38] OH WHY YES YES I AM :P
2016-02-25 21:51:24 NicholasB [21:12:40] oops i missed it
2016-02-25 21:51:24 PeterMoynihan [21:12:42] Yo
2016-02-25 21:51:24 NicholasB [21:12:42] sorry boss
2016-02-25 21:51:24 NicholasB [21:12:53] Yello
2016-02-25 21:51:24 LachlanHolmes [21:12:56] it ok i only set up the user name like later yesterday
2016-02-25 21:51:24 PeterMoynihan [21:13:01] I just bought a hearing aid and a soldering iron :)
2016-02-25 21:51:24 PaulGleeson [21:13:07] How's she cuttin Peter
2016-02-25 21:51:24 PaulGleeson [21:13:10] Class
2016-02-25 21:51:24 PeterMoynihan [21:13:50] Grand yea man. I can hear properly for the first time in a few years.
2016-02-25 21:51:24 PeterMoynihan [21:14:11] That should stop the neighbours complaining about my subwoofer :)
2016-02-25 21:51:24 PaulGleeson [21:14:22] Sweet, so you going to hack it?
2016-02-25 21:51:24 PeterMoynihan [21:15:15] Defo gonna look into it man. Turns out you can get em on eBay too, so I might use the proper one as the control group.
2016-02-25 21:51:24 LachlanHolmes [21:15:44] you can hack a hearing aid? wow... learn something new.
2016-02-25 21:51:24 PeterMoynihan [21:16:06] Bluetooth module man. Benny hill theme in every meeting I'm forced to attend from now on :)
2016-02-25 21:51:24 PeterMoynihan [21:16:39] Gonna look into writing a pebble app for it
2016-02-25 21:51:24 EricT [21:16:45] Shit! its after 9pm, give us a break!
2016-02-25 21:51:24 EricT [21:16:45] http://i.imgur.com/cbaCkqh.png
2016-02-25 21:51:24 PaulGleeson [21:17:02] Have a look at the open source pebble app on fdroid
2016-02-25 21:51:24 PeterMoynihan [21:17:28] Gadgetbridge?
2016-02-25 21:51:24 PaulGleeson [21:17:44] Yeah
2016-02-25 21:51:24 PaulGleeson [21:18:17] Depends really how deep you vwant to go
2016-02-25 21:51:24 PaulGleeson [21:18:22] Want*
2016-02-25 21:51:24 PeterMoynihan [21:18:43] Gonna look at a watch app for the hearing device first
2016-02-25 21:51:24 PaulGleeson [21:18:50] Ok
2016-02-25 21:51:24 PeterMoynihan [21:18:58] Not done any C before so that'll be...interesting
2016-02-25 21:51:24 PaulGleeson [21:20:04] C is just fun
2016-02-25 21:51:24 LewisCividin [21:27:33] anyone use i3wm at all?
2016-02-25 21:51:24 LewisCividin [21:29:17] I'm going to give it a burl
2016-02-25 21:51:24 PaulGleeson [21:30:32] Its great
2016-02-25 21:51:24 PaulGleeson [21:31:05] I'm only not using lately because of gaming on windows
2016-02-25 21:51:24 NicholasB [21:31:10] getting a snapper rca plug out of an rca socet is harder than youd think
2016-02-25 21:51:24 NicholasB [21:31:45] *snapped
2016-02-25 21:51:24 PaulGleeson [21:34:00] Your in my prayers
2016-02-25 21:51:24 NicholasB [21:34:16] i gave up
2016-02-25 21:51:24 NicholasB [21:34:21] it was an old audio interface
2016-02-25 21:51:24 NicholasB [21:34:42] 15 minutes of digging and bending with recepts
2016-02-25 21:51:24 NicholasB [21:34:51] *forceps
2016-02-25 21:51:24 EricT [21:36:49] Finally got my freedomhating Fitbit to sync natively on the Linux! Woot!
2016-02-25 21:51:24 NicholasB [21:40:27] nice.
2016-02-25 21:51:24 NicholasB [21:40:29] how?
2016-02-25 21:51:24 NicholasB [21:40:39] do you have to download then decode
2016-02-25 21:51:24 NicholasB [21:40:56] or does it have a program that does on the fly reading
2016-02-25 21:51:24 EricT [21:46:57] just posted on G=
2016-02-25 21:51:24 EricT [21:47:01] G=
2016-02-25 21:51:24 EricT [21:47:05] G+
2016-02-25 21:51:24 EricT [21:47:14] farken heat!
2016-02-25 21:51:24 EricT [21:47:51] anyone here use fitbit?
2016-02-25 21:51:24 NicholasB [21:48:34] not any more i found the flex didnt count my steps well
2016-02-25 21:51:24 EricT [21:49:01] its coz you were dubstepping too much!😆
2016-02-25 21:51:24 NicholasB [21:49:03] like i'd be sitting at my computer watching movie and it would count 6000 steps
2016-02-25 21:51:24 NicholasB [21:49:08] in like 15 minutes.
2016-02-25 21:51:24 EricT [21:49:53] I found fitbit to be the most accurate ...did you put in your weight or Deans? lol
2016-02-25 21:51:24 NicholasB [21:50:10] ha.
2016-02-25 21:51:24 NicholasB i might have been making an off colour joke then. but it was inaccurate.
2016-02-25 21:51:24 NicholasB it always said i walked further than i did.
2016-02-25 21:51:24 NicholasB i put in on my non dominant wrist AND said it was dominant and i was walking more in my office job than a girl who i knew walked to work
2016-02-25 21:51:57 EricT I had a flex for 2 years, no probs, maybe yours was faulty, One thing Fitbit does is great service, you should ask for a replacement
2016-02-25 21:52:07 NicholasB nah. gave it too a mate.
2016-02-25 21:52:11 NicholasB didnt fuck up for him.
2016-02-25 21:52:14 NicholasB dont know why
2016-02-25 21:52:27 EricT your Aura is too dark?
2016-02-25 21:52:31 NicholasB either way my phone caputres distance fine
2016-02-25 21:52:40 NicholasB not steps but the bulk of my excericeise
2016-02-25 21:53:45 @fsociety LewisCividin: I use bspwm :)
2016-02-25 21:53:45 NicholasB right. off to bed.
2016-02-25 21:53:54 NicholasB having an earlyone,.
2016-02-25 21:53:58 NicholasB night fnlovers.
2016-02-25 21:53:59 @fsociety nighty sire
2016-02-25 21:55:20 EricT nye is nite...
2016-02-25 21:55:53 EricT ingore previous...Im Delirius
2016-02-25 21:56:49 LewisCividin I want a wearduino
2016-02-25 21:58:31 LewisCividin not heard of that one I'll look it up
2016-02-25 22:04:33 LewisCividin http://www.wearduino.org/
2016-02-25 22:05:08 LewisCividin but opensource fitness tracker sounds pretty cool
2016-02-25 22:10:50 EricT Very nice project!
2016-02-25 22:12:39 LewisCividin yeah it was on las guy seems really cool, he's a doctor I think. They're reallly slow with the updates on how they're doing though
2016-02-25 22:13:46 EricT All Wozs no Jobss, lol
2016-02-25 22:17:58 LewisCividin lol yeah haha
2016-02-25 22:18:46 EricT You alway need a "Marketing-Man" in projects in the real world
2016-02-25 22:23:10 PaulGleeson reloading
2016-02-25 22:26:08 EricT Locked n Loaded!
2016-02-25 22:27:13 LewisCividin bswpm looks pretty cool also
2016-02-25 22:27:23 LewisCividin bspwm
2016-02-25 22:28:23 PaulGleeson @lcividin https://www.youtube.com/watch?v=j1I63wGcvU4
2016-02-25 22:28:28 PaulGleeson Start there for i3
2016-02-25 22:28:33 LewisCividin cool
2016-02-25 22:28:37 LewisCividin Thanks Paul
2016-02-25 22:43:32 LewisCividin Ok Paul I'm pretty sold on i3 after part one
2016-02-25 22:43:38 LewisCividin thanks for that link
2016-02-25 22:44:05 PaulGleeson No problem
2016-02-25 23:44:20 - irc: disconnected from server
2016-02-25 23:45:25 > fsociety (whoami@localhost) has joined ##systemau
2016-02-25 23:45:25 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 00:00:46 < root has kicked fsociety (Cleaning up channel)
2016-02-26 00:00:46 > fsociety (whoami@localhost) has joined ##systemau
2016-02-26 00:00:46 - Topic for ##systemau is "#systemau"
2016-02-26 00:00:46 - Topic set by root (root@localhost) on Fri, 26 Feb 2016 00:00:46
2016-02-26 00:00:46 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 00:00:46 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-26 00:00:46 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-26 00:00:46 > Adam (Adam@telegram) has joined ##systemau
2016-02-26 00:00:46 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-26 00:00:46 > Amir (Amir@telegram) has joined ##systemau
2016-02-26 00:00:46 > Angela (Angela@telegram) has joined ##systemau
2016-02-26 00:00:46 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-26 00:00:46 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-26 00:00:46 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-26 00:00:46 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-26 00:00:46 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-26 00:00:46 > emb (emb@telegram) has joined ##systemau
2016-02-26 00:00:46 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-26 00:00:46 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-26 00:00:46 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-26 00:00:46 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-26 00:00:46 > Joe (Joe@telegram) has joined ##systemau
2016-02-26 00:00:46 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-26 00:00:46 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-26 00:00:46 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-26 00:00:46 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-26 00:00:46 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-26 00:00:46 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-26 00:00:46 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-26 00:00:46 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-26 00:00:46 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-26 00:00:46 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-26 00:00:46 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-26 00:00:46 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-26 00:00:46 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-26 00:00:46 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-26 00:00:46 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-26 00:00:46 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-26 00:00:46 > Sean (Sean@telegram) has joined ##systemau
2016-02-26 00:00:46 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-26 00:00:46 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-26 00:00:46 > Tom (Tom@telegram) has joined ##systemau
2016-02-26 00:00:46 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-26 00:00:46 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-26 00:00:46 Moritz Can you guys recommend a Groupware?
2016-02-26 00:01:52 - irc: disconnected from server
2016-02-26 00:02:40 > fsociety (whoami@localhost) has joined ##systemau
2016-02-26 00:02:40 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 00:06:32 @fsociety can anyone here get onto duckduckgo currently
2016-02-26 00:10:16 < root has kicked fsociety (Cleaning up channel)
2016-02-26 00:10:16 > fsociety (whoami@localhost) has joined ##systemau
2016-02-26 00:10:16 - Topic for ##systemau is "#systemau"
2016-02-26 00:10:16 - Topic set by root (root@localhost) on Fri, 26 Feb 2016 00:10:16
2016-02-26 00:10:16 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 00:10:16 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-26 00:10:16 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-26 00:10:16 > Adam (Adam@telegram) has joined ##systemau
2016-02-26 00:10:16 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-26 00:10:16 > Amir (Amir@telegram) has joined ##systemau
2016-02-26 00:10:16 > Angela (Angela@telegram) has joined ##systemau
2016-02-26 00:10:16 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-26 00:10:16 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-26 00:10:16 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-26 00:10:16 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-26 00:10:16 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-26 00:10:16 > emb (emb@telegram) has joined ##systemau
2016-02-26 00:10:16 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-26 00:10:16 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-26 00:10:16 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-26 00:10:16 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-26 00:10:16 > Joe (Joe@telegram) has joined ##systemau
2016-02-26 00:10:16 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-26 00:10:16 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-26 00:10:16 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-26 00:10:16 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-26 00:10:16 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-26 00:10:16 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-26 00:10:16 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-26 00:10:16 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-26 00:10:16 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-26 00:10:16 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-26 00:10:16 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-26 00:10:16 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-26 00:10:16 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-26 00:10:16 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-26 00:10:16 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-26 00:10:16 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-26 00:10:16 > Sean (Sean@telegram) has joined ##systemau
2016-02-26 00:10:16 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-26 00:10:16 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-26 00:10:16 > Tom (Tom@telegram) has joined ##systemau
2016-02-26 00:10:16 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-26 00:10:16 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-26 00:18:19 PaulGleeson A what?
2016-02-26 00:23:11 @fsociety duckduckgo
2016-02-26 00:23:13 @fsociety i cant get there
2016-02-26 00:33:23 @fsociety never mind it came back up .. wooo
2016-02-26 00:37:08 Moritz http://ddg.gg
2016-02-26 04:15:53 PeterMoynihan I've done some research....
2016-02-26 04:16:07 PeterMoynihan I think I can hack into other peoples' hearing aids
2016-02-26 04:16:47 PeterMoynihan I reckon there'll be a lot of old ladies hearing megadeath on the bus
2016-02-26 04:22:36 PaulGleeson Peter your my spirit animal
2016-02-26 05:17:24 Moritz <br><img id="2"><br>Let's spread the word to the developers that this is a much-requested feature!
2016-02-26 05:17:24 Moritz Help and share this message with your groups, channels etc.!
2016-02-26 05:17:54 Moritz Do you need this feature?
2016-02-26 06:01:40 - irc: disconnected from server
2016-02-26 06:49:00 > fsociety (whoami@localhost) has joined ##systemau
2016-02-26 06:49:00 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 06:49:02 < root has kicked fsociety (Cleaning up channel)
2016-02-26 06:49:02 > fsociety (whoami@localhost) has joined ##systemau
2016-02-26 06:49:02 - Topic for ##systemau is "#systemau"
2016-02-26 06:49:02 - Topic set by root (root@localhost) on Fri, 26 Feb 2016 06:49:02
2016-02-26 06:49:02 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-26 06:49:02 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-26 06:49:02 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-26 06:49:02 > Adam (Adam@telegram) has joined ##systemau
2016-02-26 06:49:02 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-26 06:49:02 > Amir (Amir@telegram) has joined ##systemau
2016-02-26 06:49:02 > Angela (Angela@telegram) has joined ##systemau
2016-02-26 06:49:02 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-26 06:49:02 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-26 06:49:02 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-26 06:49:02 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-26 06:49:02 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-26 06:49:02 > emb (emb@telegram) has joined ##systemau
2016-02-26 06:49:02 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-26 06:49:02 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-26 06:49:02 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-26 06:49:02 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-26 06:49:02 > Joe (Joe@telegram) has joined ##systemau
2016-02-26 06:49:02 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-26 06:49:02 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-26 06:49:02 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-26 06:49:02 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-26 06:49:02 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-26 06:49:02 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-26 06:49:02 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-26 06:49:02 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-26 06:49:02 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-26 06:49:02 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-26 06:49:02 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-26 06:49:02 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-26 06:49:02 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-26 06:49:02 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-26 06:49:02 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-26 06:49:02 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-26 06:49:02 > Sean (Sean@telegram) has joined ##systemau
2016-02-26 06:49:02 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-26 06:49:02 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-26 06:49:02 > Tom (Tom@telegram) has joined ##systemau
2016-02-26 06:49:02 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-26 06:49:02 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-26 06:49:02 Moritz [06:25:36] teaser
2016-02-26 06:49:02 Moritz [06:25:36] https://www.youtube.com/watch?v=3wC7XjH-pTQ&hd=1
2016-02-26 06:49:04 Moritz [06:25:46] <br><img id="2">
2016-02-26 06:49:06 - Mode ##systemau [+t]
2016-02-26 07:12:20 NicholasB I would use that feature.
2016-02-26 07:12:37 NicholasB I think telegram is great but there are some UI changes that would be useful.
2016-02-26 07:14:10 @fsociety i forgot telegram had a UI. haha
2016-02-26 07:14:19 @fsociety if i get the vape today i'll tell you btw
2016-02-26 07:16:04 NicholasB you should do I sent it express post
2016-02-26 07:17:01 @fsociety oooooooo.... do you have a tracking number
2016-02-26 07:17:59 @fsociety i found this today.. makes vim super special :)
2016-02-26 07:18:01 @fsociety http://vim.spf13.com/
2016-02-26 08:31:37 MartinWimpress SPAM!
2016-02-26 08:31:39 MartinWimpress https://ubuntu-mate.org/blog/ubuntu-mate-xenial-beta1/
2016-02-26 08:32:01 NicholasB I was refreshing all night last night
2016-02-26 08:32:16 NicholasB thanks martin.
2016-02-26 08:32:23 NicholasB you're swell
2016-02-26 08:32:31 PaulGleeson Thanks man, I'm trying to give up emacs
2016-02-26 08:44:33 CarlosLopez urrrrgh
2016-02-26 08:44:46 PaulGleeson ?
2016-02-26 08:45:04 CarlosLopez yeah. it's pre-coffee-carlos for good morning.
2016-02-26 08:45:13 CarlosLopez just call me zombie boy
2016-02-26 08:45:30 NicholasB hi zombie boy
2016-02-26 08:45:35 CarlosLopez urrrgh
2016-02-26 09:05:21 @fsociety best way is to never get into emacs
2016-02-26 09:05:31 @fsociety and no probs
2016-02-26 09:05:42 PaulGleeson But it does everything
2016-02-26 09:06:00 PaulGleeson And it loves me until I forget how it likes its eggs
2016-02-26 09:07:03 @fsociety does richard stallman yell at you everytime you leave whitespace
2016-02-26 09:07:36 PaulGleeson He apologises the morning after
2016-02-26 09:07:53 CarlosLopez THAT woke me up!
2016-02-26 09:08:14 PaulGleeson Your welcome
2016-02-26 09:10:03 @fsociety haha.. you can respond "look RMS, it isn't you .. it's me"
2016-02-26 09:10:48 PaulGleeson Oh he knows
2016-02-26 09:21:54 @fsociety haha
2016-02-26 09:22:14 NicholasB odd question. I haven't had a swap partition on a pc for the past few years
2016-02-26 09:22:21 @fsociety neither have i
2016-02-26 09:22:31 NicholasB am I the only one who daesnt bother any more
2016-02-26 09:22:35 NicholasB ohh good
2016-02-26 09:22:51 CarlosLopez do you find that some apps crash? Or do you have like 16Gb of RAM?
2016-02-26 09:22:53 @fsociety i think it is only relevent if you have small amounts of ram, or maybe run lots of vms
2016-02-26 09:22:59 @fsociety i have 32gb
2016-02-26 09:23:03 NicholasB I have 8 gig in my laptop
2016-02-26 09:23:10 NicholasB and 16 on my desktop
2016-02-26 09:23:19 NicholasB and all ssd
2016-02-26 09:23:28 @fsociety even when i had 8gb it rarely used any swap
2016-02-26 09:23:38 NicholasB I originally did it because my first ssd was first gen and small
2016-02-26 09:23:38 @fsociety i think if the steam client went 64bit that would change a lot of things
2016-02-26 09:23:42 NicholasB didn't want to wear it
2016-02-26 09:24:27 CarlosLopez You mean to say I could have 8Gb more porn by not having <swap>?
2016-02-26 09:24:47 NicholasB yes
2016-02-26 09:25:10 NicholasB if you run msdos double space yau could have 16 gig
2016-02-26 09:46:09 @fsociety there was another competitive product to that
2016-02-26 09:46:11 @fsociety gonna find it
2016-02-26 09:47:42 NicholasB it think it was a Norton product
2016-02-26 09:47:51 NicholasB possibly called drive space
2016-02-26 09:49:55 @fsociety superstor
2016-02-26 09:50:02 @fsociety it was part of dr-dos 6.0
2016-02-26 09:50:13 CarlosLopez sounds like the title of some mid-80s straight-to-video scifi movie
2016-02-26 09:50:16 @fsociety which my dad bought cause he wanted an alternative to microsofts ms-dos
2016-02-26 09:50:23 @fsociety here have an ms-dos manual
2016-02-26 09:50:40 @fsociety http://www.thelegacypcproject.com/MS-Dos%206%20Concise%20User's%20Guide.pdf
2016-02-26 09:55:28 NicholasB ohhhh double space was renamed to drive space
2016-02-26 09:56:36 @fsociety yeah microsoft bought the tech
2016-02-26 09:56:50 @fsociety i remember using all of them, and remember very clearly how slow my hdd's became after doing it
2016-02-26 09:56:57 NicholasB yeah but it wasn't called drive space till 95
2016-02-26 09:57:06 NicholasB double space was on dos only
2016-02-26 09:57:23 @fsociety dr-dos 6.0 had an awesome shell to it
2016-02-26 09:57:26 @fsociety i'll find a picture of it
2016-02-26 09:58:30 @fsociety http://www.seasip.info/Gem/History/viewmax1.png
2016-02-26 09:58:53 NicholasB nice.
2016-02-26 09:59:02 NicholasB I still dn't think you can beat xtree gold
2016-02-26 10:00:35 CarlosLopez now THERE's a name I haven't heard in years
2016-02-26 10:00:44 CarlosLopez probably why I like MC now
2016-02-26 10:02:23 NicholasB yeah I've been known to use MC on my netbook
2016-02-26 10:02:35 NicholasB in a concerted efforht to keep it snappy
2016-02-26 10:05:03 @fsociety go ranger
2016-02-26 10:05:17 @fsociety in ranger you can have inline image preview like w3m but all console
2016-02-26 10:05:38 CarlosLopez ranger's nice, but I haven't spent enough time on it to be comfortable yet
2016-02-26 10:05:59 @fsociety https://github.com/hut/ranger.git
2016-02-26 10:06:10 @fsociety dotshare.it has a ton of configs and themes for it
2016-02-26 10:06:17 Moritz https://www.youtube.com/watch?v=DkYHNO2vNG4
2016-02-26 10:07:35 CarlosLopez fedora's got it as a package too
2016-02-26 10:08:06 CarlosLopez Thanks Dean - I'll have a look
2016-02-26 10:12:13 NicholasB any one here have an idea of how much bandwith citrix needs for a less than hd desktop?
2016-02-26 10:14:12 CarlosLopez sorry no - though I can tell you I absolutely DETEST all the citrix-connected library management systems out there (mostly because they all seem to be beased out of the US and are horribly slow)
2016-02-26 10:14:27 CarlosLopez *based*, of course
2016-02-26 10:14:29 NicholasB we have a local server at work
2016-02-26 10:14:37 CarlosLopez that sounds nicer
2016-02-26 10:14:38 NicholasB but i'd kill to use linux
2016-02-26 10:15:02 NicholasB so I was thinking I could bring my laptop in and just tether to my phone
2016-02-26 10:15:15 NicholasB and run the citrix session on that
2016-02-26 10:15:27 CarlosLopez if it's local, why not just terminal services?
2016-02-26 10:15:45 NicholasB im not allowed to use chrome
2016-02-26 10:15:54 NicholasB there is no way I would have acces to thant
2016-02-26 10:16:01 NicholasB locked town to the hilt
2016-02-26 10:16:10 CarlosLopez ah. Oh, yeah, you're stuck with IE (or whatever they're calling it now)
2016-02-26 10:16:11 NicholasB nat even allowed to change the wallpaper
2016-02-26 10:17:44 NicholasB just be nice to freely use a computer and still get my work done
2016-02-26 10:18:17 NicholasB I have 6gig on my phone and it's only 10 buck for an extra gig
2016-02-26 10:20:35 CarlosLopez so you'd use your phone (tethered) to connect your laptop (running Ubuntu) to your work's citrix server - should work, I guess. The Citrix client shouldn't be too resource-intensive.
2016-02-26 10:21:27 NicholasB yeah its not resource intensive. just don't want to use 500 meg a day on citrix
2016-02-26 10:22:15 CarlosLopez oh. Not sure then.
2016-02-26 10:22:15 NicholasB I could prob get away with using the web mail in browsor and just use citrix for an hour a day actually.
2016-02-26 10:22:16 NicholasB hmm
2016-02-26 10:22:44 CarlosLopez Will they let you bring in your laptop and connect to the lan?
2016-02-26 10:23:53 NicholasB nope
2016-02-26 10:24:01 CarlosLopez ouch.
2016-02-26 10:24:14 NicholasB but I can get permission for external citrix access
2016-02-26 10:25:55 CarlosLopez yeah but then you're paying for the bandwidth. grrr.
2016-02-26 10:26:49 NicholasB I get bored at work
2016-02-26 10:28:15 CarlosLopez I take it you also can't run portable apps (http://portableapps.com/)?
2016-02-26 10:28:27 NicholasB not anymore
2016-02-26 10:28:30 CarlosLopez damn
2016-02-26 10:28:36 NicholasB could when we were running xp
2016-02-26 10:28:46 NicholasB I was all over portable apps
2016-02-26 10:29:01 NicholasB had some great tools that made life easier
2016-02-26 10:29:09 CarlosLopez aye!
2016-02-26 10:44:32 EricT For all your webbased x86 emulation
2016-02-26 10:44:32 EricT http://copy.sh/v86/
2016-02-26 10:58:40 NicholasB this is cool!
2016-02-26 11:13:00 AlanPope Ooh there is a parcel here
2016-02-26 11:13:11 AlanPope I haven't opened it yet
2016-02-26 11:13:47 NicholasB I wonder what it is?
2016-02-26 11:13:56 AlanPope :)
2016-02-26 11:17:33 CarlosLopez if it's burning, don't step on it
2016-02-26 11:18:03 NicholasB that mixtape is on fire!
2016-02-26 11:26:21 EricT Burning down the House! 365 degrees!
2016-02-26 11:45:52 CarlosLopez afk
2016-02-26 12:03:02 @fsociety finally after irritating nic for an hour, got the thing together - the vap that is
2016-02-26 12:56:21 TristanJames No more darts then @F_s0c1ety ?
2016-02-26 12:56:58 EricT can I scab a durrie of you? LOL
2016-02-26 12:57:42 TristanJames got a spare cancer stick?
2016-02-26 12:58:15 EricT a spare fagg?
2016-02-26 12:59:49 EricT just let me cough up a bit of lung-custard...
2016-02-26 13:00:17 TristanJames throat oysters
2016-02-26 13:00:34 TristanJames i think i just made myself spew a little
2016-02-26 13:00:50 EricT pushed to 11
2016-02-26 14:11:43 CarlosLopez I vote Fridays be cut by about 4 hours
2016-02-26 14:12:17 NicholasB i like fridays
2016-02-26 14:12:24 NicholasB you know they are going to end!
2016-02-26 14:12:36 CarlosLopez me too - i just don't like working fridays
2016-02-26 14:26:25 Sean I say we just go to 4 8-hour day work weeks.
2016-02-26 14:28:01 Sean Or just getting paid for doing things we love to do.
2016-02-26 14:28:35 Sean I've met a couple of those people. They seem to like their lives :)
2016-02-26 14:28:52 CarlosLopez Indeed! Looking forward to it
2016-02-26 15:09:44 LachlanHolmes My crowning achievement for my PC at work was I got the x2go client installed / unzipped the installer to my c:\users\lachlan\x2go\ folder and then pinned it to me start bar. Then setup a antergos vm at home or DO would work too and then x2go'd onto the desktop there and enjoy your home Internet connection or DO connt via a SSH encrypted session. 😄 if your corporate firewall doesn't like you going out on port 22 then
2016-02-26 15:09:44 LachlanHolmes change your SSH server to run on port 443 or run sslh in a docker on the VM.
2016-02-26 15:54:14 LewisCividin I need better networking knowledge I suck at network troubleshooting
2016-02-26 15:55:36 CarlosLopez what seems to be the problem?
2016-02-26 15:56:12 LewisCividin I don't know
2016-02-26 15:56:15 LewisCividin haha
2016-02-26 15:56:34 CarlosLopez ok, let me rephrase. What isn't happening that should?
2016-02-26 15:56:40 CarlosLopez be?
2016-02-26 15:57:02 LewisCividin reboot fixes the router but it just freezes or a disconnect from it. I reboot it and lose the logs
2016-02-26 15:58:24 LewisCividin The router doesn't seem to have to function to send them anywhere.
2016-02-26 15:58:46 CarlosLopez What sort of router are talking about?
2016-02-26 15:58:53 CarlosLopez *are we*
2016-02-26 15:59:02 LewisCividin but I've no idea why it stops working firmware is up to date and it stops ethernet and wifi
2016-02-26 15:59:12 LewisCividin Fritzbox 7940
2016-02-26 15:59:44 CarlosLopez hang on
2016-02-26 16:14:42 CarlosLopez It looks as though the fritzbox can send logs by email (http://goo.gl/KYS2sS) - have you aready set this up?
2016-02-26 16:18:05 LewisCividin yeah
2016-02-26 16:18:39 LewisCividin but it doesn't give me anything useful as it doesn't send an email before it locks up
2016-02-26 16:18:46 LewisCividin I think it might just be heat
2016-02-26 16:19:39 LewisCividin I wish it had like a serial connection that I could plug in to see if it was alive at all
2016-02-26 16:19:48 LewisCividin or just completely hardlocked
2016-02-26 16:20:16 LewisCividin but it drops wifi and looks like dhcp drops out
2016-02-26 16:20:37 LewisCividin next time it does it I'll set a static ip and see if I can log in with ehternet
2016-02-26 16:21:03 LewisCividin didn't think of that just got the shits and pulled the power lol
2016-02-26 16:22:29 CarlosLopez yeah, doesn't sound promising. You might want to start saving up for a new router.
2016-02-26 16:25:06 LewisCividin wasn't cheap that thing be sprewing if its faulty
2016-02-26 20:11:52 EricT Skype is dead! Long Live Skype!....on Linux
2016-02-26 20:11:52 EricT http://gadgets.ndtv.com/apps/news/skype-for-linux-reportedly-facing-issues-microsoft-accused-of-neglecting-os-806386
2016-02-26 21:48:52 AlanPope https://twitter.com/popey/status/703169186197954562
2016-02-26 21:48:53 AlanPope \o/
2016-02-26 21:49:23 MartinWimpress 😃
2016-02-26 21:54:08 PaulGleeson Dust for prints.
2016-02-26 22:12:37 EricT Gets tape jam in the old Ford Escort's Cassette-radio! 😋
2016-02-26 22:14:51 PaulGleeson Extract radio from escort add to tape collection
2016-02-26 22:41:02 EricT Get's Bodie from The Professionals to put into his Capri's Cassette-radio.😌
2016-02-27 01:18:05 PaulGleeson http://imgur.com/gallery/N06Mp
2016-02-27 01:18:15 PaulGleeson This is a pretty interesting album
2016-02-27 02:08:21 MartinWimpress England is small. This has advantages. During my lunch break today, I popped over to @popeydc house for a chat, a cup of tea and to pick up the #systemau cassette tape @enjayembee shipped over 😀
2016-02-27 02:24:48 AlanPope Small, small S M ALL.
2016-02-27 02:24:51 AlanPope What's that from
2016-02-27 02:25:12 AlanPope https://www.youtube.com/watch?v=lag73IP2CPY
2016-02-27 02:25:14 AlanPope there :)
2016-02-27 02:25:21 PaulGleeson The gif search
2016-02-27 02:25:26 PaulGleeson 😘
2016-02-27 07:20:40 Moritz The raspberry 3 (or what ever the name) will have wifi: https://apps.fcc.gov/oetcf/eas/reports/ViewExhibitReport.cfm?mode=Exhibits&calledFromFrame=N&application_id=Ti%2FYleaJNSl%2BTR5mL5C0WQ%3D%3D&fcc_id=2ABCB-RPI32
2016-02-27 07:23:51 TristanJames Awesome. This might convince me to make the doorbell/security camera I've wanted for a while.
2016-02-27 07:25:20 Moritz Found the name: Product Name: Raspberry Pi 3, Model B Uncased Version
2016-02-27 07:26:05 TristanJames It's their 'birthday' on Monday, could it be announced then?
2016-02-27 07:47:22 Moritz https://www.youtube.com/watch?v=E-lq2ErdlXY
2016-02-27 08:00:22 PaulGleeson Evening
2016-02-27 08:01:19 PaulGleeson Ireland is earning its stereotype tonight
2016-02-27 08:08:12 Moritz If you love numbers, abrivations and great advertising shots, then you will LOVE this video:
2016-02-27 08:08:12 Moritz https://www.youtube.com/watch?v=mV0eA58olBQ
2016-02-27 08:58:05 Moritz The last minute is just EGNOS, EGNOS, EGNOS and EGNOS!
2016-02-27 10:46:13 @fsociety morning
2016-02-27 10:46:19 @fsociety how is everyone this morning
2016-02-27 10:46:40 Moritz https://imgur.com/gallery/MkopN
2016-02-27 10:46:51 - irc: disconnected from server
2016-02-27 10:46:55 > fsociety (whoami@localhost) has joined ##systemau
2016-02-27 10:46:55 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-27 10:47:08 < root has kicked fsociety (Cleaning up channel)
2016-02-27 10:47:08 > fsociety (whoami@localhost) has joined ##systemau
2016-02-27 10:47:08 - Topic for ##systemau is "#systemau"
2016-02-27 10:47:08 - Topic set by root (root@localhost) on Sat, 27 Feb 2016 10:47:08
2016-02-27 10:47:08 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-27 10:47:08 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-27 10:47:08 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-27 10:47:08 > Adam (Adam@telegram) has joined ##systemau
2016-02-27 10:47:08 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-27 10:47:08 > Amir (Amir@telegram) has joined ##systemau
2016-02-27 10:47:08 > Angela (Angela@telegram) has joined ##systemau
2016-02-27 10:47:08 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-27 10:47:08 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-27 10:47:08 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-27 10:47:08 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-27 10:47:08 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-27 10:47:08 > emb (emb@telegram) has joined ##systemau
2016-02-27 10:47:08 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-27 10:47:08 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-27 10:47:08 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-27 10:47:08 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-27 10:47:08 > Joe (Joe@telegram) has joined ##systemau
2016-02-27 10:47:08 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-27 10:47:08 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-27 10:47:08 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-27 10:47:08 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-27 10:47:08 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-27 10:47:08 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-27 10:47:08 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-27 10:47:08 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-27 10:47:08 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-27 10:47:08 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-27 10:47:08 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-27 10:47:08 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-27 10:47:08 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-27 10:47:08 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-27 10:47:08 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-27 10:47:08 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-27 10:47:08 > Sean (Sean@telegram) has joined ##systemau
2016-02-27 10:47:08 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-27 10:47:08 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-27 10:47:08 > Tom (Tom@telegram) has joined ##systemau
2016-02-27 10:47:08 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-27 10:47:08 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-27 10:47:08 Moritz My morning is very dark. Maybe because its an hour after midnight.
2016-02-27 10:48:02 @fsociety haha, the best type of morning
2016-02-27 10:51:48 EricT Coffeetime..
2016-02-27 11:15:05 Moritz Quality post: https://imgur.com/gallery/KdHod
2016-02-27 11:22:06 @fsociety i'm playing around with nodejs today, found an amazing ncurses library - so im created a cool ncurses display login manager for myself
2016-02-27 11:22:39 @fsociety https://github.com/chjj/blessed
2016-02-27 11:22:56 @fsociety https://github.com/yaronn/blessed-contrib
2016-02-27 11:33:11 Moritz Rewatching and this is still great: https://www.youtube.com/watch?v=HNPRad65-Kg
2016-02-27 11:34:06 Moritz Thats amazing. Are there applications that already use that?
2016-02-27 11:35:53 @fsociety im not sure, but man im using it right now :)
2016-02-27 11:36:04 @fsociety going to write an update manager for myself as well
2016-02-27 11:36:14 @fsociety gentoo/funtoo unfortunately has no really good ones
2016-02-27 11:39:28 EricT Dont break the internet again, Dean!
2016-02-27 11:40:23 @fsociety hahaha
2016-02-27 11:40:27 @fsociety i'll try not too
2016-02-27 11:40:59 Joe @enjayembee thanks for the tape. Haven't got it yet and have no idea how I'll play it but thanks
2016-02-27 11:41:21 NicholasB Np!
2016-02-27 11:41:25 @fsociety be prepared to be transported to 1985
2016-02-27 11:42:07 Moritz What is the difference between a framework and a toolkit?
2016-02-27 11:42:34 @fsociety not a lot
2016-02-27 11:42:43 @fsociety framework is a bit more low level i'd imagine
2016-02-27 11:43:03 @fsociety toolkit would have an easier module base
2016-02-27 11:49:19 Moritz Thanks for the explanation!
2016-02-27 11:49:59 @fsociety :) no probs
2016-02-27 19:55:28 > fsociety (whoami@localhost) has joined ##systemau
2016-02-27 19:55:28 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-27 19:55:31 < root has kicked fsociety (Cleaning up channel)
2016-02-27 19:55:31 > fsociety (whoami@localhost) has joined ##systemau
2016-02-27 19:55:31 - Topic for ##systemau is "#systemau"
2016-02-27 19:55:31 - Topic set by root (root@localhost) on Sat, 27 Feb 2016 19:55:31
2016-02-27 19:55:31 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-02-27 19:55:31 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-02-27 19:55:31 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-02-27 19:55:31 > Adam (Adam@telegram) has joined ##systemau
2016-02-27 19:55:31 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-02-27 19:55:31 > Amir (Amir@telegram) has joined ##systemau
2016-02-27 19:55:31 > Angela (Angela@telegram) has joined ##systemau
2016-02-27 19:55:31 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-02-27 19:55:31 > BenB (Ben_B@telegram) has joined ##systemau
2016-02-27 19:55:31 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-02-27 19:55:31 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-02-27 19:55:31 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-02-27 19:55:31 > emb (emb@telegram) has joined ##systemau
2016-02-27 19:55:31 > EricT (Eric_T@telegram) has joined ##systemau
2016-02-27 19:55:31 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-02-27 19:55:31 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-02-27 19:55:31 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-02-27 19:55:31 > Joe (Joe@telegram) has joined ##systemau
2016-02-27 19:55:31 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-02-27 19:55:31 > Kyle (Kyle@telegram) has joined ##systemau
2016-02-27 19:55:31 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-02-27 19:55:31 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-02-27 19:55:31 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-02-27 19:55:31 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-02-27 19:55:31 > Moritz (Moritz@telegram) has joined ##systemau
2016-02-27 19:55:31 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-02-27 19:55:31 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-02-27 19:55:31 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-02-27 19:55:31 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-02-27 19:55:31 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-02-27 19:55:31 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-02-27 19:55:31 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-02-27 19:55:31 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-02-27 19:55:31 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-02-27 19:55:31 > Sean (Sean@telegram) has joined ##systemau
2016-02-27 19:55:31 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-02-27 19:55:31 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-02-27 19:55:31 > Tom (Tom@telegram) has joined ##systemau
2016-02-27 19:55:31 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-02-27 19:55:31 > WestOz (West_Oz@telegram) has joined ##systemau
2016-02-27 19:55:31 TristanJames [13:03:24] http://www.shitbarideas.xyz/
2016-02-27 19:55:31 NicholasB [13:41:14] All those ideas are great
2016-02-27 19:55:31 TristanJames [14:07:54] I thought you'd like that @enjayembee
2016-02-27 19:55:31 Moritz [14:47:57] Does Debian get more professional over time? Less failing and circular dependencies etc.
2016-02-27 19:55:31 Moritz [14:47:57] http://layer-acht.org/thinking/blog/20160219-debian-has-50k-binary-packages-in-main-sid/
2016-02-27 19:55:31 LewisCividin [15:53:57] Damn it's hot
2016-02-27 19:55:31 TristanJames [15:58:27] Are you doing a me @kloinka ?
2016-02-27 19:55:31 NicholasB [16:34:55] ha
2016-02-27 19:55:31 NicholasB [16:34:59] i did it today
2016-02-27 19:55:31 NicholasB [16:35:10] i bet they fix it with the next update
2016-02-27 19:55:31 EricT [16:38:25] Lol
2016-02-27 19:55:31 EricT [16:38:46] Pocket recording
2016-02-27 19:55:31 EricT [17:33:51] soon @F_s0c1ety
2016-02-27 19:55:34 - Mode ##systemau [+t]
2016-02-27 19:55:42 EricT [17:33:51] <br><img id="2">
2016-02-27 19:55:42 NicholasB [19:42:11] <br><img id="3">
2016-02-27 19:55:42 NicholasB [19:42:29] clearly a throw away file name.
2016-02-27 19:55:42 TristanJames [19:50:53] That's almost as good about the comment about there being flat earthers all around the globe.
2016-02-27 19:55:42 TristanJames [19:54:16] that fuck off sydney chant really comes across loud on tv doesnt it
2016-02-27 20:00:22 TristanJames oops
2016-02-27 20:00:25 TristanJames wrong chat
2016-02-27 20:00:37 TristanJames deleted it now
2016-02-27 20:00:55 NicholasB hahaha
2016-02-27 20:00:59 NicholasB it only deletes on yours
2016-02-27 20:01:02 NicholasB but all good
2016-02-27 20:04:04 TristanJames lol
2016-02-27 21:12:49 Joe Boats n hoes
2016-02-27 21:16:04 Joe http://i.imgur.com/IxBddkB.jpg
2016-02-27 22:41:54 EricT The sun only shines out my ass!
2016-02-27 23:28:35 EricT Apparently Intel is getting on the Convergence-esque bandwagon!
2016-02-27 23:28:35 EricT http://thevarguy.com/open-source-application-software-companies/intel-unveils-android-phones-can-also-run-debian-gnulinux
2016-02-28 00:17:03 PaulGleeson Got any of that warm weather?
2016-02-28 00:18:16 EricT Its only 23' at midnight...quite mild here..
2016-02-28 00:18:39 PaulGleeson Its 3 here
2016-02-28 00:19:29 EricT can we meet half way?
2016-02-28 00:37:43 Moritz http://i.imgur.com/QUj7tRb.gifv
2016-02-28 05:09:50 Moritz If windows 10 was a linux distro we would all complain how inconsistent it is. How cobbled together and combining at least 3 different desktop/generations of toolskits etc.
2016-03-01 08:57:42 > fsociety (whoami@localhost) has joined ##systemau
2016-03-01 08:57:42 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-01 08:57:45 < root has kicked fsociety (Cleaning up channel)
2016-03-01 08:57:45 > fsociety (whoami@localhost) has joined ##systemau
2016-03-01 08:57:45 - Topic for ##systemau is "#systemau"
2016-03-01 08:57:45 - Topic set by root (root@localhost) on Tue, 01 Mar 2016 08:57:45
2016-03-01 08:57:45 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-01 08:57:45 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-01 08:57:45 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-01 08:57:45 > Adam (Adam@telegram) has joined ##systemau
2016-03-01 08:57:45 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-01 08:57:45 > Amir (Amir@telegram) has joined ##systemau
2016-03-01 08:57:45 > Angela (Angela@telegram) has joined ##systemau
2016-03-01 08:57:45 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-01 08:57:45 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-01 08:57:45 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-01 08:57:45 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-01 08:57:45 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-01 08:57:45 > emb (emb@telegram) has joined ##systemau
2016-03-01 08:57:45 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-01 08:57:45 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-01 08:57:45 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-01 08:57:45 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-01 08:57:45 > Joe (Joe@telegram) has joined ##systemau
2016-03-01 08:57:45 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-01 08:57:45 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-01 08:57:45 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-01 08:57:45 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-01 08:57:45 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-01 08:57:45 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-01 08:57:45 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-01 08:57:45 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-01 08:57:45 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-01 08:57:45 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-01 08:57:45 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-01 08:57:45 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-01 08:57:45 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-01 08:57:45 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-01 08:57:45 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-01 08:57:45 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-01 08:57:45 > Sean (Sean@telegram) has joined ##systemau
2016-03-01 08:57:45 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-01 08:57:45 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-01 08:57:45 > Tom (Tom@telegram) has joined ##systemau
2016-03-01 08:57:45 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-01 08:57:45 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-01 08:57:45 EricT [2016-02-28 12:21:21] Massive sleepin! I feel like a teenager again! ....GF wont let me have one :-(
2016-03-01 08:57:45 PaulGleeson [2016-02-28 12:28:21] One what?
2016-03-01 08:57:45 EricT [2016-02-28 12:29:10] Its just lame joke.....
2016-03-01 08:57:45 EricT [2016-02-28 12:30:33] Damn Telegram hecklers! lol'
2016-03-01 08:57:45 NicholasB [2016-02-28 12:35:37] hahahahah
2016-03-01 08:57:45 Moritz [2016-02-28 12:37:13] What are hecklers? (My first association was a german export).
2016-03-01 08:57:45 NicholasB [2016-02-28 12:37:45] People who yell things at perfromers. Most commonly comedians.
2016-03-01 08:57:45 EricT [2016-02-28 12:37:58] I give up..
2016-03-01 08:57:45 EricT [2016-02-28 12:38:05] 😜
2016-03-01 08:57:45 Moritz [2016-02-28 12:46:06] This just gave me the idea to compare web design of different weapons producers. There is the full range. From "my first cms"-style [1], to CoD design [2] and then the it management style [3].
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:18] [1]: http://www.bt-ag.ch/site/eng/startseite
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:18] [2]: http://www.accuracyinternational.com/
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:18] [3]: http://www.baesystems.com/en/home
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:18] Classical webshop style: https://armalite.com/
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:18] And what every this style is called: http://www.almaz-antey.ru/
2016-03-01 08:57:45 Moritz [2016-02-28 12:47:41] *IT management and enterprise
2016-03-01 08:57:45 Moritz [2016-02-28 12:50:57] The german word is Zwischenrufer. Good explanation!
2016-03-01 08:57:45 Moritz [2016-02-28 12:51:28] I want this game: http://www.lockheedmartin.com/
2016-03-01 08:57:45 Moritz [2016-02-28 12:52:09] It has anything. Space exploration, fighter jets and useless floating futuristic UIs.
2016-03-01 08:57:45 NicholasB [2016-02-28 12:53:04] you'd need two video cards i reckon.
2016-03-01 08:57:45 Moritz [2016-02-28 13:00:23] And military grade hardware i guess. Or something ugly as this: https://www.asus.com/uk/Motherboards/SABERTOOTH_Z97_MARK_S/
2016-03-01 08:57:45 NicholasB [2016-02-28 13:05:01] thank fuck. im tired of my motherboards being visable is urban enviroments
2016-03-01 08:57:45 NicholasB [2016-02-28 13:05:09] *in
2016-03-01 08:57:45 Moritz [2016-02-28 13:07:04] *snowy urban environments!
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 13:24:48] systemau.net.au/stream
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 13:25:18] systemau.net.au:8000/stream
2016-03-01 08:57:45 EricT [2016-02-28 13:32:35] so, the soda stream, is something
2016-03-01 08:57:45 EricT [2016-02-28 13:33:20] afoot?
2016-03-01 08:57:45 EricT [2016-02-28 13:33:26] Dr Wat's on?
2016-03-01 08:57:45 EricT [2016-02-28 13:39:11] black people singing?
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 13:39:42] no
2016-03-01 08:57:45 EricT [2016-02-28 13:53:21] that's why we gay!
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:05:42] Shit @enjayembee, I forgot to sent the swag
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:06:08] It includes a linux from scratch sticker
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:07:21] Stream is down
2016-03-01 08:57:45 EricT [2016-02-28 14:22:07] Kill Nouvea —blacklist it
2016-03-01 08:57:45 EricT [2016-02-28 14:23:45] Budgie all things!
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:25:57] Console.
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:26:00] all
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:26:02] the
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:26:04] things
2016-03-01 08:57:45 EricT [2016-02-28 14:26:25] 1d all things!
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:26:34] @elChupaNibre peasant!
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:26:46] Pen and paper all the things
2016-03-01 08:57:45 EricT [2016-02-28 14:27:46] How many Terraflops can you accomplish via pen n paper?
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:28:02] Depends on the pen.
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:28:12] @enjayembee I still want to know what the fuck the theme was. I'm thinking funk but you never know with ye colonials.
2016-03-01 08:57:45 EricT [2016-02-28 14:28:12] Beware! The Terraflops!!
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:28:26] Carpentry
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:28:35] Probally a lot if you fill the back of a transit van with paper
2016-03-01 08:57:45 EricT [2016-02-28 14:28:40] Terraflops #bandname
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:28:53] The carpenters #bandname.
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:29:00] Terrafloppy
2016-03-01 08:57:45 EricT [2016-02-28 14:31:42] 26.1 prestream edition
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:31:58] 25.9 prestream edition
2016-03-01 08:57:45 EricT [2016-02-28 14:32:23] 25.9.22-fc23 edition
2016-03-01 08:57:45 EricT [2016-02-28 14:32:46] kernel grade numbering scheme
2016-03-01 08:57:45 EricT [2016-02-28 14:33:20] your kiss is on my list...
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:33:51] Yey, a soap reference I get
2016-03-01 08:57:45 EricT [2016-02-28 14:35:36] I speach good England!
2016-03-01 08:57:45 EricT [2016-02-28 14:44:03] Helvitica all things!
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:44:27] Comic Sans all the things
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:44:42] Hand write all the things
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:44:51] Calligraphy or GTFO
2016-03-01 08:57:45 EricT [2016-02-28 14:45:01] Webdings all things! ۩ﺴ ﺴ۩
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:45:29] Put your pen away your drunk
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:45:46] Paper doesn't grow on threes
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:45:48] You're not my real dad
2016-03-01 08:57:45 EricT [2016-02-28 14:46:05] Pulp Distros!
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:46:32] I'm the next best thing. An Irish man child.
2016-03-01 08:57:45 EricT [2016-02-28 14:46:52] A wee lad
2016-03-01 08:57:45 EricT [2016-02-28 14:47:07] is that scottish? lol
2016-03-01 08:57:45 EricT [2016-02-28 14:47:31] Ireland/Scotland = Australia/New Zealand
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:47:52] ulster & scotish
2016-03-01 08:57:45 EricT [2016-02-28 14:51:16] Pye TV or GTFO
2016-03-01 08:57:45 EricT [2016-02-28 14:54:49] nougat 6.0
2016-03-01 08:57:45 EricT [2016-02-28 14:55:30] nougat 7.0*
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:56:07] nutella
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:56:22] man i need sleep
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:56:31] Nick has played the wrong song.
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:56:38] Save your sleep
2016-03-01 08:57:45 EricT [2016-02-28 14:56:42] Yee Ha!
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:56:44] ive been trying to troubleshoot my home network because ssh wouldnt work
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:56:45] You're getting an exclusive
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:56:55] turns out i never start sshd
2016-03-01 08:57:45 PaulGleeson [2016-02-28 14:56:59] started*
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 14:57:01] D'oh
2016-03-01 08:57:45 EricT [2016-02-28 14:58:33] nibble nobby's nuts 7.0
2016-03-01 08:57:45 EricT [2016-02-28 15:06:39] in Bulgaria..wtf nobody checks?
2016-03-01 08:57:45 EricT [2016-02-28 15:17:40] LeeNix
2016-03-01 08:57:45 NicholasB [2016-02-28 15:21:36] how was the stream? fuck up much?
2016-03-01 08:57:45 PaulGleeson [2016-02-28 15:21:45] it was ok
2016-03-01 08:57:45 PaulGleeson [2016-02-28 15:21:52] 4/5
2016-03-01 08:57:45 EricT [2016-02-28 15:22:00] 👌
2016-03-01 08:57:45 NicholasB [2016-02-28 15:22:11] cool
2016-03-01 08:57:45 NicholasB [2016-02-28 15:22:14] seem more stable using ogg
2016-03-01 08:57:45 EricT [2016-02-28 15:22:34] a shadow puppet rabbit
2016-03-01 08:57:45 PaulGleeson [2016-02-28 15:22:38] it was i only had i die completely once
2016-03-01 08:57:45 NicholasB [2016-02-28 15:23:14] yeah weird.. well better than last week thats for certain
2016-03-01 08:57:45 PaulGleeson [2016-02-28 15:27:35] Thanks for the show
2016-03-01 08:57:45 NicholasB [2016-02-28 15:38:06] np
2016-03-01 08:57:45 NicholasB [2016-02-28 15:38:12] thats for llistening
2016-03-01 08:57:45 NicholasB [2016-02-28 16:05:50] right
2016-03-01 08:57:45 NicholasB [2016-02-28 16:05:55] fixing my bosses computer
2016-03-01 08:57:45 NicholasB [2016-02-28 16:06:07] win 7
2016-03-01 08:57:45 NicholasB [2016-02-28 16:06:14] bootmgr gone.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:06:42] had a copy of win7 home pre 64 bit on disc
2016-03-01 08:57:45 NicholasB [2016-02-28 16:06:50] recovery says its the wrong version.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:06:59] got a dodgy disc of 32 bit version.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:07:05] has no recovey option.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:07:11] people help me out. what can i do?
2016-03-01 08:57:45 TristanJames [2016-02-28 16:10:11] I wonder if upgrading to win 10 would work?
2016-03-01 08:57:45 TristanJames [2016-02-28 16:10:38] You can download the install disc from Microsoft
2016-03-01 08:57:45 NicholasB [2016-02-28 16:11:24] nah it wont help till i can boot.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:11:39] you used to be able to get official downloads through digitalriver
2016-03-01 08:57:45 NicholasB [2016-02-28 16:12:03] but now im struggling to find copys. they let you download it with the serial nu,mber but its not working.
2016-03-01 08:57:45 EricT [2016-02-28 16:14:35] Maybe ultimate boot disk type can help
2016-03-01 08:57:45 NicholasB [2016-02-28 16:14:52] well ive gon back to the microsoft page
2016-03-01 08:57:45 NicholasB [2016-02-28 16:15:06] and ive entered the product key and its given me a download
2016-03-01 08:57:45 NicholasB [2016-02-28 16:15:15] it spend a long time thinking about it.
2016-03-01 08:57:45 NicholasB [2016-02-28 16:15:41] hopefully that works.
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 16:27:06] Wipe it and install Makulu Linux.
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 16:29:42] <br><img id="1">
2016-03-01 08:57:45 NicholasB [2016-02-28 16:32:58] dude. i wish
2016-03-01 08:57:45 NicholasB [2016-02-28 16:33:09] well maybe no makulu
2016-03-01 08:57:45 NottheOtherDan [2016-02-28 16:35:16] ReactOS!? He wouldn't notice the difference!
2016-03-01 08:57:45 NotDan [2016-02-28 17:26:27] Made any progress @enjayembee
2016-03-01 08:57:45 NicholasB [2016-02-28 17:43:53] I gave up and did this in stead.
2016-03-01 08:57:48 - Mode ##systemau [+t]
2016-03-01 08:57:51 NicholasB [2016-02-28 17:44:11] <br><img id="3">
2016-03-01 08:57:51 NotDan [2016-02-28 17:44:28] haha, fantastic
2016-03-01 08:57:51 EricT [2016-02-28 19:36:44] ProCrastin8 like a boss!
2016-03-01 08:57:59 LewisCividin [2016-02-28 20:04:47] <br><img id="5">
2016-03-01 08:57:59 LewisCividin [2016-02-28 20:04:55] Fortress cluck is almost ready
2016-03-01 08:57:59 NotDan [2016-02-28 20:05:31] Thought it was a Faraday Cage for a second lol
2016-03-01 08:57:59 NotDan [2016-02-28 20:05:38] Hardly tall enough I suppose lol
2016-03-01 08:57:59 LewisCividin [2016-02-28 20:05:48] Haha nothing that exciting
2016-03-01 08:57:59 LewisCividin [2016-02-28 20:06:53] Just got to tighten some of the wire and put some shade on it
2016-03-01 08:57:59 LachlanHolmes [2016-02-28 20:19:02] What's happening everyone?
2016-03-01 08:57:59 NicholasB [2016-02-28 20:19:34] not much.
2016-03-01 08:57:59 NicholasB [2016-02-28 20:19:51] sunday funday
2016-03-01 08:57:59 NotDan [2016-02-28 20:19:59] I got tomorrow off
2016-03-01 08:57:59 NotDan [2016-02-28 20:20:03] So things arent that bad
2016-03-01 08:57:59 NicholasB [2016-02-28 20:20:33] lucky.
2016-03-01 08:57:59 NotDan [2016-02-28 20:20:43] Well, my mum is over from living in the UK
2016-03-01 08:57:59 NotDan [2016-02-28 20:20:49] So it's spending a day with her, and seeing family tonight
2016-03-01 08:57:59 NotDan [2016-02-28 20:20:53] So, I suppose so haha
2016-03-01 08:57:59 NotDan [2016-02-28 20:21:07] <br><img id="6">
2016-03-01 08:57:59 NotDan [2016-02-28 20:22:38] Otherwise, I've just been learning about FreeBSD all day today
2016-03-01 08:57:59 NotDan [2016-02-28 20:22:53] What about you, @dibZr
2016-03-01 08:57:59 LachlanHolmes [2016-02-28 20:23:57] Oh not much I'm at work on the night shift. But I got 4 days off coming up!
2016-03-01 08:57:59 NotDan [2016-02-28 20:24:28] Oh, nice. Much planned for the time off?
2016-03-01 08:57:59 LachlanHolmes [2016-02-28 20:24:32] Before it hits midnight probably study about bgp.
2016-03-01 08:57:59 LachlanHolmes [2016-02-28 20:25:37] Not really planned anything. Probably be sleeping most of tomorrow. And then. I don't know go ride my motorcycle and that's about it. 😊
2016-03-01 08:57:59 NotDan [2016-02-28 20:26:43] Nice
2016-03-01 08:57:59 Joe [2016-02-29 05:29:44] @elChupaNibre site is down again. Do you have a swap file? It could solve your problem
2016-03-01 08:57:59 NicholasB [2016-02-29 07:31:59] The age don't proof read their headlines.
2016-03-01 08:57:59 NicholasB [2016-02-29 07:31:59] <br><img id="7">
2016-03-01 08:57:59 Joe [2016-02-29 08:19:43] Arse
2016-03-01 08:57:59 NicholasB [2016-02-29 08:19:58] Fecknarse
2016-03-01 08:57:59 NicholasB [2016-02-29 08:20:53] have you ever had a day where you've woken up and you want to slap all your co-workers?
2016-03-01 08:57:59 NicholasB [2016-02-29 08:21:16] cos that is today
2016-03-01 08:57:59 Joe [2016-02-29 08:23:14] That's most days
2016-03-01 08:57:59 Joe [2016-02-29 08:23:31] But I work with some real specialtards
2016-03-01 08:57:59 PaulGleeson [2016-02-29 08:23:42] I've never had a day like that
2016-03-01 08:57:59 Joe [2016-02-29 08:24:09] Some days I get to work alone with just my headphones
2016-03-01 08:57:59 NicholasB [2016-02-29 08:25:24] You sir are a lucky man.
2016-03-01 08:57:59 Joe [2016-02-29 08:36:49] "If you think about it, a dildo is basically a dick doll"
2016-03-01 08:57:59 Joe [2016-02-29 08:37:00] - shit my wife says
2016-03-01 08:57:59 NicholasB [2016-02-29 08:39:18] She's right you know. And you hug it from the inside
2016-03-01 08:57:59 PaulGleeson [2016-02-29 08:53:28] Is there any other way to hug?
2016-03-01 08:57:59 NicholasB [2016-02-29 08:54:29] well I suppose you're inside arms if you hug.
2016-03-01 08:57:59 NicholasB [2016-02-29 08:54:36] i didn't think of it like that
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:03:37] mornnall
2016-03-01 08:57:59 NicholasB [2016-02-29 09:08:59] morn'g
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:09:17] Morning
2016-03-01 08:57:59 Joe [2016-02-29 09:09:23] Not long now. Night
2016-03-01 08:57:59 NicholasB [2016-02-29 09:10:19] night sunshine
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:10:42] night. morning. whatever.
2016-03-01 08:57:59 NicholasB [2016-02-29 09:19:07] how was your weekend carlos
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:20:17] soso - had my old man's 71st on Saturday so it was good to see the family, but then got some bad news from my partner's family yesterday - her old husky is on her last legs.
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:21:07] Fuck
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:21:16] My sympathies man
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:21:44] s'cool - she's going accross today to say goodbye.
2016-03-01 08:57:59 NicholasB [2016-02-29 09:23:18] :( send her the groups sympathy!
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:25:58] Will do. Thanks guys.
2016-03-01 08:57:59 NicholasB [2016-02-29 09:43:45] installed manjaro last night
2016-03-01 08:57:59 NicholasB [2016-02-29 09:43:57] was stupidly simplei would
2016-03-01 08:57:59 NicholasB [2016-02-29 09:44:04] say easier thant ubuntu
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:44:34] Plus you get pacman
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:44:53] Which is one of the better package managers in my opinion
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:45:23] You've used Arch before, haven't you Nick?
2016-03-01 08:57:59 NicholasB [2016-02-29 09:46:16] yeah. had arch running for about six months
2016-03-01 08:57:59 NicholasB [2016-02-29 09:46:29] it crashed once with vlcb
2016-03-01 08:57:59 NicholasB [2016-02-29 09:46:41] froze whole system=
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:46:43] oops!
2016-03-01 08:57:59 NicholasB [2016-02-29 09:47:07] im giving it the benefit of the doubt as ive got some rips that have been problematic with VLC
2016-03-01 08:57:59 NicholasB [2016-02-29 09:47:19] caused crashesn on other systems
2016-03-01 08:57:59 NicholasB [2016-02-29 09:48:03] @paul_gleeson practising my touch typing. regretting cherry reds
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:48:25] I've never met someone who didn't
2016-03-01 08:57:59 NicholasB [2016-02-29 09:48:48] they are okay on my home pcwork is di
2016-03-01 08:57:59 NicholasB [2016-02-29 09:48:49] ffert
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:49:11] no wonder - you probably don't have your Dvorak kbd with you
2016-03-01 08:57:59 NicholasB [2016-02-29 09:49:24] i do!
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:49:37] Fat fingers? That's my problem
2016-03-01 08:57:59 NicholasB [2016-02-29 09:49:46] that's why im practising. i can type dvorak but not touch type it well
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:49:56] ah
2016-03-01 08:57:59 NicholasB [2016-02-29 09:49:57] its the fat fingers
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:50:05] lol
2016-03-01 08:57:59 NicholasB [2016-02-29 09:50:28] the reds are just a liitle too soft
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:54:32] Check and see if there a dev build of vlc on the aur, Nick
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:54:59] just to really break your system
2016-03-01 08:57:59 PaulGleeson [2016-02-29 09:57:10] Why would it break it?
2016-03-01 08:57:59 NicholasB [2016-02-29 09:58:03] good idea
2016-03-01 08:57:59 NicholasB [2016-02-29 09:58:19] i installed yoart for easy aur installation.
2016-03-01 08:57:59 NicholasB [2016-02-29 09:58:25] worked for chorme
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:58:25] I don't know that it would - I just don't like the lack of testing on AUR repos (almost as bad as PPAs)
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:58:56] but then I'm paranoid (don't tel the men in the white coats)
2016-03-01 08:57:59 NicholasB [2016-02-29 09:59:13] don't be sexist.
2016-03-01 08:57:59 NicholasB [2016-02-29 09:59:22] there are women in white coats as well
2016-03-01 08:57:59 CarlosLopez [2016-02-29 09:59:27] too right - the people in white coats
2016-03-01 08:57:59 NicholasB [2016-02-29 09:59:31] they judge you just as harsly
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:01:30] Het Nick, Manjaro looks nice and clean - almost Crunchbangy clean
2016-03-01 08:57:59 NicholasB [2016-02-29 10:05:54] i installed the cinnamon edition. minimal. it was so quick to install c might check out the others
2016-03-01 08:57:59 NicholasB [2016-02-29 10:05:58] *i
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:07:03] This is a nice touch:
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:07:05] Net-Edition
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:07:05]
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:07:05] The NET edition of Manjaro provides a base installation without a pre-installed display manager, desktop environment, or any desktop software applications. It allows you to build your own version of Manjaro from the ground up.
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:07:21] Downloading now.
2016-03-01 08:57:59 NicholasB [2016-02-29 10:09:14] yeah i was thing of that. i prob should.
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:09:22] Oh yeah! Nearly forgot! Happy Jump-around Day!
2016-03-01 08:57:59 NicholasB [2016-02-29 10:09:42] any one have a birth day today?
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:09:52] THAT would be sad
2016-03-01 08:57:59 EricT [2016-02-29 10:26:05] Morning all, I been playing with i3 for a couple of days, and I like the workflow, but not sure is right for me, you need both hands on KB to do efficient Tiling and I more of a sloucher/one handed Mouse clicker, lol!
2016-03-01 08:57:59 PaulGleeson [2016-02-29 10:26:52] Eric i3 has full mouse support
2016-03-01 08:57:59 PaulGleeson [2016-02-29 10:27:08] Plus you can rebind everything under your left hand
2016-03-01 08:57:59 EricT [2016-02-29 10:27:37] but I like all my fancy extentions and clickity icons!
2016-03-01 08:57:59 PaulGleeson [2016-02-29 10:28:12] Night
2016-03-01 08:57:59 EricT [2016-02-29 10:28:39] lefthand only? you must have some mofo dexterous long fingers(ladies must love you)
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:45:28] Can you have different virtual desktops with i3 or is the concept of the desktop "whatever fits on your screen"?
2016-03-01 08:57:59 EricT [2016-02-29 10:48:20] Yes lots of desktops and toggle between them
2016-03-01 08:57:59 EricT [2016-02-29 10:48:54] It's like DeCaprio's Inception
2016-03-01 08:57:59 EricT [2016-02-29 10:48:59] lol
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:49:51] I've been meaning to give tiling desktop managers a go for a while. Maybe I'll start today. When I get bored (5 minutes and counting).
2016-03-01 08:57:59 EricT [2016-02-29 10:50:41] look at this, quick and concise!
2016-03-01 08:57:59 EricT [2016-02-29 10:50:41] https://www.youtube.com/watch?v=j1I63wGcvU4&index=1&list=PLyFcdJ411-pBeXkkLwqfnrLQAxhE-WPB2
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:51:15] Thanks Eric - I'll have a go
2016-03-01 08:57:59 EricT [2016-02-29 10:51:26] Tiling is great "if you always keep both hand on the keyboard"!
2016-03-01 08:57:59 CarlosLopez [2016-02-29 10:51:54] ALT+TAB 4 life
2016-03-01 08:57:59 EricT [2016-02-29 10:52:00] lol
2016-03-01 08:57:59 EricT [2016-02-29 11:02:30] I think the best option is to have your favourite desktop+i3, That way you have a standard experience when fark-arsing but you have i3 when you need shit to get done quick.
2016-03-01 08:57:59 TristanJames [2016-02-29 11:05:45] Hey @F_s0c1ety have you tried this? http://www.lifehacker.com.au/2016/02/run-a-game-boy-emulator-in-terminal/
2016-03-01 08:57:59 CarlosLopez [2016-02-29 11:09:30] Will it run Pokemon Gold?
2016-03-01 08:57:59 CarlosLopez [2016-02-29 11:23:12] Having a look at a fedoramag article on i3 (https://fedoramagazine.org/getting-started-i3-window-manager/): "Knowing the terminal helps". Yeah, thanks.
2016-03-01 08:57:59 EricT [2016-02-29 11:54:08] Wow, never realised the native Ubuntu Twitter client was so big!
2016-03-01 08:57:59 EricT [2016-02-29 11:54:08] http://i.imgur.com/MovXd5X.png
2016-03-01 08:57:59 CarlosLopez [2016-02-29 11:54:56] hmm. This feels pretty easy: WIN+up to change window focus, WIN+[X] (where X is a desktop number) to change virtual desktop, nice!
2016-03-01 08:57:59 EricT [2016-02-29 11:57:00] sounds easy..try it on a Nbook with crappy chicklet keyboard and god damn fn key next to super key...ahhh!
2016-03-01 08:57:59 EricT [2016-02-29 11:57:22] and big sausage fingers!
2016-03-01 08:57:59 CarlosLopez [2016-02-29 11:57:50] Sausage fingers I have
2016-03-01 08:57:59 EricT [2016-02-29 13:21:11] http://www.theage.com.au/federal-politics/political-news/nbn-malcolm-turnbulls-faster-cheaper-rollout-falters-20160228-gn5l0s.html
2016-03-01 08:57:59 LewisCividin [2016-02-29 14:29:28] Ive been playing with i3wm it's great on my laptop, until I have an issue with say my router or something and I'm just wanting to do something I'm really familiar with in gnome/mousing etc then. Kinda getting used to all the keyboard commands is the toughest thing. I love how snappy it is. Breaks steam client if I try and add things in the steam desktop. That series of videos for it is great!
2016-03-01 08:57:59 NicholasB [2016-02-29 14:30:13] it's like tiling window managers are the latest fad.
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:31:20] I've been trying i3 for a couple of hours now and it just seems very comfortable (but then I'm not doing anything very complicated)
2016-03-01 08:57:59 NicholasB [2016-02-29 14:42:28] i should really give it a burl it would be nice if one of my monitors could do it and the other not
2016-03-01 08:57:59 NicholasB [2016-02-29 14:42:37] so my video
2016-03-01 08:57:59 NicholasB [2016-02-29 14:42:54] playlist ctah etc screen would be all tight and i could be slppy with my other screen
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:43:19] having steam not work properly with it is a dealbreaker for my home machine, though
2016-03-01 08:57:59 NicholasB [2016-02-29 14:43:50] you wouldn't want to just log in to a differ session for gaming?
2016-03-01 08:57:59 EricT [2016-02-29 14:49:34] yes, log in to preffered desktop when doing "recreational" Linuxing
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:49:37] hmmm, not sure. Maybe.
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:50:05] And recreational linuxing is just about the only linuxing I've been doing at home lately
2016-03-01 08:57:59 NicholasB [2016-02-29 14:50:10] i don't know why but that sounds creepy
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:50:36] Ot's all right Nick - I wash my hands afterwards
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:50:52] *It's*
2016-03-01 08:57:59 EricT [2016-02-29 14:50:54] feet on desk, one hand on mouse, other hand scratching...lol
2016-03-01 08:57:59 CarlosLopez [2016-02-29 14:51:16] Yeah, that sounds familiar
2016-03-01 08:57:59 NicholasB [2016-02-29 14:51:33] my desk is too high for feet
2016-03-01 08:57:59 EricT [2016-02-29 14:51:44] I ❤️ ricgkt click and drag n drop
2016-03-01 08:57:59 EricT [2016-02-29 14:52:00] right*
2016-03-01 08:57:59 EricT [2016-02-29 15:07:44] You've seem my Chromebook Extreme! Recreationally!
2016-03-01 08:57:59 LewisCividin [2016-02-29 15:46:22] I'm going to persist with it I'd like to get the short cuts down and be able to get a mainly keyboard work flow
2016-03-01 08:57:59 PaulGleeson [2016-02-29 17:54:37] There are dozens of us, who have been tiling for years. Dozens of us.
2016-03-01 08:57:59 PaulGleeson [2016-02-29 17:54:50] Morning lads
2016-03-01 08:57:59 CarlosLopez [2016-02-29 17:55:21] Hi Paul
2016-03-01 08:57:59 NicholasB [2016-02-29 17:55:27] wooooo
2016-03-01 08:57:59 NicholasB [2016-02-29 17:55:33] double digits
2016-03-01 08:57:59 EricT [2016-02-29 18:01:54] Tiling, rendering, sounds like a construction site 😊
2016-03-01 08:58:07 Joe [2016-02-29 18:02:34] <br><img id="8">
2016-03-01 08:58:07 Joe [2016-02-29 18:02:47] I can finally talk about it!
2016-03-01 08:58:07 NicholasB [2016-02-29 18:04:11] ohh
2016-03-01 08:58:07 NicholasB [2016-02-29 18:04:21] is it new. ive not been keeping up with pi
2016-03-01 08:58:07 Joe [2016-02-29 18:04:32] Yeah
2016-03-01 08:58:07 NicholasB [2016-02-29 18:04:39] what makes it better than a 2
2016-03-01 08:58:07 NicholasB [2016-02-29 18:04:51] aside from it being better and you being able to gloat
2016-03-01 08:58:07 NicholasB [2016-02-29 18:04:57] which is alway good
2016-03-01 08:58:07 Joe [2016-02-29 18:10:10] Faster, 64bit and has wifi and Bluetooth
2016-03-01 08:58:07 PaulGleeson [2016-02-29 18:10:35] Sweet
2016-03-01 08:58:07 NicholasB [2016-02-29 18:14:44] nice
2016-03-01 08:58:07 PaulGleeson [2016-02-29 18:15:56] Fuck I need to get moving. My body says no.
2016-03-01 08:58:07 CarlosLopez [2016-02-29 18:16:31] leave it - you can always do it tomorrow — carlos, 2016
2016-03-01 08:58:07 PaulGleeson [2016-02-29 18:17:09] If only that worked for work
2016-03-01 08:58:07 MartinWimpress [2016-02-29 18:19:35] https://ubuntu-mate.org/blog/ubuntu-mate-for-raspberry-pi-3/
2016-03-01 08:58:07 CarlosLopez [2016-02-29 18:25:13] a'right. Home time. Good night moonmen.
2016-03-01 08:58:07 EricT [2016-02-29 18:28:26] I have the new Managing Director for NSW TAFE coming to my class tomorrow for a visit! Have to iron my shirt!
2016-03-01 08:58:07 PaulGleeson [2016-02-29 19:01:10] Google is so nice telling me to expect rain
2016-03-01 08:58:07 NottheOtherDan [2016-02-29 19:20:13] Sweet! Want!
2016-03-01 08:58:07 NottheOtherDan [2016-02-29 19:21:38] Don't you usually iron your "Old Guys Rule" Tshirt?
2016-03-01 08:58:07 EricT [2016-02-29 19:22:36] Never iron! Hate iron!
2016-03-01 08:58:07 NottheOtherDan [2016-02-29 19:23:19] I got a new phone today. I can finally take photo's again. #snaphappy
2016-03-01 08:58:07 EricT [2016-02-29 20:00:31] #fussylensflare
2016-03-01 08:58:07 NottheOtherDan [2016-02-29 20:04:12] #fucklensflair
2016-03-01 08:58:07 Joe [2016-02-29 21:12:47] Much like a television, I do not own an iron.
2016-03-01 08:58:07 PaulGleeson [2016-02-29 21:14:50] @JoeRess what do you own?
2016-03-01 08:58:07 Joe [2016-02-29 21:15:05] A fair few computers
2016-03-01 08:58:07 Joe [2016-02-29 21:15:14] No microwave though
2016-03-01 08:58:07 Joe [2016-02-29 21:15:35] Also a Raspberry Pi 3!
2016-03-01 08:58:07 PaulGleeson [2016-02-29 21:19:51] Nice
2016-03-01 08:58:07 NicholasB [2016-02-29 21:21:08] what will you do with it?
2016-03-01 08:58:07 PaulGleeson [2016-02-29 21:23:16] I doubt even Joe knows
2016-03-01 08:58:07 NicholasB [2016-02-29 21:24:39] already on back order in australia
2016-03-01 08:58:07 NicholasB [2016-02-29 21:24:46] 50 bucks AUD
2016-03-01 08:58:07 NicholasB [2016-02-29 21:24:50] which isn't bad i suppose.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:40:58] hey, do you guys use the web client or the desktop client when your on pc?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:41:25] desktop.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:41:51] hmmm ok cool 😄 how you doing Nic?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:44:38] not bad
2016-03-01 08:58:07 NicholasB [2016-02-29 21:44:43] fixing bosses pc.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:44:46] chucking win 10 on it.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:44:52] :(
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:45:01] lol...
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:45:12] Get that Slackware ISO out bro!
2016-03-01 08:58:07 NicholasB [2016-02-29 21:45:23] ohh windows is hard enough
2016-03-01 08:58:07 NicholasB [2016-02-29 21:45:27] scary
2016-03-01 08:58:07 NicholasB [2016-02-29 21:45:49] whats up in your neck of the woods
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:46:31] i don't mind windows 10 actually... from a usabilty point of view. Make sure you use the privacy to stop that tracking you don't like...
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:46:38] Oh things are good
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:46:53] last night was my last night shift... so im off for the next 3 days
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:48:02] sydney's weather was nice :) bit of southerly wind from the windows tonight :P
2016-03-01 08:58:07 NicholasB [2016-02-29 21:48:21] nice and refreshing. anything planned for the next four days?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:48:26] three days
2016-03-01 08:58:07 NicholasB [2016-02-29 21:48:27] sorry
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:48:32] only two trees from my windows so i'd hardly call it 'woods'?
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:49:15] um yeah tomorrow going to do a 3 hour motorcycle ride for some relaxation/reflection time :)
2016-03-01 08:58:07 NicholasB [2016-02-29 21:49:38] nice.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:49:48] and getting some sneaky nando's for lunch/dinner :P
2016-03-01 08:58:07 NicholasB [2016-02-29 21:49:52] turn some dotted lines in to solid ones as it were.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:49:56] :D
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:50:20] yeah im not a crazy bike rider aye... i just like to putter along.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:51:00] How is your wood's neck?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:51:13] not bad. summer is over i think.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:51:54] just watching files copy
2016-03-01 08:58:07 NicholasB [2016-02-29 21:52:01] the endless progress bar.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:52:02] it will come back 😐 im sure of it.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:52:22] if 2016 could invent one tech thing, it would be accurate file copying progress bars.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:52:30] thats all i want.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:53:04] well it's due to sliding windows from my understanding :P at least when it comes to data transfer over a network.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:54:11] yeah im just copting from ssd to to a hdd in th same machine. its the do you want to skip files that annoy me.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:54:15] back in the day when i did reload's like everyday/all day. my tool of choice was.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:54:16] http://www.roadkil.net/program.php/P29/Unstoppable%20Copier
2016-03-01 08:58:07 NicholasB [2016-02-29 21:54:16] you dont see them pop up
2016-03-01 08:58:07 NicholasB [2016-02-29 21:54:43] ahh im using a live distro to copy.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:54:48] can boot in to origianl os
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:54:51] oh ok
2016-03-01 08:58:07 NicholasB [2016-02-29 21:54:57] *can't
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:55:09] yeah thats fair. did he hose it?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:55:30] someone did. and the windows recorvery console wont even open. says there are issues.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 21:55:33] btw do you work night shifts as well or do this as a love job?
2016-03-01 08:58:07 NicholasB [2016-02-29 21:55:45] nah. just helping out a mate.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:55:51] boss / mate.
2016-03-01 08:58:07 NicholasB [2016-02-29 21:55:54] :D
2016-03-01 08:58:07 Joe [2016-02-29 21:56:27] Pretty much
2016-03-01 08:58:07 NicholasB [2016-02-29 21:58:33] i quietly hope he'll let mne go through the box of records he said is sitting in his shed
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 22:01:13] hey nic you may want to remove the link to myface from the website :P #friendlyreminder:)
2016-03-01 08:58:07 NicholasB [2016-02-29 22:01:26] ohh ha., is it still there?
2016-03-01 08:58:07 NicholasB [2016-02-29 22:01:29] lol
2016-03-01 08:58:07 MartinWimpress [2016-02-29 22:02:01] The three day Raspberry Pi 3 hacking recovery starts now ☺️
2016-03-01 08:58:07 NicholasB [2016-02-29 22:02:23] does it start with a long island ice tea?
2016-03-01 08:58:07 MartinWimpress [2016-02-29 22:03:35] That's lunch ☺️
2016-03-01 08:58:07 NicholasB [2016-02-29 22:04:03] Oh just a reminder. We are running a day late on the show today as mentioned last week. ;)
2016-03-01 08:58:07 NicholasB [2016-02-29 22:04:09] (last ep i mean)
2016-03-01 08:58:07 MartinWimpress [2016-02-29 22:04:14] <br><img id="9">
2016-03-01 08:58:07 NicholasB [2016-02-29 22:04:25] thats a breakfast
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 22:04:38] NOM
2016-03-01 08:58:07 NicholasB [2016-02-29 22:07:31] that could be the most appropirate gif ever
2016-03-01 08:58:07 EricT [2016-02-29 22:17:20] About to try Nvidia drivers on 16.04! fingers crossed!
2016-03-01 08:58:07 NicholasB [2016-02-29 22:17:57] good luck.
2016-03-01 08:58:07 NicholasB [2016-02-29 22:18:00] you shuld be fine.
2016-03-01 08:58:07 NicholasB [2016-02-29 22:18:02] via ppa?
2016-03-01 08:58:07 NicholasB [2016-02-29 22:18:08] or the restricted drivers installer?
2016-03-01 08:58:07 EricT [2016-02-29 22:18:29] via ppa
2016-03-01 08:58:07 EricT [2016-02-29 22:19:20] but I need nvidia-340 or less
2016-03-01 08:58:07 MartinWimpress [2016-02-29 22:20:46] There a one-click button for the nvidia PPA dance in Welcome for Ubuntu MATE 16.04 😀
2016-03-01 08:58:07 EricT [2016-02-29 22:23:04] I couldnt get it to work on Mate, trying on Gnome the notebook has a Quadro 140M a bit old now...
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:25:02] anyone got a specs link of the Pi3 at all? or is it to new?
2016-03-01 08:58:07 Moritz [2016-02-29 22:25:08] The pi 3 is out.
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:26:02] I saw something in here today briefly but was a busy day. Is it?
2016-03-01 08:58:07 EricT [2016-02-29 22:26:20] 64bit wifi faster
2016-03-01 08:58:07 PaulGleeson [2016-02-29 22:27:19] Bluetooth too and WiFi n
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:27:28] nice anyone know what its like compared to the pine board ( I backed the pine)
2016-03-01 08:58:07 PaulGleeson [2016-02-29 22:27:57] pine is cheaper
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:28:53] That's good for me then haha
2016-03-01 08:58:07 Moritz [2016-02-29 22:29:09] Is it BT 4?
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:31:28] yep 4.1
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:31:30] https://www.raspberrypi.org/blog/raspberry-pi-3-on-sale/
2016-03-01 08:58:07 EricT [2016-02-29 22:32:23] I hope they put some eMMC on-board flash SDcards to cut it!
2016-03-01 08:58:07 EricT [2016-02-29 22:32:36] dont cut*
2016-03-01 08:58:07 EricT [2016-02-29 22:34:56] My Beaglebone (eMMC) is super fast and has never had a storage error, RassPi all the time!
2016-03-01 08:58:07 PaulGleeson [2016-02-29 22:37:32] Pi 3 has the same CPU as the pine
2016-03-01 08:58:07 LewisCividin [2016-02-29 22:38:30] cool
2016-03-01 08:58:07 PaulGleeson [2016-02-29 22:39:50] The pine has higher resolution output, more ram (if you played for it) and a realtime time clock
2016-03-01 08:58:07 PaulGleeson [2016-02-29 22:42:02] Pines GPU is slightly better too
2016-03-01 08:58:07 Moritz [2016-02-29 22:45:32] Has the Beagle BT and Wifi?
2016-03-01 08:58:07 EricT [2016-02-29 22:45:59] 😔nope
2016-03-01 08:58:07 PaulGleeson [2016-02-29 23:06:58] Today is flying
2016-03-01 08:58:07 PaulGleeson [2016-02-29 23:07:01] Its great
2016-03-01 08:58:07 PaulGleeson [2016-02-29 23:07:14] I've just enough work to keep busy
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:10:43] have you guys ever used your pi for https://volumio.org/?
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:11:01] or do you think its a waist of a pi?
2016-03-01 08:58:07 PaulGleeson [2016-02-29 23:14:12] That looks really cool
2016-03-01 08:58:07 PaulGleeson [2016-02-29 23:14:25] But no I hadn't heard of it
2016-03-01 08:58:07 NicholasB [2016-02-29 23:38:39] I've used it. It's a little buggy. You want an external USB DAC though
2016-03-01 08:58:07 NicholasB [2016-02-29 23:38:52] Internal pi sounds shit.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:53:49] Right I'm going nuts. I feel like an idiot. How do I back up a while directory which contains fucking folder links? When I copy it just copy's the link which takes me back to the original location. Thus not a back up at all.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:54:17] *whole
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:54:28] symlinks?
2016-03-01 08:58:07 NicholasB [2016-02-29 23:54:39] What ever Windows uses.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:54:45] Symlinks I guess.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:55:13] so shortcuts?
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:55:14] :P
2016-03-01 08:58:07 NicholasB [2016-02-29 23:55:21] Well yeah.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:56:31] It driving me nuts. Took fucking hours to copy I check the back up and I get thrown to the drive I was copying from.
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:58:11] http://devtidbits.com/2009/09/07/windows-file-junctions-symbolic-links-and-hard-links/
2016-03-01 08:58:07 LachlanHolmes [2016-02-29 23:58:38] how to copy said files that are pointed to via a shortcut. i dont know
2016-03-01 08:58:07 NicholasB [2016-02-29 23:59:33] cheers. thats all windows command anyhow. im using a live distro to copy.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:59:43] im sick of it. i need to go to bed.
2016-03-01 08:58:07 NicholasB [2016-02-29 23:59:45] :P
2016-03-01 08:58:07 NicholasB [2016-02-29 23:59:52] boss will just have to wait.
2016-03-01 08:58:07 LachlanHolmes [00:00:22] yeah im i know your on loonux... just gives you some background really
2016-03-01 08:58:07 NicholasB [00:00:33] sweet.
2016-03-01 08:58:07 NicholasB [00:00:46] its bookmarked for less grumpy nick to read and ingest
2016-03-01 08:58:07 NicholasB [00:00:52] you have a good day off.
2016-03-01 08:58:07 NicholasB [00:00:56] sleep for me.
2016-03-01 08:58:07 LachlanHolmes [00:01:05] np mate :P
2016-03-01 08:58:07 LachlanHolmes [00:01:09] ciao :)
2016-03-01 08:58:07 LachlanHolmes [00:04:44] @enjayembee https://superuser.com/questions/131568/how-to-copy-files-pointed-to-not-the-shortcut-files-themselves
2016-03-01 08:58:07 LachlanHolmes [00:04:48] @enjayembee https://superuser.com/questions/216919/how-to-copy-symlinks-to-target-as-normal-folders
2016-03-01 08:58:07 LachlanHolmes [00:05:14] @enjayembee i googled for "CopyLinkTarget ubuntu" hope it helps :P
2016-03-01 08:58:07 NicholasB [00:05:51] i spend 5 more minutes.
2016-03-01 08:58:07 NicholasB [00:05:59] i think i've found it. ill leave it go over night.
2016-03-01 08:58:07 LachlanHolmes [00:06:14] sorry if it doesnt help 😐
2016-03-01 08:58:07 NicholasB [00:06:18] rsync with some flags
2016-03-01 08:58:07 NicholasB [00:06:20] hey
2016-03-01 08:58:07 NicholasB [00:06:25] don't apologise
2016-03-01 08:58:07 NicholasB [00:06:44] that support is extra eyes is all :)
2016-03-01 08:58:07 LachlanHolmes [00:07:27] :) thats why i prefer working in a team normally :P
2016-03-01 08:58:07 NicholasB [00:07:42] high five to that. i'm a let rysnc do its work :)
2016-03-01 08:58:07 PaulGleeson [00:11:26] Enough internet for today
2016-03-01 08:58:07 MartinWimpress [01:28:28] Disaster, beer is empty.
2016-03-01 08:58:07 MartinWimpress [01:28:28] Disaster averted. Replenished beer and he brought his friend Double Whiskey with him too.
2016-03-01 08:58:07 MartinWimpress [01:28:48] <br><img id="10">
2016-03-01 08:58:07 MartinWimpress [01:28:54] Some people go to Maker Spaces to hack on projects. I go to pubs. They have big tables and wifi too 😀
2016-03-01 08:58:07 MartinWimpress [04:24:12] The computer that I use to make Ubuntu MATE is appropriately atired.
2016-03-01 08:58:07 MartinWimpress [04:24:23] <br><img id="11">
2016-03-01 08:58:07 Joe [06:03:28] The systemau sticker always looks like it's floating or Photoshopped in
2016-03-01 08:58:07 PaulGleeson [06:42:44] <br><img id="12">
2016-03-01 08:58:07 PaulGleeson [06:42:48] It does Joe
2016-03-01 08:58:07 Joe [07:10:23] Where's your LL sticker, @wimpress?
2016-03-01 08:58:07 NicholasB [07:19:48] Nicholas B changed photo.
2016-03-01 08:58:07 NicholasB [07:20:26] morning all
2016-03-01 08:58:07 NicholasB [07:25:13] the joy of vinyl cut!
2016-03-01 08:58:07 LewisCividin [07:27:09] I need a better laptop it feels like it's be a waste of a sticker to put it on my dell lappy
2016-03-01 08:58:07 NicholasB [07:27:54] lol.
2016-03-01 08:58:07 NicholasB [07:28:11] if you use it up we can send you another
2016-03-01 08:58:07 LewisCividin [07:28:22] Oh btw Nick I watched a HTC VR demo this morning, I'm in with the vive looks awesome
2016-03-01 08:58:07 NicholasB [07:28:47] yeah. im so in. not for pre order but by end 2016
2016-03-01 08:58:07 LewisCividin [07:28:59] Yeah
2016-03-01 08:58:07 LewisCividin [07:29:31] It's really 1:1 with moving and interacting with the environment
2016-03-01 08:58:07 LewisCividin [07:30:40] Space for the set up might be a issue
2016-03-01 08:58:07 NicholasB [07:32:31] my lounge is pretty empty
2016-03-01 08:58:07 TristanJames [08:30:31] I've used it on an older Pi. As Nick said it's pretty buggy. I use PiMusicBox now and pretty happy with it. http://www.pimusicbox.com/
2016-03-01 10:18:53 NicholasB @dj_salinger do you have yours set up in a sweet box of just a mass of cables like mine?
2016-03-01 10:19:05 NicholasB *or
2016-03-01 10:26:33 TristanJames I have cases for all mine. The music box one is hidden in my old stereo cabinet as well.
2016-03-01 10:29:25 NicholasB I've thought about getting an old stereo case like a tuner maybe then i can hide it
2016-03-01 10:29:27 NicholasB i also have one of these sitting around i could hide inside
2016-03-01 10:29:31 NicholasB http://www.ebay.com/itm/BK-6J1-x2-HiFi-tube-valve-Preamp-Preamplifier-amplifier-incl-transfor-110V-220V-/111771195149
2016-03-01 10:57:26 @fsociety don't you hate it when enterprise grade hardware fails before anything else
2016-03-01 10:57:54 @fsociety *stares at black wd drive*
2016-03-01 11:01:19 NicholasB there are still dudes/dudettes running 320gb hitachi death stars while data centers fall
2016-03-01 11:17:37 TristanJames That looks sick.
2016-03-01 11:22:19 NicholasB it's not bad. i have the turntable pre amp too. has a bit of a low end buzz. don't us eit atm
2016-03-01 11:22:46 NicholasB you want.. apparently a bit of solder work can make it perfect
2016-03-01 11:23:30 NicholasB http://www.aliexpress.com/store/product/Little-Bear-Tube-valve-Stereo-Phono-Turntable-RIAA-Preamp-preamplifier-amplifier/401371_1416631890.html
2016-03-01 11:32:55 TristanJames I got given a pretty decent amp and massive speakers last year. The only problem with the amp is the display doesn't light up. But it doesn't matter because again, it's hidden in the vintage cabinet.
2016-03-01 11:37:32 TristanJames <br><img id="13">
2016-03-01 11:37:51 TristanJames <br><img id="14">
2016-03-01 11:46:31 NicholasB nice speakers
2016-03-01 11:46:39 NicholasB i have bookshelfs
2016-03-01 11:46:42 NicholasB good one
2016-03-01 11:46:49 NicholasB but id love a floor stander
2016-03-01 11:56:46 TristanJames I've got 4 of the speakers, but only use 2 at the moment. I was offered them and the amp without seeing them and then they were on my doorstep one day when i got home from work!
2016-03-01 11:57:26 CarlosLopez ... um, I have a pair of in-ear buds ...
2016-03-01 11:58:20 LachlanHolmes for those of you that like lastweeknight's rant... and live in aus.
2016-03-01 11:58:24 LachlanHolmes :)
2016-03-01 12:10:03 NicholasB this is a rant
2016-03-01 12:10:11 NicholasB it's going to be huge.
2016-03-01 12:10:30 NicholasB lachlan's been typing for a while!
2016-03-01 12:39:58 NicholasB Sweet. Sometime watching.
2016-03-01 12:40:03 NicholasB Home time I mea
2016-03-01 13:31:16 NicholasB just swung me a third monitor FTW!
2016-03-01 13:32:52 LachlanHolmes LOL
2016-03-01 13:33:22 LachlanHolmes i went for a drive. i wasn't typing actually... my headphones was stuck on the spacebar LOOOOOOOOOOL
2016-03-01 13:33:36 NicholasB haha
2016-03-01 13:33:41 NicholasB nice work
2016-03-01 13:34:19 LachlanHolmes i went to my local homebrew shop to get some mats for a brew session i want to do next break and well they were closed today :(
2016-03-01 13:34:58 LachlanHolmes so tomorrow i gotta go to the car dealer to get some work done and then out to the home brew shop... Geez weekends. So busy :P
2016-03-01 13:36:15 NicholasB mats?
2016-03-01 13:36:21 NicholasB you mean heat mats?
2016-03-01 13:36:25 LachlanHolmes materials
2016-03-01 13:37:22 LachlanHolmes sorry it must be a wow player reference... aye. Like you need to get mats ie... woolies and crystals and shit to make a crafted item.
2016-03-01 13:37:37 NicholasB ahhh
2016-03-01 13:37:38 LachlanHolmes so yeah mats kinda bleeded over to irl.
2016-03-01 13:37:55 NicholasB still heat mats can be hamdy!
2016-03-01 13:38:18 LachlanHolmes thats true... but that aint gonna help me make bear :P
2016-03-01 13:38:20 LachlanHolmes bear
2016-03-01 13:38:22 LachlanHolmes DERP
2016-03-01 13:38:24 LachlanHolmes BEERRR
2016-03-01 13:38:29 LachlanHolmes *BEER
2016-03-01 13:38:31 LachlanHolmes nailed it.
2016-03-01 13:38:43 NicholasB it's all that beer
2016-03-01 13:39:24 LachlanHolmes actually the last time i had a beer was two weeks ago :P
2016-03-01 13:39:34 LachlanHolmes NOW Ciders is a different story :P
2016-03-01 13:45:05 NicholasB ha. i don't mind a cider, @JoeRess is a fiend so i hear.
2016-03-01 13:49:54 @fsociety 5.1 or gtfo
2016-03-01 13:50:26 @fsociety ciders give me awful headaches, i think it is the sugar content
2016-03-01 13:52:09 NicholasB 5.1 screens?
2016-03-01 13:59:51 Sean Work can be so god-awful boring.
2016-03-01 14:01:02 NicholasB i know right. does my head in
2016-03-01 14:01:18 NicholasB though I've started listing to classical radio. it calming
2016-03-01 14:02:20 Sean I wish I could listen to music at work. Factories hate people now-a-days and so playing music means they're still treating us as humans :)
2016-03-01 14:05:38 NicholasB i'll be hanest for all i get bored of my job it's really quite good in the class of doing what ever i want
2016-03-01 14:06:05 @fsociety so my only wd black drive decided to fail the other day
2016-03-01 14:06:10 @fsociety the "enterprise grade" drive
2016-03-01 14:07:33 NicholasB at home or work?
2016-03-01 14:07:39 @fsociety home, in my desktop
2016-03-01 14:07:49 NicholasB ahh fuck
2016-03-01 14:07:55 NicholasB lose much?
2016-03-01 14:09:45 Sean Glad you are able to do what you want. I dream of doing what I want :)
2016-03-01 14:09:59 @fsociety well it hasn't totally failed yet, but I'm getting SMART error messages galore. I have limited time left.
2016-03-01 14:10:00 @fsociety SMART Self-test log structure revision number 1
2016-03-01 14:10:00 @fsociety Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
2016-03-01 14:10:01 @fsociety # 1 Short offline Completed: unknown failure 90% 13361 -
2016-03-01 14:10:01 @fsociety # 2 Short offline Completed: unknown failure 90% 13361 -
2016-03-01 14:10:01 @fsociety # 3 Short offline Completed: unknown failure 90% 13361 -
2016-03-01 14:10:01 @fsociety # 4 Extended offline Completed: unknown failure 90% 13361 -
2016-03-01 14:10:45 @fsociety 1 Raw_Read_Error_Rate 0x002f 192 191 051 Pre-fail Always - 395
2016-03-01 14:10:45 @fsociety 3 Spin_Up_Time 0x0027 160 140 021 Pre-fail Always - 10991
2016-03-01 14:10:45 @fsociety 4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 200
2016-03-01 14:10:45 @fsociety 5 Reallocated_Sector_Ct 0x0033 137 137 140 Pre-fail Always FAILING_NOW 1863
2016-03-01 14:10:45 @fsociety 7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
2016-03-01 14:10:45 @fsociety 9 Power_On_Hours 0x0032 082 082 000 Old_age Always - 13426
2016-03-01 14:10:45 @fsociety 10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
2016-03-01 14:10:45 @fsociety 11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
2016-03-01 14:10:45 @fsociety 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 129
2016-03-01 14:10:45 @fsociety 192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 51
2016-03-01 14:10:45 @fsociety 193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 148
2016-03-01 14:10:45 @fsociety 194 Temperature_Celsius 0x0022 110 107 000 Old_age Always - 42
2016-03-01 14:10:45 @fsociety 196 Reallocated_Event_Count 0x0032 001 001 000 Old_age Always - 1430
2016-03-01 14:10:45 @fsociety 197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
2016-03-01 14:10:45 @fsociety 198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 6
2016-03-01 14:10:45 @fsociety 199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
2016-03-01 14:10:45 @fsociety 200 Multi_Zone_Error_Rate 0x0008 193 188 000 Old_age Offline - 2244
2016-03-01 14:10:58 NicholasB have you spoken to steve Gibson. he can recommend something
2016-03-01 14:11:25 @fsociety oooo.. any suggestions would be welcome
2016-03-01 14:11:37 @fsociety otherwise i'll have to rma this six month old drive
2016-03-01 14:12:52 NicholasB ohh it was a bit of a joke
2016-03-01 14:13:01 NicholasB steve Gibson goes on about spinrite
2016-03-01 14:13:08 NicholasB because he made it
2016-03-01 14:13:12 @fsociety :( i do not know of steve gibson
2016-03-01 14:13:27 NicholasB Security Now!
2016-03-01 14:13:41 NicholasB get work to buy a license
2016-03-01 14:14:11 NicholasB https://www.grc.com/sr/spinrite.htm
2016-03-01 14:17:25 @fsociety haha.. i googled that error msg and i got the following
2016-03-01 14:17:27 @fsociety Reallocated Sectors Count - Potential indicator of imminent electromechanical failure.
2016-03-01 14:17:34 @fsociety YAAAAAAYYYYY
2016-03-01 14:17:48 LachlanHolmes dead drive incoming!
2016-03-01 14:17:49 NicholasB how big is it?
2016-03-01 14:17:59 @fsociety 2tb black
2016-03-01 14:18:16 @fsociety im trying to copy off it now, and i'm only getting 5mb a second
2016-03-01 14:18:31 @fsociety i think i must say farewell to image backups
2016-03-01 14:18:32 CarlosLopez Time to go shopping Dean
2016-03-01 14:18:44 LachlanHolmes excuse my next post. im testing something. IE. spam.
2016-03-01 14:20:54 @fsociety shopping when i can afford the drive
2016-03-01 14:20:58 @fsociety those drives aren't cheap
2016-03-01 14:21:26 @fsociety luckily my friend down the road has one of my black 1tb drives still. so im going to grab that off him temporarily
2016-03-01 14:48:55 LachlanHolmes [14:24:04] <br><img id="15">
2016-03-01 14:48:55 LachlanHolmes [14:24:36] <br><img id="16">
2016-03-01 14:48:55 NicholasB [14:28:36] nice gifage
2016-03-01 15:13:17 CarlosLopez Gee you sound different Dan
2016-03-01 15:14:13 NottheOtherDan That's my citilink voice
2016-03-01 15:14:34 CarlosLopez lol
2016-03-01 22:06:09 NottheOtherDan http://systemau.net.au/episode-26/
2016-03-01 22:08:12 PaulGleeson 4.9/5
2016-03-01 22:08:33 NottheOtherDan Perfec
2016-03-02 01:39:40 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 01:39:40 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 01:39:44 < root has kicked fsociety (Cleaning up channel)
2016-03-02 01:39:44 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 01:39:44 - Topic for ##systemau is "#systemau"
2016-03-02 01:39:44 - Topic set by root (root@localhost) on Wed, 02 Mar 2016 01:39:44
2016-03-02 01:39:44 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 01:39:44 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-02 01:39:44 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-02 01:39:44 > Adam (Adam@telegram) has joined ##systemau
2016-03-02 01:39:44 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-02 01:39:44 > Amir (Amir@telegram) has joined ##systemau
2016-03-02 01:39:44 > Angela (Angela@telegram) has joined ##systemau
2016-03-02 01:39:44 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-02 01:39:44 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-02 01:39:44 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-02 01:39:44 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-02 01:39:44 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-02 01:39:44 > emb (emb@telegram) has joined ##systemau
2016-03-02 01:39:44 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-02 01:39:44 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-02 01:39:44 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-02 01:39:44 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-02 01:39:44 > Joe (Joe@telegram) has joined ##systemau
2016-03-02 01:39:44 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-02 01:39:44 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-02 01:39:44 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-02 01:39:44 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-02 01:39:44 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-02 01:39:44 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-02 01:39:44 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-02 01:39:44 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-02 01:39:44 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-02 01:39:44 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-02 01:39:44 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-02 01:39:44 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-02 01:39:44 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-02 01:39:44 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-02 01:39:44 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-02 01:39:44 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-02 01:39:44 > Sean (Sean@telegram) has joined ##systemau
2016-03-02 01:39:44 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-02 01:39:44 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-02 01:39:44 > Tom (Tom@telegram) has joined ##systemau
2016-03-02 01:39:44 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-02 01:39:44 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-02 01:39:44 NotDan [2016-03-01 22:27:06] It was unethical, immoral, politically stupid, illegal, and unconstitutional
2016-03-02 01:39:44 NotDan [2016-03-01 22:27:15] whoops
2016-03-02 01:41:17 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < CarlosLopez (Carlos_Lopez@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 01:41:17 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-02 03:55:45 - irc: disconnected from server
2016-03-02 03:58:05 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 03:58:05 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 04:00:40 - irc: disconnected from server
2016-03-02 07:33:10 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 07:33:10 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 07:33:13 < root has kicked fsociety (Cleaning up channel)
2016-03-02 07:33:13 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 07:33:13 - Topic for ##systemau is "#systemau"
2016-03-02 07:33:13 - Topic set by root (root@localhost) on Wed, 02 Mar 2016 07:33:13
2016-03-02 07:33:13 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 07:33:13 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-02 07:33:13 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-02 07:33:13 > Adam (Adam@telegram) has joined ##systemau
2016-03-02 07:33:13 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-02 07:33:13 > Amir (Amir@telegram) has joined ##systemau
2016-03-02 07:33:13 > Angela (Angela@telegram) has joined ##systemau
2016-03-02 07:33:13 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-02 07:33:13 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-02 07:33:13 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-02 07:33:13 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-02 07:33:13 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-02 07:33:13 > emb (emb@telegram) has joined ##systemau
2016-03-02 07:33:13 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-02 07:33:13 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-02 07:33:13 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-02 07:33:13 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-02 07:33:13 > Joe (Joe@telegram) has joined ##systemau
2016-03-02 07:33:13 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-02 07:33:13 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-02 07:33:13 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-02 07:33:13 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-02 07:33:13 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-02 07:33:13 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-02 07:33:13 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-02 07:33:13 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-02 07:33:13 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-02 07:33:13 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-02 07:33:13 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-02 07:33:13 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-02 07:33:13 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-02 07:33:13 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-02 07:33:13 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-02 07:33:13 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-02 07:33:13 > Sean (Sean@telegram) has joined ##systemau
2016-03-02 07:33:13 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-02 07:33:13 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-02 07:33:13 > Tom (Tom@telegram) has joined ##systemau
2016-03-02 07:33:13 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-02 07:33:13 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-02 07:33:13 Moritz [05:22:25] The latest update of the Github-repository of Telegram for Android has been two months ago and it is still on version 3.4.2.
2016-03-02 07:33:13 Moritz [05:22:25]
2016-03-02 07:33:13 Moritz [05:22:25] It is understandable that Telegram waits a short time after a major update to fix bugs and publishs the source code after a few days, but two months (and skipping at least one major version) is way to long.
2016-03-02 07:33:13 Moritz [05:22:25] Basically Telegram for Android is NOT open source since two months and many developers that build apps on top of Telegram for Android depend on the update to add new functionalities to their apps (like for example @plusmsgr).
2016-03-02 07:33:13 Moritz [05:22:25]
2016-03-02 07:33:13 Moritz [05:22:25] A self-proclaimed open source app can not stay closed source for two months!
2016-03-02 07:33:13 Moritz [05:22:25]
2016-03-02 07:33:13 Moritz [05:22:25] All the other Telegram apps (iOS, Web, Desktop, Mac) are published regularly.
2016-03-02 07:33:16 - Mode ##systemau [+t]
2016-03-02 07:34:17 @fsociety morning people.. have to get into work early this morning to boot up weird and bizarre unix dev machines. our air con failed last night in the office and had to shutdown the machines
2016-03-02 07:36:54 @fsociety Moritz: we should just make an ejabberd instance instead of telegram if we want to be totally open source :)
2016-03-02 07:37:03 PaulGleeson Fuck
2016-03-02 07:37:46 @fsociety it's not surprising really
2016-03-02 07:38:04 @fsociety i wait for the open source alternatives of telegram :)
2016-03-02 08:05:49 Moritz Please not jabber. At least not without all the XEPs. I used fdroid so i never use the non-free telegram client. But still that is annoying.
2016-03-02 08:05:54 Moritz https://www.youtube.com/watch?v=k1YIrKyR3VU
2016-03-02 08:06:22 Moritz Have you bought the Humble Bundle 16?
2016-03-02 08:09:03 @fsociety Moritz: i own 98% of those games already :)
2016-03-02 08:10:55 @fsociety though since the glvnd extensions inthe nvidia drivers - steam has been all a bit haywire
2016-03-02 08:11:14 @fsociety mind youi think a lot of that is coming from the fact my wd black is failing, only discovered that other day
2016-03-02 08:11:34 @fsociety and luckily i spare wd black, have to pick it up from my friends house tonight
2016-03-02 08:14:21 Moritz @F_s0c1ety do you use a RAID solution?
2016-03-02 08:15:32 @fsociety not on my desktop. my desktop has 3 ssds. 1 for linux, 1 for windows and 1 for steam games. and a 2tb black drive for all the random stuff and games that dont fit on the ssds
2016-03-02 08:16:02 @fsociety the games that i was trying to play and were hard locking was on the black drive
2016-03-02 08:16:31 @fsociety made me make a cronjob to get smartctl to send me an email if it discovers issues via the smart selftest for future
2016-03-02 08:16:38 @fsociety more annoyingly its a six month old black drive
2016-03-02 08:16:43 @fsociety "oh we are so enterprise"
2016-03-02 08:21:31 Moritz :) You could do LVM for the linux stuff. You can do caching and pin data to a specific PV. Or do you use the same steam partition for linux and windows?
2016-03-02 08:23:29 @fsociety for win and linux
2016-03-02 08:23:40 @fsociety two partitions.. one ntfs and one ext4
2016-03-02 08:23:45 @fsociety halfed evenly..
2016-03-02 08:23:47 @fsociety its a 480gb
2016-03-02 08:23:53 @fsociety its the same with the black drive
2016-03-02 08:24:00 @fsociety half ntfs and half ext4
2016-03-02 08:24:09 @fsociety wish windows supported ext4 "properly"
2016-03-02 08:24:37 @fsociety refuse to use ntfs, cause lets face it ntfs-3g uses way too much cpu at the best of times for i/o
2016-03-02 08:24:38 Moritz Then do LVM, (or not because it already works)!
2016-03-02 08:24:47 @fsociety ill look it up
2016-03-02 08:25:06 @fsociety have you got a nice article i could read regarding lvm
2016-03-02 08:25:18 Moritz Is the http://freenas.org down for you? isup.me says yes and i can't get anything.
2016-03-02 08:26:04 Moritz Let me think a bit about it. Not right at hand. But i can always recommend the RedHat documentation for it.
2016-03-02 08:27:26 @fsociety ah alright.. i guess the archwiki would be a good place. it always is - no matter the distro :)
2016-03-02 08:29:05 Moritz You might be interested in this article. It compares bcache and LVM caching. Although it might be outdated because bcache might got some updates since the article was released: https://blog-vpodzime.rhcloud.com/?p=45
2016-03-02 08:31:01 @fsociety Moritz: thank i'll definetly check it out, picking up my spare black drive putting an rma in for the dead one
2016-03-02 08:31:11 Moritz One nice feature of LVM, migrating a running system to another disk: https://www.reddit.com/r/linux/comments/123399/til_how_to_move_my_entire_system_to_a_second/
2016-03-02 08:32:31 @fsociety ye i've been meaning to look into LVM, just needed an excuse... now i can :)
2016-03-02 10:10:53 CarlosLopez Hi folks
2016-03-02 10:11:33 CarlosLopez i3 update: ClusterSSH looks funny on i3
2016-03-02 10:13:21 CarlosLopez <br><img id="3">
2016-03-02 10:23:55 @fsociety moooanin'
2016-03-02 10:25:52 @fsociety i'm spending my morning compiling ue4 engine and editor
2016-03-02 10:25:56 @fsociety see if i can succeed this time
2016-03-02 10:46:26 LachlanHolmes @enjayembee
2016-03-02 10:46:26 LachlanHolmes
2016-03-02 10:46:26 LachlanHolmes https://twitter.com/shen/status/704427559530983425
2016-03-02 11:04:16 NicholasB wowo
2016-03-02 11:04:18 NicholasB thats a lot
2016-03-02 11:07:38 NicholasB <br><img id="4">
2016-03-02 11:07:39 NicholasB finally
2016-03-02 11:23:50 @fsociety guessing that is your home machine
2016-03-02 11:23:57 NicholasB yeah. on monitor is older than the other two. need to wait till its dark and tweak
2016-03-02 11:24:01 NicholasB yeah thats my home setup.
2016-03-02 11:24:06 @fsociety what backend are you using for multiple monitors
2016-03-02 11:24:10 @fsociety xinerama, xrandr, etc?
2016-03-02 11:24:22 NicholasB just the nvidia prob drivers one
2016-03-02 11:24:27 NicholasB *prop
2016-03-02 11:28:12 @fsociety ahh.. do you have any weird issues with vsync not applying on certain monitors
2016-03-02 11:28:20 @fsociety its been so long since i've tried multi-monitor setups on linux
2016-03-02 11:29:24 NicholasB not so far.
2016-03-02 11:29:40 NicholasB it took no config. all plug and play.
2016-03-02 11:31:03 @fsociety hmm.. maybe one day i'll get a second monitor again
2016-03-02 11:31:07 @fsociety at this point i dont need one
2016-03-02 11:31:22 NicholasB no one neeeeeeds
2016-03-02 11:31:26 NicholasB two or three monitors.
2016-03-02 11:34:30 LachlanHolmes i have 3 monitors on ubuntu 15.10...
2016-03-02 11:34:38 LachlanHolmes using a gtx970.
2016-03-02 11:34:58 @fsociety i'd struggle to fit two 32" ultra widescreen curved monitors on my desktop
2016-03-02 11:35:18 LachlanHolmes yeah i only have a 22 + 27 + 24. so yah
2016-03-02 11:35:52 NicholasB ohhh thats right you have an ultra wide. that pascially is two monitor though
2016-03-02 11:36:11 NicholasB *basically
2016-03-02 11:36:28 @fsociety why i bought it
2016-03-02 11:36:31 @fsociety current res is 3440x1440
2016-03-02 11:36:35 @fsociety so 2k ultra wide
2016-03-02 11:36:55 @fsociety and you can input two different signals at once on the one display as well. so picture in picture if you will
2016-03-02 11:36:56 NicholasB we i 100 percent see why you dont think you need two monitors
2016-03-02 11:37:02 NicholasB ha
2016-03-02 11:37:19 @fsociety i also hate the whole bevel thing
2016-03-02 11:39:01 @fsociety ps. finally feel comfortable with that vap. the blueberry and the caramel are pretty nice. the cinammon one just makes me cough - and for someone unknown reason doesn't give me the nicotone buzz i require. but the other two are fine
2016-03-02 11:39:39 NicholasB cool. if you want easy nic vape juice, soulblu.co.nz is your bed.
2016-03-02 11:39:48 NicholasB i reckon they ship locally
2016-03-02 11:39:56 NicholasB though they say its from nz
2016-03-02 11:41:26 @fsociety ahh i'll check it out now
2016-03-02 11:43:17 @fsociety ooo. vanilla bean
2016-03-02 11:43:27 @fsociety nana cream pie.. interesting
2016-03-02 11:48:42 NicholasB they are a good mid ground. there are great flavours in the usa but you pay through the nose.
2016-03-02 11:49:29 @fsociety yeah i don't particularly want to pay through the nose
2016-03-02 11:49:32 @fsociety im trying to save money
2016-03-02 11:49:32 @fsociety haha
2016-03-02 12:11:13 @fsociety a day in the cli - compiling ue4
2016-03-02 12:11:18 @fsociety https://u.teknik.io/Zvsey.png
2016-03-02 12:11:22 @fsociety https://u.teknik.io/giEzp.png
2016-03-02 12:11:27 @fsociety https://u.teknik.io/OCpV3.png
2016-03-02 13:25:41 @fsociety nice to ue4 uses my resources wisely https://u.teknik.io/uD9m1.png
2016-03-02 13:28:06 CarlosLopez Jayzus! Are you rendering stuff there?
2016-03-02 13:30:31 @fsociety compiling unreal4
2016-03-02 13:31:13 CarlosLopez Wow! There's no way I'm even going to try (I'd fry my poor old cheap laptop at home!)
2016-03-02 13:31:51 @fsociety yeah its gonna take a while to compile even on my machine
2016-03-02 13:33:49 NicholasB hey you still have .7 of cpu left.
2016-03-02 13:34:03 @fsociety hahaha.. at that given second :)
2016-03-02 13:36:57 NicholasB its more than a pocket calcultor. do your budget with it.
2016-03-02 13:38:25 @fsociety first successful compile of ue4 though.. makes me happy. compiling my friends ue4 project on linux to see the performance differences between the dx renderer and the opengl reenderer
2016-03-02 13:41:37 NicholasB sweet.
2016-03-02 13:42:54 @fsociety ill keep you posted on the differences. my friends project uses the photo realistic shaders. its essentially an interactive project of the new mcg upgrade. he is designing it
2016-03-02 13:46:47 @fsociety ue4 is currently using 6.5gb of RAM to compile. only at module 93 of 788. urgh
2016-03-02 13:55:22 - irc: disconnected from server
2016-03-02 13:55:36 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 13:55:36 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 14:03:45 < root has kicked fsociety (Cleaning up channel)
2016-03-02 14:03:45 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 14:03:45 - Topic for ##systemau is "#systemau"
2016-03-02 14:03:45 - Topic set by root (root@localhost) on Wed, 02 Mar 2016 14:03:45
2016-03-02 14:03:45 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 14:03:45 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-02 14:03:45 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-02 14:03:45 > Adam (Adam@telegram) has joined ##systemau
2016-03-02 14:03:45 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-02 14:03:45 > Amir (Amir@telegram) has joined ##systemau
2016-03-02 14:03:45 > Angela (Angela@telegram) has joined ##systemau
2016-03-02 14:03:45 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-02 14:03:45 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-02 14:03:45 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-02 14:03:45 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-02 14:03:45 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-02 14:03:45 > emb (emb@telegram) has joined ##systemau
2016-03-02 14:03:45 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-02 14:03:45 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-02 14:03:45 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-02 14:03:45 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-02 14:03:45 > Joe (Joe@telegram) has joined ##systemau
2016-03-02 14:03:45 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-02 14:03:45 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-02 14:03:45 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-02 14:03:45 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-02 14:03:45 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-02 14:03:45 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-02 14:03:45 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-02 14:03:45 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-02 14:03:45 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-02 14:03:45 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-02 14:03:45 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-02 14:03:45 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-02 14:03:45 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-02 14:03:45 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-02 14:03:45 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-02 14:03:45 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-02 14:03:45 > Sean (Sean@telegram) has joined ##systemau
2016-03-02 14:03:45 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-02 14:03:45 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-02 14:03:45 > Tom (Tom@telegram) has joined ##systemau
2016-03-02 14:03:45 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-02 14:03:45 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-02 14:03:45 ScottHuntley Finally added the #systemau sticker to my laptop. Thank you @kloinka for bringing it back from Geelong.
2016-03-02 14:04:00 ScottHuntley <br><img id="4">
2016-03-02 14:05:50 @fsociety excellent
2016-03-02 14:09:49 NicholasB haaaaaa.
2016-03-02 14:14:41 EricT Sticker Vomit! lol
2016-03-02 14:22:57 LachlanHolmes A couple of questions. Why is grey grey called grey grey? How did you 'meet' grey grey'
2016-03-02 14:22:57 LachlanHolmes
2016-03-02 14:22:57 LachlanHolmes On a side note he reminds me of Shaun Micallef...
2016-03-02 14:23:12 LachlanHolmes Discuss...
2016-03-02 14:27:07 NicholasB lol. he's just a voice actor who i found on fiver a few years ago when i needed some fake radio announcements for alil project
2016-03-02 14:27:12 NicholasB they were great i kept him on
2016-03-02 14:28:39 NicholasB gray gray just seems like a good name :)
2016-03-02 14:31:35 @fsociety i remember when i was creating an old video game - i magically found one of the voice actors from the lord of the rings mmo. he was really cool and did all the VO work for free on my free game
2016-03-02 14:31:40 @fsociety you can find some great people out there
2016-03-02 14:36:23 ScottHuntley I like Grey Gray
2016-03-02 14:36:31 LachlanHolmes Anyone else think he sounds a bit like Shaun?
2016-03-02 14:37:13 EricT Ive seen the Video, it aint Shaun, lol
2016-03-02 14:37:22 LachlanHolmes Must be me. Anyway his like a verbal 'stig'.
2016-03-02 14:37:31 NottheOtherDan Gray Gray is cutesy for Graham.
2016-03-02 14:37:58 NottheOtherDan We imagined hime wearing brown velour suits with purple paisley shirts.
2016-03-02 14:38:07 LachlanHolmes Lol OK
2016-03-02 14:38:15 EricT and huge lapels!
2016-03-02 14:38:22 NottheOtherDan The HUGEST!
2016-03-02 14:38:38 EricT with a carnation in the button hole
2016-03-02 14:39:11 NottheOtherDan Only when he's out with the lasies.
2016-03-02 14:39:27 NottheOtherDan Ladies even
2016-03-02 14:39:52 EricT Having a DA beer at the Golden Stump!
2016-03-02 14:40:23 EricT Black Stump*
2016-03-02 14:40:37 EricT so long ago, I cant remeber
2016-03-02 16:17:51 @fsociety here is a replacement for telegram
2016-03-02 16:17:53 @fsociety movim.eu
2016-03-02 16:18:00 @fsociety looks pretty damn cool actually
2016-03-02 16:24:15 EricT for a team of 3, looks impresh
2016-03-02 16:25:35 @fsociety i know right.
2016-03-02 16:53:25 CarlosLopez yeah but it looks like it's in French. And I don't really write French.
2016-03-02 16:54:48 @fsociety haha. most likely all the documentation is in english though. haha
2016-03-02 16:56:34 CarlosLopez Looks pretty friendly: apache OR nginx, mysql/MariaDB OR Postgresql. Php, though.
2016-03-02 16:57:41 CarlosLopez Question 1 (not irrelevant, seeing as the forums were hacked): security?
2016-03-02 17:00:13 CarlosLopez I like this: "You want to stay anonymous?
2016-03-02 17:00:13 CarlosLopez You don't have to provide any personal information to join."
2016-03-02 17:40:57 CarlosLopez Thinking of holiday ideas? http://www.pri.org/stories/2016-02-25/man-attempts-cross-alps-wearing-prosthetic-hooves?utm_source=nextdraft&utm_medium=email
2016-03-02 17:56:52 - irc: disconnected from server
2016-03-02 19:58:17 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 19:58:17 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 20:47:02 - irc: disconnected from server
2016-03-02 21:00:26 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 21:00:26 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 21:09:34 @fsociety https://u.teknik.io/GSpDn.png
2016-03-02 21:09:40 @fsociety finally got the bloody editor to run
2016-03-02 21:12:06 < root has kicked fsociety (Cleaning up channel)
2016-03-02 21:12:06 > fsociety (whoami@localhost) has joined ##systemau
2016-03-02 21:12:06 - Topic for ##systemau is "#systemau"
2016-03-02 21:12:06 - Topic set by root (root@localhost) on Wed, 02 Mar 2016 21:12:06
2016-03-02 21:12:06 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-02 21:12:06 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-02 21:12:06 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-02 21:12:06 > Adam (Adam@telegram) has joined ##systemau
2016-03-02 21:12:06 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-02 21:12:06 > Amir (Amir@telegram) has joined ##systemau
2016-03-02 21:12:06 > Angela (Angela@telegram) has joined ##systemau
2016-03-02 21:12:06 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-02 21:12:06 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-02 21:12:06 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-02 21:12:06 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-02 21:12:06 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-02 21:12:06 > emb (emb@telegram) has joined ##systemau
2016-03-02 21:12:06 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-02 21:12:06 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-02 21:12:06 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-02 21:12:06 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-02 21:12:06 > Joe (Joe@telegram) has joined ##systemau
2016-03-02 21:12:06 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-02 21:12:06 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-02 21:12:06 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-02 21:12:06 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-02 21:12:06 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-02 21:12:06 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-02 21:12:06 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-02 21:12:06 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-02 21:12:06 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-02 21:12:06 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-02 21:12:06 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-02 21:12:06 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-02 21:12:06 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-02 21:12:06 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-02 21:12:06 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-02 21:12:06 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-02 21:12:06 > Sean (Sean@telegram) has joined ##systemau
2016-03-02 21:12:06 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-02 21:12:06 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-02 21:12:06 > Tom (Tom@telegram) has joined ##systemau
2016-03-02 21:12:06 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-02 21:12:06 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-02 21:12:06 LewisCividin well that's novel
2016-03-02 21:28:14 EricT It's March already! give me a break!!
2016-03-02 21:28:14 EricT http://i.imgur.com/oGceLg2.png
2016-03-02 21:29:22 PaulGleeson Just got a case in work for a product no one knew we sold
2016-03-02 21:30:02 EricT IP Dildos?
2016-03-02 21:31:06 @fsociety even more success
2016-03-02 21:31:07 @fsociety https://u.teknik.io/6ZlRa.png
2016-03-02 21:31:43 EricT Much 3D
2016-03-02 21:32:04 EricT <br><img id="4">
2016-03-02 21:32:29 @fsociety haha
2016-03-02 21:32:34 PaulGleeson No unfortunately were only a security company
2016-03-02 21:32:39 @fsociety i like how much ram it uses
2016-03-02 21:33:02 EricT Chastity Belts?
2016-03-02 21:33:22 @fsociety I'm confused
2016-03-02 21:33:27 PaulGleeson Yes but for networks
2016-03-02 21:33:39 EricT Anal Chastity Belts, Gauranteed Constipation!
2016-03-02 21:33:43 EricT lol
2016-03-02 21:33:46 @fsociety haha okay
2016-03-02 21:33:54 @fsociety when was the last time you slept sir.. haha
2016-03-02 21:35:06 EricT Oral Chastity Belts...Mad Max Fury Road style.
2016-03-02 21:37:16 @fsociety how about irreversable styles
2016-03-02 21:37:19 @fsociety or antikrist styles
2016-03-02 21:38:16 EricT That's it, Im all out of orifices
2016-03-02 21:38:25 @fsociety until you download 4k pr0n
2016-03-02 21:39:04 EricT I dont got to "The Darknet"
2016-03-02 21:39:14 EricT go*
2016-03-02 21:39:22 @fsociety ahh yeah i watched that show, not what i was expecting at all tbh
2016-03-03 01:46:28 > fsociety (whoami@localhost) has joined ##systemau
2016-03-03 01:46:28 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-03 01:49:30 < root has kicked fsociety (Cleaning up channel)
2016-03-03 01:49:30 > fsociety (whoami@localhost) has joined ##systemau
2016-03-03 01:49:30 - Topic for ##systemau is "#systemau"
2016-03-03 01:49:30 - Topic set by root (root@localhost) on Thu, 03 Mar 2016 01:49:30
2016-03-03 01:49:30 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-03 01:49:30 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-03 01:49:30 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-03 01:49:30 > Adam (Adam@telegram) has joined ##systemau
2016-03-03 01:49:30 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-03 01:49:30 > Amir (Amir@telegram) has joined ##systemau
2016-03-03 01:49:30 > Angela (Angela@telegram) has joined ##systemau
2016-03-03 01:49:30 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-03 01:49:30 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-03 01:49:30 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-03 01:49:30 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-03 01:49:30 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-03 01:49:30 > emb (emb@telegram) has joined ##systemau
2016-03-03 01:49:30 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-03 01:49:30 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-03 01:49:30 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-03 01:49:30 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-03 01:49:30 > Joe (Joe@telegram) has joined ##systemau
2016-03-03 01:49:30 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-03 01:49:30 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-03 01:49:30 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-03 01:49:30 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-03 01:49:30 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-03 01:49:30 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-03 01:49:30 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-03 01:49:30 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-03 01:49:30 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-03 01:49:30 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-03 01:49:30 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-03 01:49:30 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-03 01:49:30 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-03 01:49:30 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-03 01:49:30 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-03 01:49:30 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-03 01:49:30 > Sean (Sean@telegram) has joined ##systemau
2016-03-03 01:49:30 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-03 01:49:30 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-03 01:49:30 > Tom (Tom@telegram) has joined ##systemau
2016-03-03 01:49:30 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-03 01:49:30 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-03 01:49:30 Moritz I want one of these:
2016-03-03 01:49:30 Moritz http://www.morgan-motor.co.uk/ev3/
2016-03-03 03:10:29 PaulGleeson It even has it's own debug tools. Like wtf?
2016-03-03 04:30:11 Sean @enjayembee Did you email the fake .org people yet? (Just listened to ep 26)
2016-03-03 04:39:29 Moritz <br><img id="4"><br>Apple general counsel Bruce Sewell called Telegram "totally uncrackable” in a speech before the U.S. Congress in the case of decoding the information on the iPhone of a terrorist from San Bernardino.
2016-03-03 07:43:22 NicholasB was on todays to-do list!
2016-03-03 08:15:23 Sean Awesome! Anticipating the response you'll get.
2016-03-03 08:16:36 LewisCividin @lightonflux always loved Morgans
2016-03-03 09:17:24 @fsociety linux has had a bad run this week. vunerability in glibc and now openssl again.
2016-03-03 10:22:10 AlanPope pffft
2016-03-03 10:23:59 @fsociety haha
2016-03-03 10:29:14 TristanJames <br><img id="5">
2016-03-03 10:29:14 TristanJames Urgh, I'm getting this when I try to log into facebook on chrome at work :(
2016-03-03 10:29:42 NicholasB ohh nasty
2016-03-03 10:32:22 @fsociety what is this chrome and facebook you speak of sir ;)
2016-03-03 10:32:34 @fsociety i've only heard of gopher.. the ultimate in internet protocols
2016-03-03 10:32:36 @fsociety pshawww
2016-03-03 10:51:45 Moritz https://www.youtube.com/watch?v=IvUU8joBb1Q
2016-03-03 11:26:25 NicholasB @JoeRess have you done anything with your PI 3 yet?
2016-03-03 12:35:35 Joe Not yet
2016-03-03 12:35:43 Joe Just done some tests
2016-03-03 12:36:12 Joe I just tried to resize my digital ocean droplet back down
2016-03-03 12:36:30 Joe Having upped it for the Monday release just in case
2016-03-03 12:36:39 Joe But shit went horribly wrong
2016-03-03 12:37:02 Joe After an hour of panicking the DO staff fixed it for me
2016-03-03 12:37:18 Joe And hopefully thepipodcast.com and joeress.com are back up
2016-03-03 12:37:48 Joe I thought I was going to have to stay up all night rebuilding the server
2016-03-03 12:38:03 Joe Fuck me that was a nightmare
2016-03-03 12:38:07 Joe But now, bed
2016-03-03 12:41:03 NicholasB NIGHT!
2016-03-03 12:41:22 NicholasB Sorry to hear of you Digital Ocean woes
2016-03-03 13:29:58 @fsociety I did wish Digital Ocean had more OS choices
2016-03-03 13:39:20 NicholasB i suppose they have to custom load them, i'd would be nice if you could upload an iso (or link to one)
2016-03-03 13:46:53 CarlosLopez For all your election needs ... http://mcafee16store.com/
2016-03-03 13:49:03 @fsociety i'll elect for him if he gives me plates of cocaine
2016-03-03 13:49:05 @fsociety then i'd consider
2016-03-03 13:50:06 NicholasB https://www.youtube.com/watch?v=SgIhf4rEPB0
2016-03-03 13:50:28 CarlosLopez plates seem to be out of stock, but everything else seems well and truly coked up
2016-03-03 13:51:25 @fsociety hahaha
2016-03-03 13:52:12 LachlanHolmes it's a sad day.... one of my wifi ap's is dead... long live '404'
2016-03-03 13:52:15 LachlanHolmes :(
2016-03-03 13:52:44 @fsociety oh which reminds me i have to low level format a wd black drive for rma
2016-03-03 13:52:47 @fsociety now that is sadder
2016-03-03 13:53:30 NicholasB that why everything should be encrypted
2016-03-03 13:53:36 NicholasB wipe the headers
2016-03-03 13:53:39 NicholasB done
2016-03-03 14:06:54 @fsociety low level format raaahhhhhh
2016-03-03 14:07:02 @fsociety warranty is still valid till 2019
2016-03-03 14:07:04 @fsociety woohoo
2016-03-03 14:09:20 NicholasB nice
2016-03-03 15:44:05 CarlosLopez Have you ever wondered what music someone working in a theological library might play? How about this: https://www.youtube.com/watch?v=sSiyA1cLTWQ
2016-03-03 15:45:12 CarlosLopez Oops! Should have checked the vid before posting
2016-03-03 15:46:00 CarlosLopez I meant this, of course: https://www.youtube.com/watch?v=K-jR-9o0cew
2016-03-03 16:30:15 EricT I can read Greek, you know...
2016-03-03 16:34:03 CarlosLopez I figured you might
2016-03-03 17:50:23 PaulGleeson Have a look at vultr they'll even let you upload an iso.
2016-03-03 17:50:43 PaulGleeson Morning lads
2016-03-03 18:36:26 NottheOtherDan OMFG Want, nay, NEED!
2016-03-03 18:36:34 NottheOtherDan Evening
2016-03-03 18:36:51 NicholasB im off to the supermarket then kmart. anyone need anything?
2016-03-03 18:37:03 CarlosLopez aloha
2016-03-03 18:37:17 NottheOtherDan Milk and a new flanny.
2016-03-03 18:37:40 EricT Can I have some Strawberry flavoured nipple clamps?
2016-03-03 18:38:00 NicholasB i used to ask for a strawberry big mac when i saw a trainee at mc donalds.
2016-03-03 18:39:08 EricT Acne blush!
2016-03-03 18:41:25 NicholasB <br><img id="6"><br>when taylor swift watches you on your three screen desktop.
2016-03-03 18:41:42 NottheOtherDan That's good! I used to ask for a quater pounder meal and 3 fried dim sims.
2016-03-03 18:47:54 CarlosLopez HEY! I'll be stuck at work until almost 8 and I'M ALREADY HUNGRY!
2016-03-03 18:48:03 CarlosLopez not even a damn vending machine around!
2016-03-03 18:48:07 EricT Make me so sad 😞
2016-03-03 18:48:07 EricT http://www.abc.net.au/news/2016-03-01/manning-what-went-wrong-with-the-nbn/7210408?section=technology
2016-03-03 18:48:15 EricT Eat books!
2016-03-03 18:48:25 CarlosLopez got enough fibre thanks
2016-03-03 18:48:30 EricT lol
2016-03-03 18:48:42 EricT Microfinche?
2016-03-03 18:48:54 CarlosLopez get stuck between my teeth
2016-03-03 18:48:58 CarlosLopez not good
2016-03-03 18:48:58 EricT lol
2016-03-03 18:49:20 EricT Domino's delivers!
2016-03-03 18:49:52 CarlosLopez this time of night? I'd be home by the time it came
2016-03-03 18:51:16 EricT It's only another hour, are you hypoglycemic?
2016-03-03 18:51:40 CarlosLopez no, just hungry.
2016-03-03 18:51:54 CarlosLopez WAIT! Found a cupachup in a drawer!
2016-03-03 18:51:57 CarlosLopez Huzzah!
2016-03-03 18:52:12 CarlosLopez *chupachup*
2016-03-03 18:52:14 EricT sugar-high forthcoming
2016-03-03 18:53:11 EricT Get @enjayembee to pick you up something from the grocer.
2016-03-03 18:53:34 CarlosLopez Hey Nick! Get us mars bar willya? I'll owe you
2016-03-03 19:00:59 EricT https://youtu.be/wWb03JAFiLM
2016-03-03 19:27:53 CarlosLopez Okay, Time to kick them out in the street so I can go home.
2016-03-03 22:23:50 MartinWimpress @kloinka thanks for being my spam proxy 😉
2016-03-03 22:24:40 EricT Im expecting a free copy of Ubuntu Mate16.04!
2016-03-03 23:54:22 NottheOtherDan Not the Other Dan changed photo.
2016-03-04 00:13:09 AlanPope hah
2016-03-04 00:23:16 EricT Is it?
2016-03-04 00:23:16 EricT http://i.imgur.com/35Ig1JO.png
2016-03-04 03:26:17 Joe <br><img id="7">
2016-03-04 03:26:17 Joe Thanks @popeydc
2016-03-04 03:26:44 PaulGleeson ❤️ the perl sticker
2016-03-04 03:32:36 AlanPope \o/
2016-03-04 03:33:06 AlanPope oh yeah, I lobbed a ton of extra stickers in, forgot about that :D
2016-03-04 03:36:23 Joe Yeah nice one
2016-03-04 03:36:43 Joe The systemau sticker is pretty fancy
2016-03-04 04:07:46 MartinWimpress @JoeRess Nice!
2016-03-04 04:20:57 Joe My wife went a bit mad with the Ubuntu stickers
2016-03-04 04:36:19 AlanPope hehe
2016-03-04 06:24:05 Moritz https://i.imgur.com/BNt4NIW.jpg
2016-03-04 06:29:16 AlanPope :)
2016-03-04 06:55:25 Joe They should rename Geek News Radio to Gaming News Radio.
2016-03-04 07:08:23 MartinWimpress Ohh, it stands for Geek News Radio? Huh. I thought different.
2016-03-04 07:29:40 NicholasB almost certainly
2016-03-04 08:38:42 CarlosLopez Systemau: A new dawn of freedom, or a scam?
2016-03-04 08:54:35 CarlosLopez lol
2016-03-04 09:11:12 Joe <br><img id="8">
2016-03-04 09:11:12 Joe Oh god
2016-03-04 09:11:13 Joe The pain
2016-03-04 09:26:18 NicholasB Why? What are you doing
2016-03-04 09:27:40 Joe Trying to fix an iPhone
2016-03-04 09:27:42 CarlosLopez [Do not want]
2016-03-04 09:27:52 Joe But it's fucked
2016-03-04 09:29:15 Joe I've lent him a Nexus 4 in the meantime
2016-03-04 09:34:09 NicholasB Ha. Poor Joe
2016-03-04 09:34:26 NicholasB Wait.
2016-03-04 09:34:37 NicholasB You're doing for the FBI aren't you joe
2016-03-04 09:34:47 NicholasB Apple wouldn't help, you put your hand up
2016-03-04 09:35:01 NicholasB *smfh*
2016-03-04 09:36:09 NottheOtherDan Have you tried turning it off and back on again?
2016-03-04 09:54:08 Joe "Android is a bit ugly compared to iOS in aesthetics and function"
2016-03-04 09:57:28 NicholasB I agress with the first part of the statement not the second.
2016-03-04 09:57:34 NicholasB *agree
2016-03-04 09:58:23 PaulGleeson Master of Puppets is now 30 years old
2016-03-04 10:02:10 NicholasB How old is reload?
2016-03-04 10:02:16 NicholasB And does anyone care?
2016-03-04 10:02:57 PaulGleeson 19
2016-03-04 10:03:22 PaulGleeson Give me fuel, give me fire, something something desire
2016-03-04 10:22:20 EricT did I hear Puppetry of the Penis?
2016-03-04 12:23:03 NicholasB oh that was 90s thing
2016-03-04 13:35:58 NottheOtherDan https://www.youtube.com/watch?v=kfVsfOSbJY0
2016-03-04 13:36:30 TristanJames What a great song.
2016-03-04 13:36:53 NottheOtherDan One of the greatest. It's like she's singing about my life.
2016-03-04 13:45:52 NicholasB And Wayland.
2016-03-04 14:13:47 CarlosLopez So I go away for an hour and come back to see Twitter awash with reactions at Trump's boast (at some kind of debate) of having a large penis.
2016-03-04 14:16:24 CarlosLopez He should have added "Friday:" in front of that
2016-03-04 14:19:50 NottheOtherDan He should said it while tea bagging Ted Cruz.
2016-03-04 14:28:14 CarlosLopez you mean he wasn't?
2016-03-04 14:34:16 NottheOtherDan <br><img id="9">
2016-03-04 14:34:16 NottheOtherDan Nice start to the weekend.
2016-03-04 14:38:09 TristanJames Nice.
2016-03-04 14:38:54 TristanJames <br><img id="10">
2016-03-04 14:38:58 TristanJames <br><img id="11">
2016-03-04 14:38:58 TristanJames This is what I've picked up this week.
2016-03-04 14:40:48 NottheOtherDan Fuck! Sars gives me shit if a single record gets delivered.
2016-03-04 14:44:52 TristanJames It is my birthday today, so I'm allowed to spoil myself. Some of the top pics wer bought with vouchers too.
2016-03-04 14:45:11 NicholasB Did death proof get a black vinyl issues. I've only seem the splatter disk
2016-03-04 14:45:26 NicholasB It's your fucking birthday?
2016-03-04 14:45:33 NicholasB Happy fucking birthday
2016-03-04 14:46:24 TristanJames Yep, cheers.
2016-03-04 14:46:53 NicholasB Getting hammered tonight or getting handmade presents from ya kiddylinks
2016-03-04 14:47:02 NicholasB Or both
2016-03-04 14:49:16 NottheOtherDan Happy Fucking Birthday @dj_salinger
2016-03-04 14:51:52 TristanJames Currently drinking a beer and playing around dj'ing some 90s dance classics in my dining room. Then going to see Tex Perkins and Charlie Owen in Ballarat tonight.
2016-03-04 14:52:17 EricT Happy Birthday Fellow Fish, mine is tomorrow!
2016-03-04 14:53:12 CarlosLopez Birthing day greetings to all to whom it applies
2016-03-04 14:55:00 NottheOtherDan You share a birthday with Brooklyn Beckham @dj_salinger. Well done.
2016-03-04 14:55:43 NottheOtherDan Oh! And Chaz Bono!!!
2016-03-04 14:56:00 TristanJames Wow. Fine company.
2016-03-04 14:56:37 NottheOtherDan Indeed.
2016-03-04 14:58:37 TristanJames <br><img id="12"><br>Turning my house into the Hacienda circa 1991.
2016-03-04 15:06:18 TristanJames <br><img id="13"><br>Stay classy Ballarat.
2016-03-04 15:10:56 NottheOtherDan Rusty
2016-03-04 16:02:56 NottheOtherDan <br><img id="14">
2016-03-04 16:05:09 NottheOtherDan <br><img id="15">
2016-03-04 16:05:09 NottheOtherDan Cheers.
2016-03-04 16:08:57 CarlosLopez Enjoy it
2016-03-04 16:18:22 EricT Me wantz one....
2016-03-04 16:23:46 NottheOtherDan I've got 11 more @kloinka. You're welcome to have a couple if you can get down here before they're gone.
2016-03-04 16:25:39 EricT <br><img id="16">
2016-03-04 16:28:09 TristanJames Those furphy's are good. My 6 year old some bought me a 6 pack of White Rabbit Pale Ale for my birthday!
2016-03-04 16:30:33 NottheOtherDan Nice! They're good too. Your six year old a bit taller than most?
2016-03-04 16:31:09 TristanJames Shortest in his class. Ballarat is classy, couldn't you tell from my earlier post?
2016-03-04 16:31:48 EricT Dodgy Vic bottlos!
2016-03-04 16:31:57 NottheOtherDan Does he do backyard tatts? Askingfor a friend.
2016-03-04 16:36:11 NottheOtherDan You still doing GP @dj_salinger ?
2016-03-04 16:38:42 TristanJames Yeah man, got a volunteer spot.
2016-03-04 16:43:48 NottheOtherDan Sweet! We'll have to hook up.
2016-03-04 16:44:06 NottheOtherDan <br><img id="17">
2016-03-04 17:14:15 NottheOtherDan <br><img id="18">
2016-03-04 17:26:45 NicholasB ohhh i hope you mean in the hot man love sense.
2016-03-04 17:27:33 NottheOtherDan No, I barely know him. I'm a 3 dates kinda guy.
2016-03-04 17:30:32 NicholasB Fuck it only goes for two nights. But you did date after the live show.
2016-03-04 17:35:54 TristanJames We're both married. It will be an affair
2016-03-04 17:36:15 NicholasB dan not married.
2016-03-04 17:36:19 NicholasB he's a sinner
2016-03-04 17:38:16 TristanJames even better
2016-03-04 17:38:41 NicholasB hell be your mister-ess
2016-03-04 18:20:16 NottheOtherDan http://youtu.be/MG0bAaK7p9s
2016-03-04 18:20:58 EricT Beer 1: Sobrietry 0
2016-03-04 18:25:06 EricT My last day in my 4th Decade....so sad 😞
2016-03-04 18:25:18 EricT Beer 2: Sobrietry 0
2016-03-04 18:28:55 NottheOtherDan Drink up old man. A toast to retirement.
2016-03-04 18:30:44 EricT I cant retire til 75! lol
2016-03-04 18:32:51 NottheOtherDan <br><img id="19">
2016-03-04 18:32:53 EricT LOL, for @dj_salinger today and me 2morrow
2016-03-04 18:32:54 NottheOtherDan Cheers to @dj_salinger and @kloinka
2016-03-04 18:33:13 EricT Cheers @elChupaNibre
2016-03-04 18:34:20 NicholasB I concur.
2016-03-04 18:35:51 EricT 🍻
2016-03-04 18:37:59 TristanJames Cheers everyone!
2016-03-04 18:38:27 EricT WOOO! Telegram Party!!
2016-03-04 18:39:54 EricT The gifs are intoxicating! #gifdrunk
2016-03-04 18:40:23 TristanJames <br><img id="20">
2016-03-04 18:40:55 NottheOtherDan Fuck, that Patron is a seriously good tequila.
2016-03-04 18:41:10 EricT Slammers!
2016-03-04 18:41:37 TristanJames are you drinking it out of the sippy cup in the background?
2016-03-04 18:41:37 NottheOtherDan Tequila Rapido!
2016-03-04 18:42:16 NottheOtherDan I'm 4 beers in. I need the help.
2016-03-04 18:42:42 EricT 2 only for, just got home
2016-03-04 18:42:49 EricT me*
2016-03-04 18:43:05 TristanJames I think i just put 6 empties into the recycling. Although one of them was @Jimmy3600 's cos he dropped in to say g'day
2016-03-04 18:43:37 EricT Geeks gone WILD!
2016-03-04 18:43:51 NicholasB im having some quiet rye
2016-03-04 18:44:03 NicholasB and laughing at how many shows mcaffee has been on this week
2016-03-04 18:45:24 EricT for @elChupaNibre Taquila
2016-03-04 18:45:24 EricT https://youtu.be/7vtF5GjVeaY
2016-03-04 18:45:53 NottheOtherDan I <3 Herb
2016-03-04 18:45:57 NottheOtherDan Alpert
2016-03-04 18:46:10 EricT A Prince Alpert?
2016-03-04 18:46:11 EricT lol
2016-03-04 18:46:26 NottheOtherDan You've seen my private photos
2016-03-04 18:51:41 NottheOtherDan Watch "Herb Alpert & Tijuana Brass -- The Lonely Bull" on YouTube
2016-03-04 18:51:41 NottheOtherDan https://youtu.be/0EDW6gEQ2DU
2016-03-04 18:52:00 NottheOtherDan My fave herb
2016-03-04 18:52:17 TristanJames I don't think i've got any herb
2016-03-04 18:52:45 NicholasB my favorite herb
2016-03-04 18:52:47 NicholasB https://www.youtube.com/watch?v=rgyCUWAaV3s
2016-03-04 18:52:53 NicholasB funky late 70s herbn
2016-03-04 18:53:52 EricT It rubs the Herb on its skin or else it gets the hose again.
2016-03-04 18:54:27 TristanJames Not really my favourite herb
2016-03-04 18:54:32 EricT lol
2016-03-04 18:55:26 NicholasB i prefer sage
2016-03-04 18:55:32 NicholasB fucking great in a pork rub
2016-03-04 18:55:39 EricT Im on the Herb that killer Herb Alpert!
2016-03-04 18:56:00 EricT killed*
2016-03-04 18:56:42 EricT Beer 3: Sobrietry 0 : "Peice of cheese" 1
2016-03-04 18:57:09 TristanJames @gif coriander
2016-03-04 18:57:12 TristanJames oops
2016-03-04 18:57:28 NicholasB we've all done it
2016-03-04 18:57:36 NicholasB no need to blush
2016-03-04 18:58:02 TristanJames <br><img id="21">
2016-03-04 18:58:11 EricT Don't forget the parsley, sage and roemarry
2016-03-04 18:58:18 EricT rose*
2016-03-04 19:18:40 NottheOtherDan @enjayembee That Herb n Hugh is cool as fuck.
2016-03-04 19:19:00 EricT https://youtu.be/UuByWtxx8QU
2016-03-04 19:19:18 NottheOtherDan Is everyone in a herb hole now?
2016-03-04 19:19:24 NicholasB it really is
2016-03-04 19:20:06 EricT I jus watched that, and then got into The orig Casino Royal soundtrack, lol
2016-03-04 19:20:37 NicholasB i just pulled up my ground components flacs actually.
2016-03-04 19:21:35 NottheOtherDan Gold
2016-03-04 19:21:37 NicholasB https://soundcloud.com/engininja/ground-components-on-your-living-room-floor
2016-03-04 19:22:03 NottheOtherDan So good.
2016-03-04 19:22:30 NottheOtherDan You got a digital copy of Herb and Hugh? I can't find it.
2016-03-04 19:23:18 NicholasB nope i have the rekkid though. if you really want it ill rip it for you.
2016-03-04 19:23:37 NottheOtherDan Nah, I'll keep looking. I'll let you know.
2016-03-04 19:23:45 EricT https://farm4.staticflickr.com/3737/14312056404_3f8162bf50_b.jpg
2016-03-04 19:24:03 TristanJames <br><img id="22"><br>Birthday shower beer.
2016-03-04 19:24:21 NicholasB http://www33.zippyshare.com/v/4hpFrDma/file.html
2016-03-04 19:24:29 NicholasB there you are @elChupaNibre
2016-03-04 19:24:33 NicholasB learn to internet
2016-03-04 19:25:11 NottheOtherDan Thanks. I will.
2016-03-04 19:26:25 NicholasB good man.
2016-03-04 19:26:31 NottheOtherDan some times
2016-03-04 19:26:40 NicholasB not after a bit of herb and hugh
2016-03-04 19:26:50 NottheOtherDan OH HELL NAH!
2016-03-04 19:27:34 NottheOtherDan https://www.youtube.com/watch?v=s3hjxEWHsIc
2016-03-04 19:28:07 NottheOtherDan #feminazi
2016-03-04 23:09:03 > fsociety (whoami@localhost) has joined ##systemau
2016-03-04 23:09:03 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-04 23:09:08 < root has kicked fsociety (Cleaning up channel)
2016-03-04 23:09:08 > fsociety (whoami@localhost) has joined ##systemau
2016-03-04 23:09:08 - Topic for ##systemau is "#systemau"
2016-03-04 23:09:08 - Topic set by root (root@localhost) on Fri, 04 Mar 2016 23:09:08
2016-03-04 23:09:08 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-04 23:09:08 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-04 23:09:08 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-04 23:09:08 > Adam (Adam@telegram) has joined ##systemau
2016-03-04 23:09:08 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-04 23:09:08 > Amir (Amir@telegram) has joined ##systemau
2016-03-04 23:09:08 > Angela (Angela@telegram) has joined ##systemau
2016-03-04 23:09:08 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-04 23:09:08 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-04 23:09:08 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-04 23:09:08 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-04 23:09:08 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-04 23:09:08 > emb (emb@telegram) has joined ##systemau
2016-03-04 23:09:08 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-04 23:09:08 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-04 23:09:08 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-04 23:09:08 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-04 23:09:08 > Joe (Joe@telegram) has joined ##systemau
2016-03-04 23:09:08 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-04 23:09:08 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-04 23:09:08 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-04 23:09:08 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-04 23:09:08 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-04 23:09:08 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-04 23:09:08 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-04 23:09:08 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-04 23:09:08 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-04 23:09:08 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-04 23:09:08 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-04 23:09:08 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-04 23:09:08 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-04 23:09:08 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-04 23:09:08 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-04 23:09:08 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-04 23:09:08 > Sean (Sean@telegram) has joined ##systemau
2016-03-04 23:09:08 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-04 23:09:08 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-04 23:09:08 > Tom (Tom@telegram) has joined ##systemau
2016-03-04 23:09:08 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-04 23:09:08 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-04 23:09:08 NotDan [20:19:33] Happy Birthday @dj_salinger
2016-03-04 23:09:08 LewisCividin [20:22:38] Happy Fucking Birthday Tristan!
2016-03-04 23:09:08 LewisCividin [20:23:21] Glad that weeks over
2016-03-04 23:09:08 NotDan [20:25:17] I hear ya
2016-03-04 23:09:08 NottheOtherDan [20:27:42] Word
2016-03-04 23:09:08 LachlanHolmes [20:27:57] Hey all! how are we all doing?
2016-03-04 23:09:08 NottheOtherDan [20:28:18] Hey Lach, how you doin?
2016-03-04 23:09:08 LachlanHolmes [20:29:40] not bad... just watching the tahs v brumbies game while installing the updates for the mate beta.... how you doing?
2016-03-04 23:09:08 NottheOtherDan [20:31:39] Yeah alright, just dreaming of growing hops.
2016-03-04 23:09:08 LachlanHolmes [20:31:51] oh yeah?
2016-03-04 23:09:08 LachlanHolmes [20:31:56] what strand?
2016-03-04 23:09:08 LachlanHolmes [20:32:00] what breed?
2016-03-04 23:09:08 LachlanHolmes [20:33:02] when i've got my next break coming up i've gotten some kit for my homebrew ipa.
2016-03-04 23:09:08 NottheOtherDan [20:43:52] Don't know yet. Just reading into it all.
2016-03-04 23:09:17 - Mode ##systemau [+t]
2016-03-04 23:09:25 NottheOtherDan [20:44:58] <br><img id="4">
2016-03-04 23:09:25 NottheOtherDan [20:45:07] Looking at getting something like this set up.
2016-03-04 23:09:25 PaulGleeson [21:00:35] Class
2016-03-04 23:09:25 NottheOtherDan [21:00:52] IKR
2016-03-04 23:09:25 EricT [21:01:36] are you getting acreage @elChupaNibre ?
2016-03-04 23:09:25 NottheOtherDan [21:01:46] Yep
2016-03-04 23:09:25 EricT [21:02:08] cool, join the club!
2016-03-04 23:09:25 EricT [21:02:27] Gren Acres, is the place to be!
2016-03-04 23:09:25 EricT [21:02:33] Green*
2016-03-04 23:09:25 NottheOtherDan [21:03:02] I'm going to use reactos to run the watering system.
2016-03-04 23:09:25 EricT [21:03:27] nice, fail-proof system.
2016-03-04 23:09:25 NottheOtherDan [21:03:53] If the russians can do it...
2016-03-04 23:09:25 EricT [21:05:20] russians can do anything
2016-03-04 23:09:25 NottheOtherDan [21:07:37] Except walk into the pentagon and ask to see the secret boxes.
2016-03-04 23:09:25 EricT [21:08:49] or go to a roundhouse and piss in a corner!
2016-03-04 23:09:25 NottheOtherDan [21:09:14] Oooooh... Racist.
2016-03-04 23:09:25 EricT [21:10:59] nahhhh! I like Baltic types! 😉
2016-03-04 23:09:25 NottheOtherDan [21:11:33] That's what she said.
2016-03-04 23:09:25 EricT [21:11:47] Bald Dick types!
2016-03-04 23:09:25 EricT [21:11:55] ha!
2016-03-04 23:09:25 NottheOtherDan [21:12:13] You prefer them circumsised?
2016-03-04 23:09:25 EricT [21:12:57] Calamarri rings for canibals!
2016-03-04 23:09:25 EricT [21:13:00] ha!
2016-03-04 23:09:25 NottheOtherDan [21:13:26] Calamari rings are tasty.
2016-03-04 23:09:25 EricT [21:14:00] not sure about those one? are they organic?
2016-03-04 23:09:25 NotDan [21:15:23] https://www.youtube.com/watch?v=VZrFVtmRXrw
2016-03-04 23:09:25 NottheOtherDan [21:16:44] Zachery
2016-03-04 23:09:25 NottheOtherDan [21:18:19] Not the Other Dan changed photo.
2016-03-04 23:09:25 NotDan [21:19:23] whos dat
2016-03-04 23:09:25 NottheOtherDan [21:19:53] He's the reason we don't have guns like we did.
2016-03-04 23:09:25 NotDan [21:19:59] ahhh
2016-03-04 23:09:25 NottheOtherDan [21:20:05] Martin Bryant.
2016-03-04 23:09:25 NottheOtherDan [21:20:13] Port Arthur.
2016-03-04 23:09:25 NotDan [21:20:14] Port Arthur
2016-03-04 23:09:25 NotDan [21:20:15] yeah
2016-03-04 23:09:25 NotDan [21:20:40] Im not exactly sad we dont have automatic weapons in Aus
2016-03-04 23:09:25 NottheOtherDan [21:22:44] I do miss my Rhino gun though. It was good to have in case a rhino tried to break into my house, but that rhino turned out to be my daughter getting home late from a party. It was a great fuck off gun.
2016-03-04 23:09:25 NotDan [21:24:10] 🔪
2016-03-04 23:09:25 NottheOtherDan [21:24:32] I'd tried to stab her previously, she lived.
2016-03-04 23:09:25 NottheOtherDan [21:24:39] I mean... Rhino.
2016-03-04 23:09:25 NotDan [21:24:46] lol
2016-03-04 23:09:25 NotDan [21:25:07] Dick Smith 20-50% off this weekend
2016-03-04 23:09:25 NottheOtherDan [21:25:12] Guns?
2016-03-04 23:09:25 NotDan [21:25:16] Think I might grab a few portable hard drives
2016-03-04 23:09:25 NotDan [21:25:17] If only!
2016-03-04 23:09:25 NotDan [21:25:34] Bullets are $5,000 though
2016-03-04 23:09:25 NottheOtherDan [21:25:44] Ha!
2016-03-04 23:09:25 NotDan [21:25:56] 2TB Portable HD
2016-03-04 23:09:25 NotDan [21:26:00] Is that even enough these days
2016-03-04 23:09:25 NottheOtherDan [21:26:12] Not for @F_s0c1ety
2016-03-04 23:09:25 NotDan [21:26:17] I've had the idea to rip every single DVD I have and store it digitally
2016-03-04 23:09:25 NotDan [21:26:22] haha
2016-03-04 23:09:29 NotDan [21:37:18] <br><img id="5">
2016-03-04 23:09:29 NottheOtherDan [21:40:18] Moving with the times...
2016-03-04 23:09:29 NotDan [21:41:28] I wonder if that's a permanent change
2016-03-04 23:09:29 NotDan [21:41:46] It's an omage to their 10 years of partnership with the Mardi Gras it says
2016-03-04 23:09:29 NottheOtherDan [21:42:17] Shit, it's for realz. Mardi gras this weekend?
2016-03-04 23:09:29 NotDan [21:42:32] Oh yeah, that was a real screenshot
2016-03-04 23:09:29 NotDan [21:42:39] I guess it must be?
2016-03-04 23:09:29 NottheOtherDan [21:42:55] There you go then. Good on 'em.
2016-03-04 23:09:29 NottheOtherDan [21:43:01] Still a bank though.
2016-03-04 23:09:29 NotDan [21:43:09] I thought you were leading the parade this weekend Dan
2016-03-04 23:09:29 NotDan [21:45:00] But yeah, pretty out there for a bank for sure
2016-03-04 23:09:29 NottheOtherDan [21:45:59] My days of leading the parade are well and truely over, young whippper snapper. I'm happy to let people who live it own it, and I'm happy to support them living it and owning it.
2016-03-04 23:09:29 NottheOtherDan [21:46:31] *lead it
2016-03-04 23:09:29 NotDan [21:46:41] <br><img id="6">
2016-03-04 23:09:29 NottheOtherDan [21:46:50] <br><img id="7">
2016-03-04 23:09:29 NotDan [21:46:59] Great song
2016-03-04 23:09:29 EricT [21:48:56] I have been in years....rainbow glitter supplies are low here
2016-03-04 23:09:29 EricT [21:49:04] haven't*
2016-03-04 23:09:29 EricT [21:50:04] https://youtu.be/y9MEAKnApmg
2016-03-04 23:09:29 NotDan [21:51:27] <br><img id="8">
2016-03-04 23:09:29 NotDan [21:51:51] <br><img id="9">
2016-03-04 23:09:29 NottheOtherDan [21:53:48] I wouldn't have guessed you as a Placebo type @kloinka
2016-03-04 23:09:29 EricT [21:54:08] I used to be a member at a club called the BLack Market at Paddington! 😉
2016-03-04 23:09:29 NottheOtherDan [21:55:01] I'm Vicco, I have no Idea what that means. I can guess though. You used to be gay?
2016-03-04 23:09:29 EricT [21:55:01] heady day of youth at Oxford and Williams Streets in the late 80s!
2016-03-04 23:09:29 NotDan [21:55:24] So, yes?
2016-03-04 23:09:29 EricT [21:55:30] It the "Party" and "Wierdo" part of Sydney
2016-03-04 23:09:29 NottheOtherDan [21:55:31] Yes.
2016-03-04 23:09:29 EricT [21:56:07] and beleive me, Shit getz wierd!
2016-03-04 23:09:29 NotDan [21:56:50] https://www.youtube.com/watch?v=j-733kKsdUk
2016-03-04 23:09:29 EricT [21:57:10] 2 tru!
2016-03-04 23:09:29 NottheOtherDan [21:57:11] <br><img id="10">
2016-03-04 23:09:29 NotDan [21:57:25] No way man, we'll keep on rockin' forever
2016-03-04 23:09:29 NottheOtherDan [21:58:17] <br><img id="11">
2016-03-04 23:09:29 NottheOtherDan [21:59:18] <br><img id="12">
2016-03-04 23:09:29 NotDan [21:59:30] Double mint gum.
2016-03-04 23:09:29 NotDan [21:59:49] The, er, punch has been spiked
2016-03-04 23:09:29 EricT [21:59:56] I'm still waiting to mature-up, I think I missed the memo!
2016-03-04 23:09:29 EricT [22:00:44] Memo: "Eric, you are now an adult"
2016-03-04 23:09:29 NottheOtherDan [22:00:56] <br><img id="13">
2016-03-04 23:09:29 NotDan [22:00:57] Memo disregarded
2016-03-04 23:09:29 NottheOtherDan [22:02:27] <br><img id="14">
2016-03-04 23:09:29 NottheOtherDan [22:03:01] <br><img id="15">
2016-03-04 23:09:29 NottheOtherDan [22:03:27] <br><img id="16">
2016-03-04 23:09:29 EricT [22:03:51] imgur addiction!
2016-03-04 23:09:29 EricT [22:05:03] The struggle is real!
2016-03-04 23:09:29 NottheOtherDan [22:05:32] <br><img id="17">
2016-03-04 23:09:29 NottheOtherDan [22:06:11] <br><img id="18">
2016-03-04 23:09:29 EricT [22:06:44] http://i.imgur.com/X1gko3e.gif
2016-03-04 23:09:29 NottheOtherDan [22:06:48] <br><img id="19">
2016-03-04 23:09:32 NottheOtherDan [22:07:22] <br><img id="20">
2016-03-04 23:09:32 EricT [22:07:47] http://imgur.com/h6L0gj0
2016-03-04 23:09:32 NottheOtherDan [22:08:04] <br><img id="21">
2016-03-04 23:09:32 EricT [22:08:49] http://i.imgur.com/EyBcR0q.jpg
2016-03-04 23:09:32 NottheOtherDan [22:08:55] <br><img id="22">
2016-03-04 23:09:32 EricT [22:09:17] http://i.imgur.com/lD0RiOb.jpg
2016-03-04 23:09:32 NottheOtherDan [22:09:36] <br><img id="23">
2016-03-04 23:09:32 NotDan [22:09:41] You guys need a hobby
2016-03-04 23:09:32 EricT [22:10:07] http://i.imgur.com/UAQiKa5.jpg
2016-03-04 23:09:32 NottheOtherDan [22:10:13] <br><img id="24">
2016-03-04 23:09:32 EricT [22:10:32] http://i.imgur.com/KJbIwtu.png
2016-03-04 23:09:32 NotDan [22:10:48] <br><img id="25">
2016-03-04 23:09:32 EricT [22:10:59] http://i.imgur.com/lJQGUnN.png
2016-03-04 23:09:32 EricT [22:11:16] IM done, you win
2016-03-04 23:10:44 NotDan [22:11:27] <br><img id="26">
2016-03-04 23:10:44 NotDan [22:12:00] <br><img id="27">
2016-03-04 23:10:44 EricT [22:12:05] http://i.imgur.com/1r2Oof7.gif
2016-03-04 23:10:44 EricT [22:12:11] #gifwar
2016-03-04 23:10:44 NotDan [22:12:32] <br><img id="28">
2016-03-04 23:10:44 EricT [22:13:21] Chainsaw vs my knee
2016-03-04 23:10:44 EricT [22:13:21] http://i.imgur.com/I9OCwSR.jpg
2016-03-04 23:10:44 NotDan [22:13:34] Could be much worse
2016-03-04 23:10:44 EricT [22:13:57] I had thick denim on
2016-03-04 23:10:44 EricT [22:14:15] should have worn my leather chaps!
2016-03-04 23:10:44 NotDan [22:16:04] That's your actual knee Eric?
2016-03-04 23:10:44 NotDan [22:16:05] Damn
2016-03-04 23:10:44 NotDan [22:16:11] Youre lucky
2016-03-04 23:10:44 NottheOtherDan [22:18:04] <br><img id="29">
2016-03-04 23:10:44 EricT [22:18:22] Yep I didnt even get stitches!
2016-03-04 23:10:44 EricT [22:18:31] just taped it up!
2016-03-04 23:10:44 NottheOtherDan [22:18:52] <br><img id="30">
2016-03-04 23:10:44 EricT [22:19:06] Dan can now buy a Chainsaw too! for legit reasons!
2016-03-04 23:10:44 NottheOtherDan [22:19:52] I actually HAVE to! AND a ride on Lawn Mower!!!!111!!1!
2016-03-04 23:10:44 EricT [22:20:14] They are super cool! youll have a ball!
2016-03-04 23:10:44 NottheOtherDan [22:20:21] Fuck yeah!
2016-03-04 23:10:44 EricT [22:20:34] but High maintenance, like a GF! lol
2016-03-04 23:10:44 NottheOtherDan [22:20:54] That's fine, I'm a patient man.
2016-03-04 23:10:44 EricT [22:21:47] LOL I got my ex to mow when she was overdue with second child, baby came next day!
2016-03-04 23:10:44 NottheOtherDan [22:22:34] Ha! I'll keep that in mind. My mum went into labor with me on the back of my dads motorbike.
2016-03-04 23:10:44 EricT [22:23:09] it's the vibrations!
2016-03-04 23:10:44 EricT [22:23:48] https://youtu.be/AO9909uexu8
2016-03-04 23:10:44 NottheOtherDan [22:24:02] Yeah. When Sars was overdue with Alice I tried driving her around some dirt tracks around here. Didn't work.
2016-03-04 23:10:44 EricT [22:24:27] lol in the back of a ute?
2016-03-04 23:10:44 NottheOtherDan [22:24:52] No. That prob would've worked.
2016-03-04 23:20:05 NottheOtherDan <br><img id="31">
2016-03-04 23:22:04 NottheOtherDan [23:20:49] <br><img id="32">
2016-03-04 23:22:06 NottheOtherDan <br><img id="33">
2016-03-04 23:22:06 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-04 23:22:06 NicholasB Nicholas B added user Nick Wurlod.
2016-03-04 23:22:58 NottheOtherDan <br><img id="34">
2016-03-04 23:23:40 NottheOtherDan <br><img id="35">
2016-03-04 23:24:33 NottheOtherDan <br><img id="36">
2016-03-04 23:25:28 NottheOtherDan <br><img id="37">
2016-03-04 23:26:41 NottheOtherDan <br><img id="38">
2016-03-04 23:29:05 EricT Too much Tequilla!
2016-03-04 23:29:20 NottheOtherDan <br><img id="39">
2016-03-04 23:29:21 NottheOtherDan Elser love
2016-03-04 23:29:31 NottheOtherDan Elder even
2016-03-04 23:29:50 EricT roll in flour
2016-03-04 23:29:56 NottheOtherDan Wet spot
2016-03-04 23:30:02 NottheOtherDan Ewwww
2016-03-04 23:30:08 EricT OMG that's agist!
2016-03-04 23:30:35 NottheOtherDan <br><img id="40">
2016-03-04 23:31:00 NottheOtherDan <br><img id="41">
2016-03-04 23:31:31 EricT then I got a job at Ikea
2016-03-04 23:32:15 NottheOtherDan <br><img id="42">
2016-03-04 23:33:00 NottheOtherDan <br><img id="43">
2016-03-04 23:33:07 EricT HHOTT!
2016-03-04 23:33:48 NottheOtherDan She's like a jewish Lee Lin Chen
2016-03-04 23:34:03 EricT Pork free!
2016-03-04 23:34:34 NottheOtherDan <br><img id="44">
2016-03-04 23:34:58 EricT Look at that grip!
2016-03-04 23:35:10 NottheOtherDan So hot
2016-03-04 23:35:21 EricT Choke a python!
2016-03-04 23:35:53 NottheOtherDan <br><img id="45">
2016-03-04 23:36:15 EricT Wrong hole compilation...lol
2016-03-04 23:36:23 EricT omg I went too far!
2016-03-04 23:37:02 NottheOtherDan <br><img id="46">
2016-03-04 23:37:42 NottheOtherDan <br><img id="47">
2016-03-04 23:37:51 NottheOtherDan Somebody
2016-03-04 23:37:53 EricT Cartier
2016-03-04 23:37:56 EricT oops
2016-03-04 23:38:32 NottheOtherDan <br><img id="48">
2016-03-04 23:39:00 EricT I wanted to be a lumberjack!
2016-03-04 23:39:23 EricT lumberjack/IT specialist
2016-03-04 23:39:28 NottheOtherDan <br><img id="49">
2016-03-04 23:39:51 EricT George Pell is.
2016-03-04 23:40:11 NottheOtherDan <br><img id="50">
2016-03-04 23:40:51 NottheOtherDan <br><img id="51">
2016-03-04 23:41:16 EricT do I know her? looks familiar
2016-03-04 23:41:32 NottheOtherDan Laura Keating?
2016-03-04 23:42:27 NottheOtherDan <br><img id="52">
2016-03-04 23:43:03 NottheOtherDan <br><img id="53">
2016-03-04 23:43:03 EricT http://lmgtfy.com/?q=Laura+Keating
2016-03-04 23:43:41 EricT Closing Time, Whitlams
2016-03-04 23:43:52 NottheOtherDan <br><img id="54">
2016-03-04 23:44:00 NottheOtherDan LMGTFY
2016-03-04 23:45:02 NottheOtherDan <br><img id="55">
2016-03-04 23:45:28 EricT riding the mare doggy style
2016-03-04 23:46:15 NottheOtherDan <br><img id="56">
2016-03-04 23:46:33 EricT Driving stick doggy style
2016-03-04 23:48:09 NottheOtherDan <br><img id="57">
2016-03-04 23:49:29 EricT It's not you, it;s me....
2016-03-04 23:50:12 EricT Wow just saw some hoverboard sex, thats talent!
2016-03-04 23:50:39 NottheOtherDan <br><img id="58">
2016-03-04 23:52:29 NottheOtherDan <br><img id="59">
2016-03-04 23:53:15 EricT Any Rolf Harris quotes?
2016-03-04 23:53:29 NottheOtherDan I'm looking for them.
2016-03-04 23:53:39 EricT Tie me Kangaroo Furrie down?
2016-03-04 23:59:30 EricT Fucken Dalai Lama is a heavy quoter!
2016-03-05 00:02:00 EricT Oh, theire are no Lara Bingle quotes 😞
2016-03-05 00:03:50 EricT http://1899281406.rsc.cdn77.org/wp-content/uploads/2012/07/Screen-Shot-2012-07-20-at-3.54.10-PM.png
2016-03-05 00:11:22 NottheOtherDan That's hot. wait. No. but yes. I'm so confused.
2016-03-05 00:14:18 EricT He could have a nice clevage with a push-up bra!
2016-03-05 00:15:23 NottheOtherDan <br><img id="60">
2016-03-05 00:16:47 EricT I wonder if she ever read any of her own quotes?
2016-03-05 00:18:30 NottheOtherDan I get it, cause she was blind yeah. probably not. Maybe she wrote in braile?
2016-03-05 00:18:50 EricT killjoy
2016-03-05 00:18:57 NottheOtherDan You are
2016-03-05 00:20:28 NottheOtherDan Dr. Joe Tichio, creator of Greatest-Inpsirational-Quotes.com, shares an extraordinary collection of his favorite and most inspirational quotes from around the world and throughout history. The wisdom on these pages will empower and encourage you to live your life to the fullest. Start each day with a powerful dose of wisdom and inspiration as you are guided to take action, overcome fear, boost your self-esteem, create
2016-03-05 00:20:28 NottheOtherDan success, enjoy life, claim your inner strength, and make your dreams come true. Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for. -Socrates
2016-03-05 00:21:28 EricT http://media-cache-ec0.pinimg.com/736x/81/4a/16/814a166d7ce524611d9434aea6af9a14.jpg
2016-03-05 00:22:16 NottheOtherDan <br><img id="61">
2016-03-05 00:22:55 EricT http://i.imgur.com/4U60223.gif
2016-03-05 00:24:10 NottheOtherDan https://www.youtube.com/watch?v=fRqeA4ah6Mk
2016-03-05 00:26:25 EricT https://youtu.be/mrMLMV6E4CM
2016-03-05 00:26:38 NottheOtherDan classic
2016-03-05 00:27:23 EricT yep
2016-03-05 00:28:16 NottheOtherDan https://www.youtube.com/watch?v=MSzz-t7ywVM
2016-03-05 00:30:59 EricT Slater is a genius!
2016-03-05 00:32:55 NottheOtherDan You know he was just reading lines. #killjoy
2016-03-05 00:33:26 EricT #sarcasm
2016-03-05 00:33:33 NottheOtherDan https://www.youtube.com/watch?v=PuuCezrAUKk&list=PLnj1T__vI-AVoRhOktPU5_LNbQsWNwH8l
2016-03-05 00:42:36 EricT Art.
2016-03-05 00:42:36 EricT https://youtu.be/cTpUVAcvWfU
2016-03-05 00:43:19 EricT bedtime, night all!
2016-03-05 00:47:11 NottheOtherDan Night Eric,
2016-03-05 00:49:25 NottheOtherDan <br><img id="62">
2016-03-05 00:49:59 EricT You hang up, no you hang up....
2016-03-05 00:50:05 NottheOtherDan https://www.youtube.com/watch?v=ioudby-xooc
2016-03-05 00:58:18 EricT I need my (50 X 365.25)th sleep!
2016-03-05 02:50:27 PaulGleeson Afternoon lads
2016-03-05 03:22:43 Moritz These 300 messages are a mess. So lucky I am not on mobile broadband.
2016-03-05 03:36:59 NottheOtherDan You're welcome. Night.
2016-03-05 03:37:50 Sean @lightonflux I know what you mean. I woke up to 395 messages. Missed out on a gif war and everything!
2016-03-05 03:39:24 Moritz Probability just a battle. The gif war never ends. Or jif war as truly cruel souls call it.
2016-03-05 03:39:40 Sean true, true
2016-03-05 10:42:58 Moritz https://i.imgur.com/xE1tOEb.webm
2016-03-05 10:50:20 TristanJames Is anyone else incredibly hungover?
2016-03-05 10:58:28 Moritz Can you get hungover on cookies? Then yes.
2016-03-05 11:06:14 NicholasB A bit....
2016-03-05 11:11:12 PaulGleeson Such a warm night
2016-03-05 11:11:31 PaulGleeson Fuck Ireland can be weird
2016-03-05 11:12:37 PaulGleeson We had snow this morning and now its like 6 degrees with no wind
2016-03-05 13:14:25 Moritz Neat overview:
2016-03-05 13:14:25 Moritz https://fedoraproject.org/wiki/Wayland_features
2016-03-05 13:21:55 EricT Sup interworld?
2016-03-05 13:24:29 Moritz "ownCloud 9.0 will arrive next Tuesday. This will be the biggest and most important release so far." - Frank from owncloud
2016-03-05 13:42:16 EricT http://i.imgur.com/p8oYzGr.png
2016-03-05 14:03:24 LewisCividin <br><img id="63">
2016-03-05 14:03:24 LewisCividin Fort cluck!
2016-03-05 14:04:40 LewisCividin Oh need to read up on version 9
2016-03-05 14:07:15 LewisCividin There is probably something I've fundamentally forgotten to do about this pen lol
2016-03-05 14:13:06 Moritz You should be able to write on webdav shares with OSX. Apple does funny stuff with WebDAV. So OC needed to implement special behaviour for OSX. At least that was promised for 9.
2016-03-05 14:26:08 Moritz http://passivewifi.cs.washington.edu/files/passive_wifi.pdf
2016-03-05 17:36:51 NotDan Aww yiss, Mr Robot on Blu Ray
2016-03-05 18:12:51 TristanJames I think somethings died in one of my back sheds. It stinks.
2016-03-05 18:27:41 LachlanHolmes Was it Dan or Nic that mentioned downloading iview shows for offline viewing?
2016-03-05 18:34:14 NicholasB me
2016-03-05 18:35:31 NicholasB ill have a look
2016-03-05 18:35:35 NicholasB when i get a chance
2016-03-05 18:36:05 NicholasB it was called python-ivew i think.
2016-03-05 19:30:13 Joe I was so tired that I went to bed at 9pm last night. Now I'm awake at 8.30 on a Saturday
2016-03-05 19:49:37 LewisCividin 👍
2016-03-06 10:20:54 NicholasB good morning all
2016-03-06 10:22:19 AlanPope Nn
2016-03-06 10:22:21 AlanPope :)
2016-03-06 10:22:30 NicholasB Sleep well
2016-03-06 10:22:33 NicholasB I did
2016-03-06 10:22:45 NicholasB sunday morning is good you'll enjoy it.
2016-03-06 10:23:42 AlanPope :)
2016-03-06 10:24:10 AlanPope Mother's day here which will consist of me visiting my nan
2016-03-06 10:24:17 AlanPope Her 100th Birthday
2016-03-06 10:24:37 AlanPope Hope I have some of those decent genes :)
2016-03-06 10:25:20 NicholasB fuck me
2016-03-06 10:25:25 NicholasB thats a hefty number
2016-03-06 10:25:37 NicholasB tell her systemau is a fan. give her a tape
2016-03-06 10:25:41 NicholasB and sticker.
2016-03-06 10:29:55 AlanPope :)
2016-03-06 10:45:37 Joe Ned?
2016-03-06 10:45:42 Joe Ryerson?
2016-03-06 10:46:12 Joe <br><img id="64">
2016-03-06 10:46:53 Joe In 5 years you won't remember a single thing that happened today.
2016-03-06 10:47:19 Joe Probably not even that long
2016-03-06 10:47:57 Joe But you'll always remember Ned Ryerson.
2016-03-06 10:50:04 NicholasB I will if i stab myself in the leg with a kitchen knife.
2016-03-06 10:50:21 Joe But you won't
2016-03-06 10:51:11 NicholasB if we talk about it enough it could get noteworthy. I could make it a focal point in my memory.
2016-03-06 10:51:37 Joe What if you went and bought some caustic soda
2016-03-06 10:51:51 Joe And then wet your lips and kissed your hand
2016-03-06 10:52:02 Joe Then poured the caustic soda on in
2016-03-06 10:52:27 Joe And only poured vinegar on it just before you passed out from the pain
2016-03-06 10:52:58 NicholasB you watching fight club?
2016-03-06 10:53:03 NicholasB :D
2016-03-06 10:53:23 Joe I don't need to watch it
2016-03-06 10:53:38 Joe Or groundhog day
2016-03-06 10:53:53 NicholasB ive only seen groundhog day once or twice.
2016-03-06 10:54:00 Joe I'd fight ned ryerson
2016-03-06 10:54:19 NicholasB I'd pay 5 bucks AUD to watch that.
2016-03-06 10:55:32 Joe It's not always about money
2016-03-06 10:56:18 Joe Tyler's question used to echo in my mind: How much can you know about yourself if you've never been in a fight?
2016-03-06 10:56:28 Joe So I started one and lost
2016-03-06 10:56:42 Joe It turns out the answer is quite a lot
2016-03-06 10:56:59 Joe But a tiny bit more afterwards
2016-03-06 10:57:29 NicholasB I'm glad I've not decided to find out that bit of information.
2016-03-06 10:57:43 Joe I'm ambivalent
2016-03-06 10:58:00 Joe I'm ultimately glad that I know
2016-03-06 10:58:21 Joe And glad that I won't do it again
2016-03-06 10:59:04 Joe But that's not relevant
2016-03-06 10:59:12 Joe What is relevant is
2016-03-06 10:59:30 Joe Where is the fucking video show you bunch of fraudsters?
2016-03-06 10:59:40 NicholasB i think we need freesoftware showdown. Developers proving their code in the ring.
2016-03-06 10:59:59 NicholasB we can call the ring 'The CPU'
2016-03-06 11:00:19 Joe I want my money back
2016-03-06 11:00:39 NicholasB ahhh. its coming.
2016-03-06 11:00:47 NicholasB buying part with this patreon money
2016-03-06 11:00:49 Joe I didn't support your patreon to not get a video show
2016-03-06 11:00:53 Joe Oh wait
2016-03-06 11:01:01 Joe I didn't support your patreon
2016-03-06 11:01:06 NicholasB yeah i know you didnt
2016-03-06 11:01:08 Joe As you were
2016-03-06 11:01:46 Joe I desperately need a name for the live podcast event
2016-03-06 11:02:00 NicholasB its just linux podcasts?
2016-03-06 11:02:04 NicholasB or a bit more broad
2016-03-06 11:02:28 Joe It's mostly Linux but also Aq and Dave from geek news radio
2016-03-06 11:03:16 Joe At this point I'll accept anything that isn't Podbrazzers
2016-03-06 11:03:20 NicholasB cool
2016-03-06 11:03:34 NicholasB Have you thought of Podbrazze.....
2016-03-06 11:03:37 NicholasB nrvmind
2016-03-06 11:03:53 Joe <br><img id="65">
2016-03-06 11:04:07 Joe I really need a name
2016-03-06 11:04:15 NicholasB PodSeed?
2016-03-06 11:04:39 Joe Exists
2016-03-06 11:05:00 NicholasB LiPoCaCon
2016-03-06 11:05:53 Joe Flacfest
2016-03-06 11:06:19 NicholasB does any one post flac podcasts?
2016-03-06 11:06:26 Joe No :(
2016-03-06 11:07:07 NicholasB I'm sure there is a some audiophile podcast that does
2016-03-06 11:07:12 Joe Probably
2016-03-06 11:07:19 Joe Flacers
2016-03-06 11:07:31 Joe Sounds a bit like soft cocks
2016-03-06 11:07:44 NicholasB it does.
2016-03-06 11:08:48 Joe Fuck it
2016-03-06 11:08:52 Joe RessCon
2016-03-06 11:10:19 NicholasB ConRess
2016-03-06 11:11:14 Joe Linux Podcast Event
2016-03-06 11:11:50 NicholasB 'Generic Linux Internet Broadcasts'
2016-03-06 11:11:55 NicholasB or GLIB for short
2016-03-06 11:13:37 Joe My Ideal Linux Fun
2016-03-06 11:15:17 Joe Mondeal International Linux Festival
2016-03-06 11:15:41 NicholasB Ha.
2016-03-06 11:16:30 Joe I'm seriously leaning towards Linux Podcast Event
2016-03-06 11:16:49 NicholasB but would that look good on a shirt.
2016-03-06 11:17:04 NicholasB after the even the sinage lives on.
2016-03-06 11:17:10 NicholasB the event
2016-03-06 11:17:39 Joe Given that the venue holds 50 people at a push I'm not that worried
2016-03-06 11:18:04 NicholasB oh really? you'll pack that out no worries
2016-03-06 11:18:12 Joe Yeah
2016-03-06 11:18:16 Joe That's the plan
2016-03-06 11:18:51 Joe It was either get a tiny place for free and ram it or have stress about deposits and shit
2016-03-06 11:19:03 NicholasB fair enough.
2016-03-06 11:19:17 NicholasB makes sense.
2016-03-06 11:19:17 Joe If 500 people turn up it's a good problem
2016-03-06 11:19:35 Joe If 25 turn up it's a fun night
2016-03-06 11:19:40 NicholasB ticketed
2016-03-06 11:19:42 NicholasB ?
2016-03-06 11:19:50 Joe Yeah
2016-03-06 11:19:59 Joe Pay what you want
2016-03-06 11:20:04 Joe Including fuck all
2016-03-06 11:20:27 Joe The pub upstairs holds loads more people
2016-03-06 11:20:40 Joe And I don't expect everyone to watch every show
2016-03-06 11:21:12 Joe If it ends up being massively popular I'll do the next one somewhere bigger
2016-03-06 11:26:50 NicholasB sweet.
2016-03-06 11:27:03 NicholasB i look forward to hearing the recordings
2016-03-06 11:28:28 Joe If all goes to plan it will be 45 mins each of LL, Ubuntu, Linux Voice and misc drunken show (Aq, Dave and whoever)
2016-03-06 11:28:51 Joe Linux Voice will get the prime slot
2016-03-06 11:29:42 Joe If Jono happens to be in London that day he is more than welcome
2016-03-06 11:29:53 Joe But it's highly unlikely
2016-03-06 11:30:11 NicholasB cool
2016-03-06 11:30:15 Joe Same for Fab
2016-03-06 11:31:00 Joe Dan will likely be better by then and so I'd love to have him there
2016-03-06 11:31:37 Joe It's a very small venue for such a large talent pool
2016-03-06 11:32:10 Joe But I want to start small
2016-03-06 11:32:22 NicholasB what it called ill google it
2016-03-06 11:32:40 Joe The Harrison kings cross
2016-03-06 11:33:01 Joe http://harrisonbar.co.uk
2016-03-06 11:34:40 NicholasB looks good
2016-03-06 11:34:56 Joe Yeah they have a decent selection of drinks
2016-03-06 11:35:04 Joe It's near central London
2016-03-06 11:35:08 Joe It's free
2016-03-06 11:35:14 Joe It's win all round
2016-03-06 11:35:32 Joe They even have a few hotel rooms for rich folks
2016-03-06 11:37:08 Joe http://oggcamp.org/the-ghost-of-oggcamp-yet-to-come
2016-03-06 11:37:29 Joe If this doesn't happen there might be more people coming to my thing
2016-03-06 11:37:41 Joe But hopefully someone will take on the challenge
2016-03-06 11:37:46 Joe And we can do both
2016-03-06 11:38:18 NicholasB or you could take on ogg camp ;)
2016-03-06 11:38:37 Joe I've already officially declined
2016-03-06 11:39:04 Joe It's one thing to organise what's essentially a piss up one Saturday in a pub
2016-03-06 11:39:13 Joe Oggcamp is next level
2016-03-06 11:39:22 Joe Maybe next year
2016-03-06 11:39:44 NicholasB indeed.
2016-03-06 11:40:18 Joe I'd been planning my thing before oggcamp started to look unlikely
2016-03-06 11:40:52 Joe But when it became clear that the odds were against it I actually got my arse in gear
2016-03-06 11:52:26 EricT I thought I lived in a quiet town, but! So many people, so much steam and so many train-spotting tragics!
2016-03-06 11:52:26 EricT http://www.thirlmerefestivalofsteam.com/
2016-03-06 11:53:08 NicholasB It's Australia's PREMIER Steam Event!
2016-03-06 11:53:26 EricT I know, I thought the same thing
2016-03-06 11:53:51 NicholasB Lots of men tending to loud and mostly useless engines.
2016-03-06 11:53:56 EricT Next year you can do a live podcast here, makes sense? lol
2016-03-06 11:54:29 EricT And all the kids, yelling "Thomas"!!!
2016-03-06 11:54:32 NicholasB sure. or you could record it now and we'll mix it in to the next episode
2016-03-06 11:55:14 EricT Lots and Lots of "old white men"
2016-03-06 11:55:36 NicholasB yup.
2016-03-06 11:55:41 NicholasB they love steam.
2016-03-06 11:55:54 NicholasB they installed steam
2016-03-06 11:56:01 NicholasB and got dissapoint it was about games
2016-03-06 11:56:01 EricT Nostalgia is a bitch!
2016-03-06 11:56:10 NicholasB and not steam.
2016-03-06 11:56:37 EricT Yes, unless they buy "Trainz 2015"
2016-03-06 11:56:44 NicholasB ohhh true dat
2016-03-06 11:56:56 NicholasB i know a guy who has a train console setup
2016-03-06 11:57:04 NicholasB so he could play trainz
2016-03-06 11:58:00 EricT So Sad....Lets build a brand new High Tech PC so we can emulate some outdated Tech that is no longer relevant
2016-03-06 11:59:14 NicholasB Thats the plan. OS's will start to get inspired by the past like music.
2016-03-06 11:59:29 NicholasB 'dude the os's in the 2030s were 90's retro'
2016-03-06 12:00:20 EricT Like I said Nostalgia is a delusional bitch!
2016-03-06 12:01:34 EricT Like Rockers wanting to go back and live in the 50s, if they did go they would hate it, especially the "non-whit, ethnic" ones
2016-03-06 12:01:57 NicholasB http://www.abc.net.au/radionational/programs/firstdogonthemoon/first-dog-on-the-moon/7219960
2016-03-06 12:05:05 LewisCividin Podities
2016-03-06 12:05:45 LewisCividin Podites
2016-03-06 12:05:54 LewisCividin Poodles?
2016-03-06 12:06:05 NicholasB Linux Podittes
2016-03-06 12:06:06 EricT poo dikes
2016-03-06 12:25:19 - irc: disconnected from server
2016-03-06 17:27:59 > fsociety (whoami@localhost) has joined ##systemau
2016-03-06 17:27:59 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-06 17:28:02 < root has kicked fsociety (Cleaning up channel)
2016-03-06 17:28:02 > fsociety (whoami@localhost) has joined ##systemau
2016-03-06 17:28:02 - Topic for ##systemau is "#systemau"
2016-03-06 17:28:02 - Topic set by root (root@localhost) on Sun, 06 Mar 2016 17:28:02
2016-03-06 17:28:02 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-06 17:28:02 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-06 17:28:02 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-06 17:28:02 > Adam (Adam@telegram) has joined ##systemau
2016-03-06 17:28:02 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-06 17:28:02 > Amir (Amir@telegram) has joined ##systemau
2016-03-06 17:28:02 > Angela (Angela@telegram) has joined ##systemau
2016-03-06 17:28:02 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-06 17:28:02 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-06 17:28:02 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-06 17:28:02 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-06 17:28:02 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-06 17:28:02 > emb (emb@telegram) has joined ##systemau
2016-03-06 17:28:02 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-06 17:28:02 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-06 17:28:02 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-06 17:28:02 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-06 17:28:02 > Joe (Joe@telegram) has joined ##systemau
2016-03-06 17:28:02 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-06 17:28:02 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-06 17:28:02 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-06 17:28:02 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-06 17:28:02 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-06 17:28:02 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-06 17:28:02 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-06 17:28:02 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-06 17:28:02 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-06 17:28:02 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-06 17:28:02 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-06 17:28:02 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-06 17:28:02 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-06 17:28:02 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-06 17:28:02 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-06 17:28:02 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-06 17:28:02 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-06 17:28:02 > Sean (Sean@telegram) has joined ##systemau
2016-03-06 17:28:02 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-06 17:28:02 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-06 17:28:02 > Tom (Tom@telegram) has joined ##systemau
2016-03-06 17:28:02 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-06 17:28:02 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-06 17:28:02 LewisCividin [13:30:22] Pod Nights: featuring the Joe Ress experience, the UK's preeminent ReactOs evangelist.
2016-03-06 17:28:11 EricT [14:16:14] <br><img id="4">
2016-03-06 17:28:11 EricT [14:16:24] Steam, Punks!
2016-03-06 17:28:11 LachlanHolmes [15:22:38] Hey @enjayembee thanks for the iview thing. Seems to have worked well. 😆
2016-03-06 17:28:11 EricT [16:29:36] One of my old Student wrote this, He was at LCA2016, it was nice to catch up, he now works for Google!
2016-03-06 17:28:11 LachlanHolmes [16:32:17] Jermey?
2016-03-06 17:28:11 EricT [16:32:25] Yep
2016-03-06 17:28:11 LachlanHolmes [16:40:12] Cool!
2016-03-06 17:28:13 - Mode ##systemau [+t]
2016-03-07 00:22:29 > fsociety (whoami@localhost) has joined ##systemau
2016-03-07 00:22:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-07 00:22:32 < root has kicked fsociety (Cleaning up channel)
2016-03-07 00:22:32 > fsociety (whoami@localhost) has joined ##systemau
2016-03-07 00:22:32 - Topic for ##systemau is "#systemau"
2016-03-07 00:22:32 - Topic set by root (root@localhost) on Mon, 07 Mar 2016 00:22:32
2016-03-07 00:22:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-07 00:22:32 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-07 00:22:32 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-07 00:22:32 > Adam (Adam@telegram) has joined ##systemau
2016-03-07 00:22:32 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-07 00:22:32 > Amir (Amir@telegram) has joined ##systemau
2016-03-07 00:22:32 > Angela (Angela@telegram) has joined ##systemau
2016-03-07 00:22:32 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-07 00:22:32 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-07 00:22:32 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-07 00:22:32 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-07 00:22:32 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-07 00:22:32 > emb (emb@telegram) has joined ##systemau
2016-03-07 00:22:32 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-07 00:22:32 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-07 00:22:32 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-07 00:22:32 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-07 00:22:32 > Joe (Joe@telegram) has joined ##systemau
2016-03-07 00:22:32 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-07 00:22:32 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-07 00:22:32 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-07 00:22:32 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-07 00:22:32 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-07 00:22:32 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-07 00:22:32 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-07 00:22:32 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-07 00:22:32 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-07 00:22:32 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-07 00:22:32 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-07 00:22:32 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-07 00:22:32 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-07 00:22:32 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-07 00:22:32 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-07 00:22:32 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-07 00:22:32 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-07 00:22:32 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-07 00:22:32 > Sean (Sean@telegram) has joined ##systemau
2016-03-07 00:22:32 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-07 00:22:32 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-07 00:22:32 > Tom (Tom@telegram) has joined ##systemau
2016-03-07 00:22:32 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-07 00:22:32 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-07 00:22:32 Mathias [2016-03-06 18:09:20] Nicholas B added user Mathias by link.
2016-03-07 00:22:32 LewisCividin [2016-03-06 18:14:06] Hello Mathias, Welcome!
2016-03-07 00:22:32 Mathias [2016-03-06 20:14:10] Hello.
2016-03-07 00:22:32 NicholasB [2016-03-06 20:20:55] Nicholas B changed photo.
2016-03-07 00:22:32 NicholasB [2016-03-06 20:21:04] hello.
2016-03-07 00:22:32 NicholasB [2016-03-06 20:21:09] good evening all.
2016-03-07 00:22:32 AlanPope [2016-03-06 20:37:49] Mornings
2016-03-07 00:22:32 NicholasB [2016-03-06 20:38:17] sunday mornings. the best kind.
2016-03-07 00:22:32 AlanPope [2016-03-06 20:43:29] Ya
2016-03-07 00:22:32 TristanJames [2016-03-06 20:49:15] Hey @enjayembee are you going to give Mathias you're usual warning?
2016-03-07 00:22:32 NicholasB [2016-03-06 20:49:30] i did in the email. :)
2016-03-07 00:22:32 NicholasB [2016-03-06 20:49:38] notifications off :D
2016-03-07 00:22:32 TristanJames [2016-03-06 20:49:49] :)
2016-03-07 00:22:32 TristanJames [2016-03-06 20:50:02] *your
2016-03-07 00:22:32 NicholasB [2016-03-06 20:50:44] its okay. the internet has made me 'your' blind.
2016-03-07 00:22:32 TristanJames [2016-03-06 20:51:59] Ha, you must have internetted a hell of a lot because I'm not blind to it yet!
2016-03-07 00:22:32 NicholasB [2016-03-06 20:53:15] i dont like to boast.
2016-03-07 00:22:32 Mathias [2016-03-06 21:06:29] Got the warning and wondered about every minute without a message. Now that I picked up the phone again I am glad I got the warning.
2016-03-07 00:22:32 NicholasB [2016-03-06 21:07:11] haha. yeah conversation levels fluctuate.
2016-03-07 00:22:32 Mathias [2016-03-06 21:14:07] Wow, the english Version of Android's auto correction is so much more useful compared to the german.
2016-03-07 00:22:32 Mathias [2016-03-06 21:15:16] Must be great when most of the words do not look alike and need manual correction all the time.
2016-03-07 00:22:32 NicholasB [2016-03-06 21:16:31] ha it is. its even better when it learns your most common words. you never accidentally type duck again.
2016-03-07 00:22:32 Mathias [2016-03-06 21:17:56] That sounds like a challenge for me 😉.
2016-03-07 00:22:32 EricT [2016-03-06 22:06:51] Intersting...
2016-03-07 00:22:32 EricT [2016-03-06 22:06:51] http://www.ocsmag.com/2016/03/06/game-nearly-over/
2016-03-07 00:22:32 NotDan [2016-03-06 23:40:17] Shocking, isnt it?
2016-03-07 00:22:32 EricT [2016-03-06 23:41:25] Not just a walled garden, a Domed Garden!
2016-03-07 00:22:32 NotDan [2016-03-06 23:41:31] haha
2016-03-07 00:22:32 NotDan [2016-03-06 23:41:46] Direct X11 is a big contributor to that imo
2016-03-07 00:22:32 EricT [2016-03-06 23:42:33] wait for DirectX12, win 10 only and no backward compat.
2016-03-07 00:22:32 NotDan [2016-03-06 23:43:07] Everyone complains about Apples business practice
2016-03-07 00:22:32 NotDan [2016-03-06 23:43:15] and yet the look at that, and have no issue?
2016-03-07 00:22:32 NotDan [2016-03-06 23:43:20] It's bizarre
2016-03-07 00:22:32 NotDan [2016-03-06 23:43:55] Im not condoning Apple for a single moment, but I barely, if ever, hear about DirectX as an issue, despite implications
2016-03-07 00:22:32 EricT [2016-03-06 23:44:32] Here is a good rant:
2016-03-07 00:22:32 EricT [2016-03-06 23:44:32] https://teksyndicate.com/videos/microsoft-fcking-pc-gaming-community-history-future-rant30
2016-03-07 00:22:32 NotDan [2016-03-06 23:45:40] I tried playing a brand new release BluRay on Windows today
2016-03-07 00:22:32 NotDan [2016-03-06 23:45:48] Wouldnt play on VLC
2016-03-07 00:22:32 NotDan [2016-03-06 23:46:09] AAC libraries couldnt decode it
2016-03-07 00:22:32 NotDan [2016-03-06 23:46:11] What a joke
2016-03-07 00:22:32 NotDan [2016-03-06 23:46:22] Legit owned copy, cant even watch it
2016-03-07 00:22:32 EricT [2016-03-06 23:46:42] Thats why we only use Nix!
2016-03-07 00:22:32 NotDan [2016-03-06 23:47:01] Ive become quite vocal about all this stuff lately to non-technical folks
2016-03-07 00:22:32 NotDan [2016-03-06 23:47:27] Starting to win them over, especially when they bought movies in the UK, now their Apple products wont play them as theyre in Aus
2016-03-07 00:22:43 - Mode ##systemau [+t]
2016-03-07 00:32:55 @fsociety NotDan: Probably has DTS-HD audio or something ;)
2016-03-07 03:28:46 Moritz The source code is up to date again, the source code of version 3.6.X has been released 👍
2016-03-07 03:36:32 Moritz The VPN table was updated:
2016-03-07 03:36:32 Moritz https://docs.google.com/spreadsheets/d/1FJTvWT5RHFSYuEoFVpAeQjuQPU4BVzbOigT0xebxTOw/htmlview?pli=1
2016-03-07 06:15:03 > fsociety (whoami@localhost) has joined ##systemau
2016-03-07 06:15:03 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-07 06:34:40 > fsociety (whoami@localhost) has joined ##systemau
2016-03-07 06:34:40 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-07 08:59:23 < root has kicked fsociety (Cleaning up channel)
2016-03-07 08:59:23 > fsociety (whoami@localhost) has joined ##systemau
2016-03-07 08:59:23 - Topic for ##systemau is "#systemau"
2016-03-07 08:59:23 - Topic set by root (root@localhost) on Mon, 07 Mar 2016 08:59:23
2016-03-07 08:59:23 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-07 08:59:23 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-07 08:59:23 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-07 08:59:23 > Adam (Adam@telegram) has joined ##systemau
2016-03-07 08:59:23 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-07 08:59:23 > Amir (Amir@telegram) has joined ##systemau
2016-03-07 08:59:23 > Angela (Angela@telegram) has joined ##systemau
2016-03-07 08:59:23 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-07 08:59:23 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-07 08:59:23 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-07 08:59:23 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-07 08:59:23 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-07 08:59:23 > emb (emb@telegram) has joined ##systemau
2016-03-07 08:59:23 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-07 08:59:23 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-07 08:59:23 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-07 08:59:23 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-07 08:59:23 > Joe (Joe@telegram) has joined ##systemau
2016-03-07 08:59:23 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-07 08:59:23 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-07 08:59:23 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-07 08:59:23 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-07 08:59:23 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-07 08:59:23 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-07 08:59:23 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-07 08:59:23 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-07 08:59:23 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-07 08:59:23 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-07 08:59:23 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-07 08:59:23 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-07 08:59:23 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-07 08:59:23 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-07 08:59:23 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-07 08:59:23 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-07 08:59:23 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-07 08:59:23 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-07 08:59:23 > Sean (Sean@telegram) has joined ##systemau
2016-03-07 08:59:23 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-07 08:59:23 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-07 08:59:23 > Tom (Tom@telegram) has joined ##systemau
2016-03-07 08:59:23 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-07 08:59:23 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-07 08:59:23 JustinZobel That's cool. Looks like Nordvpn (my current provider) is decent.
2016-03-07 09:05:44 @fsociety raaahh. trying to create ansi graphics but linux doesn't seem to output it correctly
2016-03-07 09:44:05 NicholasB get an amiga of go home
2016-03-07 09:44:05 NicholasB *or
2016-03-07 09:52:55 Joe WUBALUBADUBDUB
2016-03-07 09:53:04 Joe also bed
2016-03-07 09:54:36 NicholasB night
2016-03-07 09:58:22 AlanPope I got a boomerang from my Aussie uncle today :)
2016-03-07 09:58:43 NicholasB you have an aussie uncle?
2016-03-07 09:58:50 AlanPope I do
2016-03-07 09:59:00 AlanPope Well
2016-03-07 09:59:21 AlanPope He is my dad's brother. He moved out there 50 years ago
2016-03-07 09:59:48 AlanPope Came back for my wedding 15 years ago and my nans 100th birthday today
2016-03-07 10:00:25 AlanPope Had a suitcase full of Aussie tat :)
2016-03-07 10:00:32 NicholasB sweeeeet
2016-03-07 10:00:49 AlanPope I have an Aussie hat and a 5 aus dollar note :)
2016-03-07 10:00:51 NicholasB he would have beem a 10 pound pom
2016-03-07 10:00:59 AlanPope Heh
2016-03-07 10:01:42 NicholasB where is he from in aus?
2016-03-07 10:02:23 AlanPope Adelaide
2016-03-07 10:02:43 NicholasB Ahh British Australia!
2016-03-07 10:02:51 NicholasB the only free settled state
2016-03-07 10:02:59 NicholasB the rest were convict laden
2016-03-07 10:03:43 AlanPope Heh
2016-03-07 10:04:26 AlanPope They used to deal in 'antiques'
2016-03-07 10:04:39 AlanPope Meaning, stuff about 30-40 years old
2016-03-07 10:08:37 NicholasB yeah. a Belgian friend once swore we needed to stop saying things were old in Australia seeing as his apartment back home was 400 years old.
2016-03-07 10:12:31 AlanPope My usual retort to yanks who tell me how fabulous their country is, is "yeah, but we have castles"
2016-03-07 10:12:44 AlanPope Which usually works.
2016-03-07 10:13:11 NicholasB hahah. I notice when I woke up this morning the Ubuntu Podcast channel has been way wore chatty than system au.
2016-03-07 10:13:27 NicholasB looks like you had some unity discussions!
2016-03-07 10:14:05 AlanPope :S
2016-03-07 10:15:40 NicholasB hahaha
2016-03-07 10:16:09 NicholasB I actually nood to play catch up on the podcast I haven't gotten on to the new eps
2016-03-07 10:16:14 NicholasB *need
2016-03-07 10:16:38 AlanPope Sleepy time. Have a good Monday!
2016-03-07 10:20:17 AlanPope I will leave you with this.
2016-03-07 10:20:20 AlanPope https://youtu.be/MDnsakmeSrU
2016-03-07 10:26:45 NicholasB NIGHT!
2016-03-07 10:27:01 NicholasB THANKS FOR VOMIT VIDEOS!
2016-03-07 11:06:45 LachlanHolmes morn' 'all!
2016-03-07 11:35:30 NotDan morn'
2016-03-07 11:51:46 @fsociety moooorn
2016-03-07 12:38:47 Moritz I did not know there is such things as underground wasp nests. But maybe that's why they are underground, to be in secret.
2016-03-07 12:38:47 Moritz https://www.youtube.com/watch?v=FEWHAQOkjXY
2016-03-07 12:50:05 EricT Wow, poor homeless Germans in NZ.
2016-03-07 12:52:20 TristanJames Hey @elChupaNibre where will you be camping at the weekend?
2016-03-07 12:52:34 NicholasB Is that baby @kloinka
2016-03-07 12:54:00 NottheOtherDan We usually camp up in Sanctury Cove.
2016-03-07 12:54:27 EricT A study in The impact of 50years
2016-03-07 12:55:20 TristanJames Oh yeah, that's not far from us. We're on one of the corners near Elwood, Mulwaverly and Sebastopol.
2016-03-07 12:55:51 NicholasB that was oddly hypnotic
2016-03-07 12:56:12 NotDan That's a shitload of wasps
2016-03-07 12:56:17 NotDan and they are pissed
2016-03-07 12:56:19 TristanJames We've probably walked past each other a hundred times.
2016-03-07 12:56:20 NottheOtherDan Yeah, sweet! We'd be passing you on the to and from the camp/stage.
2016-03-07 12:56:39 NottheOtherDan Most likely!
2016-03-07 12:57:07 NicholasB i believe officially known as a metric fuckton of wasps
2016-03-07 13:04:06 NotDan I want to know how he expects to leave or get into his car
2016-03-07 13:14:41 Moritz https://www.youtube.com/watch?v=sHz2Hmq7soo
2016-03-07 13:45:23 NotDan <br><img id="4">
2016-03-07 13:48:09 NotDan Land of the free indeed
2016-03-07 13:49:31 Moritz For our Music section:
2016-03-07 13:49:31 Moritz https://www.youtube.com/watch?v=0JQ0xnJyb0A
2016-03-07 13:51:12 NicholasB that pretty cool
2016-03-07 13:53:03 Moritz Even got translated lyrics in the description.
2016-03-07 13:55:19 @fsociety slowly but surely creating my gentoo/funter updater and maintenence application which I dub thee "Skynet" ;) Make it look very old school bbs. Being using nodejs and wonderful ncurses library. So far I've only got this far.
2016-03-07 13:55:20 @fsociety https://u.teknik.io/TqP7N.png
2016-03-07 13:56:03 NotDan nice
2016-03-07 13:56:12 Moritz TUIs are great!
2016-03-07 13:56:21 Moritz https://imgur.com/gallery/4PRqBdL
2016-03-07 13:56:35 NotDan so you got the ansi graphics working then
2016-03-07 13:57:38 @fsociety i actually cheated, i'm using the w3m image frame buffer because I wanted to get the legit old school look. Was even tempted to use an Amiga font ;)
2016-03-07 14:30:37 Moritz Did not know that atom has a release video:
2016-03-07 14:30:37 Moritz https://www.youtube.com/watch?v=Y7aEiVwBAdk
2016-03-07 16:08:56 NotDan Im at a store strongly contemplating the 34" Samsung
2016-03-07 16:09:34 NotDan @F_s0c1ety
2016-03-07 16:23:44 @fsociety yesssss
2016-03-07 16:23:51 @fsociety I thought you purchased it
2016-03-07 16:23:57 @fsociety or was that someone else
2016-03-07 16:23:58 @fsociety lol
2016-03-07 17:49:33 NotDan that was me
2016-03-07 17:49:49 NotDan but it went on backorder etc. so i cancelled it
2016-03-07 18:08:15 Moritz Issue # 1734 (1.5.1.0 from fdroid crashes on startup) at AntennaPod/AntennaPod
2016-03-07 18:08:15 Moritz https://github.com/AntennaPod/AntennaPod/issues/1734
2016-03-07 18:08:27 Moritz That's messy.
2016-03-07 18:39:31 NotDan <br><img id="5">
2016-03-07 19:09:18 AlanPope <br><img id="6">
2016-03-07 19:09:44 AlanPope I do love my (female) Aussie cousins' turn of phrase here :)
2016-03-07 19:10:21 NicholasB haha. seems like a local thats for certain
2016-03-07 19:16:50 - irc: disconnected from server
2016-03-08 08:34:00 > fsociety (whoami@localhost) has joined ##systemau
2016-03-08 08:34:00 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-08 08:34:04 < root has kicked fsociety (Cleaning up channel)
2016-03-08 08:34:04 > fsociety (whoami@localhost) has joined ##systemau
2016-03-08 08:34:04 - Topic for ##systemau is "#systemau"
2016-03-08 08:34:04 - Topic set by root (root@localhost) on Tue, 08 Mar 2016 08:34:04
2016-03-08 08:34:04 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-08 08:34:04 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-08 08:34:04 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-08 08:34:04 > Adam (Adam@telegram) has joined ##systemau
2016-03-08 08:34:04 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-08 08:34:04 > Amir (Amir@telegram) has joined ##systemau
2016-03-08 08:34:04 > Angela (Angela@telegram) has joined ##systemau
2016-03-08 08:34:04 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-08 08:34:04 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-08 08:34:04 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-08 08:34:04 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-08 08:34:04 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-08 08:34:04 > emb (emb@telegram) has joined ##systemau
2016-03-08 08:34:04 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-08 08:34:04 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-08 08:34:04 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-08 08:34:04 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-08 08:34:04 > Joe (Joe@telegram) has joined ##systemau
2016-03-08 08:34:04 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-08 08:34:04 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-08 08:34:04 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-08 08:34:04 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-08 08:34:04 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-08 08:34:04 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-08 08:34:04 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-08 08:34:04 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-08 08:34:04 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-08 08:34:04 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-08 08:34:04 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-08 08:34:04 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-08 08:34:04 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-08 08:34:04 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-08 08:34:04 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-08 08:34:04 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-08 08:34:04 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-08 08:34:04 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-08 08:34:04 > Sean (Sean@telegram) has joined ##systemau
2016-03-08 08:34:04 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-08 08:34:04 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-08 08:34:04 > Tom (Tom@telegram) has joined ##systemau
2016-03-08 08:34:04 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-08 08:34:04 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-08 08:34:04 NicholasB [2016-03-07 19:40:00] is fucktard in common parlance in the UK?
2016-03-08 08:34:04 LachlanHolmes [2016-03-07 19:45:12] Nic, is asking the important questions..
2016-03-08 08:34:04 NicholasB [2016-03-07 19:45:22] well im no good at linux.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:45:42] hey. im steam geeks interuptted and hang in their chat room should people be bored.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:45:48] its not a bad tech radio show.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:45:54] aussie
2016-03-08 08:34:04 LachlanHolmes [2016-03-07 19:45:55] You're 10 goods.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:46:12] pretty apple fan boiy
2016-03-08 08:34:04 NicholasB [2016-03-07 19:46:48] its called geeks interrupted
2016-03-08 08:34:04 NicholasB [2016-03-07 19:49:32] i just realised i said the name of the program twice. It's clearly a monday.
2016-03-08 08:34:04 AlanPope [2016-03-07 19:53:24] Guess it depends who you hang out with really, and age group.
2016-03-08 08:34:04 AlanPope [2016-03-07 19:53:33] I prefre fucknut and arsecandle
2016-03-08 08:34:04 AlanPope [2016-03-07 19:53:49] because of https://www.youtube.com/watch?v=SaeecIwCqk0
2016-03-08 08:34:04 NicholasB [2016-03-07 19:53:56] i'm a advocate of fucktard. Fucknut is nice.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:55:04] hhaaa
2016-03-08 08:34:04 NicholasB [2016-03-07 19:55:09] that video is gold.
2016-03-08 08:34:04 NicholasB [2016-03-07 19:55:47] got my new work keyboard!
2016-03-08 08:34:08 NicholasB [2016-03-07 19:55:47] <br><img id="4">
2016-03-08 08:34:08 PaulGleeson [2016-03-07 19:56:23] Fuck A man, there just lovely.
2016-03-08 08:34:08 NicholasB [2016-03-07 19:57:10] still need to buy a new board with browns or blues.
2016-03-08 08:34:08 NicholasB [2016-03-07 19:57:14] but it'll tide me over
2016-03-08 08:34:08 AlanPope [2016-03-07 19:57:23] I want a proper mech keyboard
2016-03-08 08:34:08 AlanPope [2016-03-07 19:57:30] but I want one with a nipple :(
2016-03-08 08:34:08 NicholasB [2016-03-07 19:57:46] ohh i think unikey or who every they are do a nipple one
2016-03-08 08:34:08 PaulGleeson [2016-03-07 19:58:27] Have a look at the code with browns. It has Dvorak as a dip switch option so you could leave your PC in a Us layout and still have dvorak
2016-03-08 08:34:08 AlanPope [2016-03-07 19:58:49] yeah, unicomp
2016-03-08 08:34:08 AlanPope [2016-03-07 19:58:51] they do
2016-03-08 08:34:08 NicholasB [2016-03-07 19:59:09] it will be alittle while yet. have other things to get.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:00:13] ive noticed I actually type better with the blank keys because i look at the screen not my fingers.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:00:29] i've always looked at my fingers even though I don't need to.
2016-03-08 08:34:08 PaulGleeson [2016-03-07 20:05:48] Same
2016-03-08 08:34:08 PaulGleeson [2016-03-07 20:06:38] Plus people think you have terrifying ability
2016-03-08 08:34:08 NicholasB [2016-03-07 20:06:50] oh yeah. intimidating.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:07:10] im listening to this live stream and it mixed heavy on the left.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:07:17] its genuinley very annoying.
2016-03-08 08:34:08 PaulGleeson [2016-03-07 20:07:21] When really its just I can do something I do 8+ hours a day without looking at it
2016-03-08 08:34:08 NotDan [2016-03-07 20:07:37] actually you've just reminded me @enjayembee; your podcasts seem really quiet for me
2016-03-08 08:34:08 PaulGleeson [2016-03-07 20:07:55] Bad audio be dammed
2016-03-08 08:34:08 NotDan [2016-03-07 20:07:56] I always have to crank up the volume to hear you guys alright, when everything else i listen to is fine at the same original volume level
2016-03-08 08:34:08 NicholasB [2016-03-07 20:08:18] yeah its a struggle because i don't like to compress the hell out of the recoridng.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:08:22] i like the sound of air.
2016-03-08 08:34:08 PaulGleeson [2016-03-07 20:08:34] I disagree, I find all podcasts quiet
2016-03-08 08:34:08 NicholasB [2016-03-07 20:09:19] LLuddites is loud and compressed. done well (not a diss @JoeRess)
2016-03-08 08:34:08 NotDan [2016-03-07 20:09:21] it's not a huge issue for me
2016-03-08 08:34:08 NotDan [2016-03-07 20:09:25] just thought id let you know
2016-03-08 08:34:08 NicholasB [2016-03-07 20:09:36] yeah cool.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:09:49] ill keep it in mind and see if i can tweak the compression.
2016-03-08 08:34:08 NicholasB [2016-03-07 20:09:55] i just installed a new compressor
2016-03-08 08:34:08 EricT [2016-03-07 20:50:46] This talk reminds me of Revheads! how much boost you running, bro?
2016-03-08 08:34:08 NicholasB [2016-03-07 20:51:01] 5 boosts
2016-03-08 08:34:08 NicholasB [2016-03-07 20:51:05] some time 6 boosts
2016-03-08 08:34:08 NicholasB [2016-03-07 20:51:07] if i have time.
2016-03-08 08:34:08 EricT [2016-03-07 20:51:22] Does you compressor have a blow-out valve?
2016-03-08 08:34:08 EricT [2016-03-07 20:52:02] lol that's a lumpy cam!
2016-03-08 08:34:08 LewisCividin [2016-03-07 22:32:57] I've found luddites to suddenly drop in volume though on pocketcasts like the last two episodes dunno why. I've got it in headphones and I think it's paused but I just need to turn it right up
2016-03-08 08:34:08 AlanPope [2016-03-07 22:33:49] not noticed that
2016-03-08 08:34:08 NicholasB [2016-03-07 22:34:01] i noticed jessie clips out a bit.
2016-03-08 08:34:08 NicholasB [2016-03-07 22:34:08] thats about it quality wise
2016-03-08 08:34:08 LewisCividin [2016-03-07 22:34:26] Oh it's a great podcast really enjoy it
2016-03-08 08:34:08 LewisCividin [2016-03-07 22:34:46] It could be the volume rocker turn down in my pocket also
2016-03-08 08:34:08 LewisCividin [2016-03-07 22:34:58] but it's just been the last two episodes
2016-03-08 08:34:08 NicholasB [2016-03-07 22:37:44] im not used to fortnightly episode yet!
2016-03-08 08:34:08 NicholasB [2016-03-07 22:37:51] i keep looking on a monday.
2016-03-08 08:34:08 Sean [2016-03-07 22:50:20] <br><img id="5">
2016-03-08 08:34:08 Sean [2016-03-07 22:50:32] Should be out now :)
2016-03-08 08:34:08 NicholasB [2016-03-07 22:52:00] yup arrived on my phone. will listen on the way home tomorrow.
2016-03-08 08:34:08 NicholasB [2016-03-07 22:52:14] selling my soul and watching twit.
2016-03-08 08:34:08 NicholasB [2016-03-07 22:52:17] :P
2016-03-08 08:34:08 Sean [2016-03-07 22:56:15] Hopefully you got good compensation for it :)
2016-03-08 08:34:08 NicholasB [2016-03-07 22:59:22] i lost the high quality version
2016-03-08 08:34:08 NicholasB [2016-03-07 23:00:07] oh well .
2016-03-08 08:34:08 Sean [2016-03-07 23:13:29] That's awesome. You get shameless plugs everywhere!
2016-03-08 08:34:08 NicholasB [2016-03-07 23:14:17] ha. i try.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:14:31] im pretty shameless when it comes to self promotion.
2016-03-08 08:34:08 EricT [2016-03-07 23:15:08] More shameless plugs than a bad 80's hair transplant!
2016-03-08 08:34:08 NicholasB [2016-03-07 23:15:16] exactly.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:15:25] i've slowed down of late.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:15:31] might try for a few more.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:15:59] hey does anyone have fabs email. i couldn;t find it. want him to read the german spam email i have.
2016-03-08 08:34:08 AlanPope [2016-03-07 23:17:26] fabsh @ sixgun dot org
2016-03-08 08:34:08 NicholasB [2016-03-07 23:17:40] why did i not find that.
2016-03-08 08:34:08 AlanPope [2016-03-07 23:17:41] oh, no sh
2016-03-08 08:34:08 AlanPope [2016-03-07 23:17:49] fab at sixgun dot org
2016-03-08 08:34:08 NicholasB [2016-03-07 23:17:53] cheers.
2016-03-08 08:34:08 AlanPope [2016-03-07 23:18:00] np
2016-03-08 08:34:08 NicholasB [2016-03-07 23:18:27] i dont know why i didn't think of that. i just google fab email. got nothing.
2016-03-08 08:34:08 EricT [2016-03-07 23:18:41] Don't accidently send to sexguns.org!
2016-03-08 08:34:08 NicholasB [2016-03-07 23:19:52] it's available!
2016-03-08 08:34:08 NicholasB [2016-03-07 23:19:58] i should buy it.
2016-03-08 08:34:08 EricT [2016-03-07 23:20:01] IKR
2016-03-08 08:34:08 EricT [2016-03-07 23:20:23] sexguns.com is auction
2016-03-08 08:34:08 EricT [2016-03-07 23:20:23] https://sedo.com/search/details.php4?partnerid=14460&language=e&et_cid=15&et_lid=14274&domain=sexguns.com&et_sub=1011&origin=parking
2016-03-08 08:34:08 EricT [2016-03-07 23:21:12] need to get Tom Jones to sing the theme
2016-03-08 08:34:08 NicholasB [2016-03-07 23:21:25] i reckon i could get kamahl
2016-03-08 08:34:08 NicholasB [2016-03-07 23:21:37] im pretty good at convincing people to do things.
2016-03-08 08:34:08 EricT [2016-03-07 23:21:51] Im you Sexgum...why are people so crue;l?
2016-03-08 08:34:08 EricT [2016-03-07 23:22:00] unkind even
2016-03-08 08:34:08 PaulGleeson [2016-03-07 23:22:01] Convince to walk to the post off and send your swag
2016-03-08 08:34:08 NicholasB [2016-03-07 23:22:14] send my swag.
2016-03-08 08:34:08 PaulGleeson [2016-03-07 23:22:19] I need to get a packet to put it in
2016-03-08 08:34:08 NicholasB [2016-03-07 23:22:29] hey did i send you a tape?
2016-03-08 08:34:08 NicholasB [2016-03-07 23:22:46] i forgot. ill do it this week if i didn't
2016-03-08 08:34:08 PaulGleeson [2016-03-07 23:23:19] Last thing you was something like I'll do it by the end of the week
2016-03-08 08:34:08 PaulGleeson [2016-03-07 23:23:26] And that was I don't know when
2016-03-08 08:34:08 NicholasB [2016-03-07 23:24:02] hahaha. well maybe i forgot. pm your address again. i reckon i forgot.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:24:05] sorry boss.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:25:30] ha. yeah i said that mid feb. youd have it by now.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:25:43] just going through old messages. My bad.
2016-03-08 08:34:08 PaulGleeson [2016-03-07 23:28:20] No problem boss, were the same
2016-03-08 08:34:08 NotDan [2016-03-07 23:31:36] what is that from
2016-03-08 08:34:08 NicholasB [2016-03-07 23:31:56] the gif? i just searched hi-5
2016-03-08 08:34:08 NotDan [2016-03-07 23:32:18] ah
2016-03-08 08:34:08 NotDan [2016-03-07 23:32:29] I thought it was Hillary Clinton on the right initially
2016-03-08 08:34:08 NicholasB [2016-03-07 23:33:01] it is isn't it
2016-03-08 08:34:08 NotDan [2016-03-07 23:33:09] I cant tell
2016-03-08 08:34:08 NotDan [2016-03-07 23:33:27] I desperately hope Bernie Sanders wins the nomination over her. If her or Trump- or both- win the nomination, then that's it. The credibility of the USA is nil
2016-03-08 08:34:08 NicholasB [2016-03-07 23:33:58] it will def be hil. i think cruz will get the nomintation.
2016-03-08 08:34:08 NotDan [2016-03-07 23:34:24] Even then as a 'the dems are the lesser evil' person; I still think Hillary is the best of a bad situation
2016-03-08 08:34:08 NotDan [2016-03-07 23:34:42] The fact her husband was president
2016-03-08 08:34:08 NotDan [2016-03-07 23:34:44] I mean...
2016-03-08 08:34:08 NicholasB [2016-03-07 23:34:49] elizabeth warren faded in to obscurity.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:34:57] i was surprised.
2016-03-08 08:34:08 NotDan [2016-03-07 23:35:03] At this point, sure- maybe she didnt want the presidency
2016-03-08 08:34:08 NotDan [2016-03-07 23:35:11] Maybe she knows something we don't
2016-03-08 08:34:08 NotDan [2016-03-07 23:35:34] Let her continue to be effective in her current position
2016-03-08 08:34:08 NotDan [2016-03-07 23:35:38] as she has been
2016-03-08 08:34:08 NicholasB [2016-03-07 23:35:43] hmmm.
2016-03-08 08:34:08 NicholasB [2016-03-07 23:35:45] any how
2016-03-08 08:34:08 NicholasB [2016-03-07 23:35:49] bed bed bed bed bed
2016-03-08 08:34:08 NotDan [2016-03-07 23:35:55] night night
2016-03-08 08:34:08 NicholasB [2016-03-07 23:36:02] as much as I want to type on my keyboard all night.
2016-03-08 08:34:08 NotDan [2016-03-07 23:36:06] haha
2016-03-08 08:34:08 NotDan [2016-03-07 23:36:14] facing the screen not the keyboard
2016-03-08 08:34:08 NicholasB [2016-03-07 23:36:32] exactly.
2016-03-08 08:34:08 NotDan [2016-03-07 23:36:37] ;)
2016-03-08 08:34:08 NotDan [2016-03-07 23:46:51] <br><img id="6">
2016-03-08 08:34:08 NotDan [00:04:25] You know, everyone in this channel has inspired me in a positive way. You're all pretty awesome
2016-03-08 08:34:08 LachlanHolmes [06:38:56] Aye it's funny... 😋
2016-03-08 08:34:08 LewisCividin [07:24:10] https://opensource.com/business/16/3/cern-and-owncloud pretty cool
2016-03-08 08:34:08 NicholasB [07:28:15] added to todays reading list.
2016-03-08 08:34:08 NicholasB [07:28:22] looks intresting.
2016-03-08 08:34:08 PaulGleeson [07:29:26] Morning @enjayembee
2016-03-08 08:34:08 NicholasB [07:30:28] good morning.
2016-03-08 08:34:08 NicholasB [07:30:38] how is the world today.
2016-03-08 08:34:08 PaulGleeson [07:31:06] Good, had Indian for dinner
2016-03-08 08:34:13 AlanPope [07:31:13] <br><img id="7"><br>Good Morning Australia!
2016-03-08 08:34:13 PaulGleeson [07:31:21] There a great bunch of lads
2016-03-08 08:34:13 Mathias [07:32:04] The smile before you find out that those wooden things tend to come back...
2016-03-08 08:34:13 AlanPope [07:33:06] :)
2016-03-08 08:34:13 NicholasB [07:37:03] hahah
2016-03-08 08:34:13 NicholasB [07:37:06] that's classic.
2016-03-08 08:34:13 NicholasB [07:37:11] you almost look Australian.
2016-03-08 08:34:13 AlanPope [07:37:27] lunatic face on
2016-03-08 08:34:13 NicholasB [07:37:41] just need a blue singlet
2016-03-08 08:34:13 PaulGleeson [07:38:02] Its my first time seeing a nonlego version of your face
2016-03-08 08:34:13 AlanPope [07:40:18] I'm sorry.
2016-03-08 08:34:13 NicholasB [07:40:50] hahaha. it's pretty similar. less jagged.
2016-03-08 08:34:13 PaulGleeson [07:42:07] More facial hair
2016-03-08 08:34:13 LewisCividin [07:44:17] Zink needs zink haha
2016-03-08 08:34:13 LewisCividin [08:08:41] Think this is going to be my new firewall https://forum.opnsense.org/index.php?topic=2086.0
2016-03-08 08:34:13 LewisCividin [08:10:35] Opensense 16.01 clean up of pfsense by the looks and with my router being weird been thinking I might just by a modem and build a router and firewall with pi's or something
2016-03-08 08:34:13 PaulGleeson [08:10:58] In what way is it a clean up?
2016-03-08 08:34:13 LewisCividin [08:19:11] Just says in that release not sure
2016-03-08 08:34:13 LewisCividin [08:21:16] focus on reengineering the captive portal, native intrusion prevention, plugin support, and transforming the reporting frontend into something more modern and flexible just to name a few[1
2016-03-08 08:34:14 - Mode ##systemau [+t]
2016-03-08 09:09:47 @fsociety so heres something crazy a demo from the demoscene that utilises a cga card and pushes out over 1000 colours on screen at once
2016-03-08 09:09:48 @fsociety http://hackaday.com/2015/04/10/demoing-an-8088/
2016-03-08 09:09:57 @fsociety i don't think i've seen anything so impressive in my life
2016-03-08 09:10:17 @fsociety something for all you 80s computer nerds :)
2016-03-08 09:24:33 EricT I think I may still have a 286 out in the shed.....
2016-03-08 09:31:27 @fsociety there was an article on that website where someone got an 80286 on the internet
2016-03-08 09:31:41 @fsociety but the cga is damn cooler
2016-03-08 09:38:42 LewisCividin that was pretty amazing how did they manage that
2016-03-08 09:40:32 MartinWimpress John McAfee lied about San Bernardino shooter's iPhone hack to 'get a s**tload of public attention'
2016-03-08 09:40:32 MartinWimpress http://www.dailydot.com/politics/john-mcafee-lied-iphone-apple-fbi/
2016-03-08 09:41:22 @fsociety haha doesn't surprise me
2016-03-08 09:44:52 NicholasB I wouldn't want it any other way.
2016-03-08 09:46:35 @fsociety http://hackaday.com/2016/02/01/flip-your-desktop-over-to-boot-linux/
2016-03-08 09:56:27 LewisCividin The only music I listen to now, is that played in podcasts lol
2016-03-08 09:58:05 NicholasB really? i'd go batty without tunes.
2016-03-08 09:58:25 @fsociety alright found an OS that outshines ReactOS..
2016-03-08 09:58:36 NicholasB fucking lies dean
2016-03-08 09:58:38 @fsociety http://aros.sourceforge.net/
2016-03-08 09:58:41 NicholasB don't make shit up
2016-03-08 09:58:44 @fsociety amigaOS for x86
2016-03-08 09:58:48 @fsociety and amiga binary compatible
2016-03-08 09:59:12 LewisCividin Only listening time I have now is full of podcasts
2016-03-08 09:59:42 @fsociety am i lying now NicholasB
2016-03-08 09:59:45 @fsociety no i'm not XD
2016-03-08 09:59:55 LewisCividin Wow that's nice dean might need to have a look at that
2016-03-08 10:00:34 LewisCividin Mate of mine is mega amiga fan
2016-03-08 10:01:13 @fsociety I am Dean
2016-03-08 10:01:14 @fsociety lol
2016-03-08 10:01:51 @fsociety i'm gonna put it in a VM and pretend I'm rendering those Babylon 5 CG sequences
2016-03-08 10:01:53 NicholasB well at least it has some kitsch value.
2016-03-08 10:01:54 @fsociety ooo... look at me
2016-03-08 10:02:18 @fsociety It's still ReactOS for Amiga heads though
2016-03-08 10:02:18 @fsociety haha
2016-03-08 10:02:39 NicholasB yes. agree.
2016-03-08 10:03:08 @fsociety Maybe you should have a ReactOS vs AROS showdown on SystemAU.. how kitsche is that... can it be more hipster
2016-03-08 10:03:19 @fsociety and do the showdown with the dvorak keyboard
2016-03-08 10:05:55 NicholasB i need to practice my dvorak. i don't use my laptop as much. and its hard to learn at work when I need to type a little more rapidly
2016-03-08 10:07:09 Moritz Announcing SQL Server on Linux - The Official Microsoft Blog
2016-03-08 10:07:09 Moritz https://blogs.microsoft.com/blog/2016/03/07/announcing-sql-server-on-linux/
2016-03-08 10:08:12 @fsociety fuck it
2016-03-08 10:08:14 @fsociety templeos.org
2016-03-08 10:08:18 @fsociety now this is the future
2016-03-08 10:09:21 LewisCividin There is so going to be a public M$ Linux distribution released I reckon
2016-03-08 10:09:57 LewisCividin It seems obvious way to keep enterprise walled in
2016-03-08 10:11:17 @fsociety hahaha... Anyone who installs that might as well install Oracle Linux while they are it
2016-03-08 10:12:15 CarlosLopez To quote my RT about SQL Server, "HAHAHAHAHAHAHAHAHHAHAHAHAHAHAHAHAHAHA"
2016-03-08 10:15:43 @fsociety seriously templeos.org
2016-03-08 10:15:50 @fsociety its the future
2016-03-08 10:15:52 @fsociety TEMPLEOS
2016-03-08 10:16:02 @fsociety *starts twitching*
2016-03-08 10:16:11 NicholasB it looks like the future.
2016-03-08 10:16:30 @fsociety you need on segment on systemau showing bizarre niche operating systems
2016-03-08 10:16:34 @fsociety need a*
2016-03-08 10:16:52 @fsociety and rate their usability out of 10
2016-03-08 10:17:04 @fsociety or should i say gray gray-bility
2016-03-08 10:17:23 NicholasB let me get the spam emails sorted and the video show sorted. then Ill take a look. :)
2016-03-08 10:17:26 NicholasB green screen ordered.
2016-03-08 10:19:07 @fsociety video show?
2016-03-08 10:19:13 @fsociety your going video?
2016-03-08 10:19:18 @fsociety will it be at 240p
2016-03-08 10:19:32 @fsociety just assuming because of AU upstream ;)
2016-03-08 10:23:52 NicholasB we're not going video. part of the 80 buck patreon goal was to do a small 20 min video hang out
2016-03-08 10:23:58 NicholasB on the off weeks
2016-03-08 10:24:19 NicholasB and i liked the idea of greenscreen.
2016-03-08 10:24:30 NicholasB dan will be using his laptop camera.
2016-03-08 10:24:43 NicholasB will be a hilarious contrast.
2016-03-08 10:26:25 @fsociety hahaha fair point
2016-03-08 10:26:35 @fsociety does dan even have the internet where he is moving too
2016-03-08 10:26:40 @fsociety i imagine it will be the dark ages
2016-03-08 10:30:00 NicholasB hope fully 3g till it gets connected. at least with small towns you are close to the exchange normally.
2016-03-08 10:31:16 @fsociety systemau staring nic.. and err.. nic
2016-03-08 10:38:22 NicholasB possiblt a puppet
2016-03-08 10:59:02 @fsociety SYSTEMAU JOIN ME
2016-03-08 10:59:04 @fsociety http://int10h.org/oldschool-pc-fonts/
2016-03-08 10:59:12 @fsociety join me in making computers move backwards again
2016-03-08 10:59:22 @fsociety to a time when you needed to use your brain
2016-03-08 10:59:24 @fsociety http://int10h.org/oldschool-pc-fonts/
2016-03-08 10:59:25 @fsociety JOIN ME
2016-03-08 10:59:27 @fsociety http://int10h.org/oldschool-pc-fonts/
2016-03-08 10:59:28 @fsociety lol
2016-03-08 11:00:28 NicholasB +
2016-03-08 11:00:32 NicholasB oop
2016-03-08 11:00:33 NicholasB s
2016-03-08 11:00:46 NicholasB elbowed keyboard
2016-03-08 11:01:12 NicholasB oh those are hard to read fonts.
2016-03-08 11:02:03 NicholasB someone could make a good 64bang distro.
2016-03-08 11:02:19 NicholasB Open box to look like a c64
2016-03-08 11:03:47 @fsociety im gonna use them as more my normal fonts from now on
2016-03-08 11:04:03 @fsociety so next linuxconf when anyone looks at my screen.. bam.. headache straight away
2016-03-08 11:04:17 @fsociety everyone who sits at my desktop now has trouble reading the text.. cause its so teeny tiny
2016-03-08 11:04:28 NicholasB why do you make yourself suffer.
2016-03-08 11:04:34 NicholasB do you not like yourself?
2016-03-08 11:04:42 NicholasB its ok dean.. you're fine
2016-03-08 11:04:44 NicholasB be free
2016-03-08 11:08:09 @fsociety im fwweeeeeeee
2016-03-08 11:08:13 @fsociety FWWWEEEEEEEEEEEEEEEEEEEEEEE
2016-03-08 14:11:26 @fsociety https://u.teknik.io/xlg9u.png
2016-03-08 14:11:28 @fsociety i went all amiga
2016-03-08 14:20:11 NicholasB Hard
2016-03-08 14:20:14 NicholasB Core
2016-03-08 14:20:37 @fsociety naa, just bored
2016-03-08 14:21:05 NicholasB hahaha
2016-03-08 14:21:11 NicholasB i know that feeling.
2016-03-08 14:28:33 @fsociety a real quiet day at work unfortunately
2016-03-08 15:05:15 EricT So, ends Tuesday....
2016-03-08 15:06:21 @fsociety not quite yet for me
2016-03-08 15:09:32 EricT Me too, we have a staff meeting at 4pm...so much uselessness!
2016-03-08 16:53:25 LewisCividin The put iced vovo's on (can you still buy vovo's, love a vovo
2016-03-08 17:24:45 @fsociety what is a vovo?
2016-03-08 17:30:08 LewisCividin Iced vovo
2016-03-08 17:30:58 LewisCividin 0439 626 172.
2016-03-08 17:31:16 LewisCividin Woops
2016-03-08 17:31:33 LewisCividin Damn touch screens lol
2016-03-08 17:32:07 LewisCividin <br><img id="8">
2016-03-08 17:32:17 LewisCividin That's what I meant to put in
2016-03-08 17:34:51 @fsociety excellent so i can call you now
2016-03-08 17:41:42 LewisCividin Haha not my number
2016-03-08 17:42:46 LewisCividin I think that's a hr person if you want to know not sure why it was in my phone keyboard but there you go
2016-03-08 17:44:54 @fsociety start sending linux code via sms to that number
2016-03-08 17:45:02 @fsociety send random bash scripts via sms
2016-03-08 17:46:06 LewisCividin That would be kinda funny
2016-03-08 17:49:49 PaulGleeson @F_s0c1ety Craig Robinson has joined the cast of Mr. Robot
2016-03-08 17:56:07 @fsociety Craig Robinson hey
2016-03-08 17:56:12 @fsociety hahaha. interesting choice
2016-03-08 17:56:36 PaulGleeson To quote reddit
2016-03-08 17:56:53 PaulGleeson I seen you hack ecorp, I seen it.
2016-03-08 17:57:18 @fsociety hahaha... i do look forward to season 2
2016-03-08 17:57:24 @fsociety i do own mr robot on bluray
2016-03-08 17:57:33 @fsociety one series i did purchase
2016-03-08 17:59:17 LewisCividin Not watched that yet
2016-03-08 17:59:27 LewisCividin I've got EPs 1
2016-03-08 18:07:37 Moritz @wimpress When is Ubuntu and Mubuntu Feature Freeze?
2016-03-08 18:27:25 NicholasB how the fuck do you not know iced vovos, we used them for our cover art in episode 3! :P http://systemau.net.au/episode-3/
2016-03-08 18:52:35 > fsociety (whoami@localhost) has joined ##systemau
2016-03-08 18:52:35 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-08 18:52:46 < root has kicked fsociety (Cleaning up channel)
2016-03-08 18:52:46 > fsociety (whoami@localhost) has joined ##systemau
2016-03-08 18:52:46 - Topic for ##systemau is "#systemau"
2016-03-08 18:52:46 - Topic set by root (root@localhost) on Tue, 08 Mar 2016 18:52:46
2016-03-08 18:52:46 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-08 18:52:46 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-08 18:52:46 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-08 18:52:46 > Adam (Adam@telegram) has joined ##systemau
2016-03-08 18:52:46 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-08 18:52:46 > Amir (Amir@telegram) has joined ##systemau
2016-03-08 18:52:46 > Angela (Angela@telegram) has joined ##systemau
2016-03-08 18:52:46 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-08 18:52:46 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-08 18:52:46 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-08 18:52:46 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-08 18:52:46 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-08 18:52:46 > emb (emb@telegram) has joined ##systemau
2016-03-08 18:52:46 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-08 18:52:46 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-08 18:52:46 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-08 18:52:46 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-08 18:52:46 > Joe (Joe@telegram) has joined ##systemau
2016-03-08 18:52:46 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-08 18:52:46 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-08 18:52:46 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-08 18:52:46 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-08 18:52:46 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-08 18:52:46 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-08 18:52:46 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-08 18:52:46 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-08 18:52:46 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-08 18:52:46 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-08 18:52:46 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-08 18:52:46 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-08 18:52:46 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-08 18:52:46 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-08 18:52:46 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-08 18:52:46 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-08 18:52:46 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-08 18:52:46 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-08 18:52:46 > Sean (Sean@telegram) has joined ##systemau
2016-03-08 18:52:46 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-08 18:52:46 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-08 18:52:46 > Tom (Tom@telegram) has joined ##systemau
2016-03-08 18:52:46 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-08 18:52:46 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-08 18:52:46 NicholasB have you had one before paul?
2016-03-08 18:53:57 PaulGleeson No
2016-03-08 18:54:51 NicholasB well we'll have to try get you one.
2016-03-08 18:56:03 NicholasB https://www.youtube.com/watch?v=ZSe7gCEjFF8
2016-03-08 18:56:07 NicholasB no iced vovos though
2016-03-08 19:00:25 NicholasB the thing is people always eat vegemite wrong in these things
2016-03-08 19:00:28 NicholasB irks me.
2016-03-08 19:00:33 NicholasB EAT IT PROPERLY
2016-03-08 19:06:01 LewisCividin Monte Carlos, kingstons, iced vovo's good times
2016-03-08 19:08:05 NicholasB right. i have to watch episode 1 of fuller house.
2016-03-08 19:08:27 NicholasB because its reviewed terribly.
2016-03-08 19:08:32 NicholasB which makes it great
2016-03-08 19:10:30 NicholasB oh wow.
2016-03-08 19:10:32 NicholasB its terrible.
2016-03-08 19:13:16 EricT need to dip TimTam into Vegemite, Winner!
2016-03-08 19:13:46 NicholasB *shudder*
2016-03-08 19:14:20 EricT Toe jam, a replacement for Vegemite!
2016-03-08 19:20:24 PaulGleeson I do not want to ever taste Vegemite again
2016-03-08 19:20:54 NicholasB did you try it properly. like with 2mm worth spread over a whole piece of toast with a fuckton of butter
2016-03-08 19:24:54 LewisCividin Fuckton of butter bugger all mite is the right way
2016-03-08 19:25:45 LewisCividin Fresh bread early morning bakery run if that possible also unsliced loaf
2016-03-08 19:33:55 Joe Are Australians familiar with this?
2016-03-08 19:34:00 Joe https://youtu.be/uTi5DzMsK3c
2016-03-08 19:35:47 NicholasB australians like me are.
2016-03-08 19:36:01 PaulGleeson Bearded?
2016-03-08 19:36:03 NicholasB but i would say your average australian isnt to ofay with carry on
2016-03-08 19:36:15 NicholasB geeks who watch a lot of late night tv in their teens
2016-03-08 19:36:39 PaulGleeson Is there anything else to do?
2016-03-08 19:36:52 Joe What about Shooting Stars?
2016-03-08 19:37:03 Joe https://youtu.be/kZQ1PxNzhlI
2016-03-08 19:38:38 NicholasB ha i do remeber carry on camping but maybe not in this detail
2016-03-08 19:39:21 NicholasB oh wait this is a parody
2016-03-08 19:39:22 NicholasB no
2016-03-08 19:39:26 NicholasB i didnt know shooting stars
2016-03-08 19:39:29 NicholasB sorry.
2016-03-08 19:39:45 NicholasB i know some of the comedians though
2016-03-08 20:42:19 LachlanHolmes Night Shift #8: now learning how to do looping in python :)
2016-03-08 21:31:45 TristanJames Fuck yeah: https://youtu.be/HCEL9O3ie40
2016-03-08 21:32:44 - irc: disconnected from server
2016-03-09 07:38:34 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 07:38:34 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 07:38:37 < root has kicked fsociety (Cleaning up channel)
2016-03-09 07:38:37 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 07:38:37 - Topic for ##systemau is "#systemau"
2016-03-09 07:38:37 - Topic set by root (root@localhost) on Wed, 09 Mar 2016 07:38:37
2016-03-09 07:38:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 07:38:37 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-09 07:38:37 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-09 07:38:37 > Adam (Adam@telegram) has joined ##systemau
2016-03-09 07:38:37 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-09 07:38:37 > Amir (Amir@telegram) has joined ##systemau
2016-03-09 07:38:37 > Angela (Angela@telegram) has joined ##systemau
2016-03-09 07:38:37 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-09 07:38:37 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-09 07:38:37 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-09 07:38:37 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-09 07:38:37 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-09 07:38:37 > emb (emb@telegram) has joined ##systemau
2016-03-09 07:38:37 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-09 07:38:37 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-09 07:38:37 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-09 07:38:37 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-09 07:38:37 > Joe (Joe@telegram) has joined ##systemau
2016-03-09 07:38:37 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-09 07:38:37 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-09 07:38:37 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-09 07:38:37 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-09 07:38:37 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-09 07:38:37 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-09 07:38:37 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-09 07:38:37 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-09 07:38:37 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-09 07:38:37 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-09 07:38:37 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-09 07:38:37 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-09 07:38:37 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-09 07:38:37 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-09 07:38:37 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-09 07:38:37 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-09 07:38:37 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-09 07:38:37 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-09 07:38:37 > Sean (Sean@telegram) has joined ##systemau
2016-03-09 07:38:37 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-09 07:38:37 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-09 07:38:37 > Tom (Tom@telegram) has joined ##systemau
2016-03-09 07:38:37 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-09 07:38:37 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-09 07:38:37 NicholasB [2016-03-08 21:34:50] thats pretty sweet
2016-03-09 07:38:37 NicholasB [2016-03-08 22:09:51] I'm installing Ubuntu Martin 16.04. Seems to work this time. Maybe it was my 120g ssd causing issues last time. Time for a health check.
2016-03-09 07:38:37 PaulGleeson [2016-03-08 22:18:18] Ubuntu Martin?
2016-03-09 07:38:37 AlanPope [2016-03-08 22:22:21] heh
2016-03-09 07:38:37 LewisCividin [2016-03-08 22:34:16] 4chan founder working at Google to fix Google's social services
2016-03-09 07:38:37 LewisCividin [2016-03-08 22:34:41] Interesting option
2016-03-09 07:38:37 NicholasB [2016-03-08 22:35:57] That's my special name for it.
2016-03-09 07:38:37 EricT [2016-03-08 22:44:20] https://youtu.be/8ucCxtgN6sc
2016-03-09 07:38:37 NicholasB [2016-03-08 22:53:36] windows 95 is pretty obvious to use i would think
2016-03-09 07:38:37 NicholasB [2016-03-08 22:53:51] though the boot time is hilarious
2016-03-09 07:38:37 NicholasB [2016-03-08 22:56:01] there are like two kids who know all this shit
2016-03-09 07:38:37 AlanPope [2016-03-08 22:59:06] Fine bros, not clicking
2016-03-09 07:38:37 NicholasB [2016-03-08 22:59:35] its pretty funny.
2016-03-09 07:38:37 EricT [2016-03-08 23:01:54] Kids these days!
2016-03-09 07:38:37 EricT [2016-03-08 23:02:25] instant gratification! lets see them load 8 floppies for a game!lol
2016-03-09 07:38:37 NicholasB [2016-03-08 23:04:59] Uhh. Must have fucked up fstab. Fucking first reboot and I'm hanging.
2016-03-09 07:38:37 EricT [2016-03-08 23:06:26] rescue console!
2016-03-09 07:38:37 EricT [2016-03-08 23:07:05] Win95 boot disk?
2016-03-09 07:38:37 EricT [2016-03-08 23:07:12] 😊
2016-03-09 07:38:37 NicholasB [2016-03-08 23:13:41] lol.
2016-03-09 07:38:37 NicholasB [2016-03-08 23:13:50] just edited out the lines i added with alive distro
2016-03-09 07:38:37 NicholasB [2016-03-08 23:13:51] :P
2016-03-09 07:38:37 NicholasB [07:15:23] morning.
2016-03-09 07:38:37 PaulGleeson [07:15:31] 'allo 'allo
2016-03-09 07:38:37 NicholasB [07:16:26] sup. are all freezing while we have out hottest march on record? it's bullshit!
2016-03-09 07:38:37 PaulGleeson [07:17:55] It's 7 degrees today, so not terrible
2016-03-09 07:38:37 NicholasB [07:19:03] wow. it was 29 at 1am in Melbourne. no one slept well
2016-03-09 07:38:37 PaulGleeson [07:19:14] holy fuck
2016-03-09 07:38:37 PaulGleeson [07:19:49] "The highest air temperature recorded in Ireland was + 33.3°C at Kilkenny Castle 26th June 1887"
2016-03-09 07:38:37 NicholasB [07:22:37] hahahaha
2016-03-09 07:38:37 NicholasB [07:22:46] wow. I never it wasn't hot there.
2016-03-09 07:38:37 NicholasB [07:23:08] but I thought youd have hit the high 30s once
2016-03-09 07:38:37 NicholasB [07:23:11] never = knew
2016-03-09 07:38:37 PaulGleeson [07:23:43] Are you aware how far north we are?
2016-03-09 07:38:37 PaulGleeson [07:23:59] Like the entire of Ireland is north of the continental USA
2016-03-09 07:38:37 LewisCividin [07:26:42] http://www.phoronix.com/scan.php?page=article&item=airtop-pc-initial&num=1
2016-03-09 07:38:37 LewisCividin [07:26:53] Looks nice!
2016-03-09 07:38:37 NicholasB [07:30:21] Yeah.. but sometimes when you grow up in one place its hard to comprehend that :D
2016-03-09 07:38:37 NicholasB [07:31:12] that does look damn cool
2016-03-09 07:38:37 NicholasB [07:31:20] no pun intended
2016-03-09 07:38:37 LewisCividin [07:33:50] Lol got some great config options with it also
2016-03-09 07:38:37 LewisCividin [07:34:27] Still pricy as when you do aud conversion
2016-03-09 07:38:38 - irc: disconnected from server
2016-03-09 08:24:26 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 08:24:26 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 08:24:29 < root has kicked fsociety (Cleaning up channel)
2016-03-09 08:24:29 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 08:24:29 - Topic for ##systemau is "#systemau"
2016-03-09 08:24:29 - Topic set by root (root@localhost) on Wed, 09 Mar 2016 08:24:29
2016-03-09 08:24:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 08:24:29 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-09 08:24:29 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-09 08:24:29 > Adam (Adam@telegram) has joined ##systemau
2016-03-09 08:24:29 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-09 08:24:29 > Amir (Amir@telegram) has joined ##systemau
2016-03-09 08:24:29 > Angela (Angela@telegram) has joined ##systemau
2016-03-09 08:24:29 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-09 08:24:29 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-09 08:24:29 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-09 08:24:29 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-09 08:24:29 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-09 08:24:29 > emb (emb@telegram) has joined ##systemau
2016-03-09 08:24:29 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-09 08:24:29 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-09 08:24:29 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-09 08:24:29 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-09 08:24:29 > Joe (Joe@telegram) has joined ##systemau
2016-03-09 08:24:29 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-09 08:24:29 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-09 08:24:29 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-09 08:24:29 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-09 08:24:29 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-09 08:24:29 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-09 08:24:29 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-09 08:24:29 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-09 08:24:29 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-09 08:24:29 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-09 08:24:29 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-09 08:24:29 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-09 08:24:29 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-09 08:24:29 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-09 08:24:29 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-09 08:24:29 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-09 08:24:29 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-09 08:24:29 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-09 08:24:29 > Sean (Sean@telegram) has joined ##systemau
2016-03-09 08:24:29 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-09 08:24:29 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-09 08:24:29 > Tom (Tom@telegram) has joined ##systemau
2016-03-09 08:24:29 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-09 08:24:29 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-09 08:24:29 NicholasB [07:39:12] as is everything. oh well we are slowly climbing back up.
2016-03-09 08:24:29 Moritz [08:16:30] pip install doge
2016-03-09 08:24:40 - Mode ##systemau [+t]
2016-03-09 09:01:23 Moritz Updated to OwnCloud 9 and nothing broke! \o/
2016-03-09 09:06:45 NicholasB is that beta? i looked at it the other day the official site still was on 8.2.2
2016-03-09 09:16:42 Moritz No 9 was released today.
2016-03-09 09:17:55 NicholasB ahhh
2016-03-09 09:18:11 NicholasB servers me right for being proactive. will have to take a look over the weekend.
2016-03-09 09:18:30 Moritz How do you have it installed?
2016-03-09 09:22:07 NicholasB digital ocean. updates via ppa i think
2016-03-09 09:22:56 Moritz Apt will notify you about broken dependencies. But they change the package structure so thats fine. (Backup, Backup, Backup, etc).
2016-03-09 09:23:33 @fsociety owncloud 9 was rls'd... ooo.. going to update then
2016-03-09 09:23:46 @fsociety have to check out the new features.. but first make snapshot
2016-03-09 09:28:26 Moritz Hmm Webdav with Windows is flaky in 9. Or maybe my network is in a weird state. :(
2016-03-09 09:30:28 @fsociety what new features does owncloud 9 bring?
2016-03-09 09:30:59 Moritz Comments for files. Better activity stream. New updater. Hopefully a webdav bugfix for OSX.
2016-03-09 09:31:04 Moritz And more.
2016-03-09 09:32:28 Moritz See https://owncloud.org/nine/
2016-03-09 09:35:20 NicholasB Oh I just snapshot the whole image. If I fuck it no harm no fould
2016-03-09 09:38:41 @fsociety same
2016-03-09 09:38:50 @fsociety be curious if it breaks any current android apps
2016-03-09 09:54:16 LewisCividin I'ma wait
2016-03-09 09:55:02 @fsociety i have to pay my digitalocean account today, tried to take money out of my account which i didn't have. haha
2016-03-09 10:02:48 NicholasB Telegram playing up for you muffins?
2016-03-09 10:05:25 AlanPope Not here
2016-03-09 10:05:59 NicholasB might be my connection. delayed / unsent messages
2016-03-09 10:06:25 NicholasB https://www.youtube.com/watch?v=AylFWIqbJGo
2016-03-09 10:06:33 NicholasB now i have unsent letter in my head.
2016-03-09 10:07:03 NicholasB oh we are recording a few days early. IE tomorrow night. round 7-9
2016-03-09 10:07:16 NicholasB should people want to tune in to our live stream
2016-03-09 10:07:20 NicholasB (pm)
2016-03-09 10:18:55 Moritz is there a TUI diff like meld that supports folders?
2016-03-09 10:20:32 @fsociety naa not here, though to be fair I don't actually use the Telegram app
2016-03-09 10:22:26 NicholasB i figured it would be a back end issue as i use the web browser version
2016-03-09 10:23:09 @fsociety have you tried using a different application to see if it is a website backend issue?
2016-03-09 10:23:28 NicholasB yeah. was a little flaky on my phone.
2016-03-09 10:23:35 NicholasB its all cleared up now however
2016-03-09 10:23:37 @fsociety so tomorrow night for the live stream.. i think it will be the first time I'll try and have a listen. Jason will be round as well
2016-03-09 10:23:45 NicholasB very good.
2016-03-09 10:24:14 NicholasB you cant complain if it drops out. :P its a bonus.
2016-03-09 10:24:25 @fsociety i spent last night compiling an unreal4 project that requires 24gbs of ram. have to load it up today
2016-03-09 10:31:34 NicholasB you are the only person ive met who needs 24gb of ram
2016-03-09 10:35:52 @fsociety i dont even need 24gb of ram
2016-03-09 11:06:11 Joe <br><img id="4">
2016-03-09 11:06:14 Joe You don't see that every day
2016-03-09 11:06:48 Joe IRL interracial frog porn
2016-03-09 11:08:30 NicholasB you might not. I have a special room at home just for it.
2016-03-09 11:08:44 NicholasB where did you come across these frogs
2016-03-09 11:08:57 Joe On my way home from the pub
2016-03-09 11:09:05 Joe Almost stepped on the fuckers
2016-03-09 11:09:34 Joe You see it all in "that London"
2016-03-09 11:11:00 Joe <br><img id="5">
2016-03-09 11:11:05 Joe This was on the wall in the pub toilet
2016-03-09 11:11:14 Joe Pretty good band name
2016-03-09 11:12:09 NicholasB shouldn't it have an s not z.
2016-03-09 11:12:19 NicholasB it's not a word I write often.
2016-03-09 11:12:42 Joe Maybe they are American
2016-03-09 11:15:08 Joe SwiftKey wants it to be so do missed
2016-03-09 11:15:25 Joe Or So do mixed
2016-03-09 11:15:46 Moritz Why do you need fastcgi or php-fpm. Can the webser use php directly?
2016-03-09 11:28:47 NicholasB https://www.youtube.com/watch?v=IlPk59f7i0c
2016-03-09 11:29:04 NicholasB you only get sick if you're angering god
2016-03-09 11:29:22 Joe Yeah duh
2016-03-09 11:29:42 Joe Dawkins blasphemes for years
2016-03-09 11:29:47 Joe Has a stroke
2016-03-09 11:29:50 Joe QED
2016-03-09 11:32:48 NicholasB it explains all the 700 year old catholics
2016-03-09 11:34:00 Joe I can't see that word without thinking of this
2016-03-09 11:34:06 Joe <br><img id="6">
2016-03-09 11:34:31 CarlosLopez lol
2016-03-09 11:36:26 Joe Anyway good night and WUBALUBADUBDUB
2016-03-09 11:41:25 Joe He who makes a beast of himself gets rid of the pain of being a man.
2016-03-09 11:45:32 NicholasB night
2016-03-09 14:51:59 Moritz So i also upgraded my personal OC and tested the android app. Doesn't appear to be broken. direct upload works. browsing works, downloading works to.
2016-03-09 14:52:44 @fsociety ahh.. i will try soon enough.. just had to purchase computer parts for a friend. urghhh.. why do i always agree to building computers for friends. i have to stop it
2016-03-09 15:07:34 Moritz Why not build computers for internet strangers? Much more rewarding… not really1
2016-03-09 15:11:03 NicholasB i generally get whisky when i build
2016-03-09 15:11:05 NicholasB or a slab
2016-03-09 15:14:12 Moritz <br><img id="7"><br>Found old android screenshots from my old phone. Really waste too much time back then. (Not that i am much wiser these days).
2016-03-09 15:16:37 NicholasB oh i customised the shit of my phone back in the day
2016-03-09 15:16:58 NicholasB that a ginger bread rom
2016-03-09 15:17:49 Moritz Old MIUI version i think.
2016-03-09 15:25:36 NicholasB ahhhhhh
2016-03-09 16:23:31 EricT Just got my new vape mod, its the awesome! iStick TC60W
2016-03-09 16:28:44 Moritz Linux has a higher market share than WIndows …!
2016-03-09 16:28:44 Moritz http://i.imgur.com/fyX0cRJ.png
2016-03-09 16:29:19 @fsociety Eric. I'm waiting for you to make your penis into a vape mod
2016-03-09 16:29:29 @fsociety Don't mind me I'm just sucking my own cock
2016-03-09 16:29:30 @fsociety ;)
2016-03-09 16:30:50 @fsociety Moritz - i guess it depends on the windows version. hahaha
2016-03-09 16:30:52 EricT Is that a Homo-erotic desire or more of a Vapo-erotic desire?
2016-03-09 16:30:58 @fsociety vapo-erotic
2016-03-09 16:31:02 EricT lol
2016-03-09 16:31:09 @fsociety my penis tastes so delicious
2016-03-09 16:31:10 @fsociety lol
2016-03-09 16:31:35 EricT your very flexible, had a rib removed?
2016-03-09 16:31:43 @fsociety regarding the pc - its a build in exchange for lots of weed (weed is for my other half)
2016-03-09 16:32:12 EricT Bater-Card PC build service
2016-03-09 16:32:22 @fsociety though im eyeing off the parts.. originally he wanted a laptop to do CAD work. I responded umm... dude get a desktop for that shit
2016-03-09 16:32:24 EricT Barter*
2016-03-09 16:32:27 @fsociety it all started from there
2016-03-09 16:32:49 @fsociety hahaha... barter penis like vape mods for a pc
2016-03-09 16:32:50 @fsociety lol
2016-03-09 16:34:06 Moritz You should do an interview on RHLSTP. https://www.comedy.co.uk/podcasts/richard_herring_lst_podcast/
2016-03-09 16:35:23 @fsociety why is that? haha
2016-03-09 16:35:29 @fsociety i do not know of this... POD---CAST
2016-03-09 16:35:43 @fsociety i'm already annoyed i have to wait a fortnight for systemau
2016-03-09 16:36:03 @fsociety if i had my way "I'D WANT DAILY NIC AND DAN PODCASTS"
2016-03-09 16:36:24 @fsociety be kind of like slave labour podcasts for my amusement
2016-03-09 16:36:37 Moritz One of the filler questions is "can you suck your own cock". I really like Stephan Frys answer. But then again i like everything he does.
2016-03-09 16:36:55 @fsociety Would you let Fry have his way with you?
2016-03-09 16:37:00 @fsociety I know you would
2016-03-09 16:37:02 @fsociety lol
2016-03-09 16:37:03 EricT what about this @F_s0c1ety
2016-03-09 16:39:59 Moritz https://termux.com/
2016-03-09 16:40:27 @fsociety as you can see its the end of my shift, and i've lost the plot :)
2016-03-09 16:41:02 @fsociety termux looks like it could replace my juicessh application
2016-03-09 16:41:08 @fsociety even does powerline fonts.. very nice
2016-03-09 16:43:26 @fsociety zsh and grep my sms's... does this mean i can replace my whole phone environment with a command line
2016-03-09 16:43:32 @fsociety oo.. oo.. oooooooo... i likey
2016-03-09 16:46:15 Moritz Not everything in in FDroid though.
2016-03-09 16:52:25 @fsociety i downloaded it
2016-03-09 17:02:09 CarlosLopez Oh oh.
2016-03-09 17:02:22 CarlosLopez "This app is incompatible with all of your devices."
2016-03-09 17:02:31 CarlosLopez Looks nice though
2016-03-09 17:07:55 Moritz http://opensource-usability.blogspot.de/2016/03/cultural-context-in-open-source-software.html
2016-03-09 17:19:36 EricT I guess the Linus & the Linux Kernel Devels should read this, LOL!
2016-03-09 18:34:06 NotDan That was interesting actually. Makes a lot of sense
2016-03-09 18:34:41 Mathias I think it was on Bad Voltage where they interviewed Greg KH. He talked about cultural differences and said something like "for example Germans can be blunt" in order to make his point.
2016-03-09 18:35:17 Mathias So some already know.
2016-03-09 18:35:59 EricT Cultural awareness is a skill
2016-03-09 18:37:09 Mathias I guess it is easier to forget about when you are communicating via Mail.
2016-03-09 18:37:14 NotDan Yeah
2016-03-09 18:37:24 NotDan Plus a lot of context and tone is obviously lost in text
2016-03-09 18:41:38 Moritz #systemau or the luddites might wanna mark 3rd April in their calendar. On that day Wallabag 2.0 will be released. Just tested the beta and it made great progress since v1.
2016-03-09 18:41:38 Moritz https://www.wallabag.org
2016-03-09 18:46:11 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < NickWurlod (Nick_Wurlod@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Mathias (Mathias@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < CarlosLopez (Carlos_Lopez@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:46:11 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-09 18:48:48 - irc: disconnected from server
2016-03-09 21:26:01 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 21:26:01 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 21:29:19 < root has kicked fsociety (Cleaning up channel)
2016-03-09 21:29:19 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 21:29:19 - Topic for ##systemau is "#systemau"
2016-03-09 21:29:19 - Topic set by root (root@localhost) on Wed, 09 Mar 2016 21:29:19
2016-03-09 21:29:19 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 21:29:19 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-09 21:29:19 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-09 21:29:19 > Adam (Adam@telegram) has joined ##systemau
2016-03-09 21:29:19 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-09 21:29:19 > Amir (Amir@telegram) has joined ##systemau
2016-03-09 21:29:19 > Angela (Angela@telegram) has joined ##systemau
2016-03-09 21:29:19 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-09 21:29:19 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-09 21:29:19 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-09 21:29:19 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-09 21:29:19 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-09 21:29:19 > emb (emb@telegram) has joined ##systemau
2016-03-09 21:29:19 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-09 21:29:19 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-09 21:29:19 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-09 21:29:19 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-09 21:29:19 > Joe (Joe@telegram) has joined ##systemau
2016-03-09 21:29:19 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-09 21:29:19 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-09 21:29:19 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-09 21:29:19 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-09 21:29:19 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-09 21:29:19 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-09 21:29:19 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-09 21:29:19 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-09 21:29:19 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-09 21:29:19 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-09 21:29:19 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-09 21:29:19 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-09 21:29:19 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-09 21:29:19 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-09 21:29:19 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-09 21:29:19 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-09 21:29:19 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-09 21:29:19 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-09 21:29:19 > Sean (Sean@telegram) has joined ##systemau
2016-03-09 21:29:19 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-09 21:29:19 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-09 21:29:19 > Tom (Tom@telegram) has joined ##systemau
2016-03-09 21:29:19 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-09 21:29:19 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-09 21:29:19 Moritz [19:14:14] The load in my phone is constantly around 2.
2016-03-09 21:29:24 Moritz [19:14:25] <br><img id="4">
2016-03-09 21:29:24 Moritz [19:14:44] No wonder it is so sluggish.
2016-03-09 21:29:24 Moritz [19:36:00] BTW: The red bar is kernel space, green is user space and blue is io interrupts.
2016-03-09 21:29:24 EricT [19:37:50] You have a QuickDic? 😃
2016-03-09 21:29:24 Moritz [19:45:44] https://www.youtube.com/watch?v=xsguzMkWcr0&feature=youtu.be
2016-03-09 21:29:24 Moritz [19:46:02] Yup. Neat to have one offline.
2016-03-09 21:29:24 EricT [19:49:53] I guess a quickdic could come in handy!
2016-03-09 21:29:24 EricT [19:51:41] Tissues needed!
2016-03-09 21:29:24 EricT [19:51:50] OMG too funny!
2016-03-09 21:29:24 Moritz [19:52:55] Reminded me of this one:
2016-03-09 21:29:24 Moritz [19:52:55] https://www.youtube.com/watch?v=Dg-r-S0fIkA
2016-03-09 21:29:24 EricT [19:55:31] Build a web hammock! priceless!
2016-03-09 21:49:18 LachlanHolmes Everyone! Exciting news! I've finally got working internal bind server!!!!!! YAYYYY!!
2016-03-09 21:49:47 LachlanHolmes And im out of port.
2016-03-09 21:50:29 - irc: disconnected from server
2016-03-09 23:29:52 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:29:52 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:29:54 < root has kicked fsociety (Cleaning up channel)
2016-03-09 23:29:54 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:29:54 - Topic for ##systemau is "#systemau"
2016-03-09 23:29:54 - Topic set by root (root@localhost) on Wed, 09 Mar 2016 23:29:54
2016-03-09 23:29:54 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:29:54 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-09 23:29:54 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-09 23:29:54 > Adam (Adam@telegram) has joined ##systemau
2016-03-09 23:29:54 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-09 23:29:54 > Alex (Alex@telegram) has joined ##systemau
2016-03-09 23:29:54 > Amir (Amir@telegram) has joined ##systemau
2016-03-09 23:29:54 > Angela (Angela@telegram) has joined ##systemau
2016-03-09 23:29:54 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-09 23:29:54 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-09 23:29:54 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-09 23:29:54 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-09 23:29:54 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-09 23:29:54 > emb (emb@telegram) has joined ##systemau
2016-03-09 23:29:54 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-09 23:29:54 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-09 23:29:54 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-09 23:29:54 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-09 23:29:54 > Joe (Joe@telegram) has joined ##systemau
2016-03-09 23:29:54 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-09 23:29:54 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-09 23:29:54 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-09 23:29:54 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-09 23:29:54 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-09 23:29:54 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-09 23:29:54 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-09 23:29:54 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-09 23:29:54 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-09 23:29:54 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-09 23:29:54 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-09 23:29:54 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-09 23:29:54 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-09 23:29:54 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-09 23:29:54 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-09 23:29:54 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-09 23:29:54 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-09 23:29:54 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-09 23:29:54 > Sean (Sean@telegram) has joined ##systemau
2016-03-09 23:29:54 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-09 23:29:54 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-09 23:29:54 > Tom (Tom@telegram) has joined ##systemau
2016-03-09 23:29:54 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-09 23:29:54 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-09 23:29:54 PaulGleeson [22:06:43] Sober up and confirm
2016-03-09 23:29:54 Alex [22:36:11] Nicholas B added user Alex by link.
2016-03-09 23:29:54 PaulGleeson [22:45:55] Welcome Alex
2016-03-09 23:29:54 Alex [22:47:50] Thanks, Paul, and hello everyone! :)
2016-03-09 23:29:54 LachlanHolmes [22:52:26] Howdy. Gday
2016-03-09 23:29:54 Joe [22:56:07] Yo Alex. Wot it do?
2016-03-09 23:30:06 - Mode ##systemau [+t]
2016-03-09 23:38:03 - irc: disconnected from server
2016-03-09 23:38:07 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:38:07 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:40:19 - irc: disconnected from server
2016-03-09 23:40:22 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:40:22 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:40:44 - irc: disconnected from server
2016-03-09 23:41:16 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:41:16 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:54:37 < root has kicked fsociety (Cleaning up channel)
2016-03-09 23:54:37 > fsociety (whoami@localhost) has joined ##systemau
2016-03-09 23:54:37 - Topic for ##systemau is "#systemau"
2016-03-09 23:54:37 - Topic set by root (root@localhost) on Wed, 09 Mar 2016 23:54:37
2016-03-09 23:54:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-09 23:54:37 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-09 23:54:37 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-09 23:54:37 > Adam (Adam@telegram) has joined ##systemau
2016-03-09 23:54:37 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-09 23:54:37 > Alex (Alex@telegram) has joined ##systemau
2016-03-09 23:54:37 > Amir (Amir@telegram) has joined ##systemau
2016-03-09 23:54:37 > Angela (Angela@telegram) has joined ##systemau
2016-03-09 23:54:37 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-09 23:54:37 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-09 23:54:37 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-09 23:54:37 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-09 23:54:37 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-09 23:54:37 > emb (emb@telegram) has joined ##systemau
2016-03-09 23:54:37 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-09 23:54:37 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-09 23:54:37 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-09 23:54:37 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-09 23:54:37 > Joe (Joe@telegram) has joined ##systemau
2016-03-09 23:54:37 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-09 23:54:37 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-09 23:54:37 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-09 23:54:37 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-09 23:54:37 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-09 23:54:37 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-09 23:54:37 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-09 23:54:37 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-09 23:54:37 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-09 23:54:37 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-09 23:54:37 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-09 23:54:37 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-09 23:54:37 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-09 23:54:37 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-09 23:54:37 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-09 23:54:37 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-09 23:54:37 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-09 23:54:37 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-09 23:54:37 > Sean (Sean@telegram) has joined ##systemau
2016-03-09 23:54:37 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-09 23:54:37 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-09 23:54:37 > Tom (Tom@telegram) has joined ##systemau
2016-03-09 23:54:37 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-09 23:54:37 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-09 23:54:37 AlanPope They Don't Think It Be Like It Is But It Do
2016-03-09 23:54:49 AlanPope Good morning.
2016-03-10 00:36:32 PaulGleeson Afternoon Popeye
2016-03-10 00:38:14 AlanPope pip pip
2016-03-10 00:38:57 PaulGleeson Any craic man?
2016-03-10 00:39:51 PaulGleeson I finally got freebsd booting on my beagle bone black
2016-03-10 00:50:40 PaulGleeson 980ti Darwin Awards: Help - Graphics Cards - Linus Tech Tips
2016-03-10 00:50:40 PaulGleeson https://linustechtips.com/main/topic/561041-980ti-darwin-awards-help/
2016-03-10 01:07:04 EricT too hot and humid to sleep, so Just repurposed a Pi2 with squid3 to act as a cach for all my DNF and Apt-get downloads! working quite well,.
2016-03-10 01:07:56 PaulGleeson Nice
2016-03-10 01:08:00 Alex Drilling holes in your graphics card ... what could possibly go wrong. :)
2016-03-10 01:08:08 PaulGleeson Yeah
2016-03-10 01:08:35 PaulGleeson And apparently the block he was using didn't need that hole to be mouted
2016-03-10 01:08:39 PaulGleeson Mounted*
2016-03-10 01:09:02 Alex Lol ... best comment:
2016-03-10 01:09:09 Alex Even IF drilling would have worked... why on earth would you drill the card instead of the cooler mounting plate?
2016-03-10 01:11:51 PaulGleeson I've no idea
2016-03-10 07:16:54 TristanJames <br><img id="4">
2016-03-10 07:16:59 TristanJames Derp
2016-03-10 08:27:54 NicholasB ha..
2016-03-10 08:28:06 NicholasB i can't laugh really.
2016-03-10 08:28:12 NicholasB ive not soldered before.
2016-03-10 09:04:24 PaulGleeson Don't hold the part that gets hot
2016-03-10 09:07:00 Joe Has Anyone Really Been Far Even as Decided to Use Even Go Want to do Look More Like?
2016-03-10 09:08:16 NicholasB i do. but only on Tuesdays.
2016-03-10 09:42:10 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < NickWurlod (Nick_Wurlod@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Mathias (Mathias@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < CarlosLopez (Carlos_Lopez@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Alex (Alex@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:42:10 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 09:52:12 - irc: disconnected from server
2016-03-10 11:10:48 > fsociety (whoami@localhost) has joined ##systemau
2016-03-10 11:10:48 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-10 11:10:49 < root has kicked fsociety (Cleaning up channel)
2016-03-10 11:10:49 > fsociety (whoami@localhost) has joined ##systemau
2016-03-10 11:10:49 - Topic for ##systemau is "#systemau"
2016-03-10 11:10:49 - Topic set by root (root@localhost) on Thu, 10 Mar 2016 11:10:49
2016-03-10 11:10:49 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-10 11:10:49 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-10 11:10:49 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-10 11:10:49 > Adam (Adam@telegram) has joined ##systemau
2016-03-10 11:10:49 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-10 11:10:49 > Alex (Alex@telegram) has joined ##systemau
2016-03-10 11:10:49 > Amir (Amir@telegram) has joined ##systemau
2016-03-10 11:10:49 > Angela (Angela@telegram) has joined ##systemau
2016-03-10 11:10:49 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-10 11:10:49 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-10 11:10:49 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-10 11:10:49 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-10 11:10:49 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-10 11:10:49 > emb (emb@telegram) has joined ##systemau
2016-03-10 11:10:49 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-10 11:10:49 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-10 11:10:49 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-10 11:10:49 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-10 11:10:49 > Joe (Joe@telegram) has joined ##systemau
2016-03-10 11:10:49 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-10 11:10:49 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-10 11:10:49 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-10 11:10:49 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-10 11:10:49 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-10 11:10:49 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-10 11:10:49 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-10 11:10:49 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-10 11:10:49 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-10 11:10:49 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-10 11:10:49 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-10 11:10:49 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-10 11:10:49 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-10 11:10:49 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-10 11:10:49 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-10 11:10:49 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-10 11:10:49 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-10 11:10:49 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-10 11:10:49 > Sean (Sean@telegram) has joined ##systemau
2016-03-10 11:10:49 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-10 11:10:49 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-10 11:10:49 > Tom (Tom@telegram) has joined ##systemau
2016-03-10 11:10:49 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-10 11:10:49 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-10 11:10:49 NicholasB [10:03:19] ahhhhh
2016-03-10 11:10:49 NicholasB [10:03:20] no.
2016-03-10 11:10:49 NicholasB [10:03:22] i haven't
2016-03-10 11:11:00 - Mode ##systemau [+t]
2016-03-10 11:18:12 @fsociety digital ocean is on its last legs for me
2016-03-10 11:18:21 @fsociety its nearly been 48 hours and one of my instances is still down
2016-03-10 11:18:22 NicholasB why
2016-03-10 11:18:29 @fsociety wont restore, wont boot, wont do anything
2016-03-10 11:18:33 NicholasB really? that's odd
2016-03-10 11:19:02 @fsociety yeah i know, sent support queries.. and they said a restore wasn't successful. which i didn't do at the time. and they said try and restore - and none of my backup images will restore
2016-03-10 11:19:03 NicholasB have you tried loading the snapshot on a new instance just to spin it up?
2016-03-10 11:19:34 @fsociety no, because that will just cost me more money
2016-03-10 11:19:49 @fsociety even if i add it and delete it will charge me for it
2016-03-10 11:20:12 NicholasB only for like 15 cents though.
2016-03-10 11:21:26 @fsociety is that all it is
2016-03-10 11:21:44 @fsociety guess i can try.. later
2016-03-10 11:21:46 NicholasB yeah they don't charge a fee to start it
2016-03-10 11:21:53 NicholasB just per hour
2016-03-10 11:21:55 @fsociety don't currently have the time to get nitty gritty currently
2016-03-10 11:23:04 @fsociety alright fuck it, creating one
2016-03-10 11:24:51 NicholasB good man.
2016-03-10 12:18:23 @fsociety well that seemed to do it, but now i have to wait for the DNS to propogate to that new IP address
2016-03-10 12:18:30 @fsociety waits impatiently
2016-03-10 12:18:37 @fsociety only reason, is because of the SSL cert
2016-03-10 12:23:50 NicholasB ahhh. glad i could help.
2016-03-10 12:24:06 @fsociety thank ya
2016-03-10 12:24:24 @fsociety never thought of doing that
2016-03-10 12:24:31 @fsociety i wish digitalocean's support just said that to me
2016-03-10 12:26:46 NicholasB hahaha
2016-03-10 12:26:51 NicholasB arts student logic.
2016-03-10 12:26:57 NicholasB that's the difference.
2016-03-10 12:27:46 @fsociety you do realise i was an arts student. hahaha
2016-03-10 12:28:46 NicholasB phh not a real one. you have a job now.
2016-03-10 12:28:52 NicholasB like a real job
2016-03-10 12:31:16 @fsociety hahahaha
2016-03-10 12:31:23 @fsociety so do you
2016-03-10 12:33:44 NicholasB i have an arts students jon.
2016-03-10 12:33:49 NicholasB job
2016-03-10 12:33:59 NicholasB talk in circles
2016-03-10 12:34:16 NicholasB fluff single sentences to essays
2016-03-10 12:40:43 @fsociety hahahaha
2016-03-10 12:40:49 @fsociety i guess so
2016-03-10 12:41:06 @fsociety though i joined a new band last week. you'd be proud.. more garage punk like stuff
2016-03-10 12:41:10 @fsociety i did it.. for you
2016-03-10 12:41:12 @fsociety ;)
2016-03-10 12:42:28 NicholasB oh nice.
2016-03-10 12:42:32 NicholasB have a name yet?
2016-03-10 12:43:50 @fsociety not as of yet, but they had a ton of material.. they were happy with my playing.. it was more like ooo... we have a drummer with prog chops playing punk this sounds interesting :)
2016-03-10 12:44:09 @fsociety but a rehearsal next week, i'll keep you posted on it tho9ugh
2016-03-10 12:45:44 NicholasB sweet.
2016-03-10 12:46:20 NicholasB i need to play soon. might do something this weekend with @Jimmy3600 depending on how we wake Saturday after a show.,
2016-03-10 12:46:52 @fsociety its always the way.. on a shit note.. working from home today and realised i left my vape charger on my desk at work
2016-03-10 12:46:53 @fsociety siiggghhh
2016-03-10 12:47:35 NicholasB didn't i send you two?
2016-03-10 12:49:54 @fsociety i only saw one.. i double check
2016-03-10 12:50:17 @fsociety nope only one
2016-03-10 12:50:18 @fsociety its okay
2016-03-10 12:50:25 NicholasB when i get to the post office and send the other juices ill chuck another in.
2016-03-10 12:50:48 @fsociety ahh cheers. its worked wonders. didn't stop me from being irritable in the first week though
2016-03-10 12:50:50 @fsociety now its better
2016-03-10 12:51:09 NicholasB ha. i takes a little.
2016-03-10 12:51:34 @fsociety as i discovered
2016-03-10 12:51:52 @fsociety and as you did, for the first few days i just kept puffing awway
2016-03-10 12:51:56 @fsociety now its like whenever i need it
2016-03-10 15:47:58 EricT <br><img id="4"><br>O YEAH!
2016-03-10 21:10:00 > fsociety (whoami@localhost) has joined ##systemau
2016-03-10 21:10:00 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-10 21:10:01 < root has kicked fsociety (Cleaning up channel)
2016-03-10 21:10:01 > fsociety (whoami@localhost) has joined ##systemau
2016-03-10 21:10:01 - Topic for ##systemau is "#systemau"
2016-03-10 21:10:01 - Topic set by root (root@localhost) on Thu, 10 Mar 2016 21:10:01
2016-03-10 21:10:01 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-10 21:10:01 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-10 21:10:01 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-10 21:10:01 > Adam (Adam@telegram) has joined ##systemau
2016-03-10 21:10:01 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-10 21:10:01 > Alex (Alex@telegram) has joined ##systemau
2016-03-10 21:10:01 > Amir (Amir@telegram) has joined ##systemau
2016-03-10 21:10:01 > Angela (Angela@telegram) has joined ##systemau
2016-03-10 21:10:01 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-10 21:10:01 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-10 21:10:01 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-10 21:10:01 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-10 21:10:01 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-10 21:10:01 > emb (emb@telegram) has joined ##systemau
2016-03-10 21:10:01 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-10 21:10:01 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-10 21:10:01 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-10 21:10:01 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-10 21:10:01 > Joe (Joe@telegram) has joined ##systemau
2016-03-10 21:10:01 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-10 21:10:01 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-10 21:10:01 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-10 21:10:01 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-10 21:10:01 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-10 21:10:01 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-10 21:10:01 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-10 21:10:01 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-10 21:10:01 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-10 21:10:01 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-10 21:10:01 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-10 21:10:01 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-10 21:10:01 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-10 21:10:01 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-10 21:10:01 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-10 21:10:01 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-10 21:10:01 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-10 21:10:01 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-10 21:10:01 > Sean (Sean@telegram) has joined ##systemau
2016-03-10 21:10:01 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-10 21:10:01 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-10 21:10:01 > Tom (Tom@telegram) has joined ##systemau
2016-03-10 21:10:01 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-10 21:10:01 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-10 21:10:01 Moritz [18:22:35] https://www.youtube.com/watch?v=gjDK4OiuIfk
2016-03-10 21:10:01 PaulGleeson [18:34:13] I'm more of a vultr man
2016-03-10 21:10:01 NicholasB [18:34:28] Still recording tonight though day is still enroute. Prob get started around 8 ish.
2016-03-10 21:10:01 NicholasB [18:36:55] Live stream will be announced.
2016-03-10 21:10:01 Mathias [18:38:14] Cool, I hope I can make it.
2016-03-10 21:10:01 NicholasB [18:39:13] hahah. sorry if you cant. we will still be releasing on monday. but if its a nice easy edit i boost an early copy up her for you fanbois. :P
2016-03-10 21:10:01 Mathias [18:49:56] So, 8 ish means in ~ 1h? Damn time zones.
2016-03-10 21:10:01 NicholasB [18:52:14] yeah about that. even if we aren't up yet ill be playing tracks on the prestream
2016-03-10 21:10:01 Mathias [18:53:16] Thanks, man.
2016-03-10 21:10:01 NottheOtherDan [19:51:41] Hi all. Live stream will be up in a minute or s.
2016-03-10 21:10:01 NottheOtherDan [19:51:43] o
2016-03-10 21:10:01 NottheOtherDan [19:51:45] .
2016-03-10 21:10:01 Mathias [19:59:11] Excuse my ignorance, but I didn't manage to find a link or something on your site. Is there a different place to look at(other than systemau.net.au)?
2016-03-10 21:10:01 NottheOtherDan [20:01:49] systemau.net.au:8000/stream
2016-03-10 21:10:01 NottheOtherDan [20:01:53] :)
2016-03-10 21:10:01 Mathias [20:02:55] Thanks
2016-03-10 21:10:01 Mathias [20:03:10] And sorry.
2016-03-10 21:10:01 NicholasB [20:04:35] never apolagise ;)
2016-03-10 21:10:01 NottheOtherDan [20:04:45] No, Nick's sorry.
2016-03-10 21:10:01 Mathias [20:06:09] It reminded me of work...There is always at least one dick asking.
2016-03-10 21:10:01 Mathias [20:07:45] But now I got some music that tells me to go easy.
2016-03-10 21:10:01 Moritz [20:13:31] Telegram 3.6 is finally in Fdroid
2016-03-10 21:10:01 Mathias [20:20:04] Ever tested Signal?
2016-03-10 21:10:01 Moritz [20:20:19] No.
2016-03-10 21:10:01 Alex [20:20:26] Yay for Signal! :)
2016-03-10 21:10:01 Mathias [20:20:52] It does not seem to be in Fdroid.
2016-03-10 21:10:01 Mathias [20:21:02] Although it is FOSS.
2016-03-10 21:10:01 Alex [20:22:42] The Signal Devs don't like the FDroid model I think. And they use Google Services to send their messages AFAIK.
2016-03-10 21:10:01 Alex [20:23:26] Has been lots of discussions about that... unfortunately its unlikely to ever show up in FDroid.
2016-03-10 21:10:01 Mathias [20:24:00] Usability wise it seems like a good app. It was easier to switch people to use Signal than with Telegram.
2016-03-10 21:10:01 Mathias [20:25:11] That sucks. Maybe I should advertise Telegram instead of Signal.
2016-03-10 21:10:01 PaulGleeson [20:26:21] I've got around 2 dozen people to jump to telegram
2016-03-10 21:10:01 Mathias [20:28:04] 🤔 Should I point people over to you in order to convince them?
2016-03-10 21:10:01 Moritz [20:28:40] Just discovered that if you donate 13$ to Ubuntu Mate you become the "unlucky patreon".
2016-03-10 21:10:01 Moritz [20:28:40] https://www.patreon.com/ubuntu_mate?ty=h
2016-03-10 21:10:01 PaulGleeson [20:28:56] Do your people like gifs and stickers?
2016-03-10 21:10:01 Mathias [20:29:20] They like Whatsapp and Hike...
2016-03-10 21:10:01 PaulGleeson [20:30:04] I haven't met anyone who actually likes whatsapp
2016-03-10 21:10:01 PaulGleeson [20:30:34] People seem to tolerate it because all there friends have it
2016-03-10 21:10:01 Mathias [20:32:10] They would never admit that.
2016-03-10 21:10:03 NottheOtherDan [20:32:30] <br><img id="4">
2016-03-10 21:10:03 Moritz [20:33:18] So much better to recommend for noobs than dd:
2016-03-10 21:10:03 Moritz [20:33:18] http://www.webupd8.org/2016/03/create-bootable-usb-stick-on-ubuntu.html
2016-03-10 21:10:03 NotDan [20:36:15] terrifying
2016-03-10 21:10:03 EricT [20:36:46] What is this madness?
2016-03-10 21:10:03 EricT [20:36:59] this isn't a podcast!
2016-03-10 21:10:03 NotDan [20:37:33] Talk like a normal fucker Dan
2016-03-10 21:10:03 EricT [20:37:44] OK clarified!
2016-03-10 21:10:03 EricT [20:38:10] Pucker
2016-03-10 21:10:03 EricT [20:38:13] Fucka
2016-03-10 21:10:03 EricT [20:39:04] Was on an audible of the 3-body problem, good book!
2016-03-10 21:10:03 EricT [20:39:17] Ive paused it for you!
2016-03-10 21:10:03 EricT [20:41:35] or was it 7?
2016-03-10 21:10:03 EricT [20:41:42] 6 ribbons
2016-03-10 21:10:03 NotDan [20:42:24] What do you think of Computer Security: Principles and Practices 3rd Ed., Eric?
2016-03-10 21:10:03 Moritz [20:43:15] Telegram neeeds sticky posts. For the stream URL. Etc.
2016-03-10 21:10:03 EricT [20:43:54] It sounds familiar, @mindtoker have I read that?
2016-03-10 21:10:03 NotDan [20:44:21] One of the books from my Comp Sci course this semester; thought you may have crossed it in your tutor travels
2016-03-10 21:10:03 NotDan [20:44:29] Published by Pearson and all
2016-03-10 21:10:03 EricT [20:45:36] Security text are very subjective, core is always the same
2016-03-10 21:10:03 EricT [20:45:54] best practise is King!
2016-03-10 21:10:03 NotDan [20:46:00] For sure. The whole 3 / 5 practices debate
2016-03-10 21:10:03 NotDan [20:46:10] *3 or 5
2016-03-10 21:10:03 NotDan [20:46:22] It's interesting though
2016-03-10 21:10:03 NotDan [20:46:38] I was going to take a Software Engineering major, but Security seems so interesting
2016-03-10 21:10:03 EricT [20:47:31] Ground up is always best, as soon as you retro-fit or allow plug-ins & dll shit gets compromised, always!
2016-03-10 21:10:03 NotDan [20:47:42] yeah
2016-03-10 21:10:03 EricT [20:48:46] golden shower technology!
2016-03-10 21:10:03 EricT [20:48:52] piss weak
2016-03-10 21:10:03 NotDan [20:48:53] Milhouse brand
2016-03-10 21:10:03 Moritz [20:51:15] Guys were do i file translation bugs for Mate Tweak?
2016-03-10 21:10:03 EricT [20:52:32] Onn ya Mate!
2016-03-10 21:10:03 EricT [20:54:57] Nah, waiting for a BIG discount
2016-03-10 21:10:03 EricT [20:55:15] 50% off or GTFO!
2016-03-10 21:10:03 EricT [20:55:45] Hansom-ware?
2016-03-10 21:10:03 EricT [20:55:55] beautifies your files
2016-03-10 21:10:03 EricT [20:57:39] Is Soma like insomnia, in space?
2016-03-10 21:10:03 NotDan [20:58:55] THX sound
2016-03-10 21:10:03 EricT [20:59:03] Linux Munt, for NZers
2016-03-10 21:10:03 NotDan [20:59:51] DRM being proposed in the HTML standard
2016-03-10 21:10:03 EricT [21:04:10] Suprised 100 people in SA have computers!
2016-03-10 21:10:03 EricT [21:04:14] lol
2016-03-10 21:10:03 NotDan [21:04:44] I am shocked. Shocked, I tell you
2016-03-10 21:10:03 EricT [21:08:36] Censless
2016-03-10 21:10:14 - Mode ##systemau [+t]
2016-03-10 21:12:34 NottheOtherDan #1minuteleft
2016-03-10 21:13:17 EricT elevator music
2016-03-10 21:17:18 EricT No Pi when sniffing Petrol, kids!
2016-03-10 21:18:27 EricT The Cardassian of IT
2016-03-10 21:18:59 EricT The Kardassian of IT, even
2016-03-10 21:21:12 EricT Stalker R Us...https://pipl.com/search/?q=Nicholas+Betson&l=&sloc=&in=5
2016-03-10 21:30:38 NotDan Google Plus, Facebook, Twitter
2016-03-10 21:30:42 NotDan Who gives a shit
2016-03-10 21:30:47 NotDan lol :)
2016-03-10 21:30:57 Moritz CSD applications have no shadows in Ubuntu Martin
2016-03-10 21:31:48 NotDan If the number of people following something determines how genuine the argument is... well
2016-03-10 21:32:38 NotDan "Facebook is perfect" - @enjayembee
2016-03-10 21:35:16 NottheOtherDan "I ❤️ Mark Zuckerberg" - @enjayembee
2016-03-10 21:36:02 NicholasB Misquoted again.
2016-03-10 21:37:08 EricT #systemau sticker on The Oculus Rift
2016-03-10 21:39:15 EricT Outlook Linux version
2016-03-10 21:44:18 EricT need more Diffie-Hellman!
2016-03-10 21:46:15 EricT she sounds HOT!
2016-03-10 21:48:31 NotDan "and more" is my favourity phrase lately
2016-03-10 21:48:37 NotDan *favourite
2016-03-10 21:52:30 NotDan mostly
2016-03-10 21:53:40 EricT DontForget "MS SQL Linux" guys! its Big News
2016-03-10 21:54:24 NotDan https://www.youtube.com/watch?v=M8-vje-bq9c
2016-03-10 21:55:00 EricT http://www.theregister.co.uk/2016/03/07/microsoft_sql_server_linux
2016-03-10 21:56:18 NotDan news.com.au - fucking shit news
2016-03-10 21:56:37 NotDan owned by Rupert Murdoch
2016-03-10 21:57:17 EricT I use "Bye Rupert 1.0.2" extention
2016-03-10 22:00:17 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < NickWurlod (Nick_Wurlod@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Mathias (Mathias@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < CarlosLopez (Carlos_Lopez@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Alex (Alex@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-10 22:00:17 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-11 02:51:37 - irc: disconnected from server
2016-03-11 02:51:57 > fsociety (whoami@localhost) has joined ##systemau
2016-03-11 02:51:57 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-11 03:21:37 < root has kicked fsociety (Cleaning up channel)
2016-03-11 03:21:37 > fsociety (whoami@localhost) has joined ##systemau
2016-03-11 03:21:37 - Topic for ##systemau is "#systemau"
2016-03-11 03:21:37 - Topic set by root (root@localhost) on Fri, 11 Mar 2016 03:21:37
2016-03-11 03:21:37 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-11 03:21:37 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-11 03:21:37 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-11 03:21:37 > Adam (Adam@telegram) has joined ##systemau
2016-03-11 03:21:37 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-11 03:21:37 > Alex (Alex@telegram) has joined ##systemau
2016-03-11 03:21:37 > Amir (Amir@telegram) has joined ##systemau
2016-03-11 03:21:37 > Angela (Angela@telegram) has joined ##systemau
2016-03-11 03:21:37 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-11 03:21:37 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-11 03:21:37 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-11 03:21:37 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-11 03:21:37 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-11 03:21:37 > emb (emb@telegram) has joined ##systemau
2016-03-11 03:21:37 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-11 03:21:37 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-11 03:21:37 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-11 03:21:37 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-11 03:21:37 > Joe (Joe@telegram) has joined ##systemau
2016-03-11 03:21:37 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-11 03:21:37 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-11 03:21:37 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-11 03:21:37 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-11 03:21:37 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-11 03:21:37 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-11 03:21:37 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-11 03:21:37 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-11 03:21:37 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-11 03:21:37 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-11 03:21:37 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-11 03:21:37 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-11 03:21:37 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-11 03:21:37 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-11 03:21:37 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-11 03:21:37 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-11 03:21:37 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-11 03:21:37 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-11 03:21:37 > Sean (Sean@telegram) has joined ##systemau
2016-03-11 03:21:37 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-11 03:21:37 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-11 03:21:37 > Tom (Tom@telegram) has joined ##systemau
2016-03-11 03:21:37 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-11 03:21:37 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-11 03:21:37 Moritz [02:53:58] https://www.youtube.com/watch?v=tEYCjJqr21A
2016-03-11 04:33:22 Sean LibreSignal is if you add the repository, but you still need Google Services. I'm trying to de-googlefy as much as I can o had to give up Signal. I liked it b/c I could call and text privately.
2016-03-11 05:28:41 Mathias Thanks for the info. I am gonna look into it and may also give up Signal as soon as I found replacements for the other services-needing-apps.
2016-03-11 06:30:00 Joe <br><img id="4">
2016-03-11 06:30:05 Joe <br><img id="5">
2016-03-11 06:30:05 Joe <br><img id="6">
2016-03-11 06:30:08 Joe <br><img id="7">
2016-03-11 06:30:12 Joe <br><img id="8">
2016-03-11 06:31:18 MartinWimpress @JoeRessington Man, you were really looking for that opportunity 😀
2016-03-11 06:34:18 Joe I wasn't
2016-03-11 06:34:31 Joe Anyway, time to watch the bear fucking movie
2016-03-11 06:35:16 Mathias Now I feel so used...
2016-03-11 06:35:39 Mathias Used for humor.
2016-03-11 06:36:07 Mathias Have fun watching the movie.
2016-03-11 07:20:56 Joe <br><img id="9">
2016-03-11 07:20:56 Joe Debian!
2016-03-11 07:22:36 Sean Good job @JoeRess !
2016-03-11 07:30:11 NicholasB for the first time i get to use linux at work.
2016-03-11 07:30:17 NicholasB i brought my laptop in
2016-03-11 07:30:29 NicholasB and am just logging in to email.
2016-03-11 07:30:33 NicholasB and tethering.
2016-03-11 07:30:35 NicholasB YAY!
2016-03-11 07:31:28 PaulGleeson sorry*
2016-03-11 07:33:33 PaulGleeson I'm not worry
2016-03-11 09:05:36 @fsociety You must feel special using Linux at work.. Hahaha.. I remember when I first did that.. boy was it exciting.. no I just want a new work computer
2016-03-11 09:17:58 NicholasB i only did it because the boss wanted me to draw a floor plan for the office and i can't install software and all the html5 apps wont work in ie,
2016-03-11 09:29:38 @fsociety shudder
2016-03-11 09:29:41 @fsociety ..ie
2016-03-11 09:29:52 @fsociety so you guys use even though its not being supported anymore.. ouch
2016-03-11 09:35:39 NicholasB we still use xp boss
2016-03-11 09:35:49 NicholasB we still emulate pdp11s in some areas
2016-03-11 09:36:35 NicholasB i used to have to input data in to a program that was written in swedish pascal in a terminal to a pdp11 emulator upstairs
2016-03-11 09:37:03 NicholasB to upload to the other machine i had to mount usb drives to emulate the old washine machine 10mb platter disks
2016-03-11 09:37:34 NicholasB for 4 year my only printer was a3 tractor feed
2016-03-11 09:43:06 @fsociety security holes ahoy in your workplace
2016-03-11 09:43:23 @fsociety i'd imagine it would be quite easy to hack your guys systems. haha
2016-03-11 09:45:13 Sean Gotta love businesses that are keeping up with the times :)
2016-03-11 09:49:50 NicholasB not the pdp11 that was isolated to about 20 computers in the same building and those pcs had no external network access
2016-03-11 09:50:07 NicholasB the xp ones? ehhh. they are email and document editors
2016-03-11 09:50:15 NicholasB not much to hack.
2016-03-11 09:51:42 @fsociety so they are connected online
2016-03-11 09:54:34 NicholasB ? the xps
2016-03-11 10:01:40 Joe Another day, another horror
2016-03-11 10:09:45 NicholasB what is the horror today. also.. i'm agree with Jesse. I wish australia still had a tv license.
2016-03-11 10:10:00 NicholasB :D
2016-03-11 10:14:53 @fsociety australia needs to do a new referendum on free to air broadcast rules
2016-03-11 10:14:55 @fsociety and quite desperately
2016-03-11 10:15:19 NicholasB no we dont. it will just favour corporations
2016-03-11 10:15:28 @fsociety we need HD
2016-03-11 10:15:36 @fsociety on primary channels
2016-03-11 10:15:50 NicholasB we can have hd on primary channels
2016-03-11 10:15:58 NicholasB its up to the provider isnt it
2016-03-11 10:16:14 NicholasB they have their bandwith and they choose to lower quality for more stations
2016-03-11 10:16:16 @fsociety no it isn't
2016-03-11 10:16:28 @fsociety the old 1992 broadcast law states that the primary channel must be in SD
2016-03-11 10:16:40 @fsociety which is why all networks have HD as a secondary channel
2016-03-11 10:16:55 NicholasB ahh/
2016-03-11 10:17:03 NicholasB i really dont care.
2016-03-11 10:17:09 NicholasB who watches tv?
2016-03-11 10:17:17 @fsociety the broadcast law just needs to be updated. and we have the bandwidth to do it.. we just need to put all main shows on the HD. I only care for people who watch TV - and well the ABC
2016-03-11 10:17:18 NicholasB i plug in my aerial once a yeat
2016-03-11 10:17:20 NicholasB year
2016-03-11 10:17:25 @fsociety I want my general ABC to be in HD
2016-03-11 10:17:26 NicholasB for eurovision
2016-03-11 10:18:08 @fsociety i think thats why I want, I don't care for the commercial networks. But I'd love to see ABC broadcast its original content in HD
2016-03-11 10:18:11 @fsociety at least online..
2016-03-11 10:18:53 NicholasB i agree their online quality is bad
2016-03-11 10:18:59 NicholasB id be happy with 720
2016-03-11 10:23:14 Joe https://marmadukedando.bandcamp.com/track/if-this-is-civilisation
2016-03-11 10:24:01 TristanJames The only reason I still torrent Doctor Who is because iview is such shit quality.
2016-03-11 10:24:21 TristanJames But sometimes i play it on iview and turn the tv off just so abc get the numbers
2016-03-11 10:25:29 NicholasB its weird i remeber micaleff saying on 774 how iview numbers dont count as ratings.
2016-03-11 10:25:37 NicholasB at this point in time. \
2016-03-11 10:25:52 TristanJames Maybe not in ratings, but they still keep track of views
2016-03-11 10:26:31 TristanJames also, iview on chromecast is shit, always buffering
2016-03-11 10:27:44 NottheOtherDan You don't listen to our podcast?
2016-03-11 10:28:07 NicholasB no. he just pretends for the tapes
2016-03-11 10:29:49 TristanJames i seem to remember you mentioning it. In fact, I think that's why I tried using iview on the chromecast, to see if my experience was the same
2016-03-11 10:30:18 AlanPope Using Linux at work?!?!!!
2016-03-11 10:31:41 NicholasB yeah. i only need email today. so logged in to web client.
2016-03-11 10:31:45 NicholasB its great!
2016-03-11 10:31:53 NicholasB using mobile internet
2016-03-11 10:31:57 NicholasB can go anywhere!
2016-03-11 10:34:35 NottheOtherDan Hey @popeydc, will we be seeing an UbuntuBudgie with 16.04?
2016-03-11 10:34:37 NicholasB you must ride a fixie with all that back peddling. ;)
2016-03-11 10:34:44 NottheOtherDan BudgBuntu
2016-03-11 10:35:13 TristanJames <br><img id="10">
2016-03-11 10:35:13 TristanJames oops
2016-03-11 10:35:33 TristanJames i get confused between the web app and the desktop app sometimes
2016-03-11 10:41:16 AlanPope Nah. Way too late for that
2016-03-11 10:41:34 AlanPope And would need buy in from ikey
2016-03-11 10:42:01 AlanPope I don't think he really wants to make effort to make that happen
2016-03-11 10:42:15 AlanPope Even if it gave him 10-100x users
2016-03-11 11:01:20 @fsociety Regarding ABC that might change since because of the budget cuts they are concentrating on the online presence more rather than broadcast. guess its cheaper to deal with more bandwidth on a digital sense rather than broadcast uhf waves.
2016-03-11 11:04:03 TristanJames We might have to pay for the privilege though
2016-03-11 11:07:15 NicholasB it shouldnt be cheper. The spectrum is allocated.
2016-03-11 11:08:17 NicholasB which is why we should never have gotten rid of tv licences. and this whole fucking cutting the budget wouldnt be an issue.
2016-03-11 11:09:37 NicholasB $120 a year for 15000000 premises gives the ABC 1.8 trillion a year
2016-03-11 11:10:18 TristanJames Australia[edit]
2016-03-11 11:10:18 TristanJames Radio licence fees were introduced in Australia in the 1920s to fund the first privately owned broadcasters, which were not permitted to sell advertising. With the formation of the government-owned Australian Broadcasting Commission in 1932 the licence fees were used to fund ABC broadcasts while the privately owned stations were permitted to seek revenue from advertising and sponsorship. Television licence fees were also
2016-03-11 11:10:18 TristanJames introduced in 1956 when the ABC began TV transmissions. All licence fees were abolished in 1974 by the Australian Labor Party government led by Gough Whitlam on the basis that the near-universality of television and radio services meant that public funding was a fairer method of providing revenue for government-owned radio and television broadcasters.[88] The ABC has since then been funded by government grants, now
2016-03-11 11:10:18 TristanJames totalling around A$1.13 billion a year, and its own commercial activities (merchandising, overseas sale of programmes, etc.).
2016-03-11 11:10:18 TristanJames
2016-03-11 11:10:18 TristanJames In 1964 the Australian Television Licence cost £6; the fine for not having a licence was £100. The licence was issued on a punch card.
2016-03-11 11:11:22 @fsociety ooo. punch card
2016-03-11 11:11:29 @fsociety can i get my licence on laser disc?
2016-03-11 11:13:25 @fsociety talking about legislation i'm curious as to see what australia does about vapourises... clearly the tobacco industry is cracking the shits over it.. lost profits for them
2016-03-11 11:13:55 EricT Puchcard readers for the toll roads, great idea!
2016-03-11 11:14:33 NicholasB only some. Philip Morris owns some Vape brands in the USA
2016-03-11 11:15:22 EricT More like the gov loosing taxes from smokes
2016-03-11 11:15:50 NicholasB i wonder how much you'd have to grow for one person.
2016-03-11 11:16:09 NicholasB i mean its illegal. but if one plant lasted a year.
2016-03-11 11:23:05 @fsociety our government is greedy, how much do they need to tax cigarettes. lets face it - the lower class are the ones that smoke the most.
2016-03-11 11:25:05 NicholasB its an easy tax. the people who complain are the ones who have no voice.
2016-03-11 11:28:49 TristanJames I've seen a tobacco plant for sale at the lilydale herb farm
2016-03-11 11:29:04 NicholasB really. they are pretty regulated.
2016-03-11 11:29:10 NicholasB harsher fines than weed
2016-03-11 11:29:16 TristanJames To be used as a 'weed killer'
2016-03-11 11:36:06 TristanJames yeah, i was surprised when i saw it. it was about 3 years ago. they were also selling dandelion. it looked like a weed in a pot
2016-03-11 12:59:54 NottheOtherDan <br><img id="11">
2016-03-11 13:21:26 NottheOtherDan https://www.youtube.com/watch?v=_I7zEpzFa1g
2016-03-11 13:41:50 TristanJames I'm starting to get pumped for tomorrow. Have you been booze shopping yet @elChupaNibre ?
2016-03-11 13:43:28 NottheOtherDan So pumped. Yeah, all sorted. Slab of mountain goat summer ale. Slab of mountain goat fancy pants. Bottle of finlandia. Getting antsy.
2016-03-11 13:51:44 @fsociety i've been looking at static page generators today that connect to a git repo
2016-03-11 13:51:57 @fsociety so much more secure than any wordpress ;)
2016-03-11 13:55:52 TristanJames More fancy than me. I'm planning on a cube of VB or something and cider of some sort.
2016-03-11 13:57:49 @fsociety haha. my evening tonight will probably consist of video games and catching up with my mate jason (who was at the live systemau poddy)
2016-03-11 13:59:27 NottheOtherDan It's a special occasion. I don't mind getting a lil' bit fancy.
2016-03-11 13:59:49 @fsociety Haha.. i'm too lazy to get fancy
2016-03-11 14:00:22 NottheOtherDan The choice of alcohol is about as fancy as I get @F_s0c1ety
2016-03-11 14:01:44 @fsociety i've been playing around with static generated git pages
2016-03-11 14:01:49 @fsociety https://fsociety.info
2016-03-11 14:02:21 NottheOtherDan Bookmarked.
2016-03-11 14:03:33 @fsociety im trying to make a small minimalistic website for myself - i guess to promote skills, resume, etc
2016-03-11 14:04:04 NottheOtherDan Nice.
2016-03-11 14:04:07 NottheOtherDan https://www.youtube.com/watch?v=Bif2q_Zo3-4
2016-03-11 14:09:57 NottheOtherDan https://www.youtube.com/watch?v=6_1NtSWhFFg
2016-03-11 14:25:51 NottheOtherDan [14:22:52] <br><img id="12">
2016-03-11 14:30:15 NottheOtherDan https://www.youtube.com/watch?v=93yOrb04Eao
2016-03-11 14:33:59 NottheOtherDan https://www.youtube.com/watch?v=wLD_avp7DHA&list=PLEmQxfuvC5LnoOYJ02vYgBbIkkUyAsjtm
2016-03-11 14:35:17 NicholasB [14:33:58] <br><img id="13">
2016-03-11 14:51:47 NottheOtherDan https://www.youtube.com/watch?v=Lwj5_SNWYc8&list=PLy-o-B2O5KJ251Ati5BhFu46-YsCda4_u
2016-03-11 14:55:14 NottheOtherDan https://www.youtube.com/watch?v=FwGtxcFvrgg
2016-03-11 14:55:40 NicholasB we've got a spam bot in here people.
2016-03-11 14:55:48 NottheOtherDan Where?
2016-03-11 14:55:53 NicholasB ohh
2016-03-11 14:55:54 NicholasB sorry
2016-03-11 14:55:57 NicholasB its not a bot
2016-03-11 14:55:58 NicholasB he spoke
2016-03-11 14:56:02 NottheOtherDan What?
2016-03-11 14:56:07 NottheOtherDan Why?
2016-03-11 14:56:10 NottheOtherDan When?
2016-03-11 14:56:13 NottheOtherDan How?
2016-03-11 14:56:57 NottheOtherDan I'm playing Golden Plains music because I'm excited for tomorrow.
2016-03-11 14:58:21 NottheOtherDan https://www.youtube.com/watch?v=qXg523WP3HY
2016-03-11 15:07:34 NottheOtherDan https://www.youtube.com/watch?v=Z3lCYGSzVMU
2016-03-11 15:08:52 NicholasB i hope you never get excited for love making. youll just post pornhub links
2016-03-11 15:15:14 NottheOtherDan Would I?
2016-03-11 15:16:20 NicholasB Yes
2016-03-11 15:16:25 NottheOtherDan oh.
2016-03-11 15:17:19 NottheOtherDan https://www.youtube.com/watch?v=ns34EzZrRuY
2016-03-11 15:19:26 NottheOtherDan https://www.youtube.com/watch?v=kb12JwIRFCE
2016-03-11 15:21:29 NottheOtherDan https://www.youtube.com/watch?v=GSnAtmj_HPs
2016-03-11 15:24:53 NottheOtherDan https://www.youtube.com/watch?v=jJXgNf-vDTY
2016-03-11 16:40:11 TristanJames Who are you most pumped to see @elChupaNibre ?
2016-03-11 16:42:49 NottheOtherDan ECSR. HTRK. Sean Kuti. CW. Songhoy Blues. Sadar Bahar. Freddie Gibbs. Sampa The Great.
2016-03-11 16:43:10 NottheOtherDan Built to Spill
2016-03-11 16:43:18 NottheOtherDan Buzzcocks
2016-03-11 16:43:39 NottheOtherDan Violent Femmes
2016-03-11 16:43:47 NottheOtherDan You?
2016-03-11 16:43:54 NottheOtherDan @dj_salinger
2016-03-11 16:44:12 TristanJames that's a long list
2016-03-11 16:44:30 TristanJames Buzzcockx, ECSR, Gold Class, No Zu
2016-03-11 16:44:51 NottheOtherDan I could've added more
2016-03-11 16:45:00 NottheOtherDan Do you know your shifts yet?
2016-03-11 16:45:26 NottheOtherDan Please tell me you're working bar at the pink flamingo...
2016-03-11 16:45:33 NottheOtherDan ;)
2016-03-11 16:47:00 TristanJames violent femmes will be ok i guess
2016-03-11 16:47:17 TristanJames nah, but if you want fish and chips for lunch on sunday i'll be there 10am-2pm
2016-03-11 16:47:40 TristanJames and if you're leaving the festival between 6.30am and 10.30am on monday you'll see me at reception
2016-03-11 16:47:56 NottheOtherDan Sweet! Good score.
2016-03-11 16:48:15 TristanJames i don't miss any good bands but i have to be up really early on monday morning
2016-03-11 16:48:43 NottheOtherDan Be up early monday? I plan to be...
2016-03-11 16:49:04 NottheOtherDan I love that they're going though till 7am this year!!!
2016-03-11 16:51:49 TristanJames I need to be able to drive myself home after my shift!
2016-03-11 16:52:47 NottheOtherDan Can you get arrested for drink driving if you're pushing your car?
2016-03-11 16:56:36 TristanJames haha
2016-03-11 16:57:31 NottheOtherDan asking for a friend
2016-03-11 16:59:16 TristanJames https://twitter.com/MontagueStBridg
2016-03-11 17:54:05 EricT WTF is this telegram chatter all about? Party?
2016-03-11 17:59:08 NottheOtherDan http://2016.goldenplains.com.au
2016-03-11 18:02:28 TristanJames Party time!
2016-03-11 18:03:18 NottheOtherDan Excellent!
2016-03-11 20:06:59 LewisCividin Are the femmes still touring?
2016-03-11 20:12:35 TristanJames @elChupaNibre and I are seeing them tomorrow night!
2016-03-11 20:15:44 NottheOtherDan Indeed!
2016-03-11 20:31:44 EricT Trying out new Fedora 24 Wallpaper!
2016-03-11 20:31:44 EricT http://i.imgur.com/cLCYWDy.jpg
2016-03-11 20:40:35 TristanJames <br><img id="14">
2016-03-11 20:42:24 Alex https://m.xkcd.com/1654/
2016-03-11 20:53:43 LewisCividin nice!
2016-03-11 21:07:19 NotDan 👍
2016-03-11 21:07:32 NotDan higher res please
2016-03-11 21:07:45 NotDan @kloinka
2016-03-11 21:09:03 NotDan https://www.youtube.com/watch?v=O52jAYa4Pm8
2016-03-11 21:22:14 NottheOtherDan Psycho chicken, cous cous hey?
2016-03-11 21:29:07 - irc: disconnected from server
2016-03-12 15:24:00 > fsociety (whoami@localhost) has joined ##systemau
2016-03-12 15:24:00 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-12 15:24:02 < root has kicked fsociety (Cleaning up channel)
2016-03-12 15:24:02 > fsociety (whoami@localhost) has joined ##systemau
2016-03-12 15:24:02 - Topic for ##systemau is "#systemau"
2016-03-12 15:24:02 - Topic set by root (root@localhost) on Sat, 12 Mar 2016 15:24:02
2016-03-12 15:24:02 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-12 15:24:02 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-12 15:24:02 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-12 15:24:02 > Adam (Adam@telegram) has joined ##systemau
2016-03-12 15:24:02 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-12 15:24:02 > Alex (Alex@telegram) has joined ##systemau
2016-03-12 15:24:02 > Amir (Amir@telegram) has joined ##systemau
2016-03-12 15:24:02 > Angela (Angela@telegram) has joined ##systemau
2016-03-12 15:24:02 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-12 15:24:02 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-12 15:24:02 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-12 15:24:02 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-12 15:24:02 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-12 15:24:02 > emb (emb@telegram) has joined ##systemau
2016-03-12 15:24:02 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-12 15:24:02 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-12 15:24:02 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-12 15:24:02 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-12 15:24:02 > Joe (Joe@telegram) has joined ##systemau
2016-03-12 15:24:02 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-12 15:24:02 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-12 15:24:02 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-12 15:24:02 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-12 15:24:02 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-12 15:24:02 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-12 15:24:02 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-12 15:24:02 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-12 15:24:02 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-12 15:24:02 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-12 15:24:02 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-12 15:24:02 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-12 15:24:02 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-12 15:24:02 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-12 15:24:02 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-12 15:24:02 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-12 15:24:02 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-12 15:24:02 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-12 15:24:02 > Sean (Sean@telegram) has joined ##systemau
2016-03-12 15:24:02 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-12 15:24:02 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-12 15:24:02 > Tom (Tom@telegram) has joined ##systemau
2016-03-12 15:24:02 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-12 15:24:02 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-12 15:24:02 EricT [2016-03-11 21:31:04] My Favourite band in my teens 😊, got 4 Albums....Vinyl even!
2016-03-12 15:24:02 EricT [2016-03-11 22:51:09] Too much Bourbon....!
2016-03-12 15:24:02 EricT [2016-03-11 22:52:45] Is not enough Bourbon!
2016-03-12 15:24:02 EricT [2016-03-11 22:54:41] Has anyone installed Linux on a Samsung 950 Pcie card? thi8nking of buying one!
2016-03-12 15:24:02 MartinWimpress [2016-03-11 22:59:55] @kloinka The nvme SSD?
2016-03-12 15:24:02 EricT [2016-03-11 23:00:06] yep!
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:00:16] Yes, I have one.
2016-03-12 15:24:02 EricT [2016-03-11 23:00:19] with a pcie adapter
2016-03-12 15:24:02 EricT [2016-03-11 23:00:23] nice!
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:00:42] I have the smaller variant for a nuc.
2016-03-12 15:24:02 EricT [2016-03-11 23:00:46] so fast! like a teenager in a brothe;
2016-03-12 15:24:02 EricT [2016-03-11 23:00:54] brothel*
2016-03-12 15:24:02 EricT [2016-03-11 23:00:56] lol
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:00:59] Yes, but their are caveats.
2016-03-12 15:24:02 EricT [2016-03-11 23:01:13] What r they?
2016-03-12 15:24:02 EricT [2016-03-11 23:01:43] Drunk typing...so much boubon!
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:01:58] Some are not recognised by grub and other disk utilies, so can't be used as a boot device and can't be used for more.
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:01:58] *mbr
2016-03-12 15:24:02 EricT [2016-03-11 23:02:17] MBr has to be on sata?
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:03:40] So, I have /boot and mbr on a sata ssd.
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:03:40] / on nvme
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:03:40] /home on remainder of sata ssd.
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:03:40] This is with 15.10
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:04:06] Not tried Arch, that may work now.
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:04:06] I installed this computer in November last year.
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:04:13] Boots in 1.05 seconds.
2016-03-12 15:24:02 EricT [2016-03-11 23:04:19] nice, thought I have to have an "exotic" boot
2016-03-12 15:24:02 EricT [2016-03-11 23:04:35] Orgasmic!
2016-03-12 15:24:02 MartinWimpress [2016-03-11 23:05:47] Yeah, it's pretty great. Mine has 1200MB/s write and 1500MB/s read performance. And yes, that is megabytes per second.
2016-03-12 15:24:02 EricT [2016-03-11 23:05:56] Thats it! getting one!
2016-03-12 15:24:02 EricT [2016-03-11 23:06:24] AU$260 for 256GB
2016-03-12 15:24:02 EricT [2016-03-11 23:10:21] Hopefully my MB with 4770K can support?
2016-03-12 15:24:02 EricT [2016-03-11 23:10:21] http://www.gigabyte.com.au/products/product-page.aspx?pid=4514#ov
2016-03-12 15:24:02 EricT [2016-03-11 23:23:44] maybe new MB with Sata 3 express? http://www.legitreviews.com/what-is-sata-express-and-why-it-matters_140093
2016-03-12 15:24:02 EricT [2016-03-11 23:28:31] r u confused?
2016-03-12 15:24:02 EricT [2016-03-11 23:28:37] lol
2016-03-12 15:24:02 PaulGleeson [2016-03-11 23:28:57] r u?
2016-03-12 15:24:02 EricT [2016-03-11 23:29:41] shit yeah!
2016-03-12 15:24:02 EricT [2016-03-11 23:29:58] too much bourbon!
2016-03-12 15:24:02 PaulGleeson [2016-03-11 23:47:00] U need more fam
2016-03-12 15:24:09 EricT [2016-03-11 23:49:38] <br><img id="4">
2016-03-12 15:24:09 EricT [2016-03-11 23:49:42] b4 , nope after~
2016-03-12 15:24:09 PaulGleeson [2016-03-11 23:53:11] Nah fam, u good, drink more
2016-03-12 15:24:09 EricT [2016-03-11 23:54:41] All gone 😞
2016-03-12 15:24:11 EricT [2016-03-11 23:54:42] <br><img id="5">
2016-03-12 15:24:11 PaulGleeson [2016-03-11 23:55:28] Good man fam
2016-03-12 15:24:11 EricT [2016-03-11 23:56:36] makes me sad 😞 no more booxw,,,,except for Vodaka,
2016-03-12 15:24:11 EricT [2016-03-11 23:56:45] booze*
2016-03-12 15:24:11 EricT [2016-03-11 23:58:56] So... @paul_gleeson how is the Nortnern Hemisphere going?
2016-03-12 15:24:11 PaulGleeson [2016-03-11 23:59:43] I just got "promoted"
2016-03-12 15:24:11 EricT [2016-03-11 23:59:57] Excellent!
2016-03-12 15:24:11 EricT [00:01:07] You realize that most people at work are are just crap? and faking it?
2016-03-12 15:24:11 PaulGleeson [00:01:14] I'm now a customer product specialize for a bit of malware remediation software
2016-03-12 15:24:11 PaulGleeson [00:01:22] Yeah I do and I'm one of them
2016-03-12 15:24:11 EricT [00:01:28] lol
2016-03-12 15:24:11 EricT [00:02:20] It's like the scariest thing... realiasng that moest people are just faking? ...lol
2016-03-12 15:24:11 PaulGleeson [00:03:22] No the scariest people are the ones who aren't faking
2016-03-12 15:24:11 EricT [00:07:54] theyre OK...they have no other skills!
2016-03-12 15:24:11 EricT [00:09:07] Wisdom is easy..... so just be cryptric! lol
2016-03-12 15:24:11 Alex [00:10:11] +1 Paul Gleeson :)
2016-03-12 15:24:11 EricT [00:15:28] I am Paul Gleeson : )
2016-03-12 15:24:11 Alex [00:19:58] (° ͜ °)
2016-03-12 15:24:11 EricT [00:24:58] (¯`•¸•´¯)
2016-03-12 15:24:11 EricT [00:26:12] (•ิ_•ิ\)
2016-03-12 15:24:11 Alex [00:29:58] ԅ(≖‿≖ԅ)
2016-03-12 15:24:11 EricT [00:31:52] (⊙▂⊙✖️ )
2016-03-12 15:24:11 EricT [00:32:19] (︶︹︺) 卐
2016-03-12 15:24:11 Alex [00:32:27] (͠◉_◉᷅ )
2016-03-12 15:24:11 EricT [00:32:37] lol
2016-03-12 15:24:11 EricT [00:33:09] 700ml of bourbon
2016-03-12 15:24:11 Alex [00:33:27] 👏
2016-03-12 15:24:11 Alex [00:34:04] That a respectable amount of bourbon.
2016-03-12 15:24:11 EricT [00:34:21] what the fuck is that?
2016-03-12 15:24:11 EricT [00:35:36] watching 1:000am music videos, fux your head up! lol
2016-03-12 15:24:11 PaulGleeson [01:06:25] Lads there giving out free scones in work. My weekend is made.
2016-03-12 15:24:11 PaulGleeson [03:11:44] Did you ever get to view that giant gif
2016-03-12 15:24:11 Alex [03:13:11] Yes, it was awesome!
2016-03-12 15:24:11 Alex [03:13:23] ;)
2016-03-12 15:24:11 LewisCividin [09:44:05] Morning
2016-03-12 15:24:11 LewisCividin [09:44:12] what a cool project http://blog.nextthing.co/ntc-project-upcycle-your-old-speakers-with-c-h-i-p/#more-128
2016-03-12 15:24:11 PaulGleeson [09:49:34] Morning
2016-03-12 15:24:11 Joe [10:04:53] By far the coolest thing I've seen today. https://musiclab.chromeexperiments.com/Experiments
2016-03-12 15:24:11 LewisCividin [10:36:39] almost wants to load for me
2016-03-12 15:24:11 MartinWimpress [10:50:50] @JoeRess Has taught this old dog a new trick 😊
2016-03-12 15:24:11 Joe [10:51:10] <br><img id="6">
2016-03-12 15:24:11 LachlanHolmes [13:26:13] @enjayembee https://www.youtube.com/watch?v=wRXgjjlFeRs
2016-03-12 15:24:14 - Mode ##systemau [+t]
2016-03-12 18:33:02 NotDan https://www.washingtonpost.com/news/the-watch/wp/2016/03/10/surprise-nsa-data-will-soon-routinely-be-used-for-domestic-policing-that-has-nothing-to-do-with-terrorism/
2016-03-12 19:44:26 Moritz https://www.reddit.com/r/technology/comments/4a0asv/warning_windows_7_computers_are_being_reported_as/
2016-03-12 19:54:21 NotDan <br><img id="7">
2016-03-12 20:12:46 Moritz https://blogs.gnome.org/lkundrak/2016/03/11/help-us-understand-how-you-use-networkmanager/
2016-03-12 20:13:44 NotDan https://mjg59.dreamwidth.org/40505.html
2016-03-13 05:14:24 < WestOz (West_Oz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < TristanJames (Tristan_James@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Tom (Tom@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < StevenMackenzie (Steven_Mackenzie@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < StephenMitchell (Stephen_Mitchell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Sean (Sean@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < ScottHuntley (Scott_Huntley@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < SamSmith (Sam_Smith@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < RemedyLoame (Remedy_Loame@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < R4bb1tt (R4bb1tt@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < PeterMoynihan (Peter_Moynihan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < PaulGleeson (Paul_Gleeson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < OldNerd (Old_Nerd@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < NottheOtherDan (Not_the_Other_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < NotDan (Not_Dan@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < NickWurlod (Nick_Wurlod@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Moritz (Moritz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Mathias (Mathias@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < MartinWimpress (Martin_Wimpress@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < LewisCividin (Lewis_Cividin@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < LachlanHolmes (Lachlan_Holmes@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Kyle (Kyle@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < JustinZobel (Justin_Zobel@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Joe (Joe@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < JasonTubnor (Jason_Tubnor@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < JasonCca (Jason_Cca@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < JamesOConnell (James_O'Connell@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < EricT (Eric_T@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < emb (emb@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < DeanThomson (Dean_Thomson@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < CarlosLopez (Carlos_Lopez@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < BrentKincer (Brent_Kincer@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < BenB (Ben_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < AzzaMatazz (Azza_Matazz@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Angela (Angela@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Amir (Amir@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Alex (Alex@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < AlanPope (Alan_Pope@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < Adam (Adam@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < AgDeMesa (A.g._De_Mesa@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 05:14:24 < NicholasB (Nicholas_B@telegram) has quit (bitlbee.localhost telegram.localhost)
2016-03-13 17:23:40 - irc: disconnected from server
2016-03-14 00:36:24 > fsociety (whoami@localhost) has joined ##systemau
2016-03-14 00:36:24 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-14 00:36:27 < root has kicked fsociety (Cleaning up channel)
2016-03-14 00:36:27 > fsociety (whoami@localhost) has joined ##systemau
2016-03-14 00:36:27 - Topic for ##systemau is "#systemau"
2016-03-14 00:36:27 - Topic set by root (root@localhost) on Mon, 14 Mar 2016 00:36:27
2016-03-14 00:36:27 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-14 00:36:27 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-14 00:36:27 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-14 00:36:27 > Adam (Adam@telegram) has joined ##systemau
2016-03-14 00:36:27 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-14 00:36:27 > Alex (Alex@telegram) has joined ##systemau
2016-03-14 00:36:27 > Amir (Amir@telegram) has joined ##systemau
2016-03-14 00:36:27 > Angela (Angela@telegram) has joined ##systemau
2016-03-14 00:36:27 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-14 00:36:27 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-14 00:36:27 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-14 00:36:27 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-14 00:36:27 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-14 00:36:27 > emb (emb@telegram) has joined ##systemau
2016-03-14 00:36:27 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-14 00:36:27 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-14 00:36:27 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-14 00:36:27 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-14 00:36:27 > Joe (Joe@telegram) has joined ##systemau
2016-03-14 00:36:27 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-14 00:36:27 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-14 00:36:27 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-14 00:36:27 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-14 00:36:27 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-14 00:36:27 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-14 00:36:27 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-14 00:36:27 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-14 00:36:27 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-14 00:36:27 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-14 00:36:27 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-14 00:36:27 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-14 00:36:27 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-14 00:36:27 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-14 00:36:27 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-14 00:36:27 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-14 00:36:27 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-14 00:36:27 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-14 00:36:27 > Sean (Sean@telegram) has joined ##systemau
2016-03-14 00:36:27 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-14 00:36:27 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-14 00:36:27 > Tom (Tom@telegram) has joined ##systemau
2016-03-14 00:36:27 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-14 00:36:27 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-14 00:36:27 EricT [2016-03-13 17:30:49] I'm out now, will look when I get home.
2016-03-14 00:36:27 NotDan [2016-03-13 17:50:47] Cheers
2016-03-14 00:36:27 NicholasB [2016-03-13 18:13:13] american dad made a lycos search engine joke.
2016-03-14 00:36:27 NicholasB [2016-03-13 18:13:15] i looked
2016-03-14 00:36:27 NicholasB [2016-03-13 18:13:19] it still exists!
2016-03-14 00:36:27 NotDan [2016-03-13 18:13:48] im going to check on Netscape Navigator
2016-03-14 00:36:27 NotDan [2016-03-13 18:14:15] huh, so it does
2016-03-14 00:36:27 NotDan [2016-03-13 18:14:56] Revenue $24.76M (2009)
2016-03-14 00:36:27 NotDan [2016-03-13 18:15:52] http://idlewords.com/talks/haunted_by_data.htm
2016-03-14 00:36:27 NotDan [2016-03-13 18:17:03] Pretty interesting imo
2016-03-14 00:36:27 NicholasB [2016-03-13 18:17:07] yeah
2016-03-14 00:36:27 NicholasB [2016-03-13 18:17:34] a few choice examples.
2016-03-14 00:36:27 NotDan [2016-03-13 18:26:04] I feel like my PIA VPN is leaking DNS infop
2016-03-14 00:36:27 NicholasB [2016-03-13 18:27:33] i just did a test
2016-03-14 00:36:27 NicholasB [2016-03-13 18:27:38] no leaks
2016-03-14 00:36:27 NicholasB [2016-03-13 18:27:50] https://dnsleaktest.com/
2016-03-14 00:36:27 NotDan [2016-03-13 18:28:02] cheers for the link
2016-03-14 00:36:27 NicholasB [2016-03-13 18:28:21] you have it on a router level or os level
2016-03-14 00:36:27 NotDan [2016-03-13 18:28:25] os
2016-03-14 00:36:27 NicholasB [2016-03-13 18:28:45] you should be fine if you are using the traditional method and not their app
2016-03-14 00:36:27 NotDan [2016-03-13 18:29:03] yeah, ive configured the vpn via network settings
2016-03-14 00:36:27 NotDan [2016-03-13 18:29:53] both tests indicate all is well
2016-03-14 00:36:27 EricT [2016-03-13 18:34:05] This one @mindtoker ?
2016-03-14 00:36:28 EricT [2016-03-13 18:34:13] <br><img id="4">
2016-03-14 00:36:28 NotDan [2016-03-13 18:34:23] the desktop itself was interesting to me
2016-03-14 00:36:28 NotDan [2016-03-13 18:34:28] as in, ui and all
2016-03-14 00:36:28 EricT [2016-03-13 18:35:55] <br><img id="5"><br>3840 x 1080 is as high as I can go on this set up.
2016-03-14 00:36:28 NotDan [2016-03-13 18:36:23] thats compressed tho; i cant see it in detail
2016-03-14 00:36:28 Alex [2016-03-13 18:36:41] Thanks for the link, intersting.
2016-03-14 00:36:28 NotDan [2016-03-13 18:36:58] that image is 1280x360 downloaded
2016-03-14 00:36:28 NotDan [2016-03-13 18:36:59] np Alex
2016-03-14 00:36:28 NotDan [2016-03-13 18:37:38] much appreciated
2016-03-14 00:36:28 NotDan [2016-03-13 18:37:54] Fedora 24?
2016-03-14 00:36:28 NotDan [2016-03-13 18:48:45] oh, you said before. Fedora 24 wallpaper
2016-03-14 00:36:28 NotDan [2016-03-13 20:40:52] https://sandilands.info/sgordon/multimedia-on-linux-command-line
2016-03-14 00:36:28 Moritz [2016-03-13 21:41:27] Silly US election stuff:
2016-03-14 00:36:28 Moritz [2016-03-13 21:41:27] https://imgur.com/gallery/3OKHx
2016-03-14 00:36:28 NotDan [2016-03-13 21:43:49] I think Bernie is the candidate of choice in those pics
2016-03-14 00:36:28 NotDan [2016-03-13 21:43:53] As it should be
2016-03-14 00:36:28 NotDan [2016-03-13 21:44:21] Just saw the last image. Yeah.
2016-03-14 00:36:28 NotDan [2016-03-13 21:45:18] Is the fear of a Trump victory as strong in your country @lightonflux as it is here?
2016-03-14 00:36:28 Moritz [2016-03-13 21:47:36] I haven't noticed fear, just the sweet feeling this could be worse than GWB. In a horroble comedic sense.
2016-03-14 00:36:28 Moritz [2016-03-13 21:50:16] Just two pieces for you. First opinion from some journalist:
2016-03-14 00:36:28 Moritz [2016-03-13 21:50:16] http://www.spiegel.de/international/world/opinion-why-donald-trump-stands-a-good-chance-of-winning-a-1081434.html
2016-03-14 00:36:28 Moritz [2016-03-13 21:50:23] And then: http://www.spiegel.de/international/world/donald-trump-is-the-most-dangerous-man-in-the-world-a-1075060.html
2016-03-14 00:36:28 NotDan [2016-03-13 21:55:12] I say "here" implying Australia, when I mean Perth. People rarely discuss politics here, but the prospect of that maniac being a genuine presidential candidate is stirring people up
2016-03-14 00:36:28 NotDan [2016-03-13 21:55:45] Having said that, those opinion pieces seem very blunt in their analysis
2016-03-14 00:36:28 Alex [2016-03-13 21:56:41] https://pbs.twimg.com/media/CdHzlWDUUAAWIqm.jpg:large
2016-03-14 00:36:28 Moritz [2016-03-13 22:06:22] Only the first is an opinion piece. The second one was written by three people. Or at least three people that worked on it are credited for it.
2016-03-14 00:36:28 AlanPope [2016-03-13 22:08:29] Alsamixer helps
2016-03-14 00:36:28 Mathias [2016-03-13 22:09:14] Creative Commons? No one could keep you from taking the audio only show and make a video out of it. The beard comments on FOSS talk.
2016-03-14 00:36:28 NotDan [2016-03-13 22:09:23] Trump literally advocated a war crime on a talk show
2016-03-14 00:36:28 NicholasB [2016-03-13 22:10:12] thats true. i could make it appear as ifg my beard is speaeking averyones opinions
2016-03-14 00:36:28 NotDan [2016-03-13 22:11:59] Good article.
2016-03-14 00:36:28 NotDan [2016-03-13 22:14:18] It's 22mins long, and kinda falls apart at the very end but it's an interesting video analysing his antics
2016-03-14 00:36:28 NotDan [2016-03-13 22:14:19] http://youtu.be/DnpO_RTSNmQ
2016-03-14 00:36:28 Mathias [2016-03-13 22:20:06] I would watch it. Although it may depend on the chosen background for the green screen.
2016-03-14 00:36:28 NicholasB [2016-03-13 22:20:35] stock footage of a cheese factory.
2016-03-14 00:36:28 Moritz [2016-03-13 22:21:54] I found it to be too much hit piece and not enough analysis and explaining and comparing to other people and events.
2016-03-14 00:36:28 Mathias [2016-03-13 22:21:57] The samples you shared looked very good. I only played around with audio recording and never wanted to film anything. Everybody just seems to say that Video production sucks under Linux.
2016-03-14 00:36:28 Mathias [2016-03-13 22:22:31] Alright, I am sold.
2016-03-14 00:36:28 NotDan [2016-03-13 22:23:02] Maybe they felt the very recounting of his comments and views would do that for them
2016-03-14 00:36:28 NicholasB [2016-03-13 22:26:30] this open studio broadcaster software is pretty sweet. Hopefully it will turn out okay. the only problem is because im producing and presenting my eyes might waver from the camera a bit.
2016-03-14 00:36:28 Mathias [2016-03-13 22:28:41] Can you put your monitor behind or next to the camera?
2016-03-14 00:36:28 NicholasB [2016-03-13 22:29:28] dont need to. I can set it up like a tv studio and supeer impose videos on to the screen
2016-03-14 00:36:28 Mathias [2016-03-13 22:31:16] I got to go for now. Looking forward to whatever you come up with.
2016-03-14 00:36:28 Mathias [2016-03-13 22:32:07] I just hope that Dan also has a beard. Couldn't trust whatever he says if he is beardless.
2016-03-14 00:36:29 Mathias [2016-03-13 22:32:28] <br><img id="6">
2016-03-14 00:36:29 NicholasB [2016-03-13 22:34:42] Just for you mathias before you go to bed
2016-03-14 00:36:29 Mathias [2016-03-13 22:38:54] Gonna download it as soon as I am home.
2016-03-14 00:36:29 NicholasB [2016-03-13 22:39:36] oh yeah. not bed. clearly its day where you are.
2016-03-14 00:36:29 NicholasB [2016-03-13 22:39:38] stupid me
2016-03-14 00:36:29 Mathias [2016-03-13 22:44:10] If I could just fast forward to it and skip the ten hours.
2016-03-14 00:36:38 - Mode ##systemau [+t]
2016-03-14 00:39:17 - irc: disconnected from server
2016-03-14 14:29:30 > fsociety (whoami@localhost) has joined ##systemau
2016-03-14 14:29:30 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-14 14:29:32 < root has kicked fsociety (Cleaning up channel)
2016-03-14 14:29:32 > fsociety (whoami@localhost) has joined ##systemau
2016-03-14 14:29:32 - Topic for ##systemau is "#systemau"
2016-03-14 14:29:32 - Topic set by root (root@localhost) on Mon, 14 Mar 2016 14:29:32
2016-03-14 14:29:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-14 14:29:32 > NicholasB (Nicholas_B@telegram) has joined ##systemau
2016-03-14 14:29:32 > AgDeMesa (A.g._De_Mesa@telegram) has joined ##systemau
2016-03-14 14:29:32 > Adam (Adam@telegram) has joined ##systemau
2016-03-14 14:29:32 > AlanPope (Alan_Pope@telegram) has joined ##systemau
2016-03-14 14:29:32 > Alex (Alex@telegram) has joined ##systemau
2016-03-14 14:29:32 > Amir (Amir@telegram) has joined ##systemau
2016-03-14 14:29:32 > Angela (Angela@telegram) has joined ##systemau
2016-03-14 14:29:32 > AzzaMatazz (Azza_Matazz@telegram) has joined ##systemau
2016-03-14 14:29:32 > BenB (Ben_B@telegram) has joined ##systemau
2016-03-14 14:29:32 > BrentKincer (Brent_Kincer@telegram) has joined ##systemau
2016-03-14 14:29:32 > CarlosLopez (Carlos_Lopez@telegram) has joined ##systemau
2016-03-14 14:29:32 > DeanThomson (Dean_Thomson@telegram) has joined ##systemau
2016-03-14 14:29:32 > emb (emb@telegram) has joined ##systemau
2016-03-14 14:29:32 > EricT (Eric_T@telegram) has joined ##systemau
2016-03-14 14:29:32 > JamesOConnell (James_O'Connell@telegram) has joined ##systemau
2016-03-14 14:29:32 > JasonCca (Jason_Cca@telegram) has joined ##systemau
2016-03-14 14:29:32 > JasonTubnor (Jason_Tubnor@telegram) has joined ##systemau
2016-03-14 14:29:32 > Joe (Joe@telegram) has joined ##systemau
2016-03-14 14:29:32 > JustinZobel (Justin_Zobel@telegram) has joined ##systemau
2016-03-14 14:29:32 > Kyle (Kyle@telegram) has joined ##systemau
2016-03-14 14:29:32 > LachlanHolmes (Lachlan_Holmes@telegram) has joined ##systemau
2016-03-14 14:29:32 > LewisCividin (Lewis_Cividin@telegram) has joined ##systemau
2016-03-14 14:29:32 > MartinWimpress (Martin_Wimpress@telegram) has joined ##systemau
2016-03-14 14:29:32 > Mathias (Mathias@telegram) has joined ##systemau
2016-03-14 14:29:32 > MilanMarkovicMatthis (Milan_Markovic_Matthis@telegram) has joined ##systemau
2016-03-14 14:29:32 > Moritz (Moritz@telegram) has joined ##systemau
2016-03-14 14:29:32 > NickWurlod (Nick_Wurlod@telegram) has joined ##systemau
2016-03-14 14:29:32 > NotDan (Not_Dan@telegram) has joined ##systemau
2016-03-14 14:29:32 > NottheOtherDan (Not_the_Other_Dan@telegram) has joined ##systemau
2016-03-14 14:29:32 > OldNerd (Old_Nerd@telegram) has joined ##systemau
2016-03-14 14:29:32 > PaulGleeson (Paul_Gleeson@telegram) has joined ##systemau
2016-03-14 14:29:32 > PeterMoynihan (Peter_Moynihan@telegram) has joined ##systemau
2016-03-14 14:29:32 > R4bb1tt (R4bb1tt@telegram) has joined ##systemau
2016-03-14 14:29:32 > RemedyLoame (Remedy_Loame@telegram) has joined ##systemau
2016-03-14 14:29:32 > SamSmith (Sam_Smith@telegram) has joined ##systemau
2016-03-14 14:29:32 > ScottHuntley (Scott_Huntley@telegram) has joined ##systemau
2016-03-14 14:29:32 > Sean (Sean@telegram) has joined ##systemau
2016-03-14 14:29:32 > StephenMitchell (Stephen_Mitchell@telegram) has joined ##systemau
2016-03-14 14:29:32 > StevenMackenzie (Steven_Mackenzie@telegram) has joined ##systemau
2016-03-14 14:29:32 > Tom (Tom@telegram) has joined ##systemau
2016-03-14 14:29:32 > TristanJames (Tristan_James@telegram) has joined ##systemau
2016-03-14 14:29:32 > WestOz (West_Oz@telegram) has joined ##systemau
2016-03-14 14:29:32 Joe [06:38:54] http://www.fosstalk.com
2016-03-14 14:29:32 Joe [06:39:03] It's definitely happening
2016-03-14 14:29:32 Joe [06:40:21] The event that is. Not the brain fart
2016-03-14 14:29:32 LewisCividin [06:45:15] That looks like a top event @JoeRess
2016-03-14 14:29:32 Joe [06:46:23] Hopefully
2016-03-14 14:29:32 CarlosLopez [08:34:24] Morninall
2016-03-14 14:29:32 LachlanHolmes [08:36:22] howdy
2016-03-14 14:29:32 NicholasB [08:41:43] Morning.
2016-03-14 14:29:32 NicholasB [08:42:22] I'm tossing up if I should wake up or go back to sleep.
2016-03-14 14:29:32 NicholasB [08:42:44] *get up
2016-03-14 14:29:32 Mathias [08:45:16] You're right, it is pretty cool.
2016-03-14 14:29:32 Mathias [08:45:51] And you just slept the whole ducking day. Get up.
2016-03-14 14:29:32 NicholasB [08:46:03] Haha.
2016-03-14 14:29:32 Mathias [08:46:22] Oh really Android, you don't want me to type fucking.
2016-03-14 14:29:32 CarlosLopez [08:46:44] Oh yeah! Public holiday! Forgot about that (because I'm working anyway)
2016-03-14 14:29:32 Mathias [08:46:53] And now there is another word in my private dictionary.
2016-03-14 14:29:32 CarlosLopez [08:46:57] Anyway, I had to come in: no Internet at home
2016-03-14 14:29:32 CarlosLopez [08:47:08] What is type fucking?
2016-03-14 14:29:32 NicholasB [08:47:09] What happened?
2016-03-14 14:29:32 Mathias [08:48:20] My phone just corrected my spell error: It took "fucking" and made "ducking" out of it.
2016-03-14 14:29:32 CarlosLopez [08:48:40] They're building some townhouses down the street and that had a concrete pump working on Friday morning: One of the concrete trucks clipped our phone line and tore it out. No youtube and no steam make carlos something something
2016-03-14 14:29:32 NicholasB [08:51:15] Ouch
2016-03-14 14:29:32 CarlosLopez [08:51:28] yeah
2016-03-14 14:29:32 Mathias [08:51:38] You're one of those lucky workers without a corporate firewall that is also blocking most of the outgoing traffic.
2016-03-14 14:29:32 CarlosLopez [08:51:58] Telstra technician expected tomorrow
2016-03-14 14:29:32 CarlosLopez [08:52:14] huh?
2016-03-14 14:29:32 Mathias [08:52:27] You can game at work?
2016-03-14 14:29:32 CarlosLopez [08:52:38] .... maybe? ....
2016-03-14 14:29:32 NicholasB [08:53:00] I think I need to go cook breaky. Corn beef hash for any hungry people who want to pop over.
2016-03-14 14:29:32 CarlosLopez [08:53:02] I won't install Steam here, but I can play Minecraft
2016-03-14 14:29:32 CarlosLopez [08:53:16] Happy bfast Nick
2016-03-14 14:29:32 Mathias [08:54:51] I am even having trouble sending mails via Thunderbird. When I call the network guy he asks me to use the browser and log into the webinterface.
2016-03-14 14:29:32 Mathias [08:55:08] He is not going to open another port...
2016-03-14 14:29:32 NicholasB [08:55:58] We can't change our wallpaper
2016-03-14 14:29:32 Mathias [08:56:34] I don't know what ports steam is using but I guess companies would tend to block it.
2016-03-14 14:29:32 Mathias [08:57:07] Yeah, I also do have a wonderful not changeable wallpaper.
2016-03-14 14:29:32 Mathias [08:58:20] Are you working in front of customers?
2016-03-14 14:29:32 NicholasB [09:02:37] Nope. But it's a company wide thing. On XP I just edited the registry. Because for soem reason that wasn't locked. (Idiots) but win 7 is a different story
2016-03-14 14:29:32 Mathias [09:07:54] Isn't there a possibility to place a picture show onto the desktop?
2016-03-14 14:29:32 Mathias [09:09:19] I just find that kind of everybody-should-use-my-background mentality hilarious.
2016-03-14 14:29:32 LachlanHolmes [09:09:43] Guys, What's the hot game right now on steam/linux?
2016-03-14 14:29:32 LewisCividin [09:10:06] superhot
2016-03-14 14:29:32 LachlanHolmes [09:10:26] ive finished far cry primal and i need a new game to work on until the next big title comes out... ok superhot.
2016-03-14 14:29:32 LewisCividin [09:11:41] it's an indie, guy at work said it's fun as; I'm still playing pillers or enternity which is taking a while (hence the title I suppose lol)
2016-03-14 14:29:32 LewisCividin [09:12:14] The devision looks pretty cool for a AAA title
2016-03-14 14:29:32 CarlosLopez [09:12:21] yeah, but I'm the IT department
2016-03-14 14:29:32 CarlosLopez [09:13:07] Don't know about hot (and it's not exactly new) but I've been playing FTL
2016-03-14 14:29:32 Mathias [09:14:04] You lucky guy.
2016-03-14 14:29:32 PaulGleeson [09:18:30] I'm actually tempted
2016-03-14 14:29:32 PaulGleeson [09:19:16] I'm so sorry man, its a dangerous time sink
2016-03-14 14:29:32 Joe [09:19:35] It's going to be a great night
2016-03-14 14:29:32 CarlosLopez [09:19:49] Word! Also a rage machine
2016-03-14 14:29:32 PaulGleeson [09:20:20] Yeah its a fair game
2016-03-14 14:29:32 PaulGleeson [09:20:30] Its fun but completely on fair
2016-03-14 14:29:32 PaulGleeson [09:20:38] Unfair*
2016-03-14 14:29:32 CarlosLopez [09:20:59] fun fair?
2016-03-14 14:29:32 NicholasB [10:24:43] podcast editing time!
2016-03-14 14:29:32 NicholasB [10:24:52] though fuck me i had a scare.
2016-03-14 14:29:32 NicholasB [10:25:01] podcast hard drive is doing the click of death
2016-03-14 14:29:32 NicholasB [10:25:57] wouldn't pick up first few times i plugged it in
2016-03-14 14:29:32 NicholasB [10:26:00] o_O
2016-03-14 14:29:32 LachlanHolmes [10:26:13] spideroak that shit 😛
2016-03-14 14:29:32 NicholasB [10:26:32] the issue is i record from a desk too usb. not on my pc.
2016-03-14 14:29:32 NicholasB [10:26:45] so there is always a point where that drive has the only copy.
2016-03-14 14:29:32 EricT [10:27:13] Yay! free BBQ at work for lunch!
2016-03-14 14:29:32 EricT [10:27:28] Halal Sausages!
2016-03-14 14:29:32 NicholasB [10:28:15] nomnom
2016-03-14 14:29:32 EricT [10:29:27] Well, all you Southern Gentlemen are on a Public Holiday! not us 😞
2016-03-14 14:29:32 NicholasB [10:29:58] and we can go out after 7pm with out the stasi throwing us in to a casino and demanding we play blackjack
2016-03-14 14:29:32 EricT [10:30:59] IKR,
2016-03-14 14:29:32 NicholasB [10:37:13] i want a picture of the sausage.
2016-03-14 14:29:32 NicholasB [10:37:26] even though i forgot to show my corn beef hash.
2016-03-14 14:29:32 EricT [10:48:38] no prop, I am thinking of thowing a peice of bacon on the BBQ, but that wouldn't be PC !lol
2016-03-14 14:29:32 EricT [10:49:21] Halal Bacon?
2016-03-14 14:29:32 NicholasB [10:49:41] you can get it. though its made of beef
2016-03-14 14:29:32 EricT [10:50:02] Faicon
2016-03-14 14:29:32 EricT [10:50:13] Fakon?
2016-03-14 14:29:32 NicholasB [10:54:47] This group was converted to a supergroup by the administrator. Please update your Telegram app to continue chatting here.
2016-03-14 14:29:32 NicholasB [10:54:47] https://telegram.org/update
2016-03-14 14:29:42 - Mode ##systemau [+t]
2016-03-14 23:18:17 > fsociety (whoami@localhost) has joined ##systemau
2016-03-14 23:18:17 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-15 09:46:51 - irc: disconnected from server
2016-03-15 09:46:54 > fsociety (whoami@localhost) has joined ##systemau
2016-03-15 09:46:54 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-15 10:28:12 @fsociety rah rah
2016-03-15 10:30:23 - irc: disconnected from server
2016-03-15 10:30:26 > fsociety (whoami@localhost) has joined ##systemau
2016-03-15 10:30:26 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 06:23:47 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 06:23:47 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 06:24:57 @fsociety allo
2016-03-16 07:17:58 - irc: disconnected from server
2016-03-16 07:18:02 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:18:02 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 07:18:12 - irc: disconnected from server
2016-03-16 07:18:32 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:18:32 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 07:19:06 - irc: disconnected from server
2016-03-16 07:19:16 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:19:16 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 07:19:21 - irc: disconnected from server
2016-03-16 07:19:28 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:19:28 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 07:23:05 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:23:05 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 07:33:49 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 07:33:49 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 11:43:39 - irc: disconnected from server
2016-03-16 11:43:43 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 11:43:43 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 20:28:26 - irc: disconnected from server
2016-03-16 20:28:33 > fsociety (whoami@localhost) has joined ##systemau
2016-03-16 20:28:33 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-16 20:36:40 - irc: disconnected from server
2016-03-17 02:36:26 > fsociety (whoami@localhost) has joined ##systemau
2016-03-17 02:36:26 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-17 19:44:28 > fsociety (whoami@localhost) has joined ##systemau
2016-03-17 19:44:28 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-18 20:03:53 - irc: disconnected from server
2016-03-19 07:19:29 > fsociety (whoami@localhost) has joined ##systemau
2016-03-19 07:19:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-19 08:27:29 > fsociety (whoami@localhost) has joined ##systemau
2016-03-19 08:27:29 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-19 12:43:27 - irc: disconnected from server
2016-03-19 12:43:58 > fsociety (whoami@localhost) has joined ##systemau
2016-03-19 12:43:58 - Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
2016-03-19 12:48:56 - irc: disconnected from server
2016-04-07 13:44:16 - fsociety (whoami@localhost.localdomain) has joined ##systemau
2016-04-07 13:44:16 [13:44]
2016-04-07 13:44:16 Channel ##systemau: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
| IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.bitlbee.##systemau.weechatlog | [
"MIT"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { registerAction2, Action2, MenuId } from 'vs/platform/actions/common/actions';
import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey';
import { localize } from 'vs/nls';
import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE } from 'vs/workbench/contrib/notebook/common/notebookContextKeys';
import { getNotebookEditorFromEditorPane } from 'vs/workbench/contrib/notebook/browser/notebookBrowser';
import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry';
import { KeyCode, KeyMod } from 'vs/base/common/keyCodes';
import { ServicesAccessor, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { NOTEBOOK_ACTIONS_CATEGORY } from 'vs/workbench/contrib/notebook/browser/controller/coreActions';
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
import { ITextModelService } from 'vs/editor/common/services/resolverService';
import { DisposableStore } from 'vs/base/common/lifecycle';
import { getDocumentFormattingEditsUntilResult, formatDocumentWithSelectedProvider, FormattingMode } from 'vs/editor/contrib/format/browser/format';
import { IEditorWorkerService } from 'vs/editor/common/services/editorWorker';
import { CancellationToken } from 'vs/base/common/cancellation';
import { IBulkEditService, ResourceTextEdit } from 'vs/editor/browser/services/bulkEditService';
import { EditorContextKeys } from 'vs/editor/common/editorContextKeys';
import { registerEditorAction, EditorAction } from 'vs/editor/browser/editorExtensions';
import { ICodeEditor } from 'vs/editor/browser/editorBrowser';
import { Progress } from 'vs/platform/progress/common/progress';
import { ILanguageFeaturesService } from 'vs/editor/common/services/languageFeatures';
// format notebook
registerAction2(class extends Action2 {
constructor() {
super({
id: 'notebook.format',
title: { value: localize('format.title', "Format Notebook"), original: 'Format Notebook' },
category: NOTEBOOK_ACTIONS_CATEGORY,
precondition: ContextKeyExpr.and(NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE),
keybinding: {
when: EditorContextKeys.editorTextFocus.toNegated(),
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.KeyF,
linux: { primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI },
weight: KeybindingWeight.WorkbenchContrib
},
f1: true,
menu: {
id: MenuId.EditorContext,
when: ContextKeyExpr.and(EditorContextKeys.inCompositeEditor, EditorContextKeys.hasDocumentFormattingProvider),
group: '1_modification',
order: 1.3
}
});
}
async run(accessor: ServicesAccessor): Promise<void> {
const editorService = accessor.get(IEditorService);
const textModelService = accessor.get(ITextModelService);
const editorWorkerService = accessor.get(IEditorWorkerService);
const languageFeaturesService = accessor.get(ILanguageFeaturesService);
const bulkEditService = accessor.get(IBulkEditService);
const editor = getNotebookEditorFromEditorPane(editorService.activeEditorPane);
if (!editor || !editor.hasModel()) {
return;
}
const notebook = editor.textModel;
const disposable = new DisposableStore();
try {
const allCellEdits = await Promise.all(notebook.cells.map(async cell => {
const ref = await textModelService.createModelReference(cell.uri);
disposable.add(ref);
const model = ref.object.textEditorModel;
const formatEdits = await getDocumentFormattingEditsUntilResult(
editorWorkerService,
languageFeaturesService,
model,
model.getOptions(), CancellationToken.None
);
const edits: ResourceTextEdit[] = [];
if (formatEdits) {
for (const edit of formatEdits) {
edits.push(new ResourceTextEdit(model.uri, edit, model.getVersionId()));
}
return edits;
}
return [];
}));
await bulkEditService.apply(/* edit */allCellEdits.flat(), { label: localize('label', "Format Notebook"), code: 'undoredo.formatNotebook', });
} finally {
disposable.dispose();
}
}
});
// format cell
registerEditorAction(class FormatCellAction extends EditorAction {
constructor() {
super({
id: 'notebook.formatCell',
label: localize('formatCell.label', "Format Cell"),
alias: 'Format Cell',
precondition: ContextKeyExpr.and(NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE, EditorContextKeys.inCompositeEditor, EditorContextKeys.writable, EditorContextKeys.hasDocumentFormattingProvider),
kbOpts: {
kbExpr: ContextKeyExpr.and(EditorContextKeys.editorTextFocus),
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.KeyF,
linux: { primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI },
weight: KeybindingWeight.EditorContrib
},
contextMenuOpts: {
group: '1_modification',
order: 1.301
}
});
}
async run(accessor: ServicesAccessor, editor: ICodeEditor): Promise<void> {
if (editor.hasModel()) {
const instaService = accessor.get(IInstantiationService);
await instaService.invokeFunction(formatDocumentWithSelectedProvider, editor, FormattingMode.Explicit, Progress.None, CancellationToken.None);
}
}
});
| TypeScript | 5 | EngineLessCC/vscode | src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.ts | [
"MIT"
] |
GET /first HTTP/1.1\r\n
Connection: Close\r\n
\r\n
GET /second HTTP/1.1\r\n
\r\n | HTTP | 1 | ashishmjn/gunicorn | tests/requests/valid/021.http | [
"MIT"
] |
# Search the WordprocessingML XML Schema definition file for a simple type by name
# You'll need the wml.xsd file.
# To get that file, first download the following zip:
# https://www.ecma-international.org/wp-content/uploads/ECMA-376-Fifth-Edition-Part-1-Fundamentals-And-Markup-Language-Reference.zip
# Then, unzip the contents of OfficeOpenXML-XMLSchema-Strict.zip.
open wml.xsd | from xml | get schema.children.simpleType | flatten | where name =~ 'BrType' | get children.restriction.children.enumeration.attributes
| Nu | 4 | x3rAx/nu_scripts | cool_oneliners/xml_search_schema.nu | [
"MIT"
] |
#include "__emit.inc"
stock test__data_offset(&local_refvar, local_refarray[])
{
const local_const = 0;
new local_var = 0;
static local_static_var = 0;
local_label:
// ok
__emit load.pri global_var;
__emit load.pri local_static_var;
// should trigger an error
__emit load.pri global_const;
__emit load.pri global_func;
__emit load.pri local_refvar;
__emit load.pri local_refarray;
__emit load.pri local_const;
__emit load.pri local_var;
__emit load.pri local_label;
__emit load.pri 0;
}
stock test__local_var(&local_refvar, local_refarray[])
{
const local_const = 0;
new local_var = 0;
static local_static_var = 0;
local_label:
// ok
__emit load.s.pri global_const;
__emit load.s.pri local_refvar;
__emit load.s.pri local_refarray;
__emit load.s.pri local_const;
__emit load.s.pri local_var;
__emit load.s.pri 20;
__emit load.s.pri -20;
__emit stor.s.pri global_const;
__emit stor.s.pri local_const;
__emit stor.s.pri local_var;
__emit stor.s.pri 20;
__emit stor.s.pri -20;
// should trigger an error
__emit load.s.pri global_var;
__emit load.s.pri global_func;
__emit load.s.pri local_static_var;
__emit load.s.pri local_label;
__emit stor.s.pri local_refvar;
__emit stor.s.pri local_refarray;
__emit load.s.pri -global_var;
__emit load.s.pri -global_func;
__emit load.s.pri -local_static_var;
__emit load.s.pri -local_label;
__emit stor.s.pri -local_refvar;
__emit stor.s.pri -local_refarray;
}
main()
{
new t, a[1];
test__data_offset(t, a); // 8
test__local_var(t, a); // 6
}
| PAWN | 3 | pawn-lang/pawn | source/compiler/tests/__emit_p4.pwn | [
"Zlib"
] |
import QtQuick 2.0
/* Simple QML view that associates a string key with a page, and
* displays one page at a time. */
FocusScope {
property Item currentPage
property string currentKey
property var _items: { '': null }
function add(key, source, properties) {
if (key === "")
return
if (_items[key] !== null)
remove(key)
var component = Qt.createComponent(source, content)
if (component.status !== Component.Ready) {
console.log("PageView:", source, component.errorString())
return
}
if (properties === undefined)
properties = [ ]
properties['visible'] = false
properties['anchors.fill'] = content
var item = component.createObject(content, properties)
_items[key] = item
}
function show(key, source, properties) {
if (_items[key] === undefined)
add(key, source, properties)
currentKey = key
}
function remove(key) {
var item = _items[key]
if (item !== undefined) {
if (item === currentPage)
currentKey = null
_items[key] = undefined
item.destroy()
}
}
onCurrentKeyChanged: {
var item = _items[currentKey]
if (item === currentPage)
return
if (currentPage !== null) {
currentPage.visible = false
currentPage.focus = false
}
currentPage = item || null
if (currentPage !== null) {
currentPage.visible = true
currentPage.focus = true
}
}
Item {
id: content
anchors.fill: parent
}
}
| QML | 4 | garrettr/ricochet | src/ui/qml/PageView.qml | [
"OpenSSL"
] |
SELECT reverse('Hello');
SELECT reverse(materialize('Hello'));
SELECT reverse(toString(round(exp10(number)))) FROM system.numbers LIMIT 10;
SELECT reverse(['Hello', 'World']);
SELECT reverse(materialize(['Hello', 'World']));
SELECT reverse(range(number)) FROM system.numbers LIMIT 10;
SELECT reverse(arrayMap(x -> toString(round(exp10(x))), range(number))) FROM system.numbers LIMIT 10;
SELECT reverse(toFixedString(toString(round(exp10(number))), 10)) FROM system.numbers LIMIT 10;
| SQL | 3 | pdv-ru/ClickHouse | tests/queries/0_stateless/00256_reverse.sql | [
"Apache-2.0"
] |
// Daniel Shiffman
// http://codingtra.in
// http://patreon.com/codingtrain
// Code for: https://youtu.be/QHEQuoIKgNE
ArrayList<Circle> circles;
ArrayList<PVector> spots;
PImage img;
void setup() {
size(900, 400);
spots = new ArrayList<PVector>();
img = loadImage("2017.png");
img.loadPixels();
for (int x = 0; x < img.width; x++) {
for (int y = 0; y < img.height; y++) {
int index = x + y * img.width;
color c = img.pixels[index];
float b = brightness(c);
if (b > 1) {
spots.add(new PVector(x,y));
}
}
}
circles = new ArrayList<Circle>();
}
void draw() {
background(0);
int total = 10;
int count = 0;
int attempts = 0;
while (count < total) {
Circle newC = newCircle();
if (newC != null) {
circles.add(newC);
count++;
}
attempts++;
if (attempts > 1000) {
noLoop();
println("FINISHED");
break;
}
}
for (Circle c : circles) {
if (c.growing) {
if (c.edges()) {
c.growing = false;
} else {
for (Circle other : circles) {
if (c != other) {
float d = dist(c.x, c.y, other.x, other.y);
if (d - 2 < c.r + other.r) {
c.growing = false;
break;
}
}
}
}
}
c.show();
c.grow();
}
}
Circle newCircle() {
int r = int(random(0,spots.size()));
PVector spot = spots.get(r);
float x = spot.x;
float y = spot.y;
boolean valid = true;
for (Circle c : circles) {
float d = dist(x, y, c.x, c.y);
if (d < c.r) {
valid = false;
break;
}
}
if (valid) {
return new Circle(x, y);
} else {
return null;
}
} | Processing | 4 | aerinkayne/website | CodingChallenges/CC_050.1_CirclePackingAnimated/Processing/CC_050_1_B_CirclePackingAnimatedText/CC_050_1_B_CirclePackingAnimatedText.pde | [
"MIT"
] |
--- nsprpub/config/rules.mk
+++ nsprpub/config/rules.mk
@@ -129,12 +129,35 @@
else
ifdef MKSHLIB
SHARED_LIBRARY = $(OBJDIR)/lib$(LIBRARY_NAME)$(LIBRARY_VERSION).$(DLL_SUFFIX)
+SONAME = $(notdir $(SHARED_LIBRARY))
+
+ifdef SO_VERSION
+ifneq (,$(findstring $(SONAME),$(MKSHLIB)))
+SO_VERSION_MAJOR := $(shell echo $(SO_VERSION) | sed 's/^\([^.]*\)\(\.[^.]*\)\?\(\.[^.]*\)\?/\1/')
+SO_VERSION_MINOR := $(shell echo $(SO_VERSION) | sed 's/^\([^.]*\)\(\.[^.]*\)\?\(\.[^.]*\)\?/\2/')
+SO_VERSION_MICRO := $(shell echo $(SO_VERSION) | sed 's/^\([^.]*\)\(\.[^.]*\)\?\(\.[^.]*\)\?/\3/')
+
+SHARED_LIBRARY_LINKS := $(SONAME)
+ifdef SO_VERSION_MINOR
+SHARED_LIBRARY_LINKS += $(SONAME).$(SO_VERSION_MAJOR)
endif
+ifdef SO_VERSION_MICRO
+SHARED_LIBRARY_LINKS += $(SHARED_LIBRARY).$(SO_VERSION_MAJOR)$(SO_VERSION_MINOR)
endif
+SONAME := $(SONAME).$(SO_VERSION_MAJOR)
+SHARED_LIBRARY := $(SHARED_LIBRARY).$(SO_VERSION)
+
+MKSHLINKS = (cd $(1) && for link in $(SHARED_LIBRARY_LINKS); do rm -f $$link; ln -s $(notdir $(SHARED_LIBRARY)) $$link; done)
endif
endif
+endif
+endif
+
+endif
+endif
+
ifndef TARGETS
ifeq (,$(filter-out WINNT OS2,$(OS_ARCH)))
TARGETS = $(LIBRARY) $(SHARED_LIBRARY) $(IMPORT_LIBRARY)
@@ -166,7 +189,7 @@
endif
ALL_TRASH = $(TARGETS) $(OBJS) $(RES) $(filter-out . .., $(OBJDIR)) LOGS TAGS $(GARBAGE) \
- $(NOSUCHFILE) \
+ $(SHARED_LIBRARY_LINKS) $(NOSUCHFILE) \
so_locations
ifeq ($(OS_ARCH),OpenVMS)
@@ -232,6 +255,7 @@
endif
ifdef RELEASE_LIBS
$(NSINSTALL) -t -m 0755 $(RELEASE_LIBS) $(DESTDIR)$(libdir)/$(lib_subdir)
+ $(call MKSHLINKS,$(DESTDIR)$(libdir)/$(lib_subdir))
endif
+$(LOOP_OVER_DIRS)
@@ -325,6 +349,8 @@
$(IMPLIB) $@ $(MAPFILE)
endif
+$(SHARED_LIBRARY_LINKS): %: $(SHARED_LIBRARY)
+
$(SHARED_LIBRARY): $(OBJS) $(RES) $(MAPFILE)
@$(MAKE_OBJDIR)
rm -f $@
@@ -352,6 +378,7 @@
fi
endif # OpenVMS
$(MKSHLIB) $(OBJS) $(RES) $(EXTRA_LIBS)
+ $(call MKSHLINKS,.)
endif # OS2 vacpp
endif # WINNT
endif # AIX 4.1
--- nsprpub/configure.in
+++ nsprpub/configure.in
@@ -892,7 +892,7 @@
AC_DEFINE(_PR_STAT_HAS_ST_ATIMESPEC)
MKSHLIB='$(CC) -o $@ $(DSO_LDOPTS)'
DSO_CFLAGS=-fPIC
- DSO_LDOPTS='-shared -Wl,-soname,$(@:$(OBJDIR)/%.so=%.so)'
+ DSO_LDOPTS='-shared -Wl,-soname,$(SONAME)'
STRIP="$STRIP -d"
case "$target_os" in
bsdi4.2* | bsdi4.3* | bsdi5.*)
@@ -1042,7 +1042,7 @@
fi
MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
DSO_CFLAGS=-fPIC
- DSO_LDOPTS='-shared -Wl,-soname -Wl,$(notdir $@)'
+ DSO_LDOPTS='-shared -Wl,-soname -Wl,$(SONAME)'
MDCPUCFG_H=_freebsd.cfg
PR_MD_CSRCS=freebsd.c
;;
@@ -1059,7 +1059,7 @@
# workaround this problem.
AC_DEFINE(_PR_POLL_WITH_SELECT)
AC_DEFINE(_USE_BIG_FDS)
- DSO_LDOPTS='-b +h $(notdir $@)'
+ DSO_LDOPTS='-b +h $(SONAME)'
PR_MD_CSRCS=hpux.c
if test "$OS_TEST" = "ia64"; then
DLL_SUFFIX=so
@@ -1304,7 +1304,7 @@
PR_MD_CSRCS=linux.c
MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
DSO_CFLAGS=-fPIC
- DSO_LDOPTS='-shared -Wl,-soname -Wl,$(notdir $@)'
+ DSO_LDOPTS='-shared -Wl,-soname -Wl,$(SONAME)'
_OPTIMIZE_FLAGS=-O2
_DEBUG_FLAGS="-g -fno-inline" # most people on linux use gcc/gdb, and that
# combo is not yet good at debugging inlined
@@ -1561,7 +1561,7 @@
else
OBJECT_FMT=ELF
DLL_SUFFIX=so
- DSO_LDOPTS='-shared -Wl,-soname,$(notdir $@)'
+ DSO_LDOPTS='-shared -Wl,-soname,$(SONAME)'
fi
fi
@@ -1607,7 +1607,7 @@
AC_DEFINE(HAVE_POINTER_LOCALTIME_R)
MDCPUCFG_H=_nto.cfg
PR_MD_CSRCS=nto.c
- MKSHLIB='$(CC) $(DSO_LDOPTS) -Wl,-soname -Wl,$(notdir $@) -o $@'
+ MKSHLIB='$(CC) $(DSO_LDOPTS) -Wl,-soname -Wl,$(SONAME) -o $@'
DSO_CFLAGS=-fPIC
DSO_LDOPTS=-shared
OS_LIBS="$OS_LIBS -lsocket"
@@ -1685,7 +1685,7 @@
if echo $OS_RELEASE | grep -c V4.0 >/dev/null; then
AC_DEFINE(OSF1V4_MAP_PRIVATE_BUG)
fi
- DSO_LDOPTS='-shared -all -expect_unresolved "*" -soname $(notdir $@)'
+ DSO_LDOPTS='-shared -all -expect_unresolved "*" -soname $(SONAME)'
MDCPUCFG_H=_osf1.cfg
PR_MD_CSRCS=osf1.c
;;
@@ -1751,7 +1751,7 @@
_OPTIMIZE_FLAGS='-O -F Olimit,4000'
fi
- DSO_LDOPTS='-G -z defs -h $(@:$(OBJDIR)/%.so=%.so)'
+ DSO_LDOPTS='-G -z defs -h $(SONAME)'
if test "$OS_RELEASE" = "5.43"; then
AC_DEFINE(IP_MULTICAST)
@@ -1807,10 +1807,10 @@
if `$CC -print-prog-name=ld` -v 2>&1 | grep -c GNU >/dev/null; then
GCC_USE_GNU_LD=1
fi
- DSO_LDOPTS='-shared -Wl,-h,$(notdir $@),-z,combreloc,-z,defs,-z,ignore'
+ DSO_LDOPTS='-shared -Wl,-h,$(SONAME),-z,combreloc,-z,defs,-z,ignore'
else
DSO_CFLAGS=-KPIC
- DSO_LDOPTS='-G -h $(notdir $@) -z combreloc -z defs -z ignore'
+ DSO_LDOPTS='-G -h $(SONAME) -z combreloc -z defs -z ignore'
fi
if test -n "$GNU_CC"; then
CFLAGS="$CFLAGS -Wall"
--- nsprpub/lib/ds/Makefile.in
+++ nsprpub/lib/ds/Makefile.in
@@ -127,6 +127,7 @@
LIBRARY_NAME = plds
LIBRARY_VERSION = $(MOD_MAJOR_VERSION)
+SO_VERSION = 0d
RELEASE_HEADERS = $(HEADERS)
RELEASE_HEADERS_DEST = $(RELEASE_INCLUDE_DIR)
@@ -185,12 +186,14 @@
export:: $(TARGETS)
$(INSTALL) -m 444 $(HEADERS) $(dist_includedir)
$(INSTALL) -m 444 $(TARGETS) $(dist_libdir)
+ $(call MKSHLINKS,$(dist_libdir))
ifdef SHARED_LIBRARY
ifeq ($(OS_ARCH),HP-UX)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_libdir)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_bindir)
else
$(INSTALL) -m 444 $(SHARED_LIBRARY) $(dist_bindir)
+ $(call MKSHLINKS,$(dist_bindir))
endif
endif
ifeq ($(MOZ_BITS),16)
--- nsprpub/lib/libc/src/Makefile.in
+++ nsprpub/lib/libc/src/Makefile.in
@@ -69,6 +69,7 @@
LIBRARY_NAME = plc
LIBRARY_VERSION = $(MOD_MAJOR_VERSION)
+SO_VERSION = 0d
RELEASE_LIBS = $(TARGETS)
@@ -187,12 +188,14 @@
export:: $(TARGETS)
$(INSTALL) -m 444 $(TARGETS) $(dist_libdir)
+ $(call MKSHLINKS,$(dist_libdir))
ifdef SHARED_LIBRARY
ifeq ($(OS_ARCH),HP-UX)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_libdir)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_bindir)
else
$(INSTALL) -m 444 $(SHARED_LIBRARY) $(dist_bindir)
+ $(call MKSHLINKS,$(dist_bindir))
endif
endif
ifeq ($(MOZ_BITS),16)
--- nsprpub/pr/src/Makefile.in
+++ sprpub/pr/src/Makefile.in
@@ -332,6 +332,7 @@
LIBRARY_NAME = nspr
LIBRARY_VERSION = $(MOD_MAJOR_VERSION)
+SO_VERSION = 0d
RELEASE_LIBS = $(TARGETS)
@@ -402,12 +403,14 @@
export:: $(TARGETS)
$(INSTALL) -m 444 $(TARGETS) $(dist_libdir)
+ $(call MKSHLINKS,$(dist_libdir))
ifdef SHARED_LIBRARY
ifeq ($(OS_ARCH),HP-UX)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_libdir)
$(INSTALL) -m 755 $(SHARED_LIBRARY) $(dist_bindir)
else
$(INSTALL) -m 444 $(SHARED_LIBRARY) $(dist_bindir)
+ $(call MKSHLINKS,$(dist_bindir))
endif
endif
ifeq ($(MOZ_BITS),16)
| Darcs Patch | 3 | crystalfontz/openembedded | recipes/mozilla/nspr-4.7.1/81_sonames.dpatch | [
"MIT"
] |
<script>
$( document ).ready(function() {
$("#go_back").click(function(){
window.history.back();
});
});
</script>
<a id="go_back" style="cursor: pointer;">{{lang._('Go back to previous page')}}</a>
| Volt | 3 | johanneskastl/opnsense-core | src/opnsense/mvc/app/views/OPNsense/Core/not_found.volt | [
"BSD-2-Clause"
] |
$! --------------------------------------------------------------------------
$! For making minc.olb on vms
$! --------------------------------------------------------------------------
$!
$ ccc := cc /opt/nodebug/nolist/include=([],[--.netcdf.include])
$
$ on error then goto exit
$ on control_y then goto exit
$ set ver
$ ccc dim_conversion.c
$ ccc image_conversion.c
$ ccc minc_convenience.c
$ ccc minc_error.c
$ ccc minc_globdef.c
$ ccc netcdf_convenience.c
$ ccc value_conversion.c
$ ccc strdup.c
$
$ library/create minc.olb
$ library/replace minc dim_conversion, image_conversion, -
minc_convenience, minc_error, minc_globdef, netcdf_convenience, -
value_conversion, strdup
$exit:
$ set nover
| DIGITAL Command Language | 4 | arobert01/ITK | Modules/ThirdParty/MINC/src/libminc/libsrc/Make.com | [
"Apache-2.0"
] |
extends SelectionTool
var _last_position := Vector2.INF
var _draw_points := []
func draw_start(position : Vector2) -> void:
.draw_start(position)
if !_move:
_draw_points.append(position)
_last_position = position
func draw_move(position : Vector2) -> void:
if selection_node.arrow_key_move:
return
.draw_move(position)
if !_move:
append_gap(_last_position, position)
_last_position = position
_draw_points.append(position)
_offset = position
func draw_end(position : Vector2) -> void:
if selection_node.arrow_key_move:
return
if !_move:
_draw_points.append(position)
.draw_end(position)
func draw_preview() -> void:
if _last_position != Vector2.INF and !_move:
var canvas : Node2D = Global.canvas.previews
var _position := canvas.position
var _scale := canvas.scale
if Global.mirror_view:
_position.x = _position.x + Global.current_project.size.x
_scale.x = -1
canvas.draw_set_transform(_position, canvas.rotation, _scale)
var indicator := _fill_bitmap_with_points(_draw_points, Global.current_project.size)
for line in _create_polylines(indicator):
canvas.draw_polyline(PoolVector2Array(line), Color.black)
# Handle mirroring
if tool_slot.horizontal_mirror:
for line in _create_polylines(_fill_bitmap_with_points(mirror_array(_draw_points, true, false), Global.current_project.size)):
canvas.draw_polyline(PoolVector2Array(line), Color.black)
if tool_slot.vertical_mirror:
for line in _create_polylines(_fill_bitmap_with_points(mirror_array(_draw_points, true, true), Global.current_project.size)):
canvas.draw_polyline(PoolVector2Array(line), Color.black)
if tool_slot.vertical_mirror:
for line in _create_polylines(_fill_bitmap_with_points(mirror_array(_draw_points, false, true), Global.current_project.size)):
canvas.draw_polyline(PoolVector2Array(line), Color.black)
canvas.draw_set_transform(canvas.position, canvas.rotation, canvas.scale)
func apply_selection(_position) -> void:
var project : Project = Global.current_project
var cleared := false
if !_add and !_subtract and !_intersect:
cleared = true
Global.canvas.selection.clear_selection()
if _draw_points.size() > 3:
var selection_bitmap_copy : BitMap = project.selection_bitmap.duplicate()
var bitmap_size : Vector2 = selection_bitmap_copy.get_size()
if _intersect:
selection_bitmap_copy.set_bit_rect(Rect2(Vector2.ZERO, bitmap_size), false)
lasso_selection(selection_bitmap_copy, _draw_points)
# Handle mirroring
if tool_slot.horizontal_mirror:
lasso_selection(selection_bitmap_copy, mirror_array(_draw_points, true, false))
if tool_slot.vertical_mirror:
lasso_selection(selection_bitmap_copy, mirror_array(_draw_points, true, true))
if tool_slot.vertical_mirror:
lasso_selection(selection_bitmap_copy, mirror_array(_draw_points, false, true))
project.selection_bitmap = selection_bitmap_copy
Global.canvas.selection.big_bounding_rectangle = project.get_selection_rectangle(project.selection_bitmap)
else:
if !cleared:
Global.canvas.selection.clear_selection()
Global.canvas.selection.commit_undo("Rectangle Select", undo_data)
_draw_points.clear()
_last_position = Vector2.INF
func lasso_selection(bitmap : BitMap, points : PoolVector2Array) -> void:
var project : Project = Global.current_project
var size := bitmap.get_size()
for point in points:
if point.x < 0 or point.y < 0 or point.x >= size.x or point.y >= size.y:
continue
if _intersect:
if project.selection_bitmap.get_bit(point):
bitmap.set_bit(point, true)
else:
bitmap.set_bit(point, !_subtract)
var v := Vector2()
var image_size : Vector2 = project.size
for x in image_size.x:
v.x = x
for y in image_size.y:
v.y = y
if Geometry.is_point_in_polygon(v, points):
if _intersect:
if project.selection_bitmap.get_bit(v):
bitmap.set_bit(v, true)
else:
bitmap.set_bit(v, !_subtract)
# Bresenham's Algorithm
# Thanks to https://godotengine.org/qa/35276/tile-based-line-drawing-algorithm-efficiency
func append_gap(start : Vector2, end : Vector2) -> void:
var dx := int(abs(end.x - start.x))
var dy := int(-abs(end.y - start.y))
var err := dx + dy
var e2 := err << 1
var sx = 1 if start.x < end.x else -1
var sy = 1 if start.y < end.y else -1
var x = start.x
var y = start.y
while !(x == end.x && y == end.y):
e2 = err << 1
if e2 >= dy:
err += dy
x += sx
if e2 <= dx:
err += dx
y += sy
_draw_points.append(Vector2(x, y))
func _fill_bitmap_with_points(points: Array, size: Vector2) -> BitMap:
var bitmap := BitMap.new()
bitmap.create(size)
for point in points:
if point.x < 0 or point.y < 0 or point.x >= size.x or point.y >= size.y:
continue
bitmap.set_bit(point, 1)
return bitmap
func mirror_array(array : Array, h : bool, v : bool) -> Array:
var new_array := []
var project := Global.current_project
for point in array:
if h and v:
new_array.append(Vector2(project.x_symmetry_point - point.x, project.y_symmetry_point - point.y))
elif h:
new_array.append(Vector2(project.x_symmetry_point - point.x, point.y))
elif v:
new_array.append(Vector2(point.x, project.y_symmetry_point - point.y))
return new_array
| GDScript | 5 | triptych/Pixelorama | src/Tools/SelectionTools/Lasso.gd | [
"MIT"
] |
CREATE TABLE `tb_hxrlnujcrv` (
`col_fkstgdmdmv` varbinary(215) DEFAULT '\0',
`col_oyzofwwoch` mediumblob,
`col_exhsgobpvc` tinyint(246) zerofill NOT NULL,
`col_ypcuorizvb` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 NULL DEFAULT 'enum_or_set_0',
PRIMARY KEY (`col_exhsgobpvc`),
CONSTRAINT UNIQUE `col_exhsgobpvc` (`col_exhsgobpvc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `tb_njohawksae` (
`col_knuawjkxqc` year DEFAULT '2019',
`col_bhfbpfgzco` mediumtext CHARACTER SET utf8,
`col_aqkzimqpda` bit(37) DEFAULT b'0',
CONSTRAINT UNIQUE `uk_enknmzojsn` (`col_knuawjkxqc`),
UNIQUE KEY `col_aqkzimqpda` (`col_aqkzimqpda`)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_iztgdcpcld` (
`col_rvnhrlexjo` time DEFAULT '00:00:00',
`col_fwwgntdsdt` smallint zerofill,
`col_yxejjdacht` int(213) zerofill NOT NULL,
UNIQUE KEY `uk_svckkuvqce` (`col_rvnhrlexjo`,`col_fwwgntdsdt`),
UNIQUE INDEX `uk_amgxauyvbp` (`col_rvnhrlexjo`,`col_fwwgntdsdt`)
) DEFAULT CHARSET=latin1;
CREATE TABLE `tb_lsynbmkqdy` LIKE `tb_hxrlnujcrv`;
CREATE TABLE `tb_lqihveibyp` (
`col_ttqqizkwig` bit(43) NULL DEFAULT b'0',
`col_yvgpfjhjcj` timestamp(5) NULL,
`col_cuvrdliegh` mediumint unsigned zerofill
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_vkycuerrcd` (
`col_ennnhbifuc` tinytext CHARACTER SET utf8,
`col_argkmjdhlo` text(1982098738) CHARACTER SET utf8,
`col_nkqouukkqn` date DEFAULT '2019-07-04',
CONSTRAINT `symb_rkcyrcasyq` UNIQUE `uk_dmsqvpcazv` (`col_nkqouukkqn`),
UNIQUE KEY `uk_stwkfixzhd` (`col_ennnhbifuc`(11),`col_nkqouukkqn`)
) DEFAULT CHARSET=utf8;
RENAME TABLE `tb_njohawksae` TO `tb_gcvlfgdqvw`;
RENAME TABLE `tb_lqihveibyp` TO `tb_sugaoprlwz`;
RENAME TABLE `tb_hxrlnujcrv` TO `tb_qqtidoozva`;
RENAME TABLE `tb_sugaoprlwz` TO `tb_kubnsybcaf`;
RENAME TABLE `tb_lsynbmkqdy` TO `tb_ssvyhzkjrr`;
RENAME TABLE `tb_vkycuerrcd` TO `tb_skbxuhpnhx`, `tb_gcvlfgdqvw` TO `tb_evibhvcuqj`;
RENAME TABLE `tb_skbxuhpnhx` TO `tb_qlelzwesdb`, `tb_qqtidoozva` TO `tb_bjsplgjemd`;
RENAME TABLE `tb_ssvyhzkjrr` TO `tb_dxadqwfhhb`, `tb_evibhvcuqj` TO `tb_zflebwrowg`;
DROP TABLE tb_zflebwrowg;
DROP TABLE tb_qlelzwesdb;
CREATE TABLE `tb_hxrlnujcrv` (
`col_fkstgdmdmv` varbinary(215) DEFAULT '\0',
`col_oyzofwwoch` mediumblob,
`col_exhsgobpvc` tinyint(246) zerofill NOT NULL,
`col_ypcuorizvb` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 NULL DEFAULT 'enum_or_set_0',
PRIMARY KEY (`col_exhsgobpvc`),
CONSTRAINT UNIQUE `col_exhsgobpvc` (`col_exhsgobpvc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `tb_njohawksae` (
`col_knuawjkxqc` year DEFAULT '2019',
`col_bhfbpfgzco` mediumtext CHARACTER SET utf8,
`col_aqkzimqpda` bit(37) DEFAULT b'0',
CONSTRAINT UNIQUE `uk_enknmzojsn` (`col_knuawjkxqc`),
UNIQUE KEY `col_aqkzimqpda` (`col_aqkzimqpda`)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_iztgdcpcld` (
`col_rvnhrlexjo` time DEFAULT '00:00:00',
`col_fwwgntdsdt` smallint zerofill,
`col_yxejjdacht` int(213) zerofill NOT NULL,
UNIQUE KEY `uk_svckkuvqce` (`col_rvnhrlexjo`,`col_fwwgntdsdt`),
UNIQUE INDEX `uk_amgxauyvbp` (`col_rvnhrlexjo`,`col_fwwgntdsdt`)
) DEFAULT CHARSET=latin1;
CREATE TABLE `tb_lsynbmkqdy` LIKE `tb_hxrlnujcrv`;
CREATE TABLE `tb_lqihveibyp` (
`col_ttqqizkwig` bit(43) NULL DEFAULT b'0',
`col_yvgpfjhjcj` timestamp(5) NULL,
`col_cuvrdliegh` mediumint unsigned zerofill
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_vkycuerrcd` (
`col_ennnhbifuc` tinytext CHARACTER SET utf8,
`col_argkmjdhlo` text(1982098738) CHARACTER SET utf8,
`col_nkqouukkqn` date DEFAULT '2019-07-04',
CONSTRAINT `symb_rkcyrcasyq` UNIQUE `uk_dmsqvpcazv` (`col_nkqouukkqn`),
UNIQUE KEY `uk_stwkfixzhd` (`col_ennnhbifuc`(11),`col_nkqouukkqn`)
) DEFAULT CHARSET=utf8;
RENAME TABLE `tb_njohawksae` TO `tb_gcvlfgdqvw`;
RENAME TABLE `tb_lqihveibyp` TO `tb_sugaoprlwz`;
RENAME TABLE `tb_hxrlnujcrv` TO `tb_qqtidoozva`;
RENAME TABLE `tb_sugaoprlwz` TO `tb_kubnsybcaf`;
RENAME TABLE `tb_lsynbmkqdy` TO `tb_ssvyhzkjrr`;
RENAME TABLE `tb_vkycuerrcd` TO `tb_skbxuhpnhx`, `tb_gcvlfgdqvw` TO `tb_evibhvcuqj`;
RENAME TABLE `tb_skbxuhpnhx` TO `tb_qlelzwesdb`, `tb_qqtidoozva` TO `tb_bjsplgjemd`;
RENAME TABLE `tb_ssvyhzkjrr` TO `tb_dxadqwfhhb`, `tb_evibhvcuqj` TO `tb_zflebwrowg`;
DROP TABLE tb_zflebwrowg;
DROP TABLE tb_qlelzwesdb;
CREATE TABLE `tb_hxrlnujcrv` (
`col_fkstgdmdmv` varbinary(215) DEFAULT '\0',
`col_oyzofwwoch` mediumblob,
`col_exhsgobpvc` tinyint(246) zerofill NOT NULL,
`col_ypcuorizvb` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 NULL DEFAULT 'enum_or_set_0',
PRIMARY KEY (`col_exhsgobpvc`),
CONSTRAINT UNIQUE `col_exhsgobpvc` (`col_exhsgobpvc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `tb_njohawksae` (
`col_knuawjkxqc` year DEFAULT '2019',
`col_bhfbpfgzco` mediumtext CHARACTER SET utf8,
`col_aqkzimqpda` bit(37) DEFAULT b'0',
CONSTRAINT UNIQUE `uk_enknmzojsn` (`col_knuawjkxqc`),
UNIQUE KEY `col_aqkzimqpda` (`col_aqkzimqpda`)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_iztgdcpcld` (
`col_rvnhrlexjo` time DEFAULT '00:00:00',
`col_fwwgntdsdt` smallint zerofill,
`col_yxejjdacht` int(213) zerofill NOT NULL,
UNIQUE KEY `uk_svckkuvqce` (`col_rvnhrlexjo`,`col_fwwgntdsdt`),
UNIQUE INDEX `uk_amgxauyvbp` (`col_rvnhrlexjo`,`col_fwwgntdsdt`)
) DEFAULT CHARSET=latin1;
CREATE TABLE `tb_lsynbmkqdy` LIKE `tb_hxrlnujcrv`;
CREATE TABLE `tb_lqihveibyp` (
`col_ttqqizkwig` bit(43) NULL DEFAULT b'0',
`col_yvgpfjhjcj` timestamp(5) NULL,
`col_cuvrdliegh` mediumint unsigned zerofill
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_vkycuerrcd` (
`col_ennnhbifuc` tinytext CHARACTER SET utf8,
`col_argkmjdhlo` text(1982098738) CHARACTER SET utf8,
`col_nkqouukkqn` date DEFAULT '2019-07-04',
CONSTRAINT `symb_rkcyrcasyq` UNIQUE `uk_dmsqvpcazv` (`col_nkqouukkqn`),
UNIQUE KEY `uk_stwkfixzhd` (`col_ennnhbifuc`(11),`col_nkqouukkqn`)
) DEFAULT CHARSET=utf8;
RENAME TABLE `tb_njohawksae` TO `tb_gcvlfgdqvw`;
RENAME TABLE `tb_lqihveibyp` TO `tb_sugaoprlwz`;
RENAME TABLE `tb_hxrlnujcrv` TO `tb_qqtidoozva`;
RENAME TABLE `tb_sugaoprlwz` TO `tb_kubnsybcaf`;
RENAME TABLE `tb_lsynbmkqdy` TO `tb_ssvyhzkjrr`;
RENAME TABLE `tb_vkycuerrcd` TO `tb_skbxuhpnhx`, `tb_gcvlfgdqvw` TO `tb_evibhvcuqj`;
RENAME TABLE `tb_skbxuhpnhx` TO `tb_qlelzwesdb`, `tb_qqtidoozva` TO `tb_bjsplgjemd`;
RENAME TABLE `tb_ssvyhzkjrr` TO `tb_dxadqwfhhb`, `tb_evibhvcuqj` TO `tb_zflebwrowg`;
DROP TABLE tb_zflebwrowg;
DROP TABLE tb_qlelzwesdb;
CREATE TABLE `tb_hxrlnujcrv` (
`col_fkstgdmdmv` varbinary(215) DEFAULT '\0',
`col_oyzofwwoch` mediumblob,
`col_exhsgobpvc` tinyint(246) zerofill NOT NULL,
`col_ypcuorizvb` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 NULL DEFAULT 'enum_or_set_0',
PRIMARY KEY (`col_exhsgobpvc`),
CONSTRAINT UNIQUE `col_exhsgobpvc` (`col_exhsgobpvc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `tb_njohawksae` (
`col_knuawjkxqc` year DEFAULT '2019',
`col_bhfbpfgzco` mediumtext CHARACTER SET utf8,
`col_aqkzimqpda` bit(37) DEFAULT b'0',
CONSTRAINT UNIQUE `uk_enknmzojsn` (`col_knuawjkxqc`),
UNIQUE KEY `col_aqkzimqpda` (`col_aqkzimqpda`)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_iztgdcpcld` (
`col_rvnhrlexjo` time DEFAULT '00:00:00',
`col_fwwgntdsdt` smallint zerofill,
`col_yxejjdacht` int(213) zerofill NOT NULL,
UNIQUE KEY `uk_svckkuvqce` (`col_rvnhrlexjo`,`col_fwwgntdsdt`),
UNIQUE INDEX `uk_amgxauyvbp` (`col_rvnhrlexjo`,`col_fwwgntdsdt`)
) DEFAULT CHARSET=latin1;
CREATE TABLE `tb_lsynbmkqdy` LIKE `tb_hxrlnujcrv`;
CREATE TABLE `tb_lqihveibyp` (
`col_ttqqizkwig` bit(43) NULL DEFAULT b'0',
`col_yvgpfjhjcj` timestamp(5) NULL,
`col_cuvrdliegh` mediumint unsigned zerofill
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_vkycuerrcd` (
`col_ennnhbifuc` tinytext CHARACTER SET utf8,
`col_argkmjdhlo` text(1982098738) CHARACTER SET utf8,
`col_nkqouukkqn` date DEFAULT '2019-07-04',
CONSTRAINT `symb_rkcyrcasyq` UNIQUE `uk_dmsqvpcazv` (`col_nkqouukkqn`),
UNIQUE KEY `uk_stwkfixzhd` (`col_ennnhbifuc`(11),`col_nkqouukkqn`)
) DEFAULT CHARSET=utf8;
RENAME TABLE `tb_njohawksae` TO `tb_gcvlfgdqvw`;
RENAME TABLE `tb_lqihveibyp` TO `tb_sugaoprlwz`;
RENAME TABLE `tb_hxrlnujcrv` TO `tb_qqtidoozva`;
RENAME TABLE `tb_sugaoprlwz` TO `tb_kubnsybcaf`;
RENAME TABLE `tb_lsynbmkqdy` TO `tb_ssvyhzkjrr`;
RENAME TABLE `tb_vkycuerrcd` TO `tb_skbxuhpnhx`, `tb_gcvlfgdqvw` TO `tb_evibhvcuqj`;
RENAME TABLE `tb_skbxuhpnhx` TO `tb_qlelzwesdb`, `tb_qqtidoozva` TO `tb_bjsplgjemd`;
RENAME TABLE `tb_ssvyhzkjrr` TO `tb_dxadqwfhhb`, `tb_evibhvcuqj` TO `tb_zflebwrowg`;
DROP TABLE tb_zflebwrowg;
DROP TABLE tb_qlelzwesdb;
| SQL | 2 | yuanweikang2020/canal | parse/src/test/resources/ddl/table/test_30.sql | [
"Apache-2.0"
] |
import Prim "mo:⛔";
actor a {
public func go() {
// Time should be constant within the function execution
// (drun currently returns 0 anyways)
assert(Prim.time() == Prim.time());
}
};
a.go(); //OR-CALL ingress go "DIDL\x00\x00"
| Modelica | 3 | olaszakos/motoko | test/run-drun/time.mo | [
"Apache-2.0"
] |
#*****************************************************************************
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
# Date : 9 November 2011 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXGTK__
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXGTK2__
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXX11__
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
.else
CXX_DEFINE =
.endif
.endif
.endif
.endif
.suffixes : .cpp
.cpp.obj :
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
all :
.ifdef __WXMOTIF__
$(MMS)$(MMSQUALIFIERS) widgets.exe
.else
.ifdef __WXGTK__
$(MMS)$(MMSQUALIFIERS) widgets_gtk.exe
.else
.ifdef __WXGTK2__
$(MMS)$(MMSQUALIFIERS) widgets_gtk2.exe
.else
.ifdef __WXX11__
$(MMS)$(MMSQUALIFIERS) widgets_x11.exe
.endif
.endif
.endif
.endif
OBJS=bmpcombobox.obj,button.obj,checkbox.obj,choice.obj,clrpicker.obj,\
combobox.obj,datepick.obj,dirctrl.obj,dirpicker.obj,editlbox.obj,\
filectrl.obj,filepicker.obj,fontpicker.obj,gauge.obj,hyperlnk.obj,\
itemcontainer.obj,listbox.obj,notebook.obj,odcombobox.obj,\
radiobox.obj,searchctrl.obj,slider.obj,spinbtn.obj,statbmp.obj,\
static.obj,textctrl.obj,toggle.obj,widgets.obj
.ifdef __WXMOTIF__
widgets.exe : $(OBJS)
cxxlink/exec=widgets.exe $(OBJS),[--.lib]vms/opt
.else
.ifdef __WXGTK__
widgets_gtk.exe : $(OBJS)
cxxlink/exec=widgets_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
.else
.ifdef __WXGTK2__
widgets_gtk2.exe : $(OBJS)
cxxlink/exec=widgets_gtk2.exe $(OBJS),[--.lib]vms_gtk2/opt
.else
.ifdef __WXX11__
widgets_x11.exe : $(OBJS)
cxxlink/exec=widgets_x11.exe $(OBJS),[--.lib]vms_x11_univ/opt
.endif
.endif
.endif
.endif
bmpcombobox.obj : bmpcombobox.cpp
button.obj : button.cpp
checkbox.obj : checkbox.cpp
choice.obj : choice.cpp
clrpicker.obj : clrpicker.cpp
combobox.obj : combobox.cpp
datepick.obj : datepick.cpp
dirctrl.obj : dirctrl.cpp
dirpicker.obj : dirpicker.cpp
editlbox.obj : editlbox.cpp
filectrl.obj : filectrl.cpp
filepicker.obj : filepicker.cpp
fontpicker.obj : fontpicker.cpp
gauge.obj : gauge.cpp
hyperlnk.obj : hyperlnk.cpp
itemcontainer.obj : itemcontainer.cpp
listbox.obj : listbox.cpp
notebook.obj : notebook.cpp
odcombobox.obj : odcombobox.cpp
radiobox.obj : radiobox.cpp
searchctrl.obj : searchctrl.cpp
slider.obj : slider.cpp
spinbtn.obj : spinbtn.cpp
statbmp.obj : statbmp.cpp
static.obj : static.cpp
textctrl.obj : textctrl.cpp
toggle.obj : toggle.cpp
widgets.obj : widgets.cpp
cxx $(CXXFLAGS)$(CXX_DEFINE)/object=widgets.obj widgets.cpp
| Module Management System | 3 | madanagopaltcomcast/pxCore | examples/pxScene2d/external/WinSparkle/3rdparty/wxWidgets/samples/widgets/descrip.mms | [
"Apache-2.0"
] |
import 'package:flutter/material.dart';
import 'package:rounded_loading_button/rounded_loading_button.dart';
import 'package:supabase/supabase.dart' as supabase;
import 'package:supabase_flutter/supabase_flutter.dart';
import '/components/auth_state.dart';
import '/utils/helpers.dart';
class SignInScreen extends StatefulWidget {
@override
_SignInState createState() => _SignInState();
}
class _SignInState extends AuthState<SignInScreen> {
final formKey = GlobalKey<FormState>();
final scaffoldKey = GlobalKey<ScaffoldState>();
final RoundedLoadingButtonController _magicLinkController =
RoundedLoadingButtonController();
String _email = '';
@override
void onErrorAuthenticating(String message) {
showMessage(message);
}
Future _onMagicLinkPress(BuildContext context) async {
final form = formKey.currentState;
if (form != null && form.validate()) {
form.save();
FocusScope.of(context).unfocus();
final response = await Supabase.instance.client.auth.signIn(
email: _email,
options: supabase.AuthOptions(
redirectTo: authRedirectUri,
),
);
if (response.error != null) {
showMessage(response.error!.message);
_magicLinkController.reset();
} else {
showMessage('Check your email for the login link!');
}
} else {
_magicLinkController.reset();
}
}
void showMessage(String message) {
final snackbar = SnackBar(content: Text(message));
ScaffoldMessenger.of(scaffoldKey.currentContext!).showSnackBar(snackbar);
}
@override
Widget build(BuildContext context) {
return Scaffold(
key: scaffoldKey,
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: const Text('Sign in'),
),
body: Padding(
padding: const EdgeInsets.all(15.0),
child: Form(
key: formKey,
child: Column(
children: <Widget>[
const SizedBox(height: 25.0),
TextFormField(
onSaved: (value) => _email = value ?? '',
validator: (val) => validateEmail(val),
keyboardType: TextInputType.emailAddress,
decoration: const InputDecoration(
hintText: 'Enter your email address',
),
),
const SizedBox(height: 50.0),
RoundedLoadingButton(
color: Colors.green,
controller: _magicLinkController,
onPressed: () {
_onMagicLinkPress(context);
},
child: const Text(
'Send magic link',
style: TextStyle(fontSize: 20, color: Colors.white),
),
),
],
),
),
),
);
}
}
| Dart | 5 | ProPiloty/supabase | examples/flutter-user-management/lib/screens/signin_screen.dart | [
"Apache-2.0"
] |
=pod
=head1 NAME
EVP_CIPHER-CAMELLIA - The CAMELLIA EVP_CIPHER implementations
=head1 DESCRIPTION
Support for CAMELLIA symmetric encryption using the B<EVP_CIPHER> API.
=head2 Algorithm Names
The following algorithms are available in the default provider:
=over 4
=item "CAMELLIA-128-CBC", "CAMELLIA-192-CBC" and "CAMELLIA-256-CBC"
=item "CAMELLIA-128-CBC-CTS", "CAMELLIA-192-CBC-CTS" and "CAMELLIA-256-CBC-CTS"
=item "CAMELLIA-128-CFB", "CAMELLIA-192-CFB", "CAMELLIA-256-CFB",
"CAMELLIA-128-CFB1", "CAMELLIA-192-CFB1", "CAMELLIA-256-CFB1",
"CAMELLIA-128-CFB8", "CAMELLIA-192-CFB8" and "CAMELLIA-256-CFB8"
=item "CAMELLIA-128-CTR", "CAMELLIA-192-CTR" and "CAMELLIA-256-CTR"
=item "CAMELLIA-128-ECB", "CAMELLIA-192-ECB" and "CAMELLIA-256-ECB"
=item "CAMELLIA-192-OFB", "CAMELLIA-128-OFB" and "CAMELLIA-256-OFB"
=back
=head2 Parameters
This implementation supports the parameters described in
L<EVP_EncryptInit(3)/PARAMETERS>.
=head1 SEE ALSO
L<provider-cipher(7)>, L<OSSL_PROVIDER-default(7)>
=head1 COPYRIGHT
Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.
=cut
| Pod | 3 | pmesnier/openssl | doc/man7/EVP_CIPHER-CAMELLIA.pod | [
"Apache-2.0"
] |
const string foo = "bar"
struct a_struct {
1: bool im_true,
2: bool im_false,
3: i8 a_bite,
4: i16 integer16,
5: i32 integer32,
6: i64 integer64,
7: double double_precision,
8: string some_characters,
9: string zomg_unicode,
10: bool what_who,
}
service AService {
i32 a_procedure(1: i32 arg)
}
| Thrift | 2 | Jimexist/thrift | compiler/cpp/test/compiler/Included.thrift | [
"Apache-2.0"
] |
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
*/
function ack(m,n) {
if (m == 0) {
return n + 1;
}
if (n == 0) {
n = 1;
} else {
n = ack(m, n - 1);
}
return ack(m - 1, n);
}
function execute() {
ack(2,3);
}
function main() {
return execute;
}
| Slash | 3 | LakshyAAAgrawal/streamblocks-graalvm | tck/src/com/oracle/truffle/sl/tck/resources/Ackermann.sl | [
"UPL-1.0"
] |
# Copyright (c) 2022 Fyde Innovations Limited and the openFyde Authors.
# Distributed under the license specified in the root directory of this project.
# The class to append/remove flags to/from /etc/chrome_dev.conf
RDEPEND="chromeos-base/chromeos-login"
DEPEND="${RDEPEND}"
#the flags need be added"
#CHROME_DEV_FLAGS=""
#the flags need be removed"
#CHROME_REMOVE_FLAGS=""
CHROME_TMP_CONFIG="chrome_dev.conf"
S=${WORKDIR}
check_file() {
if [ ! -f $1 ]; then
eerror "$1 doesn't exist."
fi
}
append_flags() {
local chrome_dev=$CHROME_TMP_CONFIG
for flag in $@; do
if [ -z "`grep -e $flag $chrome_dev`" ]; then
echo $flag >> $chrome_dev
fi
done
}
remove_flags() {
local chrome_dev=$CHROME_TMP_CONFIG
for flag in $@; do
sed -i "/${flag}/d" $chrome_dev
done
}
src_compile() {
check_file ${ROOT}/etc/chrome_dev.conf
cat ${ROOT}/etc/chrome_dev.conf > $CHROME_TMP_CONFIG
if [ -n "$CHROME_DEV_FLAGS" ]; then
einfo "append flags: ${CHROME_DEV_FLAGS}"
append_flags "$CHROME_DEV_FLAGS"
fi
if [ -n "$CHROME_REMOVE_FLAGS" ]; then
einfo "remove flags: ${CHROME_DEV_FLAGS}"
remove_flags "$CHROME_REMOVE_FLAGS"
fi
}
src_install() {
insinto /etc
doins $CHROME_TMP_CONFIG
}
| Gentoo Eclass | 4 | FydeOS/chromium_os_for_raspberry_pi | project-cros-pi/eclass/chrome-dev-flag.eclass | [
"BSD-2-Clause"
] |
apiVersion: release-notes/v2
kind: bug-fix
area: installation
issue:
- 29364
releaseNotes:
- |
**Fixed** Newer control plane installations were removing permissions for `rbac.istio.io` from `istiod`, causing
older control planes relying on that CRD group to hang on restart.
| YAML | 2 | rveerama1/istio | releasenotes/notes/29372.yaml | [
"Apache-2.0"
] |
<%namespace name="ie" file="ie.mako" />
<%
# Sets ID and sets up a lot of other variables
ie_request.load_deploy_config()
# Define a volume that will be mounted into the container.
# This is a useful way to provide access to large files in the container,
# if the user knows ahead of time that they will need it.
import os
mount_path = hda.file_name
data_vol = ie_request.volume(mount_path, '/data/data_pack.tar.gz', mode='rw')
# Add all environment variables collected from Galaxy's IE infrastructure
# Launch the IE.
ie_request.launch(
image = trans.request.params.get('image_tag', None),
additional_ids = trans.request.params.get('additional_dataset_ids', None),
volumes = [data_vol]
)
# Only once the container is launched can we template our URLs. The ie_request
# doesn't have all of the information needed until the container is running.
url = ie_request.url_template('${PROXY_URL}')
%>
<html>
<head>
${ ie.load_default_js() }
${ ie.load_default_app() }
</head>
<body>
<script type="text/javascript">
${ ie.default_javascript_variables() }
var url = '${ url }';
load_hicexplorer(url);
</script>
<div id="main" width="100%" height="100%">
</div>
</body>
</html>
| Mako | 3 | rikeshi/galaxy | config/plugins/interactive_environments/hicbrowser/templates/hicbrowser.mako | [
"CC-BY-3.0"
] |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
############################################################################## */
inputFile := dataset('input', {string9 ssn, string9 did, string20 addr},thor);
keyedFile := dataset('keyed', {string9 ssn, string9 did, string20 surname, string20 forename}, thor, encrypt('myKey'));
SsnKey := INDEX(keyedFile, {ssn,unsigned8 fpos {virtual(fileposition)}}, '~index.ssn');
DidKey := INDEX(keyedFile, {did,unsigned8 fpos {virtual(fileposition)}}, '~index.did');
filledRec := RECORD
string9 ssn;
string9 did;
string20 addr;
string20 surname;
string20 forename;
END;
filledRec getNames(inputFile l, keyedFile r) := TRANSFORM
SELF := l;
SELF := r;
END;
KeyedTable := keyed(keyedFile, SsnKey, DidKey);
FilledRecs := join(inputFile, KeyedTable,left.did=right.did,getNames(left,right), KEYED(DidKey));
output(FilledRecs);
| ECL | 4 | miguelvazq/HPCC-Platform | ecl/regress/fetch2.ecl | [
"Apache-2.0"
] |
.foo.svelte-xyz{color:red}[class~="bar"].svelte-xyz{background:blue} | CSS | 2 | Theo-Steiner/svelte | test/css/samples/attribute-selector-word-arbitrary-whitespace/expected.css | [
"MIT"
] |
/*
* Copyright (C) 2009 The Guava Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.common.io;
import com.google.common.testing.NullPointerTester;
import com.google.common.testing.NullPointerTester.Visibility;
import java.io.File;
import java.io.FilenameFilter;
import java.util.regex.PatternSyntaxException;
import junit.framework.TestCase;
/**
* Unit test for {@link PatternFilenameFilter}.
*
* @author Chris Nokleberg
*/
public class PatternFilenameFilterTest extends TestCase {
public void testSyntaxException() {
try {
new PatternFilenameFilter("(");
fail("expected exception");
} catch (PatternSyntaxException expected) {
}
}
public void testAccept() {
File dir = new File("foo");
FilenameFilter filter = new PatternFilenameFilter("a+");
assertTrue(filter.accept(dir, "a"));
assertTrue(filter.accept(dir, "aaaa"));
assertFalse(filter.accept(dir, "b"));
// Show that dir is ignored
assertTrue(filter.accept(null, "a"));
}
public void testNulls() throws Exception {
NullPointerTester tester = new NullPointerTester();
tester.testConstructors(PatternFilenameFilter.class, Visibility.PACKAGE);
tester.testStaticMethods(PatternFilenameFilter.class, Visibility.PACKAGE); // currently none
// The reason that we skip this method is discussed in a comment on the method.
tester.ignore(PatternFilenameFilter.class.getMethod("accept", File.class, String.class));
tester.testInstanceMethods(new PatternFilenameFilter(".*"), Visibility.PACKAGE);
}
}
| Java | 5 | ksodhi2/guava | guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java | [
"Apache-2.0"
] |
--TEST--
Testing Closure::fromCallable() functionality: Rebinding
--FILE--
<?php
class A {
public function method() {
var_dump($this);
}
}
class B {
}
$fn = Closure::fromCallable([new A, 'method']);
$fn->call(new B);
?>
--EXPECTF--
Warning: Cannot bind method A::method() to object of class B in %s on line %d
| PHP | 3 | thiagooak/php-src | Zend/tests/closures/closure_from_callable_rebinding.phpt | [
"PHP-3.01"
] |
/* ROM function interface esp32s3.rom.newlib-nano.ld for esp32s3
*
*
* Generated from ./interface-esp32s3.yml md5sum 39c4ce259b11323b9404c192b01b712b
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group newlib_nano_format
***************************************/
/* Functions */
__sprint_r = 0x4000156c;
_fiprintf_r = 0x40001578;
_fprintf_r = 0x40001584;
_printf_common = 0x40001590;
_printf_i = 0x4000159c;
_vfiprintf_r = 0x400015a8;
_vfprintf_r = 0x400015b4;
fiprintf = 0x400015c0;
fprintf = 0x400015cc;
printf = 0x400015d8;
vfiprintf = 0x400015e4;
vfprintf = 0x400015f0;
| Linker Script | 2 | lovyan03/esp-idf | components/esp_rom/esp32s3/ld/esp32s3.rom.newlib-nano.ld | [
"Apache-2.0"
] |
@load "redis"
BEGIN{
ONE_WEEK_IN_SECONDS = 7*86400
VOTE_SCORE = 432
ARTICLES_PER_PAGE = 25
c=connectRedis()
select(c,12)
articleId=postArticle(c, "username", "A title", "http://www.google.com")
print "We posted a new article with id: "articleId
print "Its HASH looks like:"
hgetall(c,"article:"articleId,RET)
for(i=1;i<=length(RET);i+=2) {
print " "RET[i]": "RET[i+1]
}
print
articleVote(c, "other_user", "article:"articleId)
votes = hget(c,"article:"articleId, "votes")
print "We voted for the article, it now has votes: "votes
print "The currently highest-scoring articles are:"
getArticles(c, 1, articles) # articles is an array
dumparray(articles,"")
ARR[1]="new-group"
addGroups(c, articleId, ARR)
print "We added the article to a new group, other articles include:"
delete(articles)
getGroupArticles(c, "new-group", 1, articles)
dumparray(articles,"")
}
function getGroupArticles(c, group, page, articles) {
return getGroupArticles1(c, group, page, "score:", articles)
}
function getGroupArticles1(c, group, page, order, articles) {
key=order""group
if(!exists(c,key)) {
ARI[1]="group:"group
ARI[2]=order
zinterstore(c,key,ARI,"aggregate max")
expire(c,key, 60)
}
getArticles1(c, page, key, articles)
}
function getArticles(c, page, articles) {
getArticles1(conn, page, "score:", articles)
}
function getArticles1(c, page, order, articles) {
start = (page - 1) * ARTICLES_PER_PAGE
end = start + ARTICLES_PER_PAGE - 1
delete(RET)
zrevrange(c,order,RET,start,end)
for(i in RET) {
hgetall(c,RET[i],AR)
for(j=1;j<=length(AR);j+=2) {
articles[i][AR[j]]=AR[j+1]
}
articles[i]["id"]=RET[i]
}
}
function addGroups(c, articleId, TOADD) {
article = "article:"articleId
for(i in TOADD) {
sadd(c,"group:"TOADD[i], article)
}
}
function postArticle(c, user,title,link) {
articleId=incr(c,"article:")
voted="voted:"articleId;
sadd(c,voted,user)
expire(c,voted,ONE_WEEK_IN_SECONDS)
now=systime()
article = "article:"articleId
AR[1]="title"
AR[2]=title
AR[3]="link"
AR[4]="http://www.google.com"
AR[5]="user"
AR[6]=user
AR[7]="now"
AR[8]=now
AR[9]="votes"
AR[10]=1
hmset(c,article,AR)
zadd(c,"score:",now + VOTE_SCORE,article)
zadd(c,"time:",now,article)
return articleId
}
function articleVote(c, user, article) {
cutoff= systime() - ONE_WEEK_IN_SECONDS
if(zscore(c,"time:",article) < cutoff){
return
}
articleId = substr(article,index(article,":")+1)
if (sadd(c,"voted:"articleId,user) == 1) {
zincrby(c,"score:", VOTE_SCORE, article)
hincrby(c,article, "votes", 1)
}
}
function dumparray(array,e, i)
{
for (i in array){
if (isarray(array[i])){
print " id: "array[i]["id"]
dumparray(array[i],"")
}
else {
if(e){
printf("%s[%s] = %s\n",e,i, array[i])
}
else {
if(i=="id")
continue
else
printf(" %s = %s\n",i, array[i])
}
}
}
}
| Awk | 4 | tanxiazhe/redis-in-action | gawk/ch01/ch01.awk | [
"MIT"
] |
a { color: #122233 } | CSS | 4 | mengxy/swc | crates/swc_css_parser/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css | [
"Apache-2.0"
] |
/**
* representing a Branch of the FractalTree
* @author Lukas Klassen
*/
class Branch{
/**
* Start and end Point of the Branch
*/
public PVector begin;
public PVector end;
public boolean finished = false;
/**
* create Branch with beginning and end-Point
* @param beging Startpoint
* @param end Endpoint
*/
Branch(PVector begin, PVector end){
this.begin = begin;
this.end = end;
}
/**
* jitters the Branch (randomly change the end-Point a bit)
*/
void jitter(){
end.x += random(-1, 1);
end.y += random(-1, 1);
}
/**
* displays the Branch
*/
void show(){
stroke(255);
line(begin.x, begin.y, end.x, end.y);
}
/**
* generates a new Branch for the right-side
*/
Branch branchA(){
PVector dir = PVector.sub(end, begin);
dir.rotate(PI / 6);
dir.mult(0.67);
PVector newEnd = PVector.add(end, dir);
Branch b = new Branch(end, newEnd);
return b;
}
/**
* generates a new Branch for the left-side
*/
Branch branchB(){
PVector dir = PVector.sub(end, begin);
dir.rotate(- PI / 4);
dir.mult(0.67);
PVector newEnd = PVector.add(end, dir);
Branch b = new Branch(end, newEnd);
return b;
}
} | Processing | 5 | aerinkayne/website | CodingChallenges/CC_015_FractalTreeArray/Processing/CC_015_FractalTreeArray/Branch.pde | [
"MIT"
] |
#!/bin/bash
# Copyright 2019 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -e
shopt -s nullglob
knownfolders="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/um/KnownFolders.h | sort -Vr | head -n 1)"
[[ -n $knownfolders ]] || { echo "Unable to find KnownFolders.h" >&2; exit 1; }
{
echo "// Code generated by 'mkknownfolderids.bash'; DO NOT EDIT."
echo
echo "package windows"
echo "type KNOWNFOLDERID GUID"
echo "var ("
while read -r line; do
[[ $line =~ DEFINE_KNOWN_FOLDER\((FOLDERID_[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+),[\t\ ]*(0x[^,]+)\) ]] || continue
printf "%s = &KNOWNFOLDERID{0x%08x, 0x%04x, 0x%04x, [8]byte{0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x}}\n" \
"${BASH_REMATCH[1]}" $(( "${BASH_REMATCH[2]}" )) $(( "${BASH_REMATCH[3]}" )) $(( "${BASH_REMATCH[4]}" )) \
$(( "${BASH_REMATCH[5]}" )) $(( "${BASH_REMATCH[6]}" )) $(( "${BASH_REMATCH[7]}" )) $(( "${BASH_REMATCH[8]}" )) \
$(( "${BASH_REMATCH[9]}" )) $(( "${BASH_REMATCH[10]}" )) $(( "${BASH_REMATCH[11]}" )) $(( "${BASH_REMATCH[12]}" ))
done < "$knownfolders"
echo ")"
} | gofmt > "zknownfolderids_windows.go"
| Shell | 4 | jtlisi/alertmanager | vendor/golang.org/x/sys/windows/mkknownfolderids.bash | [
"ECL-2.0",
"Apache-2.0"
] |
# fixed-point rpn calculator
include "bufio.sl";
include "fixed.sl";
include "grarr.sl";
include "malloc.sl";
include "stdio.sl";
var stack = grnew();
var push = func(val) {
grpush(stack, val);
};
var pop = func() {
return grpop(stack);
};
var stacktop = func() {
return grget(stack, grlen(stack)-1);
};
var operator = func(ch) {
var a;
var b;
if (ch == '+') {
b = pop();
a = pop();
push(a + b);
} else if (ch == '-') {
b = pop();
a = pop();
push(a - b);
} else if (ch == '*') {
b = pop();
a = pop();
push(fixmul(a, b));
} else if (ch == '/') {
b = pop();
a = pop();
push(fixdiv(a, b));
} else if (ch == 's') {
a = pop();
push(fixsin(a));
} else if (ch == 'c') {
a = pop();
push(fixcos(a));
} else if (ch == 't') {
a = pop();
push(fixtan(a));
} else if (ch == 'r') {
a = pop();
push(fixsqrt(a));
} else if (!iswhite(ch)) {
fprintf(2, "%c: unrecognised operator\n", [ch]);
};
};
var args = cmdargs()+1;
if (*args) fixinit(atoi(*args));
var in = bfdopen(0, O_READ);
var bufsz = 256;
var buf = malloc(bufsz);
*buf = 0;
var bufp = buf;
var ch;
while (1) {
ch = bgetc(in);
if (ch == EOF) {
break;
} else if (isdigit(ch) || ch == '_' || ch == '.') {
if ((bufp - buf) >= (bufsz-1)) {
fprintf(2, "input buffer overflow\n", 0);
exit(1);
};
if (ch == '_') ch = '-'; # underscore prefix for negative numbers
*(bufp++) = ch;
*bufp = 0;
} else {
if (*buf) {
push(fixatof(buf));
bufp = buf;
*bufp = 0;
};
if (ch == '\n') {
printf("%f\n", [stacktop()]);
} else {
operator(ch);
};
};
};
| Slash | 4 | jes/scamp-cpu | sys/fc.sl | [
"Unlicense"
] |
//Pressure sensor tube adapter
//Version 1.0
//March 20, 2020
/* Designed to fit
// * over the top of an MEAS MS5611 pressure sensor
// * connect to a 3-7mm ID flexible tubing
MEAS MS5611 specifications are available at https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5611-01BA03%7FB3%7Fpdf%7FEnglish%7FENG_DS_MS5611-01BA03_B3.pdf%7FCAT-BLPS0036
*/
/*
Copyright 2020 Alex Bobotek
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
//MS5611 dimensions
MSwidth=3;
MSlen=5;
MSh=1.8;
MSgap=0.15;
MShoodThick=.8;
MSheadroom=1; // free room over sensor inside hood
MSceilingThick=2.5;
barbID=2;
barbLen=15;
barbMinOD=3;
barbMaxOD=7.5;
barbMaxTaper=4;
barbMinTaper=3.5;
barbTaperLen=MSceilingThick+1.5;
taperSlope=1/3; // ratio of diameter change to height change
taperZ=3;
neckZ=1;
translate([10,10,0]) block();
barb();
module block() {
difference() {
cube([MSwidth+2*MSgap+2*MShoodThick,MSlen+2*MSgap+2*MShoodThick,MSh+MSheadroom+MSceilingThick]); // Outer shell
translate([MShoodThick,MShoodThick,0]) cube([MSwidth+2*MSgap,MSlen+2*MSgap,MSh+MSheadroom]); // Inner cavity
translate([MSwidth/2+MSgap+MShoodThick,MSlen/2+MSgap+MShoodThick,MSh+MSheadroom])
cylinder(d1=barbMinTaper,d2=barbMaxTaper,h=MSceilingThick, $fn=72); // Tapered socket
//translate([MSwidth/2+MSgap+MShoodThick,MSlen/2+MSgap+MShoodThick,0])
//cylinder(d=barbID,h=MSh+MSheadroom+MSceilingThick, $fn=24);
}
};
module ring(minD,ringH) {
cylinder(d1=minD,d2=minD+ringH*taperSlope,h=ringH,$fn=72);
translate([0,0,ringH]) cylinder(d=minD,h=neckZ,$fn=72);
}
module barb(){
difference() {
union() {
translate([0,0,3*(taperZ+neckZ)]) cylinder(d2=barbMinTaper,d1=barbMaxTaper,h=MSceilingThick, $fn=72); // Tapered socket
translate([0,0,2*(taperZ+neckZ)]) ring(minD=4,ringH=3);
translate([0,0,1*(taperZ+neckZ)]) ring(minD=3.5,ringH=3);
translate([0,0,0*(taperZ+neckZ)]) ring(minD=3,ringH=3);
}
cylinder(d=barbID,h=4*(taperZ+neckZ),$fn=72);
}
} | OpenSCAD | 4 | ailton-santos/DIY-Low-Cost-Ventilator | 3dmodels/MS3611PressureCoupling1_0.scad | [
"MIT"
] |
--TEST--
ReflectionEnumBackedCase::getBackingValue()
--FILE--
<?php
enum Enum_ {
case Foo;
}
enum IntEnum: int {
case Foo = 0;
}
enum StringEnum: string {
case Foo = 'Foo';
}
try {
var_dump(new ReflectionEnumBackedCase(Enum_::class, 'Foo'));
} catch (ReflectionException $e) {
echo $e->getMessage() . "\n";
}
try {
var_dump(new ReflectionEnumBackedCase([], 'Foo'));
} catch (Error $e) {
echo $e->getMessage() . "\n";
}
var_dump((new ReflectionEnumBackedCase(IntEnum::class, 'Foo'))->getBackingValue());
var_dump((new ReflectionEnumBackedCase(StringEnum::class, 'Foo'))->getBackingValue());
?>
--EXPECT--
Enum case Enum_::Foo is not a backed case
ReflectionEnumBackedCase::__construct(): Argument #1 ($class) must be of type object|string, array given
int(0)
string(3) "Foo"
| PHP | 4 | NathanFreeman/php-src | ext/reflection/tests/ReflectionEnumBackedCase_getBackingValue.phpt | [
"PHP-3.01"
] |
export default function Home() {
return (
<h1>
Falsey values contained in an element contained in Head should not result
in an error!
</h1>
)
}
| JavaScript | 3 | blomqma/next.js | test/integration/font-optimization/fixtures/make-stylesheet-inert-regression/pages/index.js | [
"MIT"
] |
CNoise noise => Pan8 pan => dac;
"pink" => noise.mode;
0.1 => noise.gain;
0 => pan.pan;
while(true)
{
pan.pan() + 0.01 => pan.pan;
10::ms => now;
}
| ChucK | 3 | ccdarabundit/chugins | PanN/Pan8-test.ck | [
"MIT"
] |
KIDS Distribution saved on Oct 07, 2021@14:05:55
Test release SAMI*18.0*14 SEQ #14 T3 (sami-18-14-t3)
**KIDS**:SAMI*18.0*14^
**INSTALL NAME**
SAMI*18.0*14
"BLD",11514,0)
SAMI*18.0*14^^0^3211007^n
"BLD",11514,1,0)
^^1^1^3210910^^
"BLD",11514,1,1,0)
Test Release SAMI*18.0*14 SEQ #14 T3 (sami-18-14-t3)
"BLD",11514,4,0)
^9.64PA^^
"BLD",11514,6.3)
7
"BLD",11514,"INID")
^n
"BLD",11514,"INIT")
POS1814^SAMIPAT
"BLD",11514,"KRN",0)
^9.67PA^1.5^25
"BLD",11514,"KRN",.4,0)
.4
"BLD",11514,"KRN",.401,0)
.401
"BLD",11514,"KRN",.402,0)
.402
"BLD",11514,"KRN",.403,0)
.403
"BLD",11514,"KRN",.5,0)
.5
"BLD",11514,"KRN",.84,0)
.84
"BLD",11514,"KRN",1.5,0)
1.5
"BLD",11514,"KRN",1.6,0)
1.6
"BLD",11514,"KRN",1.61,0)
1.61
"BLD",11514,"KRN",1.62,0)
1.62
"BLD",11514,"KRN",3.6,0)
3.6
"BLD",11514,"KRN",3.8,0)
3.8
"BLD",11514,"KRN",9.2,0)
9.2
"BLD",11514,"KRN",9.8,0)
9.8
"BLD",11514,"KRN",9.8,"NM",0)
^9.68A^7^7
"BLD",11514,"KRN",9.8,"NM",1,0)
SAMIUR^^0^B618867768
"BLD",11514,"KRN",9.8,"NM",2,0)
SAMIUR2^^0^B1360826675
"BLD",11514,"KRN",9.8,"NM",3,0)
SAMIURUL^^0^B103339
"BLD",11514,"KRN",9.8,"NM",4,0)
SAMIPAT^^0^B9183353
"BLD",11514,"KRN",9.8,"NM",5,0)
SAMICAS2^^0^B447463890
"BLD",11514,"KRN",9.8,"NM",6,0)
SAMICUL^^0^B135148
"BLD",11514,"KRN",9.8,"NM",7,0)
SAMISITE^^0^B95807248
"BLD",11514,"KRN",9.8,"NM","B","SAMICAS2",5)
"BLD",11514,"KRN",9.8,"NM","B","SAMICUL",6)
"BLD",11514,"KRN",9.8,"NM","B","SAMIPAT",4)
"BLD",11514,"KRN",9.8,"NM","B","SAMISITE",7)
"BLD",11514,"KRN",9.8,"NM","B","SAMIUR",1)
"BLD",11514,"KRN",9.8,"NM","B","SAMIUR2",2)
"BLD",11514,"KRN",9.8,"NM","B","SAMIURUL",3)
"BLD",11514,"KRN",19,0)
19
"BLD",11514,"KRN",19.1,0)
19.1
"BLD",11514,"KRN",101,0)
101
"BLD",11514,"KRN",409.61,0)
409.61
"BLD",11514,"KRN",771,0)
771
"BLD",11514,"KRN",779.2,0)
779.2
"BLD",11514,"KRN",870,0)
870
"BLD",11514,"KRN",8989.51,0)
8989.51
"BLD",11514,"KRN",8989.52,0)
8989.52
"BLD",11514,"KRN",8993,0)
8993
"BLD",11514,"KRN",8994,0)
8994
"BLD",11514,"KRN","B",.4,.4)
"BLD",11514,"KRN","B",.401,.401)
"BLD",11514,"KRN","B",.402,.402)
"BLD",11514,"KRN","B",.403,.403)
"BLD",11514,"KRN","B",.5,.5)
"BLD",11514,"KRN","B",.84,.84)
"BLD",11514,"KRN","B",1.5,1.5)
"BLD",11514,"KRN","B",1.6,1.6)
"BLD",11514,"KRN","B",1.61,1.61)
"BLD",11514,"KRN","B",1.62,1.62)
"BLD",11514,"KRN","B",3.6,3.6)
"BLD",11514,"KRN","B",3.8,3.8)
"BLD",11514,"KRN","B",9.2,9.2)
"BLD",11514,"KRN","B",9.8,9.8)
"BLD",11514,"KRN","B",19,19)
"BLD",11514,"KRN","B",19.1,19.1)
"BLD",11514,"KRN","B",101,101)
"BLD",11514,"KRN","B",409.61,409.61)
"BLD",11514,"KRN","B",771,771)
"BLD",11514,"KRN","B",779.2,779.2)
"BLD",11514,"KRN","B",870,870)
"BLD",11514,"KRN","B",8989.51,8989.51)
"BLD",11514,"KRN","B",8989.52,8989.52)
"BLD",11514,"KRN","B",8993,8993)
"BLD",11514,"KRN","B",8994,8994)
"BLD",11514,"QUES",0)
^9.62^^
"BLD",11514,"REQB",0)
^9.611^12^12
"BLD",11514,"REQB",1,0)
SAMI*18.0*1^0
"BLD",11514,"REQB",2,0)
SAMI*18.0*2^0
"BLD",11514,"REQB",3,0)
SAMI*18.0*3^0
"BLD",11514,"REQB",4,0)
SAMI*18.0*4^0
"BLD",11514,"REQB",5,0)
SAMI 18.0T05^0
"BLD",11514,"REQB",6,0)
SAMI*18.0*6^0
"BLD",11514,"REQB",7,0)
SAMI*18.0*8^0
"BLD",11514,"REQB",8,0)
SAMI*18.0*9^0
"BLD",11514,"REQB",9,0)
SAMI*18.0*10^0
"BLD",11514,"REQB",10,0)
SAMI*18.0*11^0
"BLD",11514,"REQB",11,0)
SAMI*18.0*12^0
"BLD",11514,"REQB",12,0)
SAMI*18.0*13^0
"BLD",11514,"REQB","B","SAMI 18.0T05",5)
"BLD",11514,"REQB","B","SAMI*18.0*1",1)
"BLD",11514,"REQB","B","SAMI*18.0*10",9)
"BLD",11514,"REQB","B","SAMI*18.0*11",10)
"BLD",11514,"REQB","B","SAMI*18.0*12",11)
"BLD",11514,"REQB","B","SAMI*18.0*13",12)
"BLD",11514,"REQB","B","SAMI*18.0*2",2)
"BLD",11514,"REQB","B","SAMI*18.0*3",3)
"BLD",11514,"REQB","B","SAMI*18.0*4",4)
"BLD",11514,"REQB","B","SAMI*18.0*6",6)
"BLD",11514,"REQB","B","SAMI*18.0*8",7)
"BLD",11514,"REQB","B","SAMI*18.0*9",8)
"INIT")
POS1814^SAMIPAT
"MBREQ")
0
"QUES","XPF1",0)
Y
"QUES","XPF1","??")
^D REP^XPDH
"QUES","XPF1","A")
Shall I write over your |FLAG| File
"QUES","XPF1","B")
YES
"QUES","XPF1","M")
D XPF1^XPDIQ
"QUES","XPF2",0)
Y
"QUES","XPF2","??")
^D DTA^XPDH
"QUES","XPF2","A")
Want my data |FLAG| yours
"QUES","XPF2","B")
YES
"QUES","XPF2","M")
D XPF2^XPDIQ
"QUES","XPI1",0)
YO
"QUES","XPI1","??")
^D INHIBIT^XPDH
"QUES","XPI1","A")
Want KIDS to INHIBIT LOGONs during the install
"QUES","XPI1","B")
NO
"QUES","XPI1","M")
D XPI1^XPDIQ
"QUES","XPM1",0)
PO^VA(200,:EM
"QUES","XPM1","??")
^D MG^XPDH
"QUES","XPM1","A")
Enter the Coordinator for Mail Group '|FLAG|'
"QUES","XPM1","B")
"QUES","XPM1","M")
D XPM1^XPDIQ
"QUES","XPO1",0)
Y
"QUES","XPO1","??")
^D MENU^XPDH
"QUES","XPO1","A")
Want KIDS to Rebuild Menu Trees Upon Completion of Install
"QUES","XPO1","B")
NO
"QUES","XPO1","M")
D XPO1^XPDIQ
"QUES","XPZ1",0)
Y
"QUES","XPZ1","??")
^D OPT^XPDH
"QUES","XPZ1","A")
Want to DISABLE Scheduled Options, Menu Options, and Protocols
"QUES","XPZ1","B")
NO
"QUES","XPZ1","M")
D XPZ1^XPDIQ
"QUES","XPZ2",0)
Y
"QUES","XPZ2","??")
^D RTN^XPDH
"QUES","XPZ2","A")
Want to MOVE routines to other CPUs
"QUES","XPZ2","B")
NO
"QUES","XPZ2","M")
D XPZ2^XPDIQ
"RTN")
7
"RTN","SAMICAS2")
0^5^B447463890
"RTN","SAMICAS2",1,0)
SAMICAS2 ;ven/gpl - case review cont ;2021-10-05t23:14z
"RTN","SAMICAS2",2,0)
;;18.0;SAMI;**1,5,9,12,14**;2020-01;Build 7
"RTN","SAMICAS2",3,0)
;;18.14
"RTN","SAMICAS2",4,0)
;
"RTN","SAMICAS2",5,0)
; SAMICAS2 contains ppis and other subroutines to support processing
"RTN","SAMICAS2",6,0)
; of the VAPALS case review page.
"RTN","SAMICAS2",7,0)
;
"RTN","SAMICAS2",8,0)
quit ; no entry from top
"RTN","SAMICAS2",9,0)
;
"RTN","SAMICAS2",10,0)
;
"RTN","SAMICAS2",11,0)
;
"RTN","SAMICAS2",12,0)
;@section 0 primary development
"RTN","SAMICAS2",13,0)
;
"RTN","SAMICAS2",14,0)
;
"RTN","SAMICAS2",15,0)
;
"RTN","SAMICAS2",16,0)
;@routine-credits
"RTN","SAMICAS2",17,0)
;@license see routine SAMIUL
"RTN","SAMICAS2",18,0)
;@documentation see SAMICUL
"RTN","SAMICAS2",19,0)
;@contents
"RTN","SAMICAS2",20,0)
; WSCASE wri-code WSCASE^SAMICASE, post vapals casereview:
"RTN","SAMICAS2",21,0)
; generate case review page
"RTN","SAMICAS2",22,0)
; $$NOTEHREF ppi-code $$NOTEHREF^SAMICASE,
"RTN","SAMICAS2",23,0)
; html list of notes for form
"RTN","SAMICAS2",24,0)
; GETTMPL ppi-code GETTMPL^SAMICASE, get html template
"RTN","SAMICAS2",25,0)
; $$CNTITEMS = # forms patient has used before deleting patient
"RTN","SAMICAS2",26,0)
; GETITEMS ppi-code GETITEMS^SAMICASE
"RTN","SAMICAS2",27,0)
; get items available for studyid
"RTN","SAMICAS2",28,0)
; $$GETDTKEY date part of form key
"RTN","SAMICAS2",29,0)
; $$KEY2DSPD date in elcap format from key date
"RTN","SAMICAS2",30,0)
; $$VAPALSDT ppi-code $$VAPALSDT^SAMICASE, vapals format for dates
"RTN","SAMICAS2",31,0)
;
"RTN","SAMICAS2",32,0)
; WSNUFORM wri-code WSNUFORM^SAMICASE, post vapals nuform:
"RTN","SAMICAS2",33,0)
; new form for patient
"RTN","SAMICAS2",34,0)
; $$KEY2FM ppi-code $$KEY2FM^SAMICASE, convert key to fileman date
"RTN","SAMICAS2",35,0)
;
"RTN","SAMICAS2",36,0)
; $$GSAMISTA value of 'samistatus' from form
"RTN","SAMICAS2",37,0)
; SSAMISTA ppi-code SSAMISTA^SAMICASE, set samistatus to val in form
"RTN","SAMICAS2",38,0)
; DELFORM wri-code DELFORM^SAMICASE, post vapals deleteform:
"RTN","SAMICAS2",39,0)
; delete incomplete form
"RTN","SAMICAS2",40,0)
; INITSTAT set all forms to 'incomplete'
"RTN","SAMICAS2",41,0)
;
"RTN","SAMICAS2",42,0)
;
"RTN","SAMICAS2",43,0)
;
"RTN","SAMICAS2",44,0)
;@section 1 wsCASE & related ppis
"RTN","SAMICAS2",45,0)
;
"RTN","SAMICAS2",46,0)
;
"RTN","SAMICAS2",47,0)
;
"RTN","SAMICAS2",48,0)
;@wri-code WSCASE^SAMICASE
"RTN","SAMICAS2",49,0)
WSCASE ; post vapals casereview: generate case review page
"RTN","SAMICAS2",50,0)
;
"RTN","SAMICAS2",51,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",52,0)
;
"RTN","SAMICAS2",53,0)
;ven/gpl;wri;procedure;silent;clean;sac;??% tests
"RTN","SAMICAS2",54,0)
;@signature
"RTN","SAMICAS2",55,0)
; do WSCASE^SAMICASE(rtn,filter)
"RTN","SAMICAS2",56,0)
;@branches-from
"RTN","SAMICAS2",57,0)
; WSCASE^SAMICASE
"RTN","SAMICAS2",58,0)
;@wri-called-by
"RTN","SAMICAS2",59,0)
; wsPostForm^%wfhform
"RTN","SAMICAS2",60,0)
; DELFORM^SAMICASE
"RTN","SAMICAS2",61,0)
; WSNFPOST^SAMICASE
"RTN","SAMICAS2",62,0)
; WSVAPALS^SAMIHOM3 [wsi for ws post vapals]
"RTN","SAMICAS2",63,0)
; WSLOOKUP^SAMISRC2
"RTN","SAMICAS2",64,0)
; wsPostForm^SAMIZ2
"RTN","SAMICAS2",65,0)
;@called-by none
"RTN","SAMICAS2",66,0)
;@calls
"RTN","SAMICAS2",67,0)
; $$setroot^%wd
"RTN","SAMICAS2",68,0)
; GETTMPL^SAMICASE
"RTN","SAMICAS2",69,0)
; GETITEMS^SAMICASE
"RTN","SAMICAS2",70,0)
; $$SID2NUM^SAMIHOM3
"RTN","SAMICAS2",71,0)
; findReplace^%ts
"RTN","SAMICAS2",72,0)
; FIXHREF^SAMIFORM
"RTN","SAMICAS2",73,0)
; FIXSRC^SAMIFORM
"RTN","SAMICAS2",74,0)
; $$GETDTKEY
"RTN","SAMICAS2",75,0)
; $$KEY2DSPD
"RTN","SAMICAS2",76,0)
; $$GETLAST5^SAMIFORM
"RTN","SAMICAS2",77,0)
; $$GETSSN^SAMIFORM
"RTN","SAMICAS2",78,0)
; $$GETNAME^SAMIFORM
"RTN","SAMICAS2",79,0)
; $$GSAMISTA
"RTN","SAMICAS2",80,0)
; D ADDCRLF^VPRJRUT
"RTN","SAMICAS2",81,0)
;@input
"RTN","SAMICAS2",82,0)
; .filter =
"RTN","SAMICAS2",83,0)
; .filter("studyid")=studyid of the patient
"RTN","SAMICAS2",84,0)
;@output
"RTN","SAMICAS2",85,0)
; .rtn
"RTN","SAMICAS2",86,0)
;@tests
"RTN","SAMICAS2",87,0)
; UTWSCAS^SAMIUTS2
"RTN","SAMICAS2",88,0)
;
"RTN","SAMICAS2",89,0)
;
"RTN","SAMICAS2",90,0)
;@stanza 2 initialize
"RTN","SAMICAS2",91,0)
;
"RTN","SAMICAS2",92,0)
kill rtn
"RTN","SAMICAS2",93,0)
;
"RTN","SAMICAS2",94,0)
new groot set groot=$$setroot^%wd("vapals-patients") ; root of patient graphs
"RTN","SAMICAS2",95,0)
;
"RTN","SAMICAS2",96,0)
new temp ; html template
"RTN","SAMICAS2",97,0)
do GETTMPL^SAMICASE("temp","vapals:casereview")
"RTN","SAMICAS2",98,0)
quit:'$data(temp)
"RTN","SAMICAS2",99,0)
;
"RTN","SAMICAS2",100,0)
new sid set sid=$get(filter("studyid"))
"RTN","SAMICAS2",101,0)
if sid="" set sid=$get(filter("studyId"))
"RTN","SAMICAS2",102,0)
if sid="" set sid=$get(filter("fvalue"))
"RTN","SAMICAS2",103,0)
quit:sid=""
"RTN","SAMICAS2",104,0)
;
"RTN","SAMICAS2",105,0)
new items
"RTN","SAMICAS2",106,0)
do GETITEMS^SAMICASE("items",sid)
"RTN","SAMICAS2",107,0)
quit:'$data(items)
"RTN","SAMICAS2",108,0)
;
"RTN","SAMICAS2",109,0)
new gien set gien=$$SID2NUM^SAMIHOM3(sid) ; graph ien
"RTN","SAMICAS2",110,0)
new name set name=$get(@groot@(gien,"saminame"))
"RTN","SAMICAS2",111,0)
quit:name=""
"RTN","SAMICAS2",112,0)
new fname set fname=$piece(name,",",2)
"RTN","SAMICAS2",113,0)
new lname set lname=$piece(name,",")
"RTN","SAMICAS2",114,0)
;
"RTN","SAMICAS2",115,0)
;
"RTN","SAMICAS2",116,0)
;@stanza 3 change resource paths to /see/
"RTN","SAMICAS2",117,0)
;
"RTN","SAMICAS2",118,0)
new cnt set cnt=0
"RTN","SAMICAS2",119,0)
new zi set zi=0
"RTN","SAMICAS2",120,0)
;for set zi=$order(temp(zi)) quit:+zi=0 quit:temp(zi)["VEP0001" do ;
"RTN","SAMICAS2",121,0)
for set zi=$order(temp(zi)) quit:+zi=0 quit:temp(zi)["tbody" do ;
"RTN","SAMICAS2",122,0)
. new ln set ln=temp(zi)
"RTN","SAMICAS2",123,0)
. new touched set touched=0
"RTN","SAMICAS2",124,0)
. ;
"RTN","SAMICAS2",125,0)
. if ln["@@SITE@@" do ; insert site id
"RTN","SAMICAS2",126,0)
. . n siteid s siteid=$g(filter("siteid"))
"RTN","SAMICAS2",127,0)
. . i siteid="" s siteid=$g(filter("site"))
"RTN","SAMICAS2",128,0)
. . q:siteid=""
"RTN","SAMICAS2",129,0)
. . do findReplace^%ts(.ln,"@@SITE@@",siteid)
"RTN","SAMICAS2",130,0)
. . s temp(zi)=ln
"RTN","SAMICAS2",131,0)
. ;
"RTN","SAMICAS2",132,0)
. if ln["@@SITETITLE@@" do ; insert site title
"RTN","SAMICAS2",133,0)
. . n sitetit s sitetit=$g(filter("sitetitle"))
"RTN","SAMICAS2",134,0)
. . if sitetit="" d ;
"RTN","SAMICAS2",135,0)
. . . n tsite s tsite=$g(filter("site"))
"RTN","SAMICAS2",136,0)
. . . q:tsite=""
"RTN","SAMICAS2",137,0)
. . . s sitetit=$$SITENM2^SAMISITE(tsite)_" - "_tsite
"RTN","SAMICAS2",138,0)
. . q:sitetit=""
"RTN","SAMICAS2",139,0)
. . do findReplace^%ts(.ln,"@@SITETITLE@@",sitetit)
"RTN","SAMICAS2",140,0)
. . s temp(zi)=ln
"RTN","SAMICAS2",141,0)
. ;
"RTN","SAMICAS2",142,0)
. if ln["id" if ln["studyIdMenu" do ;
"RTN","SAMICAS2",143,0)
. . set zi=zi+4
"RTN","SAMICAS2",144,0)
. ;
"RTN","SAMICAS2",145,0)
. if ln["home.html" do ;
"RTN","SAMICAS2",146,0)
. . do findReplace^%ts(.ln,"home.html","/vapals")
"RTN","SAMICAS2",147,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",148,0)
. . set touched=1
"RTN","SAMICAS2",149,0)
. ;
"RTN","SAMICAS2",150,0)
. if ln["href" if 'touched do ;
"RTN","SAMICAS2",151,0)
. . do FIXHREF^SAMIFORM(.ln)
"RTN","SAMICAS2",152,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",153,0)
. ;
"RTN","SAMICAS2",154,0)
. if ln["src" do ;
"RTN","SAMICAS2",155,0)
. . do FIXSRC^SAMIFORM(.ln)
"RTN","SAMICAS2",156,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",157,0)
. ;
"RTN","SAMICAS2",158,0)
. if ln["@@ERROR_MESSAGE@@" do ; insert error message
"RTN","SAMICAS2",159,0)
. . n zerr s zerr=$g(filter("errorMessage"))
"RTN","SAMICAS2",160,0)
. . i zerr="" q ;
"RTN","SAMICAS2",161,0)
. . do findReplace^%ts(.ln,"@@ERROR_MESSAGE@@",zerr)
"RTN","SAMICAS2",162,0)
. . s temp(zi)=ln
"RTN","SAMICAS2",163,0)
. ;
"RTN","SAMICAS2",164,0)
. set cnt=cnt+1
"RTN","SAMICAS2",165,0)
. set rtn(cnt)=temp(zi)
"RTN","SAMICAS2",166,0)
. quit
"RTN","SAMICAS2",167,0)
;
"RTN","SAMICAS2",168,0)
; ready to insert rows for selection
"RTN","SAMICAS2",169,0)
;
"RTN","SAMICAS2",170,0)
;
"RTN","SAMICAS2",171,0)
;@stanza 4 intake form
"RTN","SAMICAS2",172,0)
;
"RTN","SAMICAS2",173,0)
new sikey set sikey=$order(items("sifor"))
"RTN","SAMICAS2",174,0)
if sikey="" set sikey="siform-2017-12-10"
"RTN","SAMICAS2",175,0)
new sidate set sidate=$$GETDTKEY(sikey)
"RTN","SAMICAS2",176,0)
set sikey="vapals:"_sikey
"RTN","SAMICAS2",177,0)
new sidispdate set sidispdate=$$KEY2DSPD(sidate)
"RTN","SAMICAS2",178,0)
;new geturl set geturl="/form?form=vapals:siform&studyid="_sid_"&key="_sikey
"RTN","SAMICAS2",179,0)
new nuhref set nuhref="<form method=POST action=""/vapals"">"
"RTN","SAMICAS2",180,0)
set nuhref=nuhref_"<td><input type=hidden name=""samiroute"" value=""nuform"">"
"RTN","SAMICAS2",181,0)
set nuhref=nuhref_"<input type=hidden name=""studyid"" value="_sid_">"
"RTN","SAMICAS2",182,0)
set nuhref=nuhref_"<input value=""New Form"" class=""btn label label-warning"" role=""link"" type=""submit""></form></td>"
"RTN","SAMICAS2",183,0)
; new intake notes table
"RTN","SAMICAS2",184,0)
n notehref,form
"RTN","SAMICAS2",185,0)
set form=$p(sikey,":",2)
"RTN","SAMICAS2",186,0)
set notehref=$$NOTEHREF^SAMICASE(sid,form) ; table of notes
"RTN","SAMICAS2",187,0)
set cnt=cnt+1
"RTN","SAMICAS2",188,0)
;new facilitycode set facilitycode=$$GETPRFX^SAMIFORM()
"RTN","SAMICAS2",189,0)
n siteid s siteid=$g(filter("siteid"))
"RTN","SAMICAS2",190,0)
i siteid="" s siteid=$g(filter("site"))
"RTN","SAMICAS2",191,0)
new facilitycode set facilitycode=siteid
"RTN","SAMICAS2",192,0)
new last5 set last5=$$GETLAST5^SAMIFORM(sid)
"RTN","SAMICAS2",193,0)
new pssn set pssn=$$GETSSN^SAMIFORM(sid)
"RTN","SAMICAS2",194,0)
new pname set pname=$$GETNAME^SAMIFORM(sid)
"RTN","SAMICAS2",195,0)
new useid set useid=pssn
"RTN","SAMICAS2",196,0)
if useid="" set useid=last5
"RTN","SAMICAS2",197,0)
set rtn(cnt)="<tr><td> "_useid_" </td><td> "_pname_" </td><td> "_facilitycode_" </td><td>"_sidispdate_"</td><td>"_$char(13)
"RTN","SAMICAS2",198,0)
set cnt=cnt+1
"RTN","SAMICAS2",199,0)
set rtn(cnt)="<form method=""post"" action=""/vapals"">"
"RTN","SAMICAS2",200,0)
set cnt=cnt+1
"RTN","SAMICAS2",201,0)
set rtn(cnt)="<input name=""samiroute"" value=""form"" type=""hidden"">"
"RTN","SAMICAS2",202,0)
set rtn(cnt)=rtn(cnt)_" <input name=""studyid"" value="""_sid_""" type=""hidden"">"
"RTN","SAMICAS2",203,0)
set rtn(cnt)=rtn(cnt)_" <input name=""form"" value="""_sikey_""" type=""hidden"">"
"RTN","SAMICAS2",204,0)
set rtn(cnt)=rtn(cnt)_" <input value=""Intake"" class=""btn btn-link"" role=""link"" type=""submit"">"
"RTN","SAMICAS2",205,0)
;
"RTN","SAMICAS2",206,0)
new samistatus set samistatus=""
"RTN","SAMICAS2",207,0)
if $$GSAMISTA(sid,sikey)="incomplete" set samistatus="(incomplete)"
"RTN","SAMICAS2",208,0)
set cnt=cnt+1
"RTN","SAMICAS2",209,0)
set rtn(cnt)="</form>"_samistatus_notehref_"</td>"_$char(13)
"RTN","SAMICAS2",210,0)
set cnt=cnt+1
"RTN","SAMICAS2",211,0)
set rtn(cnt)=nuhref_"</tr>"
"RTN","SAMICAS2",212,0)
;
"RTN","SAMICAS2",213,0)
;
"RTN","SAMICAS2",214,0)
;@stanza 6 rest of the forms
"RTN","SAMICAS2",215,0)
;
"RTN","SAMICAS2",216,0)
new zj set zj="" ; each of the rest of the forms
"RTN","SAMICAS2",217,0)
if $data(items("sort")) do ; we have more forms
"RTN","SAMICAS2",218,0)
. for set zj=$order(items("sort",zj)) quit:zj="" do ;
"RTN","SAMICAS2",219,0)
. . new cdate set cdate=zj
"RTN","SAMICAS2",220,0)
. . new zk set zk=""
"RTN","SAMICAS2",221,0)
. . for set zk=$order(items("sort",cdate,zk)) q:zk="" do ;
"RTN","SAMICAS2",222,0)
. . . new zform set zform=zk
"RTN","SAMICAS2",223,0)
. . . new zkey set zkey=$order(items("sort",cdate,zform,""))
"RTN","SAMICAS2",224,0)
. . . new zname set zname=$order(items("sort",cdate,zform,zkey,""))
"RTN","SAMICAS2",225,0)
. . . new dispdate set dispdate=$$KEY2DSPD(cdate)
"RTN","SAMICAS2",226,0)
. . . set zform="vapals:"_zkey ; all the new forms are vapals:key
"RTN","SAMICAS2",227,0)
. . . ;new geturl set geturl="/form?form="_zform_"&studyid="_sid_"&key="_zkey
"RTN","SAMICAS2",228,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",229,0)
. . . ;set rtn(cnt)="<tr><td> "_sid_" </td><td> - </td><td> - </td><td> - </td><td>"_dispdate_"</td><td>"
"RTN","SAMICAS2",230,0)
. . . set rtn(cnt)="<tr><td> "_useid_" </td><td> - </td><td> - </td><td>"_dispdate_"</td><td>"
"RTN","SAMICAS2",231,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",232,0)
. . . set rtn(cnt)="<form method=""post"" action=""/vapals"">"_$char(13)
"RTN","SAMICAS2",233,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",234,0)
. . . set rtn(cnt)="<input name=""samiroute"" value=""form"" type=""hidden"">"_$char(13)
"RTN","SAMICAS2",235,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",236,0)
. . . set rtn(cnt)=" <input name=""studyid"" value="""_sid_""" type=""hidden"">"_$char(13)
"RTN","SAMICAS2",237,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",238,0)
. . . set rtn(cnt)=" <input name=""form"" value="""_zform_""" type=""hidden"">"_$char(13)
"RTN","SAMICAS2",239,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",240,0)
. . . set rtn(cnt)=" <input value="""_zname_""" class=""btn btn-link"" role=""link"" type=""submit"">"_$char(13)
"RTN","SAMICAS2",241,0)
. . . ;
"RTN","SAMICAS2",242,0)
. . . new samistatus set samistatus=""
"RTN","SAMICAS2",243,0)
. . . if $$GSAMISTA(sid,zform)="incomplete" set samistatus="(incomplete)"
"RTN","SAMICAS2",244,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",245,0)
. . . set rtn(cnt)="</form>"_samistatus_$$NOTEHREF^SAMICASE(sid,zkey)_"</td>"
"RTN","SAMICAS2",246,0)
. . . set cnt=cnt+1
"RTN","SAMICAS2",247,0)
. . . if zform["ceform" do ;
"RTN","SAMICAS2",248,0)
. . . . new rpthref set rpthref="<form method=POST action=""/vapals"">"
"RTN","SAMICAS2",249,0)
. . . . set rpthref=rpthref_"<td><input type=hidden name=""samiroute"" value=""ctreport"">"
"RTN","SAMICAS2",250,0)
. . . . set rpthref=rpthref_"<input type=hidden name=""form"" value="_$p(zform,":",2)_">"
"RTN","SAMICAS2",251,0)
. . . . set rpthref=rpthref_"<input type=hidden name=""studyid"" value="_sid_">"
"RTN","SAMICAS2",252,0)
. . . . set rpthref=rpthref_"<input value=""Report"" class=""btn label label-warning"" role=""link"" type=""submit""></form></td>"
"RTN","SAMICAS2",253,0)
. . . . set rtn(cnt)=rpthref_"</tr>"
"RTN","SAMICAS2",254,0)
. . . . ;set rtn(cnt)="</tr>" ; turn off report
"RTN","SAMICAS2",255,0)
. . . else set rtn(cnt)="<td></td></tr>"
"RTN","SAMICAS2",256,0)
. . . quit
"RTN","SAMICAS2",257,0)
. . quit
"RTN","SAMICAS2",258,0)
. quit
"RTN","SAMICAS2",259,0)
;
"RTN","SAMICAS2",260,0)
;
"RTN","SAMICAS2",261,0)
;@stanza 7 skip ahead in template to tbody
"RTN","SAMICAS2",262,0)
;
"RTN","SAMICAS2",263,0)
new loc set loc=zi+1
"RTN","SAMICAS2",264,0)
for set zi=$order(temp(zi)) quit:+zi=0 quit:temp(zi)["/tbody" do ;
"RTN","SAMICAS2",265,0)
. set x=$get(x)
"RTN","SAMICAS2",266,0)
. quit
"RTN","SAMICAS2",267,0)
set zi=zi-1
"RTN","SAMICAS2",268,0)
;
"RTN","SAMICAS2",269,0)
;
"RTN","SAMICAS2",270,0)
;@stanza 8 rest of lines
"RTN","SAMICAS2",271,0)
;
"RTN","SAMICAS2",272,0)
for set zi=$order(temp(zi)) quit:+zi=0 do ;
"RTN","SAMICAS2",273,0)
. new line
"RTN","SAMICAS2",274,0)
. set line=temp(zi)
"RTN","SAMICAS2",275,0)
. ;
"RTN","SAMICAS2",276,0)
. if line["@@SITE@@" do ; insert site id
"RTN","SAMICAS2",277,0)
. . n siteid s siteid=$g(filter("siteid"))
"RTN","SAMICAS2",278,0)
. . i siteid="" s siteid=$g(filter("site"))
"RTN","SAMICAS2",279,0)
. . q:siteid=""
"RTN","SAMICAS2",280,0)
. . do findReplace^%ts(.line,"@@SITE@@",siteid)
"RTN","SAMICAS2",281,0)
. ;
"RTN","SAMICAS2",282,0)
. if line["@@SITETITLE@@" do ; insert site title
"RTN","SAMICAS2",283,0)
. . n sitetit s sitetit=$g(filter("sitetitle"))
"RTN","SAMICAS2",284,0)
. . if sitetit="" d ;
"RTN","SAMICAS2",285,0)
. . . n tsite s tsite=$g(filter("site"))
"RTN","SAMICAS2",286,0)
. . . q:tsite=""
"RTN","SAMICAS2",287,0)
. . . s sitetit=$$SITENM2^SAMISITE(tsite)_" - "_tsite
"RTN","SAMICAS2",288,0)
. . q:sitetit=""
"RTN","SAMICAS2",289,0)
. . do findReplace^%ts(.line,"@@SITETITLE@@",sitetit)
"RTN","SAMICAS2",290,0)
. ;
"RTN","SAMICAS2",291,0)
. if line["XX0002" do ;
"RTN","SAMICAS2",292,0)
. . do findReplace^%ts(.line,"XX0002",sid)
"RTN","SAMICAS2",293,0)
. ;
"RTN","SAMICAS2",294,0)
. if line["@@ERROR_MESSAGE@@" do ;
"RTN","SAMICAS2",295,0)
. . n zerr
"RTN","SAMICAS2",296,0)
. . k ^gpl("error")
"RTN","SAMICAS2",297,0)
. . m ^gpl("error")=filter
"RTN","SAMICAS2",298,0)
. . s zerr=$g(filter("errorMessage"))
"RTN","SAMICAS2",299,0)
. . ;i err="" q ;
"RTN","SAMICAS2",300,0)
. . s ^gpl("error","zerr")=zerr
"RTN","SAMICAS2",301,0)
. . do findReplace^%ts(.line,"@@ERROR_MESSAGE@@",zerr)
"RTN","SAMICAS2",302,0)
. . s ^gpl("error","newline")=line
"RTN","SAMICAS2",303,0)
. set cnt=cnt+1
"RTN","SAMICAS2",304,0)
. set rtn(cnt)=line
"RTN","SAMICAS2",305,0)
. quit
"RTN","SAMICAS2",306,0)
;
"RTN","SAMICAS2",307,0)
do ADDCRLF^VPRJRUT(.rtn)
"RTN","SAMICAS2",308,0)
set HTTPRSP("mime")="text/html" ; set mime type
"RTN","SAMICAS2",309,0)
;
"RTN","SAMICAS2",310,0)
;
"RTN","SAMICAS2",311,0)
;@stanza 9 termination
"RTN","SAMICAS2",312,0)
;
"RTN","SAMICAS2",313,0)
quit ; end of ppi WSCASE^SAMICAS2
"RTN","SAMICAS2",314,0)
;
"RTN","SAMICAS2",315,0)
;
"RTN","SAMICAS2",316,0)
;
"RTN","SAMICAS2",317,0)
;@ppi-code $$NOTEHREF^SAMICASE
"RTN","SAMICAS2",318,0)
NOTEHREF ; html list of notes for form
"RTN","SAMICAS2",319,0)
;
"RTN","SAMICAS2",320,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",321,0)
;
"RTN","SAMICAS2",322,0)
;ven/gpl;ppi;function;clean;silent;sac;??? tests
"RTN","SAMICAS2",323,0)
;@signature
"RTN","SAMICAS2",324,0)
; $$NOTEHREF^SAMICASE(sid,form)
"RTN","SAMICAS2",325,0)
;@branches-from
"RTN","SAMICAS2",326,0)
; NOTEHREF^SAMICASE
"RTN","SAMICAS2",327,0)
;@ppi-called-by
"RTN","SAMICAS2",328,0)
; WSNFPOST^SAMICAS3
"RTN","SAMICAS2",329,0)
;@called-by none
"RTN","SAMICAS2",330,0)
;@calls
"RTN","SAMICAS2",331,0)
; NTLIST^SAMINOT1
"RTN","SAMICAS2",332,0)
;@input
"RTN","SAMICAS2",333,0)
; sid = study id
"RTN","SAMICAS2",334,0)
; form
"RTN","SAMICAS2",335,0)
;@output = html list of notes
"RTN","SAMICAS2",336,0)
;@examples [tbd]
"RTN","SAMICAS2",337,0)
;@tests [tbd]
"RTN","SAMICAS2",338,0)
;
"RTN","SAMICAS2",339,0)
;
"RTN","SAMICAS2",340,0)
;@stanza 2 get list of notes
"RTN","SAMICAS2",341,0)
;
"RTN","SAMICAS2",342,0)
new notehref set notehref=""
"RTN","SAMICAS2",343,0)
new ntlist
"RTN","SAMICAS2",344,0)
if form["sifor" do NTLIST^SAMINOT1("ntlist",sid,form)
"RTN","SAMICAS2",345,0)
if form["fufor" do NTLIST^SAMINOT2("ntlist",sid,form)
"RTN","SAMICAS2",346,0)
if $order(ntlist(""))="" quit notehref
"RTN","SAMICAS2",347,0)
;
"RTN","SAMICAS2",348,0)
set notehref="<table>"
"RTN","SAMICAS2",349,0)
new zi set zi=0
"RTN","SAMICAS2",350,0)
for do quit:'zi
"RTN","SAMICAS2",351,0)
. set zi=$order(ntlist(zi))
"RTN","SAMICAS2",352,0)
. quit:'zi
"RTN","SAMICAS2",353,0)
. ;
"RTN","SAMICAS2",354,0)
. set notehref=notehref_"<td><form method=POST action=""/vapals"">"
"RTN","SAMICAS2",355,0)
. set notehref=notehref_"<input type=hidden name=""nien"" value="""_$get(ntlist(zi,"nien"))_""">"
"RTN","SAMICAS2",356,0)
. set notehref=notehref_"<input type=hidden name=""samiroute"" value=""note"">"
"RTN","SAMICAS2",357,0)
. set notehref=notehref_"<input type=hidden name=""studyid"" value="_sid_">"
"RTN","SAMICAS2",358,0)
. set notehref=notehref_"<input type=hidden name=""form"" value="_form_">"
"RTN","SAMICAS2",359,0)
. set notehref=notehref_"<input value="""_$get(ntlist(zi,"name"))_""" class=""btn btn-link"" role=""link"" type=""submit""></form></td></tr>"
"RTN","SAMICAS2",360,0)
. quit
"RTN","SAMICAS2",361,0)
set notehref=notehref_"</table>"
"RTN","SAMICAS2",362,0)
;
"RTN","SAMICAS2",363,0)
;
"RTN","SAMICAS2",364,0)
;@stanza 3 termination
"RTN","SAMICAS2",365,0)
;
"RTN","SAMICAS2",366,0)
quit notehref ; end of ppi $$NOTEHREF^SAMICASE
"RTN","SAMICAS2",367,0)
;
"RTN","SAMICAS2",368,0)
;
"RTN","SAMICAS2",369,0)
;
"RTN","SAMICAS2",370,0)
;@ppi-code GETTMPL^SAMICASE
"RTN","SAMICAS2",371,0)
GETTMPL ; get html template
"RTN","SAMICAS2",372,0)
;
"RTN","SAMICAS2",373,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",374,0)
;
"RTN","SAMICAS2",375,0)
;ven/gpl;ppi;procedure;clean;silent;sac;??% tests
"RTN","SAMICAS2",376,0)
;@signature
"RTN","SAMICAS2",377,0)
; do GETTMPL^SAMICASE(return,form)
"RTN","SAMICAS2",378,0)
;@branches-from
"RTN","SAMICAS2",379,0)
; GETTMPL^SAMICASE
"RTN","SAMICAS2",380,0)
;@ppi-called-by
"RTN","SAMICAS2",381,0)
; WSCASE^SAMICAS2
"RTN","SAMICAS2",382,0)
; GETHOME^SAMIHOM4
"RTN","SAMICAS2",383,0)
; WSNOTE^SAMINOT1
"RTN","SAMICAS2",384,0)
; WSNOTE^SAMINOT2
"RTN","SAMICAS2",385,0)
; WSNOTE^SAMINOT3
"RTN","SAMICAS2",386,0)
; WSNOTE^SAMINOTI
"RTN","SAMICAS2",387,0)
;@called-by none
"RTN","SAMICAS2",388,0)
;@calls
"RTN","SAMICAS2",389,0)
; $$getTemplate^%wf
"RTN","SAMICAS2",390,0)
; getThis^%wd
"RTN","SAMICAS2",391,0)
;@input
"RTN","SAMICAS2",392,0)
; return = name of array to return template
"RTN","SAMICAS2",393,0)
; form = name of form
"RTN","SAMICAS2",394,0)
;@output
"RTN","SAMICAS2",395,0)
; @return = template
"RTN","SAMICAS2",396,0)
;@examples [tbd]
"RTN","SAMICAS2",397,0)
;@tests
"RTN","SAMICAS2",398,0)
; UTGTMPL^SAMIUTS2
"RTN","SAMICAS2",399,0)
;
"RTN","SAMICAS2",400,0)
;
"RTN","SAMICAS2",401,0)
;@stanza 2 get html template
"RTN","SAMICAS2",402,0)
;
"RTN","SAMICAS2",403,0)
quit:$get(form)=""
"RTN","SAMICAS2",404,0)
;
"RTN","SAMICAS2",405,0)
new fn set fn=$$getTemplate^%wf(form)
"RTN","SAMICAS2",406,0)
do getThis^%wd(return,fn)
"RTN","SAMICAS2",407,0)
;
"RTN","SAMICAS2",408,0)
set HTTPRSP("mime")="text/html"
"RTN","SAMICAS2",409,0)
;
"RTN","SAMICAS2",410,0)
;
"RTN","SAMICAS2",411,0)
;@stanza 3 termination
"RTN","SAMICAS2",412,0)
;
"RTN","SAMICAS2",413,0)
quit ; end of ppi GETTMPL^SAMICASE
"RTN","SAMICAS2",414,0)
;
"RTN","SAMICAS2",415,0)
;
"RTN","SAMICAS2",416,0)
;
"RTN","SAMICAS2",417,0)
CNTITEMS(sid) ; extrinsic returns how many forms the patient has
"RTN","SAMICAS2",418,0)
; used before deleting a patient
"RTN","SAMICAS2",419,0)
;
"RTN","SAMICAS2",420,0)
;@called by : none
"RTN","SAMICAS2",421,0)
;@calls :
"RTN","SAMICAS2",422,0)
; $$setroot^%wd
"RTN","SAMICAS2",423,0)
;@input ;
"RTN","SAMICAS2",424,0)
; sid = patient's study ID (e.g. "XXX00001")
"RTN","SAMICAS2",425,0)
;@output ;
"RTN","SAMICAS2",426,0)
;@tests :
"RTN","SAMICAS2",427,0)
; SAMIUTS2
"RTN","SAMICAS2",428,0)
new groot set groot=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",429,0)
quit:'$data(@groot@("graph",sid)) 0 ; nothing there
"RTN","SAMICAS2",430,0)
new cnt,zi
"RTN","SAMICAS2",431,0)
set zi=""
"RTN","SAMICAS2",432,0)
set cnt=0
"RTN","SAMICAS2",433,0)
for set zi=$o(@groot@("graph",sid,zi)) quit:zi="" do ;
"RTN","SAMICAS2",434,0)
. set cnt=cnt+1
"RTN","SAMICAS2",435,0)
;
"RTN","SAMICAS2",436,0)
quit cnt ; end of CNTITEMS
"RTN","SAMICAS2",437,0)
;
"RTN","SAMICAS2",438,0)
;
"RTN","SAMICAS2",439,0)
;
"RTN","SAMICAS2",440,0)
;@ppi-code GETITEMS^SAMICASE
"RTN","SAMICAS2",441,0)
GETITEMS ; get items available for studyid
"RTN","SAMICAS2",442,0)
;
"RTN","SAMICAS2",443,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",444,0)
;
"RTN","SAMICAS2",445,0)
;ven/gpl;ppi;procedure;clean;silent;sac;??% tests
"RTN","SAMICAS2",446,0)
;@signature
"RTN","SAMICAS2",447,0)
; do GETITEMS^SAMICASE(ary,sid)
"RTN","SAMICAS2",448,0)
;@branches-from
"RTN","SAMICAS2",449,0)
; GETITEMS^SAMICASE
"RTN","SAMICAS2",450,0)
;@ppi-called-by
"RTN","SAMICAS2",451,0)
; WSCASE^SAMICAS2
"RTN","SAMICAS2",452,0)
; $$BASELNDT^SAMICAS3
"RTN","SAMICAS2",453,0)
; MKCEFORM^SAMICAS3
"RTN","SAMICAS2",454,0)
; GETFILTR^SAMICTR0
"RTN","SAMICAS2",455,0)
; GETFILTR^SAMICTT0
"RTN","SAMICAS2",456,0)
; SELECT^SAMIUR
"RTN","SAMICAS2",457,0)
; SELECT^SAMIUR1
"RTN","SAMICAS2",458,0)
; CUMPY^SAMIUR2
"RTN","SAMICAS2",459,0)
;@called-by none
"RTN","SAMICAS2",460,0)
;@calls
"RTN","SAMICAS2",461,0)
; $$setroot^%wd
"RTN","SAMICAS2",462,0)
;@input
"RTN","SAMICAS2",463,0)
; ary = name of return array
"RTN","SAMICAS2",464,0)
; sid = patient's study ID (e.g. "XXX00001")
"RTN","SAMICAS2",465,0)
;@output
"RTN","SAMICAS2",466,0)
; @ary = returned items available
"RTN","SAMICAS2",467,0)
;@examples [tbd]
"RTN","SAMICAS2",468,0)
;@tests
"RTN","SAMICAS2",469,0)
; UTCNTITM^SAMIUTS2
"RTN","SAMICAS2",470,0)
;
"RTN","SAMICAS2",471,0)
;
"RTN","SAMICAS2",472,0)
;@stanza 2 get items
"RTN","SAMICAS2",473,0)
;
"RTN","SAMICAS2",474,0)
new groot set groot=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",475,0)
quit:'$data(@groot@("graph",sid)) ; nothing there
"RTN","SAMICAS2",476,0)
;
"RTN","SAMICAS2",477,0)
kill @ary
"RTN","SAMICAS2",478,0)
new zi set zi=""
"RTN","SAMICAS2",479,0)
for set zi=$order(@groot@("graph",sid,zi)) quit:zi="" do ;
"RTN","SAMICAS2",480,0)
. set @ary@(zi)=""
"RTN","SAMICAS2",481,0)
. quit
"RTN","SAMICAS2",482,0)
;
"RTN","SAMICAS2",483,0)
;
"RTN","SAMICAS2",484,0)
;@stanza 3 get rest of forms (many-to-one, get dates)
"RTN","SAMICAS2",485,0)
;
"RTN","SAMICAS2",486,0)
new tary
"RTN","SAMICAS2",487,0)
for set zi=$order(@ary@(zi)) quit:zi="" do ;
"RTN","SAMICAS2",488,0)
. new zkey1,zform set zkey1=$piece(zi,"-",1)
"RTN","SAMICAS2",489,0)
. ; if zkey1="sbform" quit ;
"RTN","SAMICAS2",490,0)
. if zkey1="siform" quit ;
"RTN","SAMICAS2",491,0)
. new fname
"RTN","SAMICAS2",492,0)
. if zkey1="ceform" set fname="CT Evaluation"
"RTN","SAMICAS2",493,0)
. set zform=zkey1
"RTN","SAMICAS2",494,0)
. if zkey1="sbform" set zform="vapals:sbform"
"RTN","SAMICAS2",495,0)
. if zkey1="sbform" set fname="Background"
"RTN","SAMICAS2",496,0)
. if zkey1="ceform" set zform="vapals:ceform"
"RTN","SAMICAS2",497,0)
. if zkey1="fuform" set zform="vapals:fuform"
"RTN","SAMICAS2",498,0)
. if zkey1="fuform" set fname="Follow-up"
"RTN","SAMICAS2",499,0)
. if zkey1="bxform" set fname="Biopsy"
"RTN","SAMICAS2",500,0)
. if zkey1="bxform" set zform="vapals:bxform"
"RTN","SAMICAS2",501,0)
. if zkey1="ptform" set zform="vapals:ptform"
"RTN","SAMICAS2",502,0)
. if zkey1="ptform" set fname="PET Evaluation"
"RTN","SAMICAS2",503,0)
. if zkey1="itform" set zform="vapals:itform"
"RTN","SAMICAS2",504,0)
. if zkey1="itform" set fname="Intervention"
"RTN","SAMICAS2",505,0)
. if $get(fname)="" set fname="unknown"
"RTN","SAMICAS2",506,0)
. ;
"RTN","SAMICAS2",507,0)
. new zdate set zdate=$extract(zi,$length(zkey1)+2,$length(zi))
"RTN","SAMICAS2",508,0)
. set zdate=$$FMDT^SAMIUR2(zdate)
"RTN","SAMICAS2",509,0)
. quit:$get(zdate)=""
"RTN","SAMICAS2",510,0)
. quit:$get(zform)=""
"RTN","SAMICAS2",511,0)
. quit:$get(zi)=""
"RTN","SAMICAS2",512,0)
. quit:$get(fname)=""
"RTN","SAMICAS2",513,0)
. ;
"RTN","SAMICAS2",514,0)
. set tary("sort",zdate,zform,zi,fname)=""
"RTN","SAMICAS2",515,0)
. set tary("type",zform,zi,fname)=""
"RTN","SAMICAS2",516,0)
. quit
"RTN","SAMICAS2",517,0)
merge @ary=tary
"RTN","SAMICAS2",518,0)
;
"RTN","SAMICAS2",519,0)
;
"RTN","SAMICAS2",520,0)
;@stanza 4 termination
"RTN","SAMICAS2",521,0)
;
"RTN","SAMICAS2",522,0)
quit ; end of ppi GETITEMS^SAMICASE
"RTN","SAMICAS2",523,0)
;
"RTN","SAMICAS2",524,0)
;
"RTN","SAMICAS2",525,0)
;
"RTN","SAMICAS2",526,0)
GETDTKEY(formid) ; date portion of form key
"RTN","SAMICAS2",527,0)
;
"RTN","SAMICAS2",528,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",529,0)
;
"RTN","SAMICAS2",530,0)
;ven/gpl;private;function;
"RTN","SAMICAS2",531,0)
;@called by
"RTN","SAMICAS2",532,0)
; WSCASE^SAMICAS2
"RTN","SAMICAS2",533,0)
;@calls :
"RTN","SAMICAS2",534,0)
;@input
"RTN","SAMICAS2",535,0)
; formid form key
"RTN","SAMICAS2",536,0)
;@output
"RTN","SAMICAS2",537,0)
; date from form key
"RTN","SAMICAS2",538,0)
;@examples
"RTN","SAMICAS2",539,0)
; $$GETDTKEY("sbform-2018-02-26") = "2018-02-26"
"RTN","SAMICAS2",540,0)
;@tests :
"RTN","SAMICAS2",541,0)
; SAMIUTS2
"RTN","SAMICAS2",542,0)
;
"RTN","SAMICAS2",543,0)
;@stanza 2 calculate date from key
"RTN","SAMICAS2",544,0)
;
"RTN","SAMICAS2",545,0)
new frm set frm=$piece(formid,"-")
"RTN","SAMICAS2",546,0)
new date set date=$piece(formid,frm_"-",2)
"RTN","SAMICAS2",547,0)
;
"RTN","SAMICAS2",548,0)
;@stanza 3 return & termination
"RTN","SAMICAS2",549,0)
;
"RTN","SAMICAS2",550,0)
quit date ; return date; end of $$GETDTKEY
"RTN","SAMICAS2",551,0)
;
"RTN","SAMICAS2",552,0)
;
"RTN","SAMICAS2",553,0)
;
"RTN","SAMICAS2",554,0)
KEY2DSPD(zkey) ; date in elcap format from key date
"RTN","SAMICAS2",555,0)
;
"RTN","SAMICAS2",556,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",557,0)
;
"RTN","SAMICAS2",558,0)
;ven/gpl;private;function;
"RTN","SAMICAS2",559,0)
;@called by
"RTN","SAMICAS2",560,0)
; WSCASE^SAMICAS2
"RTN","SAMICAS2",561,0)
;@calls
"RTN","SAMICAS2",562,0)
; ^%DT
"RTN","SAMICAS2",563,0)
; $$FMTE^XLFDT
"RTN","SAMICAS2",564,0)
; $$VAPALSDT^SAMICAS2
"RTN","SAMICAS2",565,0)
;@input
"RTN","SAMICAS2",566,0)
; zkey = date in any format %DT can process
"RTN","SAMICAS2",567,0)
;@output
"RTN","SAMICAS2",568,0)
; date in elcap format
"RTN","SAMICAS2",569,0)
;@examples
"RTN","SAMICAS2",570,0)
; date 2018-02-26 => 26/Feb/2018
"RTN","SAMICAS2",571,0)
;@tests
"RTN","SAMICAS2",572,0)
; SAMIUTS2
"RTN","SAMICAS2",573,0)
;
"RTN","SAMICAS2",574,0)
;@stanza 2 convert date to elcap display format
"RTN","SAMICAS2",575,0)
;
"RTN","SAMICAS2",576,0)
new X set X=zkey
"RTN","SAMICAS2",577,0)
new Y
"RTN","SAMICAS2",578,0)
do ^%DT
"RTN","SAMICAS2",579,0)
;new Z set Z=$$FMTE^XLFDT(Y,"9D")
"RTN","SAMICAS2",580,0)
;set Z=$translate(Z," ","/")
"RTN","SAMICAS2",581,0)
new zdate
"RTN","SAMICAS2",582,0)
set zdate=$$VAPALSDT^SAMICASE(Y)
"RTN","SAMICAS2",583,0)
;
"RTN","SAMICAS2",584,0)
;@stanza 3 return & termination
"RTN","SAMICAS2",585,0)
;
"RTN","SAMICAS2",586,0)
quit zdate ; return date; end of $$KEY2DSPD
"RTN","SAMICAS2",587,0)
;
"RTN","SAMICAS2",588,0)
;
"RTN","SAMICAS2",589,0)
;
"RTN","SAMICAS2",590,0)
;@ppi-code $$VAPALSDT^SAMICASE
"RTN","SAMICAS2",591,0)
VAPALSDT ; vapals format for dates
"RTN","SAMICAS2",592,0)
;
"RTN","SAMICAS2",593,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",594,0)
;
"RTN","SAMICAS2",595,0)
;ven/gpl;ppi;function;clean;silent;sac;100% tests
"RTN","SAMICAS2",596,0)
;@signature
"RTN","SAMICAS2",597,0)
; $$VAPALSDT^SAMICASE(fmdate)
"RTN","SAMICAS2",598,0)
;@branches-from
"RTN","SAMICAS2",599,0)
; VAPALSDT^SAMICASE
"RTN","SAMICAS2",600,0)
;@ppi-called-by
"RTN","SAMICAS2",601,0)
; KEY2DSPD^SAMICAS2
"RTN","SAMICAS2",602,0)
; LASTCMP^SAMICAS3
"RTN","SAMICAS2",603,0)
; KEY2DT^SAMICAS3
"RTN","SAMICAS2",604,0)
; MKCEFORM^SAMICAS3
"RTN","SAMICAS2",605,0)
; MKFUFORM^SAMICAS3
"RTN","SAMICAS2",606,0)
; MKITFORM^SAMICAS3
"RTN","SAMICAS2",607,0)
; MKPTFORM^SAMICAS3
"RTN","SAMICAS2",608,0)
; LOGIT^SAMICLOG
"RTN","SAMICAS2",609,0)
; MKSIFORM^SAMIHOM3
"RTN","SAMICAS2",610,0)
; PREFILL^SAMIHOM3
"RTN","SAMICAS2",611,0)
; SELECT^SAMIUR
"RTN","SAMICAS2",612,0)
; SELECT^SAMIUR1
"RTN","SAMICAS2",613,0)
; IFORM^SAMIUR2
"RTN","SAMICAS2",614,0)
;@called-by none
"RTN","SAMICAS2",615,0)
;@calls
"RTN","SAMICAS2",616,0)
; $$FMTE^XLFDT
"RTN","SAMICAS2",617,0)
;@input
"RTN","SAMICAS2",618,0)
; fmdate = date in fileman format
"RTN","SAMICAS2",619,0)
;@output = vapals date format
"RTN","SAMICAS2",620,0)
;@tests
"RTN","SAMICAS2",621,0)
; UTVPLSD^SAMIUTS2
"RTN","SAMICAS2",622,0)
;
"RTN","SAMICAS2",623,0)
;
"RTN","SAMICAS2",624,0)
;@stanza 2 convert date
"RTN","SAMICAS2",625,0)
;
"RTN","SAMICAS2",626,0)
; new vdate set vdate=$$FMTE^XLFDT(fmdate,"9D")
"RTN","SAMICAS2",627,0)
; set vdate=$translate(vdate," ","/")
"RTN","SAMICAS2",628,0)
;
"RTN","SAMICAS2",629,0)
;new vdate set vdate=$$FMTE^XLFDT(fmdate,"5D")
"RTN","SAMICAS2",630,0)
new vdate set vdate=$$FMTE^XLFDT(fmdate,"5DZ")
"RTN","SAMICAS2",631,0)
;
"RTN","SAMICAS2",632,0)
;
"RTN","SAMICAS2",633,0)
;@stanza 3 termination
"RTN","SAMICAS2",634,0)
;
"RTN","SAMICAS2",635,0)
quit vdate ; end of ppi $$VAPALSDT^SAMICASE
"RTN","SAMICAS2",636,0)
;
"RTN","SAMICAS2",637,0)
;
"RTN","SAMICAS2",638,0)
;
"RTN","SAMICAS2",639,0)
;@section 2 WSNUFORM & related ppis
"RTN","SAMICAS2",640,0)
;
"RTN","SAMICAS2",641,0)
;
"RTN","SAMICAS2",642,0)
;
"RTN","SAMICAS2",643,0)
;@wri-code WSNUFORM^SAMICASE
"RTN","SAMICAS2",644,0)
WSNUFORM ; post vapals nuform: new form for patient
"RTN","SAMICAS2",645,0)
;
"RTN","SAMICAS2",646,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",647,0)
;
"RTN","SAMICAS2",648,0)
;ven/gpl;wri;procedure;clean;silent;sac;?? tests
"RTN","SAMICAS2",649,0)
;@signature
"RTN","SAMICAS2",650,0)
; do WSNUFORM^SAMICASE(rtn,filter)
"RTN","SAMICAS2",651,0)
;@branches-from
"RTN","SAMICAS2",652,0)
; WSNUFORM^SAMICASE
"RTN","SAMICAS2",653,0)
;@wri-called-by
"RTN","SAMICAS2",654,0)
; WSVAPALS^SAMIHOM3 [wr nuform of ws post vapals]
"RTN","SAMICAS2",655,0)
;@called-by none
"RTN","SAMICAS2",656,0)
;@calls
"RTN","SAMICAS2",657,0)
; $$SID2NUM^SAMIHOM3
"RTN","SAMICAS2",658,0)
; $$setroot^%wd
"RTN","SAMICAS2",659,0)
; GETTMPL^SAMICAS2
"RTN","SAMICAS2",660,0)
; findReplace^%ts
"RTN","SAMICAS2",661,0)
; FIXHREF^SAMIFORM
"RTN","SAMICAS2",662,0)
; FIXSRC^SAMIFORM
"RTN","SAMICAS2",663,0)
; findReplace^%ts
"RTN","SAMICAS2",664,0)
;@input
"RTN","SAMICAS2",665,0)
; .filter =
"RTN","SAMICAS2",666,0)
; .filter("studyid")=studyid of the patient
"RTN","SAMICAS2",667,0)
;@output
"RTN","SAMICAS2",668,0)
; @rtn
"RTN","SAMICAS2",669,0)
;@tests
"RTN","SAMICAS2",670,0)
; UTWSNF^SAMIUTS2
"RTN","SAMICAS2",671,0)
;
"RTN","SAMICAS2",672,0)
;
"RTN","SAMICAS2",673,0)
;@stanza 2 get select-new-form form
"RTN","SAMICAS2",674,0)
;
"RTN","SAMICAS2",675,0)
new sid set sid=$get(filter("studyid"))
"RTN","SAMICAS2",676,0)
quit:sid=""
"RTN","SAMICAS2",677,0)
new sien set sien=$$SID2NUM^SAMIHOM3(sid)
"RTN","SAMICAS2",678,0)
quit:+sien=0
"RTN","SAMICAS2",679,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",680,0)
new groot set groot=$name(@root@(sien))
"RTN","SAMICAS2",681,0)
;
"RTN","SAMICAS2",682,0)
new saminame set saminame=$get(@groot@("saminame"))
"RTN","SAMICAS2",683,0)
quit:saminame=""
"RTN","SAMICAS2",684,0)
;
"RTN","SAMICAS2",685,0)
new temp,tout,form
"RTN","SAMICAS2",686,0)
set return="temp",form="vapals:nuform"
"RTN","SAMICAS2",687,0)
do GETTMPL
"RTN","SAMICAS2",688,0)
quit:'$data(temp)
"RTN","SAMICAS2",689,0)
;
"RTN","SAMICAS2",690,0)
new cnt set cnt=0
"RTN","SAMICAS2",691,0)
new zi set zi=0
"RTN","SAMICAS2",692,0)
for set zi=$order(temp(zi)) quit:+zi=0 do ;
"RTN","SAMICAS2",693,0)
. new ln set ln=temp(zi)
"RTN","SAMICAS2",694,0)
. new touched set touched=0
"RTN","SAMICAS2",695,0)
. ;
"RTN","SAMICAS2",696,0)
. if ln["href" if 'touched do ;
"RTN","SAMICAS2",697,0)
. . do FIXHREF^SAMIFORM(.ln)
"RTN","SAMICAS2",698,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",699,0)
. ;
"RTN","SAMICAS2",700,0)
. if ln["src" d ;
"RTN","SAMICAS2",701,0)
. . do FIXSRC^SAMIFORM(.ln)
"RTN","SAMICAS2",702,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",703,0)
. ;
"RTN","SAMICAS2",704,0)
. if ln["@@SID@@" do ;
"RTN","SAMICAS2",705,0)
. . do findReplace^%ts(.ln,"@@SID@@",sid)
"RTN","SAMICAS2",706,0)
. . set temp(zi)=ln
"RTN","SAMICAS2",707,0)
. . quit
"RTN","SAMICAS2",708,0)
. ;
"RTN","SAMICAS2",709,0)
. if ln["@@SITE@@" do ; insert site id
"RTN","SAMICAS2",710,0)
. . n siteid s siteid=$g(filter("siteid"))
"RTN","SAMICAS2",711,0)
. . i siteid="" s siteid=$g(filter("site"))
"RTN","SAMICAS2",712,0)
. . q:siteid=""
"RTN","SAMICAS2",713,0)
. . do findReplace^%ts(.ln,"@@SITE@@",siteid)
"RTN","SAMICAS2",714,0)
. . s temp(zi)=ln
"RTN","SAMICAS2",715,0)
. ;
"RTN","SAMICAS2",716,0)
. if ln["@@SITETITLE@@" do ; insert site title
"RTN","SAMICAS2",717,0)
. . n sitetit s sitetit=$g(filter("sitetitle"))
"RTN","SAMICAS2",718,0)
. . if sitetit="" d ;
"RTN","SAMICAS2",719,0)
. . . n tsite s tsite=$g(filter("site"))
"RTN","SAMICAS2",720,0)
. . . q:tsite=""
"RTN","SAMICAS2",721,0)
. . . s sitetit=$$SITENM2^SAMISITE(tsite)_" - "_tsite
"RTN","SAMICAS2",722,0)
. . q:sitetit=""
"RTN","SAMICAS2",723,0)
. . do findReplace^%ts(.ln,"@@SITETITLE@@",sitetit)
"RTN","SAMICAS2",724,0)
. . s temp(zi)=ln
"RTN","SAMICAS2",725,0)
. ;
"RTN","SAMICAS2",726,0)
. set cnt=cnt+1
"RTN","SAMICAS2",727,0)
. set rtn(cnt)=temp(zi)
"RTN","SAMICAS2",728,0)
;
"RTN","SAMICAS2",729,0)
;
"RTN","SAMICAS2",730,0)
;@stanza 3 termination
"RTN","SAMICAS2",731,0)
;
"RTN","SAMICAS2",732,0)
quit ; end of wri WSNUFORM^SAMICASE
"RTN","SAMICAS2",733,0)
;
"RTN","SAMICAS2",734,0)
;
"RTN","SAMICAS2",735,0)
;
"RTN","SAMICAS2",736,0)
;@ppi-code $$KEY2FM^SAMICASE
"RTN","SAMICAS2",737,0)
KEY2FM ; convert key to fileman date
"RTN","SAMICAS2",738,0)
;
"RTN","SAMICAS2",739,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",740,0)
;
"RTN","SAMICAS2",741,0)
;ven/gpl;wri;procedure;silent;clean;sac;??% tests
"RTN","SAMICAS2",742,0)
;@signature
"RTN","SAMICAS2",743,0)
; $$KEY2FM^SAMICASE(key)
"RTN","SAMICAS2",744,0)
;@branches-from
"RTN","SAMICAS2",745,0)
; KEY2FM^SAMICASE
"RTN","SAMICAS2",746,0)
;@ppi-called-by
"RTN","SAMICAS2",747,0)
; WSNFPOST^SAMICAS3
"RTN","SAMICAS2",748,0)
; $$LASTCMP^SAMICAS3
"RTN","SAMICAS2",749,0)
; $$KEY2DT^SAMICAS3
"RTN","SAMICAS2",750,0)
; SAVFILTR^SAMISAV
"RTN","SAMICAS2",751,0)
; SELECT^SAMIUR
"RTN","SAMICAS2",752,0)
; SELECT^SAMIUR1
"RTN","SAMICAS2",753,0)
; IFORM^SAMIUM2
"RTN","SAMICAS2",754,0)
;@called-by none
"RTN","SAMICAS2",755,0)
;@calls
"RTN","SAMICAS2",756,0)
; ^%DT
"RTN","SAMICAS2",757,0)
;@input
"RTN","SAMICAS2",758,0)
; key = vapals key (e.g.
"RTN","SAMICAS2",759,0)
;@output
"RTN","SAMICAS2",760,0)
;@examples
"RTN","SAMICAS2",761,0)
; $$KEY2FM("sbform-2018-02-26") = 3180226
"RTN","SAMICAS2",762,0)
;@tests
"RTN","SAMICAS2",763,0)
; UTK2FM^SAMIUTS2
"RTN","SAMICAS2",764,0)
;
"RTN","SAMICAS2",765,0)
;
"RTN","SAMICAS2",766,0)
;@stanza 2 convert key to fm date
"RTN","SAMICAS2",767,0)
;
"RTN","SAMICAS2",768,0)
new datepart set datepart=key
"RTN","SAMICAS2",769,0)
; allow key to be the whole key ie ceform-2018-10-3
"RTN","SAMICAS2",770,0)
if $length(key,"-")=4 do
"RTN","SAMICAS2",771,0)
. new frm set frm=$piece(key,"-")
"RTN","SAMICAS2",772,0)
. set datepart=$piece(key,frm_"-",2)
"RTN","SAMICAS2",773,0)
. quit
"RTN","SAMICAS2",774,0)
new X set X=datepart
"RTN","SAMICAS2",775,0)
new Y
"RTN","SAMICAS2",776,0)
do ^%DT ; call fileman to convert date
"RTN","SAMICAS2",777,0)
;
"RTN","SAMICAS2",778,0)
;
"RTN","SAMICAS2",779,0)
;@stanza 3 termination
"RTN","SAMICAS2",780,0)
;
"RTN","SAMICAS2",781,0)
quit Y ; end of ppi $$KEY2FM^SAMICASE
"RTN","SAMICAS2",782,0)
;
"RTN","SAMICAS2",783,0)
;
"RTN","SAMICAS2",784,0)
;
"RTN","SAMICAS2",785,0)
;@section 3 casetbl
"RTN","SAMICAS2",786,0)
;
"RTN","SAMICAS2",787,0)
;
"RTN","SAMICAS2",788,0)
;
"RTN","SAMICAS2",789,0)
;@ppi $$GSAMISTA^SAMICAS2 = value of 'samistatus' from form
"RTN","SAMICAS2",790,0)
GSAMISTA(sid,form) ; extrinsic returns value of 'samistatus' from form
"RTN","SAMICAS2",791,0)
;
"RTN","SAMICAS2",792,0)
;@called by
"RTN","SAMICAS2",793,0)
; WSCASE^SAMICAS2
"RTN","SAMICAS2",794,0)
;@calls
"RTN","SAMICAS2",795,0)
; $$setroot^%wd
"RTN","SAMICAS2",796,0)
;@input
"RTN","SAMICAS2",797,0)
; sid = patient's studyid
"RTN","SAMICAS2",798,0)
; form = specific study form (e.g. "sbform-2018-02-26")
"RTN","SAMICAS2",799,0)
;@output
"RTN","SAMICAS2",800,0)
; status of the form
"RTN","SAMICAS2",801,0)
;@tests
"RTN","SAMICAS2",802,0)
; SAMIUTS2
"RTN","SAMICAS2",803,0)
;
"RTN","SAMICAS2",804,0)
new stat,root,useform
"RTN","SAMICAS2",805,0)
set root=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",806,0)
set useform=form
"RTN","SAMICAS2",807,0)
if form["vapals:" set useform=$p(form,"vapals:",2)
"RTN","SAMICAS2",808,0)
set stat=$get(@root@("graph",sid,useform,"samistatus"))
"RTN","SAMICAS2",809,0)
if stat="" set stat="incomplete"
"RTN","SAMICAS2",810,0)
;
"RTN","SAMICAS2",811,0)
quit stat ; end of ppi $$GSAMISTA^SAMICAS2
"RTN","SAMICAS2",812,0)
;
"RTN","SAMICAS2",813,0)
;
"RTN","SAMICAS2",814,0)
;
"RTN","SAMICAS2",815,0)
;@ppi-code SSAMISTA^SAMICASE
"RTN","SAMICAS2",816,0)
SSAMISTA ; set samistatus to val in form
"RTN","SAMICAS2",817,0)
;
"RTN","SAMICAS2",818,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",819,0)
;
"RTN","SAMICAS2",820,0)
;ven/gpl;ppi;procedure;silent;clean;sac;??% tests
"RTN","SAMICAS2",821,0)
;@signature
"RTN","SAMICAS2",822,0)
; do SSAMISTA^SAMICASE(sid,form,val)
"RTN","SAMICAS2",823,0)
;@branches-from
"RTN","SAMICAS2",824,0)
; SSAMISTA^SAMICASE
"RTN","SAMICAS2",825,0)
;@ppi-called-by
"RTN","SAMICAS2",826,0)
; INITSTAT^SAMICAS2
"RTN","SAMICAS2",827,0)
; MKSBFORM^SAMICAS3
"RTN","SAMICAS2",828,0)
; MKCEFORM^SAMICAS3
"RTN","SAMICAS2",829,0)
; MKFUFORM^SAMICAS3
"RTN","SAMICAS2",830,0)
; MKPTFORM^SAMICAS3
"RTN","SAMICAS2",831,0)
; MKITFORM^SAMICAS3
"RTN","SAMICAS2",832,0)
; MKBXFORM^SAMICAS3
"RTN","SAMICAS2",833,0)
; MKSBFORM^SAMIHOM3
"RTN","SAMICAS2",834,0)
; MKSIFORM^SAMIHOM3
"RTN","SAMICAS2",835,0)
;@called-by none
"RTN","SAMICAS2",836,0)
;@calls
"RTN","SAMICAS2",837,0)
; $$setroot^%wd
"RTN","SAMICAS2",838,0)
;@input
"RTN","SAMICAS2",839,0)
; sid = patient's studyid
"RTN","SAMICAS2",840,0)
; form = specific study form (e.g. "sbform-2018-02-26")
"RTN","SAMICAS2",841,0)
; value = status (complete, incomplete)
"RTN","SAMICAS2",842,0)
;@output
"RTN","SAMICAS2",843,0)
; sets 'samistatus' to val in form
"RTN","SAMICAS2",844,0)
;@examples [tbd]
"RTN","SAMICAS2",845,0)
;@tests
"RTN","SAMICAS2",846,0)
; UTSSAMIS^SAMIUTS2
"RTN","SAMICAS2",847,0)
;
"RTN","SAMICAS2",848,0)
;
"RTN","SAMICAS2",849,0)
;@stanza 2 set status
"RTN","SAMICAS2",850,0)
;
"RTN","SAMICAS2",851,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",852,0)
new useform set useform=form
"RTN","SAMICAS2",853,0)
if form["vapals:" set useform=$piece(form,"vapals:",2)
"RTN","SAMICAS2",854,0)
if '$data(@root@("graph",sid,useform)) quit ; no form
"RTN","SAMICAS2",855,0)
set @root@("graph",sid,useform,"samistatus")=val
"RTN","SAMICAS2",856,0)
;
"RTN","SAMICAS2",857,0)
;
"RTN","SAMICAS2",858,0)
;@stanza 3 termination
"RTN","SAMICAS2",859,0)
;
"RTN","SAMICAS2",860,0)
quit ; end of ppi SSAMISTA^SAMICASE
"RTN","SAMICAS2",861,0)
;
"RTN","SAMICAS2",862,0)
;
"RTN","SAMICAS2",863,0)
;
"RTN","SAMICAS2",864,0)
;@wri-code DELFORM^SAMICASE
"RTN","SAMICAS2",865,0)
DELFORM ; post vapals deleteform: delete incomplete form
"RTN","SAMICAS2",866,0)
;
"RTN","SAMICAS2",867,0)
;@stanza 1 invocation, binding, & branching
"RTN","SAMICAS2",868,0)
;
"RTN","SAMICAS2",869,0)
;ven/gpl;wri;procedure;silent;clean;sac;??% tests
"RTN","SAMICAS2",870,0)
;@signature
"RTN","SAMICAS2",871,0)
; do DELFORM^SAMICASE(RESULT,ARGS)
"RTN","SAMICAS2",872,0)
;@branches-from
"RTN","SAMICAS2",873,0)
; DELFORM^SAMICASE
"RTN","SAMICAS2",874,0)
;@wri-called-by
"RTN","SAMICAS2",875,0)
; WSVAPALS^SAMIHOM3 [wr deleteform of ws post vapals]
"RTN","SAMICAS2",876,0)
;@called-by none
"RTN","SAMICAS2",877,0)
;@calls
"RTN","SAMICAS2",878,0)
; $$setroot^%wd
"RTN","SAMICAS2",879,0)
; $$GSAMISTA
"RTN","SAMICAS2",880,0)
; WSCASE^SAMICASE
"RTN","SAMICAS2",881,0)
;@input
"RTN","SAMICAS2",882,0)
; .ARGS=
"RTN","SAMICAS2",883,0)
; .ARGS("studyid")
"RTN","SAMICAS2",884,0)
; .ARGS("form")
"RTN","SAMICAS2",885,0)
;@output
"RTN","SAMICAS2",886,0)
; @RESULT
"RTN","SAMICAS2",887,0)
;@tests
"RTN","SAMICAS2",888,0)
; UTDELFM^SAMIUTS2
"RTN","SAMICAS2",889,0)
;
"RTN","SAMICAS2",890,0)
; will not delete intake or background form
"RTN","SAMICAS2",891,0)
;
"RTN","SAMICAS2",892,0)
;
"RTN","SAMICAS2",893,0)
;@stanza 2 delete form
"RTN","SAMICAS2",894,0)
;
"RTN","SAMICAS2",895,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",896,0)
new sid set sid=$get(ARGS("studyid"))
"RTN","SAMICAS2",897,0)
quit:sid=""
"RTN","SAMICAS2",898,0)
;
"RTN","SAMICAS2",899,0)
new form set form=$get(ARGS("form"))
"RTN","SAMICAS2",900,0)
quit:form=""
"RTN","SAMICAS2",901,0)
;
"RTN","SAMICAS2",902,0)
quit:form["siform"
"RTN","SAMICAS2",903,0)
;
"RTN","SAMICAS2",904,0)
; quit:'$data(@root@("graph",sid,form)) ; form does not exist
"RTN","SAMICAS2",905,0)
if $$GSAMISTA(sid,form)="incomplete" do
"RTN","SAMICAS2",906,0)
. kill @root@("graph",sid,form)
"RTN","SAMICAS2",907,0)
. quit
"RTN","SAMICAS2",908,0)
;
"RTN","SAMICAS2",909,0)
kill ARGS("samiroute")
"RTN","SAMICAS2",910,0)
do WSCASE^SAMICASE(.RESULT,.ARGS) ; post vapals casereview:
"RTN","SAMICAS2",911,0)
; generate case review page
"RTN","SAMICAS2",912,0)
;
"RTN","SAMICAS2",913,0)
;
"RTN","SAMICAS2",914,0)
;@stanza 3 termination
"RTN","SAMICAS2",915,0)
;
"RTN","SAMICAS2",916,0)
quit ; end of wri DELFORM^SAMICASE
"RTN","SAMICAS2",917,0)
;
"RTN","SAMICAS2",918,0)
;
"RTN","SAMICAS2",919,0)
;
"RTN","SAMICAS2",920,0)
INITSTAT ; set all forms to 'incomplete'
"RTN","SAMICAS2",921,0)
;
"RTN","SAMICAS2",922,0)
;@called by : none
"RTN","SAMICAS2",923,0)
;@calls
"RTN","SAMICAS2",924,0)
; SSAMISTA^SAMICASE
"RTN","SAMICAS2",925,0)
;@input : none
"RTN","SAMICAS2",926,0)
;@output
"RTN","SAMICAS2",927,0)
; set all forms to 'incomplete'
"RTN","SAMICAS2",928,0)
;@tests
"RTN","SAMICAS2",929,0)
;
"RTN","SAMICAS2",930,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMICAS2",931,0)
new zi,zj set (zi,zj)=""
"RTN","SAMICAS2",932,0)
for set zi=$order(@root@("graph",zi)) quit:zi="" do ;
"RTN","SAMICAS2",933,0)
. for set zj=$order(@root@("graph",zi,zj)) quit:zj="" do ;
"RTN","SAMICAS2",934,0)
. . if zj["siform" do SSAMISTA^SAMICASE(zi,zj,"complete") quit ;
"RTN","SAMICAS2",935,0)
. . do SSAMISTA^SAMICASE(zi,zj,"incomplete")
"RTN","SAMICAS2",936,0)
;
"RTN","SAMICAS2",937,0)
quit ; end of INITSTAT
"RTN","SAMICAS2",938,0)
;
"RTN","SAMICAS2",939,0)
;
"RTN","SAMICAS2",940,0)
;
"RTN","SAMICAS2",941,0)
EOR ; end of routine SAMICAS2
"RTN","SAMICUL")
0^6^B135148
"RTN","SAMICUL",1,0)
SAMICUL ;ven/gpl - case review log ;2021-10-05t23:23z
"RTN","SAMICUL",2,0)
;;18.0;SAMI;**9,11,12,14**;2020-01;Build 7
"RTN","SAMICUL",3,0)
;;18.14
"RTN","SAMICUL",4,0)
;
"RTN","SAMICUL",5,0)
; SAMICUL contains the development log for the VAPALS-IELCAP Case
"RTN","SAMICUL",6,0)
; Review Page (SAMICA* routines).
"RTN","SAMICUL",7,0)
; It contains no executable code.
"RTN","SAMICUL",8,0)
;
"RTN","SAMICUL",9,0)
quit ; no entry from top
"RTN","SAMICUL",10,0)
;
"RTN","SAMICUL",11,0)
;
"RTN","SAMICUL",12,0)
;
"RTN","SAMICUL",13,0)
;@section 0 primary development
"RTN","SAMICUL",14,0)
;
"RTN","SAMICUL",15,0)
;
"RTN","SAMICUL",16,0)
;
"RTN","SAMICUL",17,0)
;@routine-credits
"RTN","SAMICUL",18,0)
;@dev-main George P. Lilly (gpl)
"RTN","SAMICUL",19,0)
; gpl@vistaexpertise.net
"RTN","SAMICUL",20,0)
;@dev-org-main Vista Expertise Network (ven)
"RTN","SAMICUL",21,0)
; http://vistaexpertise.net
"RTN","SAMICUL",22,0)
;@copyright 2017/2021, gpl, all rights reserved
"RTN","SAMICUL",23,0)
;@license see routine SAMIUL
"RTN","SAMICUL",24,0)
;
"RTN","SAMICUL",25,0)
;@last-update 2021-08-10t18:36z
"RTN","SAMICUL",26,0)
;@application Screening Applications Management (SAM)
"RTN","SAMICUL",27,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMICUL",28,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMICUL",29,0)
;@version 18.12
"RTN","SAMICUL",30,0)
;@release-date 2020-01
"RTN","SAMICUL",31,0)
;@patch-list **9,11,12**
"RTN","SAMICUL",32,0)
;
"RTN","SAMICUL",33,0)
;@dev-add Frederick D. S. Marshall (toad)
"RTN","SAMICUL",34,0)
; toad@vistaexpertise.net
"RTN","SAMICUL",35,0)
;@dev-add Linda M. R. Yaw (lmry)
"RTN","SAMICUL",36,0)
; linda.yaw@vistaexpertise.net
"RTN","SAMICUL",37,0)
;@dev-add Larry G. Carlson (lgc)
"RTN","SAMICUL",38,0)
; larry.g.carlson@gmail.com
"RTN","SAMICUL",39,0)
;@dev-add Domenick DiNatale (ddn)
"RTN","SAMICUL",40,0)
; domenic@intellitechinnovations.com
"RTN","SAMICUL",41,0)
;@dev-add Kenneth McGlothlen (mcglk)
"RTN","SAMICUL",42,0)
; mcglk@vistaexpertise.net
"RTN","SAMICUL",43,0)
;
"RTN","SAMICUL",44,0)
;@module-credits
"RTN","SAMICUL",45,0)
;@project VA Partnership to Increase Access to Lung Screening
"RTN","SAMICUL",46,0)
; (VA-PALS)
"RTN","SAMICUL",47,0)
; http://va-pals.org/
"RTN","SAMICUL",48,0)
;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf)
"RTN","SAMICUL",49,0)
; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html
"RTN","SAMICUL",50,0)
;@partner-org Veterans Affairs Office of Rural health
"RTN","SAMICUL",51,0)
; https://www.ruralhealth.va.gov/
"RTN","SAMICUL",52,0)
;@partner-org International Early Lung Cancer Action Program (I-ELCAP)
"RTN","SAMICUL",53,0)
; http://ielcap.com/
"RTN","SAMICUL",54,0)
;@partner-org Paraxial Technologies (par)
"RTN","SAMICUL",55,0)
; http://paraxialtech.com/
"RTN","SAMICUL",56,0)
;@partner-org Open Source Electronic Health Record Alliance (OSEHRA)
"RTN","SAMICUL",57,0)
; https://www.osehra.org/groups/va-pals-open-source-project-group
"RTN","SAMICUL",58,0)
;
"RTN","SAMICUL",59,0)
;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMICUL",60,0)
;
"RTN","SAMICUL",61,0)
; 2018-01-14 ven/gpl 18.0-t4
"RTN","SAMICUL",62,0)
; SAMICASE split from routine SAMIFRM, incl wsCASE,GETTMPL,GETITEMS,
"RTN","SAMICUL",63,0)
; casetbl.
"RTN","SAMICUL",64,0)
;
"RTN","SAMICUL",65,0)
; 2018-02-05/08 ven/toad 18.0-t4
"RTN","SAMICUL",66,0)
; SAMICASE update style, license, & attribution, spell out language
"RTN","SAMICUL",67,0)
; elements, add white space & do-dot quits, r/replaceAll^%wfhfrom w/
"RTN","SAMICUL",68,0)
; replaceAll^%wf, r/$$getTemplate^%wfhform w/$$getTemplate^%wf.
"RTN","SAMICUL",69,0)
;
"RTN","SAMICUL",70,0)
; 2018-02-14 ven/toad 18.0-t4
"RTN","SAMICUL",71,0)
; SAMICASE r/replaceAll^%wf w/findReplaceAll^%wf, r/ln w/line, add
"RTN","SAMICUL",72,0)
; @calls & @called-by tags, break up some long lines.
"RTN","SAMICUL",73,0)
;
"RTN","SAMICUL",74,0)
; 2018-02-27 ven/gpl 18.0-t4
"RTN","SAMICUL",75,0)
; SAMICASE new subroutines $$KEY2DSPD, $$GETDTKEY; in wsCASE get
"RTN","SAMICUL",76,0)
; 1st & last names from graph, fix paths, key forms in graph w/date.
"RTN","SAMICUL",77,0)
;
"RTN","SAMICUL",78,0)
; 2018-03-01 ven/toad 18.0-t4
"RTN","SAMICUL",79,0)
; SAMICASE refactor & reorganize new code, add header comments, r/
"RTN","SAMICUL",80,0)
; findReplaceAll^%wf w/findReplace^%ts.
"RTN","SAMICUL",81,0)
;
"RTN","SAMICUL",82,0)
; 2018-03-06 ven/gpl 18.0-t4
"RTN","SAMICUL",83,0)
; SAMICASE add New Form button, list rest of forms for patient, add
"RTN","SAMICUL",84,0)
; web services wsNuForm & wsNuFormPost & method MKCEFORM, extend
"RTN","SAMICUL",85,0)
; GETITEMS to get rest of forms.
"RTN","SAMICUL",86,0)
;
"RTN","SAMICUL",87,0)
; 2018-03-07/08 ven/toad 18.0-t4
"RTN","SAMICUL",88,0)
; SAMICASE merge George changes w/ rest, add white space, spell out
"RTN","SAMICUL",89,0)
; M elements, add hdr comments to new subroutines, r/findReplace^%wf
"RTN","SAMICUL",90,0)
; & replaceAll^%wf w/findReplace^%ts.
"RTN","SAMICUL",91,0)
;
"RTN","SAMICUL",92,0)
; 2018-03-11 ven/gpl 18.0-t4 9bd663ee
"RTN","SAMICUL",93,0)
; SAMICAS2 vapals forms working.
"RTN","SAMICUL",94,0)
;
"RTN","SAMICUL",95,0)
; 2018-03-12 ven/gpl 18.0-t4 8c36c6a7
"RTN","SAMICUL",96,0)
; SAMICAS2 new form works now & charts on home page.
"RTN","SAMICUL",97,0)
;
"RTN","SAMICUL",98,0)
; 2018-03-14 ven/gpl 18.0-t4 9653650a
"RTN","SAMICUL",99,0)
; SAMICAS2 revised casereview page link, fixed external url
"RTN","SAMICUL",100,0)
; preservation.
"RTN","SAMICUL",101,0)
;
"RTN","SAMICUL",102,0)
; 2018-03-21 ven/gpl 18.0-t4 48868561
"RTN","SAMICUL",103,0)
; SAMICAS2 max date insertion, case review navigation changed to
"RTN","SAMICUL",104,0)
; post, date order for CT Eval in case review.
"RTN","SAMICUL",105,0)
;
"RTN","SAMICUL",106,0)
; 2018-03-26 ven/gpl 18.0-t4 5fa4ee96
"RTN","SAMICUL",107,0)
; SAMICAS2 changes to support incomplete forms display &
"RTN","SAMICUL",108,0)
; processing.
"RTN","SAMICUL",109,0)
;
"RTN","SAMICUL",110,0)
; 2018-03-27 ven/gpl 18.0-t4 cace9756
"RTN","SAMICUL",111,0)
; SAMICAS2 siforms are always complete.
"RTN","SAMICUL",112,0)
;
"RTN","SAMICUL",113,0)
; 2018-04-02 ven/gpl 18.0-t4 00da9146
"RTN","SAMICUL",114,0)
; SAMICAS2 added followup form.
"RTN","SAMICUL",115,0)
;
"RTN","SAMICUL",116,0)
; 2018-04-24 ven/gpl 18.0-t4 22e39d87
"RTN","SAMICUL",117,0)
; SAMICAS2 added pet & biopsy forms.
"RTN","SAMICUL",118,0)
;
"RTN","SAMICUL",119,0)
; 2018-05-01 ven/gpl 18.0-t4 f1751c43
"RTN","SAMICUL",120,0)
; SAMICAS2 fix problem with new forms: followup & pet.
"RTN","SAMICUL",121,0)
;
"RTN","SAMICUL",122,0)
; 2018-05-18 ven/lgc 18.0-t4 9eba8f8c
"RTN","SAMICUL",123,0)
; SAMICAS2 conversion to new graph and simplified forms processing.
"RTN","SAMICUL",124,0)
;
"RTN","SAMICUL",125,0)
; 2018-05-21 ven/lgc 18.0-t4 0d7ed2f7
"RTN","SAMICUL",126,0)
; SAMICAS2 changes for new navigation html.
"RTN","SAMICUL",127,0)
;
"RTN","SAMICUL",128,0)
; 2018-06-14 ven/lgc 18.0-t4 d71f4fe4
"RTN","SAMICUL",129,0)
; SAMICAS2 changes to make the background form optional.
"RTN","SAMICUL",130,0)
;
"RTN","SAMICUL",131,0)
; 2018-06-20 ven/lgc 18.0-t4 bf03b07f
"RTN","SAMICUL",132,0)
; SAMICAS2 corrections for new forms processing navigation.
"RTN","SAMICUL",133,0)
;
"RTN","SAMICUL",134,0)
; 2018-07-01 ven/lgc 18.0-t4 2e1541dc,8b0a4329
"RTN","SAMICUL",135,0)
; SAMICAS2 add intervention forms to case review page, 1st version
"RTN","SAMICUL",136,0)
; of ct eval report.
"RTN","SAMICUL",137,0)
;
"RTN","SAMICUL",138,0)
; 2018-07-04 ven/lgc 18.0-t4 b28c1658
"RTN","SAMICUL",139,0)
; SAMICAS2 fix a typo.
"RTN","SAMICUL",140,0)
;
"RTN","SAMICUL",141,0)
; 2018-07-10 ven/lgc 18.0-t4 2e9662b4
"RTN","SAMICUL",142,0)
; SAMICAS2 repair SAMIHOM3 & redact report link.
"RTN","SAMICUL",143,0)
;
"RTN","SAMICUL",144,0)
; 2018-08-19 ven/lgc 18.0-t4 2ce0cab4
"RTN","SAMICUL",145,0)
; SAMICAS2 use ssn instead of last5 where available.
"RTN","SAMICUL",146,0)
;
"RTN","SAMICUL",147,0)
; 2018-08-20 ven/lgc 18.0-t4 955fd484
"RTN","SAMICUL",148,0)
; SAMICAS2 fix case review page cr lf issue.
"RTN","SAMICUL",149,0)
;
"RTN","SAMICUL",150,0)
; 2018-08-22 ven/gpl 18.0-t4 d67a2fe5
"RTN","SAMICUL",151,0)
; SAMICAS2 turn off ctreport.
"RTN","SAMICUL",152,0)
;
"RTN","SAMICUL",153,0)
; 2018-08-30 ven/lgc 18.0-t4 125f1c8b
"RTN","SAMICUL",154,0)
; SAMICAS2 add type index to getItems to help find last previous
"RTN","SAMICUL",155,0)
; form of a type.
"RTN","SAMICUL",156,0)
;
"RTN","SAMICUL",157,0)
; 2018-09-04 ven/lgc 18.0-t4 3e6e326f
"RTN","SAMICUL",158,0)
; SAMICAS2 hide report link.
"RTN","SAMICUL",159,0)
;
"RTN","SAMICUL",160,0)
; 2018-10-14 ven/lgc 18.0-t4 f6e1229f
"RTN","SAMICUL",161,0)
; SAMICAS2 turn on copy forward for cteval new forms.
"RTN","SAMICUL",162,0)
;
"RTN","SAMICUL",163,0)
; 2018-10-26 ven/lgc 18.0-t4 f19bf1ae
"RTN","SAMICUL",164,0)
; SAMICAS2 ability to add multiple forms on same day.
"RTN","SAMICUL",165,0)
;
"RTN","SAMICUL",166,0)
; 2018-11-07 ven/gpl 18.0-t4 c76b2eac
"RTN","SAMICUL",167,0)
; SAMICAS2 defend against unit test patient 1.
"RTN","SAMICUL",168,0)
;
"RTN","SAMICUL",169,0)
; 2018-11-13 ven/toad 18.0-t4
"RTN","SAMICUL",170,0)
; SAMICAS2 SAMIHOM2 > SAMIHOM3.
"RTN","SAMICUL",171,0)
;
"RTN","SAMICUL",172,0)
; 2018-11-14 ven/lgc 18.0-t4 6e9799ba
"RTN","SAMICUL",173,0)
; SAMICUL fix graphstore forms.
"RTN","SAMICUL",174,0)
;
"RTN","SAMICUL",175,0)
; 2018-11-28 ven/lgc 18.0-t4 a9539464
"RTN","SAMICUL",176,0)
; SAMICAS2 work on sac compliance.
"RTN","SAMICUL",177,0)
;
"RTN","SAMICUL",178,0)
; 2018-12-11 ven/lgc 18.0-t4 3ceb74b5
"RTN","SAMICUL",179,0)
; SAMICAS2 update for sac compliance.
"RTN","SAMICUL",180,0)
;
"RTN","SAMICUL",181,0)
; 2018-12-19/20 ven/lgc 18.0-t4 7a5d3400,a14554c1
"RTN","SAMICUL",182,0)
; SAMICAS2 more sac compliance, r/^gpl w/^SAMIGPL.
"RTN","SAMICUL",183,0)
;
"RTN","SAMICUL",184,0)
; 2018-12-26 ven/lgc 18.0-t4 8dd6f34d,51eb1635
"RTN","SAMICUL",185,0)
; SAMICAS2 update for sac compliance, fix accidental reversions.
"RTN","SAMICUL",186,0)
;
"RTN","SAMICUL",187,0)
; 2019-01-10 ven/lgc 18.0-t4 2daba010
"RTN","SAMICUL",188,0)
; SAMICAS2 update for SAC compliance.
"RTN","SAMICUL",189,0)
;
"RTN","SAMICUL",190,0)
; 2019-01-22 ven/lgc 18.0-t4 53681219,5ddb29c5
"RTN","SAMICUL",191,0)
; SAMICAS2 add license info to each SAMI routine; edit for lower
"RTN","SAMICUL",192,0)
; case initials.
"RTN","SAMICUL",193,0)
;
"RTN","SAMICUL",194,0)
; 2019-02-18 ven/lgc 18.0-t4 76874314
"RTN","SAMICUL",195,0)
; SAMICAS2,SAMICAS3 update recently edited routines.
"RTN","SAMICUL",196,0)
;
"RTN","SAMICUL",197,0)
; 2019-03-13 ven/lmry 18.0-t4 ef66ef16
"RTN","SAMICUL",198,0)
; SAMICAS2 spell out some elements missed earlier.
"RTN","SAMICUL",199,0)
;
"RTN","SAMICUL",200,0)
; 2019-03-14 ven/lmry 18.0-t4 038507e2
"RTN","SAMICUL",201,0)
; SAMICAS3 spell out some missed M elements, fix copy/paste errors
"RTN","SAMICUL",202,0)
; in comments for MKFUFORM, MKBXFORM, & MKPTFORM.
"RTN","SAMICUL",203,0)
;
"RTN","SAMICUL",204,0)
; 2019-04-16 ven/lgc 18.0-t4 e54b76d1
"RTN","SAMICUL",205,0)
; SAMICAS2 update for SAMIFORM project.
"RTN","SAMICUL",206,0)
;
"RTN","SAMICUL",207,0)
; 2019-04-23 ven/gpl 18.0-t4 ce322911
"RTN","SAMICUL",208,0)
; SAMICAS2 add intake notes to case review page.
"RTN","SAMICUL",209,0)
;
"RTN","SAMICUL",210,0)
; 2019-06-18 ven/lgc 18.0-t4 91022482
"RTN","SAMICUL",211,0)
; SAMICAS3 switch fr/global ^SAMIGPL to/^SAMIUL.
"RTN","SAMICUL",212,0)
;
"RTN","SAMICUL",213,0)
; 2019-07-01 ven/gpl 18.0-t4 cc87cc44
"RTN","SAMICUL",214,0)
; SAMICAS3 prevent >1 bkgd form/patient.
"RTN","SAMICUL",215,0)
;
"RTN","SAMICUL",216,0)
; 2019-07-07 ven/gpl 18.0-t4 776f7451
"RTN","SAMICUL",217,0)
; SAMICAS3 resolving can't create bkgd form, branch messed up.
"RTN","SAMICUL",218,0)
;
"RTN","SAMICUL",219,0)
; 2019-08-01 ven/lgc 18.0-t4 d710f27d
"RTN","SAMICUL",220,0)
; SAMICAS2 pull displayed facility code from Vista parameter.
"RTN","SAMICUL",221,0)
;
"RTN","SAMICUL",222,0)
; 2019-09-26 ven/gpl 18.0-t4 92b12324 vap-420
"RTN","SAMICUL",223,0)
; SAMICAS3 prefill form date & date of baseline ct on new followup
"RTN","SAMICUL",224,0)
; form.
"RTN","SAMICUL",225,0)
;
"RTN","SAMICUL",226,0)
; 2019-10-01 par/ddn 18.0-t4 4caf1a98 vap-344
"RTN","SAMICUL",227,0)
; SAMICAS2 use proper capitalization of the word "veteran".
"RTN","SAMICUL",228,0)
;
"RTN","SAMICUL",229,0)
; 2020-01-11 ven/lgc 18.1 5651698a
"RTN","SAMICUL",230,0)
; SAMICAS2,SAMICAS3 fix duplicate form overwriting.
"RTN","SAMICUL",231,0)
;
"RTN","SAMICUL",232,0)
; 2020-01-17 ven/lgc 18.1 8557207f
"RTN","SAMICUL",233,0)
; SAMICAS2 followup note.
"RTN","SAMICUL",234,0)
;
"RTN","SAMICUL",235,0)
; 2020-01-25 ven/lgc 18.3 6a07a860,6a947567
"RTN","SAMICUL",236,0)
; SAMICAS3 nodule copy & fix to ru, fix subtle bug in nodule copy.
"RTN","SAMICUL",237,0)
;
"RTN","SAMICUL",238,0)
; 2020-04-11 ven/gpl 18.5 666f5b91,2f2c29c1
"RTN","SAMICUL",239,0)
; SAMICAS2 multi-tenancy.
"RTN","SAMICUL",240,0)
;
"RTN","SAMICUL",241,0)
; 2020-05-12 ven/gpl 18.5 ad11e0ea
"RTN","SAMICUL",242,0)
; SAMICAS2 fix SITE on case review page.
"RTN","SAMICUL",243,0)
;
"RTN","SAMICUL",244,0)
; 2020-11-12 ven/gpl 18.9 cec1ccd6
"RTN","SAMICUL",245,0)
; SAMICAS2,SAMICAS3 ceform date refill upgrade.
"RTN","SAMICUL",246,0)
;
"RTN","SAMICUL",247,0)
; 2020-11-13 ven/gpl 18.9 dce3c568
"RTN","SAMICUL",248,0)
; SAMICAS3 prefill ceform prior scans text field.
"RTN","SAMICUL",249,0)
;
"RTN","SAMICUL",250,0)
; 2021-02-18 ven/gpl 18.9 af2a0b8a
"RTN","SAMICUL",251,0)
; SAMICAS3 copy last previous CT nodules instead of last nodules in
"RTN","SAMICUL",252,0)
; any form.
"RTN","SAMICUL",253,0)
;
"RTN","SAMICUL",254,0)
; 2021-02-21 ven/gpl 18.9 3fd704fb
"RTN","SAMICUL",255,0)
; SAMICAS3 fix bug in prefill logic.
"RTN","SAMICUL",256,0)
;
"RTN","SAMICUL",257,0)
; 2021-03-02 ven/gpl 18.9 479dc041
"RTN","SAMICUL",258,0)
; SAMICAS2 return error msg if no CT Eval form exists when
"RTN","SAMICUL",259,0)
; generating a FU note.
"RTN","SAMICUL",260,0)
;
"RTN","SAMICUL",261,0)
; 2021-03-10 ven/toad 18.9 a46a2cc1
"RTN","SAMICUL",262,0)
; SAMICUL update log, convert to new vistaver schema.
"RTN","SAMICUL",263,0)
; SAMICAS2,SAMICAS3 bump date & patch list, update contents, lt
"RTN","SAMICUL",264,0)
; refactor.
"RTN","SAMICUL",265,0)
;
"RTN","SAMICUL",266,0)
; 2021-03-17 ven/toad 18.9 62da30b
"RTN","SAMICUL",267,0)
; SAMICAS2 fix xindex errors: in WSCASE add missing space between
"RTN","SAMICUL",268,0)
; do & comment to prevent syntax error reported as block mismatch.
"RTN","SAMICUL",269,0)
; SAMICAS3 remove extra spaces at ends of 3 lines.
"RTN","SAMICUL",270,0)
;
"RTN","SAMICUL",271,0)
; 2021-04-16 ven/gpl 18.11 ac82eec
"RTN","SAMICUL",272,0)
; SAMICAS3 include baseline scan in prior scans field on prefill.
"RTN","SAMICUL",273,0)
;
"RTN","SAMICUL",274,0)
; 2021-05-14/19 ven/gpl 18.11 0cbee7b,a21b056,139c6a5,0a0cccc
"RTN","SAMICUL",275,0)
; SAMICAS3 improved CT eval prefill of past scan dates, urgent
"RTN","SAMICUL",276,0)
; fixes to CT Report & intervention & pet form prefill.
"RTN","SAMICUL",277,0)
;
"RTN","SAMICUL",278,0)
; 2021-05-20/21 ven/mcglk&toad 18.11 43a4557,424ea11,129e96b
"RTN","SAMICUL",279,0)
; SAMICAS3 bump version & dates.
"RTN","SAMICUL",280,0)
;
"RTN","SAMICUL",281,0)
; 2021-05-24 ven/gpl 18.11 4aba1a9
"RTN","SAMICUL",282,0)
; SAMICAS3 in MKCEFORM,MKPTFORM,MKBXFORM pass key to
"RTN","SAMICUL",283,0)
; CTCOPY^SAMICTC1 to modulate node-copy operation; critical fix to
"RTN","SAMICUL",284,0)
; copy forward for is it new field for new ct eval forms.
"RTN","SAMICUL",285,0)
;
"RTN","SAMICUL",286,0)
; 2021-05-25 ven/toad 18.11 801d7c74
"RTN","SAMICUL",287,0)
; SAMICAS3 bump date; passim lt refactor.
"RTN","SAMICUL",288,0)
;
"RTN","SAMICUL",289,0)
; 2021-05-26/27 ven/gpl 18.11 6edc0610,73728821
"RTN","SAMICUL",290,0)
; SAMICAS3 in MKITFORM add new nodule-copy block to copy forward
"RTN","SAMICUL",291,0)
; for intervention form; in LASTCMP,PRIORCMP init tdt to today to
"RTN","SAMICUL",292,0)
; start before today, to fix last comp & prior scan field prefill in
"RTN","SAMICUL",293,0)
; ct eval form.
"RTN","SAMICUL",294,0)
;
"RTN","SAMICUL",295,0)
; 2021-06-01 ven/toad 18.11 7dd9410c
"RTN","SAMICUL",296,0)
; SAMICAS3 fold in gpl chgs fr 2021-05-26/27, annotate, adjust news
"RTN","SAMICUL",297,0)
; in nodule copy blocks, bump date.
"RTN","SAMICUL",298,0)
;
"RTN","SAMICUL",299,0)
; 2021-06-29 ven/gpl 18.12 50d3998b,a5bbd37a
"RTN","SAMICUL",300,0)
; SAMICAS3 in LASTCMP fix bug that excluded ct forms from today in
"RTN","SAMICUL",301,0)
; date list, init tdt to today+1 to start today; text-box formatting
"RTN","SAMICUL",302,0)
; for intake & followup notes, new text-processing utils; in MKFUFORM
"RTN","SAMICUL",303,0)
; set basedt to $$BASELNDT or $$LASTCMP or now.
"RTN","SAMICUL",304,0)
;
"RTN","SAMICUL",305,0)
; 2021-06-30/07-06 ven/mcglk&toad&gpl 18.12 cbf7e46b,d8296fda,
"RTN","SAMICUL",306,0)
; b248664b
"RTN","SAMICUL",307,0)
; SAMICASE,2,3 bump version & dates.
"RTN","SAMICUL",308,0)
; SAMICAS3 in MKFUFORM,LASTCMP update calls & called-by.
"RTN","SAMICUL",309,0)
; SAMICASE,2,3 finish converting to ppi format, annotate; fix typos.
"RTN","SAMICUL",310,0)
;
"RTN","SAMICUL",311,0)
; 2021-08-01 ven/gpl 18.12 5bd7c627,50620b8b
"RTN","SAMICUL",312,0)
; SAMICAS2 set intake form to incomplete on creation: in GSAMISTA
"RTN","SAMICUL",313,0)
; add final line to conditionally set stat="incomplete".
"RTN","SAMICUL",314,0)
; SAMICAS3 exclude current date from last compare field when prev ct
"RTN","SAMICUL",315,0)
; report exists: in LASTCMP start w/before today; in PRIORCMP add
"RTN","SAMICUL",316,0)
; line to handle retstr="".
"RTN","SAMICUL",317,0)
;
"RTN","SAMICUL",318,0)
; 2021-10-04/05 ven gpl 18.14 ec3b6e5d
"RTN","SAMICUL",319,0)
; SAMICAS2 updated date format, bumped date and version.
"RTN","SAMICUL",320,0)
;
"RTN","SAMICUL",321,0)
;@contents
"RTN","SAMICUL",322,0)
; SAMICASE case review
"RTN","SAMICUL",323,0)
; SAMICAS2 case review continued
"RTN","SAMICUL",324,0)
; SAMICAS3 case review continued
"RTN","SAMICUL",325,0)
; SAMICUL case review log
"RTN","SAMICUL",326,0)
;
"RTN","SAMICUL",327,0)
;
"RTN","SAMICUL",328,0)
;
"RTN","SAMICUL",329,0)
EOR ; end of routine SAMICUL
"RTN","SAMIPAT")
0^4^B9183353
"RTN","SAMIPAT",1,0)
SAMIPAT ;ven/toad - init subroutines ;2021-09-10t01:30z
"RTN","SAMIPAT",2,0)
;;18.0;SAMI;**12,14**;2020-01;Build 7
"RTN","SAMIPAT",3,0)
;;18.14
"RTN","SAMIPAT",4,0)
;
"RTN","SAMIPAT",5,0)
; Routine SAMIPAT contains VAPALS-ELCAP initialization subroutines
"RTN","SAMIPAT",6,0)
; to use as KIDS pre- & post-installs & environment checks.
"RTN","SAMIPAT",7,0)
;
"RTN","SAMIPAT",8,0)
quit ; no entry from top
"RTN","SAMIPAT",9,0)
;
"RTN","SAMIPAT",10,0)
;
"RTN","SAMIPAT",11,0)
;
"RTN","SAMIPAT",12,0)
;@section 0 primary development
"RTN","SAMIPAT",13,0)
;
"RTN","SAMIPAT",14,0)
;
"RTN","SAMIPAT",15,0)
;
"RTN","SAMIPAT",16,0)
;@routine-credits
"RTN","SAMIPAT",17,0)
;@dev-main Frederick D. S. Marshall (toad)
"RTN","SAMIPAT",18,0)
; toad@vistaexpertise.net
"RTN","SAMIPAT",19,0)
;@dev-org-main Vista Expertise Network (ven)
"RTN","SAMIPAT",20,0)
; http://vistaexpertise.net
"RTN","SAMIPAT",21,0)
;@copyright 2021, toad, all rights reserved
"RTN","SAMIPAT",22,0)
;@license see routine SAMIUL
"RTN","SAMIPAT",23,0)
;
"RTN","SAMIPAT",24,0)
;@last-update 2021-09-10t01:39z
"RTN","SAMIPAT",25,0)
;@application Screening Applications Management (SAM)
"RTN","SAMIPAT",26,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMIPAT",27,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMIPAT",28,0)
;@version 18.14
"RTN","SAMIPAT",29,0)
;@release-date 2020-01
"RTN","SAMIPAT",30,0)
;@patch-list **12,14**
"RTN","SAMIPAT",31,0)
;
"RTN","SAMIPAT",32,0)
;@dev-add Kenneth W. McGlothlen (mcglk)
"RTN","SAMIPAT",33,0)
; mcglk@vistaexpertise.net
"RTN","SAMIPAT",34,0)
;@dev-add George P. Lilly (gpl)
"RTN","SAMIPAT",35,0)
; gpl@vistaexpertise.net
"RTN","SAMIPAT",36,0)
;@dev-add Linda M. R. Yaw (lmry)
"RTN","SAMIPAT",37,0)
; lmry@vistaexpertise.net
"RTN","SAMIPAT",38,0)
;
"RTN","SAMIPAT",39,0)
;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMIPAT",40,0)
; 2021-07-01 ven/mcglk&toad 18.12-t2 cbf7e46b
"RTN","SAMIPAT",41,0)
; SAMIPAT new routine, new POS1812 post-install for patch 12.
"RTN","SAMIPAT",42,0)
;
"RTN","SAMIPAT",43,0)
; 2021-07-22/23 ven/toad 18.12
"RTN","SAMIPAT",44,0)
; SAMIPAT add PRE1812 pre-install.
"RTN","SAMIPAT",45,0)
;
"RTN","SAMIPAT",46,0)
; 2021-08-11 ven/mcglk&toad 18.12 b16cd38f
"RTN","SAMIPAT",47,0)
; SAMIPAT rip out PRE1812.
"RTN","SAMIPAT",48,0)
;
"RTN","SAMIPAT",49,0)
; 2021-09-08 ven/lmry 18.14 2af1f2e7
"RTN","SAMIPAT",50,0)
; SAMIPAT add post-install for patch SAMI*1.18*14
"RTN","SAMIPAT",51,0)
;
"RTN","SAMIPAT",52,0)
;@contents
"RTN","SAMIPAT",53,0)
; POS1812 kids post-install for sami 18.12
"RTN","SAMIPAT",54,0)
; POS1814 kids post-install for sami 18.14
"RTN","SAMIPAT",55,0)
;
"RTN","SAMIPAT",56,0)
;@section 1 subroutines for SAMI 18.12
"RTN","SAMIPAT",57,0)
;
"RTN","SAMIPAT",58,0)
;
"RTN","SAMIPAT",59,0)
;
"RTN","SAMIPAT",60,0)
;@kids-post POST1812^SAMIPAT
"RTN","SAMIPAT",61,0)
POS1812 ; kids post-install for sami 18.12
"RTN","SAMIPAT",62,0)
;
"RTN","SAMIPAT",63,0)
do ADDSVC^SAMIPARM ; install get params web service
"RTN","SAMIPAT",64,0)
;
"RTN","SAMIPAT",65,0)
; in honor of Tchaikovsky's overture: boom
"RTN","SAMIPAT",66,0)
;
"RTN","SAMIPAT",67,0)
quit ; end of kids-post POS1812^SAMIPAT
"RTN","SAMIPAT",68,0)
;
"RTN","SAMIPAT",69,0)
;
"RTN","SAMIPAT",70,0)
;
"RTN","SAMIPAT",71,0)
;@section 2 subroutines for SAMI 18.14
"RTN","SAMIPAT",72,0)
;
"RTN","SAMIPAT",73,0)
;
"RTN","SAMIPAT",74,0)
;
"RTN","SAMIPAT",75,0)
;@kids-post POST1814^SAMIPAT
"RTN","SAMIPAT",76,0)
POS1814 ; kids post-install for sami 18.14
"RTN","SAMIPAT",77,0)
;
"RTN","SAMIPAT",78,0)
set SAMIDIR="/home/osehra/lib/silver/a-sami-vapals-elcap--vo-osehra-github/docs/form-fields/"
"RTN","SAMIPAT",79,0)
do PRSTSV^SAMIFF(SAMIDIR,"background.tsv","form fields - background")
"RTN","SAMIPAT",80,0)
do PRSTSV^SAMIFF(SAMIDIR,"biopsy.tsv","form fields - biopsy")
"RTN","SAMIPAT",81,0)
do PRSTSV^SAMIFF(SAMIDIR,"ct-evaluation.tsv","form fields - ct evaluation")
"RTN","SAMIPAT",82,0)
do PRSTSV^SAMIFF(SAMIDIR,"follow-up.tsv","form fields - follow up")
"RTN","SAMIPAT",83,0)
do PRSTSV^SAMIFF(SAMIDIR,"intake.tsv","form fields - intake")
"RTN","SAMIPAT",84,0)
do PRSTSV^SAMIFF(SAMIDIR,"intervention.tsv","form fields - intervention")
"RTN","SAMIPAT",85,0)
do PRSTSV^SAMIFF(SAMIDIR,"pet-evaluation.tsv","form fields - pet evaluation")
"RTN","SAMIPAT",86,0)
do PRSTSV^SAMIFF(SAMIDIR,"register.tsv","form fields - register")
"RTN","SAMIPAT",87,0)
; do DODD^SAMIADMN ; to import tsv files to generate DD graphs
"RTN","SAMIPAT",88,0)
do CLRWEB^SAMIADMN ; Clear the M Web Server files cache
"RTN","SAMIPAT",89,0)
do INIT2GPH^SAMICTD2 ; initialize CTEVAL dictionary into graph cteval-dict
"RTN","SAMIPAT",90,0)
;
"RTN","SAMIPAT",91,0)
quit ; end of kids-post POS1814^SAMIPAT
"RTN","SAMIPAT",92,0)
;
"RTN","SAMIPAT",93,0)
;
"RTN","SAMIPAT",94,0)
;
"RTN","SAMIPAT",95,0)
;@section 3 subroutines for future versions...
"RTN","SAMIPAT",96,0)
;
"RTN","SAMIPAT",97,0)
;
"RTN","SAMIPAT",98,0)
;
"RTN","SAMIPAT",99,0)
EOR ; end of routine SAMIPAT
"RTN","SAMISITE")
0^7^B95807248
"RTN","SAMISITE",1,0)
SAMISITE ;ven/gpl&arc - signon & site access ;2021-10-05t22:54z
"RTN","SAMISITE",2,0)
;;18.0;SAMI;**5,12,14**;2020-01;Build 7
"RTN","SAMISITE",3,0)
;;18.14
"RTN","SAMISITE",4,0)
;
"RTN","SAMISITE",5,0)
; Routine SAMISITE contains subroutines for implementing the VAPALS-
"RTN","SAMISITE",6,0)
; ELCAP
"RTN","SAMISITE",7,0)
;
"RTN","SAMISITE",8,0)
quit ; no entry from top
"RTN","SAMISITE",9,0)
;
"RTN","SAMISITE",10,0)
;
"RTN","SAMISITE",11,0)
;
"RTN","SAMISITE",12,0)
;@section 0 primary development
"RTN","SAMISITE",13,0)
;
"RTN","SAMISITE",14,0)
;
"RTN","SAMISITE",15,0)
;
"RTN","SAMISITE",16,0)
;@routine-credits
"RTN","SAMISITE",17,0)
;@dev-main: George P. Lilly (gpl)
"RTN","SAMISITE",18,0)
; gpl@vistaexpertise.net
"RTN","SAMISITE",19,0)
;@dev-org-main: Vista Expertise Network (ven)
"RTN","SAMISITE",20,0)
; http://vistaexpertise.net
"RTN","SAMISITE",21,0)
;@copyright: 2017/2021, gpl, all rights reserved
"RTN","SAMISITE",22,0)
;@license see routine SAMIUL
"RTN","SAMISITE",23,0)
;
"RTN","SAMISITE",24,0)
;@last-update 2021-10-05t22:54z
"RTN","SAMISITE",25,0)
;@application Screening Applications Management (SAM)
"RTN","SAMISITE",26,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMISITE",27,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMISITE",28,0)
;@version 18.14
"RTN","SAMISITE",29,0)
;@release-date 2020-01
"RTN","SAMISITE",30,0)
;@patch-list **5,12,14**
"RTN","SAMISITE",31,0)
;
"RTN","SAMISITE",32,0)
;@dev-add: Alexis Carlson (arc)
"RTN","SAMISITE",33,0)
; alexis@vistaexpertise.net
"RTN","SAMISITE",34,0)
;@dev-add Frederick D. S. Marshall (toad)
"RTN","SAMISITE",35,0)
; toad@vistaexpertise.net
"RTN","SAMISITE",36,0)
;@dev-add Kenneth W. McGlothlen (mcglk)
"RTN","SAMISITE",37,0)
; mcglk@vistaexpertise.net
"RTN","SAMISITE",38,0)
;
"RTN","SAMISITE",39,0)
;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMISITE",40,0)
; 2020-04-02/05-26 ven/gpl 1.18.0.5+i5 d36b7cad,36607664,521e0bdc,
"RTN","SAMISITE",41,0)
; d018f52e,156be19e,476b2ff4,0a1538ef
"RTN","SAMISITE",42,0)
; SAMISITE add multitenancy, fix bug in logout, fix sitetitle on 1st
"RTN","SAMISITE",43,0)
; time in, add superuser site selection feature, fix bug in cache.
"RTN","SAMISITE",44,0)
;
"RTN","SAMISITE",45,0)
; 2021-06-05 ven/gpl 18.12-t2 223b5900
"RTN","SAMISITE",46,0)
; SAMISITE upgrade parameter with system overrides, add
"RTN","SAMISITE",47,0)
; systemDemoOnly & systemDemoUseDUZ parameters.
"RTN","SAMISITE",48,0)
;
"RTN","SAMISITE",49,0)
; 2021-07-01/07 ven/mcglk&toad&gpl 18.12-t2 cbf7e46b,bfeea24b,
"RTN","SAMISITE",50,0)
; 1dd91fea
"RTN","SAMISITE",51,0)
; SAMISITE bump version & dates, add hdr comments & dev log; in
"RTN","SAMISITE",52,0)
; FINDSITE add missing 0 to quit.
"RTN","SAMISITE",53,0)
;
"RTN","SAMISITE",54,0)
; 2021-09-17 ven/gpl 18.14 1d01f4bd
"RTN","SAMISITE",55,0)
; SAMISITE accept username and password as alternates to access and
"RTN","SAMISITE",56,0)
; verify for login
"RTN","SAMISITE",57,0)
;
"RTN","SAMISITE",58,0)
; 2021-10-06 ven/lmry 18.14
"RTN","SAMISITE",59,0)
; SAMISITE bump version & dates
"RTN","SAMISITE",60,0)
;
"RTN","SAMISITE",61,0)
;@to-do
"RTN","SAMISITE",62,0)
; Add label comments
"RTN","SAMISITE",63,0)
;
"RTN","SAMISITE",64,0)
;@contents
"RTN","SAMISITE",65,0)
; $$FINDSITE current site for user
"RTN","SAMISITE",66,0)
; $$USER ien of user accessing system
"RTN","SAMISITE",67,0)
; $$SITE ien of institution file entry for user's site
"RTN","SAMISITE",68,0)
; $$SITEID symbol for site
"RTN","SAMISITE",69,0)
; $$SITEACTV is site active?
"RTN","SAMISITE",70,0)
; $$SITENM site name from ien
"RTN","SAMISITE",71,0)
; $$SITENM2 site name from symbol
"RTN","SAMISITE",72,0)
; LOGIN login processing
"RTN","SAMISITE",73,0)
; $$SIGNON signon with access & verify code
"RTN","SAMISITE",74,0)
; SUPER site selection page for super users
"RTN","SAMISITE",75,0)
; UPGRADE init: convert to multi-tenancy
"RTN","SAMISITE",76,0)
;
"RTN","SAMISITE",77,0)
;
"RTN","SAMISITE",78,0)
;
"RTN","SAMISITE",79,0)
;@section 1 subroutines
"RTN","SAMISITE",80,0)
;
"RTN","SAMISITE",81,0)
;
"RTN","SAMISITE",82,0)
;
"RTN","SAMISITE",83,0)
FINDSITE(SAMIRETURN,ARGS) ; extrinsic which returns the site
"RTN","SAMISITE",84,0)
; to be used by this user: ARGS("siteid")=siteid and
"RTN","SAMISITE",85,0)
; ARGS("sitetitle")=sitename - siteid
"RTN","SAMISITE",86,0)
; 1 for success
"RTN","SAMISITE",87,0)
; 0 for fail - exit; page to be displayed is in SAMIRETURN
"RTN","SAMISITE",88,0)
;
"RTN","SAMISITE",89,0)
;d ^ZTER
"RTN","SAMISITE",90,0)
n user
"RTN","SAMISITE",91,0)
s user=$$USER()
"RTN","SAMISITE",92,0)
i user=-1 d q 0
"RTN","SAMISITE",93,0)
. n vals
"RTN","SAMISITE",94,0)
. s vals("siteid")=""
"RTN","SAMISITE",95,0)
. s vals("sitetitle")="Unknown Site"
"RTN","SAMISITE",96,0)
. s vals("errorMessage")=""
"RTN","SAMISITE",97,0)
. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:login",.vals)
"RTN","SAMISITE",98,0)
. ;s ARGS("errorMessage")="Error, user not found"
"RTN","SAMISITE",99,0)
. ;d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",100,0)
;
"RTN","SAMISITE",101,0)
;d q 0
"RTN","SAMISITE",102,0)
;. s ARGS("errorMessage")="User is found: "_user
"RTN","SAMISITE",103,0)
;. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",104,0)
;
"RTN","SAMISITE",105,0)
n site,siteid,siteactv,sitenm
"RTN","SAMISITE",106,0)
;
"RTN","SAMISITE",107,0)
i $o(^SAMI(311.13,"B",user,""))'="" d q 0 ; superuser
"RTN","SAMISITE",108,0)
. d SUPER("SAMIRETURN",.ARGS)
"RTN","SAMISITE",109,0)
. s HTTPRSP("mime")="text/html"
"RTN","SAMISITE",110,0)
;
"RTN","SAMISITE",111,0)
s site=$$SITE(user)
"RTN","SAMISITE",112,0)
i site<1 s site=-1
"RTN","SAMISITE",113,0)
i site=-1 d q 0
"RTN","SAMISITE",114,0)
. s ARGS("errorMessage")="Site not found for user "_user
"RTN","SAMISITE",115,0)
. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",116,0)
;
"RTN","SAMISITE",117,0)
s siteid=$$SITEID(site)
"RTN","SAMISITE",118,0)
i siteid=-1 d q 0
"RTN","SAMISITE",119,0)
. s ARGS("errorMessage")="Site ID not found for site "_site
"RTN","SAMISITE",120,0)
. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",121,0)
;
"RTN","SAMISITE",122,0)
s siteactv=$$SITEACTV(site)
"RTN","SAMISITE",123,0)
i siteactv<1 d q 0
"RTN","SAMISITE",124,0)
. s ARGS("errorMessage")="Site not active: "_siteid
"RTN","SAMISITE",125,0)
. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",126,0)
;
"RTN","SAMISITE",127,0)
s sitenm=$$SITENM(site)
"RTN","SAMISITE",128,0)
i sitenm=-1 d q 0
"RTN","SAMISITE",129,0)
. s ARGS("errorMessage")="Site name not found: "_siteid
"RTN","SAMISITE",130,0)
. d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:syserror",.ARGS)
"RTN","SAMISITE",131,0)
;
"RTN","SAMISITE",132,0)
s ARGS("siteid")=siteid
"RTN","SAMISITE",133,0)
s ARGS("sitetitle")=$$SITENM(site)_" - "_siteid
"RTN","SAMISITE",134,0)
q 1
"RTN","SAMISITE",135,0)
;
"RTN","SAMISITE",136,0)
;
"RTN","SAMISITE",137,0)
;
"RTN","SAMISITE",138,0)
USER() ; extrinsic returns the DUZ of the user accessing the system
"RTN","SAMISITE",139,0)
; -1 means user not known
"RTN","SAMISITE",140,0)
n rtn s rtn=-1
"RTN","SAMISITE",141,0)
s rtn=+$G(DUZ)
"RTN","SAMISITE",142,0)
i rtn=0 s rtn=-1
"RTN","SAMISITE",143,0)
q rtn
"RTN","SAMISITE",144,0)
;
"RTN","SAMISITE",145,0)
;
"RTN","SAMISITE",146,0)
;
"RTN","SAMISITE",147,0)
SITE(USER) ; extrinsic returns the pointer to the Institution file
"RTN","SAMISITE",148,0)
; which is the site of the user
"RTN","SAMISITE",149,0)
; -1 means site not found
"RTN","SAMISITE",150,0)
; zero means site not active
"RTN","SAMISITE",151,0)
n rtn
"RTN","SAMISITE",152,0)
s rtn=$o(^VA(200,USER,2,0))
"RTN","SAMISITE",153,0)
i +rtn="" s rtn=-1
"RTN","SAMISITE",154,0)
q rtn
"RTN","SAMISITE",155,0)
;
"RTN","SAMISITE",156,0)
;
"RTN","SAMISITE",157,0)
;
"RTN","SAMISITE",158,0)
SITEID(SITE) ; extrinsic returns the Site Symbol for SITE
"RTN","SAMISITE",159,0)
; this is found in the SAMI SITE file
"RTN","SAMISITE",160,0)
; null means SITEID not found
"RTN","SAMISITE",161,0)
n rtn s rtn=-1
"RTN","SAMISITE",162,0)
n ien s ien=$o(^SAMI(311.12,"B",SITE,""))
"RTN","SAMISITE",163,0)
q:ien="" -1
"RTN","SAMISITE",164,0)
s rtn=$$GET1^DIQ(311.12,ien_",",.02)
"RTN","SAMISITE",165,0)
q rtn
"RTN","SAMISITE",166,0)
;
"RTN","SAMISITE",167,0)
;
"RTN","SAMISITE",168,0)
;
"RTN","SAMISITE",169,0)
SITEACTV(SITE) ; Extrinsic which returns 1 if the site is active
"RTN","SAMISITE",170,0)
; otherwise 0
"RTN","SAMISITE",171,0)
n rtn s rtn=-1
"RTN","SAMISITE",172,0)
n ien s ien=$o(^SAMI(311.12,"B",SITE,""))
"RTN","SAMISITE",173,0)
q:ien="" -1
"RTN","SAMISITE",174,0)
s rtn=$$GET1^DIQ(311.12,ien_",",.03,"I")
"RTN","SAMISITE",175,0)
q rtn
"RTN","SAMISITE",176,0)
;
"RTN","SAMISITE",177,0)
;
"RTN","SAMISITE",178,0)
;
"RTN","SAMISITE",179,0)
SITENM(SITE) ; Extrinsic which returns the Site name
"RTN","SAMISITE",180,0)
;
"RTN","SAMISITE",181,0)
n rtn s rtn=-1
"RTN","SAMISITE",182,0)
s rtn=$$GET1^DIQ(4,SITE_",",.01)
"RTN","SAMISITE",183,0)
i rtn="" s rtn=-1
"RTN","SAMISITE",184,0)
q rtn
"RTN","SAMISITE",185,0)
;
"RTN","SAMISITE",186,0)
;
"RTN","SAMISITE",187,0)
;
"RTN","SAMISITE",188,0)
SITENM2(SITEID) ; Extrinsic which returns the Site name from the Site Symbol
"RTN","SAMISITE",189,0)
;
"RTN","SAMISITE",190,0)
q:SITEID="" -1
"RTN","SAMISITE",191,0)
n siteien
"RTN","SAMISITE",192,0)
s siteien=$o(^SAMI(311.12,"SYM",SITEID,""))
"RTN","SAMISITE",193,0)
n site
"RTN","SAMISITE",194,0)
q $$GET1^DIQ(311.12,siteien_",",.01,"E")
"RTN","SAMISITE",195,0)
;
"RTN","SAMISITE",196,0)
;
"RTN","SAMISITE",197,0)
;
"RTN","SAMISITE",198,0)
LOGIN(RTN,VALS) ; login processing
"RTN","SAMISITE",199,0)
;
"RTN","SAMISITE",200,0)
n access,verify
"RTN","SAMISITE",201,0)
s access=$g(VALS("access"))
"RTN","SAMISITE",202,0)
if access="" s access=$g(VALS("username"))
"RTN","SAMISITE",203,0)
s verify=$g(VALS("verify"))
"RTN","SAMISITE",204,0)
if verify="" s verify=$g(VALS("password"))
"RTN","SAMISITE",205,0)
;i verify="@demo123" s verify="@demo321"
"RTN","SAMISITE",206,0)
;i verify="@demo123" s verify="$#happy10"
"RTN","SAMISITE",207,0)
;i access="ZZZUSER1" s access="SUPER6"
"RTN","SAMISITE",208,0)
;i access="" d ;
"RTN","SAMISITE",209,0)
;. s access="PHXNAV1"
"RTN","SAMISITE",210,0)
;. s verify="$#happy6"
"RTN","SAMISITE",211,0)
I $$GET1PARM^SAMIPARM("systemDemoOnly")="true" D Q ;
"RTN","SAMISITE",212,0)
. S DUZ=$$GET1PARM^SAMIPARM("systemDemoUseDUZ")
"RTN","SAMISITE",213,0)
. I +DUZ=0 D ;
"RTN","SAMISITE",214,0)
. . S DUZ=$O(^SAMI(311.13,"B",""))
"RTN","SAMISITE",215,0)
. s VALS("samiroute")=""
"RTN","SAMISITE",216,0)
. s VALS("siteid")=""
"RTN","SAMISITE",217,0)
. d WSHOME^SAMIHOM3(.RTN,.VALS)
"RTN","SAMISITE",218,0)
n ACVC s ACVC=access_";"_verify
"RTN","SAMISITE",219,0)
i $$SIGNON(ACVC) D Q ;
"RTN","SAMISITE",220,0)
. s VALS("samiroute")=""
"RTN","SAMISITE",221,0)
. s VALS("siteid")=""
"RTN","SAMISITE",222,0)
. d WSHOME^SAMIHOM3(.RTN,.VALS)
"RTN","SAMISITE",223,0)
else D Q ;
"RTN","SAMISITE",224,0)
. s VALS("errorMessage")="Invalid login"
"RTN","SAMISITE",225,0)
. d RTNERR^SAMIHOM4(.RTN,"vapals:login",.VALS)
"RTN","SAMISITE",226,0)
q
"RTN","SAMISITE",227,0)
;
"RTN","SAMISITE",228,0)
;
"RTN","SAMISITE",229,0)
;
"RTN","SAMISITE",230,0)
SIGNON(ACVC) ; extrinsic returns 1 if signon is successful, else 0
"RTN","SAMISITE",231,0)
; Sign-on
"RTN","SAMISITE",232,0)
N IO S IO=$P
"RTN","SAMISITE",233,0)
D SETUP^XUSRB() ; Only partition set-up; No single sign-on or CAPRI
"RTN","SAMISITE",234,0)
N RTN D VALIDAV^XUSRB(.RTN,$$ENCRYP^XUSRB1(ACVC)) ; sign-on call
"RTN","SAMISITE",235,0)
I RTN(0)>0,'RTN(2) Q 1 ; Sign on successful!
"RTN","SAMISITE",236,0)
I RTN(0)=0,RTN(2) Q 0 ; Verify Code must be changed NOW!
"RTN","SAMISITE",237,0)
I $L(RTN(3)) Q 0 ; Error Message
"RTN","SAMISITE",238,0)
;
"RTN","SAMISITE",239,0)
q
"RTN","SAMISITE",240,0)
;
"RTN","SAMISITE",241,0)
;
"RTN","SAMISITE",242,0)
;
"RTN","SAMISITE",243,0)
SUPER(RTN,FILTER) ; returns site selection page for super users
"RTN","SAMISITE",244,0)
;
"RTN","SAMISITE",245,0)
n temp
"RTN","SAMISITE",246,0)
d getThis^%wd("temp","blank_no_nav.html")
"RTN","SAMISITE",247,0)
q:'$d(temp)
"RTN","SAMISITE",248,0)
n cnt s cnt=0
"RTN","SAMISITE",249,0)
n zj s zj=0
"RTN","SAMISITE",250,0)
f s zj=$o(temp(zj)) q:temp(zj)["Insert" q:+zj=0 d ;
"RTN","SAMISITE",251,0)
. n ln s ln=temp(zj)
"RTN","SAMISITE",252,0)
. i ln["PAGE NAME" s ln="Site Selection"
"RTN","SAMISITE",253,0)
. d LOAD^SAMIFORM(.ln,"","")
"RTN","SAMISITE",254,0)
. s cnt=cnt+1
"RTN","SAMISITE",255,0)
. s @RTN@(cnt)=ln
"RTN","SAMISITE",256,0)
s cnt=cnt+1
"RTN","SAMISITE",257,0)
s @RTN@(cnt)="<ul>"
"RTN","SAMISITE",258,0)
n gn s gn=$na(^SAMI(311.12,"B"))
"RTN","SAMISITE",259,0)
n zi s zi=0
"RTN","SAMISITE",260,0)
f s zi=$o(@gn@(zi)) q:+zi=0 d ;
"RTN","SAMISITE",261,0)
. n zien s zien=$o(@gn@(zi,""))
"RTN","SAMISITE",262,0)
. n active
"RTN","SAMISITE",263,0)
. s active=$$GET1^DIQ(311.12,zien_",",.03,"I")
"RTN","SAMISITE",264,0)
. q:active=0
"RTN","SAMISITE",265,0)
. n name
"RTN","SAMISITE",266,0)
. s name=$$SITENM(zi)_" - "_$$SITEID(zi)
"RTN","SAMISITE",267,0)
. n link
"RTN","SAMISITE",268,0)
. s link="<li>"
"RTN","SAMISITE",269,0)
. s link=link_"<a class=""navigation"" data-method=""post"""
"RTN","SAMISITE",270,0)
. s link=link_" data-samiroute=""home"" data-siteid="""_$$SITEID(zi)_""""
"RTN","SAMISITE",271,0)
. ;s link=link_" data-site="""_$$SITEID(zi)_""""
"RTN","SAMISITE",272,0)
. ;s link=link_" href=""#!"">"_$$SITENM(zi)_" - "_$$SITEID(zi)
"RTN","SAMISITE",273,0)
. s link=link_" href=""/vapals"">"_name
"RTN","SAMISITE",274,0)
. s link=link_"</a></li>"
"RTN","SAMISITE",275,0)
. ;n link
"RTN","SAMISITE",276,0)
. ;s link="<form method=POST action=""/vapals"">"
"RTN","SAMISITE",277,0)
. ;s link=link_"<input type=hidden name=""samiroute"" value=""home"">"
"RTN","SAMISITE",278,0)
. ;s link=link_"<input type=hidden name=""siteid"" value="""_$$SITEID(zi)_""">"
"RTN","SAMISITE",279,0)
. ;s link=link_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"
"RTN","SAMISITE",280,0)
. s cnt=cnt+1
"RTN","SAMISITE",281,0)
. s @RTN@(cnt)=link
"RTN","SAMISITE",282,0)
s cnt=cnt+1
"RTN","SAMISITE",283,0)
s @RTN@(cnt)="</ul>"
"RTN","SAMISITE",284,0)
n zk s zk=zj+1
"RTN","SAMISITE",285,0)
f s zk=$o(temp(zk)) q:+zk=0 d ;
"RTN","SAMISITE",286,0)
. s cnt=cnt+1
"RTN","SAMISITE",287,0)
. s @RTN@(cnt)=temp(zk)
"RTN","SAMISITE",288,0)
q
"RTN","SAMISITE",289,0)
;
"RTN","SAMISITE",290,0)
;
"RTN","SAMISITE",291,0)
;
"RTN","SAMISITE",292,0)
UPGRADE() ; convert VAPALS system to Multi-tenancy by adding siteid
"RTN","SAMISITE",293,0)
; to all existing patients - runs one time as the Post Install
"RTN","SAMISITE",294,0)
; to the installation
"RTN","SAMISITE",295,0)
;
"RTN","SAMISITE",296,0)
n lroot,proot,lien,pien
"RTN","SAMISITE",297,0)
s (lien,pien)=0
"RTN","SAMISITE",298,0)
s lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMISITE",299,0)
s proot=$$setroot^%wd("vapals-patients")
"RTN","SAMISITE",300,0)
n site
"RTN","SAMISITE",301,0)
s site=$$GET^XPAR("SYS","SAMI SID PREFIX",,"Q")
"RTN","SAMISITE",302,0)
i site="" d q ;
"RTN","SAMISITE",303,0)
. D MES^XPDUTL("No default site returned by SAMI SID PREFIX parameter, exiting")
"RTN","SAMISITE",304,0)
n cnt s cnt=0
"RTN","SAMISITE",305,0)
f s lien=$o(@lroot@(lien)) q:+lien=0 d ;
"RTN","SAMISITE",306,0)
. q:$g(@lroot@(lien,"siteid"))'=""
"RTN","SAMISITE",307,0)
. n nomatch s nomatch=0
"RTN","SAMISITE",308,0)
. n dfn s dfn=$g(@lroot@(lien,"dfn"))
"RTN","SAMISITE",309,0)
. i dfn="" d q ;
"RTN","SAMISITE",310,0)
. . D MES^XPDUTL("Error, no dfn found for lien "_lien)
"RTN","SAMISITE",311,0)
. s pien=$o(@proot@("dfn",dfn,""))
"RTN","SAMISITE",312,0)
. ; make sure the first 3 chars of the studyid matches the site
"RTN","SAMISITE",313,0)
. i pien'="" d q:nomatch
"RTN","SAMISITE",314,0)
. . n psite,psid
"RTN","SAMISITE",315,0)
. . s psid=$g(@proot@(pien,"sisid"))
"RTN","SAMISITE",316,0)
. . i psid="" s nomatch=1 q ;
"RTN","SAMISITE",317,0)
. . i $e(psid,1,3)'=site s nomatch=1 d q ;
"RTN","SAMISITE",318,0)
. . . d MES^XPDUTL("skipping record - studyid "_psid_" does not match site "_site)
"RTN","SAMISITE",319,0)
. ;w !,"lien "_lien_" being set to "_site
"RTN","SAMISITE",320,0)
. s cnt=cnt+1
"RTN","SAMISITE",321,0)
. s @lroot@(lien,"siteid")=site
"RTN","SAMISITE",322,0)
i cnt>0 d ;
"RTN","SAMISITE",323,0)
. d MES^XPDUTL("Multi-tenancy upgrade successful")
"RTN","SAMISITE",324,0)
. d MES^XPDUTL(cnt_" patient records set to site "_site)
"RTN","SAMISITE",325,0)
q
"RTN","SAMISITE",326,0)
;
"RTN","SAMISITE",327,0)
;
"RTN","SAMISITE",328,0)
;
"RTN","SAMISITE",329,0)
EOR ; end of routine SAMISITE
"RTN","SAMIUR")
0^1^B618867768
"RTN","SAMIUR",1,0)
SAMIUR ;ven/gpl - user reports ;2021-10-05t23:24z
"RTN","SAMIUR",2,0)
;;18.0;SAMI;**5,10,11,12,14**;2020-01;Build 7
"RTN","SAMIUR",3,0)
;;18.14
"RTN","SAMIUR",4,0)
;
"RTN","SAMIUR",5,0)
; SAMIUR contains a web service & associated subroutines to produce
"RTN","SAMIUR",6,0)
; VAPALS-ELCAP user reports.
"RTN","SAMIUR",7,0)
;
"RTN","SAMIUR",8,0)
quit ; no entry from top
"RTN","SAMIUR",9,0)
;
"RTN","SAMIUR",10,0)
;
"RTN","SAMIUR",11,0)
;
"RTN","SAMIUR",12,0)
;@section 0 primary development
"RTN","SAMIUR",13,0)
;
"RTN","SAMIUR",14,0)
;
"RTN","SAMIUR",15,0)
;
"RTN","SAMIUR",16,0)
;@routine-credits
"RTN","SAMIUR",17,0)
;@dev-main George P. Lilly (gpl)
"RTN","SAMIUR",18,0)
; gpl@vistaexpertise.net
"RTN","SAMIUR",19,0)
;@dev-org-main Vista Expertise Network (ven)
"RTN","SAMIUR",20,0)
; http://vistaexpertise.net
"RTN","SAMIUR",21,0)
;@copyright 2017/2021, gpl, all rights reserved
"RTN","SAMIUR",22,0)
;@license see routine SAMIUL
"RTN","SAMIUR",23,0)
;
"RTN","SAMIUR",24,0)
;@last-update 2021-10-05t23:24z
"RTN","SAMIUR",25,0)
;@application Screening Applications Management (SAM)
"RTN","SAMIUR",26,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMIUR",27,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMIUR",28,0)
;@version 18.14
"RTN","SAMIUR",29,0)
;@release-date 2020-01
"RTN","SAMIUR",30,0)
;@patch-list **5,10,11,12,14**
"RTN","SAMIUR",31,0)
;
"RTN","SAMIUR",32,0)
;@dev-add Frederick D. S. Marshall (toad)
"RTN","SAMIUR",33,0)
; toad@vistaexpertise.net
"RTN","SAMIUR",34,0)
;@dev-add Larry G. Carlson (lgc)
"RTN","SAMIUR",35,0)
; larry.g.carlson@gmail.com
"RTN","SAMIUR",36,0)
;@dev-add Alexis R. Carlson (arc)
"RTN","SAMIUR",37,0)
; whatisthehumanspirit@gmail.com
"RTN","SAMIUR",38,0)
;@dev-add Kenneth W. McGlothlen (mcglk)
"RTN","SAMIUR",39,0)
; mcglk@vistaexpertise.net
"RTN","SAMIUR",40,0)
;@dev-add Linda M. R. Yaw (lmry)
"RTN","SAMIUR",41,0)
; lmry@vistaexpertise.net
"RTN","SAMIUR",42,0)
;
"RTN","SAMIUR",43,0)
;@module-credits see SAMIHUL
"RTN","SAMIUR",44,0)
;
"RTN","SAMIUR",45,0)
;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMIUR",46,0)
; see SAMIURUL
"RTN","SAMIUR",47,0)
;
"RTN","SAMIUR",48,0)
;@contents
"RTN","SAMIUR",49,0)
; WSREPORT generate report based on params in filter
"RTN","SAMIUR",50,0)
; SORT sort patients by name
"RTN","SAMIUR",51,0)
; NUHREF create nuhref link to casereview for all patients
"RTN","SAMIUR",52,0)
; PNAME page name for report
"RTN","SAMIUR",53,0)
;
"RTN","SAMIUR",54,0)
; SELECT select patients for report
"RTN","SAMIUR",55,0)
; UNMAT build unmatched persons list
"RTN","SAMIUR",56,0)
; WKLIST build work list
"RTN","SAMIUR",57,0)
;
"RTN","SAMIUR",58,0)
;
"RTN","SAMIUR",59,0)
;
"RTN","SAMIUR",60,0)
;@section 1 wsreport subroutines
"RTN","SAMIUR",61,0)
;
"RTN","SAMIUR",62,0)
;
"RTN","SAMIUR",63,0)
;
"RTN","SAMIUR",64,0)
WSREPORT(SAMIRTN,filter) ; generate report based on params in filter
"RTN","SAMIUR",65,0)
;
"RTN","SAMIUR",66,0)
;@called-by
"RTN","SAMIUR",67,0)
; WSVAPALS^SAMIHOM4
"RTN","SAMIUR",68,0)
; WSREPORT^SAMIUR1
"RTN","SAMIUR",69,0)
;@calls
"RTN","SAMIUR",70,0)
; GETHOME^SAMIHOM3
"RTN","SAMIUR",71,0)
; getThis^%wd
"RTN","SAMIUR",72,0)
; SELECT
"RTN","SAMIUR",73,0)
; LOAD^SAMIFORM
"RTN","SAMIUR",74,0)
; $$PNAME
"RTN","SAMIUR",75,0)
; findReplace^%ts
"RTN","SAMIUR",76,0)
; RPTTBL^SAMIUR2
"RTN","SAMIUR",77,0)
; NUHREF
"RTN","SAMIUR",78,0)
; SORT
"RTN","SAMIUR",79,0)
; @RPT(ir,"routine"): [from report def table from RPTTBL^SAMIUR2]
"RTN","SAMIUR",80,0)
; format = $$<tag>^SAMIUR2, where tag =
"RTN","SAMIUR",81,0)
; AGE BLINEDT CONTACT CTPROT DOB FUDATE GENDER
"RTN","SAMIUR",82,0)
; IFORM LASTEXM MANPAT MATCH NAME PACKYRS POSSIBLE
"RTN","SAMIUR",83,0)
; RECOM RURAL SID SMHIS SMKSTAT SSN STUDYDT
"RTN","SAMIUR",84,0)
; STUDYTYP VALS WHEN WORKPAT
"RTN","SAMIUR",85,0)
;
"RTN","SAMIUR",86,0)
; here are the user reports that are defined:
"RTN","SAMIUR",87,0)
; 1. followup
"RTN","SAMIUR",88,0)
; 2. activity
"RTN","SAMIUR",89,0)
; 3. missingct
"RTN","SAMIUR",90,0)
; 4. incomplete
"RTN","SAMIUR",91,0)
; 5. outreach
"RTN","SAMIUR",92,0)
; 6. enrollment
"RTN","SAMIUR",93,0)
; 7. worklist
"RTN","SAMIUR",94,0)
; the report to generate is passed in parameter samireporttype
"RTN","SAMIUR",95,0)
;
"RTN","SAMIUR",96,0)
new debug set debug=0
"RTN","SAMIUR",97,0)
if $get(filter("debug"))=1 set debug=1
"RTN","SAMIUR",98,0)
if $get(filter("debug"))=1 set debug=1
"RTN","SAMIUR",99,0)
kill SAMIRTN
"RTN","SAMIUR",100,0)
set HTTPRSP("mime")="text/html"
"RTN","SAMIUR",101,0)
;
"RTN","SAMIUR",102,0)
new type,temp,site
"RTN","SAMIUR",103,0)
s site=$g(filter("siteid"))
"RTN","SAMIUR",104,0)
i site="" s site=$g(filter("site"))
"RTN","SAMIUR",105,0)
i site="" d q ; report site missing
"RTN","SAMIUR",106,0)
. d GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home
"RTN","SAMIUR",107,0)
;
"RTN","SAMIUR",108,0)
set type=$get(filter("samireporttype"))
"RTN","SAMIUR",109,0)
if type="" do quit ; report type missing
"RTN","SAMIUR",110,0)
. do GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home
"RTN","SAMIUR",111,0)
. quit
"RTN","SAMIUR",112,0)
;
"RTN","SAMIUR",113,0)
if type="unmatched" i $$GET1PARM^SAMIPARM("matchingReportEnabled",site)'="true" do quit ;
"RTN","SAMIUR",114,0)
. d GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home
"RTN","SAMIUR",115,0)
;
"RTN","SAMIUR",116,0)
do getThis^%wd("temp","table.html") ; page template
"RTN","SAMIUR",117,0)
quit:'$data(temp)
"RTN","SAMIUR",118,0)
;
"RTN","SAMIUR",119,0)
new SAMIPATS
"RTN","SAMIUR",120,0)
; set pats=""
"RTN","SAMIUR",121,0)
new datephrase
"RTN","SAMIUR",122,0)
do SELECT(.SAMIPATS,type,.datephrase,.filter) ; select pats for report
"RTN","SAMIUR",123,0)
; quit:'$data(SAMIPATS)
"RTN","SAMIUR",124,0)
;
"RTN","SAMIUR",125,0)
new ln,cnt,ii
"RTN","SAMIUR",126,0)
set (ii,ln,cnt)=0
"RTN","SAMIUR",127,0)
for do quit:'ii quit:$get(temp(ii))["<thead"
"RTN","SAMIUR",128,0)
. set ii=$order(temp(ii))
"RTN","SAMIUR",129,0)
. quit:'ii
"RTN","SAMIUR",130,0)
. quit:$get(temp(ii))["<thead"
"RTN","SAMIUR",131,0)
. ;
"RTN","SAMIUR",132,0)
. set cnt=cnt+1
"RTN","SAMIUR",133,0)
. set ln=$get(temp(ii))
"RTN","SAMIUR",134,0)
. new samikey,si
"RTN","SAMIUR",135,0)
. set (samikey,si)=""
"RTN","SAMIUR",136,0)
. do LOAD^SAMIFORM(.ln,samikey,si,.filter)
"RTN","SAMIUR",137,0)
. ; if ln["PAGE NAME" do
"RTN","SAMIUR",138,0)
. ; . do findReplace^%ts(.ln,"PAGE NAME",$$PNAME(type,datephrase))
"RTN","SAMIUR",139,0)
. ; . quit
"RTN","SAMIUR",140,0)
. if ln["PAGE NAME" do
"RTN","SAMIUR",141,0)
. . do findReplace^%ts(.ln,"PAGE NAME",$$PNAME(type,""))
"RTN","SAMIUR",142,0)
. . quit
"RTN","SAMIUR",143,0)
. if ln["CRITERIA" do
"RTN","SAMIUR",144,0)
. . do findReplace^%ts(.ln,"CRITERIA",datephrase)
"RTN","SAMIUR",145,0)
. . quit
"RTN","SAMIUR",146,0)
. if ln["@@REPORTTYPE@@" do
"RTN","SAMIUR",147,0)
. . do findReplace^%ts(.ln,"@@REPORTTYPE@@",type)
"RTN","SAMIUR",148,0)
. . quit
"RTN","SAMIUR",149,0)
. ;
"RTN","SAMIUR",150,0)
. if ln["name=""start-date""" do
"RTN","SAMIUR",151,0)
. . do findReplace^%ts(.ln,"start-date""","start-date"" value="""_$g(filter("start-date"))_"""")
"RTN","SAMIUR",152,0)
. . quit
"RTN","SAMIUR",153,0)
. if ln["name=""end-date""" do
"RTN","SAMIUR",154,0)
. . do findReplace^%ts(.ln,"end-date""","end-date"" value="""_$g(filter("end-date"))_"""")
"RTN","SAMIUR",155,0)
. . quit
"RTN","SAMIUR",156,0)
. ;
"RTN","SAMIUR",157,0)
. set SAMIRTN(cnt)=ln
"RTN","SAMIUR",158,0)
. quit
"RTN","SAMIUR",159,0)
;
"RTN","SAMIUR",160,0)
new RPT,ik
"RTN","SAMIUR",161,0)
do RPTTBL^SAMIUR2(.RPT,type,site) ; load report definition table
"RTN","SAMIUR",162,0)
if '$data(RPT) do quit ; don't know about this report
"RTN","SAMIUR",163,0)
. do GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home
"RTN","SAMIUR",164,0)
. quit
"RTN","SAMIUR",165,0)
;
"RTN","SAMIUR",166,0)
; output header
"RTN","SAMIUR",167,0)
;
"RTN","SAMIUR",168,0)
set cnt=cnt+1 set SAMIRTN(cnt)="<thead><tr>"
"RTN","SAMIUR",169,0)
set cnt=cnt+1
"RTN","SAMIUR",170,0)
new totcnt set totcnt=cnt
"RTN","SAMIUR",171,0)
;
"RTN","SAMIUR",172,0)
set ir=""
"RTN","SAMIUR",173,0)
for do quit:ir="" ;
"RTN","SAMIUR",174,0)
. set ir=$order(RPT(ir))
"RTN","SAMIUR",175,0)
. quit:ir=""
"RTN","SAMIUR",176,0)
. set cnt=cnt+1
"RTN","SAMIUR",177,0)
. set SAMIRTN(cnt)="<th>"_$get(RPT(ir,"header"))_"</th>"
"RTN","SAMIUR",178,0)
. quit
"RTN","SAMIUR",179,0)
;
"RTN","SAMIUR",180,0)
set cnt=cnt+1 set SAMIRTN(cnt)="</tr></thead>"
"RTN","SAMIUR",181,0)
;
"RTN","SAMIUR",182,0)
set cnt=cnt+1 set SAMIRTN(cnt)="<tbody>"
"RTN","SAMIUR",183,0)
;
"RTN","SAMIUR",184,0)
if type'="worklist" do ;
"RTN","SAMIUR",185,0)
. do NUHREF(.SAMIPATS) ; create the nuhref link for all patients
"RTN","SAMIUR",186,0)
. quit
"RTN","SAMIUR",187,0)
;
"RTN","SAMIUR",188,0)
new SRT set SRT=""
"RTN","SAMIUR",189,0)
if $get(filter("sort"))="" d ; what kind of sort
"RTN","SAMIUR",190,0)
. set filter("sort")="name"
"RTN","SAMIUR",191,0)
. i type="missingct" s filter("sort")="cdate" ;sort by latest contact
"RTN","SAMIUR",192,0)
do SORT(.SRT,.SAMIPATS,.filter)
"RTN","SAMIUR",193,0)
; zwrite SRT
"RTN","SAMIUR",194,0)
;
"RTN","SAMIUR",195,0)
; set ij=0
"RTN","SAMIUR",196,0)
; for do quit:'ij ;
"RTN","SAMIUR",197,0)
; . set ij=$order(SAMIPATS(ij))
"RTN","SAMIUR",198,0)
; . quit:'ij
"RTN","SAMIUR",199,0)
; . new ij2 set ij2=0
"RTN","SAMIUR",200,0)
; . for do quit:'ij2 ;
"RTN","SAMIUR",201,0)
; . . set ij2=$order(SAMIPATS(ij,ij2))
"RTN","SAMIUR",202,0)
; . . quit:'ij2
"RTN","SAMIUR",203,0)
; . . new dfn set dfn=ij2
"RTN","SAMIUR",204,0)
; . . quit
"RTN","SAMIUR",205,0)
; . quit
"RTN","SAMIUR",206,0)
;
"RTN","SAMIUR",207,0)
new iz,ij,ij2,dfn,rows
"RTN","SAMIUR",208,0)
set rows=0
"RTN","SAMIUR",209,0)
set (iz,ij,ij2,dfn)=""
"RTN","SAMIUR",210,0)
for do quit:iz="" ;
"RTN","SAMIUR",211,0)
. set iz=$order(SRT(iz))
"RTN","SAMIUR",212,0)
. quit:iz=""
"RTN","SAMIUR",213,0)
. set ij=$order(SRT(iz,""))
"RTN","SAMIUR",214,0)
. set dfn=$order(SRT(iz,ij,""))
"RTN","SAMIUR",215,0)
. do ;
"RTN","SAMIUR",216,0)
. . set cnt=cnt+1 set SAMIRTN(cnt)="<tr>"
"RTN","SAMIUR",217,0)
. . set ir=""
"RTN","SAMIUR",218,0)
. . for do quit:ir="" ;
"RTN","SAMIUR",219,0)
. . . set ir=$order(RPT(ir))
"RTN","SAMIUR",220,0)
. . . quit:ir=""
"RTN","SAMIUR",221,0)
. . . set cnt=cnt+1
"RTN","SAMIUR",222,0)
. . . new XR,XRV
"RTN","SAMIUR",223,0)
. . . ; set XR=$get(RPT(ir,"routine"))_"("_ij_",.SAMIPATS)"
"RTN","SAMIUR",224,0)
. . . set XR="set XRV="_$get(RPT(ir,"routine"))_"("_ij_","_dfn_",.SAMIPATS)"
"RTN","SAMIUR",225,0)
. . . ; set XRV=@XR
"RTN","SAMIUR",226,0)
. . . xecute XR ; call report-field handlers in ^SAMIUR2
"RTN","SAMIUR",227,0)
. . . if $extract(XRV,1,3)["<td" set SAMIRTN(cnt)=XRV
"RTN","SAMIUR",228,0)
. . . else set SAMIRTN(cnt)="<td>"_$get(XRV)_"</td>"
"RTN","SAMIUR",229,0)
. . . quit
"RTN","SAMIUR",230,0)
. . ;
"RTN","SAMIUR",231,0)
. . set cnt=cnt+1
"RTN","SAMIUR",232,0)
. . set SAMIRTN(cnt)="</tr>"_$CHAR(10,13)
"RTN","SAMIUR",233,0)
. . set rows=rows+1
"RTN","SAMIUR",234,0)
. . quit
"RTN","SAMIUR",235,0)
. quit
"RTN","SAMIUR",236,0)
;
"RTN","SAMIUR",237,0)
set cnt=cnt+1
"RTN","SAMIUR",238,0)
;set SAMIRTN(cnt)="<tr><td>Total: "_rows_"</td></tr>"
"RTN","SAMIUR",239,0)
;set SAMIRTN(totcnt)="<td>Total: "_rows_"</td></tr><tr>"
"RTN","SAMIUR",240,0)
;
"RTN","SAMIUR",241,0)
set cnt=cnt+1 set SAMIRTN(cnt)="</tbody>"
"RTN","SAMIUR",242,0)
for do quit:temp(ii)["</tbody>" ;
"RTN","SAMIUR",243,0)
. set ii=$order(temp(ii))
"RTN","SAMIUR",244,0)
. quit:temp(ii)["</tbody>"
"RTN","SAMIUR",245,0)
. ; skip past template headers & blank body
"RTN","SAMIUR",246,0)
. quit
"RTN","SAMIUR",247,0)
;
"RTN","SAMIUR",248,0)
for do quit:'ii ;
"RTN","SAMIUR",249,0)
. set ii=$order(temp(ii))
"RTN","SAMIUR",250,0)
. quit:'ii
"RTN","SAMIUR",251,0)
. set cnt=cnt+1
"RTN","SAMIUR",252,0)
. set ln=$get(temp(ii))
"RTN","SAMIUR",253,0)
. new samikey,si
"RTN","SAMIUR",254,0)
. set (samikey,si)=""
"RTN","SAMIUR",255,0)
. do LOAD^SAMIFORM(.ln,samikey,si,.filter)
"RTN","SAMIUR",256,0)
. set SAMIRTN(cnt)=ln
"RTN","SAMIUR",257,0)
. quit
"RTN","SAMIUR",258,0)
;
"RTN","SAMIUR",259,0)
quit ; end of WSREPORT
"RTN","SAMIUR",260,0)
;
"RTN","SAMIUR",261,0)
;
"RTN","SAMIUR",262,0)
SORT(SRTN,SAMIPATS,FILTER) ; sort patients by name
"RTN","SAMIUR",263,0)
;
"RTN","SAMIUR",264,0)
;@called-by
"RTN","SAMIUR",265,0)
; WSREPORT
"RTN","SAMIUR",266,0)
;@calls
"RTN","SAMIUR",267,0)
; $$UPCASE^XLFMSMT
"RTN","SAMIUR",268,0)
;
"RTN","SAMIUR",269,0)
new typ set typ=$get(FILTER("sort"))
"RTN","SAMIUR",270,0)
;
"RTN","SAMIUR",271,0)
if typ="" set typ="name"
"RTN","SAMIUR",272,0)
new iz,dt,dfn,nm,cdate
"RTN","SAMIUR",273,0)
set (dt,dfn,nm)="" ; note: should dfn be initialized inside loop?
"RTN","SAMIUR",274,0)
set iz=0
"RTN","SAMIUR",275,0)
;
"RTN","SAMIUR",276,0)
new indx
"RTN","SAMIUR",277,0)
for do quit:'dt ;
"RTN","SAMIUR",278,0)
. set dt=$order(SAMIPATS(dt))
"RTN","SAMIUR",279,0)
. quit:'dt
"RTN","SAMIUR",280,0)
. ; note: dfn not re-initialized to "" here; should it be?
"RTN","SAMIUR",281,0)
. for do quit:'dfn ;
"RTN","SAMIUR",282,0)
. . set dfn=$order(SAMIPATS(dt,dfn))
"RTN","SAMIUR",283,0)
. . quit:'dfn
"RTN","SAMIUR",284,0)
. . if typ="name" do ;
"RTN","SAMIUR",285,0)
. . . set nm=$get(SAMIPATS(dt,dfn,"name"))
"RTN","SAMIUR",286,0)
. . . set nm=$$UPCASE^XLFMSMT(nm)
"RTN","SAMIUR",287,0)
. . . if nm="" set nm=" "
"RTN","SAMIUR",288,0)
. . . set indx(nm,dt,dfn)=""
"RTN","SAMIUR",289,0)
. . . quit
"RTN","SAMIUR",290,0)
. . if typ="cdate" do ;
"RTN","SAMIUR",291,0)
. . . set cdate=$$LDOC^SAMIUR2(dt,dfn,.SAMIPATS)
"RTN","SAMIUR",292,0)
. . . set cdate=$$FMDT^SAMIUR2(cdate)
"RTN","SAMIUR",293,0)
. . . set indx(cdate,dt,dfn)=""
"RTN","SAMIUR",294,0)
. . quit
"RTN","SAMIUR",295,0)
. quit
"RTN","SAMIUR",296,0)
;
"RTN","SAMIUR",297,0)
new iiz set iiz=""
"RTN","SAMIUR",298,0)
set (dt,dfn)="" ; note: here, too, should inits be inside loops?
"RTN","SAMIUR",299,0)
for do quit:iiz="" ;
"RTN","SAMIUR",300,0)
. set iiz=$order(indx(iiz))
"RTN","SAMIUR",301,0)
. quit:iiz=""
"RTN","SAMIUR",302,0)
. for do quit:dt="" ;
"RTN","SAMIUR",303,0)
. . set dt=$order(indx(iiz,dt))
"RTN","SAMIUR",304,0)
. . quit:dt=""
"RTN","SAMIUR",305,0)
. . for do quit:dfn="" ;
"RTN","SAMIUR",306,0)
. . . set dfn=$order(indx(iiz,dt,dfn))
"RTN","SAMIUR",307,0)
. . . quit:dfn=""
"RTN","SAMIUR",308,0)
. . . set iz=iz+1
"RTN","SAMIUR",309,0)
. . . set SRTN(iz,dt,dfn)=iiz
"RTN","SAMIUR",310,0)
. . . quit
"RTN","SAMIUR",311,0)
. . quit
"RTN","SAMIUR",312,0)
. quit
"RTN","SAMIUR",313,0)
;
"RTN","SAMIUR",314,0)
quit ; end of SORT
"RTN","SAMIUR",315,0)
;
"RTN","SAMIUR",316,0)
;
"RTN","SAMIUR",317,0)
;
"RTN","SAMIUR",318,0)
NUHREF(SAMIPATS) ; create nuhref link to casereview for all patients
"RTN","SAMIUR",319,0)
;
"RTN","SAMIUR",320,0)
;@called-by
"RTN","SAMIUR",321,0)
; WSREPORT
"RTN","SAMIUR",322,0)
;@calls
"RTN","SAMIUR",323,0)
; $$setroot^%wd
"RTN","SAMIUR",324,0)
; $$GETSSN^SAMIFORM
"RTN","SAMIUR",325,0)
;
"RTN","SAMIUR",326,0)
new ij
"RTN","SAMIUR",327,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR",328,0)
set ij=0
"RTN","SAMIUR",329,0)
for do quit:'ij ;
"RTN","SAMIUR",330,0)
. set ij=$order(SAMIPATS(ij))
"RTN","SAMIUR",331,0)
. quit:'ij
"RTN","SAMIUR",332,0)
. new ij2 set ij2=0
"RTN","SAMIUR",333,0)
. for do quit:'ij2 ;
"RTN","SAMIUR",334,0)
. . set ij2=$order(SAMIPATS(ij,ij2))
"RTN","SAMIUR",335,0)
. . quit:'ij2
"RTN","SAMIUR",336,0)
. . ;
"RTN","SAMIUR",337,0)
. . new dfn set dfn=ij2
"RTN","SAMIUR",338,0)
. . set SAMIPATS(ij,dfn,"sid")=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR",339,0)
. . set SAMIPATS(ij,dfn,"name")=$get(@root@(dfn,"saminame"))
"RTN","SAMIUR",340,0)
. . ;
"RTN","SAMIUR",341,0)
. . new sid set sid=SAMIPATS(ij,dfn,"sid")
"RTN","SAMIUR",342,0)
. . set SAMIPATS(ij,dfn,"ssn")=$$GETSSN^SAMIFORM(sid)
"RTN","SAMIUR",343,0)
. . new name set name=SAMIPATS(ij,dfn,"name")
"RTN","SAMIUR",344,0)
. . ;
"RTN","SAMIUR",345,0)
. . new nuhref
"RTN","SAMIUR",346,0)
. . set nuhref="<td data-order="""_name_""" data-search="""_name_""">"
"RTN","SAMIUR",347,0)
. . set nuhref=nuhref_"<form method=POST action=""/vapals"">"
"RTN","SAMIUR",348,0)
. . set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""casereview"">"
"RTN","SAMIUR",349,0)
. . set nuhref=nuhref_"<input type=hidden name=""studyid"" value="_sid_">"
"RTN","SAMIUR",350,0)
. . set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"
"RTN","SAMIUR",351,0)
. . set nuhref=nuhref_"</td>"
"RTN","SAMIUR",352,0)
. . set SAMIPATS(ij,dfn,"nuhref")=nuhref
"RTN","SAMIUR",353,0)
. . quit
"RTN","SAMIUR",354,0)
. quit
"RTN","SAMIUR",355,0)
;
"RTN","SAMIUR",356,0)
quit ; end of NUHREF
"RTN","SAMIUR",357,0)
;
"RTN","SAMIUR",358,0)
;
"RTN","SAMIUR",359,0)
;
"RTN","SAMIUR",360,0)
PNAME(type,phrase) ; page name for report
"RTN","SAMIUR",361,0)
;
"RTN","SAMIUR",362,0)
;@called-by
"RTN","SAMIUR",363,0)
; WSREPORT
"RTN","SAMIUR",364,0)
;@calls none
"RTN","SAMIUR",365,0)
;
"RTN","SAMIUR",366,0)
; extrinsic returns the PAGE NAME for the report
"RTN","SAMIUR",367,0)
;
"RTN","SAMIUR",368,0)
; if type="followup" quit "Participant Followup next 30 days -"_$get(phrase)
"RTN","SAMIUR",369,0)
if type="followup" quit "Participant Followup "_$get(phrase)
"RTN","SAMIUR",370,0)
; if type="activity" quit "Activity last 30 days -"_$get(phrase)
"RTN","SAMIUR",371,0)
if type="activity" quit "Activity "_$get(phrase)
"RTN","SAMIUR",372,0)
if type="missingct" quit "Intake but no CT Evaluation"_$get(phrase)
"RTN","SAMIUR",373,0)
if type="incomplete" quit "Incomplete Forms"_$get(phrase)
"RTN","SAMIUR",374,0)
if type="outreach" quit "Outreach"_$get(phrase)
"RTN","SAMIUR",375,0)
if type="enrollment" quit "Enrollment"_$get(phrase)
"RTN","SAMIUR",376,0)
if type="inactive" quit "Inactive"_$get(phrase)
"RTN","SAMIUR",377,0)
;
"RTN","SAMIUR",378,0)
quit "" ; end of $$PNAME
"RTN","SAMIUR",379,0)
;
"RTN","SAMIUR",380,0)
;
"RTN","SAMIUR",381,0)
;
"RTN","SAMIUR",382,0)
;@section 2 select subroutines
"RTN","SAMIUR",383,0)
;
"RTN","SAMIUR",384,0)
;
"RTN","SAMIUR",385,0)
;
"RTN","SAMIUR",386,0)
SELECT(SAMIPATS,ztype,datephrase,filter) ; select patients for report
"RTN","SAMIUR",387,0)
;
"RTN","SAMIUR",388,0)
;@called-by
"RTN","SAMIUR",389,0)
; WSREPORT
"RTN","SAMIUR",390,0)
;@calls
"RTN","SAMIUR",391,0)
; UNMAT
"RTN","SAMIUR",392,0)
; WKLIST
"RTN","SAMIUR",393,0)
; $$KEY2FM^SAMICASE
"RTN","SAMIUR",394,0)
; $$NOW^XLFDT
"RTN","SAMIUR",395,0)
; $$FMADD^XLFDT
"RTN","SAMIUR",396,0)
; $$VAPALSDT^SAMICASE
"RTN","SAMIUR",397,0)
; $$setroot^%wd
"RTN","SAMIUR",398,0)
; GETITEMS^SAMICASE
"RTN","SAMIUR",399,0)
;
"RTN","SAMIUR",400,0)
; merge ^gpl("select")=filter
"RTN","SAMIUR",401,0)
new type set type=ztype
"RTN","SAMIUR",402,0)
if type="unmatched" do quit ;
"RTN","SAMIUR",403,0)
. do UNMAT(.SAMIPATS,ztype,.datephrase,.filter)
"RTN","SAMIUR",404,0)
. quit
"RTN","SAMIUR",405,0)
if type="worklist" do quit ;
"RTN","SAMIUR",406,0)
. do WKLIST(.SAMIPATS,ztype,.datephrase,.filter)
"RTN","SAMIUR",407,0)
. quit
"RTN","SAMIUR",408,0)
if $get(type)="" set type="enrollment"
"RTN","SAMIUR",409,0)
if type="cumpy" set type="enrollment"
"RTN","SAMIUR",410,0)
new site set site=$get(filter("siteid"))
"RTN","SAMIUR",411,0)
;
"RTN","SAMIUR",412,0)
new strdt,enddt,fmstrdt,fmenddt
"RTN","SAMIUR",413,0)
set strdt=$get(filter("start-date"))
"RTN","SAMIUR",414,0)
;set fmstrdt=$$KEY2FM^SAMICASE(strdt)
"RTN","SAMIUR",415,0)
set fmstrdt=$$FMDT^SAMIUR2(strdt)
"RTN","SAMIUR",416,0)
if fmstrdt=-1 do ;
"RTN","SAMIUR",417,0)
. set fmstrdt=2000101
"RTN","SAMIUR",418,0)
. if type="followup" set fmstrdt=$$NOW^XLFDT
"RTN","SAMIUR",419,0)
. if type="activity" set fmstrdt=$$FMADD^XLFDT($$NOW^XLFDT,-31)
"RTN","SAMIUR",420,0)
. quit
"RTN","SAMIUR",421,0)
if strdt="" set filter("start-date")=$$VAPALSDT^SAMICASE(fmstrdt)
"RTN","SAMIUR",422,0)
;
"RTN","SAMIUR",423,0)
set enddt=$get(filter("end-date"))
"RTN","SAMIUR",424,0)
;set fmenddt=$$KEY2FM^SAMICASE(enddt)
"RTN","SAMIUR",425,0)
set fmenddt=$$FMDT^SAMIUR2(enddt)
"RTN","SAMIUR",426,0)
if fmenddt=-1 do ;
"RTN","SAMIUR",427,0)
. set fmenddt=$$NOW^XLFDT
"RTN","SAMIUR",428,0)
. if type="followup" set fmenddt=$$FMADD^XLFDT($$NOW^XLFDT,31)
"RTN","SAMIUR",429,0)
. quit
"RTN","SAMIUR",430,0)
if enddt="" set filter("end-date")=$$VAPALSDT^SAMICASE(fmenddt)
"RTN","SAMIUR",431,0)
;
"RTN","SAMIUR",432,0)
set datephrase=""
"RTN","SAMIUR",433,0)
new zi set zi=0
"RTN","SAMIUR",434,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR",435,0)
;
"RTN","SAMIUR",436,0)
for do quit:'zi ;
"RTN","SAMIUR",437,0)
. set zi=$order(@root@(zi))
"RTN","SAMIUR",438,0)
. quit:'zi
"RTN","SAMIUR",439,0)
. ;
"RTN","SAMIUR",440,0)
. new sid set sid=$get(@root@(zi,"samistudyid"))
"RTN","SAMIUR",441,0)
. quit:sid=""
"RTN","SAMIUR",442,0)
. quit:$extract(sid,1,3)'=site
"RTN","SAMIUR",443,0)
. ;
"RTN","SAMIUR",444,0)
. new items set items=""
"RTN","SAMIUR",445,0)
. do GETITEMS^SAMICASE("items",sid)
"RTN","SAMIUR",446,0)
. quit:'$data(items)
"RTN","SAMIUR",447,0)
. ;
"RTN","SAMIUR",448,0)
. new efmdate,edate,siform,ceform,cefud,fmcefud,cedos,fmcedos
"RTN","SAMIUR",449,0)
. set siform=$order(items("siform-"))
"RTN","SAMIUR",450,0)
. new status set status=$get(@root@("graph",sid,siform,"sistatus"))
"RTN","SAMIUR",451,0)
. if type="inactive",status="active" quit ; for inactive report
"RTN","SAMIUR",452,0)
. ;if type'="inactive",status'="active" quit ; for other reports
"RTN","SAMIUR",453,0)
. if type'="inactive",type'="activity",type'="enrollment",status'="active" quit ;other rpts
"RTN","SAMIUR",454,0)
. new eligible set eligible=$get(@root@("graph",sid,siform,"sicechrt"))
"RTN","SAMIUR",455,0)
. if type="enrollment",eligible'="y" quit ; must be eligible
"RTN","SAMIUR",456,0)
. new enrolled set enrolled=$g(@root@("graph",sid,siform,"sildct"))
"RTN","SAMIUR",457,0)
. if type="enrollment",enrolled'="y" quit ; must be enrolled
"RTN","SAMIUR",458,0)
. ;
"RTN","SAMIUR",459,0)
. set (ceform,cefud,fmcefud,cedos,fmcedos)=""
"RTN","SAMIUR",460,0)
. new lastce,sifm,cefm,baseline
"RTN","SAMIUR",461,0)
. set (lastce,sifm,cefm,baseline)=""
"RTN","SAMIUR",462,0)
. set sifm=$$FMDT^SAMIUR2(siform)
"RTN","SAMIUR",463,0)
. f set ceform=$order(items(ceform),-1) q:ceform="" q:cefud'="" d ;
"RTN","SAMIUR",464,0)
. . ;q:ceform'["ceform"
"RTN","SAMIUR",465,0)
. . if ceform["ceform" if lastce="" set lastce=ceform
"RTN","SAMIUR",466,0)
. . set cefud=$get(@root@("graph",sid,ceform,"cefud"))
"RTN","SAMIUR",467,0)
. . if cefud'="" set fmcefud=$$FMDT^SAMIUR2(cefud)
"RTN","SAMIUR",468,0)
. . set cedos=$get(@root@("graph",sid,ceform,"cedos"))
"RTN","SAMIUR",469,0)
. . if cedos'="" set fmcedos=$$FMDT^SAMIUR2(cedos)
"RTN","SAMIUR",470,0)
. . quit
"RTN","SAMIUR",471,0)
. if $$FMDT^SAMIUR2(lastce)<sifm set lastce=""
"RTN","SAMIUR",472,0)
. ;
"RTN","SAMIUR",473,0)
. set baseline=$$BASELNDT^SAMICAS3(sid)
"RTN","SAMIUR",474,0)
. set edate=$get(@root@("graph",sid,siform,"sidc"))
"RTN","SAMIUR",475,0)
. if edate="" set edate=$get(@root@("graph",sid,siform,"samicreatedate"))
"RTN","SAMIUR",476,0)
. set efmdate=$$FMDT^SAMIUR2(edate)
"RTN","SAMIUR",477,0)
. set edate=$$VAPALSDT^SAMICASE(efmdate)
"RTN","SAMIUR",478,0)
. ;
"RTN","SAMIUR",479,0)
. new latef,latefdt set (latef,latefdt)="" ; latest form for activity report
"RTN","SAMIUR",480,0)
. new aform,aformdt set (aform,aformdt)=""
"RTN","SAMIUR",481,0)
. new anyform set anyform=""
"RTN","SAMIUR",482,0)
. new proot set proot=$na(@root@("graph",sid))
"RTN","SAMIUR",483,0)
. for set anyform=$order(items("sort",anyform),-1) q:aform'="" q:anyform="" d ;
"RTN","SAMIUR",484,0)
. . new tempf set tempf=""
"RTN","SAMIUR",485,0)
. . f set tempf=$order(items("sort",anyform,tempf)) q:tempf="" q:aform'="" d ;
"RTN","SAMIUR",486,0)
. . . if latef="" d ; record the latest form for activity report
"RTN","SAMIUR",487,0)
. . . . set latefdt=anyform ; date of latest form
"RTN","SAMIUR",488,0)
. . . . new latekey set latekey=$order(items("sort",anyform,tempf,""))
"RTN","SAMIUR",489,0)
. . . . set latef=$order(items("sort",anyform,tempf,latekey,""))
"RTN","SAMIUR",490,0)
. . . if tempf["bxform" q ; don't want any biopsy forms
"RTN","SAMIUR",491,0)
. . . new tempk set tempk=$order(items("sort",anyform,tempf,""))
"RTN","SAMIUR",492,0)
. . . if $g(@proot@(tempk,"cefud"))="" q ; no followup date
"RTN","SAMIUR",493,0)
. . . new tempt set tempt=$order(items("sort",anyform,tempf,tempk,""))
"RTN","SAMIUR",494,0)
. . . set cefud=$g(@proot@(tempk,"cefud"))
"RTN","SAMIUR",495,0)
. . . set fmcefud=$$FMDT^SAMIUR2(cefud)
"RTN","SAMIUR",496,0)
. . . set aform=tempt
"RTN","SAMIUR",497,0)
. . . set aformdt=anyform
"RTN","SAMIUR",498,0)
. ;
"RTN","SAMIUR",499,0)
. if type="followup" do ;
"RTN","SAMIUR",500,0)
. . ; new nplus30 set nplus30=$$FMADD^XLFDT($$NOW^XLFDT,31)
"RTN","SAMIUR",501,0)
. . if +fmcefud<fmstrdt quit ; before start date
"RTN","SAMIUR",502,0)
. . if +fmcefud<(fmenddt+1) do ; before end date
"RTN","SAMIUR",503,0)
. . . quit:cefud="" ; no followup date
"RTN","SAMIUR",504,0)
. . . set SAMIPATS(fmcefud,zi,"aform")=aform
"RTN","SAMIUR",505,0)
. . . set SAMIPATS(fmcefud,zi,"aformdt")=aformdt
"RTN","SAMIUR",506,0)
. . . set SAMIPATS(fmcefud,zi,"edate")=edate
"RTN","SAMIUR",507,0)
. . . set SAMIPATS(fmcefud,zi,"baseline")=baseline
"RTN","SAMIUR",508,0)
. . . set SAMIPATS(fmcefud,zi)=""
"RTN","SAMIUR",509,0)
. . . ;if ceform="" set cefud="baseline"
"RTN","SAMIUR",510,0)
. . . set SAMIPATS(fmcefud,zi,"cefud")=cefud
"RTN","SAMIUR",511,0)
. . . set SAMIPATS(fmcefud,zi,"cedos")=cedos
"RTN","SAMIUR",512,0)
. . . set SAMIPATS(fmcefud,zi,"ceform")=ceform
"RTN","SAMIUR",513,0)
. . . set SAMIPATS(fmcefud,zi,"ceform-vals")=$name(@root@("graph",sid,ceform))
"RTN","SAMIUR",514,0)
. . . set SAMIPATS(fmcefud,zi,"siform")=siform
"RTN","SAMIUR",515,0)
. . . set SAMIPATS(fmcefud,zi,"siform-vals")=$name(@root@("graph",sid,siform))
"RTN","SAMIUR",516,0)
. . . merge SAMIPATS(fmcefud,zi,"items")=items
"RTN","SAMIUR",517,0)
. . . quit
"RTN","SAMIUR",518,0)
. . set datephrase=" before "_$$VAPALSDT^SAMICASE(fmenddt)
"RTN","SAMIUR",519,0)
. . quit
"RTN","SAMIUR",520,0)
. ;
"RTN","SAMIUR",521,0)
. if type="activity" do ;
"RTN","SAMIUR",522,0)
. . new fmanyform set fmanyform=$$FMDT^SAMIUR2(latefdt)
"RTN","SAMIUR",523,0)
. . if fmanyform<fmstrdt quit ; before the start date
"RTN","SAMIUR",524,0)
. . ; if fmanyform<(fmenddt+1)!(efmdate>fmenddt) do ; need any new form
"RTN","SAMIUR",525,0)
. . if fmanyform<(fmenddt+1) do ;
"RTN","SAMIUR",526,0)
. . . set SAMIPATS(efmdate,zi,"aform")=latef
"RTN","SAMIUR",527,0)
. . . set SAMIPATS(efmdate,zi,"aformdt")=$$VAPALSDT^SAMICASE(fmanyform)
"RTN","SAMIUR",528,0)
. . . set SAMIPATS(efmdate,zi,"edate")=edate
"RTN","SAMIUR",529,0)
. . . set SAMIPATS(efmdate,zi)=""
"RTN","SAMIUR",530,0)
. . . ;if ceform="" set cefud="baseline"
"RTN","SAMIUR",531,0)
. . . set SAMIPATS(efmdate,zi,"cefud")=cefud
"RTN","SAMIUR",532,0)
. . . set SAMIPATS(efmdate,zi,"cedos")=cedos
"RTN","SAMIUR",533,0)
. . . set SAMIPATS(efmdate,zi,"ceform")=ceform
"RTN","SAMIUR",534,0)
. . . set SAMIPATS(efmdate,zi,"siform")=siform
"RTN","SAMIUR",535,0)
. . . merge SAMIPATS(efmdate,zi,"items")=items
"RTN","SAMIUR",536,0)
. . . quit
"RTN","SAMIUR",537,0)
. . set datephrase=" after "_$$VAPALSDT^SAMICASE(fmstrdt)
"RTN","SAMIUR",538,0)
. . quit
"RTN","SAMIUR",539,0)
. ;
"RTN","SAMIUR",540,0)
. ; date filter for all the rest of the reports
"RTN","SAMIUR",541,0)
. ;
"RTN","SAMIUR",542,0)
. quit:efmdate<fmstrdt ; before the start date
"RTN","SAMIUR",543,0)
. quit:efmdate>(fmenddt+1) ; after the end date
"RTN","SAMIUR",544,0)
. ;
"RTN","SAMIUR",545,0)
. if type="incomplete" do ;
"RTN","SAMIUR",546,0)
. . new complete set complete=1
"RTN","SAMIUR",547,0)
. . new zj set zj=""
"RTN","SAMIUR",548,0)
. . new gr set gr=$name(@root@("graph",sid))
"RTN","SAMIUR",549,0)
. . for do quit:zj="" ;
"RTN","SAMIUR",550,0)
. . . set zj=$order(@gr@(zj))
"RTN","SAMIUR",551,0)
. . . quit:zj=""
"RTN","SAMIUR",552,0)
. . . ;
"RTN","SAMIUR",553,0)
. . . new stat
"RTN","SAMIUR",554,0)
. . . set stat=$get(@gr@(zj,"samistatus"))
"RTN","SAMIUR",555,0)
. . . if stat="" set stat="incomplete"
"RTN","SAMIUR",556,0)
. . . if stat="incomplete" do ;
"RTN","SAMIUR",557,0)
. . . . set complete=0
"RTN","SAMIUR",558,0)
. . . . set SAMIPATS(efmdate,zi,"iform")=$get(SAMIPATS(efmdate,zi,"iform"))_" "_zj
"RTN","SAMIUR",559,0)
. . . . quit
"RTN","SAMIUR",560,0)
. . . quit
"RTN","SAMIUR",561,0)
. . ;
"RTN","SAMIUR",562,0)
. . if complete=0 do ; has incomplete form(s)
"RTN","SAMIUR",563,0)
. . . set SAMIPATS(efmdate,zi,"edate")=edate
"RTN","SAMIUR",564,0)
. . . set SAMIPATS(efmdate,zi)=""
"RTN","SAMIUR",565,0)
. . . ;if ceform="" set cefud="baseline"
"RTN","SAMIUR",566,0)
. . . set SAMIPATS(efmdate,zi,"cefud")=cefud
"RTN","SAMIUR",567,0)
. . . set SAMIPATS(efmdate,zi,"ceform")=ceform
"RTN","SAMIUR",568,0)
. . . set SAMIPATS(efmdate,zi,"siform")=siform
"RTN","SAMIUR",569,0)
. . . merge SAMIPATS(efmdate,zi,"items")=items
"RTN","SAMIUR",570,0)
. . . quit
"RTN","SAMIUR",571,0)
. . set datephrase=""
"RTN","SAMIUR",572,0)
. . quit
"RTN","SAMIUR",573,0)
. ;
"RTN","SAMIUR",574,0)
. if type="missingct" do ;
"RTN","SAMIUR",575,0)
. . if lastce="" do ; has no ct since enrollment
"RTN","SAMIUR",576,0)
. . . set SAMIPATS(efmdate,zi,"edate")=edate
"RTN","SAMIUR",577,0)
. . . set SAMIPATS(efmdate,zi)=""
"RTN","SAMIUR",578,0)
. . . ;if ceform="" set cefud="baseline"
"RTN","SAMIUR",579,0)
. . . set SAMIPATS(efmdate,zi,"cefud")=cefud
"RTN","SAMIUR",580,0)
. . . set SAMIPATS(efmdate,zi,"ceform")=ceform
"RTN","SAMIUR",581,0)
. . . set SAMIPATS(efmdate,zi,"siform")=siform
"RTN","SAMIUR",582,0)
. . . merge SAMIPATS(efmdate,zi,"items")=items
"RTN","SAMIUR",583,0)
. . . quit
"RTN","SAMIUR",584,0)
. . set datephrase=""
"RTN","SAMIUR",585,0)
. . quit
"RTN","SAMIUR",586,0)
. ;
"RTN","SAMIUR",587,0)
. if type="outreach" do ; no-op; hook for future development?
"RTN","SAMIUR",588,0)
. . quit
"RTN","SAMIUR",589,0)
. ;
"RTN","SAMIUR",590,0)
. if type="enrollment" do ;
"RTN","SAMIUR",591,0)
. . set SAMIPATS(efmdate,zi,"edate")=edate
"RTN","SAMIUR",592,0)
. . set SAMIPATS(efmdate,zi)=""
"RTN","SAMIUR",593,0)
. . set SAMIPATS(efmdate,zi,"cefud")=cefud
"RTN","SAMIUR",594,0)
. . set SAMIPATS(efmdate,zi,"ceform")=ceform
"RTN","SAMIUR",595,0)
. . set SAMIPATS(efmdate,zi,"cedos")=cedos
"RTN","SAMIUR",596,0)
. . set SAMIPATS(efmdate,zi,"siform")=siform
"RTN","SAMIUR",597,0)
. . merge SAMIPATS(efmdate,zi,"items")=items
"RTN","SAMIUR",598,0)
. . quit
"RTN","SAMIUR",599,0)
. ;
"RTN","SAMIUR",600,0)
. if type="inactive" do ;
"RTN","SAMIUR",601,0)
. . set SAMIPATS(efmdate,zi,"edate")=edate
"RTN","SAMIUR",602,0)
. . set SAMIPATS(efmdate,zi)=""
"RTN","SAMIUR",603,0)
. . set SAMIPATS(efmdate,zi,"cefud")=cefud
"RTN","SAMIUR",604,0)
. . set SAMIPATS(efmdate,zi,"ceform")=ceform
"RTN","SAMIUR",605,0)
. . set SAMIPATS(efmdate,zi,"cedos")=cedos
"RTN","SAMIUR",606,0)
. . set SAMIPATS(efmdate,zi,"siform")=siform
"RTN","SAMIUR",607,0)
. . merge SAMIPATS(efmdate,zi,"items")=items
"RTN","SAMIUR",608,0)
. . quit
"RTN","SAMIUR",609,0)
. ;
"RTN","SAMIUR",610,0)
. set datephrase=" as of "_$$VAPALSDT^SAMICASE($$NOW^XLFDT)
"RTN","SAMIUR",611,0)
. quit
"RTN","SAMIUR",612,0)
;
"RTN","SAMIUR",613,0)
quit ; end of SELECT
"RTN","SAMIUR",614,0)
;
"RTN","SAMIUR",615,0)
;
"RTN","SAMIUR",616,0)
;
"RTN","SAMIUR",617,0)
UNMAT(SAMIPATS,ztype,datephrase,filter) ; build unmatched persons list
"RTN","SAMIUR",618,0)
;
"RTN","SAMIUR",619,0)
;@called-by
"RTN","SAMIUR",620,0)
; SELECT
"RTN","SAMIUR",621,0)
;@calls
"RTN","SAMIUR",622,0)
; $$setroot^%wd
"RTN","SAMIUR",623,0)
;
"RTN","SAMIUR",624,0)
set datephrase="Unmatched Persons"
"RTN","SAMIUR",625,0)
new lroot set lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMIUR",626,0)
new dfn set dfn=9000000
"RTN","SAMIUR",627,0)
for do quit:'dfn ;
"RTN","SAMIUR",628,0)
. set dfn=$order(@lroot@("dfn",dfn))
"RTN","SAMIUR",629,0)
. quit:'dfn
"RTN","SAMIUR",630,0)
. ;
"RTN","SAMIUR",631,0)
. new ien set ien=$order(@lroot@("dfn",dfn,""))
"RTN","SAMIUR",632,0)
. quit:ien=""
"RTN","SAMIUR",633,0)
. n ordern
"RTN","SAMIUR",634,0)
. s ordern=$g(@lroot@(ien,"ORMORCordernumber"))
"RTN","SAMIUR",635,0)
. i ordern="" s ordern=$g(@lroot@(ien,"ORM",1,"ordernumber"))
"RTN","SAMIUR",636,0)
. i ordern'="" q ;
"RTN","SAMIUR",637,0)
. i $g(@lroot@(ien,"siteid"))'[site q ;
"RTN","SAMIUR",638,0)
. ;quit:$get(@lroot@(ien,"remotedfn"))'="" ;
"RTN","SAMIUR",639,0)
. ;
"RTN","SAMIUR",640,0)
. merge SAMIPATS(ien,dfn)=@lroot@(ien)
"RTN","SAMIUR",641,0)
. ;
"RTN","SAMIUR",642,0)
. new name set name=$get(SAMIPATS(ien,dfn,"saminame"))
"RTN","SAMIUR",643,0)
. ; new name set name=$get(SAMIPATS(ien,dfn,"sinamef"))
"RTN","SAMIUR",644,0)
. ; set name=name_","_SAMIPATS(ien,dfn,"sinamel")
"RTN","SAMIUR",645,0)
. new nuhref set nuhref="<form method=POST action=""/vapals"">"
"RTN","SAMIUR",646,0)
. set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""editperson"">"
"RTN","SAMIUR",647,0)
. set nuhref=nuhref_"<input type=hidden name=""dfn"" value="_dfn_">"
"RTN","SAMIUR",648,0)
. set nuhref=nuhref_"<input type=hidden name=""siteid"" value="_site_">"
"RTN","SAMIUR",649,0)
. set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"
"RTN","SAMIUR",650,0)
. set SAMIPATS(ien,dfn,"editref")=nuhref
"RTN","SAMIUR",651,0)
. quit
"RTN","SAMIUR",652,0)
;
"RTN","SAMIUR",653,0)
quit ; end of UNMAT
"RTN","SAMIUR",654,0)
;
"RTN","SAMIUR",655,0)
;
"RTN","SAMIUR",656,0)
;
"RTN","SAMIUR",657,0)
WKLIST(SAMIPATS,ztype,datephrase,filter) ; build work list
"RTN","SAMIUR",658,0)
;
"RTN","SAMIUR",659,0)
;@called-by
"RTN","SAMIUR",660,0)
; SELECT
"RTN","SAMIUR",661,0)
;@calls
"RTN","SAMIUR",662,0)
; $$setroot^%wd
"RTN","SAMIUR",663,0)
;
"RTN","SAMIUR",664,0)
; add site
"RTN","SAMIUR",665,0)
; add compare to vapals-patients
"RTN","SAMIUR",666,0)
; add navigation to enrollment
"RTN","SAMIUR",667,0)
;
"RTN","SAMIUR",668,0)
kill ^gpl("worklist")
"RTN","SAMIUR",669,0)
merge ^gpl("worklist")=filter
"RTN","SAMIUR",670,0)
new site
"RTN","SAMIUR",671,0)
set site=$get(filter("siteid"))
"RTN","SAMIUR",672,0)
quit:site=""
"RTN","SAMIUR",673,0)
set datephrase="Work List"
"RTN","SAMIUR",674,0)
new lroot set lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMIUR",675,0)
new proot set proot=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR",676,0)
;
"RTN","SAMIUR",677,0)
new dfn set dfn=0
"RTN","SAMIUR",678,0)
for set dfn=$order(@lroot@("dfn",dfn)) quit:+dfn=0 do ;
"RTN","SAMIUR",679,0)
. quit:$order(@proot@("dfn",dfn,""))'=""
"RTN","SAMIUR",680,0)
. new ien set ien=$order(@lroot@("dfn",dfn,""))
"RTN","SAMIUR",681,0)
. quit:ien=""
"RTN","SAMIUR",682,0)
. ;
"RTN","SAMIUR",683,0)
. ; write !,"dfn= ",dfn
"RTN","SAMIUR",684,0)
. ; zwrite @lroot@(ien,*)
"RTN","SAMIUR",685,0)
. ;
"RTN","SAMIUR",686,0)
. quit:$get(@lroot@(ien,"siteid"))'=site
"RTN","SAMIUR",687,0)
. ;
"RTN","SAMIUR",688,0)
. merge ^gpl("worklist","lroot",ien)=@lroot@(ien)
"RTN","SAMIUR",689,0)
. merge SAMIPATS(ien,dfn)=@lroot@(ien)
"RTN","SAMIUR",690,0)
. new name set name=$get(SAMIPATS(ien,dfn,"saminame"))
"RTN","SAMIUR",691,0)
. ; new name set name=$get(SAMIPATS(ien,dfn,"sinamef"))
"RTN","SAMIUR",692,0)
. ; set name=name_","_SAMIPATS(ien,dfn,"sinamel")
"RTN","SAMIUR",693,0)
. new nuhref
"RTN","SAMIUR",694,0)
. set nuhref="<td data-search="""_name_""" data-order="""_name_""">"
"RTN","SAMIUR",695,0)
. set nuhref=nuhref_"<form method=POST action=""/vapals"">"
"RTN","SAMIUR",696,0)
. set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""newcase"">"
"RTN","SAMIUR",697,0)
. set nuhref=nuhref_"<input type=hidden name=""dfn"" value="_dfn_">"
"RTN","SAMIUR",698,0)
. set nuhref=nuhref_"<input type=hidden name=""siteid"" value="_site_">"
"RTN","SAMIUR",699,0)
. set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"
"RTN","SAMIUR",700,0)
. set nuhref=nuhref_"</td>"
"RTN","SAMIUR",701,0)
. set SAMIPATS(ien,dfn,"workref")=nuhref
"RTN","SAMIUR",702,0)
. quit
"RTN","SAMIUR",703,0)
;
"RTN","SAMIUR",704,0)
merge ^gpl("worklist","pats")=SAMIPATS
"RTN","SAMIUR",705,0)
;
"RTN","SAMIUR",706,0)
quit ; end of WKLIST
"RTN","SAMIUR",707,0)
;
"RTN","SAMIUR",708,0)
;
"RTN","SAMIUR",709,0)
;
"RTN","SAMIUR",710,0)
EOR ; end of SAMIUR
"RTN","SAMIUR2")
0^2^B1360826675
"RTN","SAMIUR2",1,0)
SAMIUR2 ;ven/gpl - user reports cont ;2021-10-05t23:28z
"RTN","SAMIUR2",2,0)
;;18.0;SAMI;**5,11,12,14**;2020-01;Build 7
"RTN","SAMIUR2",3,0)
;;18.14
"RTN","SAMIUR2",4,0)
;
"RTN","SAMIUR2",5,0)
; SAMIUR2 contains subroutines for creating & implementing the
"RTN","SAMIUR2",6,0)
; report-definition table.
"RTN","SAMIUR2",7,0)
;
"RTN","SAMIUR2",8,0)
quit ; no entry from top
"RTN","SAMIUR2",9,0)
;
"RTN","SAMIUR2",10,0)
;
"RTN","SAMIUR2",11,0)
;
"RTN","SAMIUR2",12,0)
;@section 0 primary development
"RTN","SAMIUR2",13,0)
;
"RTN","SAMIUR2",14,0)
;
"RTN","SAMIUR2",15,0)
;
"RTN","SAMIUR2",16,0)
;@routine-credits
"RTN","SAMIUR2",17,0)
;@dev-main George P. Lilly (gpl)
"RTN","SAMIUR2",18,0)
; gpl@vistaexpertise.net
"RTN","SAMIUR2",19,0)
;@dev-org-main Vista Expertise Network (ven)
"RTN","SAMIUR2",20,0)
; http://vistaexpertise.net
"RTN","SAMIUR2",21,0)
;@copyright 2017/2021, gpl, all rights reserved
"RTN","SAMIUR2",22,0)
;@license see routine SAMIUL
"RTN","SAMIUR2",23,0)
;
"RTN","SAMIUR2",24,0)
;@last-update 2021-10-05t23:28z
"RTN","SAMIUR2",25,0)
;@application Screening Applications Management (SAM)
"RTN","SAMIUR2",26,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMIUR2",27,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMIUR2",28,0)
;@version 18.14
"RTN","SAMIUR2",29,0)
;@release-date 2020-01
"RTN","SAMIUR2",30,0)
;@patch-list **5,11,12,14**
"RTN","SAMIUR2",31,0)
;
"RTN","SAMIUR2",32,0)
;@dev-add Frederick D. S. Marshall (toad)
"RTN","SAMIUR2",33,0)
; toad@vistaexpertise.net
"RTN","SAMIUR2",34,0)
;@dev-add Larry G. Carlson (lgc)
"RTN","SAMIUR2",35,0)
; larry.g.carlson@gmail.com
"RTN","SAMIUR2",36,0)
;@dev-add Alexis R. Carlson (arc)
"RTN","SAMIUR2",37,0)
; whatisthehumanspirit@gmail.com
"RTN","SAMIUR2",38,0)
;@dev-add Kenneth McGlothlen (mcglk)
"RTN","SAMIUR2",39,0)
; mcglk@vistaexpertise.net
"RTN","SAMIUR2",40,0)
;
"RTN","SAMIUR2",41,0)
;@module-credits see SAMIHUL
"RTN","SAMIUR2",42,0)
;
"RTN","SAMIUR2",43,0)
;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMIUR2",44,0)
; see SAMIURUL
"RTN","SAMIUR2",45,0)
;
"RTN","SAMIUR2",46,0)
;@contents
"RTN","SAMIUR2",47,0)
; RPTTBL build report-definition table
"RTN","SAMIUR2",48,0)
;
"RTN","SAMIUR2",49,0)
; $$DFN2SID study id for patient DFN
"RTN","SAMIUR2",50,0)
; $$MKNAV html for navigation to form
"RTN","SAMIUR2",51,0)
;
"RTN","SAMIUR2",52,0)
; $$SHDET table contents for smoking history
"RTN","SAMIUR2",53,0)
; CUMPY forms array of cummulative pack year data
"RTN","SAMIUR2",54,0)
; $$TDDT embed date in table cell
"RTN","SAMIUR2",55,0)
; $$FMDT convert date to fileman format
"RTN","SAMIUR2",56,0)
; $$PKYDT pack-years from start & end & cigs/day
"RTN","SAMIUR2",57,0)
; $$PKY pack-years from years & packs/day
"RTN","SAMIUR2",58,0)
;
"RTN","SAMIUR2",59,0)
; $$AGE age
"RTN","SAMIUR2",60,0)
; $$BLINEDT baseline date
"RTN","SAMIUR2",61,0)
; $$CONTACT patient street address
"RTN","SAMIUR2",62,0)
; $$CTPROT ct protocol
"RTN","SAMIUR2",63,0)
; $$DOB date of birth
"RTN","SAMIUR2",64,0)
; $$FUDATE followup date
"RTN","SAMIUR2",65,0)
; $$GENDER gender
"RTN","SAMIUR2",66,0)
; $$IFORM name(s) of incomplete forms
"RTN","SAMIUR2",67,0)
; $$LASTEXM patient last exam
"RTN","SAMIUR2",68,0)
; $$MANPAT unmatched patient cell
"RTN","SAMIUR2",69,0)
; $$MATCH match button cell
"RTN","SAMIUR2",70,0)
; $$NAME name w/hyperlink
"RTN","SAMIUR2",71,0)
; $$PACKYRS smoking status
"RTN","SAMIUR2",72,0)
; $$POSSIBLE possible match cell
"RTN","SAMIUR2",73,0)
; $$RECOM recommendation
"RTN","SAMIUR2",74,0)
; $$RURAL patient's rural/urban status
"RTN","SAMIUR2",75,0)
; $$SID study id
"RTN","SAMIUR2",76,0)
; $$SMHIS smoking history cell
"RTN","SAMIUR2",77,0)
; $$SMKSTAT smoking status
"RTN","SAMIUR2",78,0)
; $$SSN social security number
"RTN","SAMIUR2",79,0)
; $$STUDYDT latest study date
"RTN","SAMIUR2",80,0)
; $$STUDYTYP latest study type
"RTN","SAMIUR2",81,0)
; $$VALS form-values cell
"RTN","SAMIUR2",82,0)
; $$WHEN followup text
"RTN","SAMIUR2",83,0)
; $$WORKPAT worklist patient name cell
"RTN","SAMIUR2",84,0)
;
"RTN","SAMIUR2",85,0)
; EPAT patient name w/nav to enrollment
"RTN","SAMIUR2",86,0)
; ETHNCTY ethnicity
"RTN","SAMIUR2",87,0)
; RACE race
"RTN","SAMIUR2",88,0)
; STATUS patient status
"RTN","SAMIUR2",89,0)
; WSVALS display form values from graph
"RTN","SAMIUR2",90,0)
;
"RTN","SAMIUR2",91,0)
;
"RTN","SAMIUR2",92,0)
;
"RTN","SAMIUR2",93,0)
;@section 1 ppi RPTTBL^SAMIUR2
"RTN","SAMIUR2",94,0)
;
"RTN","SAMIUR2",95,0)
;
"RTN","SAMIUR2",96,0)
;
"RTN","SAMIUR2",97,0)
RPTTBL(RPT,TYPE,SITE) ; RPT is passed by reference and returns the
"RTN","SAMIUR2",98,0)
; report definition table. TYPE is the report type to be returned
"RTN","SAMIUR2",99,0)
; This routine could use a file or a graph in the next version
"RTN","SAMIUR2",100,0)
;
"RTN","SAMIUR2",101,0)
;;private;procedure;clean;silent;sac
"RTN","SAMIUR2",102,0)
;@called-by
"RTN","SAMIUR2",103,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",104,0)
; WSREPORT^SAMIUR1 (which then calls WSREPORT^SAMIUR)
"RTN","SAMIUR2",105,0)
;@calls none (defines calls for WSREPORT^SAMIUR to call)
"RTN","SAMIUR2",106,0)
;@input
"RTN","SAMIUR2",107,0)
; TYPE = report type to return
"RTN","SAMIUR2",108,0)
;@output
"RTN","SAMIUR2",109,0)
; .RPT report-definition table
"RTN","SAMIUR2",110,0)
;
"RTN","SAMIUR2",111,0)
; This routine could use a file or a graph in the next version
"RTN","SAMIUR2",112,0)
;
"RTN","SAMIUR2",113,0)
if TYPE="followup" do quit ;
"RTN","SAMIUR2",114,0)
. set RPT(1,"header")="F/U Date"
"RTN","SAMIUR2",115,0)
. set RPT(1,"routine")="$$FUDATE^SAMIUR2"
"RTN","SAMIUR2",116,0)
. set RPT(2,"header")="Name"
"RTN","SAMIUR2",117,0)
. set RPT(2,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",118,0)
. ;set RPT(3,"header")="SSN"
"RTN","SAMIUR2",119,0)
. set RPT(3,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",120,0)
. set RPT(3,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",121,0)
. set RPT(4,"header")="Baseline Date"
"RTN","SAMIUR2",122,0)
. set RPT(4,"routine")="$$BLINEDT^SAMIUR2"
"RTN","SAMIUR2",123,0)
. set RPT(5,"header")="Last Form"
"RTN","SAMIUR2",124,0)
. set RPT(5,"routine")="$$AFORM^SAMIUR2"
"RTN","SAMIUR2",125,0)
. set RPT(6,"header")="Form Date"
"RTN","SAMIUR2",126,0)
. set RPT(6,"routine")="$$AFORMDT^SAMIUR2"
"RTN","SAMIUR2",127,0)
. set RPT(7,"header")="Recommend"
"RTN","SAMIUR2",128,0)
. set RPT(7,"routine")="$$RECOM^SAMIUR2"
"RTN","SAMIUR2",129,0)
. set RPT(8,"header")="Contact Information"
"RTN","SAMIUR2",130,0)
. set RPT(8,"routine")="$$CONTACT^SAMIUR2"
"RTN","SAMIUR2",131,0)
. quit
"RTN","SAMIUR2",132,0)
;
"RTN","SAMIUR2",133,0)
if TYPE="activity" do quit ;
"RTN","SAMIUR2",134,0)
. set RPT(1,"header")="Name"
"RTN","SAMIUR2",135,0)
. set RPT(1,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",136,0)
. set RPT(2,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",137,0)
. set RPT(2,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",138,0)
. set RPT(2.2,"header")="Active/Inactive"
"RTN","SAMIUR2",139,0)
. set RPT(2.2,"routine")="$$ACTIVE^SAMIUR2"
"RTN","SAMIUR2",140,0)
. set RPT(2.5,"header")="Form"
"RTN","SAMIUR2",141,0)
. set RPT(2.5,"routine")="$$AFORM^SAMIUR2"
"RTN","SAMIUR2",142,0)
. set RPT(3,"header")="Form Date"
"RTN","SAMIUR2",143,0)
. ;set RPT(3,"routine")="$$STUDYDT^SAMIUR2"
"RTN","SAMIUR2",144,0)
. set RPT(3,"routine")="$$AFORMDT^SAMIUR2"
"RTN","SAMIUR2",145,0)
. ;set RPT(4,"header")="Type"
"RTN","SAMIUR2",146,0)
. ;set RPT(4,"routine")="$$STUDYTYP^SAMIUR2"
"RTN","SAMIUR2",147,0)
. ;set RPT(5,"header")="CT Protocol"
"RTN","SAMIUR2",148,0)
. ;set RPT(5,"routine")="$$CTPROT^SAMIUR2"
"RTN","SAMIUR2",149,0)
. set RPT(6,"header")="Follow-up"
"RTN","SAMIUR2",150,0)
. set RPT(6,"routine")="$$RECOM^SAMIUR2"
"RTN","SAMIUR2",151,0)
. ;set RPT(7,"header")="When"
"RTN","SAMIUR2",152,0)
. ;set RPT(7,"routine")="$$WHEN^SAMIUR2"
"RTN","SAMIUR2",153,0)
. set RPT(8,"header")="on Date"
"RTN","SAMIUR2",154,0)
. set RPT(8,"routine")="$$FUDATE^SAMIUR2"
"RTN","SAMIUR2",155,0)
. quit
"RTN","SAMIUR2",156,0)
;
"RTN","SAMIUR2",157,0)
if TYPE="enrollment" do quit ;
"RTN","SAMIUR2",158,0)
. set RPT(1,"header")="Name"
"RTN","SAMIUR2",159,0)
. set RPT(1,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",160,0)
. set RPT(1.5,"header")="Active/Inactive"
"RTN","SAMIUR2",161,0)
. set RPT(1.5,"routine")="$$ACTIVE^SAMIUR2"
"RTN","SAMIUR2",162,0)
. set RPT(2,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",163,0)
. set RPT(2,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",164,0)
. set RPT(3,"header")="CT Date"
"RTN","SAMIUR2",165,0)
. set RPT(3,"routine")="$$STUDYDT^SAMIUR2"
"RTN","SAMIUR2",166,0)
. set RPT(4,"header")="Gender"
"RTN","SAMIUR2",167,0)
. set RPT(4,"routine")="$$GENDER^SAMIUR2"
"RTN","SAMIUR2",168,0)
. ; set RPT(5,"header")="Race"
"RTN","SAMIUR2",169,0)
. ; set RPT(5,"routine")="$$RACE^SAMIUR2"
"RTN","SAMIUR2",170,0)
. set RPT(6,"header")="Age"
"RTN","SAMIUR2",171,0)
. set RPT(6,"routine")="$$AGE^SAMIUR2"
"RTN","SAMIUR2",172,0)
. set RPT(7,"header")="Urban/Rural"
"RTN","SAMIUR2",173,0)
. set RPT(7,"routine")="$$RURAL^SAMIUR2"
"RTN","SAMIUR2",174,0)
. set RPT(8,"header")="Smoking Status"
"RTN","SAMIUR2",175,0)
. set RPT(8,"routine")="$$SMKSTAT^SAMIUR2"
"RTN","SAMIUR2",176,0)
. set RPT(9,"header")="Pack Years at Intake"
"RTN","SAMIUR2",177,0)
. set RPT(9,"routine")="$$PACKYRS^SAMIUR2"
"RTN","SAMIUR2",178,0)
. quit
"RTN","SAMIUR2",179,0)
;
"RTN","SAMIUR2",180,0)
if TYPE="inactive" do quit ;
"RTN","SAMIUR2",181,0)
. set RPT(1,"header")="Name"
"RTN","SAMIUR2",182,0)
. set RPT(1,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",183,0)
. set RPT(2,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",184,0)
. set RPT(2,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",185,0)
. set RPT(3,"header")="Enrollment date"
"RTN","SAMIUR2",186,0)
. set RPT(3,"routine")="$$ENROLLDT^SAMIUR2"
"RTN","SAMIUR2",187,0)
. ;set RPT(3,"header")="CT Date"
"RTN","SAMIUR2",188,0)
. ;set RPT(3,"routine")="$$STUDYDT^SAMIUR2"
"RTN","SAMIUR2",189,0)
. ;set RPT(4,"header")="Gender"
"RTN","SAMIUR2",190,0)
. ;set RPT(4,"routine")="$$GENDER^SAMIUR2"
"RTN","SAMIUR2",191,0)
. ; set RPT(5,"header")="Race"
"RTN","SAMIUR2",192,0)
. ; set RPT(5,"routine")="$$RACE^SAMIUR2"
"RTN","SAMIUR2",193,0)
. ;set RPT(6,"header")="Age"
"RTN","SAMIUR2",194,0)
. ;set RPT(6,"routine")="$$AGE^SAMIUR2"
"RTN","SAMIUR2",195,0)
. set RPT(4,"header")="Date of Death"
"RTN","SAMIUR2",196,0)
. set RPT(4,"routine")="$$INACTDT^SAMIUR2"
"RTN","SAMIUR2",197,0)
. set RPT(5,"header")="Inactive Reason"
"RTN","SAMIUR2",198,0)
. set RPT(5,"routine")="$$INACTRE^SAMIUR2"
"RTN","SAMIUR2",199,0)
. set RPT(6,"header")="Inactive Comment"
"RTN","SAMIUR2",200,0)
. set RPT(6,"routine")="$$INACTCM^SAMIUR2"
"RTN","SAMIUR2",201,0)
. ;set RPT(7,"header")="Urban/Rural"
"RTN","SAMIUR2",202,0)
. ;set RPT(7,"routine")="$$RURAL^SAMIUR2"
"RTN","SAMIUR2",203,0)
. ;set RPT(8,"header")="Smoking Status"
"RTN","SAMIUR2",204,0)
. ;set RPT(8,"routine")="$$SMKSTAT^SAMIUR2"
"RTN","SAMIUR2",205,0)
. ;set RPT(9,"header")="Pack Years at Intake"
"RTN","SAMIUR2",206,0)
. ;set RPT(9,"routine")="$$PACKYRS^SAMIUR2"
"RTN","SAMIUR2",207,0)
. quit
"RTN","SAMIUR2",208,0)
;
"RTN","SAMIUR2",209,0)
if TYPE="incomplete" do quit ;
"RTN","SAMIUR2",210,0)
. set RPT(1,"header")="Enrollment date"
"RTN","SAMIUR2",211,0)
. set RPT(1,"routine")="$$ENROLLDT^SAMIUR2"
"RTN","SAMIUR2",212,0)
. set RPT(2,"header")="Name"
"RTN","SAMIUR2",213,0)
. set RPT(2,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",214,0)
. set RPT(3,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",215,0)
. set RPT(3,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",216,0)
. set RPT(4,"header")="Incomplete form"
"RTN","SAMIUR2",217,0)
. set RPT(4,"routine")="$$IFORM^SAMIUR2"
"RTN","SAMIUR2",218,0)
. quit
"RTN","SAMIUR2",219,0)
;
"RTN","SAMIUR2",220,0)
if TYPE="missingct" do quit ;
"RTN","SAMIUR2",221,0)
. set RPT(1,"header")="Last contact date"
"RTN","SAMIUR2",222,0)
. set RPT(1,"routine")="$$LDOC^SAMIUR2"
"RTN","SAMIUR2",223,0)
. set RPT(2,"header")="Last contact entry"
"RTN","SAMIUR2",224,0)
. set RPT(2,"routine")="$$LENTRY^SAMIUR2"
"RTN","SAMIUR2",225,0)
. set RPT(3,"header")="Name"
"RTN","SAMIUR2",226,0)
. set RPT(3,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",227,0)
. set RPT(4,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",228,0)
. set RPT(4,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",229,0)
. set RPT(5,"header")="Enrollment date"
"RTN","SAMIUR2",230,0)
. set RPT(5,"routine")="$$ENROLLDT^SAMIUR2"
"RTN","SAMIUR2",231,0)
. quit
"RTN","SAMIUR2",232,0)
;
"RTN","SAMIUR2",233,0)
if TYPE="cumpy" do quit ;
"RTN","SAMIUR2",234,0)
. set RPT(1,"header")="Name"
"RTN","SAMIUR2",235,0)
. set RPT(1,"routine")="$$NAME^SAMIUR2"
"RTN","SAMIUR2",236,0)
. set RPT(2,"header")="Study ID"
"RTN","SAMIUR2",237,0)
. set RPT(2,"routine")="$$SID^SAMIUR2"
"RTN","SAMIUR2",238,0)
. set RPT(3,"header")="Form Values"
"RTN","SAMIUR2",239,0)
. set RPT(3,"routine")="$$VALS^SAMIUR2"
"RTN","SAMIUR2",240,0)
. set RPT(4,"header")="Smoking History"
"RTN","SAMIUR2",241,0)
. set RPT(4,"routine")="$$SMHIS^SAMIUR2"
"RTN","SAMIUR2",242,0)
. quit
"RTN","SAMIUR2",243,0)
;
"RTN","SAMIUR2",244,0)
if TYPE="unmatched" do ;
"RTN","SAMIUR2",245,0)
. set RPT(1,"header")="Unmatched Manual Entry"
"RTN","SAMIUR2",246,0)
. set RPT(1,"routine")="$$MANPAT^SAMIUR2"
"RTN","SAMIUR2",247,0)
. set RPT(2,"header")="Possible HL7 Match"
"RTN","SAMIUR2",248,0)
. set RPT(2,"routine")="$$POSSIBLE^SAMIUR2"
"RTN","SAMIUR2",249,0)
. set RPT(3,"header")="Match Control"
"RTN","SAMIUR2",250,0)
. set RPT(3,"routine")="$$MATCH^SAMIUR2"
"RTN","SAMIUR2",251,0)
. quit
"RTN","SAMIUR2",252,0)
;
"RTN","SAMIUR2",253,0)
if TYPE="worklist" do quit ;
"RTN","SAMIUR2",254,0)
. set RPT(1,"header")="Name"
"RTN","SAMIUR2",255,0)
. set RPT(1,"routine")="$$WORKPAT^SAMIUR2"
"RTN","SAMIUR2",256,0)
. set RPT(2,"header")=$$SSNLABEL(SITE)
"RTN","SAMIUR2",257,0)
. set RPT(2,"routine")="$$SSN^SAMIUR2"
"RTN","SAMIUR2",258,0)
. set RPT(3,"header")="Date of birth"
"RTN","SAMIUR2",259,0)
. set RPT(3,"routine")="$$DOB^SAMIUR2"
"RTN","SAMIUR2",260,0)
. set RPT(4,"header")="Gender"
"RTN","SAMIUR2",261,0)
. set RPT(4,"routine")="$$GENDER^SAMIUR2"
"RTN","SAMIUR2",262,0)
. quit
"RTN","SAMIUR2",263,0)
;
"RTN","SAMIUR2",264,0)
quit ; end of ppi RPTTBL^SAMIUR2
"RTN","SAMIUR2",265,0)
;
"RTN","SAMIUR2",266,0)
;
"RTN","SAMIUR2",267,0)
;
"RTN","SAMIUR2",268,0)
;@section 2 shared subroutines
"RTN","SAMIUR2",269,0)
;
"RTN","SAMIUR2",270,0)
;
"RTN","SAMIUR2",271,0)
;
"RTN","SAMIUR2",272,0)
DFN2SID(DFN) ;studyid for patient DFN
"RTN","SAMIUR2",273,0)
;
"RTN","SAMIUR2",274,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",275,0)
;@called-by
"RTN","SAMIUR2",276,0)
; $$SID^SAMIUR2
"RTN","SAMIUR2",277,0)
; $$IFORM^SAMIUR2
"RTN","SAMIUR2",278,0)
; $$VALS^SAMIUR2
"RTN","SAMIUR2",279,0)
; $$SMHIS^SAMIUR2
"RTN","SAMIUR2",280,0)
;@calls
"RTN","SAMIUR2",281,0)
; $$setroot^%wd
"RTN","SAMIUR2",282,0)
;
"RTN","SAMIUR2",283,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",284,0)
;
"RTN","SAMIUR2",285,0)
quit $get(@root@(DFN,"sisid")) ; end of $$DFN2SID
"RTN","SAMIUR2",286,0)
;
"RTN","SAMIUR2",287,0)
;
"RTN","SAMIUR2",288,0)
;
"RTN","SAMIUR2",289,0)
MKNAV(sid,zform,fname,form) ; html for navigation to form
"RTN","SAMIUR2",290,0)
;
"RTN","SAMIUR2",291,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",292,0)
;@called-by
"RTN","SAMIUR2",293,0)
; $$IFORM^SAMIUR2
"RTN","SAMIUR2",294,0)
;@calls none
"RTN","SAMIUR2",295,0)
;
"RTN","SAMIUR2",296,0)
new rtn set rtn="<form method=""post"" action=""/vapals"">"
"RTN","SAMIUR2",297,0)
set rtn=rtn_"<input name=""samiroute"" value=""form"" type=""hidden"">"
"RTN","SAMIUR2",298,0)
set rtn=rtn_" <input name=""studyid"" value="""_sid_""" type=""hidden"">"
"RTN","SAMIUR2",299,0)
set rtn=rtn_" <input name=""form"" value=""vapals:"_zform_""" type=""hidden"">"
"RTN","SAMIUR2",300,0)
set rtn=rtn_" <input value="""_fname_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"_$char(13)
"RTN","SAMIUR2",301,0)
;
"RTN","SAMIUR2",302,0)
quit rtn ; end of $$MKNAV
"RTN","SAMIUR2",303,0)
;
"RTN","SAMIUR2",304,0)
;
"RTN","SAMIUR2",305,0)
;
"RTN","SAMIUR2",306,0)
;@section 3 smoking history subroutines
"RTN","SAMIUR2",307,0)
;
"RTN","SAMIUR2",308,0)
;
"RTN","SAMIUR2",309,0)
;
"RTN","SAMIUR2",310,0)
SHDET(SID,KEY) ; table contents for smoking history
"RTN","SAMIUR2",311,0)
;
"RTN","SAMIUR2",312,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",313,0)
;@called-by
"RTN","SAMIUR2",314,0)
; LOAD^SAMIFLD
"RTN","SAMIUR2",315,0)
; $$SMHIS^SAMIUR2
"RTN","SAMIUR2",316,0)
;@calls
"RTN","SAMIUR2",317,0)
; CUMPY
"RTN","SAMIUR2",318,0)
;
"RTN","SAMIUR2",319,0)
; KEY is the form key of the caller for "current" marker insertion
"RTN","SAMIUR2",320,0)
;
"RTN","SAMIUR2",321,0)
new pyary
"RTN","SAMIUR2",322,0)
if $get(KEY)="" set KEY=""
"RTN","SAMIUR2",323,0)
do CUMPY("pyary",SID,KEY)
"RTN","SAMIUR2",324,0)
;
"RTN","SAMIUR2",325,0)
new current set current=$get(pyary("current"))
"RTN","SAMIUR2",326,0)
new rptcnt set rptcnt=0
"RTN","SAMIUR2",327,0)
new rptmax set rptmax=$order(pyary("rpt",""),-1)
"RTN","SAMIUR2",328,0)
quit:+rptmax=0
"RTN","SAMIUR2",329,0)
;
"RTN","SAMIUR2",330,0)
new return set return=""
"RTN","SAMIUR2",331,0)
new zi set zi=""
"RTN","SAMIUR2",332,0)
for zi=1:1:rptmax do ;
"RTN","SAMIUR2",333,0)
. set rptcnt=rptcnt+1
"RTN","SAMIUR2",334,0)
. if rptcnt=current set return=return_"<tr data-current-form=""true"">"
"RTN","SAMIUR2",335,0)
. else set return=return_"<tr>"
"RTN","SAMIUR2",336,0)
. set return=return_"<td>"_pyary("rpt",rptcnt,1)_"</td>"
"RTN","SAMIUR2",337,0)
. set return=return_"<td class=""reported-date"">"_pyary("rpt",rptcnt,2)_"</td>"
"RTN","SAMIUR2",338,0)
. set return=return_"<td class=""pack-years"">"_pyary("rpt",rptcnt,3)_"</td>"
"RTN","SAMIUR2",339,0)
. set return=return_"<td class=""cumulative-pack-years"">"_pyary("rpt",rptcnt,4)_"</td>"
"RTN","SAMIUR2",340,0)
. set return=return_"</tr>"
"RTN","SAMIUR2",341,0)
. quit
"RTN","SAMIUR2",342,0)
;
"RTN","SAMIUR2",343,0)
quit return ; end of ppi $$SHDET^SAMIUR2
"RTN","SAMIUR2",344,0)
;
"RTN","SAMIUR2",345,0)
;
"RTN","SAMIUR2",346,0)
;
"RTN","SAMIUR2",347,0)
CUMPY(PYARY,sid,KEY) ; forms array of cummulative pack year data
"RTN","SAMIUR2",348,0)
;
"RTN","SAMIUR2",349,0)
;;ppi;procedure;clean;silent;sac
"RTN","SAMIUR2",350,0)
;@called-by
"RTN","SAMIUR2",351,0)
; SSTATUS^SAMINOT2
"RTN","SAMIUR2",352,0)
; SSTATUS^SAMINOT3
"RTN","SAMIUR2",353,0)
; $$SHDET
"RTN","SAMIUR2",354,0)
;@calls
"RTN","SAMIUR2",355,0)
; $$setroot^%wd
"RTN","SAMIUR2",356,0)
; GETITEMS^SAMICASE
"RTN","SAMIUR2",357,0)
; $$GETDTKEY^SAMICAS2
"RTN","SAMIUR2",358,0)
; $$KEY2DSPD^SAMICAS2
"RTN","SAMIUR2",359,0)
; $$FMDT
"RTN","SAMIUR2",360,0)
; $$PKYDT
"RTN","SAMIUR2",361,0)
;
"RTN","SAMIUR2",362,0)
; PYARY passed by name
"RTN","SAMIUR2",363,0)
; KEY is the current form key for matching to a row
"RTN","SAMIUR2",364,0)
;
"RTN","SAMIUR2",365,0)
kill @PYARY
"RTN","SAMIUR2",366,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",367,0)
; new sid set sid=$get(@root@(DFN,"samistudyid"))
"RTN","SAMIUR2",368,0)
; quit:sid=""
"RTN","SAMIUR2",369,0)
;
"RTN","SAMIUR2",370,0)
new items set items=""
"RTN","SAMIUR2",371,0)
do GETITEMS^SAMICASE("items",sid)
"RTN","SAMIUR2",372,0)
quit:'$data(items)
"RTN","SAMIUR2",373,0)
merge @PYARY@("items")=items
"RTN","SAMIUR2",374,0)
;
"RTN","SAMIUR2",375,0)
new siform set siform=$order(items("siform"))
"RTN","SAMIUR2",376,0)
quit:siform=""
"RTN","SAMIUR2",377,0)
if siform=$get(KEY) set @PYARY@("current")=1 ;this row is the current form
"RTN","SAMIUR2",378,0)
;
"RTN","SAMIUR2",379,0)
set @PYARY@("rpt",1,1)="Intake" ; Form
"RTN","SAMIUR2",380,0)
new kdate set kdate=$$GETDTKEY^SAMICAS2(siform)
"RTN","SAMIUR2",381,0)
new keydate set keydate=$$KEY2DSPD^SAMICAS2(kdate)
"RTN","SAMIUR2",382,0)
set @PYARY@("rpt",1,2)=keydate ; Reported Date
"RTN","SAMIUR2",383,0)
;
"RTN","SAMIUR2",384,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",385,0)
new lastcum set lastcum=$get(@vals@("sippy"))
"RTN","SAMIUR2",386,0)
set @PYARY@("rpt",1,3)=lastcum ; Pack Years
"RTN","SAMIUR2",387,0)
set @PYARY@("rpt",1,4)=lastcum ; Cumulative
"RTN","SAMIUR2",388,0)
;
"RTN","SAMIUR2",389,0)
new lastdt set lastdt=keydate
"RTN","SAMIUR2",390,0)
new rptcnt set rptcnt=1
"RTN","SAMIUR2",391,0)
new zi set zi=""
"RTN","SAMIUR2",392,0)
for do quit:zi="" ;
"RTN","SAMIUR2",393,0)
. set zi=$order(items("type","vapals:fuform",zi))
"RTN","SAMIUR2",394,0)
. quit:zi=""
"RTN","SAMIUR2",395,0)
. ;
"RTN","SAMIUR2",396,0)
. set rptcnt=rptcnt+1
"RTN","SAMIUR2",397,0)
. set @PYARY@("rpt",rptcnt,1)="Follow-up"
"RTN","SAMIUR2",398,0)
. new kdate set kdate=$$GETDTKEY^SAMICAS2(zi)
"RTN","SAMIUR2",399,0)
. new keydate set keydate=$$KEY2DSPD^SAMICAS2(kdate)
"RTN","SAMIUR2",400,0)
. set @PYARY@("rpt",rptcnt,2)=keydate ; Reported Date
"RTN","SAMIUR2",401,0)
. ;
"RTN","SAMIUR2",402,0)
. set vals=$name(@root@("graph",sid,zi))
"RTN","SAMIUR2",403,0)
. new newpd set newpd=$g(@vals@("sippd"))
"RTN","SAMIUR2",404,0)
. new usedate set usedate=keydate
"RTN","SAMIUR2",405,0)
. new siq set siq=$get(@vals@("siq")) ; quit date on followup form
"RTN","SAMIUR2",406,0)
. if siq'="" do ; quit date provided
"RTN","SAMIUR2",407,0)
. . quit:$$FMDT(siq)<$$FMDT(lastdt) ; quit date out of range
"RTN","SAMIUR2",408,0)
. . quit:$$FMDT(siq)>$$FMDT(keydate) ; quit date out of range
"RTN","SAMIUR2",409,0)
. . set usedate=siq ; use the quit date as end of range
"RTN","SAMIUR2",410,0)
. . quit
"RTN","SAMIUR2",411,0)
. new newpy set newpy=$$PKYDT(lastdt,usedate,newpd)
"RTN","SAMIUR2",412,0)
. set @vals@("sippy")=newpy
"RTN","SAMIUR2",413,0)
. ;
"RTN","SAMIUR2",414,0)
. set ^gpl("current","KEY")=$get(KEY)
"RTN","SAMIUR2",415,0)
. set ^gpl("current","zi")=zi
"RTN","SAMIUR2",416,0)
. if zi=$get(KEY) do
"RTN","SAMIUR2",417,0)
. . set @PYARY@("current")=rptcnt ;this row is the current form
"RTN","SAMIUR2",418,0)
. . quit
"RTN","SAMIUR2",419,0)
. ;
"RTN","SAMIUR2",420,0)
. new newcum set newcum=""
"RTN","SAMIUR2",421,0)
. if newpy'="" set newcum=lastcum+newpy
"RTN","SAMIUR2",422,0)
. set @PYARY@("rpt",rptcnt,3)=newpy ; Pack Years
"RTN","SAMIUR2",423,0)
. set @PYARY@("rpt",rptcnt,4)=newcum ; Cumulative
"RTN","SAMIUR2",424,0)
. set lastdt=keydate
"RTN","SAMIUR2",425,0)
. set lastcum=newcum
"RTN","SAMIUR2",426,0)
. quit
"RTN","SAMIUR2",427,0)
;
"RTN","SAMIUR2",428,0)
quit ; end of ppi CUMPY^SAMIUR2
"RTN","SAMIUR2",429,0)
;
"RTN","SAMIUR2",430,0)
;
"RTN","SAMIUR2",431,0)
;
"RTN","SAMIUR2",432,0)
TDDT(ZDT) ; embed date in table cell
"RTN","SAMIUR2",433,0)
;
"RTN","SAMIUR2",434,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",435,0)
;@called-by
"RTN","SAMIUR2",436,0)
; BLINEDT
"RTN","SAMIUR2",437,0)
; DOB
"RTN","SAMIUR2",438,0)
; FUDATE
"RTN","SAMIUR2",439,0)
; LASTEXM
"RTN","SAMIUR2",440,0)
; INACTDT
"RTN","SAMIUR2",441,0)
; LDOC
"RTN","SAMIUR2",442,0)
; STUDYDT
"RTN","SAMIUR2",443,0)
;@calls
"RTN","SAMIUR2",444,0)
; ^%DT
"RTN","SAMIUR2",445,0)
;
"RTN","SAMIUR2",446,0)
new X,Y,Z
"RTN","SAMIUR2",447,0)
set X=ZDT
"RTN","SAMIUR2",448,0)
do ^%DT
"RTN","SAMIUR2",449,0)
if Y=-1 set Y=""
"RTN","SAMIUR2",450,0)
set Z=$$VAPALSDT^SAMICASE(Y)
"RTN","SAMIUR2",451,0)
new cell
"RTN","SAMIUR2",452,0)
set cell="<td data-order="""_Y_""" data-search="""_Z_""">"_Z_"</td>"
"RTN","SAMIUR2",453,0)
;
"RTN","SAMIUR2",454,0)
quit cell ; end of $$TDDT
"RTN","SAMIUR2",455,0)
;
"RTN","SAMIUR2",456,0)
;
"RTN","SAMIUR2",457,0)
;
"RTN","SAMIUR2",458,0)
FMDT(ZDT) ; convert date to fileman format
"RTN","SAMIUR2",459,0)
;
"RTN","SAMIUR2",460,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",461,0)
;@called-by
"RTN","SAMIUR2",462,0)
; MKPTLK^SAMIHOM4
"RTN","SAMIUR2",463,0)
; $$PKYDT
"RTN","SAMIUR2",464,0)
; CUMPY
"RTN","SAMIUR2",465,0)
;@calls
"RTN","SAMIUR2",466,0)
; ^%DT
"RTN","SAMIUR2",467,0)
;
"RTN","SAMIUR2",468,0)
new Y
"RTN","SAMIUR2",469,0)
new X set X=ZDT
"RTN","SAMIUR2",470,0)
do ^%DT
"RTN","SAMIUR2",471,0)
;
"RTN","SAMIUR2",472,0)
quit Y ; end of ppi $$FMDT^SAMIUR2
"RTN","SAMIUR2",473,0)
;
"RTN","SAMIUR2",474,0)
;
"RTN","SAMIUR2",475,0)
;
"RTN","SAMIUR2",476,0)
PKYDT(STDT,ENDT,PKS,CIGS) ; pack-years from start & end & cigs/day
"RTN","SAMIUR2",477,0)
;
"RTN","SAMIUR2",478,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",479,0)
;@called-by
"RTN","SAMIUR2",480,0)
; CUMPY
"RTN","SAMIUR2",481,0)
;@calls
"RTN","SAMIUR2",482,0)
; $$FMDT
"RTN","SAMIUR2",483,0)
; $$FMDIFF^XLFDT
"RTN","SAMIUR2",484,0)
; $$PKY
"RTN","SAMIUR2",485,0)
;
"RTN","SAMIUR2",486,0)
; if PKS is not provided, 20/CIGS will be used for packs per day
"RTN","SAMIUR2",487,0)
;
"RTN","SAMIUR2",488,0)
new pkyr set pkyr=""
"RTN","SAMIUR2",489,0)
if $get(PKS)="" do ;
"RTN","SAMIUR2",490,0)
. if $get(CIGS)="" set PKS=0 quit ;
"RTN","SAMIUR2",491,0)
. set PKS=20/CIGS
"RTN","SAMIUR2",492,0)
. quit
"RTN","SAMIUR2",493,0)
new zst set zst=$$FMDT(STDT)
"RTN","SAMIUR2",494,0)
set:zst=-1 zst=STDT
"RTN","SAMIUR2",495,0)
;
"RTN","SAMIUR2",496,0)
new zend set zend=$$FMDT(ENDT)
"RTN","SAMIUR2",497,0)
set:zend=-1 zend=ENDT ; probably a fileman date already
"RTN","SAMIUR2",498,0)
;
"RTN","SAMIUR2",499,0)
new zdif set zdif=$$FMDIFF^XLFDT(zend,zst)/365.24
"RTN","SAMIUR2",500,0)
;
"RTN","SAMIUR2",501,0)
set pkyr=$$PKY(zdif,PKS)
"RTN","SAMIUR2",502,0)
;
"RTN","SAMIUR2",503,0)
quit pkyr ; end of $$PKYDT
"RTN","SAMIUR2",504,0)
;
"RTN","SAMIUR2",505,0)
;
"RTN","SAMIUR2",506,0)
;
"RTN","SAMIUR2",507,0)
PKY(YRS,PKS) ; pack-years from years & packs/day
"RTN","SAMIUR2",508,0)
;
"RTN","SAMIUR2",509,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",510,0)
;@called-by
"RTN","SAMIUR2",511,0)
; $$PKYDT
"RTN","SAMIUR2",512,0)
;@calls none
"RTN","SAMIUR2",513,0)
;@input
"RTN","SAMIUR2",514,0)
; YRS = years
"RTN","SAMIUR2",515,0)
; PKS = packs/day
"RTN","SAMIUR2",516,0)
;
"RTN","SAMIUR2",517,0)
new rtn set rtn=""
"RTN","SAMIUR2",518,0)
set rtn=YRS*PKS
"RTN","SAMIUR2",519,0)
if $length($piece(rtn,".",2))>2 do ;
"RTN","SAMIUR2",520,0)
. new zdec set zdec=$piece(rtn,".",2)
"RTN","SAMIUR2",521,0)
. set rtn=$piece(rtn,".",1)_"."_$extract(zdec,1,2)
"RTN","SAMIUR2",522,0)
. if $extract(zdec,3)>4 set rtn=rtn+.01
"RTN","SAMIUR2",523,0)
. quit
"RTN","SAMIUR2",524,0)
set:rtn'["." rtn=rtn_".0"
"RTN","SAMIUR2",525,0)
;
"RTN","SAMIUR2",526,0)
quit rtn ; end of $$PKY
"RTN","SAMIUR2",527,0)
;
"RTN","SAMIUR2",528,0)
;
"RTN","SAMIUR2",529,0)
;
"RTN","SAMIUR2",530,0)
;@section 4 active column ppis
"RTN","SAMIUR2",531,0)
;
"RTN","SAMIUR2",532,0)
;
"RTN","SAMIUR2",533,0)
;
"RTN","SAMIUR2",534,0)
ACTIVE(zdt,dfn,SAMIPATS) ; Active/Inactive column
"RTN","SAMIUR2",535,0)
;
"RTN","SAMIUR2",536,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",537,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",538,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",539,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",540,0)
new active set active="inactive"
"RTN","SAMIUR2",541,0)
if $get(@vals@("sistatus"))="active" set active="active"
"RTN","SAMIUR2",542,0)
;
"RTN","SAMIUR2",543,0)
quit active
"RTN","SAMIUR2",544,0)
;
"RTN","SAMIUR2",545,0)
AFORM(zdt,dfn,SAMIPATS) ; Name of most recent form
"RTN","SAMIUR2",546,0)
Q $GET(SAMIPATS(zdt,dfn,"aform"))
"RTN","SAMIUR2",547,0)
;
"RTN","SAMIUR2",548,0)
AFORMDT(zdt,dfn,SAMIPATS) ; Date of most recent form
"RTN","SAMIUR2",549,0)
N ZD S ZD=$GET(SAMIPATS(zdt,dfn,"aformdt"))
"RTN","SAMIUR2",550,0)
Q $$VAPALSDT^SAMICASE(ZD)
"RTN","SAMIUR2",551,0)
;
"RTN","SAMIUR2",552,0)
AGE(zdt,dfn,SAMIPATS) ; age
"RTN","SAMIUR2",553,0)
;
"RTN","SAMIUR2",554,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",555,0)
;@called-by
"RTN","SAMIUR2",556,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",557,0)
;@calls
"RTN","SAMIUR2",558,0)
; $$setroot^%wd
"RTN","SAMIUR2",559,0)
; ^%DT
"RTN","SAMIUR2",560,0)
; $$NOW^XLFDT
"RTN","SAMIUR2",561,0)
; $$FMDIFF^XLFDT
"RTN","SAMIUR2",562,0)
;
"RTN","SAMIUR2",563,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",564,0)
new dob set dob=$get(@root@(dfn,"sbdob")) ; dob in VAPALS format
"RTN","SAMIUR2",565,0)
;
"RTN","SAMIUR2",566,0)
new Y
"RTN","SAMIUR2",567,0)
new X set X=dob
"RTN","SAMIUR2",568,0)
do ^%DT
"RTN","SAMIUR2",569,0)
;
"RTN","SAMIUR2",570,0)
new age set age=$piece($$FMDIFF^XLFDT($$NOW^XLFDT,Y)/365,".")
"RTN","SAMIUR2",571,0)
;
"RTN","SAMIUR2",572,0)
quit age ; end of ppi $$AGE^SAMIUR2
"RTN","SAMIUR2",573,0)
;
"RTN","SAMIUR2",574,0)
;
"RTN","SAMIUR2",575,0)
;
"RTN","SAMIUR2",576,0)
ENROLLDT(zdt,dfn,SAMIPATS) ; enrollment date
"RTN","SAMIUR2",577,0)
;
"RTN","SAMIUR2",578,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",579,0)
;@called-by
"RTN","SAMIUR2",580,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",581,0)
;@calls
"RTN","SAMIUR2",582,0)
; $$TDDT
"RTN","SAMIUR2",583,0)
;
"RTN","SAMIUR2",584,0)
new enroldt set enroldt=$get(SAMIPATS(zdt,dfn,"edate"))
"RTN","SAMIUR2",585,0)
;
"RTN","SAMIUR2",586,0)
quit $$TDDT(enroldt) ; end of ppi $$ENROLLDT^SAMIUR2
"RTN","SAMIUR2",587,0)
;
"RTN","SAMIUR2",588,0)
;
"RTN","SAMIUR2",589,0)
BLINEDT(zdt,dfn,SAMIPATS) ; baseline date
"RTN","SAMIUR2",590,0)
;
"RTN","SAMIUR2",591,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",592,0)
;@called-by
"RTN","SAMIUR2",593,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",594,0)
;@calls
"RTN","SAMIUR2",595,0)
; $$TDDT
"RTN","SAMIUR2",596,0)
;
"RTN","SAMIUR2",597,0)
new bldt set bldt=$get(SAMIPATS(zdt,dfn,"baseline"))
"RTN","SAMIUR2",598,0)
;
"RTN","SAMIUR2",599,0)
quit $$TDDT(bldt) ; end of ppi $$BLINEDT^SAMIUR2
"RTN","SAMIUR2",600,0)
;
"RTN","SAMIUR2",601,0)
;
"RTN","SAMIUR2",602,0)
CONTACT(zdt,dfn,SAMIPATS) ; patient street address
"RTN","SAMIUR2",603,0)
;
"RTN","SAMIUR2",604,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",605,0)
;@called-by
"RTN","SAMIUR2",606,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",607,0)
;@calls
"RTN","SAMIUR2",608,0)
; $$setroot^%wd
"RTN","SAMIUR2",609,0)
;
"RTN","SAMIUR2",610,0)
new contact set contact=""
"RTN","SAMIUR2",611,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",612,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",613,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",614,0)
q:siform=""
"RTN","SAMIUR2",615,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",616,0)
set contact=$get(@vals@("sinamef"))_" "_$get(@vals@("sinamel"))
"RTN","SAMIUR2",617,0)
set contact=contact_"<br>"_$get(@vals@("sipsa"))
"RTN","SAMIUR2",618,0)
if $get(@vals@("sipan"))'="" do
"RTN","SAMIUR2",619,0)
. set contact=contact_" Apt "_$get(@vals@("sipan"))
"RTN","SAMIUR2",620,0)
. quit
"RTN","SAMIUR2",621,0)
if $get(@vals@("sipcn"))'="" do
"RTN","SAMIUR2",622,0)
. set contact=contact_"<br>County "_@vals@("sipcn")
"RTN","SAMIUR2",623,0)
. quit
"RTN","SAMIUR2",624,0)
if $get(@vals@("sipc"))'="" do
"RTN","SAMIUR2",625,0)
. set contact=contact_" <br>"_@vals@("sipc")_", "
"RTN","SAMIUR2",626,0)
. quit
"RTN","SAMIUR2",627,0)
set contact=contact_" "_$get(@vals@("sips"))_" "_$get(@vals@("sipz"))_" "
"RTN","SAMIUR2",628,0)
;
"RTN","SAMIUR2",629,0)
new phone set phone=$get(@vals@("sippn"))
"RTN","SAMIUR2",630,0)
if phone'="" set contact=contact_" <br>Phone: "_phone
"RTN","SAMIUR2",631,0)
;
"RTN","SAMIUR2",632,0)
quit contact ; end of ppi $$CONTACT^SAMIUR2
"RTN","SAMIUR2",633,0)
;
"RTN","SAMIUR2",634,0)
;
"RTN","SAMIUR2",635,0)
;
"RTN","SAMIUR2",636,0)
CTPROT(zdt,dfn,SAMIPATS) ; ct protocol
"RTN","SAMIUR2",637,0)
;
"RTN","SAMIUR2",638,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",639,0)
;@called-by
"RTN","SAMIUR2",640,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",641,0)
;@calls
"RTN","SAMIUR2",642,0)
; $$setroot^%wd
"RTN","SAMIUR2",643,0)
;
"RTN","SAMIUR2",644,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",645,0)
new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform"))
"RTN","SAMIUR2",646,0)
quit:ceform="" ""
"RTN","SAMIUR2",647,0)
;
"RTN","SAMIUR2",648,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",649,0)
new vals set vals=$name(@root@("graph",sid,ceform))
"RTN","SAMIUR2",650,0)
new cectp set cectp=$get(@vals@("cectp"))
"RTN","SAMIUR2",651,0)
new ctyp set ctyp=$select(cectp="l":"Low-Dose CT",cectp="d":"Standard CT",cectp="i":"Limited",1:"")
"RTN","SAMIUR2",652,0)
;
"RTN","SAMIUR2",653,0)
quit ctyp ; end of ppi $$CTPROT^SAMIUR2
"RTN","SAMIUR2",654,0)
;
"RTN","SAMIUR2",655,0)
;
"RTN","SAMIUR2",656,0)
;
"RTN","SAMIUR2",657,0)
DOB(ien,dfn,SAMIPATS) ; date of birth
"RTN","SAMIUR2",658,0)
;
"RTN","SAMIUR2",659,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",660,0)
;@called-by
"RTN","SAMIUR2",661,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",662,0)
;@calls
"RTN","SAMIUR2",663,0)
; $$TDDT
"RTN","SAMIUR2",664,0)
;
"RTN","SAMIUR2",665,0)
new dob set dob=$get(SAMIPATS(ien,dfn,"dob"))
"RTN","SAMIUR2",666,0)
if dob="" set dob=$get(SAMIPATS(ien,dfn,"sbdob"))
"RTN","SAMIUR2",667,0)
;
"RTN","SAMIUR2",668,0)
quit $$TDDT(dob) ; end of ppi $$DOB^SAMIUR2
"RTN","SAMIUR2",669,0)
;
"RTN","SAMIUR2",670,0)
;
"RTN","SAMIUR2",671,0)
;
"RTN","SAMIUR2",672,0)
FUDATE(zdt,dfn,SAMIPATS) ; followup date
"RTN","SAMIUR2",673,0)
;
"RTN","SAMIUR2",674,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",675,0)
;@called-by
"RTN","SAMIUR2",676,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",677,0)
;@calls
"RTN","SAMIUR2",678,0)
; $TDDT
"RTN","SAMIUR2",679,0)
;
"RTN","SAMIUR2",680,0)
new fud set fud="fudate"
"RTN","SAMIUR2",681,0)
new date set date=$get(SAMIPATS(zdt,dfn,"cefud"))
"RTN","SAMIUR2",682,0)
;
"RTN","SAMIUR2",683,0)
quit $$TDDT(date) ; end of ppi $$FUDATE^SAMIUR2
"RTN","SAMIUR2",684,0)
;
"RTN","SAMIUR2",685,0)
;
"RTN","SAMIUR2",686,0)
;
"RTN","SAMIUR2",687,0)
GENDER(zdt,dfn,SAMIPATS) ; gender
"RTN","SAMIUR2",688,0)
;
"RTN","SAMIUR2",689,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",690,0)
;@called-by
"RTN","SAMIUR2",691,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",692,0)
;@calls
"RTN","SAMIUR2",693,0)
; $$setroot^%wd
"RTN","SAMIUR2",694,0)
;
"RTN","SAMIUR2",695,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",696,0)
new lroot set lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMIUR2",697,0)
;
"RTN","SAMIUR2",698,0)
new gend set gend=$get(SAMIPATS(zdt,dfn,"gender"))
"RTN","SAMIUR2",699,0)
if gend="" do
"RTN","SAMIUR2",700,0)
. new pien set pien=$order(@root@("dfn",dfn,""))
"RTN","SAMIUR2",701,0)
. if pien'="" do ;
"RTN","SAMIUR2",702,0)
. . set gend=$get(@root@(pien,"sex"))
"RTN","SAMIUR2",703,0)
. . if gend="" set gend=$get(@root@(pien,"gender"))
"RTN","SAMIUR2",704,0)
. . quit
"RTN","SAMIUR2",705,0)
. if gend="" do ;
"RTN","SAMIUR2",706,0)
. . new lien set lien=$order(@lroot@("dfn",dfn,""))
"RTN","SAMIUR2",707,0)
. . set gend=$get(@lroot@(lien,"gender"))
"RTN","SAMIUR2",708,0)
. . quit
"RTN","SAMIUR2",709,0)
if gend["^" set gend=$piece(gend,"^",1)
"RTN","SAMIUR2",710,0)
;
"RTN","SAMIUR2",711,0)
quit gend ; end of ppi $$GENDER^SAMIUR2
"RTN","SAMIUR2",712,0)
;
"RTN","SAMIUR2",713,0)
;
"RTN","SAMIUR2",714,0)
;
"RTN","SAMIUR2",715,0)
IFORM(zdt,dfn,SAMIPATS) ; name(s) of incomplete forms
"RTN","SAMIUR2",716,0)
;
"RTN","SAMIUR2",717,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",718,0)
;@called-by
"RTN","SAMIUR2",719,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",720,0)
;@calls
"RTN","SAMIUR2",721,0)
; $$DFN2SID^SAMIUR2
"RTN","SAMIUR2",722,0)
; $$KEY2FM^SAMICASE
"RTN","SAMIUR2",723,0)
; $$VAPALSDT^SAMICASE
"RTN","SAMIUR2",724,0)
; $$MKNAV
"RTN","SAMIUR2",725,0)
;
"RTN","SAMIUR2",726,0)
new iform set iform=$get(SAMIPATS(zdt,dfn,"iform"))
"RTN","SAMIUR2",727,0)
quit:iform="" "" ;
"RTN","SAMIUR2",728,0)
;
"RTN","SAMIUR2",729,0)
new zkey1,zn,typ
"RTN","SAMIUR2",730,0)
new return set return="<table>"
"RTN","SAMIUR2",731,0)
for zn=2:1 quit:$piece(iform," ",zn)="" do ;
"RTN","SAMIUR2",732,0)
. set return=return_"<tr><td>"
"RTN","SAMIUR2",733,0)
. set zkey1=$piece(iform," ",zn)
"RTN","SAMIUR2",734,0)
. ;
"RTN","SAMIUR2",735,0)
. new fname
"RTN","SAMIUR2",736,0)
. if zkey1["ceform" set fname="CT Evaluation" set typ="ceform"
"RTN","SAMIUR2",737,0)
. if zkey1["sbform" set fname="Background" set typ="sbform"
"RTN","SAMIUR2",738,0)
. if zkey1["fuform" set fname="Participant Follow-up" set typ="fuform"
"RTN","SAMIUR2",739,0)
. if zkey1["bxform" set fname="Biopsy" set typ="bxform"
"RTN","SAMIUR2",740,0)
. if zkey1["ptform" set fname="PET Evaluation" set typ="ptform"
"RTN","SAMIUR2",741,0)
. if zkey1["itform" set fname="Intervention" set typ="itform"
"RTN","SAMIUR2",742,0)
. if zkey1["siform" set fname="Intake Form" set typ="siform"
"RTN","SAMIUR2",743,0)
. if $get(fname)="" set fname="unknown" set typ=""
"RTN","SAMIUR2",744,0)
. ;
"RTN","SAMIUR2",745,0)
. new sid set sid=$$DFN2SID^SAMIUR2(dfn)
"RTN","SAMIUR2",746,0)
. new zdate set zdate=$$VAPALSDT^SAMICASE($$KEY2FM^SAMICASE(zkey1))
"RTN","SAMIUR2",747,0)
. set return=return_$$MKNAV(sid,zkey1,fname_" - "_zdate,typ)
"RTN","SAMIUR2",748,0)
. set return=return_"</td></tr>"
"RTN","SAMIUR2",749,0)
. quit
"RTN","SAMIUR2",750,0)
;
"RTN","SAMIUR2",751,0)
set return=return_"</table>"
"RTN","SAMIUR2",752,0)
;
"RTN","SAMIUR2",753,0)
quit return ; end of ppi $$IFORM^SAMIUR2
"RTN","SAMIUR2",754,0)
;
"RTN","SAMIUR2",755,0)
;
"RTN","SAMIUR2",756,0)
;
"RTN","SAMIUR2",757,0)
LASTEXM(zdt,dfn,SAMIPATS) ; patient last exam
"RTN","SAMIUR2",758,0)
;
"RTN","SAMIUR2",759,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",760,0)
;@called-by
"RTN","SAMIUR2",761,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",762,0)
;@calls
"RTN","SAMIUR2",763,0)
; $$TDDT
"RTN","SAMIUR2",764,0)
;
"RTN","SAMIUR2",765,0)
new lexm set lexm=$get(SAMIPATS(zdt,dfn,"cedos"))
"RTN","SAMIUR2",766,0)
;
"RTN","SAMIUR2",767,0)
quit $$TDDT(lexm) ; end of ppi $$LASTEXM^SAMIUR2
"RTN","SAMIUR2",768,0)
;
"RTN","SAMIUR2",769,0)
;
"RTN","SAMIUR2",770,0)
;
"RTN","SAMIUR2",771,0)
INACTDT(zdt,dfn,SAMIPATS) ; inactive date
"RTN","SAMIUR2",772,0)
;
"RTN","SAMIUR2",773,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",774,0)
;@called-by
"RTN","SAMIUR2",775,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",776,0)
;@calls
"RTN","SAMIUR2",777,0)
; $$setroot^%wd
"RTN","SAMIUR2",778,0)
; $$TDDT
"RTN","SAMIUR2",779,0)
;
"RTN","SAMIUR2",780,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",781,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",782,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",783,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",784,0)
;
"RTN","SAMIUR2",785,0)
quit $$TDDT($get(@vals@("sidod")))
"RTN","SAMIUR2",786,0)
;
"RTN","SAMIUR2",787,0)
;
"RTN","SAMIUR2",788,0)
;
"RTN","SAMIUR2",789,0)
INACTRE(zdt,dfn,SAMIPATS) ; inactive date
"RTN","SAMIUR2",790,0)
;
"RTN","SAMIUR2",791,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",792,0)
;@called-by
"RTN","SAMIUR2",793,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",794,0)
;@calls
"RTN","SAMIUR2",795,0)
; $$setroot^%wd
"RTN","SAMIUR2",796,0)
;
"RTN","SAMIUR2",797,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",798,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",799,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",800,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",801,0)
;
"RTN","SAMIUR2",802,0)
quit $get(@vals@("sistachg"))
"RTN","SAMIUR2",803,0)
;
"RTN","SAMIUR2",804,0)
;
"RTN","SAMIUR2",805,0)
;
"RTN","SAMIUR2",806,0)
INACTCM(zdt,dfn,SAMIPATS) ; inactive date
"RTN","SAMIUR2",807,0)
;
"RTN","SAMIUR2",808,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",809,0)
;@called-by
"RTN","SAMIUR2",810,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",811,0)
;@calls
"RTN","SAMIUR2",812,0)
; $$setroot^%wd
"RTN","SAMIUR2",813,0)
;
"RTN","SAMIUR2",814,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",815,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",816,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",817,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",818,0)
;
"RTN","SAMIUR2",819,0)
quit $get(@vals@("sistreas"))
"RTN","SAMIUR2",820,0)
;
"RTN","SAMIUR2",821,0)
;
"RTN","SAMIUR2",822,0)
;
"RTN","SAMIUR2",823,0)
LDE(zdt,dfn,SAMIPATS) ; last date and entry in com log
"RTN","SAMIUR2",824,0)
;
"RTN","SAMIUR2",825,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",826,0)
;@called-by
"RTN","SAMIUR2",827,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",828,0)
;@calls
"RTN","SAMIUR2",829,0)
; $$setroot^%wd
"RTN","SAMIUR2",830,0)
;
"RTN","SAMIUR2",831,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",832,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",833,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",834,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",835,0)
;
"RTN","SAMIUR2",836,0)
n comien,comdt,comntry
"RTN","SAMIUR2",837,0)
s (comdt,comntry)=""
"RTN","SAMIUR2",838,0)
s comien=$o(@vals@("comlog"," "),-1)
"RTN","SAMIUR2",839,0)
i comien="" d q comdt
"RTN","SAMIUR2",840,0)
. s comdt=$g(@vals@("sidc"))
"RTN","SAMIUR2",841,0)
s comntry=$g(@vals@("comlog",comien))
"RTN","SAMIUR2",842,0)
s comdt=$p($p(comntry,"[",2),"@",1)
"RTN","SAMIUR2",843,0)
;
"RTN","SAMIUR2",844,0)
quit comdt_"^"_comntry
"RTN","SAMIUR2",845,0)
;
"RTN","SAMIUR2",846,0)
;
"RTN","SAMIUR2",847,0)
;
"RTN","SAMIUR2",848,0)
LDOC(zdt,dfn,SAMIPATS) ; last date of contact
"RTN","SAMIUR2",849,0)
;
"RTN","SAMIUR2",850,0)
quit $$TDDT($piece($$LDE(zdt,dfn,.SAMIPATS),"^",1))
"RTN","SAMIUR2",851,0)
;
"RTN","SAMIUR2",852,0)
;
"RTN","SAMIUR2",853,0)
;
"RTN","SAMIUR2",854,0)
LENTRY(zdt,dfn,SAMIPATS) ; last contact entry
"RTN","SAMIUR2",855,0)
;
"RTN","SAMIUR2",856,0)
quit $piece($$LDE(zdt,dfn,.SAMIPATS),"^",2)
"RTN","SAMIUR2",857,0)
;
"RTN","SAMIUR2",858,0)
;
"RTN","SAMIUR2",859,0)
;
"RTN","SAMIUR2",860,0)
MANPAT(ien,dfn,SAMIPATS) ; unmatched patient cell
"RTN","SAMIUR2",861,0)
;
"RTN","SAMIUR2",862,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",863,0)
;@called-by
"RTN","SAMIUR2",864,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",865,0)
;@calls
"RTN","SAMIUR2",866,0)
; $$setroot^%wd
"RTN","SAMIUR2",867,0)
;
"RTN","SAMIUR2",868,0)
new zcell set zcell=""
"RTN","SAMIUR2",869,0)
; set zcell=zcell_$get(SAMIPATS(ien,dfn,"saminame"))
"RTN","SAMIUR2",870,0)
set zcell=zcell_$get(SAMIPATS(ien,dfn,"editref"))
"RTN","SAMIUR2",871,0)
set zcell=zcell_"<br>Date of Birth: "_$get(SAMIPATS(ien,dfn,"dob"))
"RTN","SAMIUR2",872,0)
set zcell=zcell_" Gender: "_$get(SAMIPATS(ien,dfn,"sex"))
"RTN","SAMIUR2",873,0)
;
"RTN","SAMIUR2",874,0)
new ssn set ssn=$get(SAMIPATS(ien,dfn,"ssn"))
"RTN","SAMIUR2",875,0)
if ssn="" do ;
"RTN","SAMIUR2",876,0)
. new lroot set lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMIUR2",877,0)
. new tssn set tssn=$get(@lroot@(ien,"ssn"))
"RTN","SAMIUR2",878,0)
. set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9)
"RTN","SAMIUR2",879,0)
. quit
"RTN","SAMIUR2",880,0)
set zcell=zcell_"<br>SSN: "_ssn
"RTN","SAMIUR2",881,0)
;
"RTN","SAMIUR2",882,0)
set zcell=zcell_"<br>dfn: "_dfn
"RTN","SAMIUR2",883,0)
;
"RTN","SAMIUR2",884,0)
quit zcell ; end of ppi $$MANPAT^SAMIUR2
"RTN","SAMIUR2",885,0)
;
"RTN","SAMIUR2",886,0)
;
"RTN","SAMIUR2",887,0)
;
"RTN","SAMIUR2",888,0)
MATCH(ien,dfn,SAMIPATS) ; match button cell
"RTN","SAMIUR2",889,0)
;
"RTN","SAMIUR2",890,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",891,0)
;@called-by
"RTN","SAMIUR2",892,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",893,0)
;@calls none
"RTN","SAMIUR2",894,0)
;
"RTN","SAMIUR2",895,0)
new matien set matien=$get(SAMIPATS(ien,dfn,"MATCHLOG"))
"RTN","SAMIUR2",896,0)
quit:matien="" ""
"RTN","SAMIUR2",897,0)
;
"RTN","SAMIUR2",898,0)
new nuhref set nuhref="<form method=POST action=""/vapals"">"
"RTN","SAMIUR2",899,0)
set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""merge"">"
"RTN","SAMIUR2",900,0)
set nuhref=nuhref_"<input type=hidden name=""toien"" value="_ien_">"
"RTN","SAMIUR2",901,0)
set nuhref=nuhref_"<input value=""Merge"" class=""btn btn-link"" role=""link"" type=""submit""></form>"
"RTN","SAMIUR2",902,0)
;
"RTN","SAMIUR2",903,0)
quit nuhref ; end of ppi $$MATCH^SAMIUR2
"RTN","SAMIUR2",904,0)
;
"RTN","SAMIUR2",905,0)
;
"RTN","SAMIUR2",906,0)
;
"RTN","SAMIUR2",907,0)
NAME(zdt,dfn,SAMIPATS) ; name w/hyperlink
"RTN","SAMIUR2",908,0)
;
"RTN","SAMIUR2",909,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",910,0)
;@called-by
"RTN","SAMIUR2",911,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",912,0)
;@calls none
"RTN","SAMIUR2",913,0)
;
"RTN","SAMIUR2",914,0)
new nam set nam="Name"
"RTN","SAMIUR2",915,0)
;
"RTN","SAMIUR2",916,0)
quit $get(SAMIPATS(zdt,dfn,"nuhref")) ; end of ppi $$NAME^SAMIUR2
"RTN","SAMIUR2",917,0)
;
"RTN","SAMIUR2",918,0)
;
"RTN","SAMIUR2",919,0)
;
"RTN","SAMIUR2",920,0)
PACKYRS(zdt,dfn,SAMIPATS) ; smoking status
"RTN","SAMIUR2",921,0)
;
"RTN","SAMIUR2",922,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",923,0)
;@called-by
"RTN","SAMIUR2",924,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",925,0)
;@calls
"RTN","SAMIUR2",926,0)
; $$setroot^%wd
"RTN","SAMIUR2",927,0)
;
"RTN","SAMIUR2",928,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",929,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",930,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",931,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",932,0)
new pkyrs set pkyrs=$get(@vals@("sippy"))
"RTN","SAMIUR2",933,0)
;
"RTN","SAMIUR2",934,0)
quit pkyrs ; end of ppi $$PACKYRS^SAMIUR2
"RTN","SAMIUR2",935,0)
;
"RTN","SAMIUR2",936,0)
;
"RTN","SAMIUR2",937,0)
;
"RTN","SAMIUR2",938,0)
POSSIBLE(ien,dfn,SAMIPATS) ; possible match cell
"RTN","SAMIUR2",939,0)
;
"RTN","SAMIUR2",940,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",941,0)
;@called-by
"RTN","SAMIUR2",942,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",943,0)
;@calls
"RTN","SAMIUR2",944,0)
; $$setroot^%wd
"RTN","SAMIUR2",945,0)
;
"RTN","SAMIUR2",946,0)
new zcell set zcell=""
"RTN","SAMIUR2",947,0)
new matien set matien=$get(SAMIPATS(ien,dfn,"MATCHLOG"))
"RTN","SAMIUR2",948,0)
quit:matien="" zcell
"RTN","SAMIUR2",949,0)
;
"RTN","SAMIUR2",950,0)
new lroot set lroot=$$setroot^%wd("patient-lookup")
"RTN","SAMIUR2",951,0)
quit:'$data(@lroot@(matien)) zcell
"RTN","SAMIUR2",952,0)
;
"RTN","SAMIUR2",953,0)
set zcell=zcell_$get(@lroot@(matien,"saminame"))
"RTN","SAMIUR2",954,0)
set zcell=zcell_"<br>Date of Birth: "_$get(@lroot@(matien,"sbdob"))
"RTN","SAMIUR2",955,0)
set zcell=zcell_" Gender: "_$get(@lroot@(matien,"sex"))
"RTN","SAMIUR2",956,0)
;
"RTN","SAMIUR2",957,0)
new tssn set tssn=$get(@lroot@(matien,"ssn"))
"RTN","SAMIUR2",958,0)
new ssn set ssn=tssn
"RTN","SAMIUR2",959,0)
if tssn'["-" set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9)
"RTN","SAMIUR2",960,0)
set zcell=zcell_"<br>SSN: "_ssn
"RTN","SAMIUR2",961,0)
;
"RTN","SAMIUR2",962,0)
set zcell=zcell_"<br>dfn: "_$get(@lroot@(matien,"dfn"))
"RTN","SAMIUR2",963,0)
;
"RTN","SAMIUR2",964,0)
quit zcell ; end of ppi $$POSSIBLE^SAMIUR2
"RTN","SAMIUR2",965,0)
;
"RTN","SAMIUR2",966,0)
;
"RTN","SAMIUR2",967,0)
;
"RTN","SAMIUR2",968,0)
RECOM(zdt,dfn,SAMIPATS) ; recommendation
"RTN","SAMIUR2",969,0)
;
"RTN","SAMIUR2",970,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",971,0)
;@called-by
"RTN","SAMIUR2",972,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",973,0)
;@calls
"RTN","SAMIUR2",974,0)
; $$setroot^%wd
"RTN","SAMIUR2",975,0)
;
"RTN","SAMIUR2",976,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",977,0)
new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform"))
"RTN","SAMIUR2",978,0)
quit:ceform="" ""
"RTN","SAMIUR2",979,0)
;
"RTN","SAMIUR2",980,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",981,0)
new vals set vals=$name(@root@("graph",sid,ceform))
"RTN","SAMIUR2",982,0)
new cefuw set cefuw=$get(@vals@("cefuw"))
"RTN","SAMIUR2",983,0)
;
"RTN","SAMIUR2",984,0)
new recom set recom=""
"RTN","SAMIUR2",985,0)
set recom=$select(cefuw="1y":"Annual Repeat",cefuw="nw":"Now",cefuw="1m":"1 month",cefuw="3m":"3 months",cefuw="6m":"6 months",cefuw="os":"Other",1:"")
"RTN","SAMIUR2",986,0)
if $get(@vals@("cefuaf"))="y" set recom=recom_", Antibiotics"
"RTN","SAMIUR2",987,0)
if $get(@vals@("cefucc"))="y" set recom=recom_", Contrast CT"
"RTN","SAMIUR2",988,0)
if $get(@vals@("cefupe"))="y" set recom=recom_", PET"
"RTN","SAMIUR2",989,0)
if $get(@vals@("cefufn"))="y" set recom=recom_", Percutaneous biopsy"
"RTN","SAMIUR2",990,0)
if $get(@vals@("cefubr"))="y" set recom=recom_", Bronchoscopy"
"RTN","SAMIUR2",991,0)
if $get(@vals@("cefupc"))="y" set recom=recom_", Pulmonary consultation"
"RTN","SAMIUR2",992,0)
if $get(@vals@("cefutb"))="y" set recom=recom_", Refer to tumor board"
"RTN","SAMIUR2",993,0)
if $get(@vals@("cefunf"))="y" set recom=recom_", No other further follow-up"
"RTN","SAMIUR2",994,0)
if $extract(recom,1,2)=", " set recom=$extract(recom,3,$length(recom))
"RTN","SAMIUR2",995,0)
;
"RTN","SAMIUR2",996,0)
quit recom ; end of ppi $$RECOM^SAMIUR2
"RTN","SAMIUR2",997,0)
;
"RTN","SAMIUR2",998,0)
;
"RTN","SAMIUR2",999,0)
;
"RTN","SAMIUR2",1000,0)
RURAL(zdt,dfn,SAMIPATS) ; patient's rural/urban status
"RTN","SAMIUR2",1001,0)
;
"RTN","SAMIUR2",1002,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1003,0)
;@called-by
"RTN","SAMIUR2",1004,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1005,0)
;@calls
"RTN","SAMIUR2",1006,0)
; $$setroot^%wd
"RTN","SAMIUR2",1007,0)
;
"RTN","SAMIUR2",1008,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1009,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",1010,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",1011,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",1012,0)
new sirs set sirs=$get(@vals@("sirs"))
"RTN","SAMIUR2",1013,0)
set sirs=$select(sirs="r":"rural",sirs="u":"urban",sirs="n":"unknown",1:"unknown")
"RTN","SAMIUR2",1014,0)
;
"RTN","SAMIUR2",1015,0)
quit sirs ; end of ppi $$RURAL^SAMIUR2
"RTN","SAMIUR2",1016,0)
;
"RTN","SAMIUR2",1017,0)
;
"RTN","SAMIUR2",1018,0)
;
"RTN","SAMIUR2",1019,0)
SID(zdt,dfn,SAMIPATS) ; study ID
"RTN","SAMIUR2",1020,0)
;
"RTN","SAMIUR2",1021,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1022,0)
;@called-by
"RTN","SAMIUR2",1023,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1024,0)
;@calls
"RTN","SAMIUR2",1025,0)
; $$DFN2SID
"RTN","SAMIUR2",1026,0)
;
"RTN","SAMIUR2",1027,0)
quit $$DFN2SID(dfn) ; end of ppi $$SID^SAMIUR2
"RTN","SAMIUR2",1028,0)
;
"RTN","SAMIUR2",1029,0)
;
"RTN","SAMIUR2",1030,0)
;
"RTN","SAMIUR2",1031,0)
SMHIS(zdt,dfn,SAMIPATS) ; smoking history cell
"RTN","SAMIUR2",1032,0)
;
"RTN","SAMIUR2",1033,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1034,0)
;@called-by
"RTN","SAMIUR2",1035,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1036,0)
;@calls
"RTN","SAMIUR2",1037,0)
; $$DFN2SID
"RTN","SAMIUR2",1038,0)
; $$SHDET
"RTN","SAMIUR2",1039,0)
;
"RTN","SAMIUR2",1040,0)
new zrtn set zrtn=""
"RTN","SAMIUR2",1041,0)
set zrtn=zrtn_"<div class=""row""><div class=""col-md-12""><table class=""table"" id=""pack-years-history"">"
"RTN","SAMIUR2",1042,0)
set zrtn=zrtn_"<thead><tr><th>Form </th><th> Reported Date </th>"
"RTN","SAMIUR2",1043,0)
set zrtn=zrtn_"<th>Pack Years</th><th>Cumulative</th></tr></thead><tbody>"
"RTN","SAMIUR2",1044,0)
set zrtn=zrtn_$$SHDET($$DFN2SID(dfn))
"RTN","SAMIUR2",1045,0)
set zrtn=zrtn_"</tbody></table></div></div>"
"RTN","SAMIUR2",1046,0)
;
"RTN","SAMIUR2",1047,0)
quit zrtn ; end of ppi $$SMHIS^SAMIUR2
"RTN","SAMIUR2",1048,0)
;
"RTN","SAMIUR2",1049,0)
;
"RTN","SAMIUR2",1050,0)
;
"RTN","SAMIUR2",1051,0)
SMKSTAT(zdt,dfn,SAMIPATS) ; smoking status
"RTN","SAMIUR2",1052,0)
;
"RTN","SAMIUR2",1053,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1054,0)
;@called-by
"RTN","SAMIUR2",1055,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1056,0)
;@calls
"RTN","SAMIUR2",1057,0)
; $$setroot^%wd
"RTN","SAMIUR2",1058,0)
;
"RTN","SAMIUR2",1059,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1060,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",1061,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",1062,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",1063,0)
;
"RTN","SAMIUR2",1064,0)
new smk set smk="unknown"
"RTN","SAMIUR2",1065,0)
if $get(@vals@("siesm"))="n" set smk="Never smoked"
"RTN","SAMIUR2",1066,0)
if $get(@vals@("siesm"))="p" set smk="Past smoker"
"RTN","SAMIUR2",1067,0)
if $get(@vals@("siesm"))="c" set smk="Current smoker"
"RTN","SAMIUR2",1068,0)
; if $get(@vals@("siesq"))=1 set smk="Cu"
"RTN","SAMIUR2",1069,0)
;
"RTN","SAMIUR2",1070,0)
quit smk ; end of ppi $$SMKSTAT^SAMIUR2
"RTN","SAMIUR2",1071,0)
;
"RTN","SAMIUR2",1072,0)
;
"RTN","SAMIUR2",1073,0)
;
"RTN","SAMIUR2",1074,0)
SSN(zdt,dfn,SAMIPATS) ; social security number
"RTN","SAMIUR2",1075,0)
;
"RTN","SAMIUR2",1076,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1077,0)
;@called-by
"RTN","SAMIUR2",1078,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1079,0)
;@calls none
"RTN","SAMIUR2",1080,0)
;
"RTN","SAMIUR2",1081,0)
new tssn set tssn=$get(SAMIPATS(zdt,dfn,"ssn"))
"RTN","SAMIUR2",1082,0)
new ssn set ssn=tssn
"RTN","SAMIUR2",1083,0)
if ssn'["-" do
"RTN","SAMIUR2",1084,0)
. set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9)
"RTN","SAMIUR2",1085,0)
. quit
"RTN","SAMIUR2",1086,0)
;
"RTN","SAMIUR2",1087,0)
quit ssn ; end of ppi $$SSN^SAMIUR2
"RTN","SAMIUR2",1088,0)
;
"RTN","SAMIUR2",1089,0)
;
"RTN","SAMIUR2",1090,0)
;
"RTN","SAMIUR2",1091,0)
SSNLABEL(SITE) ; extrinsic returns label for SSN (ie PID)
"RTN","SAMIUR2",1092,0)
new RTN
"RTN","SAMIUR2",1093,0)
set RTN=$$GET1PARM^SAMIPARM("socialSecurityNumber",SITE)
"RTN","SAMIUR2",1094,0)
if RTN="" set RTN="SSN"
"RTN","SAMIUR2",1095,0)
quit RTN
"RTN","SAMIUR2",1096,0)
;
"RTN","SAMIUR2",1097,0)
;
"RTN","SAMIUR2",1098,0)
;
"RTN","SAMIUR2",1099,0)
STUDYDT(zdt,dfn,SAMIPATS) ; latest study date
"RTN","SAMIUR2",1100,0)
;
"RTN","SAMIUR2",1101,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1102,0)
;@called-by
"RTN","SAMIUR2",1103,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1104,0)
;@calls
"RTN","SAMIUR2",1105,0)
; $$TDDT
"RTN","SAMIUR2",1106,0)
;
"RTN","SAMIUR2",1107,0)
new stdt set stdt=$get(SAMIPATS(zdt,dfn,"cedos"))
"RTN","SAMIUR2",1108,0)
;
"RTN","SAMIUR2",1109,0)
quit $$TDDT(stdt) ; end of ppi $$STUDYDT^SAMIUR2
"RTN","SAMIUR2",1110,0)
;
"RTN","SAMIUR2",1111,0)
;
"RTN","SAMIUR2",1112,0)
;
"RTN","SAMIUR2",1113,0)
STUDYTYP(zdt,dfn,SAMIPATS) ; latest study type
"RTN","SAMIUR2",1114,0)
;
"RTN","SAMIUR2",1115,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1116,0)
;@called-by
"RTN","SAMIUR2",1117,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1118,0)
;@calls
"RTN","SAMIUR2",1119,0)
; $$setroot^%wd
"RTN","SAMIUR2",1120,0)
;
"RTN","SAMIUR2",1121,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1122,0)
new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform"))
"RTN","SAMIUR2",1123,0)
quit:ceform="" ""
"RTN","SAMIUR2",1124,0)
;
"RTN","SAMIUR2",1125,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",1126,0)
new vals set vals=$name(@root@("graph",sid,ceform))
"RTN","SAMIUR2",1127,0)
new stypx set stypx=$get(@vals@("cetex"))
"RTN","SAMIUR2",1128,0)
new styp set styp=$select(stypx="a":"Annual",stypx="b":"Baseline",stypx="d":"Followup",1:"")
"RTN","SAMIUR2",1129,0)
;
"RTN","SAMIUR2",1130,0)
quit styp ; end of ppi $$STUDYTYP^SAMIUR2
"RTN","SAMIUR2",1131,0)
;
"RTN","SAMIUR2",1132,0)
;
"RTN","SAMIUR2",1133,0)
;
"RTN","SAMIUR2",1134,0)
VALS(zdt,dfn,SAMIPATS) ; form-values cell
"RTN","SAMIUR2",1135,0)
;
"RTN","SAMIUR2",1136,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1137,0)
;@called-by
"RTN","SAMIUR2",1138,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1139,0)
;@calls
"RTN","SAMIUR2",1140,0)
; $$DFN2SID
"RTN","SAMIUR2",1141,0)
;
"RTN","SAMIUR2",1142,0)
new vrtn set vrtn=""
"RTN","SAMIUR2",1143,0)
new vsid set vsid=$$DFN2SID(dfn)
"RTN","SAMIUR2",1144,0)
new vgr set vgr="/vals?sid="_vsid_"&form="
"RTN","SAMIUR2",1145,0)
quit:'$data(SAMIPATS)
"RTN","SAMIUR2",1146,0)
;
"RTN","SAMIUR2",1147,0)
new vzi set vzi=""
"RTN","SAMIUR2",1148,0)
for do quit:vzi="sort" quit:vzi=""
"RTN","SAMIUR2",1149,0)
. set vzi=$order(SAMIPATS(zdt,dfn,"items",vzi))
"RTN","SAMIUR2",1150,0)
. quit:vzi="sort"
"RTN","SAMIUR2",1151,0)
. quit:vzi=""
"RTN","SAMIUR2",1152,0)
. set vrtn=vrtn_"<a href="""_vgr_vzi_""">"_vzi_"</a><br>"
"RTN","SAMIUR2",1153,0)
. quit
"RTN","SAMIUR2",1154,0)
;
"RTN","SAMIUR2",1155,0)
quit vrtn ; end of $$VALS^SAMIUR2
"RTN","SAMIUR2",1156,0)
;
"RTN","SAMIUR2",1157,0)
;
"RTN","SAMIUR2",1158,0)
;
"RTN","SAMIUR2",1159,0)
WHEN(zdt,dfn,SAMIPATS) ; followup text
"RTN","SAMIUR2",1160,0)
;
"RTN","SAMIUR2",1161,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1162,0)
;@called-by
"RTN","SAMIUR2",1163,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1164,0)
;@calls
"RTN","SAMIUR2",1165,0)
; $$setroot^%wd
"RTN","SAMIUR2",1166,0)
;
"RTN","SAMIUR2",1167,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1168,0)
new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform"))
"RTN","SAMIUR2",1169,0)
quit:ceform="" ""
"RTN","SAMIUR2",1170,0)
;
"RTN","SAMIUR2",1171,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",1172,0)
new vals set vals=$name(@root@("graph",sid,ceform))
"RTN","SAMIUR2",1173,0)
new whnx set whnx=$get(@vals@("cefuw"))
"RTN","SAMIUR2",1174,0)
quit:whnx="" ""
"RTN","SAMIUR2",1175,0)
;
"RTN","SAMIUR2",1176,0)
new DICT
"RTN","SAMIUR2",1177,0)
set DICT("cefuw","1m")="in one month"
"RTN","SAMIUR2",1178,0)
set DICT("cefuw","1y")="in one year"
"RTN","SAMIUR2",1179,0)
set DICT("cefuw","3m")="in three months"
"RTN","SAMIUR2",1180,0)
set DICT("cefuw","6m")="in six months"
"RTN","SAMIUR2",1181,0)
set DICT("cefuw","os")="other as specified"
"RTN","SAMIUR2",1182,0)
set whn=$get(DICT("cefuw",whnx))
"RTN","SAMIUR2",1183,0)
;
"RTN","SAMIUR2",1184,0)
quit whn ; end of ppi $$WHEN^SAMIUR2
"RTN","SAMIUR2",1185,0)
;
"RTN","SAMIUR2",1186,0)
;
"RTN","SAMIUR2",1187,0)
;
"RTN","SAMIUR2",1188,0)
WORKPAT(ien,dfn,SAMIPATS) ; worklist patient name cell
"RTN","SAMIUR2",1189,0)
;
"RTN","SAMIUR2",1190,0)
;;ppi;function;clean;silent;sac
"RTN","SAMIUR2",1191,0)
;@called-by
"RTN","SAMIUR2",1192,0)
; WSREPORT^SAMIUR
"RTN","SAMIUR2",1193,0)
;@calls none
"RTN","SAMIUR2",1194,0)
;
"RTN","SAMIUR2",1195,0)
new zcell set zcell=""
"RTN","SAMIUR2",1196,0)
set zcell=zcell_$get(SAMIPATS(ien,dfn,"workref"))
"RTN","SAMIUR2",1197,0)
;
"RTN","SAMIUR2",1198,0)
quit zcell ; end of ppi $$WORKPAT^SAMIUR2
"RTN","SAMIUR2",1199,0)
;
"RTN","SAMIUR2",1200,0)
;
"RTN","SAMIUR2",1201,0)
;
"RTN","SAMIUR2",1202,0)
;@section 5 unused subroutines
"RTN","SAMIUR2",1203,0)
;
"RTN","SAMIUR2",1204,0)
;
"RTN","SAMIUR2",1205,0)
;
"RTN","SAMIUR2",1206,0)
EPAT(ien,dfn,SAMIPATS) ; patient name w/nav to enrollment
"RTN","SAMIUR2",1207,0)
;
"RTN","SAMIUR2",1208,0)
;;private;procedure;clean;silent;sac
"RTN","SAMIUR2",1209,0)
;@called-by none
"RTN","SAMIUR2",1210,0)
;@calls none
"RTN","SAMIUR2",1211,0)
;
"RTN","SAMIUR2",1212,0)
quit ; end of $$EPAT
"RTN","SAMIUR2",1213,0)
;
"RTN","SAMIUR2",1214,0)
;
"RTN","SAMIUR2",1215,0)
;
"RTN","SAMIUR2",1216,0)
ETHNCTY(zdt,dfn,SAMIPATS) ; ethnicity
"RTN","SAMIUR2",1217,0)
;
"RTN","SAMIUR2",1218,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",1219,0)
;@called-by none
"RTN","SAMIUR2",1220,0)
;@calls none
"RTN","SAMIUR2",1221,0)
;
"RTN","SAMIUR2",1222,0)
quit "ethnicity" ; end of $$ETHNCTY
"RTN","SAMIUR2",1223,0)
;
"RTN","SAMIUR2",1224,0)
;
"RTN","SAMIUR2",1225,0)
;
"RTN","SAMIUR2",1226,0)
RACE(zdt,dfn,SAMIPATS) ; race
"RTN","SAMIUR2",1227,0)
;
"RTN","SAMIUR2",1228,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",1229,0)
;@called-by none [call commented out in RPTTBL]
"RTN","SAMIUR2",1230,0)
;@calls
"RTN","SAMIUR2",1231,0)
; $$setroot^%wd
"RTN","SAMIUR2",1232,0)
;
"RTN","SAMIUR2",1233,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1234,0)
new race set race=$get(@root@(dfn,"race"))
"RTN","SAMIUR2",1235,0)
;
"RTN","SAMIUR2",1236,0)
quit race ; end of $$RACE
"RTN","SAMIUR2",1237,0)
;
"RTN","SAMIUR2",1238,0)
;
"RTN","SAMIUR2",1239,0)
;
"RTN","SAMIUR2",1240,0)
STATUS(zdt,dfn,SAMIPATS) ; patient status
"RTN","SAMIUR2",1241,0)
;
"RTN","SAMIUR2",1242,0)
;;private;function;clean;silent;sac
"RTN","SAMIUR2",1243,0)
;@called-by none
"RTN","SAMIUR2",1244,0)
;@calls
"RTN","SAMIUR2",1245,0)
; $$setroot^%wd
"RTN","SAMIUR2",1246,0)
;
"RTN","SAMIUR2",1247,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1248,0)
new sid set sid=$get(@root@(dfn,"samistudyid"))
"RTN","SAMIUR2",1249,0)
new siform set siform=$get(SAMIPATS(zdt,dfn,"siform"))
"RTN","SAMIUR2",1250,0)
new vals set vals=$name(@root@("graph",sid,siform))
"RTN","SAMIUR2",1251,0)
new stat set stat=$get(@vals@("sistatus"))
"RTN","SAMIUR2",1252,0)
;
"RTN","SAMIUR2",1253,0)
quit stat ; end of $$STATUS
"RTN","SAMIUR2",1254,0)
;
"RTN","SAMIUR2",1255,0)
;
"RTN","SAMIUR2",1256,0)
;
"RTN","SAMIUR2",1257,0)
WSVALS(RTN,FILTER) ; display form values from graph
"RTN","SAMIUR2",1258,0)
;
"RTN","SAMIUR2",1259,0)
;;web service;procedure;clean;silent;sac
"RTN","SAMIUR2",1260,0)
;@called-by none
"RTN","SAMIUR2",1261,0)
;@calls
"RTN","SAMIUR2",1262,0)
; $$setroot^%wd
"RTN","SAMIUR2",1263,0)
; wsGtree^SYNVPR
"RTN","SAMIUR2",1264,0)
;
"RTN","SAMIUR2",1265,0)
new root set root=$$setroot^%wd("vapals-patients")
"RTN","SAMIUR2",1266,0)
new sid set sid=$get(FILTER("sid"))
"RTN","SAMIUR2",1267,0)
if sid="" set sid=$get(FILTER("studyid"))
"RTN","SAMIUR2",1268,0)
quit:sid=""
"RTN","SAMIUR2",1269,0)
;
"RTN","SAMIUR2",1270,0)
new zform set zform=$get(FILTER("form"))
"RTN","SAMIUR2",1271,0)
new groot
"RTN","SAMIUR2",1272,0)
if zform="" set groot=$name(@root@("graph",sid))
"RTN","SAMIUR2",1273,0)
else set groot=$name(@root@("graph",sid,zform))
"RTN","SAMIUR2",1274,0)
set FILTER("root")=$extract(groot,2,$length(groot))
"RTN","SAMIUR2",1275,0)
;
"RTN","SAMIUR2",1276,0)
do wsGtree^SYNVPR(.RTN,.FILTER)
"RTN","SAMIUR2",1277,0)
;
"RTN","SAMIUR2",1278,0)
quit ; end of ws WSVALS^SAMIUR2
"RTN","SAMIUR2",1279,0)
;
"RTN","SAMIUR2",1280,0)
;
"RTN","SAMIUR2",1281,0)
;
"RTN","SAMIUR2",1282,0)
EOR ; end of routine SAMIUR2
"RTN","SAMIURUL")
0^3^B103339
"RTN","SAMIURUL",1,0)
SAMIURUL ;ven/gpl - user reports log ;2021-10-05T23:35Z
"RTN","SAMIURUL",2,0)
;;18.0;SAMI;**12,14**;2020-01;Build 7
"RTN","SAMIURUL",3,0)
;;18.14
"RTN","SAMIURUL",4,0)
;
"RTN","SAMIURUL",5,0)
; SAMIURUL contains the development log & module documentation for
"RTN","SAMIURUL",6,0)
; the VAPALS-ELCAP user-reports routines SAMIUR & SAMIUR2.
"RTN","SAMIURUL",7,0)
;
"RTN","SAMIURUL",8,0)
quit ; no entry from top
"RTN","SAMIURUL",9,0)
;
"RTN","SAMIURUL",10,0)
;
"RTN","SAMIURUL",11,0)
;
"RTN","SAMIURUL",12,0)
;@section 0 primary development
"RTN","SAMIURUL",13,0)
;
"RTN","SAMIURUL",14,0)
;
"RTN","SAMIURUL",15,0)
;
"RTN","SAMIURUL",16,0)
;@routine-credits
"RTN","SAMIURUL",17,0)
;@dev-main Frederick D. S. Marshall (toad)
"RTN","SAMIURUL",18,0)
; toad@vistaexpertise.net
"RTN","SAMIURUL",19,0)
;@dev-org-main Vista Expertise Network (ven)
"RTN","SAMIURUL",20,0)
; http://vistaexpertise.net
"RTN","SAMIURUL",21,0)
;@copyright 2021, mcglk & toad, all rights reserved
"RTN","SAMIURUL",22,0)
;@license see routine SAMIUL
"RTN","SAMIURUL",23,0)
;
"RTN","SAMIURUL",24,0)
;@last-update 2021-10-05T23:35Z
"RTN","SAMIURUL",25,0)
;@application Screening Applications Management (SAM)
"RTN","SAMIURUL",26,0)
;@module Screening Applications Management - IELCAP (SAMI)
"RTN","SAMIURUL",27,0)
;@suite-of-files SAMI Forms (311.101-311.199)
"RTN","SAMIURUL",28,0)
;@version 18.14
"RTN","SAMIURUL",29,0)
;@release-date 2020-01
"RTN","SAMIURUL",30,0)
;@patch-list **12,14**
"RTN","SAMIURUL",31,0)
;
"RTN","SAMIURUL",32,0)
;@dev-add Kenneth McGlothlen (mcglk)
"RTN","SAMIURUL",33,0)
; mcglk@vistaexpertise.net
"RTN","SAMIURUL",34,0)
;@dev-add Linda M. R. Yaw (lmry)
"RTN","SAMIURUL",35,0)
; lmry@vistaexpertise.net
"RTN","SAMIURUL",36,0)
;
"RTN","SAMIURUL",37,0)
;@module-credits
"RTN","SAMIURUL",38,0)
;@project VA Partnership to Increase Access to Lung Screening
"RTN","SAMIURUL",39,0)
; (VA-PALS)
"RTN","SAMIURUL",40,0)
; http://va-pals.org/
"RTN","SAMIURUL",41,0)
;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf)
"RTN","SAMIURUL",42,0)
; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html
"RTN","SAMIURUL",43,0)
;@partner-org Veterans Affairs Office of Rural health
"RTN","SAMIURUL",44,0)
; https://www.ruralhealth.va.gov/
"RTN","SAMIURUL",45,0)
;@partner-org International Early Lung Cancer Action Program (I-ELCAP)
"RTN","SAMIURUL",46,0)
; http://ielcap.com/
"RTN","SAMIURUL",47,0)
;@partner-org Paraxial Technologies (par)
"RTN","SAMIURUL",48,0)
; http://paraxialtech.com/
"RTN","SAMIURUL",49,0)
;@partner-org Open Source Electronic Health Record Alliance (OSEHRA)
"RTN","SAMIURUL",50,0)
; https://www.osehra.org/groups/va-pals-open-source-project-group
"RTN","SAMIURUL",51,0)
;
"RTN","SAMIURUL",52,0)
;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git
"RTN","SAMIURUL",53,0)
;
"RTN","SAMIURUL",54,0)
; 2020-02-10/12 ven/gpl 18.0-t4 d543f7bb,f9869dfb,0e4d8b9a,5e67489f
"RTN","SAMIURUL",55,0)
; SAMIUR,SAMIUR2 1st version of revised user reports, progress on
"RTN","SAMIURUL",56,0)
; user reports, fixed a bug in enrollment report, add rural/urban &
"RTN","SAMIURUL",57,0)
; compute.
"RTN","SAMIURUL",58,0)
;
"RTN","SAMIURUL",59,0)
; 2020-02-18 ven/lgc 18.0-t4 76874314
"RTN","SAMIURUL",60,0)
; SAMIUR update recently edited routines.
"RTN","SAMIURUL",61,0)
;
"RTN","SAMIURUL",62,0)
; 2020-03-10/12 ven/gpl 18.0-t4 8de06b06,4ad52d64
"RTN","SAMIURUL",63,0)
; SAMIUR user report date filtering, fix end date logic in UR.
"RTN","SAMIURUL",64,0)
;
"RTN","SAMIURUL",65,0)
; 2019-03-24/28 ven/gpl 18.0-t4 1fd4a4c8,0cebb36b
"RTN","SAMIURUL",66,0)
; SAMIUR2 revise incomplete form report, remove ethnicity from
"RTN","SAMIURUL",67,0)
; enrollment report (we can't get it).
"RTN","SAMIURUL",68,0)
;
"RTN","SAMIURUL",69,0)
; 2020-04-16/23 ven/lgc 18.0-t4 e54b76d1b,89bffd3b
"RTN","SAMIURUL",70,0)
; SAMIUR SAMIFRM2 > SAMIFORM, SAMISUB2 > LOAD.
"RTN","SAMIURUL",71,0)
;
"RTN","SAMIURUL",72,0)
; 2019-05-08 ven/lgc 18.0 2172e512
"RTN","SAMIURUL",73,0)
; SAMIUR2 remove blank last line.
"RTN","SAMIURUL",74,0)
;
"RTN","SAMIURUL",75,0)
; 2019-06-21 par/dom 18.0 c6a4a57f VAP-352
"RTN","SAMIURUL",76,0)
; SAMIUR2 proper spelling of "follow up."
"RTN","SAMIURUL",77,0)
;
"RTN","SAMIURUL",78,0)
; 2019-08-03/04 ven/gpl 18.0 ffc94f65,d03557d4,cd865e2b VPA-438
"RTN","SAMIURUL",79,0)
; SAMIUR requested changes to followup report.
"RTN","SAMIURUL",80,0)
; SAMIUR2 fix smoking status on enrollment report, fix change log
"RTN","SAMIURUL",81,0)
; display, add pack years at intake to enrollment report, add
"RTN","SAMIURUL",82,0)
; requested changes to followup report.
"RTN","SAMIURUL",83,0)
;
"RTN","SAMIURUL",84,0)
; 2019-09-26 ven/gpl 18.0 92b12324 VAP-420
"RTN","SAMIURUL",85,0)
; SAMIUR add smoking history.
"RTN","SAMIURUL",86,0)
; SAMIUR2 smoking history, new cummulative packyear processing.
"RTN","SAMIURUL",87,0)
;
"RTN","SAMIURUL",88,0)
; 2019-10-01 par/dom 18.0 4caf1a98 VAP-344
"RTN","SAMIURUL",89,0)
; SAMIUR2 make capitalization consistent.
"RTN","SAMIURUL",90,0)
;
"RTN","SAMIURUL",91,0)
; 2020-01-01/05 ven/arc 18.0 399f8547,62e3200f
"RTN","SAMIURUL",92,0)
; SAMIUR unmatched participant processing.
"RTN","SAMIURUL",93,0)
; SAMIUR2 add unmatched patient processing.
"RTN","SAMIURUL",94,0)
;
"RTN","SAMIURUL",95,0)
; 2020-01-10 ven/gpl 18.0 1590577c
"RTN","SAMIURUL",96,0)
; SAMIUR2 fix return on RACE^SAMIUR2 for cache.
"RTN","SAMIURUL",97,0)
;
"RTN","SAMIURUL",98,0)
; 2020-04-29/05-13 ven/gpl 18.5 e8b8ea2d,61c7d208
"RTN","SAMIURUL",99,0)
; SAMIUR fixes for reports, worklist functionality.
"RTN","SAMIURUL",100,0)
;
"RTN","SAMIURUL",101,0)
; 2020-05-13/14 ven/gpl 18.5 61c7d208,b05df417
"RTN","SAMIURUL",102,0)
; SAMIUR2 add worklist functionality, fix gender & dob detection on
"RTN","SAMIURUL",103,0)
; reports.
"RTN","SAMIURUL",104,0)
;
"RTN","SAMIURUL",105,0)
; 2021-03-22/23 ven/gpl 18.10 256efe63,ba81b86a
"RTN","SAMIURUL",106,0)
; SAMIUR sort all reports by name, added row totals to reports.
"RTN","SAMIURUL",107,0)
;
"RTN","SAMIURUL",108,0)
; 2021-03-23 ven/toad 18.10 96f461d0,af86e0eb
"RTN","SAMIURUL",109,0)
; SAMIUR add version info & dev log, lt refactor, fix XINDEX
"RTN","SAMIURUL",110,0)
; errors.
"RTN","SAMIURUL",111,0)
;
"RTN","SAMIURUL",112,0)
; 2021-03-29 ven/gpl 18.11 e809f2a2
"RTN","SAMIURUL",113,0)
; SAMIUR prevent crash when reports have no matches: in WSREPORT
"RTN","SAMIURUL",114,0)
; set SRT="" and uncomment zwrite SRT; in WKLIST add 2 commented-out
"RTN","SAMIURUL",115,0)
; debugging lines.
"RTN","SAMIURUL",116,0)
;
"RTN","SAMIURUL",117,0)
; 2021-03-30 ven/toad 18.11 7b14bb29
"RTN","SAMIURUL",118,0)
; SAMIUR bump version, date, log; in WSREPORT comment zwrite SRT.
"RTN","SAMIURUL",119,0)
;
"RTN","SAMIURUL",120,0)
; 2021-03-31 ven/gpl 18.11 66d89cde
"RTN","SAMIURUL",121,0)
; SAMIUR sort on all uppercase names for reports
"RTN","SAMIURUL",122,0)
;
"RTN","SAMIURUL",123,0)
; 2021-04-13 ven/gpl 18.11 a12765bf,f09ffef9,fb399aba
"RTN","SAMIURUL",124,0)
; SAMIUR inactive report created.
"RTN","SAMIURUL",125,0)
; SAMIUR2 in RPTTBL,GENDER create inactive report, move last exam
"RTN","SAMIURUL",126,0)
; column on followup report, fix gender being blank in reports.
"RTN","SAMIURUL",127,0)
;
"RTN","SAMIURUL",128,0)
; 2021-05-20/25 ven/mcglk&toad 18.11 43a4557c,70fc6ba3,129e96b1,
"RTN","SAMIURUL",129,0)
; cee2bf17
"RTN","SAMIURUL",130,0)
; SAMIUR annotate, lt refactor, bump version.
"RTN","SAMIURUL",131,0)
; SAMIUR2 passim hdr comments, chg log, annotate, refactor, bump
"RTN","SAMIURUL",132,0)
; version.
"RTN","SAMIURUL",133,0)
;
"RTN","SAMIURUL",134,0)
; 2021-05-29 ven/gpl 18.12-t2 e6fd5730,a3d6f9a0
"RTN","SAMIURUL",135,0)
; SAMIUR,SAMIUR2 ssn params & matching report, update unmatched
"RTN","SAMIURUL",136,0)
; report headings.
"RTN","SAMIURUL",137,0)
;
"RTN","SAMIURUL",138,0)
; 2021-06-15 ven/gpl 18.12-t2 7e481426
"RTN","SAMIURUL",139,0)
; SAMIUR add site to editperson navigation.
"RTN","SAMIURUL",140,0)
;
"RTN","SAMIURUL",141,0)
; 2021-06-28 ven/gpl 18.12-t2 df0aaea1,1137e2bb
"RTN","SAMIURUL",142,0)
; SAMIUR change definition of inactive to not marked active, change
"RTN","SAMIURUL",143,0)
; definition of active to marked active.
"RTN","SAMIURUL",144,0)
;
"RTN","SAMIURUL",145,0)
; 2021-07-06 ven/mcglk&toad&gpl 18.12-t2 cbf7e46b,2d642aa4,
"RTN","SAMIURUL",146,0)
; b248664b
"RTN","SAMIURUL",147,0)
; SAMIURUL new routine for dev log.
"RTN","SAMIURUL",148,0)
; SAMIUR,SAMIUR2,SAMIURUL move dev log & module docs to SAMIURUL,
"RTN","SAMIURUL",149,0)
; bump version & dates.
"RTN","SAMIURUL",150,0)
; SAMIUR in SELECT r/inactive w/status, test for active instead of
"RTN","SAMIURUL",151,0)
; inactive.
"RTN","SAMIURUL",152,0)
;
"RTN","SAMIURUL",153,0)
; 2021-07-12 ven/gpl 18.12-t3 60f4bb05,27c40485,d35bcb46
"RTN","SAMIURUL",154,0)
; SAMIUR in WSREPORT,SORT add contact date & entry to missingct
"RTN","SAMIURUL",155,0)
; report.
"RTN","SAMIURUL",156,0)
; SAMIUR2 add contact date & entry to missingct report; add
"RTN","SAMIURUL",157,0)
; inactive date reason & comment to inactive report; chg inactive
"RTN","SAMIURUL",158,0)
; date to date of death.
"RTN","SAMIURUL",159,0)
;
"RTN","SAMIURUL",160,0)
; 2021-08-01 ven/gpl 18.12 5bd7c627
"RTN","SAMIURUL",161,0)
; SAMIUR set intake form to incomplete on creation: in SELECT if
"RTN","SAMIURUL",162,0)
; type="incomplete" ensure default status is incomplete.
"RTN","SAMIURUL",163,0)
;
"RTN","SAMIURUL",164,0)
; 2021-08-11 ven/gpl 18.12 4d4f0fc3
"RTN","SAMIURUL",165,0)
; SAMIUR,SAMIUR2 add sorting to tables used for reports
"RTN","SAMIURUL",166,0)
; SAMIUR in WSREPORT,NUHREF,WKLIST.
"RTN","SAMIURUL",167,0)
; SAMIUR2 in TDDT,BLINEDT,DOB,FUDATE,LASTEXM,INACTDT,LDOC,STUDYDT
"RTN","SAMIURUL",168,0)
;
"RTN","SAMIURUL",169,0)
; 2021-08-26 ven/gpl 18.14 de044cf9
"RTN","SAMIURUL",170,0)
; SAMIUR, SAMIUR2 make changes to user reports as requested.
"RTN","SAMIURUL",171,0)
; Reports changed were Enrollment, Activity, and Follow-up.
"RTN","SAMIURUL",172,0)
;
"RTN","SAMIURUL",173,0)
; 2021-08-28 ven/gpl 18.14 cd69ff8b, fbd9196d
"RTN","SAMIURUL",174,0)
; SAMIUR, SAMIUR2 fix bugs causing Activity report to work incorrectly.
"RTN","SAMIURUL",175,0)
; Also fixed problem with Work List.
"RTN","SAMIURUL",176,0)
;
"RTN","SAMIURUL",177,0)
; 2021-09-09 ven/gpl 18.14 afa4bfc2, 7f668e64, 8d45ebac
"RTN","SAMIURUL",178,0)
; SAMIUR fix bugs in reports showing inactive patients on wrong reports,
"RTN","SAMIURUL",179,0)
; "baseline" showing up in F/U date on Follow-up report, wrong patients
"RTN","SAMIURUL",180,0)
; on Intake but Missing CT Eval report.
"RTN","SAMIURUL",181,0)
;
"RTN","SAMIURUL",182,0)
; 2021-10-05 ven/gpl 18.14 3251c582, c4343d69, 368fa7f7, c4343d69
"RTN","SAMIURUL",183,0)
; b3cd039b, 237109df, 368fa7f7
"RTN","SAMIURUL",184,0)
; SAMIIUR, SAMIUR2 fix some small bugs, make date formats consistent, bump
"RTN","SAMIURUL",185,0)
; versions and dates.
"RTN","SAMIURUL",186,0)
;
"RTN","SAMIURUL",187,0)
;
"RTN","SAMIURUL",188,0)
;@contents
"RTN","SAMIURUL",189,0)
; SAMIUR user reports
"RTN","SAMIURUL",190,0)
; SAMIUR2 user reports cont
"RTN","SAMIURUL",191,0)
; SAMIURUL user reports log
"RTN","SAMIURUL",192,0)
;
"RTN","SAMIURUL",193,0)
; SAMIUR1 [to be added]
"RTN","SAMIURUL",194,0)
;
"RTN","SAMIURUL",195,0)
;
"RTN","SAMIURUL",196,0)
;
"RTN","SAMIURUL",197,0)
EOR ; end of SAMIURUL
"VER")
8.0^22.2
**END**
**END**
| Genshi | 5 | OSEHRA/SAMI-VAPALS-ELCAP | dist/18-14/t3/sami-18-14-t3.kid | [
"Apache-2.0"
] |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { Disposable } from 'vs/base/common/lifecycle';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { MainThreadCustomEditors } from 'vs/workbench/api/browser/mainThreadCustomEditors';
import { MainThreadWebviewPanels } from 'vs/workbench/api/browser/mainThreadWebviewPanels';
import { MainThreadWebviews } from 'vs/workbench/api/browser/mainThreadWebviews';
import { MainThreadWebviewsViews } from 'vs/workbench/api/browser/mainThreadWebviewViews';
import * as extHostProtocol from 'vs/workbench/api/common/extHost.protocol';
import { extHostCustomer } from '../common/extHostCustomers';
@extHostCustomer
export class MainThreadWebviewManager extends Disposable {
constructor(
context: extHostProtocol.IExtHostContext,
@IInstantiationService instantiationService: IInstantiationService,
) {
super();
const webviews = this._register(instantiationService.createInstance(MainThreadWebviews, context));
context.set(extHostProtocol.MainContext.MainThreadWebviews, webviews);
const webviewPanels = this._register(instantiationService.createInstance(MainThreadWebviewPanels, context, webviews));
context.set(extHostProtocol.MainContext.MainThreadWebviewPanels, webviewPanels);
const customEditors = this._register(instantiationService.createInstance(MainThreadCustomEditors, context, webviews, webviewPanels));
context.set(extHostProtocol.MainContext.MainThreadCustomEditors, customEditors);
const webviewViews = this._register(instantiationService.createInstance(MainThreadWebviewsViews, context, webviews));
context.set(extHostProtocol.MainContext.MainThreadWebviewViews, webviewViews);
}
}
| TypeScript | 3 | chanmaoooo/vscode | src/vs/workbench/api/browser/mainThreadWebviewManager.ts | [
"MIT"
] |
package com.baeldung.annotations;
import javax.annotation.Generated;
@RetentionAnnotation
@Generated("Available only on source code")
public class AnnotatedClass {
}
| Java | 3 | DBatOWL/tutorials | core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotations/AnnotatedClass.java | [
"MIT"
] |
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/xla/service/all_reduce_reassociate.h"
#include "tensorflow/compiler/xla/service/all_reduce_key.h"
#include "tensorflow/compiler/xla/service/collective_ops_utils.h"
#include "tensorflow/compiler/xla/service/hlo_computation.h"
#include "tensorflow/compiler/xla/service/hlo_domain_map.h"
#include "tensorflow/compiler/xla/service/hlo_instruction.h"
#include "tensorflow/compiler/xla/service/hlo_instructions.h"
#include "tensorflow/compiler/xla/service/hlo_query.h"
namespace xla {
namespace {
// Returns if the given all reduce instructions are compatible with each other.
// Note that since the given all-reduce instructions are connected to another
// instruction by a direct data flow edge, they must belong to the same domain.
// As a result, we don't need to include any domain information in the
// AllReduceKey to check compatibility.
bool AreCompatible(const HloAllReduceInstruction *ar0,
const HloAllReduceInstruction *ar1, ReductionKind op_kind) {
absl::optional<AllReduceKey> key0 = GetAllReduceKey(ar0);
absl::optional<AllReduceKey> key1 = GetAllReduceKey(ar1);
auto kind0 = MatchReductionComputation(ar0->to_apply());
return key0 && key1 && kind0 && *key0 == *key1 && kind0 == op_kind;
}
} // namespace
StatusOr<bool> AllReduceReassociate::Run(HloModule *module) {
if (hlo_query::ContainsLayoutConstrainedAllReduce(*module)) {
VLOG(1)
<< "Skip AllReduceReassociate because the module contains all-reduce "
"with constrained layouts";
return false;
}
int64_t next_channel_id = hlo_query::NextChannelId(*module);
bool changed = false;
for (auto computation : module->computations()) {
for (HloInstruction *inst : computation->MakeInstructionPostOrder()) {
absl::optional<ReductionKind> kind = MatchReductionInstruction(inst);
if (!kind || inst->operand(0)->opcode() != HloOpcode::kAllReduce ||
inst->operand(1)->opcode() != HloOpcode::kAllReduce ||
!inst->shape().IsArray()) {
continue;
}
auto *ar0 = Cast<HloAllReduceInstruction>(inst->mutable_operand(0));
auto *ar1 = Cast<HloAllReduceInstruction>(inst->mutable_operand(1));
if (!AreCompatible(ar0, ar1, *kind)) {
VLOG(2) << "All-Reduce operations are not compatible, skipping";
continue;
}
if (ar0->user_count() != 1 || ar1->user_count() != 1) {
VLOG(2) << "All-Reduce operations have > 1 users";
continue;
}
// Found pattern op(ar(x), ar(y)). Transform it into ar(op(x,y)).
HloInstruction *new_op = computation->AddInstruction(
inst->CloneWithNewOperands(inst->shape(), {ar0->mutable_operand(0),
ar1->mutable_operand(0)}));
HloInstruction *new_ar = computation->AddInstruction(
ar0->CloneWithNewOperands(inst->shape(), {new_op}));
// Do not reuse channel_id from the existing instruction.
if (new_ar->channel_id()) {
new_ar->set_channel_id(next_channel_id++);
}
TF_RETURN_IF_ERROR(inst->ReplaceAllUsesWith(new_ar));
// Note that RemoveInstructionAndUnusedOperands may not remove the 2
// all-reduce operands of `inst` if they are not safe to remove otherwise,
// so manually these instructions.
TF_RETURN_IF_ERROR(computation->RemoveInstruction(inst));
TF_RETURN_IF_ERROR(computation->RemoveInstruction(ar0));
TF_RETURN_IF_ERROR(computation->RemoveInstruction(ar1));
changed = true;
}
}
return changed;
}
} // namespace xla
| C++ | 5 | ashutom/tensorflow-upstream | tensorflow/compiler/xla/service/all_reduce_reassociate.cc | [
"Apache-2.0"
] |
import tempfile
import unittest
import queuelib
from scrapy.http.request import Request
from scrapy.pqueues import ScrapyPriorityQueue, DownloaderAwarePriorityQueue
from scrapy.spiders import Spider
from scrapy.squeues import FifoMemoryQueue
from scrapy.utils.test import get_crawler
from tests.test_scheduler import MockDownloader, MockEngine
class PriorityQueueTest(unittest.TestCase):
def setUp(self):
self.crawler = get_crawler(Spider)
self.spider = self.crawler._create_spider("foo")
def test_queue_push_pop_one(self):
temp_dir = tempfile.mkdtemp()
queue = ScrapyPriorityQueue.from_crawler(self.crawler, FifoMemoryQueue, temp_dir)
self.assertIsNone(queue.pop())
self.assertEqual(len(queue), 0)
req1 = Request("https://example.org/1", priority=1)
queue.push(req1)
self.assertEqual(len(queue), 1)
dequeued = queue.pop()
self.assertEqual(len(queue), 0)
self.assertEqual(dequeued.url, req1.url)
self.assertEqual(dequeued.priority, req1.priority)
self.assertEqual(queue.close(), [])
def test_no_peek_raises(self):
if hasattr(queuelib.queue.FifoMemoryQueue, "peek"):
raise unittest.SkipTest("queuelib.queue.FifoMemoryQueue.peek is defined")
temp_dir = tempfile.mkdtemp()
queue = ScrapyPriorityQueue.from_crawler(self.crawler, FifoMemoryQueue, temp_dir)
queue.push(Request("https://example.org"))
with self.assertRaises(NotImplementedError, msg="The underlying queue class does not implement 'peek'"):
queue.peek()
queue.close()
def test_peek(self):
if not hasattr(queuelib.queue.FifoMemoryQueue, "peek"):
raise unittest.SkipTest("queuelib.queue.FifoMemoryQueue.peek is undefined")
temp_dir = tempfile.mkdtemp()
queue = ScrapyPriorityQueue.from_crawler(self.crawler, FifoMemoryQueue, temp_dir)
self.assertEqual(len(queue), 0)
self.assertIsNone(queue.peek())
req1 = Request("https://example.org/1")
req2 = Request("https://example.org/2")
req3 = Request("https://example.org/3")
queue.push(req1)
queue.push(req2)
queue.push(req3)
self.assertEqual(len(queue), 3)
self.assertEqual(queue.peek().url, req1.url)
self.assertEqual(queue.pop().url, req1.url)
self.assertEqual(len(queue), 2)
self.assertEqual(queue.peek().url, req2.url)
self.assertEqual(queue.pop().url, req2.url)
self.assertEqual(len(queue), 1)
self.assertEqual(queue.peek().url, req3.url)
self.assertEqual(queue.pop().url, req3.url)
self.assertEqual(queue.close(), [])
def test_queue_push_pop_priorities(self):
temp_dir = tempfile.mkdtemp()
queue = ScrapyPriorityQueue.from_crawler(self.crawler, FifoMemoryQueue, temp_dir, [-1, -2, -3])
self.assertIsNone(queue.pop())
self.assertEqual(len(queue), 0)
req1 = Request("https://example.org/1", priority=1)
req2 = Request("https://example.org/2", priority=2)
req3 = Request("https://example.org/3", priority=3)
queue.push(req1)
queue.push(req2)
queue.push(req3)
self.assertEqual(len(queue), 3)
dequeued = queue.pop()
self.assertEqual(len(queue), 2)
self.assertEqual(dequeued.url, req3.url)
self.assertEqual(dequeued.priority, req3.priority)
self.assertEqual(queue.close(), [-1, -2])
class DownloaderAwarePriorityQueueTest(unittest.TestCase):
def setUp(self):
crawler = get_crawler(Spider)
crawler.engine = MockEngine(downloader=MockDownloader())
self.queue = DownloaderAwarePriorityQueue.from_crawler(
crawler=crawler,
downstream_queue_cls=FifoMemoryQueue,
key="foo/bar",
)
def tearDown(self):
self.queue.close()
def test_push_pop(self):
self.assertEqual(len(self.queue), 0)
self.assertIsNone(self.queue.pop())
req1 = Request("http://www.example.com/1")
req2 = Request("http://www.example.com/2")
req3 = Request("http://www.example.com/3")
self.queue.push(req1)
self.queue.push(req2)
self.queue.push(req3)
self.assertEqual(len(self.queue), 3)
self.assertEqual(self.queue.pop().url, req1.url)
self.assertEqual(len(self.queue), 2)
self.assertEqual(self.queue.pop().url, req2.url)
self.assertEqual(len(self.queue), 1)
self.assertEqual(self.queue.pop().url, req3.url)
self.assertEqual(len(self.queue), 0)
self.assertIsNone(self.queue.pop())
def test_no_peek_raises(self):
if hasattr(queuelib.queue.FifoMemoryQueue, "peek"):
raise unittest.SkipTest("queuelib.queue.FifoMemoryQueue.peek is defined")
self.queue.push(Request("https://example.org"))
with self.assertRaises(NotImplementedError, msg="The underlying queue class does not implement 'peek'"):
self.queue.peek()
def test_peek(self):
if not hasattr(queuelib.queue.FifoMemoryQueue, "peek"):
raise unittest.SkipTest("queuelib.queue.FifoMemoryQueue.peek is undefined")
self.assertEqual(len(self.queue), 0)
req1 = Request("https://example.org/1")
req2 = Request("https://example.org/2")
req3 = Request("https://example.org/3")
self.queue.push(req1)
self.queue.push(req2)
self.queue.push(req3)
self.assertEqual(len(self.queue), 3)
self.assertEqual(self.queue.peek().url, req1.url)
self.assertEqual(self.queue.pop().url, req1.url)
self.assertEqual(len(self.queue), 2)
self.assertEqual(self.queue.peek().url, req2.url)
self.assertEqual(self.queue.pop().url, req2.url)
self.assertEqual(len(self.queue), 1)
self.assertEqual(self.queue.peek().url, req3.url)
self.assertEqual(self.queue.pop().url, req3.url)
self.assertIsNone(self.queue.peek())
| Python | 5 | FingerCrunch/scrapy | tests/test_pqueues.py | [
"BSD-3-Clause"
] |
#!/usr/bin/pike
// -*- mode: pike -*-
// $Id: echo.pike,v 1.1 2004-05-19 18:09:37 bfulgham Exp $
// http://www.bagley.org/~doug/shootout/
// based on code from: Per Hedbor
#define DATA "Hello there sailor\n"
void echo_server(Stdio.Port p, int n) {
Stdio.File f = p->accept();
int tbytes;
string q;
while( (q = f->read( 8192,1 )) && strlen( q ) ) {
tbytes += strlen(q);
f->write( q );
}
write( "server processed %d bytes\n", tbytes );
}
void echo_client(int p, int n) {
int i;
Stdio.File f = Stdio.File();
f->connect( "localhost", p );
int s = strlen(DATA);
for (i=0; i<n; i++) {
f->write( DATA );
if( f->read( s ) != DATA ) {
werror( "Transfer error at repetition "+i+"\n");
_exit( 1 );
}
}
f->close();
_exit( 0 );
}
/* Fork is not really available in a threaded pike. Thus this hack. It
* assumes the pike binary can be found in your path, and that you have
* a /usr/bin/env
*/
void start_client( int p, int n )
{
Process.create_process( ({ "/usr/bin/env", "pike", __FILE__,
(string)p, (string)n }) );
}
void main(int argc, array argv)
{
if( argc < 3 )
{
int n = max((int)argv[-1],1);
Stdio.Port p = Stdio.Port( 0 );
int pno = (int)((p->query_address( )/" ")[1]);
start_client( pno, n );
echo_server( p, n );
} else {
echo_client( (int)argv[1], (int)argv[2] );
}
sleep(1);
}
| Pike | 3 | kragen/shootout | bench/echo/echo.pike | [
"BSD-3-Clause"
] |
PREFIX : <http://example.org/>
SELECT ?s WHERE {
?s :p ?o .
} ORDER BY str(?o)
| SPARQL | 4 | alpano-unibz/ontop | test/sparql-compliance/src/test/resources/testcases-dawg/data-r2/sort/query-sort-builtin.rq | [
"Apache-2.0"
] |
#
# mk_finger creates a "finger format" catalog for a given database.
# The user's .plan file is overwritten.
#
# Jennifer Eakins
# IGPP-SIO-UCSD
# (858)534-2869
# jeakins@ucsd.edu
#
# 05/16/2001
#
use lib "$ENV{ANTELOPE}/data/perl" ;
use Datascope;
use File::Copy;
use File::stat;
use English;
use Getopt::Std;
if (! getopts('ogvVs:l:p:d:e:a:t:y:i:') || @ARGV != 1 ) {
&usage;
}
# #
# get arguments from command line and set defaults #
# #
printf STDERR "\n\nfinger_quake started: %s UTC \n\n", &strydtime(time()) ;
$db = $ARGV[0] ;
$default = 20 ; # default number of events to report
# if (! exists $ENV{'DBLOCKS'}) {
# print STDERR "You need to set your DBLOCKS environment variable.\n";
# exit(1);
# } else {
# print STDERR "Passed DBLOCKS check. \n" if $opt_V;
# }
#
# Only report events with magnitudes greater than some threshhold
# if you want null magnitudes reported, you should use "-t -999.00"
#
if ($opt_t) {
$thresh = $opt_t ;
if ($thresh < 0.0 ) {
warn "-t option must be numeric.\n";
}
} else { # Don't report null (-999.99) magnitudes
$thresh = 0.00 ;
}
#
# 2 digit vs. 4 digit year
#
if ($opt_y) {
if ( ($opt_y != 2) && ($opt_y != 4) ) {
print STDERR "\nMust specify 2 or 4 for -y option.\n";
print STDERR "Default is a 2 digit year output for bulletin.\n";
&usage;
} elsif ($opt_y == 4) {
$year = '%Y';
} elsif ($opt_y == 2) {
$year = '%y';
}
} else {
$year = '%y';
}
#
# How often is the bulletin updated
#
if ($opt_i) {
$update_int = $opt_i;
} else {
$update_int = 300;
}
#
# Update the .plan file of someone other than the user running the script
#
if ($opt_a) {
$fooo = $opt_a . "/.plan" ;
print STDERR "Updating .plan file in: $opt_a \n" if $opt_v ;
if ( !-d $opt_a) {
print STDERR "\nAlternate user home directory does not exist.\n";
&usage ;
}
$plan = $opt_a . "/.plan" ;
$plan2 = $opt_a . "/.plan_tmp" ;
} else {
$plan = "$ENV{'HOME'}/.plan";
$plan2 = "$ENV{'HOME'}/.plan_tmp";
}
if (-e $plan) {
print STDERR "\n$plan is going to be overwritten. \n" if ($opt_v || $opt_V) ;
}
$Pf = mk_finger ;
#
# Get parameter file
#
if ($opt_p) {
$Pf = $opt_p ;
}
if ( $Pf =~ /\.pf/) {
print STDERR "\n Do not use the 'pf' extension when specifying the parameter file. \n";
&usage;
}
&get_pf ;
# Ideally, your place table would have nothing but populated places #
# However, if you get your place table from the GNIS database there #
# are many different types of features that could be listed. #
# #
# You should subset this table to make it as small as possible before #
# running this script. If you are unwilling to do this, the -l option#
# allows you to subset the table. This is unwise... #
if ($opt_l) {
if ($upn) {
$subset = "$opt_l";
} else {
print STDERR "Via the parameter file, $opt_p, you have decided not to use a table of placename.\n" if ($opt_v || $opt_V) ;
print STDERR "Therefore, I cannot figure out why you would want to use this option.\n" if ($opt_v || $opt_V) ;
print STDERR "Using gregions for descriptive region.\n" if ($opt_v || $opt_V) ;
}
}
# Subset the input origin table. Examples include: author, distance #
# reviewed, etc. #
if ($opt_s) {
$subset2 = "$opt_s";
print STDERR "Requested origin subset: $opt_s\n" if ($opt_V || $opt_v);
}
$t = time (); # setup initial time (replaced in sub print_plan)
$lasttime = 0 ;
# #
# Check to see if there is a place table (gnis1.0 or places1.2)#
# and that we want to use it. #
# If yes, then use specific populated place for Region #
# #
if ($upn) {
@place = dbopen($place_name,"r") ;
if ($opt_g) { # gnis1.0 place table vs places1.2 places table
@dbplace = dblookup(@place,"","place","","") ;
} else {
@dbplace = dblookup(@place,"","places","","") ;
}
$pl_file = dbquery (@dbplace,"dbTABLE_FILENAME");
if (!-e $pl_file) {
print STDERR "\nCan't open placename table: $pl_file\n";
exit(1);
}
@dbplace = dbsubset (@dbplace, $subset) if ($opt_l) ;
if (! dbquery(@dbplace, "dbRECORD_COUNT")) {
print STDERR "No records found in place table after subset.\nUsing default gregions.\n" if ($opt_v || $opt_V) ;
$upn = 0 ;
}
}
# #
# setup while loop so that program runs continuously #
# (ideally I would put some kind of check in for an #
# updated parameter file...) #
# #
$dontstop = 1; # Keep running unless the -o option was specified
while ($dontstop) {
# #
# make sure directories and database from pf file exist and are writable #
# #
if ( (! -e $db)&&(! -e $db . ".origin") ) {
print STDERR "\n$db does not exist.\n";
&usage ;
}
@dbcat = dbopen($db, "r") ;
@dborigin = dblookup(@dbcat,"","origin","","");
$or_file = dbquery (@dborigin,"dbTABLE_FILENAME");
if (!-e $or_file) {
print STDERR "\nCan't open origin table: $or_file\n";
exit(1);
}
$inode = stat("$or_file");
$mtime = $inode->mtime ;
dbclose(@dbcat);
# #
# check to see if origin table has been updated since the last update #
# #
if ( $mtime > $lasttime) {
@dbcat = dbopen($db, "r");
@dborigin = dblookup(@dbcat,"","origin","","");
# Database may not be crunched, so find all non-null values of minotime (ignore -9999999999.999)
@dborigin = dbsubset (@dborigin, "time>='0'");
@dbevent = dblookup(@dbcat,"","event","","");
$nrecs = dbquery (@dbevent,"dbRECORD_COUNT") ;
if (!$nrecs) {
print STDERR "\nNo events with prefor set.\n";
print STDERR "Make sure you have event table and/or have set the prefor.\n";
exit(1);
}
@dbj = dbjoin (@dbevent,@dborigin );
@dbj = dbsubset (@dbj, "prefor==orid");
@dbj = dbsort (@dbj, "-r", "time");
# Subset if -s option is used
if ($opt_s) {
print STDERR "Subsetting joined origin-event table for: $opt_s\n" if ($opt_v || $opt_V) ;
$nb4 = dbquery (@dbj,"dbRECORD_COUNT") ;
print STDERR "Nrecs before subset: $nb4\n" if ($opt_v || $opt_V) ;
@dbj = dbsubset (@dbj, "$subset2") ;
$naf = dbquery (@dbj,"dbRECORD_COUNT") ;
print STDERR "Nrecs after subset: $naf\n" if ($opt_v || $opt_V) ;
}
$maxotime = dbex_eval(@dbj,"max_table(time)");
$minotime = dbex_eval(@dbj,"min_table(time)");
open (PLAN, ">$plan2") || die "Can't open $plan2 \n";
printf STDERR "\nUpdating %s at: %s \n", $plan, epoch2str(time(), "%m/%d/%Y (%j) %T %Z", "$TZ") ;
# #
# print Welcome/preface to .plan file #
# #
print PLAN "$preface\n";
if ($opt_y == 4) {
print PLAN <<PLAN_1 ;
DATE TIME-UTC LAT. LON. DEPTH MAG Q REGION
yyyy/mm/dd hh:mm:ss deg. deg. km
+++++++++++++++++++ ++++++ +++++++ +++++ ++++++ + +++++++++++++++++++++++++++++++
PLAN_1
} else {
print PLAN <<PLAN_1 ;
DATE TIME-UTC LAT. LON. DEPTH MAG Q REGION
yy/mm/dd hh:mm:ss deg. deg. km
+++++++++++++++++ ++++++ +++++++ +++++ ++++++ + +++++++++++++++++++++++++++++++++
PLAN_1
}
# #
# subset will either be based on time, or by number of events #
# #
if ($opt_d) {
if ( ( $opt_d > 366) || ($opt_d !~ /\d/) ) {
# Not really necessary - just a designer imposed restriction. I may change this later
print STDERR "\nNumber of days to report must be numeric and less than 366. \n";
&usage ;
} else {
print STDERR "Will print events from last $opt_d days to finger list. \n" if ($opt_v || $opt_V) ;
$cutoff = $t - ($opt_d * 86400) ;
if ($cutoff > $minotime) {
$ckcrit = "cutoff";
} else {
$ckcrit = "minotime" ;
}
$ckstop = "otime";
$otime = $maxotime ;
}
print STDERR "Will print all events less than $$ckstop and greater than $$ckcrit to finger list. \n" if ($opt_v || $opt_V) ;
&print_plan;
} elsif ($opt_e) {
if ($nrecs < $opt_e) {
$ckcrit = "row" ;
$ckstop = "nrecs";
} else {
$ckcrit = "nevents";
$ckstop = "opt_e";
}
print STDERR "Will print $$ckstop events to finger list. \n" if ($opt_v || $opt_V);
&print_plan;
} else {
if ($nrecs < $default) {
$ckcrit = row;
$ckstop = nrecs ;
} else {
$ckcrit = nevents;
$ckstop = default;
}
print STDERR "Will print $$ckstop events to finger list. \n" if ($opt_v || $opt_V) ;
&print_plan ;
}
# put footer message on .plan
print PLAN <<PLAN_2 ;
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
$msg
Last update: $last_update
PLAN_2
print STDERR "$plan should be updated.\n" if ($opt_v || $opt_V) ;
close PLAN ;
if (! move($plan2,$plan)) {
print STDERR "\nCould not move $plan2 to $plan \n";
exit(1);
}
dbclose(@dbcat) ;
} else { # the catalog was not updated. Check again after specified update_interval
print STDERR "No need for update. Sleeping for $update_int.\n" ;
}
if ($opt_o) {
print STDERR "Last update time:", strtime($lasttime), "\n" if ($opt_v || $opt_V) ;
print STDERR "You have chosen to run this program only once via the -o option.\nExitting.\n";
$dontstop = 0 if $opt_o;
last;
} else {
print STDERR "Last update time:", strtime($lasttime), "\n" if ($opt_v || $opt_V) ;
print STDERR "Sleeping for $update_int.\n" ;
sleep $update_int ;
}
}
dbclose(@place) if ($use_place_name =~ /Yes|YES|yes|y|Y|1/) ;
exit(0) ;
# #
# subroutines below here #
# #
sub print_plan {
my ($magtype, $mag) ;
$t = time ();
$last_update = epoch2str($t, "%m/%d/%Y (%j) %T %Z", "$TZ");
$lasttime = $t;
$nevents = 0;
for ($row = 0 ; $$ckstop > $$ckcrit; $row ++) {
$usegr = 0; # reset gsregion vs. placename
$dbj[3] = $row ;
($lat, $lon, $otime, $depth, $review, $mb, $ms, $ml, $auth) = dbgetv(@dbj,qw(lat lon time depth review mb ms ml auth) ) ;
# #
# decide which magnitude to use. If event passes thresh test #
# (otherwise reject and go to next event) #
# #
$mag = "-.-" ;
$magtype = " ";
foreach $pref (@mag_pref) {
print STDERR "Checking mag: $pref\n" if $opt_V;
#
# for pref magtype, if above thresh print to list. Else check next magtype.
# If no magnitude types are above threshold, skip event.
#
if ( ( $$pref != "-999.0") && ($$pref >= $thresh) ) {
print STDERR "Found non-null magnitude: $$pref$pref.\n" if $opt_V;
$mag = $$pref ;
$magtype = $pref;
print STDERR "Magnitude is now: $mag$magtype\n" if $opt_V;
# #
# get additional information #
# #
&get_review;
&get_place ;
&get_NSEW ;
&get_auth ;
if ($upn && !$usegr) {
printf STDERR "%s %5.2f%s %6.2f%s %5.1f %3.1f%2s%1s %1s %5.1f km %2s of %s\n", epoch2str($otime,"$year/%m/%d %H:%M:%S"), $lat, $lats, $lon, $lons, $depth, $mag, $magtype, $review, $quality, $dist, $az, $placename if $opt_v;
printf PLAN "%s %5.2f%s %6.2f%s %5.1f %3.1f%2s%1s %1s %5.1f km %2s of %s\n", epoch2str($otime,"$year/%m/%d %H:%M:%S"), $lat, $lats, $lon, $lons, $depth, $mag, $magtype, $review, $quality, $dist, $az, $placename ;
} else {
$blank = "";
printf STDERR "%s %5.2f%s %6.2f%s %5.1f %3.1f%2s%1s %1s %14s %s\n", epoch2str($otime,"$year/%m/%d %H:%M:%S") , $lat, $lats, $lon, $lons, $depth, $mag, $magtype, $review, $quality, $blank, $gregion if $opt_v;
printf PLAN "%s %5.2f%s %6.2f%s %5.1f %3.1f%2s%1s %1s %14s %s\n", epoch2str($otime,"$year/%m/%d %H:%M:%S"), $lat, $lats, $lon, $lons, $depth, $mag, $magtype, $review, $quality, $blank, $gregion ;
}
$nevents++;
print STDERR "Number of events after adding to .plan is : $nevents\n" if ($opt_V) ;
# last;
# next;
} elsif ( ($$pref != "-999.0") && ($$pref < $thresh) ) {
print STDERR "Event is below cutoff magnitude. Rejecting.\n" if ($opt_v || $opt_V) ;
}
}
}
if ($opt_d) {
$msg = "There are currently $nevents events recorded by $NETWORK for the past $opt_d days." if $opt_d;
} elsif ($opt_e) {
$msg = "The $opt_e most recent events recorded by $NETWORK." if $opt_e;
} else {
$msg = "The $default most recent events recorded by $NETWORK.";
}
}
sub get_place {
if ($upn) {
$mindist = 180;
for ($i = 0; $i<dbquery(@dbplace,"dbRECORD_COUNT"); $i++) {
$dbplace[3] = $i ;
if ($opt_g) {
$dist = dbex_eval(@dbplace, "distance(place.lat,place.lon,$lat,$lon)" );
if ($dist < $mindist) {
$mindist = $dist ;
$az = dbex_eval(@dbplace, "azimuth(place.lat,place.lon,$lat,$lon)" ) ;
$placename = dbgetv(@dbplace, qw (fname) );
}
} else {
$dist = dbex_eval(@dbplace, "distance(places.lat,places.lon,$lat,$lon)" );
if ($dist < $mindist) {
$mindist = $dist ;
$az = dbex_eval(@dbplace, "azimuth(places.lat,places.lon,$lat,$lon)" ) ;
$placename = dbgetv(@dbplace, qw (place) );
}
}
}
# #
# convert from azimuth numeric values to N/NW/NE/SE/SW/S/E/W etc. #
# #
$az = &convert_az ($az) ;
$dist = &convert_dist ($mindist) ;
if ($mindist >= $dist_gregion) { # We want to use grnames if distances are > $dist_gregion degrees
# because the .place table is for "local" areas
$usegr = 1 ;
$gregion = grname($lat,$lon) ;
}
} else {
$gregion = grname($lat,$lon) ;
}
}
sub get_NSEW {
# #
# all finger catalogs seem to use "N/S/E/W" rather than the -180/180 -90/90 coordinates. #
# #
if ($lon < 0.0) {
$lon = abs($lon) ;
$lons = "W";
} else {
$lons = "E";
}
if ($lat < 0.0) {
$lat = abs($lat) ;
$lats = "S";
} else {
$lats = "N";
}
}
sub get_review {
# #
# mark unreviewed events #
# #
if ($review =~ /[yY]/) {
$review = " ";
} else {
$review = "*";
}
}
sub get_auth {
# #
# determine author #
# #
$quality = " " ; # default
foreach $key (keys %auth_pref) {
if ($auth =~ $auth_pref{$key}) {
$quality = $key ;
print STDERR "Quality reported: $quality\n" if $opt_V;
last;
}
}
}
sub get_pf {
my ( $ref ) ;
print STDERR "\nGetting params from $Pf\n" if ($opt_v || $opt_V) ;
$max_events = pfget ($Pf, 'max_events' );
$max_days = pfget ($Pf, 'max_days' );
$NETWORK = pfget ($Pf, 'network' );
$place_name = pfget ($Pf, 'place_name' );
$use_place_name = pfget ($Pf, 'use_place_name' );
$dist_gregion = pfget ($Pf, 'dist_gregion' );
if ($use_place_name =~ /Yes|YES|yes|y|Y|1/) {
$upn = 1 ;
}
$ref = pfget ($Pf, 'mag_pref' );
@mag_pref = @$ref ;
print STDERR "Mag_pref from $Pf is: @mag_pref.\n" if ($opt_v || $opt_V) ;
$ref = pfget ($Pf, 'auth_pref' );
%auth_pref = %$ref;
$preface = pfget ($Pf, "preface" ) ;
}
sub convert_az {
my ( $az ) = @_ ;
my ( $az_nsew ) = "" ;
if ( $az <= 22.5 ) {
$az_nsew = "N";
} elsif ( ($az > 22.5) && ($az <= 67.5) ) {
$az_nsew = "NE" ;
} elsif ( ($az > 67.5) && ($az <= 112.5) ) {
$az_nsew = "E" ;
} elsif ( ($az > 112.5) && ($az <= 157.5) ) {
$az_nsew = "SE" ;
} elsif ( ($az > 157.5) && ($az <= 202.5) ) {
$az_nsew = "S" ;
} elsif ( ($az > 202.5) && ($az <= 247.5) ) {
$az_nsew = "SW" ;
} elsif ( ($az > 247.5) && ($az <= 292.5) ) {
$az_nsew = "W" ;
} elsif ( ($az > 292.5) && ($az <= 337.5) ) {
$az_nsew = "NW" ;
} elsif ( ($az > 337.5) ) {
$az_nsew = "N";
}
return $az_nsew ;
}
sub convert_dist {
my ( $dist ) = @_ ;
my ( $deg2km, $dist_deg ) ;
$deg2km = 111.19 ; # avg. conversion for deg/km
$dist_deg = $deg2km * $dist ;
return $dist_deg ;
}
sub run {
my ( $cmd ) = @_ ;
my $line ;
print STDERR "$cmd\n" if ($opt_v || $opt_V) ;
system ( $cmd ) ;
if ($?) {
print STDERR "$cmd error $? \n";
exit(1);
}
}
sub usage {
print STDERR <<END;
\nUSAGE: $0 [-v] [-g] [-o] [-p pf] [ -d days | -e events ] [-a alternate_home_dir] [-t magnitude_cutoff] [-l place_subset] [-s origin_subset] [-i update_interval] [-y 2|4] database
END
exit(1);
}
| XProc | 4 | jreyes1108/antelope_contrib | bin/export/finger_quake/finger_quake.xpl | [
"BSD-2-Clause",
"MIT"
] |
; RUN: llc -mtriple=thumbv6m-eabi -verify-machineinstrs %s -o - | FileCheck %s
target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:64-v128:64:128-a:0:32-n32-S64"
target triple = "thumbv6m--linux-gnueabi"
; Function Attrs: nounwind optsize
define void @foo(i32* nocapture readonly %A) #0 {
entry:
; CHECK-LABEL: foo:
; CHECK: ldm r[[BASE:[0-9]]]!,
; CHECK-NEXT: mov r[[BASE]],
%0 = load i32, i32* %A, align 4
%arrayidx1 = getelementptr inbounds i32, i32* %A, i32 1
%1 = load i32, i32* %arrayidx1, align 4
%call = tail call i32 @bar(i32 %0, i32 %1, i32 %0, i32 %1) #2
%call2 = tail call i32 @bar(i32 %0, i32 %1, i32 %0, i32 %1) #2
ret void
}
; Function Attrs: optsize
declare i32 @bar(i32, i32, i32, i32) #1
attributes #0 = { nounwind optsize "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #1 = { optsize "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #2 = { nounwind optsize }
| LLVM | 3 | arunkumarbhattar/llvm | test/CodeGen/Thumb/ldm-merge-call.ll | [
"Apache-2.0"
] |
HEADERS += \
$$PWD/devicemanage.h
SOURCES += \
$$PWD/devicemanage.cpp
| QMake | 2 | jiadxin/QtScrcpy | QtScrcpy/devicemanage/devicemanage.pri | [
"Apache-2.0"
] |
"use strict";
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const path_1 = require("path");
const minimatch = require("minimatch");
const utils_1 = require("./utils");
module.exports = new class {
constructor() {
this.meta = {
messages: {
badImport: 'Imports violates \'{{restrictions}}\' restrictions. See https://github.com/microsoft/vscode/wiki/Source-Code-Organization'
},
docs: {
url: 'https://github.com/microsoft/vscode/wiki/Source-Code-Organization'
}
};
}
create(context) {
const configs = context.options;
for (const config of configs) {
if (minimatch(context.getFilename(), config.target)) {
return (0, utils_1.createImportRuleListener)((node, value) => this._checkImport(context, config, node, value));
}
}
return {};
}
_checkImport(context, config, node, path) {
// resolve relative paths
if (path[0] === '.') {
path = (0, path_1.join)(context.getFilename(), path);
}
let restrictions;
if (typeof config.restrictions === 'string') {
restrictions = [config.restrictions];
}
else {
restrictions = config.restrictions;
}
let matched = false;
for (const pattern of restrictions) {
if (minimatch(path, pattern)) {
matched = true;
break;
}
}
if (!matched) {
// None of the restrictions matched
context.report({
loc: node.loc,
messageId: 'badImport',
data: {
restrictions: restrictions.join(' or ')
}
});
}
}
};
| JavaScript | 5 | kklt2002/vscode | build/lib/eslint/code-import-patterns.js | [
"MIT"
] |
'' ******************************************************************************
'' * DS1307 Object *
'' * James Burrows May 2006 *
'' * Version 1.2 *
'' ******************************************************************************
''
'' This object provides and example of use of the DS1307 i2c real time clock (RTC)
'' See - for reference: http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2688
''
'' this object provides the PUBLIC functions:
'' -> Init - sets up the address and inits sub-objects such
'' -> geti2cError - returns the error passthru from the i2c sub object
'' -> settime - sets the clock time
'' -> setdate - sets the date
'' -> gettime - gets the time into the object - use getday, getmonth etc to read the variables
'' -> getdate - gets the date into the object - see above
'' -> getday/getmonth etc - returns the data got when you call gettime/getdate
''
'' this object provides the PRIVATE functions:
'' -> i2c2bcd - performs integer to BCD conversion
'' -> bcd2int - performs BCD to integer conversion
''
'' this object uses the following sub OBJECTS:
'' -> i2cObject
''
'' Revision History:
'' -> V1 - Release
'' -> V1.1 - Documentation update, slight code tidy-up
'' Changed to include a start status
'' Changed to stop object initializing if device not present on i2cBus
'' -> V1.2 - Updated to allow i2cSCL line driving pass-true to i2cObject
''
'' The default address is %1101_0000
CON
VAR
long DS1307_Address
long DS1307_Seconds
long DS1307_Minutes
long DS1307_Hours
long DS1307_Date
long DS1307_Days
long DS1307_Months
long DS1307_Years
long started
OBJ
i2cObject : "i2cObject"
PUB Init(_deviceAddress,_i2cSDA,_i2cSCL,_driveSCLLine): okay
DS1307_Address := _deviceAddress
i2cObject.init(_i2cSDA, _i2cSCL,_driveSCLLine)
' start
okay := start
return okay
PUB start : okay
' start the object
if started == false
if i2cObject.devicePresent(DS1307_Address) == true
started := true
else
started := false
return started
PUB stop
' stop the object
if started == true
started := false
PUB isStarted : result
return started
PUB geti2cError : errorCode
return i2cObject.getError
PUB setTime(ds_hour, ds_minute, ds_seconds)
if started == true
' set the time
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 0,8)
i2cObject.i2cwrite(0,8)
DS1307_Hours := int2bcd(ds_hour)
DS1307_Minutes := int2bcd(ds_minute)
DS1307_Seconds := int2bcd(ds_seconds)
i2cObject.i2cWrite (DS1307_Seconds,8)
i2cObject.i2cWrite (DS1307_Minutes,8)
i2cObject.i2cWrite (DS1307_Hours,8)
i2cObject.i2cStop
PUB setDate(ds_date,ds_day,ds_month,ds_year)
if started == true
' set the date
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 0,8)
i2cObject.i2cwrite(3,8)
DS1307_Date := int2bcd(ds_date)
DS1307_Days := int2bcd(ds_day)
DS1307_Months := int2bcd(ds_month)
DS1307_Years := int2bcd(ds_year)
i2cObject.i2cWrite (DS1307_Date,8)
i2cObject.i2cWrite (DS1307_Days,8)
i2cObject.i2cWrite (DS1307_Months,8)
i2cObject.i2cWrite (DS1307_Years,8)
i2cObject.i2cStop
PUB getDate : ds_seconds | ackbit
' get the date bytes from the clock
if started == true
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 0,8)
i2cObject.i2cwrite(3,8)
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 1,8)
DS1307_Date := i2cObject.i2cRead(i2cObject#_i2cACK)
DS1307_Days := i2cObject.i2cRead(i2cObject#_i2cACK)
DS1307_Months := i2cObject.i2cRead(i2cObject#_i2cACK)
DS1307_Years := i2cObject.i2cRead(i2cObject#_i2cNAK)
i2cObject.i2cStop
PUB getTime : ds_seconds | ackbit
' get the time bytes from the clock
if started == true
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 0,8)
i2cObject.i2cwrite(0,8)
i2cObject.i2cStart
i2cObject.i2cWrite (DS1307_Address | 1,8)
DS1307_Seconds := i2cObject.i2cRead(i2cObject#_i2cACK)
DS1307_Minutes := i2cObject.i2cRead(i2cObject#_i2cACK)
DS1307_Hours := i2cObject.i2cRead(i2cObject#_i2cNAK)
i2cObject.i2cStop
return bcd2int(DS1307_Seconds)
PUB getHours : result
return bcd2int(DS1307_Hours)
PUB getMinutes : result
return bcd2int(DS1307_Minutes)
PUB getSeconds : result
return bcd2int(DS1307_Seconds)
PUB getDays : result
return bcd2int(DS1307_Days)
PUB getMonths : result
return bcd2int(DS1307_Months)
PUB getYears : result
return bcd2int(DS1307_Years)
pri int2bcd(value) : result
' convert integer to BCD (Binary Coded Decimal)
result := ((value / 10) *16) + (value // 10)
return result
pri bcd2int(value) : result
' convert BCD (Binary Coded Decimal) to Integer
result :=((value / 16) *10) + (value // 16)
return result | Propeller Spin | 5 | deets/propeller | libraries/community/p1/All/i2cObject/DS1307Obj.spin | [
"MIT"
] |
% Trim Fortran 77 lines to delete columns 73-80
% J.R. Cordy, Queen's University, Sept 2009
% Copyright 2009 James R. Cordy
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% Redistributions of source code must retain the above copyright notice,
% this list of conditions and the following disclaimer.
% Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
% AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
% AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
% OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
% POSSIBILITY OF SUCH DAMAGE.
% This is a little silly, we could just use cut, sed or awk to do this.
% But by using TXL we can easily distinguish and avoid truncating comments.
#pragma -char
tokens
commentline "[cC\*]#n*\n"
codeline "#n*\n"
end tokens
define program
[repeat lines]
end define
% Gather groups of comments or code lines to avoid making one humungous
% repeat structure, which can cause deep stack problems on some machines
define lines
[repeat commentline+]
| [repeat codeline+]
end define
% Find each code line that has more than 72 columns and truncate it
rule main
% look at each line exactly once
replace $ [codeline]
CodeLine [codeline]
% we're only interested if it has more than 72 columns (73 including the newline)
construct LengthCodeLine [number]
_ [# CodeLine]
where
LengthCodeLine [> 73]
% don't lose the trailing newline on it
construct Newline [codeline]
CodeLine [: LengthCodeLine LengthCodeLine]
% trunacte to 72 columns
by
CodeLine [: 1 72] [+ Newline]
end rule
| TXL | 4 | grammarware/slps | topics/grammars/fortran/waite-cordy/Fortran/Txl/f77trim.txl | [
"BSD-3-Clause"
] |
// compile-flags: -O -Z mutable-noalias=yes
#![crate_type = "lib"]
pub struct SelfRef {
self_ref: *mut SelfRef,
_pin: std::marker::PhantomPinned
}
// CHECK-LABEL: @test_self_ref(
// CHECK-NOT: noalias
#[no_mangle]
pub unsafe fn test_self_ref(s: &mut SelfRef) {
(*s.self_ref).self_ref = std::ptr::null_mut();
}
| Rust | 4 | mbc-git/rust | src/test/codegen/noalias-unpin.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.sql.connector.write;
import org.apache.spark.annotation.Unstable;
import org.apache.spark.sql.connector.catalog.TableCapability;
import org.apache.spark.sql.sources.InsertableRelation;
/**
* A logical write that should be executed using V1 InsertableRelation interface.
* <p>
* Tables that have {@link TableCapability#V1_BATCH_WRITE} in the list of their capabilities
* must build {@link V1Write}.
*
* @since 3.2.0
*/
@Unstable
public interface V1Write extends Write {
InsertableRelation toInsertableRelation();
}
| Java | 4 | akhalymon-cv/spark | sql/core/src/main/java/org/apache/spark/sql/connector/write/V1Write.java | [
"Apache-2.0"
] |
//
// This file is part of the Simutrans project under the Artistic License.
// (see LICENSE.txt)
//
//
// Tests convoi reservation
//
function test_reservation_clear_ground()
{
local clear_reservation = command_x(tool_clear_reservation)
local pl = player_x(0)
// invalid coord
{
ASSERT_EQUAL(clear_reservation.work(pl, coord3d(-1, -1, 0)), null)
}
// flat ground
{
ASSERT_EQUAL(clear_reservation.work(pl, coord3d(0, 0, 0)), null)
}
RESET_ALL_PLAYER_FUNDS()
}
function test_reservation_clear_road()
{
local clear_reservation = command_x(tool_clear_reservation)
local pl = player_x(0)
local road = way_desc_x.get_available_ways(wt_road, st_flat)[0]
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), road, true), null)
{
ASSERT_EQUAL(clear_reservation.work(pl, coord3d(4, 3, 0)), null)
}
// clean up
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_road), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_reservation_clear_rail()
{
local clear_reservation = command_x(tool_clear_reservation)
local pl = player_x(0)
local rail = way_desc_x.get_available_ways(wt_rail, st_flat)[0]
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), rail, true), null)
{
ASSERT_EQUAL(clear_reservation.work(pl, coord3d(4, 3, 0)), null)
}
// clean up
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_rail), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_reservation_clear_rail_occupied()
{
// TODO
}
| Squirrel | 5 | Andarix/simutrans_nightly | tests/tests/test_reservation.nut | [
"Artistic-1.0"
] |
# Test suite for the mimesniff module.
module test_mimesniff is test_suite
import test_suite
import mimesniff
class TestBytes
super TestSuite
fun test_mime_type_spaces do
var data = new Bytes("".to_cstring, 0, 0)
var mt = data.mime_type
assert mt == "text/plain; charset=utf-8" else
print("got {mt}")
end
var spaces = " "
data.append_ns(spaces.to_cstring, spaces.length)
mt = data.mime_type
assert mt == "text/plain; charset=utf-8" else
print("got {mt}")
end
spaces *= 2
data.append_ns(spaces.to_cstring, spaces.length)
mt = data.mime_type
assert mt == "text/plain; charset=utf-8" else
print("got {mt}")
end
end
fun test_mime_type_html do
var cases = [
"<!DOCTYPE HTML>",
"<HTML>",
" <html >",
"<!doctype html>",
" <H1> ",
"\n<!-- "
]
for tc in cases do
var data = new Bytes(tc.to_cstring, tc.length, tc.length)
var mt = data.mime_type
assert mt == "text/html; charset=utf-8" else
print("case {tc}, got {mt}")
end
end
end
fun test_mime_type_pdf do
var pdf = "%PDF-"
var data = new Bytes(pdf.to_cstring, pdf.length, pdf.length)
var mt = data.mime_type
assert mt == "application/pdf" else
print("got {mt}")
end
end
fun test_mime_type_plain do
var cases = [
"<!DOCTYPE htm>",
"<HTML",
"%PDF"
]
for tc in cases do
var data = new Bytes(tc.to_cstring, tc.length, tc.length)
var mt = data.mime_type
assert mt == "text/plain; charset=utf-8" else
print("case {tc}, got {mt}")
end
end
end
end
| Nit | 4 | PuerkitoBio/nitfind | test_mimesniff.nit | [
"BSD-3-Clause"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.