Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

plc, a compiled approach for Prolog

140 views
Skip to first unread message

Bruno De Fraine

unread,
Jul 6, 2007, 6:00:55 AM7/6/07
to
Hello,

I would like to announce plc, a proof-of-concept Prolog compiler that
translates regular Prolog programs to standalone, native-code
executables. It is able to achieve significantly better performance
than conventional Prolog implementations, typically at least 4-5x
faster than Sicstus and 10-20x faster than SWI Prolog. It was
nonetheless a rather limited effort to develop.

plc currently supports a very reasonable set of Prolog features:
- Core features: predicates, variables and atoms; backtracking and unification
- Compound terms (functors)
- Syntactic sugar to parse/print lists to/from compound terms
- Unify (=) and failure-to-unify (\=)
- Integers, arithmetic (is, +, -) and relations (=:=, =\=, <, >, =<, >=)
- Negation as failure (not)
- Cut (!)
- Built-in predicates: true, fail, repeat, write, nl

There are three important aspects about the approach taken by plc:

1. plc is developed as a front-end for the OCaml compiler; it was
itself written in OCaml using the camlp4 macro system. This point is
pragmatic, but it is perhaps the most important enabler. plc can take
advantage of OCaml's existing high-performance native-code compiler
(which supports most common architectures), and since it translates
Prolog to a high-level functional language, a number of things come
"for free", most notably garbage collection and tail-call optimization.
Thanks to the integration with camlp4, semantics errors encountered by
the OCaml compiler can be reported using their original source code
positions.

2. plc encodes Prolog's goal solving process as a depth-first search
using continuation-passing style. This means that every predicate is
implemented as a higher-order function that calls a given argument
function with every encountered solution (in case there are no
solutions, the argument function is never called). As such, the
argument function represents a continuation for every encountered
solution, and backtracking occurs implicitly, when the continuation is
not called. A disjunction of two predicates is translated to the
sequence of first calling the first predicate's function and then the
second predicate's function, while a conjunction is translated to a
call to the first predicate's function with the second predicate's
function as a part of the continuation argument. To stop at the first
solution or to "cut" the consideration of backtracking alternatives, an
exception is raised.

3. plc precompiles different predicates versions according to the
possible state (open/closed respectively uninstantiated/instantiated
respectively free/ground respectively out/in) of each argument. So
there are in fact a number of higher-order functions that implement
different versions of the same predicate. [Mercury apparently employs a
very similar technique when it considers different "modes" for a
predicate.] These functions have different signatures and each version
is written with knowledge of each variable's state, so it can in turn
call the specific versions of its subgoals, according to the state of
the arguments. As such, variables are excluded as first-class values.
This is perhaps the most debatable design choice: while most programs
do not require first-class variables and benefit from this
optimization, some Prolog idioms rely on this feature (e.g.
open/difference lists).

DOWNLOAD / USAGE

plc requires OCaml 3.10.0 or higher (previous versions of OCaml will
not work for accidental reasons).

The plc code is available at the following URL. Use WebDAV or
Subversion to download all files at once.

http://ssel.vub.ac.be/svn-gen/bdefrain/plc/trunk/

A Makefile is included for Unix platforms. Building plc is done through
"make plc.opt". To get started, look at "demo.pl" and try "make demo"
(this will use the bytecode compiler). You can also look at
"nqueens.cpp" and try "make nqueens.opt" for an example that uses the
native-code compiler. To see the generated Ocaml code, execute "make
<basename>.output".

PERFORMANCE

To evaluate the performance of plc-compiled programs, I conducted a
benchmark with a typical Prolog version of nqueens (what else) on a
Debian/Linux (etch) machine with an Intel Pentium 4 (2.66GHz) processor
and 1G RAM. plc employed OCaml 3.10.0, the other contenders were:
- SWI-Prolog version 5.6.14 for i386 (from Debian unstable)
- SICStus 4.0.1 (x86-linux-glibc2.3)
- Mercury, version 0.13.1, configured for i686-pc-linux-gnu (default
low-level C backend)

I included Mercury after a suggestion by Markus Triska. Although the
Mercury language is neither a subset nor a superset of Prolog, it's
possible to convert most Prolog code to Mercury with minimal effort
(see "nqueens.cpp" and "nqueens_mercury.m" to see exactly how much
effort). Moreover, Mercury is a valid reference point since it seems to
apply similar optimizations (and more), and it is situated in the same
area of integrating ideas from logic programming and (statically-typed)
functional programming. (Note that I had no prior experience with
Mercury so I hope my adaptations are representative.)

Each approach was used to solve the nqueens problem of size 12, six
times in a row. Mercury and plc started with a compiled binary, while
swipl and sicstus started from the original source file. This hardly
has an influence however, since the compilation cost is very small
(about 0.25s for plc and 0.75s for Mercury to produce a binary that can
solve nqueens for any n), and swipl and sicstus compile faster anyway
(both report 0 msec), so it is doubtful they would have benefited from
loading some intermediate code file anyway. Naturally, all approaches
produce the same solutions in the same order, as required by the Prolog
semantics (I do not know if the Mercury semantics guarantees order, but
it was the same as Prolog's). Below are the averages and standard
deviation of the sample of 6 runs.

execution time speedup over swipl
avg stddev avg stddev
swipl 8457.46 177.32 1.00 0.02
sicstus 1368.21 42.95 6.19 0.19
mercury 270.76 25.81 31.49 3.19
plc 281.45 0.78 30.05 0.08

The results show that plc and Mercury clearly outperform SWI Prolog and
Sicstus for this problem. The comparison between plc and Mercury is
interesting: although Mercury is 11s faster on average, its performance
is less consistent, as indicated by the high stddev. (In fact, the
Mercury times are negatively skewed, and plc is a little faster when
the medians are compared instead of averages.) It is unclear where this
variation comes from. The Mercury binary also seems relatively large
for such a small program (1.8M versus 104K for plc, both after
strip-ping), perhaps this is related.

Despite these issues, the Mercury approach seems promising, especially
because of the availability of other backends (which I did not try).
The main difference with (current) plc is the static typing of terms,
whereas plc only employs one general term type to match Prolog
semantics (i.e. the goal "foo is 1+1" is valid, but always fails).
Consequently, plc intends to run Prolog programs without modification,
whereas Mercury is essentially a new language. Nevertheless, applying a
typing discipline such as Mercury's might be beneficial for more than
just performance. In absence of that, plc seems to provide some
interesting middle ground.

Kind regards,
Bruno De Fraine

Bart Demoen

unread,
Jul 6, 2007, 8:21:38 AM7/6/07
to
Bruno De Fraine wrote:

> execution time speedup over swipl
> avg stddev avg stddev
> swipl 8457.46 177.32 1.00 0.02
> sicstus 1368.21 42.95 6.19 0.19
> mercury 270.76 25.81 31.49 3.19
> plc 281.45 0.78 30.05 0.08

Plc seems a very interesting approach, and I will certainly have a closer look
at it. I had a quick look (and a short experiment) with your nqueens
benchmark and have the following remarks:

1) noattack is a leaf-predicate (and single clause); I would't be surprised
that Mercury inlines it, and plc perhaps does the same; Prolog compilers
like SWI and SICStus typically don't (one reason being that one is allowed
to interactively load a different definition of noattack - keeping this consistent
is possible and not difficult, but beyond what small teams usually want to go into)

2) nodiag benefits from second-argument indexing; again, typically, Prolog systems
only do first argument indexing, while Mercury does "all"-argument indexing; and
I assume plc does too, because it would otherwise be difficult to approach the speed
of Mercury

Now it certainly is a good point for plc if it does inlining and all-argument indexing;
but if one wants to compare implementation technologies, it would be good if you could
factor those optimisations out - I would certainly require that if I were a referee
of a forthcoming paper on plc :-)


>
> The results show that plc and Mercury clearly outperform SWI Prolog and
> Sicstus for this problem. The comparison between plc and Mercury is
> interesting: although Mercury is 11s faster on average, its performance
> is less consistent, as indicated by the high stddev. (In fact, the
> Mercury times are negatively skewed, and plc is a little faster when the
> medians are compared instead of averages.) It is unclear where this
> variation comes from.

You have installed Mercury with the Boehm-collector I presume ? If that's the case,
it might be (part of) the explanation of the variance in timings.
Also, if it is the case, try installing it with the native Mercury collector (which
might not work at the moment, but it is not needed for nqueens anyway).
I am not saying this is the "right" configuration to do the bencmarking in, but it
might also give some insight in underlying technology issues.


> The Mercury binary also seems relatively large for
> such a small program (1.8M versus 104K for plc, both after strip-ping),
> perhaps this is related.

It is a known problem with Mercury.

Two more things: try comparing with the fastest (traditional) Prolog compilers, e.g.
include Yap in your suite and forget about SWI (the only reason to compare to SWI is that
you are guaranteed to be able to show big speedups - but SWI was not build for speed).
And try finding the compiling-to-C implementation of Ciao: it has also reported performance
close to Mercury's.

Finally, you seem located some 20km away from us - can we entice you to come over and give
a seminar about it ?


Cheers

Bart Demoen

Bruno De Fraine

unread,
Jul 6, 2007, 3:35:27 PM7/6/07
to
On 2007-07-06 14:21:38 +0200, Bart Demoen <b...@cs.kuleuven.ac.be> said:

> Plc seems a very interesting approach, and I will certainly have a closer look
> at it.

Thanks.

> I had a quick look (and a short experiment) with your nqueens
> benchmark and have the following remarks:
>
> 1) noattack is a leaf-predicate (and single clause); I would't be surprised
> that Mercury inlines it, and plc perhaps does the same; Prolog compilers
> like SWI and SICStus typically don't (one reason being that one is allowed
> to interactively load a different definition of noattack - keeping this
> consistent
> is possible and not difficult, but beyond what small teams usually want
> to go into)

plc itself does only inline the builtin predicates. However, the
underlying OCaml compiler is known to inline small functions defined in
the same module. This is another case where plc could benefit from
OCaml.

Certain dynamic (reflection) features of Prolog are certainly
complicated by a compiled approach such as plc, yes. This does not mean
plc is excluded from interactive use; for example, I use plc-compiled
programs from the OCaml toplevel, and it is probably possible to build
a Prolog toplevel on top of it. But these things require further
investigation.

> 2) nodiag benefits from second-argument indexing; again, typically,
> Prolog systems
> only do first argument indexing, while Mercury does "all"-argument
> indexing; and
> I assume plc does too, because it would otherwise be difficult to
> approach the speed
> of Mercury

Why only first argument? This seems rather arbitrary if this means that
the "likes" relation defined as:
likes(a,X) :- sweet(X).
likes(b,X) :- pretty(X).
is more efficient than defined as:
islikedby(X,a) :- sweet(X).
islikedby(X,b) :- pretty(X).

Anyway, in plc the head "foo(a,b)" becomes the parallel pattern matching:
match (_arg0, _arg1) with
| (A,B) -> ...body...
| _ -> ()

This can be fast, since patterns such as (A,B) are static, and the
OCaml compiler can exploit the knowledge of the concrete thing it must
match against to produce efficient code. [As an aside, the use of
pattern matching is one of the only two conscious optimizations in plc
(the first one is the usage of continuation-passing style instead of
e.g. lazy lists to generate solutions).]

