├── .DS_Store ├── LICENSE ├── README.md ├── db ├── absobj.txt ├── action.txt ├── all.txt ├── appliance.txt ├── attr.txt ├── baserule.txt ├── book.txt ├── celest.txt ├── charcrib ├── chem.txt ├── clothing.txt ├── company.txt ├── drug.txt ├── elec.txt ├── eninfl.txt ├── enum.txt ├── film.txt ├── food.txt ├── frinfl.txt ├── furniture.txt ├── geog.txt ├── grid.txt ├── hardware.txt ├── homeentertain.txt ├── human.txt ├── ling.txt ├── liveentertain.txt ├── living.txt ├── mediaobj.txt ├── music.txt ├── musicconcept.txt ├── musicinstrument.txt ├── name.txt ├── net.txt ├── officeproduct.txt ├── personalarticle.txt ├── photo.txt ├── physics.txt ├── physobj.txt ├── relation.txt ├── software.txt ├── sound.txt ├── street.txt ├── theory.txt ├── toy.txt ├── trans.txt └── tv.txt ├── examples ├── corpe.tts ├── corpf.tts ├── corpl.tts ├── inadjd.txt ├── inap.txt ├── inchild.txt ├── inexta.txt ├── inextb.txt ├── infct.txt ├── inhuls.txt ├── inint1.txt ├── inint2.txt ├── inmr1.txt ├── inmr2.txt ├── inmr3.txt ├── inper.txt ├── inss.txt ├── inta.txt ├── intab.txt ├── intest.txt ├── intimes.txt ├── intrade.txt ├── intut.txt ├── inwf1.txt ├── inwf2.txt ├── lrnmr3.txt ├── lrntab.txt ├── lrnwf1.txt ├── lrnwf2.txt ├── outadjd.txt ├── outaple.txt ├── outapse.txt ├── outapsf.txt ├── outdicte.txt ├── outdictf.txt ├── outextle.txt ├── outextse.txt ├── outextsf.txt ├── outfctb1.txt ├── outfctbn.txt ├── outfctle.txt ├── outfctse.txt ├── outfctsf.txt ├── outint1.txt ├── outmr1le.txt ├── outmr3le.txt ├── outperle.txt ├── outperse.txt ├── outrede.txt ├── outredf.txt ├── outsae.txt ├── outsaf.txt ├── outshowe.txt ├── outshowf.txt ├── outssle.txt ├── outssse.txt ├── outsssf.txt ├── outtre.txt ├── outtrf.txt ├── outts.txt ├── outtutle.txt ├── outtutse.txt ├── outtutsf.txt ├── outtutt.txt ├── outwf1.txt ├── outwf2.txt ├── outwff.txt └── test.tts ├── help.txt ├── htm ├── addsense.htm ├── doc.htm ├── faq.htm ├── navext.htm ├── quickref.htm ├── relnotes.htm ├── specs.htm ├── tt.htm ├── ttkb.htm └── ttsp.htm ├── java ├── Example.java ├── HowManyMinutesIs.java ├── Parse.java ├── TT.java ├── TTConnection.java ├── TTLexEntry.java ├── TTLexEntryToObj.java ├── TTPNode.java ├── WhereDoIFind.java ├── doc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── net │ │ └── erikmueller │ │ │ └── tt │ │ │ ├── TT.html │ │ │ ├── TTConnection.html │ │ │ ├── TTLexEntry.html │ │ │ ├── TTLexEntryToObj.html │ │ │ ├── TTPNode.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ └── stylesheet.css ├── make.sh ├── net │ └── erikmueller │ │ └── tt │ │ ├── Example.class │ │ ├── HowManyMinutesIs.class │ │ ├── Parse.class │ │ ├── TT.class │ │ ├── TTConnection$ResultChar.class │ │ ├── TTConnection.class │ │ ├── TTLexEntry.class │ │ ├── TTLexEntryToObj.class │ │ ├── TTPNode.class │ │ └── WhereDoIFind.class └── tt.jar ├── perl └── tt.pm ├── python ├── AllConstants.txt ├── clean.sh ├── gpl.txt ├── preamble.txt ├── query.cgi ├── query.htm ├── tt.py ├── tt.pyc ├── tt2cyc.map ├── tt2cyc.py ├── ttapi.py ├── ttkb ├── ttkb.1 ├── ttkb.py └── ttkb.pyc ├── runtime ├── .gdbinit ├── LinBertie.txt ├── clean.sh ├── display ├── dostats.sh ├── grind.sh ├── grind.tt ├── log ├── outfname.txt ├── outhuman.txt ├── outlname.txt ├── outlrn.txt ├── outtrans.txt ├── rptclass.txt ├── rptstat.txt ├── test.txt ├── tt.sh ├── ttdbg.sh ├── ttfrench.sh ├── ttfrenchana.sh ├── ttsvr.sh ├── ttsvr.tt ├── ttsvrdbg.sh └── ttsvrdbg.tt ├── src ├── Grids ├── PAs ├── UAs ├── appassoc.c ├── appassoc.h ├── appassoc.o ├── appsimul.c ├── appsimul.h ├── appsimul.o ├── apptrans.c ├── apptrans.h ├── apptrans.o ├── compnoun.c ├── compnoun.h ├── compnoun.o ├── display ├── lexalgm.c ├── lexalgm.h ├── lexalgm.o ├── lexanam.c ├── lexanam.h ├── lexanam.o ├── lexentry.c ├── lexentry.h ├── lexentry.o ├── lexitem.c ├── lexitem.h ├── lexitem.o ├── lexmorph.c ├── lexmorph.h ├── lexmorph.o ├── lexobjle.c ├── lexobjle.h ├── lexobjle.o ├── lextheta.c ├── lextheta.h ├── lextheta.o ├── lexwf1.c ├── lexwf1.h ├── lexwf1.o ├── lexwf2.c ├── lexwf2.h ├── lexwf2.o ├── lexwf3.c ├── lexwf3.h ├── lexwf3.o ├── log ├── makefile ├── outfctle.txt ├── outfname.txt ├── outhuman.txt ├── outlname.txt ├── outlrn.txt ├── outtrans.txt ├── pa.c ├── pa.h ├── pa.o ├── paatrans.c ├── paatrans.h ├── paatrans.o ├── pacloth.c ├── pacloth.h ├── pacloth.o ├── paenter.c ├── paenter.h ├── paenter.o ├── pagrasp.c ├── pagrasp.h ├── pagrasp.o ├── pamtrans.c ├── pamtrans.h ├── pamtrans.o ├── paphone.c ├── paphone.h ├── paphone.o ├── paptrans.c ├── paptrans.h ├── paptrans.o ├── repactor.c ├── repactor.h ├── repactor.o ├── repbasic.c ├── repbasic.h ├── repbasic.o ├── repchan.c ├── repchan.h ├── repchan.o ├── repcloth.c ├── repcloth.h ├── repcloth.o ├── repcxt.c ├── repcxt.h ├── repcxt.o ├── repdb.c ├── repdb.h ├── repdb.o ├── repdbf.c ├── repdbf.h ├── repdbf.o ├── repfifo.c ├── repfifo.h ├── repfifo.o ├── repgrid.c ├── repgrid.h ├── repgrid.o ├── repgroup.c ├── repgroup.h ├── repgroup.o ├── repmisc.c ├── repmisc.h ├── repmisc.o ├── repobj.c ├── repobj.h ├── repobj.o ├── repobjl.c ├── repobjl.h ├── repobjl.o ├── repprove.c ├── repprove.h ├── repprove.o ├── repspace.c ├── repspace.h ├── repspace.o ├── repstr.c ├── repstr.h ├── repstr.o ├── repsubgl.c ├── repsubgl.h ├── repsubgl.o ├── reptext.c ├── reptext.h ├── reptext.o ├── reptime.c ├── reptime.h ├── reptime.o ├── reptrip.c ├── reptrip.h ├── reptrip.o ├── semanaph.c ├── semanaph.h ├── semanaph.o ├── semaspec.c ├── semaspec.h ├── semaspec.o ├── semcase.c ├── semcase.h ├── semcase.o ├── semdisc.c ├── semdisc.h ├── semdisc.o ├── semgen1.c ├── semgen1.h ├── semgen1.o ├── semgen2.c ├── semgen2.h ├── semgen2.o ├── semparse.c ├── semparse.h ├── semparse.o ├── semstyle.c ├── semstyle.h ├── semstyle.o ├── semtense.c ├── semtense.h ├── semtense.o ├── synbase.c ├── synbase.h ├── synbase.o ├── synfilt.c ├── synfilt.h ├── synfilt.o ├── synparse.c ├── synparse.h ├── synparse.o ├── synpnode.c ├── synpnode.h ├── synpnode.o ├── syntrans.c ├── syntrans.h ├── syntrans.o ├── synxbar.c ├── synxbar.h ├── synxbar.o ├── ta.c ├── ta.h ├── ta.o ├── taemail.c ├── taemail.h ├── taemail.o ├── tagger ├── tale.c ├── tale.h ├── tale.o ├── taname.c ├── taname.h ├── taname.o ├── taprod.c ├── taprod.h ├── taprod.o ├── tatable.c ├── tatable.h ├── tatable.o ├── tatagger.c ├── tatagger.h ├── tatagger.o ├── tatime.c ├── tatime.h ├── tatime.o ├── toolapi.c ├── toolapi.h ├── toolapi.o ├── toolcorp.c ├── toolcorp.h ├── toolcorp.o ├── toolfilt.c ├── toolfilt.h ├── toolfilt.o ├── toolgrd.c ├── toolgrd.h ├── toolgrd.o ├── toolprove.c ├── toolprove.o ├── toolrpt.c ├── toolrpt.h ├── toolrpt.o ├── toolsh.c ├── toolsh.h ├── toolsh.o ├── toolstat.c ├── toolstat.h ├── toolstat.o ├── toolsvr.c ├── toolsvr.h ├── toolsvr.o ├── tooltest.c ├── tooltest.h ├── tooltest.o ├── tt ├── tt.h ├── ttglobal.h ├── ua.c ├── ua.h ├── ua.o ├── uaanal.c ├── uaanal.h ├── uaanal.o ├── uaasker.c ├── uaasker.h ├── uaasker.o ├── uadict.c ├── uadict.h ├── uadict.o ├── uaemot.c ├── uaemot.h ├── uaemot.o ├── uafriend.c ├── uafriend.h ├── uafriend.o ├── uagoal.c ├── uagoal.h ├── uagoal.o ├── uaoccup.c ├── uaoccup.h ├── uaoccup.o ├── uapaappt.c ├── uapaappt.h ├── uapaappt.o ├── uapagroc.c ├── uapagroc.h ├── uapagroc.o ├── uapashwr.c ├── uapashwr.h ├── uapashwr.o ├── uapaslp.c ├── uapaslp.h ├── uapaslp.o ├── uaquest.c ├── uaquest.h ├── uaquest.o ├── uarel.c ├── uarel.h ├── uarel.o ├── uascript.c ├── uascript.h ├── uascript.o ├── uaspace.c ├── uaspace.h ├── uaspace.o ├── uatime.c ├── uatime.h ├── uatime.o ├── uatrade.c ├── uatrade.h ├── uatrade.o ├── uaweath.c ├── uaweath.h ├── uaweath.o ├── utilbb.c ├── utilbb.h ├── utilbb.o ├── utilchar.c ├── utilchar.h ├── utilchar.o ├── utildbg.c ├── utildbg.h ├── utildbg.o ├── utilhtml.c ├── utilhtml.h ├── utilhtml.o ├── utillrn.c ├── utillrn.h ├── utillrn.o ├── utilmain.c ├── utilmain.h ├── utilmain.o ├── utilrpt.c ├── utilrpt.h ├── utilrpt.o ├── utiltype.c ├── utiltype.h └── utiltype.o ├── tcl └── tt.tcl ├── ttkb ├── COPYRIGHT ├── infl.txt ├── le.txt ├── obj.txt ├── sort.sh └── tt0.00023.cycl └── ttlegal.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/README.md -------------------------------------------------------------------------------- /db/absobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/absobj.txt -------------------------------------------------------------------------------- /db/action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/action.txt -------------------------------------------------------------------------------- /db/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/all.txt -------------------------------------------------------------------------------- /db/appliance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/appliance.txt -------------------------------------------------------------------------------- /db/attr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/attr.txt -------------------------------------------------------------------------------- /db/baserule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/baserule.txt -------------------------------------------------------------------------------- /db/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/book.txt -------------------------------------------------------------------------------- /db/celest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/celest.txt -------------------------------------------------------------------------------- /db/charcrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/charcrib -------------------------------------------------------------------------------- /db/chem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/chem.txt -------------------------------------------------------------------------------- /db/clothing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/clothing.txt -------------------------------------------------------------------------------- /db/company.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/company.txt -------------------------------------------------------------------------------- /db/drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/drug.txt -------------------------------------------------------------------------------- /db/elec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/elec.txt -------------------------------------------------------------------------------- /db/eninfl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/eninfl.txt -------------------------------------------------------------------------------- /db/enum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/enum.txt -------------------------------------------------------------------------------- /db/film.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/film.txt -------------------------------------------------------------------------------- /db/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/food.txt -------------------------------------------------------------------------------- /db/frinfl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/frinfl.txt -------------------------------------------------------------------------------- /db/furniture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/furniture.txt -------------------------------------------------------------------------------- /db/geog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/geog.txt -------------------------------------------------------------------------------- /db/grid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/grid.txt -------------------------------------------------------------------------------- /db/hardware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/hardware.txt -------------------------------------------------------------------------------- /db/homeentertain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/homeentertain.txt -------------------------------------------------------------------------------- /db/human.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/human.txt -------------------------------------------------------------------------------- /db/ling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/ling.txt -------------------------------------------------------------------------------- /db/liveentertain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/liveentertain.txt -------------------------------------------------------------------------------- /db/living.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/living.txt -------------------------------------------------------------------------------- /db/mediaobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/mediaobj.txt -------------------------------------------------------------------------------- /db/music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/music.txt -------------------------------------------------------------------------------- /db/musicconcept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/musicconcept.txt -------------------------------------------------------------------------------- /db/musicinstrument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/musicinstrument.txt -------------------------------------------------------------------------------- /db/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/name.txt -------------------------------------------------------------------------------- /db/net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/net.txt -------------------------------------------------------------------------------- /db/officeproduct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/officeproduct.txt -------------------------------------------------------------------------------- /db/personalarticle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/personalarticle.txt -------------------------------------------------------------------------------- /db/photo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/photo.txt -------------------------------------------------------------------------------- /db/physics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/physics.txt -------------------------------------------------------------------------------- /db/physobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/physobj.txt -------------------------------------------------------------------------------- /db/relation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/relation.txt -------------------------------------------------------------------------------- /db/software.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/software.txt -------------------------------------------------------------------------------- /db/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/sound.txt -------------------------------------------------------------------------------- /db/street.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/street.txt -------------------------------------------------------------------------------- /db/theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/theory.txt -------------------------------------------------------------------------------- /db/toy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/toy.txt -------------------------------------------------------------------------------- /db/trans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/trans.txt -------------------------------------------------------------------------------- /db/tv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/db/tv.txt -------------------------------------------------------------------------------- /examples/corpe.tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/corpe.tts -------------------------------------------------------------------------------- /examples/corpf.tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/corpf.tts -------------------------------------------------------------------------------- /examples/corpl.tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/corpl.tts -------------------------------------------------------------------------------- /examples/inadjd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inadjd.txt -------------------------------------------------------------------------------- /examples/inap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inap.txt -------------------------------------------------------------------------------- /examples/inchild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inchild.txt -------------------------------------------------------------------------------- /examples/inexta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inexta.txt -------------------------------------------------------------------------------- /examples/inextb.txt: -------------------------------------------------------------------------------- 1 | I want to buy a Fiat Spyder. 2 | What? 3 | A 124. 4 | -------------------------------------------------------------------------------- /examples/infct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/infct.txt -------------------------------------------------------------------------------- /examples/inhuls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inhuls.txt -------------------------------------------------------------------------------- /examples/inint1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inint1.txt -------------------------------------------------------------------------------- /examples/inint2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inint2.txt -------------------------------------------------------------------------------- /examples/inmr1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inmr1.txt -------------------------------------------------------------------------------- /examples/inmr2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inmr2.txt -------------------------------------------------------------------------------- /examples/inmr3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inmr3.txt -------------------------------------------------------------------------------- /examples/inper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inper.txt -------------------------------------------------------------------------------- /examples/inss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inss.txt -------------------------------------------------------------------------------- /examples/inta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inta.txt -------------------------------------------------------------------------------- /examples/intab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/intab.txt -------------------------------------------------------------------------------- /examples/intest.txt: -------------------------------------------------------------------------------- 1 | September 21, 1997 at eight pm. 2 | -------------------------------------------------------------------------------- /examples/intimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/intimes.txt -------------------------------------------------------------------------------- /examples/intrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/intrade.txt -------------------------------------------------------------------------------- /examples/intut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/intut.txt -------------------------------------------------------------------------------- /examples/inwf1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inwf1.txt -------------------------------------------------------------------------------- /examples/inwf2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/inwf2.txt -------------------------------------------------------------------------------- /examples/lrnmr3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/lrnmr3.txt -------------------------------------------------------------------------------- /examples/lrntab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/lrntab.txt -------------------------------------------------------------------------------- /examples/lrnwf1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/lrnwf1.txt -------------------------------------------------------------------------------- /examples/lrnwf2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/lrnwf2.txt -------------------------------------------------------------------------------- /examples/outadjd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outadjd.txt -------------------------------------------------------------------------------- /examples/outaple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outaple.txt -------------------------------------------------------------------------------- /examples/outapse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outapse.txt -------------------------------------------------------------------------------- /examples/outapsf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outapsf.txt -------------------------------------------------------------------------------- /examples/outdicte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outdicte.txt -------------------------------------------------------------------------------- /examples/outdictf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outdictf.txt -------------------------------------------------------------------------------- /examples/outextle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outextle.txt -------------------------------------------------------------------------------- /examples/outextse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outextse.txt -------------------------------------------------------------------------------- /examples/outextsf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outextsf.txt -------------------------------------------------------------------------------- /examples/outfctb1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outfctb1.txt -------------------------------------------------------------------------------- /examples/outfctbn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outfctbn.txt -------------------------------------------------------------------------------- /examples/outfctle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outfctle.txt -------------------------------------------------------------------------------- /examples/outfctse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outfctse.txt -------------------------------------------------------------------------------- /examples/outfctsf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outfctsf.txt -------------------------------------------------------------------------------- /examples/outint1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outint1.txt -------------------------------------------------------------------------------- /examples/outmr1le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outmr1le.txt -------------------------------------------------------------------------------- /examples/outmr3le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outmr3le.txt -------------------------------------------------------------------------------- /examples/outperle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outperle.txt -------------------------------------------------------------------------------- /examples/outperse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outperse.txt -------------------------------------------------------------------------------- /examples/outrede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outrede.txt -------------------------------------------------------------------------------- /examples/outredf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outredf.txt -------------------------------------------------------------------------------- /examples/outsae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outsae.txt -------------------------------------------------------------------------------- /examples/outsaf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outsaf.txt -------------------------------------------------------------------------------- /examples/outshowe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outshowe.txt -------------------------------------------------------------------------------- /examples/outshowf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outshowf.txt -------------------------------------------------------------------------------- /examples/outssle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outssle.txt -------------------------------------------------------------------------------- /examples/outssse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outssse.txt -------------------------------------------------------------------------------- /examples/outsssf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outsssf.txt -------------------------------------------------------------------------------- /examples/outtre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtre.txt -------------------------------------------------------------------------------- /examples/outtrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtrf.txt -------------------------------------------------------------------------------- /examples/outts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outts.txt -------------------------------------------------------------------------------- /examples/outtutle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtutle.txt -------------------------------------------------------------------------------- /examples/outtutse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtutse.txt -------------------------------------------------------------------------------- /examples/outtutsf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtutsf.txt -------------------------------------------------------------------------------- /examples/outtutt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outtutt.txt -------------------------------------------------------------------------------- /examples/outwf1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outwf1.txt -------------------------------------------------------------------------------- /examples/outwf2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outwf2.txt -------------------------------------------------------------------------------- /examples/outwff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/outwff.txt -------------------------------------------------------------------------------- /examples/test.tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/examples/test.tts -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/help.txt -------------------------------------------------------------------------------- /htm/addsense.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/addsense.htm -------------------------------------------------------------------------------- /htm/doc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/doc.htm -------------------------------------------------------------------------------- /htm/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/faq.htm -------------------------------------------------------------------------------- /htm/navext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/navext.htm -------------------------------------------------------------------------------- /htm/quickref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/quickref.htm -------------------------------------------------------------------------------- /htm/relnotes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/relnotes.htm -------------------------------------------------------------------------------- /htm/specs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/specs.htm -------------------------------------------------------------------------------- /htm/tt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/tt.htm -------------------------------------------------------------------------------- /htm/ttkb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/ttkb.htm -------------------------------------------------------------------------------- /htm/ttsp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/htm/ttsp.htm -------------------------------------------------------------------------------- /java/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/Example.java -------------------------------------------------------------------------------- /java/HowManyMinutesIs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/HowManyMinutesIs.java -------------------------------------------------------------------------------- /java/Parse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/Parse.java -------------------------------------------------------------------------------- /java/TT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/TT.java -------------------------------------------------------------------------------- /java/TTConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/TTConnection.java -------------------------------------------------------------------------------- /java/TTLexEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/TTLexEntry.java -------------------------------------------------------------------------------- /java/TTLexEntryToObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/TTLexEntryToObj.java -------------------------------------------------------------------------------- /java/TTPNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/TTPNode.java -------------------------------------------------------------------------------- /java/WhereDoIFind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/WhereDoIFind.java -------------------------------------------------------------------------------- /java/doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/allclasses-frame.html -------------------------------------------------------------------------------- /java/doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /java/doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/constant-values.html -------------------------------------------------------------------------------- /java/doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/deprecated-list.html -------------------------------------------------------------------------------- /java/doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/help-doc.html -------------------------------------------------------------------------------- /java/doc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/index-all.html -------------------------------------------------------------------------------- /java/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/index.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/TT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/TT.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/TTConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/TTConnection.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/TTLexEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/TTLexEntry.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/TTLexEntryToObj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/TTLexEntryToObj.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/TTPNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/TTPNode.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/package-frame.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/package-summary.html -------------------------------------------------------------------------------- /java/doc/net/erikmueller/tt/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/net/erikmueller/tt/package-tree.html -------------------------------------------------------------------------------- /java/doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/overview-tree.html -------------------------------------------------------------------------------- /java/doc/package-list: -------------------------------------------------------------------------------- 1 | net.erikmueller.tt 2 | -------------------------------------------------------------------------------- /java/doc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/script.js -------------------------------------------------------------------------------- /java/doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/doc/stylesheet.css -------------------------------------------------------------------------------- /java/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/make.sh -------------------------------------------------------------------------------- /java/net/erikmueller/tt/Example.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/Example.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/HowManyMinutesIs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/HowManyMinutesIs.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/Parse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/Parse.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TT.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TT.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TTConnection$ResultChar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TTConnection$ResultChar.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TTConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TTConnection.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TTLexEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TTLexEntry.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TTLexEntryToObj.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TTLexEntryToObj.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/TTPNode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/TTPNode.class -------------------------------------------------------------------------------- /java/net/erikmueller/tt/WhereDoIFind.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/net/erikmueller/tt/WhereDoIFind.class -------------------------------------------------------------------------------- /java/tt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/java/tt.jar -------------------------------------------------------------------------------- /perl/tt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/perl/tt.pm -------------------------------------------------------------------------------- /python/AllConstants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/AllConstants.txt -------------------------------------------------------------------------------- /python/clean.sh: -------------------------------------------------------------------------------- 1 | rm -f *~ *.pyc 2 | chmod 755 * 3 | -------------------------------------------------------------------------------- /python/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/gpl.txt -------------------------------------------------------------------------------- /python/preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/preamble.txt -------------------------------------------------------------------------------- /python/query.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/query.cgi -------------------------------------------------------------------------------- /python/query.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/query.htm -------------------------------------------------------------------------------- /python/tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/tt.py -------------------------------------------------------------------------------- /python/tt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/tt.pyc -------------------------------------------------------------------------------- /python/tt2cyc.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/tt2cyc.map -------------------------------------------------------------------------------- /python/tt2cyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/tt2cyc.py -------------------------------------------------------------------------------- /python/ttapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/ttapi.py -------------------------------------------------------------------------------- /python/ttkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/ttkb -------------------------------------------------------------------------------- /python/ttkb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/ttkb.1 -------------------------------------------------------------------------------- /python/ttkb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/ttkb.py -------------------------------------------------------------------------------- /python/ttkb.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/python/ttkb.pyc -------------------------------------------------------------------------------- /runtime/.gdbinit: -------------------------------------------------------------------------------- 1 | #break Debugger 2 | -------------------------------------------------------------------------------- /runtime/LinBertie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/LinBertie.txt -------------------------------------------------------------------------------- /runtime/clean.sh: -------------------------------------------------------------------------------- 1 | rm -f *~ log core out* tmp display 2 | -------------------------------------------------------------------------------- /runtime/display: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/dostats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/dostats.sh -------------------------------------------------------------------------------- /runtime/grind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/grind.sh -------------------------------------------------------------------------------- /runtime/grind.tt: -------------------------------------------------------------------------------- 1 | grind 2 | quit 3 | -------------------------------------------------------------------------------- /runtime/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/log -------------------------------------------------------------------------------- /runtime/outfname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/outfname.txt -------------------------------------------------------------------------------- /runtime/outhuman.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /runtime/outlname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/outlname.txt -------------------------------------------------------------------------------- /runtime/outlrn.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /runtime/outtrans.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/rptclass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/rptclass.txt -------------------------------------------------------------------------------- /runtime/rptstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/rptstat.txt -------------------------------------------------------------------------------- /runtime/test.txt: -------------------------------------------------------------------------------- 1 | John Smith in America 2 | and the United States. 3 | -------------------------------------------------------------------------------- /runtime/tt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ../src/tt 3 | -------------------------------------------------------------------------------- /runtime/ttdbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/ttdbg.sh -------------------------------------------------------------------------------- /runtime/ttfrench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/ttfrench.sh -------------------------------------------------------------------------------- /runtime/ttfrenchana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/ttfrenchana.sh -------------------------------------------------------------------------------- /runtime/ttsvr.sh: -------------------------------------------------------------------------------- 1 | ../src/tt -f ttsvr.tt 2 | -------------------------------------------------------------------------------- /runtime/ttsvr.tt: -------------------------------------------------------------------------------- 1 | dbg -flags sem -level detail 2 | server 3 | quit 4 | -------------------------------------------------------------------------------- /runtime/ttsvrdbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/ttsvrdbg.sh -------------------------------------------------------------------------------- /runtime/ttsvrdbg.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/runtime/ttsvrdbg.tt -------------------------------------------------------------------------------- /src/Grids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/Grids -------------------------------------------------------------------------------- /src/PAs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/PAs -------------------------------------------------------------------------------- /src/UAs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/UAs -------------------------------------------------------------------------------- /src/appassoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appassoc.c -------------------------------------------------------------------------------- /src/appassoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appassoc.h -------------------------------------------------------------------------------- /src/appassoc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appassoc.o -------------------------------------------------------------------------------- /src/appsimul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appsimul.c -------------------------------------------------------------------------------- /src/appsimul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appsimul.h -------------------------------------------------------------------------------- /src/appsimul.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/appsimul.o -------------------------------------------------------------------------------- /src/apptrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/apptrans.c -------------------------------------------------------------------------------- /src/apptrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/apptrans.h -------------------------------------------------------------------------------- /src/apptrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/apptrans.o -------------------------------------------------------------------------------- /src/compnoun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/compnoun.c -------------------------------------------------------------------------------- /src/compnoun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/compnoun.h -------------------------------------------------------------------------------- /src/compnoun.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/compnoun.o -------------------------------------------------------------------------------- /src/display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/display -------------------------------------------------------------------------------- /src/lexalgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexalgm.c -------------------------------------------------------------------------------- /src/lexalgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexalgm.h -------------------------------------------------------------------------------- /src/lexalgm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexalgm.o -------------------------------------------------------------------------------- /src/lexanam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexanam.c -------------------------------------------------------------------------------- /src/lexanam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexanam.h -------------------------------------------------------------------------------- /src/lexanam.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexanam.o -------------------------------------------------------------------------------- /src/lexentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexentry.c -------------------------------------------------------------------------------- /src/lexentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexentry.h -------------------------------------------------------------------------------- /src/lexentry.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexentry.o -------------------------------------------------------------------------------- /src/lexitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexitem.c -------------------------------------------------------------------------------- /src/lexitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexitem.h -------------------------------------------------------------------------------- /src/lexitem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexitem.o -------------------------------------------------------------------------------- /src/lexmorph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexmorph.c -------------------------------------------------------------------------------- /src/lexmorph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexmorph.h -------------------------------------------------------------------------------- /src/lexmorph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexmorph.o -------------------------------------------------------------------------------- /src/lexobjle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexobjle.c -------------------------------------------------------------------------------- /src/lexobjle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexobjle.h -------------------------------------------------------------------------------- /src/lexobjle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexobjle.o -------------------------------------------------------------------------------- /src/lextheta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lextheta.c -------------------------------------------------------------------------------- /src/lextheta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lextheta.h -------------------------------------------------------------------------------- /src/lextheta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lextheta.o -------------------------------------------------------------------------------- /src/lexwf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf1.c -------------------------------------------------------------------------------- /src/lexwf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf1.h -------------------------------------------------------------------------------- /src/lexwf1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf1.o -------------------------------------------------------------------------------- /src/lexwf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf2.c -------------------------------------------------------------------------------- /src/lexwf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf2.h -------------------------------------------------------------------------------- /src/lexwf2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf2.o -------------------------------------------------------------------------------- /src/lexwf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf3.c -------------------------------------------------------------------------------- /src/lexwf3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf3.h -------------------------------------------------------------------------------- /src/lexwf3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/lexwf3.o -------------------------------------------------------------------------------- /src/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/log -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/makefile -------------------------------------------------------------------------------- /src/outfctle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/outfctle.txt -------------------------------------------------------------------------------- /src/outfname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/outfname.txt -------------------------------------------------------------------------------- /src/outhuman.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/outlname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/outlname.txt -------------------------------------------------------------------------------- /src/outlrn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/outlrn.txt -------------------------------------------------------------------------------- /src/outtrans.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pa.c -------------------------------------------------------------------------------- /src/pa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pa.h -------------------------------------------------------------------------------- /src/pa.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pa.o -------------------------------------------------------------------------------- /src/paatrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paatrans.c -------------------------------------------------------------------------------- /src/paatrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paatrans.h -------------------------------------------------------------------------------- /src/paatrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paatrans.o -------------------------------------------------------------------------------- /src/pacloth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pacloth.c -------------------------------------------------------------------------------- /src/pacloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pacloth.h -------------------------------------------------------------------------------- /src/pacloth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pacloth.o -------------------------------------------------------------------------------- /src/paenter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paenter.c -------------------------------------------------------------------------------- /src/paenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paenter.h -------------------------------------------------------------------------------- /src/paenter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paenter.o -------------------------------------------------------------------------------- /src/pagrasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pagrasp.c -------------------------------------------------------------------------------- /src/pagrasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pagrasp.h -------------------------------------------------------------------------------- /src/pagrasp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pagrasp.o -------------------------------------------------------------------------------- /src/pamtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pamtrans.c -------------------------------------------------------------------------------- /src/pamtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pamtrans.h -------------------------------------------------------------------------------- /src/pamtrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/pamtrans.o -------------------------------------------------------------------------------- /src/paphone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paphone.c -------------------------------------------------------------------------------- /src/paphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paphone.h -------------------------------------------------------------------------------- /src/paphone.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paphone.o -------------------------------------------------------------------------------- /src/paptrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paptrans.c -------------------------------------------------------------------------------- /src/paptrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paptrans.h -------------------------------------------------------------------------------- /src/paptrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/paptrans.o -------------------------------------------------------------------------------- /src/repactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repactor.c -------------------------------------------------------------------------------- /src/repactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repactor.h -------------------------------------------------------------------------------- /src/repactor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repactor.o -------------------------------------------------------------------------------- /src/repbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repbasic.c -------------------------------------------------------------------------------- /src/repbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repbasic.h -------------------------------------------------------------------------------- /src/repbasic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repbasic.o -------------------------------------------------------------------------------- /src/repchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repchan.c -------------------------------------------------------------------------------- /src/repchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repchan.h -------------------------------------------------------------------------------- /src/repchan.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repchan.o -------------------------------------------------------------------------------- /src/repcloth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcloth.c -------------------------------------------------------------------------------- /src/repcloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcloth.h -------------------------------------------------------------------------------- /src/repcloth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcloth.o -------------------------------------------------------------------------------- /src/repcxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcxt.c -------------------------------------------------------------------------------- /src/repcxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcxt.h -------------------------------------------------------------------------------- /src/repcxt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repcxt.o -------------------------------------------------------------------------------- /src/repdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdb.c -------------------------------------------------------------------------------- /src/repdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdb.h -------------------------------------------------------------------------------- /src/repdb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdb.o -------------------------------------------------------------------------------- /src/repdbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdbf.c -------------------------------------------------------------------------------- /src/repdbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdbf.h -------------------------------------------------------------------------------- /src/repdbf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repdbf.o -------------------------------------------------------------------------------- /src/repfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repfifo.c -------------------------------------------------------------------------------- /src/repfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repfifo.h -------------------------------------------------------------------------------- /src/repfifo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repfifo.o -------------------------------------------------------------------------------- /src/repgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgrid.c -------------------------------------------------------------------------------- /src/repgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgrid.h -------------------------------------------------------------------------------- /src/repgrid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgrid.o -------------------------------------------------------------------------------- /src/repgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgroup.c -------------------------------------------------------------------------------- /src/repgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgroup.h -------------------------------------------------------------------------------- /src/repgroup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repgroup.o -------------------------------------------------------------------------------- /src/repmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repmisc.c -------------------------------------------------------------------------------- /src/repmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repmisc.h -------------------------------------------------------------------------------- /src/repmisc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repmisc.o -------------------------------------------------------------------------------- /src/repobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobj.c -------------------------------------------------------------------------------- /src/repobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobj.h -------------------------------------------------------------------------------- /src/repobj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobj.o -------------------------------------------------------------------------------- /src/repobjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobjl.c -------------------------------------------------------------------------------- /src/repobjl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobjl.h -------------------------------------------------------------------------------- /src/repobjl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repobjl.o -------------------------------------------------------------------------------- /src/repprove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repprove.c -------------------------------------------------------------------------------- /src/repprove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repprove.h -------------------------------------------------------------------------------- /src/repprove.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repprove.o -------------------------------------------------------------------------------- /src/repspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repspace.c -------------------------------------------------------------------------------- /src/repspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repspace.h -------------------------------------------------------------------------------- /src/repspace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repspace.o -------------------------------------------------------------------------------- /src/repstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repstr.c -------------------------------------------------------------------------------- /src/repstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repstr.h -------------------------------------------------------------------------------- /src/repstr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repstr.o -------------------------------------------------------------------------------- /src/repsubgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repsubgl.c -------------------------------------------------------------------------------- /src/repsubgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repsubgl.h -------------------------------------------------------------------------------- /src/repsubgl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/repsubgl.o -------------------------------------------------------------------------------- /src/reptext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptext.c -------------------------------------------------------------------------------- /src/reptext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptext.h -------------------------------------------------------------------------------- /src/reptext.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptext.o -------------------------------------------------------------------------------- /src/reptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptime.c -------------------------------------------------------------------------------- /src/reptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptime.h -------------------------------------------------------------------------------- /src/reptime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptime.o -------------------------------------------------------------------------------- /src/reptrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptrip.c -------------------------------------------------------------------------------- /src/reptrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptrip.h -------------------------------------------------------------------------------- /src/reptrip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/reptrip.o -------------------------------------------------------------------------------- /src/semanaph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semanaph.c -------------------------------------------------------------------------------- /src/semanaph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semanaph.h -------------------------------------------------------------------------------- /src/semanaph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semanaph.o -------------------------------------------------------------------------------- /src/semaspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semaspec.c -------------------------------------------------------------------------------- /src/semaspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semaspec.h -------------------------------------------------------------------------------- /src/semaspec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semaspec.o -------------------------------------------------------------------------------- /src/semcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semcase.c -------------------------------------------------------------------------------- /src/semcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semcase.h -------------------------------------------------------------------------------- /src/semcase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semcase.o -------------------------------------------------------------------------------- /src/semdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semdisc.c -------------------------------------------------------------------------------- /src/semdisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semdisc.h -------------------------------------------------------------------------------- /src/semdisc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semdisc.o -------------------------------------------------------------------------------- /src/semgen1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen1.c -------------------------------------------------------------------------------- /src/semgen1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen1.h -------------------------------------------------------------------------------- /src/semgen1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen1.o -------------------------------------------------------------------------------- /src/semgen2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen2.c -------------------------------------------------------------------------------- /src/semgen2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen2.h -------------------------------------------------------------------------------- /src/semgen2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semgen2.o -------------------------------------------------------------------------------- /src/semparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semparse.c -------------------------------------------------------------------------------- /src/semparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semparse.h -------------------------------------------------------------------------------- /src/semparse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semparse.o -------------------------------------------------------------------------------- /src/semstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semstyle.c -------------------------------------------------------------------------------- /src/semstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semstyle.h -------------------------------------------------------------------------------- /src/semstyle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semstyle.o -------------------------------------------------------------------------------- /src/semtense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semtense.c -------------------------------------------------------------------------------- /src/semtense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semtense.h -------------------------------------------------------------------------------- /src/semtense.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/semtense.o -------------------------------------------------------------------------------- /src/synbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synbase.c -------------------------------------------------------------------------------- /src/synbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synbase.h -------------------------------------------------------------------------------- /src/synbase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synbase.o -------------------------------------------------------------------------------- /src/synfilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synfilt.c -------------------------------------------------------------------------------- /src/synfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synfilt.h -------------------------------------------------------------------------------- /src/synfilt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synfilt.o -------------------------------------------------------------------------------- /src/synparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synparse.c -------------------------------------------------------------------------------- /src/synparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synparse.h -------------------------------------------------------------------------------- /src/synparse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synparse.o -------------------------------------------------------------------------------- /src/synpnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synpnode.c -------------------------------------------------------------------------------- /src/synpnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synpnode.h -------------------------------------------------------------------------------- /src/synpnode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synpnode.o -------------------------------------------------------------------------------- /src/syntrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/syntrans.c -------------------------------------------------------------------------------- /src/syntrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/syntrans.h -------------------------------------------------------------------------------- /src/syntrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/syntrans.o -------------------------------------------------------------------------------- /src/synxbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synxbar.c -------------------------------------------------------------------------------- /src/synxbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synxbar.h -------------------------------------------------------------------------------- /src/synxbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/synxbar.o -------------------------------------------------------------------------------- /src/ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ta.c -------------------------------------------------------------------------------- /src/ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ta.h -------------------------------------------------------------------------------- /src/ta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ta.o -------------------------------------------------------------------------------- /src/taemail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taemail.c -------------------------------------------------------------------------------- /src/taemail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taemail.h -------------------------------------------------------------------------------- /src/taemail.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taemail.o -------------------------------------------------------------------------------- /src/tagger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tagger -------------------------------------------------------------------------------- /src/tale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tale.c -------------------------------------------------------------------------------- /src/tale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tale.h -------------------------------------------------------------------------------- /src/tale.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tale.o -------------------------------------------------------------------------------- /src/taname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taname.c -------------------------------------------------------------------------------- /src/taname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taname.h -------------------------------------------------------------------------------- /src/taname.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taname.o -------------------------------------------------------------------------------- /src/taprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taprod.c -------------------------------------------------------------------------------- /src/taprod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taprod.h -------------------------------------------------------------------------------- /src/taprod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/taprod.o -------------------------------------------------------------------------------- /src/tatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatable.c -------------------------------------------------------------------------------- /src/tatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatable.h -------------------------------------------------------------------------------- /src/tatable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatable.o -------------------------------------------------------------------------------- /src/tatagger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatagger.c -------------------------------------------------------------------------------- /src/tatagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatagger.h -------------------------------------------------------------------------------- /src/tatagger.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatagger.o -------------------------------------------------------------------------------- /src/tatime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatime.c -------------------------------------------------------------------------------- /src/tatime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatime.h -------------------------------------------------------------------------------- /src/tatime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tatime.o -------------------------------------------------------------------------------- /src/toolapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolapi.c -------------------------------------------------------------------------------- /src/toolapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolapi.h -------------------------------------------------------------------------------- /src/toolapi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolapi.o -------------------------------------------------------------------------------- /src/toolcorp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolcorp.c -------------------------------------------------------------------------------- /src/toolcorp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolcorp.h -------------------------------------------------------------------------------- /src/toolcorp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolcorp.o -------------------------------------------------------------------------------- /src/toolfilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolfilt.c -------------------------------------------------------------------------------- /src/toolfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolfilt.h -------------------------------------------------------------------------------- /src/toolfilt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolfilt.o -------------------------------------------------------------------------------- /src/toolgrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolgrd.c -------------------------------------------------------------------------------- /src/toolgrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolgrd.h -------------------------------------------------------------------------------- /src/toolgrd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolgrd.o -------------------------------------------------------------------------------- /src/toolprove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolprove.c -------------------------------------------------------------------------------- /src/toolprove.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolprove.o -------------------------------------------------------------------------------- /src/toolrpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolrpt.c -------------------------------------------------------------------------------- /src/toolrpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolrpt.h -------------------------------------------------------------------------------- /src/toolrpt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolrpt.o -------------------------------------------------------------------------------- /src/toolsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsh.c -------------------------------------------------------------------------------- /src/toolsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsh.h -------------------------------------------------------------------------------- /src/toolsh.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsh.o -------------------------------------------------------------------------------- /src/toolstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolstat.c -------------------------------------------------------------------------------- /src/toolstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolstat.h -------------------------------------------------------------------------------- /src/toolstat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolstat.o -------------------------------------------------------------------------------- /src/toolsvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsvr.c -------------------------------------------------------------------------------- /src/toolsvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsvr.h -------------------------------------------------------------------------------- /src/toolsvr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/toolsvr.o -------------------------------------------------------------------------------- /src/tooltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tooltest.c -------------------------------------------------------------------------------- /src/tooltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tooltest.h -------------------------------------------------------------------------------- /src/tooltest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tooltest.o -------------------------------------------------------------------------------- /src/tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tt -------------------------------------------------------------------------------- /src/tt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/tt.h -------------------------------------------------------------------------------- /src/ttglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ttglobal.h -------------------------------------------------------------------------------- /src/ua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ua.c -------------------------------------------------------------------------------- /src/ua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ua.h -------------------------------------------------------------------------------- /src/ua.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/ua.o -------------------------------------------------------------------------------- /src/uaanal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaanal.c -------------------------------------------------------------------------------- /src/uaanal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaanal.h -------------------------------------------------------------------------------- /src/uaanal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaanal.o -------------------------------------------------------------------------------- /src/uaasker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaasker.c -------------------------------------------------------------------------------- /src/uaasker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaasker.h -------------------------------------------------------------------------------- /src/uaasker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaasker.o -------------------------------------------------------------------------------- /src/uadict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uadict.c -------------------------------------------------------------------------------- /src/uadict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uadict.h -------------------------------------------------------------------------------- /src/uadict.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uadict.o -------------------------------------------------------------------------------- /src/uaemot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaemot.c -------------------------------------------------------------------------------- /src/uaemot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaemot.h -------------------------------------------------------------------------------- /src/uaemot.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaemot.o -------------------------------------------------------------------------------- /src/uafriend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uafriend.c -------------------------------------------------------------------------------- /src/uafriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uafriend.h -------------------------------------------------------------------------------- /src/uafriend.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uafriend.o -------------------------------------------------------------------------------- /src/uagoal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uagoal.c -------------------------------------------------------------------------------- /src/uagoal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uagoal.h -------------------------------------------------------------------------------- /src/uagoal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uagoal.o -------------------------------------------------------------------------------- /src/uaoccup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaoccup.c -------------------------------------------------------------------------------- /src/uaoccup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaoccup.h -------------------------------------------------------------------------------- /src/uaoccup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaoccup.o -------------------------------------------------------------------------------- /src/uapaappt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaappt.c -------------------------------------------------------------------------------- /src/uapaappt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaappt.h -------------------------------------------------------------------------------- /src/uapaappt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaappt.o -------------------------------------------------------------------------------- /src/uapagroc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapagroc.c -------------------------------------------------------------------------------- /src/uapagroc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapagroc.h -------------------------------------------------------------------------------- /src/uapagroc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapagroc.o -------------------------------------------------------------------------------- /src/uapashwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapashwr.c -------------------------------------------------------------------------------- /src/uapashwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapashwr.h -------------------------------------------------------------------------------- /src/uapashwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapashwr.o -------------------------------------------------------------------------------- /src/uapaslp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaslp.c -------------------------------------------------------------------------------- /src/uapaslp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaslp.h -------------------------------------------------------------------------------- /src/uapaslp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uapaslp.o -------------------------------------------------------------------------------- /src/uaquest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaquest.c -------------------------------------------------------------------------------- /src/uaquest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaquest.h -------------------------------------------------------------------------------- /src/uaquest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaquest.o -------------------------------------------------------------------------------- /src/uarel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uarel.c -------------------------------------------------------------------------------- /src/uarel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uarel.h -------------------------------------------------------------------------------- /src/uarel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uarel.o -------------------------------------------------------------------------------- /src/uascript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uascript.c -------------------------------------------------------------------------------- /src/uascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uascript.h -------------------------------------------------------------------------------- /src/uascript.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uascript.o -------------------------------------------------------------------------------- /src/uaspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaspace.c -------------------------------------------------------------------------------- /src/uaspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaspace.h -------------------------------------------------------------------------------- /src/uaspace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaspace.o -------------------------------------------------------------------------------- /src/uatime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatime.c -------------------------------------------------------------------------------- /src/uatime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatime.h -------------------------------------------------------------------------------- /src/uatime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatime.o -------------------------------------------------------------------------------- /src/uatrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatrade.c -------------------------------------------------------------------------------- /src/uatrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatrade.h -------------------------------------------------------------------------------- /src/uatrade.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uatrade.o -------------------------------------------------------------------------------- /src/uaweath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaweath.c -------------------------------------------------------------------------------- /src/uaweath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaweath.h -------------------------------------------------------------------------------- /src/uaweath.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/uaweath.o -------------------------------------------------------------------------------- /src/utilbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilbb.c -------------------------------------------------------------------------------- /src/utilbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilbb.h -------------------------------------------------------------------------------- /src/utilbb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilbb.o -------------------------------------------------------------------------------- /src/utilchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilchar.c -------------------------------------------------------------------------------- /src/utilchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilchar.h -------------------------------------------------------------------------------- /src/utilchar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilchar.o -------------------------------------------------------------------------------- /src/utildbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utildbg.c -------------------------------------------------------------------------------- /src/utildbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utildbg.h -------------------------------------------------------------------------------- /src/utildbg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utildbg.o -------------------------------------------------------------------------------- /src/utilhtml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilhtml.c -------------------------------------------------------------------------------- /src/utilhtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilhtml.h -------------------------------------------------------------------------------- /src/utilhtml.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilhtml.o -------------------------------------------------------------------------------- /src/utillrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utillrn.c -------------------------------------------------------------------------------- /src/utillrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utillrn.h -------------------------------------------------------------------------------- /src/utillrn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utillrn.o -------------------------------------------------------------------------------- /src/utilmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilmain.c -------------------------------------------------------------------------------- /src/utilmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilmain.h -------------------------------------------------------------------------------- /src/utilmain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilmain.o -------------------------------------------------------------------------------- /src/utilrpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilrpt.c -------------------------------------------------------------------------------- /src/utilrpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilrpt.h -------------------------------------------------------------------------------- /src/utilrpt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utilrpt.o -------------------------------------------------------------------------------- /src/utiltype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utiltype.c -------------------------------------------------------------------------------- /src/utiltype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utiltype.h -------------------------------------------------------------------------------- /src/utiltype.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/src/utiltype.o -------------------------------------------------------------------------------- /tcl/tt.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/tcl/tt.tcl -------------------------------------------------------------------------------- /ttkb/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/COPYRIGHT -------------------------------------------------------------------------------- /ttkb/infl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/infl.txt -------------------------------------------------------------------------------- /ttkb/le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/le.txt -------------------------------------------------------------------------------- /ttkb/obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/obj.txt -------------------------------------------------------------------------------- /ttkb/sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/sort.sh -------------------------------------------------------------------------------- /ttkb/tt0.00023.cycl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttkb/tt0.00023.cycl -------------------------------------------------------------------------------- /ttlegal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriktmueller/thoughttreasure/HEAD/ttlegal.txt --------------------------------------------------------------------------------