There is still room for improvement though: if a predicate has two
exclusive rules, e.g. one with head "foo(a)" and the other with head
"foo(b)", then this now becomes the sequence:
(match _arg0 with
| A -> ...body1...
| _ -> ();
match _arg0 with
| B -> ...body2...
| _ -> ())

If plc were to detect that the rules are exclusive, it could generate a
single match:
match _arg0 with
| A -> ...body1...
| B -> ...body2...
| _ -> ()

I suspect this will produce even more efficient code: the OCaml can try
to minimize the number of cmp's and jmp's based on the representation
it chose for A, B, etc.

> Now it certainly is a good point for plc if it does inlining and
> all-argument indexing;
> but if one wants to compare implementation technologies, it would be
> good if you could
> factor those optimisations out - I would certainly require that if I
> were a referee
> of a forthcoming paper on plc :-)

Inlining by the OCaml compiler can be turned off with the "-inline 0"
flag. (However, it does not seem to make a significant difference, see
below.) There is no option to make pattern matching slow. :-)

>> The results show that plc and Mercury clearly outperform SWI Prolog and
>> Sicstus for this problem. The comparison between plc and Mercury is
>> interesting: although Mercury is 11s faster on average, its performance
>> is less consistent, as indicated by the high stddev. (In fact, the
>> Mercury times are negatively skewed, and plc is a little faster when
>> the medians are compared instead of averages.) It is unclear where this
>> variation comes from.
>
> You have installed Mercury with the Boehm-collector I presume ? If
> that's the case,
> it might be (part of) the explanation of the variance in timings.
> Also, if it is the case, try installing it with the native Mercury
> collector (which
> might not work at the moment, but it is not needed for nqueens anyway).
> I am not saying this is the "right" configuration to do the bencmarking
> in, but it
> might also give some insight in underlying technology issues.

I installed a default Mercury (i.e. a source distribution and
./configure --prefix=$HOME; make; make install). Do you have some
pointers on how to enable the things you talk about? Are they command
line options or configure flags?

>> The Mercury binary also seems relatively large for such a small program
>> (1.8M versus 104K for plc, both after strip-ping), perhaps this is
>> related.
>
> It is a known problem with Mercury.
>
> Two more things: try comparing with the fastest (traditional) Prolog
> compilers, e.g.
> include Yap in your suite and forget about SWI (the only reason to
> compare to SWI is that
> you are guaranteed to be able to show big speedups - but SWI was not
> build for speed).
> And try finding the compiling-to-C implementation of Ciao: it has also
> reported performance
> close to Mercury's.

This is an updated table that includes YAP version Yap-5.1.1, and
plc/ocamlopt with -inline 0 and -inline 100 (the default is -inline 1):

execution time speedup over swipl
avg stddev avg stddev
swipl 8457.46 177.32 1.00 0.02
sicstus 1368.21 42.95 6.19 0.19

yap 715.81 7.46 11.82 0.12


mercury 270.76 25.81 31.49 3.19
plc 281.45 0.78 30.05 0.08

plc0 281.25 0.99
plc100 281.10 0.70

Bye,
Bruno

Julien Fischer

unread,
Jul 9, 2007, 10:58:31 AM7/9/07
to

On Fri, 6 Jul 2007, Bruno De Fraine wrote:

>> You have installed Mercury with the Boehm-collector I presume ? If that's
>> the case,
>> it might be (part of) the explanation of the variance in timings.
>> Also, if it is the case, try installing it with the native Mercury
>> collector (which
>> might not work at the moment, but it is not needed for nqueens anyway).
>> I am not saying this is the "right" configuration to do the bencmarking in,
>> but it
>> might also give some insight in underlying technology issues.
>
> I installed a default Mercury (i.e. a source distribution and ./configure
> --prefix=$HOME; make; make install). Do you have some pointers on how to
> enable the things you talk about? Are they command line options or configure
> flags?

Configuration flags.

The native collector has not (yet) been completed for the low-level C
backend. IIRC, in Mercury 0.13.x it's not even in a runnable state.
Rather than attempting to use the native collector, I suggest installing one
of the no-gc grades, e.g. asm_fast, and using that.

The no-gc grades are enabled by the configuration flag `--enable-nogc-grades'.
The agc grades, i.e. the native collector are enabled by the configuration
flag `--enable-agc-grades'. You can choose exactly which grades to install
by using the flag `--enable-libgrades'. See configure --help for details.
(This last one might save you a bit of time.)

Cheers,
Julien.

hack...@gmail.com

unread,
Dec 3, 2015, 10:02:29 AM12/3/15
to
?- system("swipl -g listing").
(1) start swipl
(2) dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(2) dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(2)dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\6phase8stepziticities.
AnniIzIsOgreSamIzIsOgreBard.
dump a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\#swiplLUV%sjh~ast-mickey -lava - nietzsche +GREED+MORE+MANY~~~etc~.~~..~,~<>rt:quxrystal KLOCKS. roks. you use cessium, robotz is krystal bitches.
AnnieIsIzisiz0isiz1zisi1ici1isop(1,_,=(__,phrase(system,"___;*->*-> ' also else.
a copy of this email via K'u''t'N''\P/A\/s\te
?-
(#) \ INT $=0x ===> into phrase("system -g listing"\ INTO SWI PROLOG swi-pl swipl
PASTE HERE
PASTER HERE
?- -? just press >CTRL--vVv--SHIFT|?- ?- i ? n ? t ? h ? e ? x ?q ux? dokument.system.window.plc./mime.world.mem.type.typ.plc.txt/text/type/plc/prolog\ernd_of_query. end_of_file^DeAd0xdead0XDEADBABE#.

a sw-pl
use KUt'AND'PAste'
swi-pl
PrologKommonsD3M0
to enjoyt this
to ENJOY {this} [wonderful <KOMPUTER <POGAM>MMEE/>
use KUt'AND'PAste'
use KUt'AND'PAste'
this pogam in SWI-prolog, EMAIL"
EMAIL: users use KUt'AND'PAste'
dump it into swi, i.e.
STARTING
BASH from
bash THE bash
shELL:
$ #to enjot this file in SWI-PROLOG
$ swipl -g listing.
Welcome to SwI-Prolog ...
welcomeToSwiProlog ...
etc ... etc ..
>>>>>>>>>>>>> PRESS CTRL V +++++++NOE-WHEN-THEN-Ctrl-V-hater--la--tex----traide_UR.>>>>>>>>>>>>> PRESS CTRL V +++++++NOE-WHEN-THEN-Ctrl-V-hater--la--tex----traide_UR.

$ #
?-
%#your query will look like the subsequent line :::
?- phrase(_5HELP5_,_5help5__,5_____5)5help5
(!) ?- # your wuery will look like this:
..[?-_5help5_=("genuine swipl LUV from daravhun apropos("wut?WTF!rtf!!8octaret*rathackstart8@gmailrt,.kalm,cim
?-_%HELP%_=(["_5help5_\'"])=_HELP))__==00(HELP6_()00=0=@=copy(term(_5help5_,5HELP%_)))
?_HELP%5_=_HELP%_=_5HELP0_=_HELP%_;
?- (phrase(["[([phrase^_HELP5_])\'"|[|]]((%{
to enjoy this file in swipl :
0x00: start wipl: $ swipl -g listing.
0x02: PASTE this email into swipl:
[user].
>Press-Ctrl-V<
>HERE<
>edIMPRESSED-contRATroll-VASEiktimns.np,nmmnsubit
<Manj-8131-Lxqe2> ERROR: toplevel: Undefined procedure: (-)/1 (DWIM could not correct goal)
<Manj-8131-Lxqe2> ?- :- meta_predicate(klear/0) /
<Manj-8131-Lxqe2> | predikat_meta(_p__red__ika__te_p_,_,__,___,void,undefined,undoclet:DUFF;& ;& ;& _(priv[^pub^lik^](rotek,p13rot,usenet.world.nmd.news,["["["["["["["["16"]"]"]2
<Manj-8131-Lxqe2> | ]gotten_to^+^---___taaa~a+ta2.3.14159265430-ved_sub__tree__nun____node+++++bluf~~~~~foldl(_,_,),WOW.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | :w
<Manj-8131-Lxqe2> | :w<cr>
<Manj-8131-Lxqe2> | <ESC>
<Manj-8131-Lxqe2> | ^d^D
<Manj-8131-Lxqe2> | ERROR: Stream user_input:183:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> ?- ^D
<Manj-8131-Lxqe2> | ERROR: Stream user_input:192:3 Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> ?- ^D^D
<Manj-8131-Lxqe2> | ERROR: Stream user_input:194:5 Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> ?-
<Manj-8131-Lxqe2> % halt
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ cat tr | head "+N%%%%%N+"
<Manj-8131-Lxqe2> head: cannot open '+N%%%%%N+' for reading: No such file or directory
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ cat - head 2>&1|head -1 "+N%%%%%N+"
<Manj-8131-Lxqe2> head: cannot open '+N%%%%%N+' for reading: No such file or directory
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ cat - head 2>&1|#1@2$3%4^%^6&7*8(9)0_-///**--++
<Manj-8131-Lxqe2> > bash: syntax error: unexpected end of file
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ cat - head 2>&1|#1@2$3%4^%^6&7*8(9)0_-///**--++
<Manj-8131-Lxqe2> > ^D^D^D
<Manj-8131-Lxqe2> bash: :s^D^D^: substitution failed
<Manj-8131-Lxqe2> > bash: syntax error: unexpected end of file
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ :w
<Manj-8131-Lxqe2> bash: :w: command not found
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ vim ebnf.wipler_.._,_`
<Manj-8131-Lxqe2> > `
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ ls
<Manj-8131-Lxqe2> _ questions__mailing_list.pl
<Manj-8131-Lxqe2> 2 rnc.kro
<Manj-8131-Lxqe2> apropos __rune__.kro
<Manj-8131-Lxqe2> b sample-ivy.rnc
<Manj-8131-Lxqe2> bash scenario.kro
<Manj-8131-Lxqe2> bekume_s server_ping.pl
<Manj-8131-Lxqe2> cut.pl sipl
<Manj-8131-Lxqe2> dump-dat-- swipl
<Manj-8131-Lxqe2> dump-dat--`date swipl2
<Manj-8131-Lxqe2> ebnf.krolognl term
<Manj-8131-Lxqe2> ebnf.wipler_.._,_ testing_framework_basic_0x01_success.test.pl
<Manj-8131-Lxqe2> echo testing.pl
<Manj-8131-Lxqe2> ezdebug.pl toc__dcg__primer__difference_list__intro.pl
<Manj-8131-Lxqe2> flow.strukture toc__dcg__primer__difference_list__sentence.docinfo.pl
<Manj-8131-Lxqe2> fork toc__dcg__primer__difference_list__sentence.pl
<Manj-8131-Lxqe2> global toc__dcg__primer__difference_list__sentence.plt
<Manj-8131-Lxqe2> guile toc__misc__term_expansion__0x01.pl
<Manj-8131-Lxqe2> identitea.transform toc__misc__term_expansion__0x01.plt
<Manj-8131-Lxqe2> kraven.pro toc__primer__goal__production__parsing.pl
<Manj-8131-Lxqe2> kraven.prolognl toc__primer__goal__production__parsing.plt
<Manj-8131-Lxqe2> krolog toc__primer__thread__determinism
<Manj-8131-Lxqe2> krolog.kro tr
<Manj-8131-Lxqe2> krolog.krolognl trustworthy.krolognl
<Manj-8131-Lxqe2> op.kro truthworthy.prolognl
<Manj-8131-Lxqe2> os-unix-usr-local-bin-krolog twixt
<Manj-8131-Lxqe2> os-unix-usr-local-bin-krolog.kro typescript
<Manj-8131-Lxqe2> project_framework.pl us_e_l_ast__fork__spn++++spn:frk
<Manj-8131-Lxqe2> __propagation___via__solver__.kro vi-five
<Manj-8131-Lxqe2> protocola.krologonl void
<Manj-8131-Lxqe2> questions xsb
<Manj-8131-Lxqe2> [sjhhsz@trambla pogammer]$ vi Pjs
<Manj-8131-Lxqe2> Mon Nov 16 16:51:18 UTC 2015
<Manj-8131-Lxqe2> [Hit return to continue] Mon Nov 16 16:54:03 UTC 2015
<Manj-8131-Lxqe2> [Hit return to continue] Mon Nov 16 08:55:12 PST 2015
<Manj-8131-Lxqe2> [Hit return to continue]
<Skid> Uhm.
<Manj-8131-Lxqe2> | | You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | .
<Manj-8131-Lxqe2> | ERROR: Syntax error: Operator expected
<Manj-8131-Lxqe2> | ERROR: shell
<Manj-8131-Lxqe2> | ERROR: ** here **
<Manj-8131-Lxqe2> | ERROR: "
<Manj-8131-Lxqe2> | foo" .
<Manj-8131-Lxqe2> | ?- op(__,__,"foo").
<Manj-8131-Lxqe2> | ERROR: op/3: Arguments are not sufficiently instantiated
<Manj-8131-Lxqe2> | ?- op(0,0,"foo"):-_0_#=_iIi_|eYe,gUaRdIa/nur\beavers\pund?ur UR. wuz/pund ur lak? yep! was spot beaver pond sjh month version 8.0.0-rel|^lror(draft,4["314#@$@#$"@3@#$@#$@#%%@$"@#@#$@#@#$@@#$@#$".
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: Syntax error: Operator expected
<Manj-8131-Lxqe2> | ERROR: op(0,0,"foo"):-_0
<Manj-8131-Lxqe2> | ERROR: ** here **
<Manj-8131-Lxqe2> | ERROR: _#=_iIi_|eYe,gUaRdIa/nur\beavers\pund?ur UR .
<Manj-8131-Lxqe2> | ?- tr((b),((a)d)ebble)inkTHAdevil!
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:95:31 Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> | ?- deemed low and sincere dub hip-hop.
<Manj-8131-Lxqe2> | ERROR: Syntax error: Operator expected
<Manj-8131-Lxqe2> | ERROR: deemed
<Manj-8131-Lxqe2> | ERROR: ** here **
<Manj-8131-Lxqe2> | ERROR: low and sincere dub hip-hop .
<Manj-8131-Lxqe2> | ?- [user].
<Manj-8131-Lxqe2> | [:lower:]
<Manj-8131-Lxqe2> | |: all lower case letters
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [:print:]
<Manj-8131-Lxqe2> | |: all printable characters, including space
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [:punct:]
<Manj-8131-Lxqe2> | |: all punctuation characters
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [:space:]
<Manj-8131-Lxqe2> | |: all horizontal or vertical whitespace
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [:upper:]
<Manj-8131-Lxqe2> | |: all upper case letters
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [:xdigit:]
<Manj-8131-Lxqe2> | |: all hexadecimal digits
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: [=CHAR=]
<Manj-8131-Lxqe2> | |: all characters which are equivalent to CHAR
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: Translation occurs if -d is not given and both SET1 and SET2 appear. -t may be used only when
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:103:9: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: translating. SET2 is extended to length of SET1 by repeating its last character as necessary.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:126:5: Syntax error: Operator expected
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:129:19: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: Excess characters of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to expand in
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:132:15: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: ascending order; used in SET2 while translating, they may only be used in pairs to specify case
<Manj-8131-Lxqe2> | |: conversion. -s uses SET1 if not translating nor deleting; else squeezing uses SET2 and occurs
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:134:7: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: after translation or deletion.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:138:7: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: AUTHOR
<Manj-8131-Lxqe2> | |: Written by Jim Meyering.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:144:6: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: REPORTING BUGS
<Manj-8131-Lxqe2> | |: GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
<Manj-8131-Lxqe2> | |: Report tr translation bugs to <http://translationproject.org/team/>
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: COPYRIGHT
<Manj-8131-Lxqe2> | |: Copyright (c) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:148:10: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: <http://gnu.org/licenses/gpl.html>.
<Manj-8131-Lxqe2> | |: This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:155:12: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |: extent permitted by law.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ERROR: user://2:159:14: Syntax error: Operator expected
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: SEE ALSO
<Manj-8131-Lxqe2> | |: Full documentation at: <http://www.gnu.org/software/coreutils/tr>
<Manj-8131-Lxqe2> | |: or available locally via: info '(coreutils) tr invocation'
<Manj-8131-Lxqe2> | |:
<Manj-8131-Lxqe2> | |: GNU coreutils 8.24 July 2015 TR(1)
<Manj-8131-Lxqe2> | |: Manual page tr(1) line 77/123 (END) (press h for help or q to quit)
<Manj-8131-Lxqe2> | |: ERROR: user://2:169:68: Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> | |: true.
<Manj-8131-Lxqe2> |
<Manj-8131-Lxqe2> | ?- clear.
<Manj-8131-Lxqe2> | ERROR: toplevel: Undefined procedure: clear/0 (DWIM could not correct goal)
<Manj-8131-Lxqe2> | ?- clear:-klear.
<Manj-8131-Lxqe2> | ERROR: Undefined procedure: (:-)/2
<Manj-8131-Lxqe2> | ERROR: Rules must be loaded from a file
<Manj-8131-Lxqe2> | ERROR: See FAQ at http://www.swi-prolog.org/FAQ/ToplevelMode.txt
<Manj-8131-Lxqe2> | ?- klearL-impl.
<Manj-8131-Lxqe2> | ERROR: toplevel: Undefined procedure: (-)/2 (DWIM could not correct goal)
<Manj-8131-Lxqe2> | ?- -(klear).
<Manj-8131-Lxqe2> | ERROR: toplevel: Undefined procedure: (-)/1 (DWIM could not correct goal)
<Manj-8131-Lxqe2> | ?- :- meta_predicate(klear/0) /
<Manj-8131-Lxqe2> | | predikat_meta(_p__red__ika__te_p_,_,__,___,void,undefined,undoclet:DUFF;& ;& ;& _(priv[^pub^lik^](rotek,p13rot,usenet.world.nmd.news,["["["["["["["["16"]"]"]2
<Manj-8131-Lxqe2> | | ]gotten_to^+^---___taaa~a+ta2.3.14159265430-ved_sub__tree__nun____node+++++bluf~~~~~foldl(_,_,),WOW.
<Manj-8131-Lxqe2> | |
<Manj-8131-Lxqe2> | | :w
<Manj-8131-Lxqe2> | | :w<cr>
<Manj-8131-Lxqe2> | | <ESC>
<Manj-8131-Lxqe2> | | ^d^D
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:183:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- ^D
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:192:3 Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> | ?- ^D^D
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:194:5 Syntax error: Unexpected end of file
<Manj-8131-Lxqe2> | ?-
<Manj-8131-Lxqe2> | % halt
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ cat tr | head "+N%%%%%N+"
<Manj-8131-Lxqe2> | head: cannot open '+N%%%%%N+' for reading: No such file or directory
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ cat - head 2>&1|head -1 "+N%%%%%N+"
<Manj-8131-Lxqe2> | head: cannot open '+N%%%%%N+' for reading: No such file or directory
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ cat - head 2>&1|#1@2$3%4^%^6&7*8(9)0_-///**--++
<Manj-8131-Lxqe2> | > bash: syntax error: unexpected end of file
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ cat - head 2>&1|#1@2$3%4^%^6&7*8(9)0_-///**--++
<Manj-8131-Lxqe2> | > ^D^D^D
<Manj-8131-Lxqe2> | bash: :s^D^D^: substitution failed
<Manj-8131-Lxqe2> | > bash: syntax error: unexpected end of file
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ :w
<Manj-8131-Lxqe2> | bash: :w: command not found
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ vim ebnf.wipler_.._,_`
<Manj-8131-Lxqe2> | > `
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ ls
<Manj-8131-Lxqe2> | _ questions__mailing_list.pl
<Manj-8131-Lxqe2> | 2 rnc.kro
<Manj-8131-Lxqe2> | apropos __rune__.kro
<Manj-8131-Lxqe2> | b sample-ivy.rnc
<Manj-8131-Lxqe2> | bash scenario.kro
<Manj-8131-Lxqe2> | bekume_s server_ping.pl
<Manj-8131-Lxqe2> | cut.pl sipl
<Manj-8131-Lxqe2> | dump-dat-- swipl
<Manj-8131-Lxqe2> | dump-dat--`date swipl2
<Manj-8131-Lxqe2> | ebnf.krolognl term
<Manj-8131-Lxqe2> | ebnf.wipler_.._,_ testing_framework_basic_0x01_success.test.pl
<Manj-8131-Lxqe2> | echo testing.pl
<Manj-8131-Lxqe2> | ezdebug.pl toc__dcg__primer__difference_list__intro.pl
<Manj-8131-Lxqe2> | flow.strukture toc__dcg__primer__difference_list__sentence.docinfo.pl
<Manj-8131-Lxqe2> | fork toc__dcg__primer__difference_list__sentence.pl
<Manj-8131-Lxqe2> | global toc__dcg__primer__difference_list__sentence.plt
<Manj-8131-Lxqe2> | guile toc__misc__term_expansion__0x01.pl
<Manj-8131-Lxqe2> | identitea.transform toc__misc__term_expansion__0x01.plt
<Manj-8131-Lxqe2> | kraven.pro toc__primer__goal__production__parsing.pl
<Manj-8131-Lxqe2> | kraven.prolognl toc__primer__goal__production__parsing.plt
<Manj-8131-Lxqe2> | krolog toc__primer__thread__determinism
<Manj-8131-Lxqe2> | krolog.kro tr
<Manj-8131-Lxqe2> | krolog.krolognl trustworthy.krolognl
<Manj-8131-Lxqe2> | op.kro truthworthy.prolognl
<Manj-8131-Lxqe2> | os-unix-usr-local-bin-krolog twixt
<Manj-8131-Lxqe2> | os-unix-usr-local-bin-krolog.kro typescript
<Manj-8131-Lxqe2> | project_framework.pl us_e_l_ast__fork__spn++++spn:frk
<Manj-8131-Lxqe2> | __propagation___via__solver__.kro vi-five
<Manj-8131-Lxqe2> | protocola.krologonl void
<Manj-8131-Lxqe2> | questions xsb
<Manj-8131-Lxqe2> | [sjhhsz@trambla pogammer]$ vi Pjs
<Manj-8131-Lxqe2> | Mon Nov 16 16:51:18 UTC 2015
<Manj-8131-Lxqe2> | [Hit return to continue] Mon Nov 16 16:54:03 UTC 2015
<Manj-8131-Lxqe2> | [Hit return to continue] Mon Nov 16 08:55:12 PST 2015
<Manj-8131-Lxqe2> | [Hit return to continue]
<Manj-8131-Lxqe2> |
<Skid> Well, that's now.
* ChanServ gives channel operator status to mrdata
* xk_id (~xk_id@unaffiliated/xk-id/x-0573425) has joined
* You have been kicked from ##art by mrdata (Manj-8131-Lxqe2)
* Disconnected (Remote host closed socket)
* Manj-8131-Lxqe sets mode +Z on Manj-8131-Lxqe
* Manj-8131-Lxqe sets mode +i on Manj-8131-Lxqe
* Disconnected (Remote host closed socket)
No channel joined. Try /join #<channel>
TO ENJOTy ..
(00) insteadm KUT N PASTE THIS MSG FROM THIS EMAIL>>>>>>>>>>dump kut;npast; into swipl, i.e:

?- [user].
>Ctrl-v<>Ctrl-d3times>

(1) SAVE this file i.e. file:@local:./~/Downloads/FRAKwhatever.txt
* Loaded log from Mon Nov 16 12:26:44 2015

* Now talking on ##art
* Topic for ##art is: welcome to ##art -- ways of seeing https://www.youtube.com/watch?v=0pDE4VX_9Kk -- how to draw realistic hands https://www.youtube.com/watch?v=Q_PZ09Qlssw -- 13 watercolor techniques https://www.youtube.com/watch?v=K-KYHJriivw
* Topic for ##art set by ra (Mon Jun 15 12:03:59 2015)
<Manj-8131-Lxqe3> ahref="magnetz:0x9123457645362416x0edcbadcbdeafbcffx00yA1__">%TopikKLNIEKKludge:sudo:~\WHOis'sam''heisz"'.
<Skid> Here it goes again.
* Skid pings mrdata_
<Manj-8131-Lxqe3> <a data-href="magnetz:0x9123457645362416x0edcbadcbdeafbcffx00yA1__">%TopikKLNIEKKludge:sudo:~\WHOis'sam''heisz"'.</TITLE:manifest/intnsion.<\TITLE/></tITle/i/tt/le/little TITLE lik <TITLE @title=@"" | @tit:lul!sux!!sox|sox|snd|yap|swipl&
<Manj-8131-Lxqe3> .---------._____________ `-.__/ : /` ./_-----/':
<Manj-8131-Lxqe3> _.--.__ _.--.
<Manj-8131-Lxqe3> ./' `--.__ ..-' ,'
<Manj-8131-Lxqe3> ,/ |`-.__ .' ./
<Manj-8131-Lxqe3> :, : `--_ __ .' ,./'_.....
<Manj-8131-Lxqe3> : : / `-:' _\. .' ./..-' _.'
<Manj-8131-Lxqe3> : ' ,' : / \ : .' `-'__...-'
<Manj-8131-Lxqe3> `. .' . : \@/ : .' '------.,
<Manj-8131-Lxqe3> ._....____ ./ : .. ` : .-' _____.----'
<Manj-8131-Lxqe3> `------------' : | `..-' `---.
<Manj-8131-Lxqe3> .---' : ./ _._-----'
<Manj-8131-Lxqe3> .---------._____________ `-.__/ : /` ./_-----/': `---...--. `-_| `.`-._______-' / / ,-----.__----.
<Manj-8131-Lxqe3> ,----' ,__. . | / `\.________./ ====__....._____.'
<Manj-8131-Lxqe3> `-___--.-' ./. .-._-'----\. ./.---..____.--.
<Manj-8131-Lxqe3> :_.-' '-' `.. .-'===.__________.'
<Manj-8131-Lxqe3> `--...__.--'
<Manj-8131-Lxqe3> X .---------._____________ `-.__/ : /` ./_-----/': X Who IZ Is os0x01#=%:2::KAN::3:MAS:== toucan sam ???:==\= ~ +/\ --&&^bagof^X^bagof([([([X]) ,+TRU-se--ail+rusthWirthyWeart%|%%|||CA_en.wikipedia/cos{ys[{tm.TE.t.r.a.d.e.m.a.r.lT.I.D.em.a.r.k.M.A.R.K.W.X.Y.Z.w.x.y.z..[,c,h,a,n,g, m` W .---------._____________ `-.__/ : /` ./_-----/': V y Y X x pqrquxquimnnsnpmnzdnmdaemon:i net-d_; rotBOT13. .---------._____________ `-.__/ : /`
<Manj-8131-Lxqe3> ./_-----/':
* glasz (~qua...@220.141.75.86.rev.sfr.net) has joined
<Manj-8131-Lxqe3> ^V^M .---------._____________ `-.__/ : /` ./_-----/':^V^M^V^M^m^mm^M^M^M^M^V^V^M^M^M^M^M
* stoned is now known as OpenSores
<Skid> Seriously though, what is this?
* OpenSores is now known as stoned
* Cannot join #Art (Channel is invite only)
* stoned is now known as High
<mrdata_> hi Skid whats up
<mrdata_> Skid, that looks like a squid
<Skid> Just Manj dumping broken... HTML? XML? into the channel.
<mrdata_> mhm.. or was; for how long?
<mrdata_> ok only briefly
<Skid> Just the screenful.
<mrdata_> Manj-8131-Lxqe3, i dont like it when bots dump spam into the channel, are you a bot?
* ChanServ gives channel operator status to mrdata_
<Skid> It looks like a linux command line leaking.
* mrdata_ sets quiet on *!*@*.cc.shawcable.net
<mrdata_> hmm.. that might be too broad
<mrdata_> anyone ewlse here on cc.shawcable.net?
<matthiaskrgr> I fMrTATHERghasterGHASTLYghoust.ear nobody will answer this question with "yes" :P
<mrdata_> pm me if you cant talk\
<Skid> I'm on ca.shawcable.net. So close, but no. =p
* xk_id (~xk_id@unaffiliated/xk-id/x-0573425) has joined
<mrdata_> ok, good for now
* mrdata_ removes channel operator status from mrdata_
<Manj-8131-Lxqe3> It's ##art. look i got it from the winipaedia sandbox page, someone drew it/ Yes there is some leak from the mud system, but it is intentional. Imagine for a second tht you were an expert kom[puter programmer AND NBOT SOM QUICK to fucking jump aklk over something yuou do not un derstand,
* ##art :Cannot send to channel
<Manj-8131-Lxqe3> '<a data-href="magnetz:0x9123457645362416x0edcbadcbdeafbcffx00yA1__">%TopikKLNIEKKludge:sudo:~\WHOis'sam''heisz"'.</TITLE:manifest/intnsion.<\TITLE/></tITle/i/tt/le/little TITLE lik <TITLE @title=@"" | @tit:lul!sux!!sox|sox|snd|yap|swipl&
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> .---------._____________ `-.__/ : /` ./_-----/':
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> _.--.__ _.--.
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ./' `--.__ ..-' ,'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ,/ |`-.__ .' ./
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> :, : `--_ __ .' ,./'_.....
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> : : / `-:' _\. .' ./..-' _.'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> : ' ,' : / \ : .' `-'__...-'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> `. .' . : \@/ : .' '------.,
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ._....____ ./ : .. ` : .-' _____.----'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> `------------' : | `..-' `---.
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> .---' : ./ _._-----'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> .---------._____________ `-.__/ : /` ./_-----/': `---...--. `-_| `.`-._______-' / / ,-----.__----.
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ,----' ,__. . | / `\.________./ ====__....._____.'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> `-___--.-' ./. .-._-'----\. ./.---..____.--.
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> :_.-' '-' `.. .-'===.__________.'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> `--...__.--'
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> X .---------._____________ `-.__/ : /` ./_-----/': X Who IZ Is os0x01#=%:2::KAN::3:MAS:== toucan sam ???:==\= ~ +/\ --&&^bagof^X^bagof([([([X]) ,+TRU-se--ail+rusthWirthyWeart%|%%|||CA_en.wikipedia/cos{ys[{tm.TE.t.r.a.d.e.m.a.r.lT.I.D.em.a.r.k.M.A.R.K.W.X.Y.Z.w.x.y.z..[,c,h,a,n,g, m` W .---------._____________ `-.__/ : /` ./_-----/': V y Y X x pqrquxquimnnsnpmnzdnmdaemon:i net-d_; rotBOT13. .---------.__________
<Manj-8131-Lxqe3> ___ `-.__/ : /`
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ./_-----/':
<Manj-8131-Lxqe3> * glasz (~qua...@220.141.75.86.rev.sfr.net) has joined
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> ^V^M .---------._____________ `-.__/ : /` ./_-----/':^V^M^V^M^m^mm^M^M^M^M^V^V^M^M^M^M^M
<Manj-8131-Lxqe3> * stoned is now known as OpenSores
<Manj-8131-Lxqe3> <Skid> Seriously though, what is this?
<Manj-8131-Lxqe3> * OpenSores is now known as stoned
<Manj-8131-Lxqe3> * Cannot join #Art (Channel is invite only)
<Manj-8131-Lxqe3> * stoned is now known as High
<Manj-8131-Lxqe3> <mrdata_> hi Skid whats up
<Manj-8131-Lxqe3> <mrdata_> Skid, that looks like a squid
<Manj-8131-Lxqe3> <Skid> Just Manj dumping broken... HTML? XML? into the channel.
<Manj-8131-Lxqe3> <mrdata_> mhm.. or was; for how long?
<Manj-8131-Lxqe3> <mrdata_> ok only briefly
<Manj-8131-Lxqe3> <Skid> Just the screenful.
<Manj-8131-Lxqe3> <mrdata_> Manj-8131-Lxqe3, i dont like it when bots dump spam into the channel, are you a bot?
<Manj-8131-Lxqe3> * ChanServ gives channel operator status to mrdata_
<Manj-8131-Lxqe3> <Skid> It looks like a linux command line leaking.
<Manj-8131-Lxqe3> * mrdata_ sets quiet on *!*@*.cc.shawcable.net
<Manj-8131-Lxqe3> <mrdata_> hmm.. that might be too broad
<Manj-8131-Lxqe3> <mrdata_> anyone ewlse here on cc.shawcable.net?
<Manj-8131-Lxqe3> <matthiaskrgr> I fear nobody will answer this question with "yes" :P
<Manj-8131-Lxqe3> <mrdata_> pm me if you cant talk\
<Manj-8131-Lxqe3> <Skid> I'm on ca.shawcable.net. So close, but no. =p
<Manj-8131-Lxqe3> * xk_id (~xk_id@unaffiliated/xk-id/x-0573425) has joined
<Manj-8131-Lxqe3> <mrdata_> ok, good for now
<Manj-8131-Lxqe3> * mrdata_ removes channel operator status from mrdata_
<Manj-8131-Lxqe3> <Manj-8131-Lxqe3> It's ##art. look i got it from the winipaedia sandbox page, someone drew it/ Yes there is some leak from the mud system, but it is intentional. Imagine for a second tht you were an expert kom[puter programmer AND NBOT SOM QUICK to fucking jump jjjjjjjjjIt's ##art. look i got it from the winipaedia sandbox page, someone drew it/ Yes there is some leak from the mud system, but it is intentional. Imagine for
<Manj-8131-Lxqe3> a second tht you were an expert kom[puter programmer AND NBOT SOM QUICK to fucking jump aklk over something yuou do not un derstand,
<Manj-8131-Lxqe3> * ##art :Cannot send to channelkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkKkLplpOpuL.fild([..[aklk over something yuou do not un derstand,
<Manj-8131-Lxqe3> * ##art :Cannot send to channel
* ##art :Cannot ##art send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
* ##art :Cannot send to channel
<Manj-8131-Lxqe3> ##art
* ##art :Cannot send to channel
<Manj-8131-Lxqe3> javascript:;
* ##art :Cannot send to channel

hack...@gmail.com

unread,
Dec 3, 2015, 10:46:35 AM12/3/15
to
On Thursday, December 3, 2015 at 7:02:29 AM UTC-8, hack...@gmail.com wrote:
> ?-
? ?- You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . SUST
> ?= system("swipl -g listing").
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted stringYou accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted stringYou accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml
<Manj-8131-Lxqe2> | | ERROR: Stream user_input:75:1 Syntax error: End of file in quoted string
<Manj-8131-Lxqe2> | ?- shell "
<Manj-8131-Lxqe2> | | foo"
<Manj-8131-Lxqe2> | | . You accepted the view of your sudo passworsd .k =(_1accept,2ebnf,3"recursive-decent-wikaepedia--code-^x|r,o<--<!--<~--<``!_^??@@&&== ~ ~ ~::==spaace~sips~name - PLACE[PLACE,[[[nmd]]]]$<cr><return*-[es(c<jmxxx:ml

hack...@gmail.com

unread,
Dec 3, 2015, 10:48:48 AM12/3/15
to
> > * ##art :Cannot ...

<div class="IVILX2C-vb-r"> <table width="100%"> <tbody><tr> <td class="IVILX2C-vb-g"> <label> By <span></span> </label> </td> <td class="IVILX2C-vb-t"> <div class="IVILX2C-vb-d"><div data-name="me" data-userid="102907186815666271099" aria-label="My profile photo" class="IVILX2C-vb-c g-hovercard"><img style="width: 19px; height: 19px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAA7ElEQVR42s2USQuCUBSF/c0VNO+KNq4iqFVpk4FKA2HUogFKK6J1/YfoOUerm88GKCRLJFt8CG/xwT3nIJHjDuAXRIg6gl/8TpZoIKiMdeisTaAmOiSbyLusvzFB2p8fCNsThGkPsgwnP4nuZHk5YBmmvXo+s2tl5+lMTKyOoDjUgJNMKI00iDfQH0wjxSAguwqUrWkwc8P+kj3Ffv9YFq0hqE51EB3Cx+D32ky3I3CV8UvTUfIKHrKrrLUwPpKxkuEui1jVs+J7IW43Qn9RQF5Q7VPE3S2r3XVnhYHqfRq4kLTVoFPgwf2CvuUC4EVlZAJfVNwAAAAASUVORK5CYII=" class="gwt-Image" width="19" height="19"></div></div> <span style="" class="IVILX2C-vb-D">me</span> <div class="IVILX2C-vb-u"><span><span> (<span>Hack Ster</span> <a target="_self" href="javascript:;" tabindex="0" class="IVILX2C-b-Mb">change</a>) </span> <span style="display:none"> <input size="25" maxlength="50" title="Display name" class="gwt-TextBox" type="text"> <div class="IVILX2C-b-Q" style="display:none"></div> </span></span></div> </td> </tr> <tr style="display:none"> <td colspan="2"> <div aria-hidden="true" style="display: none;"><span class="gwt-CheckBox IVILX2C-F-j"><span tabindex="0" role="checkbox" class="IVILX2C-F-a"><span class="IVILX2C-F-h"></span></span><label class="IVILX2C-F-i" for="gwt-uid-16004"></label></span> <span style="display:none"> <span class="IVILX2C-b-pb"> Link to my <a href="javascript:;" target="_blank" class="gwt-Anchor IVILX2C-c-a">Google profile</a> and show my photo on posts </span> <label class="IVILX2C-b-rb"> Link to my Google profile and show my photo on posts </label> </span> <span style="display:none"> <span class="IVILX2C-b-pb"> Link to my <span class="IVILX2C-wc-a"></span> <a href="javascript:;" target="_blank" class="gwt-Anchor IVILX2C-c-a">profile</a> and show my photo on posts </span> <label class="IVILX2C-b-rb"> Link to my <span class="IVILX2C-wc-a"></span> profile and show my photo on posts </label> </span></div> </td> </tr> <tr aria-hidden="true" style="display: none;"> <td class="IVILX2C-vb-g"> <label for="p-s-3">Subject</label> </td> <td class="IVILX2C-vb-t"> <div><input maxlength="100" dir="ltr" id="p-s-3" class="IVILX2C-vb-h" type="text"></div> </td> </tr> <tr class="IVILX2C-vb-i" style="display:none;"> <td class="IVILX2C-vb-g"> <label for="p-cc-3"> Cc </label> </td> <td class="IVILX2C-vb-t"> <div style=""><span aria-hidden="true" style="display: none;" class="IVILX2C-vb-j"><a class="IVILX2C-vb-v" href="javascript:;">All</a><a class="IVILX2C-vb-v" href="javascript:;">None</a></span></div> <input aria-autocomplete="list" role="combobox" id="p-cc-3" class="IVILX2C-vb-h" type="text"> <div class="IVILX2C-vb-f"> comma separated </div> </td> </tr> <tr style="display:none;"> <td class="IVILX2C-vb-g"> Type of post </td> <td class="IVILX2C-vb-t"> <div aria-hidden="true" style="display: none;" class="IVILX2C-vb-C"></div> </td> </tr> <tr class="IVILX2C-vb-i" style="display:none;"> <td class="IVILX2C-vb-g"> <label for="gwt-uid-16051"> Categories </label> </td> <td class="IVILX2C-vb-t"> <div id="gwt-uid-16051"></div> </td> </tr> </tbody></table> <table class="IVILX2C-vb-b"> <tbody><tr valign="top"> <td> </td> <td> <img alt="Attach a file" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAVElEQVR42mNgGAWjgKYgAIjvA/F/EvB+IBbAZyBIUQMQKxDpCAMgPg81GCu4DzUQBgoIuBAGFND4KOA/mjf+Q11PCFDdUKp7n2YRRfUkNQpGARYAABKmOctH23lDAAAAAElFTkSuQmCC" class="gwt-Image" width="21" height="21"> </td> <td> <table cellpadding="0" cellspacing="0"><tbody></tbody></table> <a href="javascript:;">Attach a file</a> </td> <td> </td> <td> <a style="" class="IVILX2C-vb-v" href="javascript:;">Edit subject</a> </td> <td> <a style="" class="IVILX2C-vb-v" href="javascript:;">Quote original</a> </td> <td> <a class="IVILX2C-vb-v" href="javascript:;">Add Cc</a> </td> <td class="IVILX2C-vb-e"> </td> <td style="vertical-align: top;"> <div style="margin-left: -15px;"> </div> </td> </tr> </tbody></table> <div class="IVILX2C-vb-k"><div id="tb_content"><div id="tb-p-b-3"><div tabindex="-1" role="toolbar" style="-moz-user-select: none;" class="goog-toolbar goog-toolbar-horizontal"><div aria-activedescendant=":c" aria-disabled="false" id="+fontName" aria-haspopup="true" aria-expanded="false" style="-moz-user-select: none;" role="listbox" title="Font" class="goog-inline-block goog-toolbar-menu-button tr-fontName goog-toolbar-select"><div class="goog-inline-block goog-toolbar-menu-button-outer-box"><div class="goog-inline-block goog-toolbar-menu-button-inner-box"><div aria-posinset="1" aria-setsize="6" role="option" id=":c" class="goog-inline-block goog-toolbar-menu-button-caption">Normal</div><div class="goog-inline-block goog-toolbar-menu-button-dropdown">&nbsp;</div></div></div></div><div aria-activedescendant=":d" aria-disabled="false" id="+fontSize" aria-haspopup="true" aria-expanded="false" style="-moz-user-select: none;" role="listbox" title="Font size" class="goog-inline-block goog-toolbar-menu-button tr-fontSize goog-toolbar-select"><div class="goog-inline-block goog-toolbar-menu-button-outer-box"><div class="goog-inline-block goog-toolbar-menu-button-inner-box"><div aria-posinset="0" aria-setsize="4" role="option" id=":d" class="goog-inline-block goog-toolbar-menu-button-caption">Normal</div><div class="goog-inline-block goog-toolbar-menu-button-dropdown">&nbsp;</div></div></div></div><div aria-disabled="false" id="+bold" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Bold" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-bold"></div></div></div></div><div aria-disabled="false" id="+italic" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Italic" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-italic"></div></div></div></div><div aria-disabled="false" id="+underline" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Underline" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-underline"></div></div></div></div><div aria-disabled="false" id="+foreColor" aria-haspopup="false" aria-expanded="false" style="-moz-user-select: none;" role="button" title="Text color" class="goog-inline-block goog-toolbar-menu-button goog-toolbar-color-menu-button"><div class="goog-inline-block goog-toolbar-menu-button-outer-box"><div class="goog-inline-block goog-toolbar-menu-button-inner-box"><div class="goog-inline-block goog-toolbar-menu-button-caption"><div style="border-bottom-color: rgb(34, 34, 34);" class="goog-color-menu-button-indicator"><div class="tr-icon tr-foreColor"></div></div></div><div class="goog-inline-block goog-toolbar-menu-button-dropdown">&nbsp;</div></div></div></div><div aria-disabled="false" id="+backColor" aria-haspopup="false" aria-expanded="false" style="-moz-user-select: none;" role="button" title="Text background color" class="goog-inline-block goog-toolbar-menu-button goog-toolbar-color-menu-button"><div class="goog-inline-block goog-toolbar-menu-button-outer-box"><div class="goog-inline-block goog-toolbar-menu-button-inner-box"><div class="goog-inline-block goog-toolbar-menu-button-caption"><div style="border-bottom-color: transparent;" class="goog-color-menu-button-indicator"><div class="tr-icon tr-backColor"></div></div></div><div class="goog-inline-block goog-toolbar-menu-button-dropdown">&nbsp;</div></div></div></div><div aria-disabled="false" id="image" style="-moz-user-select: none;" role="button" title="Insert image" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-image"></div></div></div></div><div aria-disabled="false" id="+link" style="-moz-user-select: none;" role="button" title="Add or remove link" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-link">Link</div></div></div></div><div aria-disabled="false" id="+insertOrderedList" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Numbered list" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-insertOrderedList"></div></div></div></div><div aria-disabled="false" id="+insertUnorderedList" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Bulleted list" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-insertUnorderedList"></div></div></div></div><div aria-disabled="false" id="+indent" style="-moz-user-select: none;" role="button" title="Increase indent" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-indent"></div></div></div></div><div aria-disabled="false" id="+outdent" style="-moz-user-select: none;" role="button" title="Decrease indent" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-outdent"></div></div></div></div><div aria-disabled="false" id="+BLOCKQUOTE" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Quote" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-BLOCKQUOTE"></div></div></div></div><div aria-disabled="false" id="+justifyLeft" aria-pressed="true" style="-moz-user-select: none;" role="button" title="Align left" class="goog-inline-block goog-toolbar-button goog-toolbar-button-checked"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-justifyLeft"></div></div></div></div><div aria-disabled="false" id="+justifyCenter" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Align center" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-justifyCenter"></div></div></div></div><div aria-disabled="false" id="+justifyRight" aria-pressed="false" style="-moz-user-select: none;" role="button" title="Align right" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-justifyRight"></div></div></div></div><div aria-disabled="false" id="+removeFormat" style="-moz-user-select: none;" role="button" title="Remove formatting" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="tr-icon tr-removeFormat"></div></div></div></div><div aria-disabled="false" id="+prettify" style="-moz-user-select: none;" role="button" title="Highlight code syntax" class="goog-inline-block goog-toolbar-button"><div class="goog-inline-block goog-toolbar-button-outer-box"><div class="goog-inline-block goog-toolbar-button-inner-box"><div class="IVILX2C-Q-c"></div></div></div></div></div></div><div style="position: relative; overflow: visible; line-height: 0;" class="IVILX2C-vb-E editable" id="p-b-3">&nbsp;<iframe style="padding: 0px; position: absolute; top: 0px; left: 0px; width: 1060px; height: 200px; visibility: visible; margin: -5px;" frameborder="0"></iframe></div></div></div> <div aria-hidden="true" style="display: none;" class="IVILX2C-vb-A"><div style="" class="IVILX2C-Mc-f"><label for="gwt-uid-15992" class="IVILX2C-Mc-d">Group permits up to 14 comma-separated tags on a topic</label> <div id="gwt-uid-15992" class="IVILX2C-Vc-a"><div class="IVILX2C-Vc-b"></div> <div class="IVILX2C-Vc-d"><input class="IVILX2C-Vc-c" type="text"></div></div> <div class="IVILX2C-Mc-d" style="display:none"> only suggested tags can be used </div> <div class="IVILX2C-Mc-d IVILX2C-Mc-g"> suggested tags: <span><a href="javascript:;" class="IVILX2C-Mc-e">C</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">string</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">git</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">github</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">bugzilla</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">issue</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">reporting</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">REST</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">HTTP</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">CFP</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">JSON</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">streams</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">CORS</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">gtrace</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">debugging</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">java</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">interface</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">query</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">write</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">random</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">integer</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">nth0</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">MATLAB</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">SWIPROLOG</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">trace</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">debug</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">ODBC</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">Prolog</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">JPL</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">jvm</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">SWI-Prolog</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">visualization</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">javascript</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">not</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">memory</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">performance</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">excel</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">vba</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">excel-vba</a><span class="IVILX2C-Mc-d"><b>&nbsp;·&nbsp; <b></b></b></span><a href="javascript:;" class="IVILX2C-Mc-e">XPCE</a></span></div> <div aria-hidden="true" class="IVILX2C-Mc-b" style="display:none;"></div></div></div> <div class="IVILX2C-vb-a"> <div aria-disabled="false" class="IVILX2C-n-a jfk-button-default IVILX2C-vb-y" role="button" tabindex="0"><input style="opacity: 0; height: 1px; width: 1px; z-index: -1; overflow: hidden; position: absolute;" role="presentation" tabindex="-1" type="text"><span class="IVILX2C-n-e">Post</span></div> <div aria-disabled="false" class="IVILX2C-n-a jfk-button-standard" role="button" tabindex="0"><input style="opacity: 0; height: 1px; width: 1px; z-index: -1; overflow: hidden; position: absolute;" role="presentation" tabindex="-1" type="text"><span class="IVILX2C-n-e">Discard</span></div> </div> </div>

Jan Burse

unread,
Dec 3, 2015, 12:54:22 PM12/3/15
to
WTF?

o_.-"` `\
.--. _ `'-._.-'""-; _
.' \`_\_ {_.-a"a-} _ / \
_/ .-' '. {c-._o_.){\|` |
(@`-._ / \{ ^ } \\ _/
`~\ '-._ /'. } \} .-.
|>:< '-.__/ '._,} \_/ / ())
| >:< `'---. ____'-.|(`"`
\ >:< \\_\\_\ | ;
\ \\-{}-\/ \
\ '._\\' /)
'. /(
`-._ _____ _ _____ __.'\ \
/ \ / \ / \ \ \
jgs _.'/^\'._.'/^\'._.'/^\'.__) \
,==' `---` '---' '---' )
`"""""""""""""""""""""""""""""""`



R Kym Horsell

unread,
Dec 3, 2015, 4:17:01 PM12/3/15
to
Seasons greetings.

--
"Beam me up, Scotty" [Scotty, beam us up] is similar to the phrase,
"Just the facts, ma'am" [All we want are the facts ma'am], attributed
to Jack Webb's character of Joe Friday on Dragnet, "It's elementary,
my dear Watson" [this one originated from a radio play], attributed to
Sherlock Holmes, "Luke, I am your father", attributed to Darth Vader,
or "Play it again, Sam", attributed to Ilsa Lund in Casablanca and "We
don't need no stinkin' badges!" attributed to Gold Hat in The Treasure
of the Sierra Madre. All five lines are the best known quotations from
these works for many viewers, but not one is an actual, direct quotation.
-- wikipedia

hack...@gmail.com

unread,
Dec 4, 2015, 12:28:36 AM12/4/15
to
<div class="asciirightmain">







<div class="artdescription">Skeleton - Skeletons - Skull - Skulls - Halloween - Scary - Crossbones <br>


<div id="art1">
<form action="">
<input type="button" value="Light on Dark" onclick="toggle1()" class="artinvert" name="artinvertbutton" id="btn">
</form>
<div class="masterstyle">Note: You can click on the button above to toggle light and dark.<br>You can also click on the button that floats on the right side of the screen. ---&gt;<br><br>



<script type="text/javascript">&lt;!--
google_ad_client = "pub-4074990861294766";
/* With Art - Larger */
google_ad_slot = "0542079692";
google_ad_width = 728;
google_ad_height = 90;
//--&gt;
</script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>



</div>




<pre>
:oooooooooo:
::oOOOOooo:::::ooooO88Oo:
:oOOo: :oO8O:
:O8O: oO8o
O8O: :OO:
o8o :8o
88: O8:
o8o :8o
8O: oO
8o oO
8o Oo
:8o : :8:
:8: : :8:
:8: :o oO
O::o oo 8:
:o:ooO oo o8
8 oo :o 8o
oo 8o OO: :8
8 o8: O8O: 8:
:o :88 :8O :O
o: ::88: O8 8
8 888: O8o O
:8 :88: 888Ooo: oo
oo oO8: 888888o :O
Oo O88 :oO88O: oO88Oo: O8888O :O
O: :: :88 :oO888888888: 8888888888OOo: 8888: :O
O: :o 8o o88888888888888: 88888888888888O: o88 :O
Oo oo oO o888888888888888O 8888888888888888o 88 :O
:O O: oo 8888888888888888: o88888888888888888 88 :O
8 :o:8: 8888888888888888::: :8888888888888888 o888o:::8O
O: :88: O88888888888888888 O888888888888888 o88888888O
o :8O o888888888888888O O88888888888888O 88888888o
O: :8: 88888888888888O: : O888888888888888 O8888888:
:O :8 88888888888888 o88: :o88888888888888 8888888
OoooO :8888888888O:8o :8O88 :O8888888888o O888oo
888: 8888888o: 8O :8o88O O888888O: :
:88 oOOo: :O: :8:888 8o
88 o: 88oO88o :: :oo :
88:: oo O88O:888o O8o: : :: : :
8o o: o88oo O888 :8 :88 :: ::
oO oo o O8o : O888 :o oO8o :: O
O: Oo ::o OO OO : :oO88 O::O:
O :8: :88o OO Oo :O888O 8OO:
oo Oo O888o :O:o: : o8888o :O
:O888 :88888 :o Oo o8888o 8:
:8: O8888 8 :O888O :8
Oo :8888 o :888 :O
:O o888 :: o88: Oo
:O O88OO8oOOoOOoOooOooOOOOOOOOOO88O88O O:
OO 888:: o :o: o o O: 8: O o::o 8: 8
:8O :88o: : : : :: 8 O
O8o Oo:8oo: : : :::oo8 :O
88o Oo O :ooOOOoOO:OO :8O:O O o O :O
88o Oo : o:o: :o Oo : : o :O
88O :oo:oo:o o : :: oo :: o O::o o:
888 :::::oO8O8OoO8O88oOOoo: :Oo
O88Oo:: :: :O
:oO8888o :Oo
:o88o oo o8O:
O8o Oo o88o
o8O Oo o o88
-hrr- :88o O: O88
O88o :8o o88O
o88ooOO888O::::oO88O:
o8888888888888Oo





,..oooooooooob..
,.dodOOOO"""""":"ooPO88bo..
.o8O""" ' "'"""PO8b.
.dd8P'" ''::Y8o.
,d8Po' "':7Ob;
d8P::' ';:8b.
;d8''" ';Y8;
,d8O:' ';:8b.
,88o:' ';Yb.
,8P::' . ';Yb
,8o;:' ,;' ':8b
,8:::' ;: :;8b
d8o;:: o: ::8,
,8'::: ::: :;Y8
8'oo:' ::: :::8:
dP;:YO ':::;.;;:::Y8.
,8:::;Yb :b::::::::::8b
dO;::::8b 'Yb::::::::::8.
,8;:::::O8, 'Y88::::::::8:
8P;::::::88 `8O::::::::O
d::::::::88: O8;:::::::8
8:::::::888: 88b:::::::O:
,8::::::::88: :888Oooo::;Y:
dO:::::::bO8: ..:.::::::::::...: :888888P;::db
OP:::::::O88: ..o8888:::::::::::::)8888bo.. O8888O:::::8
O;::::::::88' ..od888888888::::"""":::88888888888oo; `8888;:::::8
O:::ob:::;8: ,d88888888888888:: ':88888888888888b; '"88;:::::8
OO::;Yo::OP' d888888888888888O:' ,.;8888888888888888b ,88::::::8
YO:::;Y::Ob ,8888888888888888;:: :;88888888888888888 :88::::::8
8;::::b;8' :8888888888888888o:: ':8888888888888888 :888d::)88
Y:::::88P 888888888888888888' 'O888888888888888 :88888888P
`b:::;8O d888888888888888P' ,8888888888888888 '88888888:
Y::::8: ,88888888888888P: .. '8888888888888888 Y8888888:
8O::;8' :88888888888888: d88, ':Y88888888888888 '8888888:
'YbooO :8888888888P:8P: :8888: '':Y8888888888P "Y888YP
'888: 8888888P:;'8O:' :8P88b '"O888888P" ;:;o'
`88: "oOOo:.::)O:;: :8:888. :8b' :::'
88: '"""" ,do;:' ,88bO88b ,.o::PO:;.;. :::'
88'; :' `Yb d88O`888b O8"::::o::::::::::o:;
8O::b ;: '' d88Po O888 :8;:""" '";88::::o:::
YO:;Yb :o.;:: O8P.: O888 'Y:: :YO8b:::::O'
Y:::8b o;O:::;. OO;:: OO;' ''" .;bO88"d:od'
`b::;8: :8bo::::;. OO::: OK: ,;:8888P',8OP"
Yb:;OO O888b::::;. 'O:O",;"' ;o8888P :O"
'`Y888. :88888:::::: ':' db ;o8888P 8P
'`8; O8888:::::: '8' :o8888P :8'
OO: :8888:::::: Y: ,::;888' :8
`8, o888"::::' ' ;:::88: OP
,8: O888O8POYOOO"OPOOPYO8OO8OO888888888' O:
88: '888o::o':Y: d O 'Y:'8: O"Y:`K:8o; 8'
88O; ;88o;:::: : : : ' `: ' ,:8 : :8
O8O:. ,:OP"8bd;':: d... ,. .db.'"8 :: :O -hrr-
,88O::. ;:O: O"'"YP"YPYP'YO"""`8K`O"O `b:O.:; :O
888o:::.:;Ob : :::: :::: :P , OO : : O;:::: ;:O
888O::::::::`dbd::b.d::: :: db ::,d.8o;O;::::::dP
888::::::::;:"""""Y8888od8d88o8P""'" ':::::'d'
"Y88Odo:":::: `""""' ':::)P'
""88888O::: ;::dP
'""88O::: oo; ;O88'
`Y8O::. ,. . '8b::O88'
Y8b::. ,)O ,;' ::O88'
'88d:..: ,d: ;'d88'
'Y88d::;.;:8b, ,..:O88P'
""88oodO888O::::bd88P'
'`8888888888888P"'
""""""""'


_.--""--._
." ".
| . ` ` |
\( )/
\)__. _._(/
// &gt;..&lt; \\
|__.' vv '.__/
l'''"''l
\_ _/
_ )--( _
| '--.__)--(_.--' |
\ |`----''----'| /
|| `-' '--' ||
|| `--' '--' ||
|l `--'--'--' |l
|__|`--' `--'|__|
| | )-( | |
|| )-( \||
|| __ )_( __ \\
||' `- -' \ \\
||\_ `-' _/ |_\
/_\ _)J-._.-L( /`-\
|`- I_)O /\ O( `--l\\\|
||||( `-' `-') .-' |||
\\\ \ / / ///
\ \ / /
\ \ / /
/ \ / \
|_()I()._|
\ /\ /
| / \ |
| | \ \
| | \ \
| | \ \
| |-nabis\ \_
| | /-._\
|.-.\ //.-._)
\\\\ ///
\\\\-'''




_.--"""""--._
.' '.
/ \
; ;
| |
| |
; ;
\ (`'--, ,--'`) /
\ \ _ ) ( _ / /
) )(')/ \(')( (
(_ `""` /\ `""` _)
\`"-, / \ ,-"`/
`\ / `""` \ /`
|/\/\/\/\/\|
|\ /|
; |/\/\/\| ;
\`-`--`-`/
\ /
jgs ',__,'
q__p
q__p
q__p
q__p


,-------------.
/ \
/ __ __ \
| /,--. ,--.\ |
| \ | __ | / |
| `-' / \`-/ |
\__ |_/\_| __/
/_ _\
| |,-.,-.,-.| |
`-'| || || |`-'
,-.`-'`-'`-',-.
\_|_,-.,-.,-|_/
| |_|_||_||_| hjw
`--______--' `97



,--.
([ oo]
`- ^\
_ I`-'
,o(`-V'
|( `-H-'
|(`--A-'
|(`-/_\'\
O `'I ``\\
(\ I |\,
\\-T-"`, |H Ojo


From: Gi...@gevans.demon.co.uk (Gilo)
Subject: ==SKuLL and CroSSBonES==
Date: Mon, 23 Jan 1995 11:02:23 +0000


ud$$$**$$$$$$$bc.
u@**" 4$$$$$$$Nu
J ""#$$$$$$r
@ $$$$b
.F ^*3$$$
:% 4 J$$$N
$ :F :$$$$$
4F 9 J$$$$$$$
4$ k 4$$$$bed$$$$$$$$$
$$r 'F $$$$$$$$$$$$$$$$$r
$$$ b. $$$$$$$$$$$$$$$$$N
$$$$$k 3eeed$$b $$$Euec."$$$$$$$$$
.@$**N. $$$$$" $$$$$$F'L $$$$$$$$$$$ $$$$$$$
:$$L 'L $$$$$ 4$$$$$$ * $$$$$$$$$$F $$$$$$F edNc
@$$$$N ^k $$$$$ 3$$$$*% $F4$$$$$$$ $$$$$" d" z$N
$$$$$$ ^k '$$$" #$$$F .$ $$$$$c.u@$$$ J" @$$$$r
$$$$$$$b *u ^$L $$ $$$$$$$$$$$$u@ $$ d$$$$$$
^$$$$$$. "NL "N. z@* $$$ $$$$$$$$$$$$$P $P d$$$$$$$
^"*$$$$b '*L 9$E 4$$$ d$$$$$$$$$$$" d* J$$$$$r
^$$$$u '$. $$$L "#" d$$$$$$".@$$ .@$" z$$$$*"
^$$$$. ^$N.3$$$ 4u$$$$$$$ 4$$$ u$*" z$$$"
'*$$$$$$$$ *$b J$$$$$$$b u$$P $" d$$P
#$$$$$$ 4$ 3*$"$*$ $"$'c@@$$$$ .u@$$$P
"$$$$ ""F~$ $uNr$$$^&amp;J$$$$F $$$$#
"$$ "$$$bd$.$W$$$$$$$$F $$"
?k ?$$$$$$$$$$$F'*
9$$bL z$$$$$$$$$$$F
$$$$ $$$$$$$$$$$$$
'#$$c '$$$$$$$$$"
.@"#$$$$$$$$$$$$b
z* $$$$$$$$$$$$N.
e" z$$" #$$$k '*$$.
.u* u@$P" '#$$c "$$c
u@$*""" d$$" "$$$u ^*$$b.
:$F J$P" ^$$$c '"$$$$$$bL
d$$ .. @$# #$$b '#$
9$$$$$$b 4$$ ^$$k '$
"$$6""$b u$$ '$ d$$$$$P
'$F $$$$$" ^b ^$$$$b$
'$W$$$$" 'b@$$$$"
^$$$* Gilo95'
.ed"""" """$$$$be.
-" ^""**$$$e.
." '$$$c
/ "4$$b
d 3 $$$$
$ * .$$$$$$
.$ ^c $$$$$e$$$$$$$$.
d$L 4. 4$$$$$$$$$$$$$$b
$$$$b ^ceeeee. 4$$ECL.F*$$$$$$$
e$""=. $$$$P d$$$$F $ $$$$$$$$$- $$$$$$
z$$b. ^c 3$$$F "$$$$b $"$$$$$$$ $$$$*" .=""$c
4$$$$L \ $$P" "$$b .$ $$$$$...e$$ .= e$$$.
^*$$$$$c %.. *c .. $$ 3$$$$$$$$$$eF zP d$$$$$
"**$$$ec "\ %ce"" $$$ $$$$$$$$$$* .r" =$$$$P""
"*$b. "c *$e. *** d$$$$$"L$$ .d" e$$***"
^*$$c ^$c $$$ 4J$$$$$% $$$ .e*".eeP"
"$$$$$$"'$=e....$*$$**$cz$$" "..d$*"
"*$$$ *=%4.$ L L$ P3$$$F $$$P"
"$ "%*ebJLzb$e$$$$$b $P"
%.. 4$$$$$$$$$$ "
$$$e z$$$$$$$$$$%
"*$c "$$$$$$$P"
."""*$$$$$$$$bc
.-" .$***$$$"""*e.
.-" .e$" "*$c ^*b.
.=*"""" .e$*" "*bc "*$e..
.$" .z*" ^*$e. "*****e.
$$ee$c .d" "*$. 3.
^*$E")$..$" * .ee==d%
$.d$$$* * J$$$e*
""""" "$$$" Gilo95'

,,..
,@$$$$$.
.,$$$$$$$$i
.,z$""')$$$$$$$$C`^#`-..
,zF' `""#*"' "*o.
,zXe&gt; u:.. .. "c
,' zP' ,:`" . "N.
,d",d$ ,'" ,uB" .,uee..,?R. , . ^$.
,@P d$" .:$$$$$$$$$$$$$@$CJN.," ` #b
z$" d$P :SM$$$$$$$$$$$$$$$$$$$Nf. ^$.
J$" J$P , ,@$$$$$$$$$$$$$$$$$$$$$$$$$k. "$r
z$ $$. ,$$$$$$$$$$$$$$$$$$$$$$$$$$f' . . $b
,$" $$u,-.x'^""$$$$$$$$$$$$$$$$$$$$$$$$$. `. $k
$" :$$$$&gt; 8. `#$$$$$$$$$$$$$$$$$$$$$"\ d . F $.
$P .$$$$$N `$b. $$$$$$$$$$$$$$$$$$$$$k.$ $" : ' `$
&lt;$' 4$$k $$c `*$.,Q$$$$$$$$$$$$$$$$$$$$$$$ .. $L
$P 4$$$$$F: `"$$$$$$$$$$$$$$$$$$$$$$'`$" . , `$
,$' ,$$$$$d$$ '##$$c3$$$$$$$$$$$$$$$$. ' : L. $.
J$ u$$$$$$$$$.,oed$*$$$$N "#$$$$$$$$$$***$@$N. , $ ,B$$N.,9L
$F,$$$$$$$$$$,@*"' `J$$$$$#h$$$$$$P"` `"*$$. $4W$' "$$uJF
4$$$$$$$$$$$$F' $*'`$$RR@$$$$$R ,' "$d$4" '$$$R
,$$$$$$$$$$$$$F ,' @$.3$$$$ R&gt; `$F$ dN.4$$$$.
:$$$$$$$$$$$$*$" J$'$$$$$&amp; $. $' $$$$$$$$$o
^$$$$$$$$$$B@$$ $P $$$"?N/$k $r $$P"*$$$$'
$$i .$$$$"$' $$ ~R$P '$k^$$,' $ "' ,d$$'
$$$$ J$$$$ `,' .,z$P'd.$P #$. #$$u. .$ eu. ,d$$$
$^$$$$$$$$. `"=+=N#'.,d$M$$' `$$@s.#$$$u. ,$C $$$@$$$"$
" `*$$$$$$bx.. ,M$" `*$$$b/""$R"*"'d$ ,$$$$P" '
4 "$$k3$9$$B.e. ,ud$F `3$$$$b. ,$,@R$*' 4
&lt; *$$$$$$$b$$@$$$$$L ,. ,J$$.'**$$k$NX$"M"' .
$ "$#" `" &lt;$$$$$$c,z$N.,o$$$$ ,NW$*"' $
$. ', `$$$$$$$$$d$$$$$$$$$f ,$e*' $
,$c d. `^$$$$$$$$$$$$$$$$$.u '" :$.
$$$ $\ ., `"#$$$*$$$$$$$$$$$$ ' 4$F
$$" $ ` k.`. ``"#`"""' ,' ,' `$$
`" $&gt;, `b.,ce(b:o uz CCLd$4$*F?\,o "'
$&amp; $$k'*"$$$$$$#$$$$$$$$$$ d'
$$.,$$$$$$$$,e,$#$.*$`""""'e4 $
`$$$$ ^$$\$"$$$$$$$$$$$$$$$.eL
$$$" $$$$$$$e$.$.$$.$e$d$$$$k
R`$$ '$$$$$$$$$$$$$$$$$$$$$$P
` $Nc'"$$N3$$$$$$$$$$$$$$$$$' Philip Kaulfuss
*$ 9$.`@$$$$$$$$$$R$$$#'
`$. `"*$$$$$$$$$$P'' #
"$u. `""""'' ,'
`"$Nu.. .,z&lt;p"'
`"####""'


_,..__,
,.''' `"-,_
,' '.
,' '
/ \_
; -. `\
| | _ _ .
; ,' ,-' `. /' `. |
| ' / o | t o \.' .,-.
| |: .' |: .| / \
; \:.._./ ':_..:/ `. | L
\ ,-' |\_ `\- "'-.
,-"'``'-, `f '/`&gt; `.
,' `L___.| ' ` . _,/ \
| \_ _ _ .-.]____,,r |
\ ,. ___""----./` \,' ',`\' \ \ mx.'
`'-'| '` `| | | | | `'--"'`
, | L_.'.__:__.-'
\ /
`'-- "'`



,-""""-. ,-'""`-. ,-'""`-.
/ \ ; : ; :
:(_) (_); : : : :
` '` ' : _ _ ; : (_) (_) ;
`++++' : ( ) ( ) : ` '` '
`--' :: '` :; :`++++';
!: :! ``..'' http://www.myrkraverk.com/ascii/
`:`++++';'
`....'


MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMM MMMMMMMMMMMM
MMMMMMMMMM MMMMMMMMMM
MMMMMMMMM MMMMMMMMM
MMMMMMMM MMMMMMMM
MMMMMMM MMMMMMMM
MMMMMMM MMMMMMM
MMMMMMM MMMMMMM
MMMMMMM MMM MMM MMMMMMM
MMMMMMM MMMMM MMMM MMMMMMM
MMMMMMM MMMMM MMMM MMMMMMM
MMMMMMMM MMMM M MMMM MMMMMMMM
MMVKMMMM M MMMMMMM
MMMMMMMM MMM MMMMMMMM
MMMMMMMMMMMM MMM MMMMMMMMMMMM
MMMMMMMMMM MM M MMMMMMMMM
MMMMMMMMMM M M M M M MMMMMMMMMM
MMMM MMMMM MMMMMMMMM MMMMM MM
MMM MMMM M MMMMM M MMMM MM
MMM MMMM M M M MMMMM MMM
MMMM MMMM MMM MM
MMM MMMM MMMM MM
MMM MMMMMMMM M MMM
MMMM MMM MMM MMMMMMMM
MMMMMMMMMMM MM MMMMMMM M
MMM MMMMMMM MMMMMMMMM M
MM MMM MM M
MM MMMM MM
MMM MMMMMMMMMMMMM M
MM MMMMMMMMMMMMMMMMMMM M
MMM MMMMMMMMMMMMMMMMMMMMMM M
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM

ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-
ASCII-ART_ASCII-ART_ASCII-ART_
ASCII-ART_ASCII-ART_ASCII-ART_ASCI
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCI
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASC
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCI
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASC
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASC
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASC
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII ASCII-ART_ASCII-ART_A ASCII-ART_ASC
ASCII-ART_ASCI ASCII-ART_ASCII-ART ASCII-ART_A
ASCII-ART_A ASCII-ART_ASCII-A ASCII-ART
ASCII-ART_ ASCII-ART_ASCII ASCII-AR
ASCII-ART ASCII-ART_ASC ASCII-AR
ASCII-ART ASCII-ART_AS ASCII-AR
ASCII-ART ASCII-ART_AS ASCII-AR
ASCII-AR ASCI ASCI ASCII-AR
ASCII-AR ASCII ASCI ASCII-A
ASCII-AR ASCII ASCI ASCII-AR
ASCII-ART ASCII- ASCII ASCII-AR
ASCII-ART ASCII-AR ASCII-ART ASCII-ART
ASCII-ART ASCII-ART_ ASCII-ART_A ASCII-ART
ASCII-ART_ ASCII-ART_AS ASCII-ART_ASCI ASCII-ART_A
ASCII-ART_ASCII-ART_ASCII-AR ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-AR ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-AR ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-AR ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-ART ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-ART ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-AR ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-A ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-A ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-A ASCII-ART_ASCII-ART_ASCII-
ASCII-ART_ASCII-ART_ASCII- ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII- ASCII-ART_ASCII-ART_ASCII
ASCII-ART_ASCII-ART_ASCII- ASCII-ART_A ASCII-ART_ASC
ASCII-ART_ASCII-ART_ASCII ASCII-ART_A ASCII-ART_A
ASC ASCII-ART_ASC ASCII-ART_AS ASC
ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-A
ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART
ASCII-ART_ASCII-ART_ASCII-ART
AS ASCII-ART_ASCII-ART_A AS
AS ASCII-ART_ASC AS
AS AS
AS AS
ASCII-AR ASCII-A
ASCII-ART_ASCII-ART_ASCII-AR
ASCII-ART_ASCII-AR
ASCII-ART_ dp



/ _
a/ )\/ f
)?\/ ] ]
)/ \]
_ )6 Q
?\/ P]
_jQQQa ?aa]6
]QQQQQQ/ aa/ 4Q6]6
_6 4QQQQQ6 )??''a]6
jQQajQQQQQ/ )?4f ?a
QQQQQQQQQQf 46 )6
Q]QQQQQQQQ )6 )4/
P]QQQQP?4Q )6 4/
]' 4Q' Q )6 4/
Q ?f _Qf )6 4/
)W6aJ )WQQf 4/ 4/
_4?4f_ QP?] 4/ 4
4a QQQQQ af ?a
?f)" ' ]P )gja/
f 4/]]_6Q )')?'
\ QQQQQf _ Qaa/
] )WQQ? 4/ _aaaaWWP??
] ] _ 4)4QQQQWP????'
] ] )a?'/ ]PJW
f ] / _aaP' JQf
\ ] ] f aQ /_ aaW?'
)/ 6 f / )??? / _a?' QQf
)/)/4 ' a??]QQ/Q?'/ f ?
_ ),\]6/ )???_aaaa'QQ6 a' _'
?a']aP J46/ _ QQQ j' _J /
?aP?_f )\jQ)W'_ ?46)WQ 6_a? _')
_/Q/ )W7P)[f \ j QQ 4P _f f
6?6 ]g / ???PQ/4Q/]f_y' j /
)[)[ ]P( )_ ]f]Qf]Q? _y'_'
6 4/ ]f )/ ??QQQf)Wf Q_yP J
)/ 4 Q' )a 6 QQ QP' j )
6 )6 Q ??4QQQ QQ ]f aQ' J
)[ ]/ _Q )\ 4/]Qf]QQP' _')
4/ 4 ]f ?aaaaQf]Qf ?Qf _P f/
)6 )6 ]f / )?WQ' Qf ]QQP _ '
)6 ]/ Q )6 ]P )[ ?Q6aP_
]/ 4 Q ' 46aQf / QQ6J
4/)[ ]P Ja ]P ]?Qf)'/ )4Q']
\ ]f ]f _)\aQf /'_ a_ \ )\'
jf6Q \ QQ J _ ?')?/ /
)f]P _ 4Q'_ ' aj'
]']f \ f ) ' /'
4' ) ?Q'
_a/
?
4? _QQ6
a/ aQQQQf
aQQ6/ aj'jQQQf
QQQQP4QQQQf]QQQP
QQQQQ/46 jQ/QQP
?QQQQfjP??Q6]P
?QQ'QQ6QQ6j'jQ/ ]6
)4/4Q/_QP( QQf )L
Q6 ??QP'P ]Q? ]Q[?
af)WQf )QQf ]' )P'_/
]f_ ??Q Q?QaaP j6/_Qf
] Qf )\ajf )WW QQQQP
_ ?'a 4P 4Q6
Q6 jQf QQ/
)WQQP' ]Q6
QQf )WQ/
]QQ 4Q6
]Qf )WQ
QQf 4Qf
QQ ]QQ
]QP QQf
]Qf ]Q6
QQ' QQ/
QQ ]Qf
]Qf QQ
jQf ]Qf
QQ )W6
_QP 4Q/
]Qf )Qf
jQ' 4Q
QQ jQ/
Qf QQQ6
]Q' 4P QP
]Q _/_a)'
jQ6a fQQ /
_QQQP Q"']Q
QP ?_ QQf]Q
)'jg]' 4Q/
_/4P] )4Q 4f
Qf _Qf 4 ]f
]Q/??' ] ]6
]P\aj ]f)W
]f)P f Q
]f f Q Q/
]f f 4 ]f
]f_f ]/]f
]f]f ]f]f
]f]f f Q
jf]' 6 Q
Qf] 4 Q
Q ] ] ]f
Q ] ]f]f
Q ] f]f
Q ] f]Q
Q ] 4 Q
Q j ] Q
Q Q ]/Q/
Q Q fQf
QfP fWf
Qff 6]f
Qff _P]Q/
Qff QPQP
Qff Q6 a/ /
Qff ]Q\Q Q\/
Pf?/ QQfQ'?
4Q'Q_a 'aa_f
_ a QQ ]J'\
/4']a4' )[_jJ'
_fjfQ?' ) '?
_ a/
J]\f
_ '_?
_P\

</pre> </div></div>
google groups swi plrolog <div class="artdescription">Skeleton - Skeletons - Skull - Skulls - Halloween - Scary - Crossbones <br> <div id="art1"> <form action=""> <input type="button" value="Light on Dark" onclick="toggle1()" class="artinvert" name="artinvertbutton" id="btn"> </form> <div class="masterstyle">Note: You can click on the button above to toggle light and dark.<br>You can also click on the button that floats on the right side of the screen. ---&gt;<br><br> <script type="text/javascript">&lt;!-- google_ad_client = "pub-4074990861294766"; /* With Art - Larger */ google_ad_slot = "0542079692"; google_ad_width = 728; google_ad_height = 90; //--&gt; </script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script> </div> <pre> :oooooooooo: ::oOOOOooo:::::ooooO88Oo: plc prolog https://github.com/jreese/rit/search?utf8=%E2%9C%93&q=+Skip+to+content+This+repository++++++Explore+++++Features+++++Enterprise+++++Pricing++1+1++++++1++jreese%2Frit+Code+Issues+0+Pull+requests+0+Pulse+Graphs+rit%2Fplc%2F+Latest+commit+319794f+on+14+Dec+2008+%40jreese+jreese+Initial+import+from+SVN.+%09..+%09%09+%09forth+%09Initial+import+from+SVN.+%097+years+ago+%09lex+%09Initial+import+from+SVN.+%097+years+ago+%09perl+%09Initial+import+from+SVN.+%097+years+ago+%09prolog+%09Initial+import+from+SVN.+%097+years+ago+%09scheme+%09Initial+import+from+SVN.+%097+years+ago+%09TreasureHunt-C.txt+%09Initial+import+from+SVN.+%097+years+ago++++++Status+API+Training+Shop+Blog+About+Pricing+++++++%C2%A9+2015+GitHub%2C+Inc.+Terms+Privacy+Security+Contact+Help+

Jan Burse

unread,
Dec 4, 2015, 3:20:15 AM12/4/15
to

Jan Burse

unread,
Dec 5, 2015, 8:45:16 AM12/5/15
to
http://adventofcode.com/

R Kym Horsell schrieb:
0 new messages