├── .gitmodules ├── README.md ├── aitoys ├── Makefile ├── README ├── ga.h ├── ga.i ├── gac.c ├── gatest.py ├── igobjs.h ├── igobjs.i ├── igobjsc.c ├── igtest.py ├── iguana.py ├── neur.c ├── nn.py ├── ops.b └── procops.py ├── android_apps ├── Android-App-HOWTO.rst ├── BluetoothBitBang │ ├── AndroidManifest.xml │ ├── build.properties │ ├── build.xml │ ├── default.properties │ ├── foo.sh │ ├── icon.png │ ├── icon.xcf │ ├── local.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── net │ │ └── willware │ │ └── bluetoothbitbang │ │ ├── BluetoothBitBang.java │ │ └── BluetoothComm.java ├── CryptoThing │ ├── AndroidManifest.xml │ ├── README.rst │ ├── ant.properties │ ├── build.xml │ ├── cryptolock.png │ ├── local.properties │ ├── proguard.cfg │ ├── project.properties │ ├── rc4.py │ ├── rc4.sh │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── net │ │ └── willware │ │ └── CryptoThing │ │ ├── Base64.java │ │ ├── CryptoThing.java │ │ └── RC4.java ├── Dictaphone │ ├── AndroidManifest.xml │ ├── Nipper.png │ ├── README.rst │ ├── ant.properties │ ├── build.xml │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ ├── color.xml │ │ │ └── strings.xml │ └── src │ │ └── net │ │ └── willware │ │ └── Dictaphone │ │ └── Dictaphone.java ├── IntervalTrainer │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.rst │ ├── ant.properties │ ├── build.xml │ ├── cheetah.gif │ ├── cheetah.xcf │ ├── libs │ │ └── mobclix.jar │ ├── marketqrcode.png │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── ic_menu_attachment.png │ │ │ ├── ic_menu_info_details.png │ │ │ └── ic_menu_preferences.png │ │ ├── layout │ │ │ ├── about.xml │ │ │ ├── eula.xml │ │ │ ├── main.xml │ │ │ └── number_picker.xml │ │ ├── menu │ │ │ └── foo.xml │ │ ├── raw │ │ │ └── tone.wav │ │ └── values │ │ │ ├── color.xml │ │ │ └── strings.xml │ ├── src │ │ └── net │ │ │ └── willware │ │ │ └── IntervalTrainer │ │ │ ├── DurationPicker.java │ │ │ └── IntervalTrainer.java │ └── util │ │ └── make-tone.py ├── JQueryMobileExample │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── README.rst │ ├── assets │ │ └── www │ │ │ ├── css-js │ │ │ ├── images │ │ │ │ └── icons-18-white.png │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery.ba-dotimeout.js │ │ │ ├── jquery.dst.js │ │ │ ├── jquery.mobile-1.0a2.min.css │ │ │ └── jquery.mobile-1.0a2.min.js │ │ │ ├── img │ │ │ └── wait.gif │ │ │ └── index.html │ ├── build.xml │ ├── news-web-code │ │ ├── bridge.php │ │ ├── css-js │ │ │ ├── images │ │ │ │ └── icons-18-white.png │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery.ba-dotimeout.js │ │ │ ├── jquery.dst.js │ │ │ ├── jquery.mobile-1.0a2.min.css │ │ │ └── jquery.mobile-1.0a2.min.js │ │ ├── img │ │ │ └── wait.gif │ │ ├── index.html │ │ ├── test-php.php │ │ └── tryit.sh │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── net │ │ └── willware │ │ └── JQueryMobileExample │ │ └── NewsActivity.java ├── LocationSender │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── Tryit.kml │ ├── build.xml │ ├── locsender36.png │ ├── locsender48.png │ ├── locsender72.png │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── net │ │ └── willware │ │ └── locationsender │ │ └── LocationSender.java ├── MusicKeyboard │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── musical_note.png │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── ic_menu_attachment.png │ │ │ ├── ic_menu_info_details.png │ │ │ ├── ic_menu_preferences.png │ │ │ ├── timepicker_down_btn.xml │ │ │ ├── timepicker_down_disabled.9.png │ │ │ ├── timepicker_down_disabled_focused.9.png │ │ │ ├── timepicker_down_normal.9.png │ │ │ ├── timepicker_down_pressed.9.png │ │ │ ├── timepicker_down_selected.9.png │ │ │ ├── timepicker_up_btn.xml │ │ │ ├── timepicker_up_disabled.9.png │ │ │ ├── timepicker_up_disabled_focused.9.png │ │ │ ├── timepicker_up_normal.9.png │ │ │ ├── timepicker_up_pressed.9.png │ │ │ └── timepicker_up_selected.9.png │ │ ├── layout │ │ │ ├── about.xml │ │ │ ├── main.xml │ │ │ └── number_picker.xml │ │ ├── menu │ │ │ └── foo.xml │ │ ├── raw │ │ │ ├── tone00.wav │ │ │ ├── tone01.wav │ │ │ ├── tone02.wav │ │ │ ├── tone03.wav │ │ │ ├── tone04.wav │ │ │ ├── tone05.wav │ │ │ ├── tone06.wav │ │ │ ├── tone07.wav │ │ │ ├── tone08.wav │ │ │ ├── tone09.wav │ │ │ ├── tone10.wav │ │ │ ├── tone11.wav │ │ │ ├── tone12.wav │ │ │ ├── tone13.wav │ │ │ ├── tone14.wav │ │ │ ├── tone15.wav │ │ │ ├── tone16.wav │ │ │ ├── tone17.wav │ │ │ ├── tone18.wav │ │ │ ├── tone19.wav │ │ │ ├── tone20.wav │ │ │ ├── tone21.wav │ │ │ ├── tone22.wav │ │ │ ├── tone23.wav │ │ │ ├── tone24.wav │ │ │ ├── tone25.wav │ │ │ ├── tone26.wav │ │ │ ├── tone27.wav │ │ │ ├── tone28.wav │ │ │ ├── tone29.wav │ │ │ ├── tone30.wav │ │ │ ├── tone31.wav │ │ │ ├── tone32.wav │ │ │ ├── tone33.wav │ │ │ ├── tone34.wav │ │ │ ├── tone35.wav │ │ │ └── tone36.wav │ │ └── values │ │ │ ├── color.xml │ │ │ └── strings.xml │ ├── src │ │ └── net │ │ │ └── willware │ │ │ └── MusicKeyboard │ │ │ └── MusicKeyboard.java │ └── util │ │ └── make-tone.py └── sign-app.sh ├── angstrom-distro ├── README.rst ├── hello-on-boot │ ├── Makefile │ └── helloworld.c ├── helloworld_1.0.0.bb.1 ├── ipks │ ├── Packages.gz │ ├── helloworld-dbg_1.0.0-r1.6_armv7a.ipk │ ├── helloworld-dev_1.0.0-r1.6_armv7a.ipk │ ├── helloworld_1.0.0-r1.6_armv7a.ipk │ ├── lighttpd.conf │ ├── quux-module-dbg_1.0.0-r100.6_beagleboard.ipk │ ├── quux-module-dev_1.0.0-r100.6_beagleboard.ipk │ └── quux-module_1.0.0-r100.6_beagleboard.ipk ├── kernel-module │ ├── Makefile │ ├── build.sh │ ├── quux.c │ └── tryit.sh ├── lighttpd.conf ├── make-clean.sh ├── make-tarball.sh ├── quux-module_1.0.0.bb.1 ├── write-sd-card.sh └── wware-image.bb ├── another_c_parallelizer ├── Makefile ├── README ├── conway.c ├── process.py ├── simple.c ├── thr.c └── thr.h ├── another_inference_engine ├── Makefile ├── common.c ├── common.h ├── foo.py └── graphobject.c ├── arm-hacks ├── README.rst ├── bbb.py ├── cortex-m3 │ ├── README.rst │ └── goodbits.bin ├── make-toolchain.py ├── make-toolchain.sh ├── raspberry-pi │ ├── README.md │ └── swig-nodesjs │ │ ├── binding.gyp │ │ ├── foo.cxx │ │ ├── foo.h │ │ ├── foo.i │ │ ├── on-host.sh │ │ ├── on-rpi.sh │ │ └── tryit.js └── sam7 │ ├── Blinker │ ├── Makefile │ ├── board.h │ └── main.c │ ├── Examples │ ├── at91_usbfw_core_hid │ │ ├── AT91SAM7S64-ROM.ld │ │ ├── Makefile │ │ ├── README │ │ ├── core │ │ │ ├── at91stdio.c │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── common.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── enumeration_example.c │ │ │ ├── standard.c │ │ │ ├── standard.h │ │ │ ├── trace.h │ │ │ ├── udp.c │ │ │ └── usb.h │ │ ├── detritus │ │ │ ├── at91_usbfw_core_hid.pnproj │ │ │ ├── at91_usbfw_core_hid.pnps │ │ │ ├── openocd_at91sam7s_flash.script │ │ │ ├── openocd_at91sam7s_flash_ftdi.cfg │ │ │ ├── openocd_at91sam7s_flash_wiggler.cfg │ │ │ ├── openocd_env_info.cmd │ │ │ └── openocd_go_flash.cmd │ │ ├── hid │ │ │ ├── hid.h │ │ │ ├── keyboard_driver.c │ │ │ ├── keyboard_driver.h │ │ │ ├── keyboard_example.c │ │ │ ├── mouse_driver.c │ │ │ ├── mouse_driver.h │ │ │ └── mouse_example.c │ │ ├── lib │ │ │ └── AT91SAM7S64 │ │ │ │ ├── AT91SAM7S64.h │ │ │ │ ├── AT91SAM7S64.inc │ │ │ │ ├── AT91SAM7S64_inc.h │ │ │ │ └── lib_AT91SAM7S64.h │ │ ├── readme.txt │ │ ├── startup.S │ │ └── syscalls_gnu.c │ └── at91sam7s64_Hello │ │ ├── AT91SAM7S64-RAM.ld │ │ ├── AT91SAM7S64-ROM.ld │ │ ├── AT91SAM7S64.h │ │ ├── Abstract.txt │ │ ├── Board.h │ │ ├── ExtInt.c │ │ ├── Makefile │ │ ├── Time.c │ │ ├── interrupt_utils.h │ │ ├── lib_AT91SAM7S64.h │ │ ├── main.c │ │ ├── prog.sh │ │ ├── sam7_hello.pnproj │ │ ├── serial.c │ │ ├── serial.h │ │ ├── startup_SAM7S.S │ │ └── syscalls.c │ ├── README.rst │ ├── arm-docs │ ├── ARM_Architecture_Overview.pdf │ └── ARM_Instruction_Set.pdf │ ├── bit-bang │ ├── Makefile │ ├── README.rst │ ├── bbbschematic.fig │ ├── bbbschematic.png │ ├── board.h │ ├── foo.py │ └── main.c │ ├── common │ ├── AT91SAM7S256.h │ ├── AT91SAM7S64.h │ ├── dbgu.c │ ├── dbgu.h │ ├── descriptors.h │ ├── flash-crt.s │ ├── flash-ln.cmd │ ├── h64_board.h │ ├── libsam7.c │ ├── libsam7.h │ ├── p256_board.h │ ├── ram-crt.s │ ├── ram-ln.cmd │ ├── usb.c │ └── usb.h │ ├── interrupt-hacks │ ├── AT91SAM7S64-RAM.ld │ ├── AT91SAM7S64-ROM.ld │ ├── AT91SAM7S64.h │ ├── Abstract.txt │ ├── Board.h │ ├── ExtInt.c │ ├── Makefile │ ├── Time.c │ ├── cdc.c │ ├── descriptors.h │ ├── hack.py │ ├── hid.c │ ├── interrupt_utils.h │ ├── leds.c │ ├── leds.h │ ├── lib_AT91SAM7S64.h │ ├── main.c │ ├── serial.c │ ├── serial.h │ ├── startup_SAM7S.S │ ├── syscalls.c │ ├── usb.c │ └── usb.h │ └── serial-comm │ ├── Makefile │ ├── README.rst │ ├── board.h │ └── main.c ├── bcal ├── app.yaml ├── areyousure.html ├── atom │ ├── __init__.py │ ├── auth.py │ ├── client.py │ ├── core.py │ ├── data.py │ ├── http.py │ ├── http_core.py │ ├── http_interface.py │ ├── mock_http.py │ ├── mock_http_core.py │ ├── mock_service.py │ ├── service.py │ ├── token_store.py │ └── url.py ├── bcal.py ├── calendar.html ├── column.html ├── counselors.html ├── favicon.ico ├── gdata │ ├── Crypto │ │ ├── Cipher │ │ │ ├── AES.pyd │ │ │ ├── ARC2.pyd │ │ │ ├── ARC4.pyd │ │ │ ├── Blowfish.pyd │ │ │ ├── CAST.pyd │ │ │ ├── DES.pyd │ │ │ ├── DES3.pyd │ │ │ ├── IDEA.pyd │ │ │ ├── RC5.pyd │ │ │ ├── XOR.pyd │ │ │ └── __init__.py │ │ ├── Hash │ │ │ ├── HMAC.py │ │ │ ├── MD2.pyd │ │ │ ├── MD4.pyd │ │ │ ├── MD5.py │ │ │ ├── RIPEMD.pyd │ │ │ ├── SHA.py │ │ │ ├── SHA256.pyd │ │ │ └── __init__.py │ │ ├── Protocol │ │ │ ├── AllOrNothing.py │ │ │ ├── Chaffing.py │ │ │ └── __init__.py │ │ ├── PublicKey │ │ │ ├── DSA.py │ │ │ ├── ElGamal.py │ │ │ ├── RSA.py │ │ │ ├── __init__.py │ │ │ ├── pubkey.py │ │ │ └── qNEW.py │ │ ├── Util │ │ │ ├── RFC1751.py │ │ │ ├── __init__.py │ │ │ ├── number.py │ │ │ ├── randpool.py │ │ │ └── test.py │ │ ├── __init__.py │ │ └── test.py │ ├── __init__.py │ ├── acl │ │ ├── __init__.py │ │ └── data.py │ ├── alt │ │ ├── __init__.py │ │ ├── app_engine.py │ │ └── appengine.py │ ├── analytics │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── apps │ │ ├── __init__.py │ │ ├── adminsettings │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── emailsettings │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── migration │ │ │ ├── __init__.py │ │ │ └── service.py │ │ └── service.py │ ├── auth.py │ ├── base │ │ ├── __init__.py │ │ └── service.py │ ├── blogger │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── books │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ ├── calendar │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ ├── calendar_resource │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── client.py │ ├── codesearch │ │ ├── __init__.py │ │ └── service.py │ ├── contacts │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── core.py │ ├── data.py │ ├── docs │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── dublincore │ │ ├── __init__.py │ │ └── data.py │ ├── exif │ │ └── __init__.py │ ├── finance │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ ├── gauth.py │ ├── geo │ │ ├── __init__.py │ │ └── data.py │ ├── health │ │ ├── __init__.py │ │ └── service.py │ ├── maps │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── media │ │ ├── __init__.py │ │ └── data.py │ ├── notebook │ │ ├── __init__.py │ │ └── data.py │ ├── oauth │ │ ├── CHANGES.txt │ │ ├── __init__.py │ │ └── rsa.py │ ├── opensearch │ │ ├── __init__.py │ │ └── data.py │ ├── photos │ │ ├── __init__.py │ │ └── service.py │ ├── projecthosting │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── sample_util.py │ ├── service.py │ ├── sites │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── spreadsheet │ │ ├── __init__.py │ │ ├── service.py │ │ └── text_db.py │ ├── spreadsheets │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── test_config.py │ ├── test_data.py │ ├── tlslite │ │ ├── BaseDB.py │ │ ├── Checker.py │ │ ├── FileObject.py │ │ ├── HandshakeSettings.py │ │ ├── Session.py │ │ ├── SessionCache.py │ │ ├── SharedKeyDB.py │ │ ├── TLSConnection.py │ │ ├── TLSRecordLayer.py │ │ ├── VerifierDB.py │ │ ├── X509.py │ │ ├── X509CertChain.py │ │ ├── __init__.py │ │ ├── api.py │ │ ├── constants.py │ │ ├── errors.py │ │ ├── integration │ │ │ ├── AsyncStateMachine.py │ │ │ ├── ClientHelper.py │ │ │ ├── HTTPTLSConnection.py │ │ │ ├── IMAP4_TLS.py │ │ │ ├── IntegrationHelper.py │ │ │ ├── POP3_TLS.py │ │ │ ├── SMTP_TLS.py │ │ │ ├── TLSAsyncDispatcherMixIn.py │ │ │ ├── TLSSocketServerMixIn.py │ │ │ ├── TLSTwistedProtocolWrapper.py │ │ │ ├── XMLRPCTransport.py │ │ │ └── __init__.py │ │ ├── mathtls.py │ │ ├── messages.py │ │ └── utils │ │ │ ├── AES.py │ │ │ ├── ASN1Parser.py │ │ │ ├── Cryptlib_AES.py │ │ │ ├── Cryptlib_RC4.py │ │ │ ├── Cryptlib_TripleDES.py │ │ │ ├── OpenSSL_AES.py │ │ │ ├── OpenSSL_RC4.py │ │ │ ├── OpenSSL_RSAKey.py │ │ │ ├── OpenSSL_TripleDES.py │ │ │ ├── PyCrypto_AES.py │ │ │ ├── PyCrypto_RC4.py │ │ │ ├── PyCrypto_RSAKey.py │ │ │ ├── PyCrypto_TripleDES.py │ │ │ ├── Python_AES.py │ │ │ ├── Python_RC4.py │ │ │ ├── Python_RSAKey.py │ │ │ ├── RC4.py │ │ │ ├── RSAKey.py │ │ │ ├── TripleDES.py │ │ │ ├── __init__.py │ │ │ ├── cipherfactory.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── cryptomath.py │ │ │ ├── dateFuncs.py │ │ │ ├── entropy.c │ │ │ ├── hmac.py │ │ │ ├── jython_compat.py │ │ │ ├── keyfactory.py │ │ │ ├── rijndael.py │ │ │ ├── win32prng.c │ │ │ └── xmltools.py │ ├── urlfetch.py │ ├── webmastertools │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ └── youtube │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py ├── groups.html ├── index.yaml ├── main.html ├── popup.html ├── static │ ├── bkgnd.png │ └── jquery.js └── tryauth.py ├── bluetooth-fun ├── BluetoothSerialToys001.jpg └── btcalc.py ├── c_logger ├── clog.c └── clog.h ├── code_commenter ├── Doxyfile ├── README ├── commenter.py ├── hack.sh ├── lt_doxygen │ ├── annotated.html │ ├── classes.html │ ├── doxygen.css │ ├── doxygen.png │ ├── fft_8c-source.html │ ├── fft_8c.html │ ├── files.html │ ├── form_0.png │ ├── formula.repository │ ├── ftv2blank.png │ ├── ftv2doc.png │ ├── ftv2folderclosed.png │ ├── ftv2folderopen.png │ ├── ftv2lastnode.png │ ├── ftv2link.png │ ├── ftv2mlastnode.png │ ├── ftv2mnode.png │ ├── ftv2node.png │ ├── ftv2plastnode.png │ ├── ftv2pnode.png │ ├── ftv2vertline.png │ ├── functions.html │ ├── functions_vars.html │ ├── globals.html │ ├── globals_defs.html │ ├── globals_enum.html │ ├── globals_eval.html │ ├── globals_func.html │ ├── globals_type.html │ ├── globals_vars.html │ ├── index.hhc │ ├── index.hhk │ ├── index.hhp │ ├── index.html │ ├── main.html │ ├── py__linuxtuples_8c-source.html │ ├── py__linuxtuples_8c.html │ ├── structCtxObject.html │ ├── structcontext.html │ ├── structelement.html │ ├── structttuple.html │ ├── structtuple.html │ ├── structtuple__list.html │ ├── tab_b.gif │ ├── tab_l.gif │ ├── tab_r.gif │ ├── tabs.css │ ├── tree.html │ ├── tuple_8c-source.html │ ├── tuple_8c.html │ ├── tuple_8h-source.html │ ├── tuple_8h.html │ ├── tuple__client_8c-source.html │ ├── tuple__client_8c.html │ ├── tuple__server_8c-source.html │ └── tuple__server_8c.html ├── scan.cu └── scan_best_kernel.cu ├── codegrepper └── ReadMe.txt ├── cpp_logger ├── Hack.cpp └── README ├── databases ├── mongodb │ ├── Doorenbos.pdf │ ├── README.rst │ └── inference.js ├── mysql │ └── foo.sql └── neo4j │ ├── Foo.java │ ├── Makefile │ ├── README.rst │ └── neo4j_config.props ├── datasheets ├── FT232R.pdf └── FT245R.pdf ├── dbus-example ├── Makefile ├── README.rst ├── dbus-example.c └── try-dbus.c ├── debian-ubuntu └── make-deb-package │ ├── Makefile │ ├── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── postinst │ └── prerm │ ├── python │ └── foobar.py │ ├── src │ └── say-hello.c │ └── usr │ └── share │ └── doc │ └── foo-bar │ └── foobar.txt ├── discretesim └── tryit.py ├── django_orm ├── README.rst ├── __init__.py ├── fixtures │ └── silly.json ├── manage.py ├── models.py └── settings.py ├── doxygen-xml ├── README.rst ├── doxyxml.py └── tryit.py ├── elf_files └── elfparse.py ├── ellipsoid └── pca.py ├── embedpython ├── Makefile ├── README.rst ├── callpy.c └── foo.py ├── eurascal ├── README └── eurascal.py ├── evolved_neural_nets ├── README └── tictactoe.py ├── fft-fun ├── Makefile ├── README.rst ├── check-c-code.py ├── fft.c ├── mt19937ar.c ├── pig_intestines.jpg ├── tryit.py └── tryit2.py ├── fixwhitespace.py ├── genealogy ├── README.rst ├── family.json └── putter.py ├── git-replace ├── githelper.sh ├── gmath ├── README.rst ├── math.scm ├── tests.scm └── verlet.scm ├── gtk-fun ├── Makefile ├── README.rst ├── nada.c ├── nada.pl ├── nada.py └── nada.xml ├── gwt ├── README.rst └── Tryit │ ├── .classpath │ ├── .project │ ├── README.txt │ ├── Tryit.launch │ ├── TryitTest-dev.launch │ ├── TryitTest-prod.launch │ ├── build.xml │ ├── src │ └── net │ │ └── willware │ │ └── tryit │ │ ├── Tryit.gwt.xml │ │ ├── client │ │ ├── GreetingService.java │ │ ├── GreetingServiceAsync.java │ │ └── Tryit.java │ │ ├── server │ │ └── GreetingServiceImpl.java │ │ └── shared │ │ └── FieldVerifier.java │ ├── test │ └── net │ │ └── willware │ │ └── tryit │ │ ├── TryitJUnit.gwt.xml │ │ └── client │ │ └── TryitTest.java │ └── war │ ├── Tryit.css │ ├── Tryit.html │ └── WEB-INF │ └── web.xml ├── hack-gunicorn ├── Dockerfile ├── README.md ├── foo.py ├── playbook.yml ├── undo.yml └── wsgi.py ├── hack-malloc ├── FreeRTOS.h ├── Makefile ├── README.rst ├── heap_ww.c ├── task.h └── tryit.c ├── hackflex ├── README.rst ├── build.properties ├── build.xml └── src │ └── Tryit.mxml ├── homedir ├── dot-bashrc ├── dot-emacs └── mkpasswd.py ├── java-mysql ├── .classpath ├── .project ├── build.sh ├── make-jar.sh ├── makedocs.sh ├── mysql-connector-java-5.1.21-bin.jar ├── net │ └── willware │ │ └── Mysql │ │ ├── Column.java │ │ ├── MyTestCase.java │ │ ├── Row.java │ │ ├── RowFactory.java │ │ ├── Schema.java │ │ ├── SqlProxy.java │ │ └── Table.java ├── setup.sh ├── test.sh └── testschema.sql ├── kindle-authoring ├── AmazonKindlePublishingGuidelines.pdf ├── Makefile ├── chapter1.rst ├── chapter2.rst ├── chapter3.rst ├── create-cover-art.py └── make-index.py ├── learn-stuff ├── ansible-ec2 │ ├── .gitignore │ ├── README.md │ ├── Vagrantfile │ ├── db.sqlite3 │ ├── etc-init.d-djangoserver │ ├── keypair.pem.crypt │ ├── localvm │ ├── main.yml │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── python-pyqtgraph_0.9.8-1_all.deb │ ├── requirements.txt │ ├── roles │ │ └── django │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ ├── deploy.yml │ │ │ └── main.yml │ │ │ └── templates │ │ │ └── initial_data.json │ ├── setup.sh │ ├── site.yml │ ├── usr-sbin-djangoserver │ └── vars.yml ├── docker │ ├── README.md │ ├── example │ │ └── run.sh │ ├── flask-serve.py │ ├── kill-dockers.sh │ ├── start-bash.sh │ ├── start-many.sh │ └── wware-runapp │ │ ├── Dockerfile │ │ └── image │ │ ├── bin │ │ ├── rc4.py │ │ └── runapp.sh │ │ └── home │ │ └── wware │ │ ├── dot-ssh.tgz.encrypted │ │ └── set-up-ssh.sh ├── myhdl │ ├── Makefile │ ├── PapilioArduinoSynth.jpg │ ├── README.rst │ ├── amps_filters.py │ ├── blinker.py │ ├── config.py │ ├── cosim.py │ ├── envgen.py │ ├── foo.py │ ├── fpga-synth │ │ ├── fpga-synth.xise │ │ ├── fpga_synth.bit │ │ ├── fpga_synth.v │ │ └── papilio.ucf │ ├── fpga_music_driver │ │ └── fpga_music_driver.ino │ ├── my-own-hack │ │ └── README.rst │ ├── output_stage.py │ ├── param_loading.py │ ├── plugh │ │ └── plugh.ino │ ├── synth.py │ ├── tb_fpga.tf │ ├── tryit.py │ ├── wavegen.py │ └── xilinx │ │ ├── README.rst │ │ ├── blinker.bit │ │ ├── blinker.v │ │ ├── blinker.xise │ │ ├── go.sh │ │ ├── nexys2.ucf │ │ ├── nexys2prog │ │ ├── README │ │ ├── build.sh │ │ ├── led.v │ │ └── nexys2prog │ │ └── prog.sh ├── redblacktree │ └── C++ │ │ ├── Makefile │ │ ├── README │ │ ├── RedBlackTree.cc │ │ ├── RedBlackTree.h │ │ ├── TemplateStack.h │ │ ├── interval_tree.cc │ │ ├── interval_tree.h │ │ ├── misc.h │ │ ├── sets.h │ │ ├── test.cc │ │ └── tree_test.tcl └── sip │ ├── README.md │ ├── sharedptr.h │ ├── sharedptr.sip │ └── tryit.py ├── libusb-pbatard ├── .gitattributes ├── .gitignore ├── AUTHORS ├── COPYING ├── Doxyfile ├── INSTALL ├── INSTALL_WIN.txt ├── Makefile.am ├── NEWS ├── PORTING ├── README ├── THANKS ├── TODO ├── autogen.sh ├── bd.cmd ├── bm.sh ├── bump.sh ├── configure.ac ├── cygwin-libusb-1.0.a ├── cygwin-libusb-1.0.dll.a ├── cygwin-libusb-1.0.la ├── ddk_build.cmd ├── doc │ ├── Makefile.am │ └── doxygen.cfg.in ├── examples │ ├── .gitattributes │ ├── Makefile.am │ ├── dpfp.c │ ├── dpfp_threaded.c │ ├── lsusb.c │ ├── lsusb.dsp │ ├── lsusb.vcproj │ ├── lsusb_2008.vcproj │ ├── lsusb_sources │ ├── xusb.c │ ├── xusb.dsp │ ├── xusb.vcproj │ ├── xusb_2008.vcproj │ └── xusb_sources ├── hack-cygwin.sh ├── libtool-nls.diff ├── libusb-1.0.pc.in ├── libusb.dsw ├── libusb.sln ├── libusb │ ├── Makefile.am │ ├── core.c │ ├── descriptor.c │ ├── io.c │ ├── libusb-1.0.def │ ├── libusb-1.0.rc │ ├── libusb.h │ ├── libusb_version.h │ ├── libusb_version.h.in │ ├── libusbi.h │ ├── os │ │ ├── darwin_usb.c │ │ ├── darwin_usb.h │ │ ├── libusb_sources │ │ ├── linux_usbfs.c │ │ ├── linux_usbfs.h │ │ ├── poll_posix.h │ │ ├── poll_windows.c │ │ ├── poll_windows.h │ │ ├── threads_posix.h │ │ ├── threads_windows.c │ │ ├── threads_windows.h │ │ ├── windows_usb.c │ │ └── windows_usb.h │ └── sync.c ├── libusb_2008.sln ├── libusb_dll.dsp ├── libusb_dll.vcproj ├── libusb_dll_2008.vcproj ├── libusb_static.dsp ├── libusb_static.vcproj ├── libusb_static_2008.vcproj └── msvc │ ├── config.h │ ├── inttypes.h │ └── stdint.h ├── linkeddata └── README.rst ├── linuxtuples-1.03 ├── ChangeLog ├── Doxyfile ├── Makefile ├── README ├── SLAVES ├── endian_test.c ├── fft.c ├── jobcontrol.py ├── package.html ├── pingpong.py ├── py_linuxtuples.c ├── testCount.py ├── tuple.c ├── tuple.h ├── tuple_client.c └── tuple_server.c ├── litprog └── litprog.html ├── mapreduce ├── MR_UT.py ├── NOTES ├── doc │ ├── Makefile │ ├── Yahoo-hadoop-cluster.jpg │ ├── etherio.pdf │ ├── mr.tex │ └── mr_arch.fig └── mapreduce.py ├── mechanics ├── Makefile ├── debian │ ├── changelog │ ├── control │ └── copyright ├── python │ ├── mech_lib.py │ └── tryit.py ├── requirements.txt └── usr │ └── share │ └── doc │ └── wware-mechanics │ ├── LICENSE-BSD.TXT │ ├── LICENSE.TXT │ └── README.rst ├── mixedmode ├── README ├── cpeptide.gro ├── cpeptide.pdb ├── cpeptide_after_md.gro └── cpeptide_md.trr ├── mmt ├── Makefile ├── NOTES ├── mmt.py └── tryit.c ├── monty-hall ├── README.rst └── mh.py ├── music ├── Makefile ├── foo.py ├── midi.py ├── rdnotes.py ├── sndblit.1 └── sndblit.c ├── mw-helper └── README.rst ├── ncad2 ├── getpdb.php ├── nc.html └── nc.js ├── ncadjava ├── Doxyfile ├── Makefile ├── aspirin.java ├── aterm.java ├── atom.java ├── bond.java ├── buckyball.java ├── carbon.java ├── diamond.java ├── diamrod.java ├── dl_atom.java ├── dl_bond.java ├── dlentry.java ├── dlforce.java ├── group.java ├── hydrogen.java ├── lrterm.java ├── lterm.java ├── nanocad.java ├── nitrogen.java ├── oxygen.java ├── propane.java ├── term.java ├── textwin.java ├── tterm.java ├── tworings.java ├── view.java ├── water.java └── wrapper.java ├── number-theory ├── foo.py └── makeprimes.py ├── packetfun ├── packetfun.py └── rawsocket.c ├── python ├── NOTES.rst ├── __init__.py ├── ast │ ├── README.rst │ └── tryit.py ├── cmdline │ ├── cmdline.py │ └── example.py ├── debugging │ ├── __init__.py │ ├── debugger.py │ ├── hack │ │ └── __init__.py │ └── testit.py ├── feature-toggle │ └── ftoggle.py ├── hack-cdll │ └── foo.py ├── mysql │ ├── README.rst │ ├── mysql.py │ └── testschema.sql └── test-batch │ └── testBatch.py ├── pyusb-1.0.0-a0 ├── ACKNOWLEDGEMENTS ├── LICENSE ├── PKG-INFO ├── README ├── TODO ├── docs │ └── tutorial.txt ├── setup.py ├── tests │ ├── devinfo.py │ ├── pic18f4550 │ │ ├── 18f87j50.lkr │ │ ├── CleanUp.bat │ │ ├── MCHPUSB.mcp │ │ ├── MCHPUSB.mcs │ │ ├── MCHPUSB.mcw │ │ ├── MCHPUSB.mptags │ │ ├── MCHPUSB.tagsrc │ │ ├── autofiles │ │ │ ├── usbcfg.h │ │ │ ├── usbdsc.c │ │ │ └── usbdsc.h │ │ ├── io_cfg.h │ │ ├── main.c │ │ ├── rm18f4550.lkr │ │ └── system │ │ │ ├── interrupt │ │ │ ├── interrupt.c │ │ │ └── interrupt.h │ │ │ ├── typedefs.h │ │ │ └── usb │ │ │ ├── class │ │ │ └── pyusb │ │ │ │ ├── pyusb.c │ │ │ │ └── pyusb.h │ │ │ ├── usb.h │ │ │ ├── usb9 │ │ │ ├── usb9.c │ │ │ └── usb9.h │ │ │ ├── usb_compile_time_validation.h │ │ │ ├── usbctrltrf │ │ │ ├── usbctrltrf.c │ │ │ └── usbctrltrf.h │ │ │ ├── usbdefs │ │ │ ├── usbdefs_ep0_buff.h │ │ │ └── usbdefs_std_dsc.h │ │ │ ├── usbdrv │ │ │ ├── usbdrv.c │ │ │ └── usbdrv.h │ │ │ ├── usbmmap.c │ │ │ └── usbmmap.h │ ├── test_backend.py │ ├── test_find.py │ ├── test_integration.py │ ├── test_util.py │ ├── testall.py │ └── utils.py └── usb │ ├── __init__.py │ ├── _debug.py │ ├── _interop.py │ ├── backend │ ├── __init__.py │ ├── libusb01.py │ ├── libusb10.py │ └── openusb.py │ ├── core.py │ ├── legacy.py │ └── util.py ├── qemu-rpi └── README.md ├── remaster-dsl ├── Makefile ├── README.rst ├── additions │ ├── bin │ │ ├── hack-lua.lua │ │ └── hello.sh │ └── etc │ │ └── skel │ │ └── dot-xinitrc └── verify-number.c ├── remaster-slackware ├── README.rst └── slackware-livecd-script.sh ├── remaster-umr ├── README.rst └── customize.sh ├── renderfarm └── renderfarm.py ├── semantic-wiki ├── README.rst ├── rdf-cgi.py ├── setup-ubuntu-12.04.sh └── undo.sh ├── semweb ├── .classpath ├── .project ├── README.rst ├── animals.ttl ├── build.xml ├── family.rdf ├── family.ttl ├── hack-rdflib.py ├── index.jsp ├── log4j.properties ├── plugin.py ├── runfoo.sh ├── src │ └── net │ │ └── willware │ │ └── semweb │ │ ├── Foo.java │ │ ├── GenealogyModel.java │ │ ├── Hack.java │ │ ├── QueryProcessor.java │ │ ├── Rdfxml2ttl.java │ │ ├── Tester.java │ │ ├── Ttl2rdfxml.java │ │ ├── WebApp.java │ │ └── WriterOutputStream.java ├── try-cwm.py ├── try-surf.py ├── web.xml └── x.sh ├── simann ├── Makefile ├── README ├── dostats.py ├── sa.py ├── sahelp.c └── sahelp.h ├── siod ├── README ├── acct.c ├── cgi-echo.scm ├── cgi.scm ├── cp-build ├── cp-build.1 ├── csiod ├── csiod.1 ├── descrip.mms ├── find-files.scm ├── fork-test.scm ├── ftp-cp ├── ftp-cp.1 ├── ftp-get ├── ftp-put ├── ftp-put.1 ├── ftp-test ├── ftp-test.1 ├── ftp.scm ├── gd.c ├── hello.scm ├── http-get ├── http-get.1 ├── http-server.scm ├── http-stress.scm ├── http.scm ├── libsiod.def ├── libsiod.mak ├── make.bat ├── makefile ├── makefile.com ├── maze-support.scm ├── md5.c ├── md5.h ├── ndbm.c ├── parser_pratt.c ├── parser_pratt.def ├── parser_pratt.mak ├── parser_pratt.opt ├── parser_pratt.scm ├── piechart.scm ├── pop3.scm ├── pratt.scm ├── regex.c ├── sample.c ├── selfdoc.scm ├── siod.1 ├── siod.c ├── siod.h ├── siod.html ├── siod.mak ├── siod.opt ├── siod.scm ├── siodm.c ├── siodp.h ├── siodshr.opt ├── slib.c ├── sliba.c ├── slibu.c ├── smtp.scm ├── snapshot-compare ├── snapshot-compare.1 ├── snapshot-dir ├── snapshot-dir.1 ├── ss.c ├── ss.h ├── ss.opt ├── statfs.c ├── tar.c ├── tar.opt └── trace.c ├── statemachines ├── Makefile ├── readme.tex ├── smtests.py ├── stateMachine.py └── stateMachine.pyc ├── tarball-runner ├── README.rst ├── example │ ├── encrypted.tar.gz │ ├── example.tar.gz │ └── run.sh ├── tarballrunner.py ├── uck-script-1.sh └── uck-script-2.sh ├── ti-dvsdk-demos-dm368 ├── Makefile ├── ctrl.c ├── ctrl.h ├── decode │ ├── Makefile │ ├── audio.c │ ├── audio.h │ ├── codecs.c │ ├── decode.cfg │ ├── decode.txt │ ├── display.c │ ├── display.h │ ├── loader.c │ ├── loader.h │ ├── main.c │ ├── speech.c │ ├── speech.h │ ├── video.c │ └── video.h ├── demo.h ├── encode │ ├── Makefile │ ├── audio.c │ ├── audio.h │ ├── capture.c │ ├── capture.h │ ├── codecs.c │ ├── encode.cfg │ ├── encode.txt │ ├── main.c │ ├── speech.c │ ├── speech.h │ ├── video.c │ ├── video.h │ ├── writer.c │ └── writer.h ├── encodedecode │ ├── Makefile │ ├── capture.c │ ├── capture.h │ ├── codecs.c │ ├── display.c │ ├── display.h │ ├── encodedecode.cfg │ ├── encodedecode.txt │ ├── main.c │ ├── video.c │ └── video.h ├── ui.c └── ui.h ├── tidy.py ├── tinyscheme1.39 ├── BUILDING ├── CHANGES ├── COPYING ├── Manual.txt ├── MiniSCHEMETribute.txt ├── dynload.c ├── dynload.h ├── hack.txt ├── init.scm ├── makefile ├── opdefines.h ├── scheme-private.h ├── scheme.c └── scheme.h ├── triangles ├── Makefile ├── PPMtoMPEG.par ├── anima.py └── zbuf.c ├── triplestore ├── TR ├── crc16.py ├── foo.scm └── hack.py ├── tube-symbol ├── symbol.png └── symbol.ps ├── twitter-search └── hack.py ├── twofishmodule-0.7 ├── CHANGES ├── LICENSE ├── Makefile.in ├── README ├── TODO ├── _twofish.c ├── aes.h ├── bin2hex.py ├── config.h.in ├── configure ├── configure.in ├── cryptfile.py ├── cryptrand.py ├── debug.h ├── install-sh ├── makedist ├── platform.h ├── table.h ├── test.py ├── twofish.h ├── twofish.py └── twofishmodule.c ├── ubw-src ├── Doxyfile ├── autofiles │ ├── usbcfg.h │ ├── usbdsc.c │ └── usbdsc.h ├── io_cfg.h ├── main.c ├── system │ ├── interrupt │ │ ├── interrupt.c │ │ └── interrupt.h │ ├── typedefs.h │ └── usb │ │ ├── class │ │ └── cdc │ │ │ ├── cdc.c │ │ │ └── cdc.h │ │ ├── usb.h │ │ ├── usb9 │ │ ├── usb9.c │ │ └── usb9.h │ │ ├── usb_compile_time_validation.h │ │ ├── usbctrltrf │ │ ├── usbctrltrf.c │ │ └── usbctrltrf.h │ │ ├── usbdefs │ │ ├── usbdefs_ep0_buff.h │ │ └── usbdefs_std_dsc.h │ │ ├── usbdrv │ │ ├── usbdrv.c │ │ └── usbdrv.h │ │ ├── usbmmap.c │ │ └── usbmmap.h └── user │ ├── user.c │ ├── user.h │ └── user_SpeedTest.c ├── wavebot └── waveapi │ ├── __init__.py │ ├── document.py │ ├── document_test.py │ ├── errors.py │ ├── events.py │ ├── model.py │ ├── model_test.py │ ├── module_test_runner.py │ ├── ops.py │ ├── ops_test.py │ ├── robot.py │ ├── robot_abstract.py │ ├── robot_abstract_test.py │ ├── run_unit_tests.py │ ├── simplejson │ ├── LICENSE │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── jsonfilter.py │ ├── ordered_dict.py │ ├── scanner.py │ └── tool.py │ ├── util.py │ └── util_test.py ├── webfun ├── chrome-extension │ ├── hackathon-1 │ │ └── countdown │ │ │ ├── background.html │ │ │ ├── countdown128.png │ │ │ ├── countdown16.png │ │ │ ├── index.html │ │ │ ├── launchLocalPath.html │ │ │ └── manifest.json │ ├── hackathon-2 │ │ ├── big-icon.png │ │ ├── icon.png │ │ ├── launchTempFaves.html │ │ └── manifest.json │ └── hello-world │ │ ├── icon.png │ │ ├── manifest.json │ │ └── popup.html ├── django-example │ ├── README.rst │ └── mysite │ │ ├── __init__.py │ │ ├── manage.py │ │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── detail.html │ │ ├── index.html │ │ ├── literal.html │ │ ├── models.py │ │ ├── polls.html │ │ ├── rawjson.html │ │ ├── redirect.html │ │ ├── results.html │ │ ├── tests.py │ │ └── views.py │ │ ├── settings.py │ │ ├── sql3.data │ │ └── urls.py ├── django │ ├── README.rst │ ├── django-app │ │ ├── caloriecounter │ │ │ ├── __init__.py │ │ │ ├── manage.py │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── style.css │ │ │ ├── templates │ │ │ │ ├── index.html │ │ │ │ └── newfood.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── trivialproject │ │ │ ├── __init__.py │ │ │ ├── manage.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ ├── home.html │ │ │ └── whois.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── genkey.py │ ├── hack-virtualenv.sh │ ├── requirements-postgresql.txt │ ├── requirements-sqlite3.txt │ ├── settings-django-postgresql-1.py │ └── settings-django-sqlite3-1.py ├── grails │ ├── README.rst │ └── my-project │ │ ├── .classpath │ │ ├── .project │ │ ├── application.properties │ │ ├── grails-app │ │ ├── conf │ │ │ ├── ApplicationResources.groovy │ │ │ ├── BootStrap.groovy │ │ │ ├── BuildConfig.groovy │ │ │ ├── Config.groovy │ │ │ ├── DataSource.groovy │ │ │ ├── UrlMappings.groovy │ │ │ └── spring │ │ │ │ └── resources.groovy │ │ ├── controllers │ │ │ ├── my │ │ │ │ └── project │ │ │ │ │ ├── BController.groovy │ │ │ │ │ ├── CapitalController.groovy │ │ │ │ │ ├── Controller.groovy │ │ │ │ │ ├── NoteController.groovy │ │ │ │ │ └── TheController.groovy │ │ │ └── org │ │ │ │ └── example │ │ │ │ └── BookController.groovy │ │ ├── domain │ │ │ └── org │ │ │ │ └── example │ │ │ │ └── Book.groovy │ │ ├── i18n │ │ │ ├── messages.properties │ │ │ ├── messages_cs_CZ.properties │ │ │ ├── messages_da.properties │ │ │ ├── messages_de.properties │ │ │ ├── messages_es.properties │ │ │ ├── messages_fr.properties │ │ │ ├── messages_it.properties │ │ │ ├── messages_ja.properties │ │ │ ├── messages_nb.properties │ │ │ ├── messages_nl.properties │ │ │ ├── messages_pl.properties │ │ │ ├── messages_pt_BR.properties │ │ │ ├── messages_pt_PT.properties │ │ │ ├── messages_ru.properties │ │ │ ├── messages_sv.properties │ │ │ ├── messages_th.properties │ │ │ └── messages_zh_CN.properties │ │ └── views │ │ │ ├── error.gsp │ │ │ ├── index.gsp │ │ │ └── layouts │ │ │ └── main.gsp │ │ ├── target │ │ └── classes │ │ │ ├── ApplicationResources$_run_closure1.class │ │ │ ├── ApplicationResources$_run_closure1_closure2.class │ │ │ ├── ApplicationResources.class │ │ │ ├── BootStrap$_closure1.class │ │ │ ├── BootStrap$_closure2.class │ │ │ ├── BootStrap.class │ │ │ ├── BuildConfig$_run_closure1.class │ │ │ ├── BuildConfig$_run_closure1_closure2.class │ │ │ ├── BuildConfig$_run_closure1_closure3.class │ │ │ ├── BuildConfig$_run_closure1_closure4.class │ │ │ ├── BuildConfig$_run_closure1_closure5.class │ │ │ ├── BuildConfig.class │ │ │ ├── Config$_run_closure1.class │ │ │ ├── Config$_run_closure1_closure3.class │ │ │ ├── Config$_run_closure1_closure4.class │ │ │ ├── Config$_run_closure2.class │ │ │ ├── Config.class │ │ │ ├── DataSource$_run_closure1.class │ │ │ ├── DataSource$_run_closure2.class │ │ │ ├── DataSource$_run_closure3.class │ │ │ ├── DataSource$_run_closure3_closure4.class │ │ │ ├── DataSource$_run_closure3_closure4_closure7.class │ │ │ ├── DataSource$_run_closure3_closure5.class │ │ │ ├── DataSource$_run_closure3_closure5_closure8.class │ │ │ ├── DataSource$_run_closure3_closure6.class │ │ │ ├── DataSource$_run_closure3_closure6_closure9.class │ │ │ ├── DataSource$_run_closure3_closure6_closure9_closure10.class │ │ │ ├── DataSource.class │ │ │ ├── UrlMappings$__clinit__closure1.class │ │ │ ├── UrlMappings$__clinit__closure1_closure2.class │ │ │ ├── UrlMappings$__clinit__closure1_closure2_closure3.class │ │ │ ├── UrlMappings.class │ │ │ ├── my │ │ │ └── project │ │ │ │ ├── BController.class │ │ │ │ ├── CapitalController.class │ │ │ │ ├── Controller.class │ │ │ │ ├── NoteController.class │ │ │ │ └── TheController.class │ │ │ ├── org │ │ │ └── example │ │ │ │ ├── Book$__clinit__closure1.class │ │ │ │ ├── Book.class │ │ │ │ └── BookController.class │ │ │ ├── resources$_run_closure1.class │ │ │ └── resources.class │ │ ├── test │ │ └── unit │ │ │ ├── my │ │ │ └── project │ │ │ │ ├── BControllerTests.groovy │ │ │ │ ├── CapitalControllerTests.groovy │ │ │ │ ├── ControllerTests.groovy │ │ │ │ ├── NoteControllerTests.groovy │ │ │ │ └── TheControllerTests.groovy │ │ │ └── org │ │ │ └── example │ │ │ ├── BookControllerTests.groovy │ │ │ └── BookTests.groovy │ │ └── web-app │ │ ├── WEB-INF │ │ ├── applicationContext.xml │ │ ├── sitemesh.xml │ │ └── tld │ │ │ ├── grails.tld │ │ │ └── spring.tld │ │ ├── css │ │ ├── errors.css │ │ ├── main.css │ │ └── mobile.css │ │ ├── images │ │ ├── apple-touch-icon-retina.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── grails_logo.jpg │ │ ├── grails_logo.png │ │ ├── leftnav_btm.png │ │ ├── leftnav_midstretch.png │ │ ├── leftnav_top.png │ │ ├── skin │ │ │ ├── database_add.png │ │ │ ├── database_delete.png │ │ │ ├── database_edit.png │ │ │ ├── database_save.png │ │ │ ├── database_table.png │ │ │ ├── exclamation.png │ │ │ ├── house.png │ │ │ ├── information.png │ │ │ ├── shadow.jpg │ │ │ ├── sorted_asc.gif │ │ │ └── sorted_desc.gif │ │ ├── spinner.gif │ │ └── springsource.png │ │ └── js │ │ └── application.js ├── graphs │ ├── README.md │ ├── d3.js │ ├── d3.min.js │ ├── graph-by-date.html │ └── graph-linear-axes.html ├── guile │ ├── README.rst │ ├── gserver.scm │ ├── guile-web-0.5.0 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── db.scm │ │ ├── depcomp │ │ ├── guile-web.info │ │ ├── guile-web.texinfo │ │ ├── hash-dash.scm │ │ ├── html │ │ │ ├── gen-html.scm │ │ │ ├── html-defined.scm │ │ │ ├── html-defines.scm │ │ │ └── html-doc.scm │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── memcache.scm │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── serialize.scm │ │ ├── session.c │ │ ├── session.scm │ │ ├── ssax.scm │ │ ├── template.scm │ │ ├── texinfo.tex │ │ └── xhtml.scm │ └── guile-www-2.28 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ ├── common.mk │ │ ├── guile.m4 │ │ ├── install-sh │ │ ├── mdate-sh │ │ ├── missing │ │ ├── module-compile.in │ │ ├── simple-punify │ │ └── texinfo.tex │ │ ├── configure │ │ ├── configure.ac │ │ ├── contrib │ │ ├── qs-check │ │ ├── qs-nv-check │ │ └── ssl-support.diff │ │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── guile-www.html │ │ │ ├── Procedure-Index.html │ │ │ ├── answer.html │ │ │ ├── big_002ddishing_002dloop.html │ │ │ ├── cgi.html │ │ │ ├── cgi_002dprep.html │ │ │ ├── cookies.html │ │ │ ├── filesystem.html │ │ │ ├── form_002d2_002dform.html │ │ │ ├── http.html │ │ │ ├── http_002dstatus.html │ │ │ ├── index.html │ │ │ ├── log.html │ │ │ ├── main.html │ │ │ ├── mime_002dtypes.html │ │ │ ├── modlisp.html │ │ │ ├── parse_002drequest.html │ │ │ ├── url.html │ │ │ ├── url_002dcoding.html │ │ │ └── utcsec.html │ │ ├── guile-www.info │ │ ├── guile-www.pdf │ │ ├── guile-www.texi │ │ ├── guile-www.twerp │ │ ├── stamp-vti │ │ └── version.texi │ │ ├── examples │ │ ├── README │ │ ├── cookie.cgi │ │ ├── id.cgi.in │ │ ├── wily-guile.in │ │ ├── wwwcat │ │ └── you-are-here │ │ └── source │ │ ├── ChangeLog │ │ ├── ChangeLog-data │ │ ├── ChangeLog-server-utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cgi.scm │ │ ├── data │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── http-status.scm │ │ └── mime-types.scm │ │ ├── http.scm │ │ ├── main.scm │ │ ├── server-utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── answer.scm │ │ ├── big-dishing-loop.scm │ │ ├── cgi-prep.scm │ │ ├── cookies.scm │ │ ├── filesystem.scm │ │ ├── form-2-form.scm │ │ ├── log.scm │ │ ├── modlisp.scm │ │ └── parse-request.scm │ │ ├── url-coding.scm │ │ ├── url.scm │ │ └── utcsec.scm ├── rails │ ├── README.rst │ ├── build-website │ └── tinkering │ │ └── foo.rb └── random │ ├── autocomplete.py │ ├── blarg.php │ ├── collect.php │ ├── oscope.html │ └── trycanvas.html └── will_snow_small.png /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/README.md -------------------------------------------------------------------------------- /aitoys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/Makefile -------------------------------------------------------------------------------- /aitoys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/README -------------------------------------------------------------------------------- /aitoys/ga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/ga.h -------------------------------------------------------------------------------- /aitoys/ga.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/ga.i -------------------------------------------------------------------------------- /aitoys/gac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/gac.c -------------------------------------------------------------------------------- /aitoys/gatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/gatest.py -------------------------------------------------------------------------------- /aitoys/igobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/igobjs.h -------------------------------------------------------------------------------- /aitoys/igobjs.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/igobjs.i -------------------------------------------------------------------------------- /aitoys/igobjsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/igobjsc.c -------------------------------------------------------------------------------- /aitoys/igtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/igtest.py -------------------------------------------------------------------------------- /aitoys/iguana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/iguana.py -------------------------------------------------------------------------------- /aitoys/neur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/neur.c -------------------------------------------------------------------------------- /aitoys/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/nn.py -------------------------------------------------------------------------------- /aitoys/ops.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/ops.b -------------------------------------------------------------------------------- /aitoys/procops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/aitoys/procops.py -------------------------------------------------------------------------------- /android_apps/Android-App-HOWTO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Android-App-HOWTO.rst -------------------------------------------------------------------------------- /android_apps/BluetoothBitBang/foo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/BluetoothBitBang/foo.sh -------------------------------------------------------------------------------- /android_apps/BluetoothBitBang/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/BluetoothBitBang/icon.png -------------------------------------------------------------------------------- /android_apps/BluetoothBitBang/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/BluetoothBitBang/icon.xcf -------------------------------------------------------------------------------- /android_apps/CryptoThing/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/CryptoThing/README.rst -------------------------------------------------------------------------------- /android_apps/CryptoThing/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/CryptoThing/build.xml -------------------------------------------------------------------------------- /android_apps/CryptoThing/local.properties: -------------------------------------------------------------------------------- 1 | /home/wware/local.properties -------------------------------------------------------------------------------- /android_apps/CryptoThing/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/CryptoThing/proguard.cfg -------------------------------------------------------------------------------- /android_apps/CryptoThing/rc4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/CryptoThing/rc4.py -------------------------------------------------------------------------------- /android_apps/CryptoThing/rc4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | CLASSPATH=bin/classes java net.willware.CryptoThing.RC4 $@ 4 | -------------------------------------------------------------------------------- /android_apps/Dictaphone/Nipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Dictaphone/Nipper.png -------------------------------------------------------------------------------- /android_apps/Dictaphone/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Dictaphone/README.rst -------------------------------------------------------------------------------- /android_apps/Dictaphone/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Dictaphone/ant.properties -------------------------------------------------------------------------------- /android_apps/Dictaphone/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Dictaphone/build.xml -------------------------------------------------------------------------------- /android_apps/Dictaphone/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/Dictaphone/proguard.cfg -------------------------------------------------------------------------------- /android_apps/IntervalTrainer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/IntervalTrainer/.project -------------------------------------------------------------------------------- /android_apps/IntervalTrainer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/IntervalTrainer/build.xml -------------------------------------------------------------------------------- /android_apps/JQueryMobileExample/news-web-code/test-php.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /android_apps/JQueryMobileExample/news-web-code/tryit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | x-www-browser index.html 4 | -------------------------------------------------------------------------------- /android_apps/LocationSender/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/LocationSender/.classpath -------------------------------------------------------------------------------- /android_apps/LocationSender/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/LocationSender/.project -------------------------------------------------------------------------------- /android_apps/LocationSender/Tryit.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/LocationSender/Tryit.kml -------------------------------------------------------------------------------- /android_apps/LocationSender/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/LocationSender/build.xml -------------------------------------------------------------------------------- /android_apps/MusicKeyboard/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/MusicKeyboard/.classpath -------------------------------------------------------------------------------- /android_apps/MusicKeyboard/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/MusicKeyboard/.project -------------------------------------------------------------------------------- /android_apps/MusicKeyboard/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/MusicKeyboard/build.xml -------------------------------------------------------------------------------- /android_apps/sign-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/android_apps/sign-app.sh -------------------------------------------------------------------------------- /angstrom-distro/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/README.rst -------------------------------------------------------------------------------- /angstrom-distro/hello-on-boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/hello-on-boot/Makefile -------------------------------------------------------------------------------- /angstrom-distro/helloworld_1.0.0.bb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/helloworld_1.0.0.bb.1 -------------------------------------------------------------------------------- /angstrom-distro/ipks/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/ipks/Packages.gz -------------------------------------------------------------------------------- /angstrom-distro/ipks/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/ipks/lighttpd.conf -------------------------------------------------------------------------------- /angstrom-distro/kernel-module/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := quux.o 2 | -------------------------------------------------------------------------------- /angstrom-distro/kernel-module/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/kernel-module/build.sh -------------------------------------------------------------------------------- /angstrom-distro/kernel-module/quux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/kernel-module/quux.c -------------------------------------------------------------------------------- /angstrom-distro/kernel-module/tryit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/kernel-module/tryit.sh -------------------------------------------------------------------------------- /angstrom-distro/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/lighttpd.conf -------------------------------------------------------------------------------- /angstrom-distro/make-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/make-clean.sh -------------------------------------------------------------------------------- /angstrom-distro/make-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/make-tarball.sh -------------------------------------------------------------------------------- /angstrom-distro/quux-module_1.0.0.bb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/quux-module_1.0.0.bb.1 -------------------------------------------------------------------------------- /angstrom-distro/write-sd-card.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/write-sd-card.sh -------------------------------------------------------------------------------- /angstrom-distro/wware-image.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/angstrom-distro/wware-image.bb -------------------------------------------------------------------------------- /another_c_parallelizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/Makefile -------------------------------------------------------------------------------- /another_c_parallelizer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/README -------------------------------------------------------------------------------- /another_c_parallelizer/conway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/conway.c -------------------------------------------------------------------------------- /another_c_parallelizer/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/process.py -------------------------------------------------------------------------------- /another_c_parallelizer/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/simple.c -------------------------------------------------------------------------------- /another_c_parallelizer/thr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/thr.c -------------------------------------------------------------------------------- /another_c_parallelizer/thr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_c_parallelizer/thr.h -------------------------------------------------------------------------------- /another_inference_engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_inference_engine/Makefile -------------------------------------------------------------------------------- /another_inference_engine/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_inference_engine/common.c -------------------------------------------------------------------------------- /another_inference_engine/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_inference_engine/common.h -------------------------------------------------------------------------------- /another_inference_engine/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_inference_engine/foo.py -------------------------------------------------------------------------------- /another_inference_engine/graphobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/another_inference_engine/graphobject.c -------------------------------------------------------------------------------- /arm-hacks/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/README.rst -------------------------------------------------------------------------------- /arm-hacks/bbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/bbb.py -------------------------------------------------------------------------------- /arm-hacks/cortex-m3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/cortex-m3/README.rst -------------------------------------------------------------------------------- /arm-hacks/cortex-m3/goodbits.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/cortex-m3/goodbits.bin -------------------------------------------------------------------------------- /arm-hacks/make-toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/make-toolchain.py -------------------------------------------------------------------------------- /arm-hacks/make-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/make-toolchain.sh -------------------------------------------------------------------------------- /arm-hacks/raspberry-pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/raspberry-pi/README.md -------------------------------------------------------------------------------- /arm-hacks/sam7/Blinker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/Blinker/Makefile -------------------------------------------------------------------------------- /arm-hacks/sam7/Blinker/board.h: -------------------------------------------------------------------------------- 1 | ../common/p256_board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/Blinker/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/Blinker/main.c -------------------------------------------------------------------------------- /arm-hacks/sam7/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/README.rst -------------------------------------------------------------------------------- /arm-hacks/sam7/bit-bang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/bit-bang/Makefile -------------------------------------------------------------------------------- /arm-hacks/sam7/bit-bang/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/bit-bang/README.rst -------------------------------------------------------------------------------- /arm-hacks/sam7/bit-bang/board.h: -------------------------------------------------------------------------------- 1 | ../common/h64_board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/bit-bang/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/bit-bang/foo.py -------------------------------------------------------------------------------- /arm-hacks/sam7/bit-bang/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/bit-bang/main.c -------------------------------------------------------------------------------- /arm-hacks/sam7/common/AT91SAM7S256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/AT91SAM7S256.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/AT91SAM7S64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/AT91SAM7S64.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/dbgu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/dbgu.c -------------------------------------------------------------------------------- /arm-hacks/sam7/common/dbgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/dbgu.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/descriptors.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/flash-crt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/flash-crt.s -------------------------------------------------------------------------------- /arm-hacks/sam7/common/flash-ln.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/flash-ln.cmd -------------------------------------------------------------------------------- /arm-hacks/sam7/common/h64_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/h64_board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/libsam7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/libsam7.c -------------------------------------------------------------------------------- /arm-hacks/sam7/common/libsam7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/libsam7.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/p256_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/p256_board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/common/ram-crt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/ram-crt.s -------------------------------------------------------------------------------- /arm-hacks/sam7/common/ram-ln.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/ram-ln.cmd -------------------------------------------------------------------------------- /arm-hacks/sam7/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/usb.c -------------------------------------------------------------------------------- /arm-hacks/sam7/common/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/common/usb.h -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/Board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/Time.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/cdc.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/hack.py -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/hid.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/leds.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/leds.h -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/main.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/usb.c -------------------------------------------------------------------------------- /arm-hacks/sam7/interrupt-hacks/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/interrupt-hacks/usb.h -------------------------------------------------------------------------------- /arm-hacks/sam7/serial-comm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/serial-comm/Makefile -------------------------------------------------------------------------------- /arm-hacks/sam7/serial-comm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/serial-comm/README.rst -------------------------------------------------------------------------------- /arm-hacks/sam7/serial-comm/board.h: -------------------------------------------------------------------------------- 1 | ../common/h64_board.h -------------------------------------------------------------------------------- /arm-hacks/sam7/serial-comm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/arm-hacks/sam7/serial-comm/main.c -------------------------------------------------------------------------------- /bcal/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/app.yaml -------------------------------------------------------------------------------- /bcal/areyousure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/areyousure.html -------------------------------------------------------------------------------- /bcal/atom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/__init__.py -------------------------------------------------------------------------------- /bcal/atom/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/auth.py -------------------------------------------------------------------------------- /bcal/atom/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/client.py -------------------------------------------------------------------------------- /bcal/atom/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/core.py -------------------------------------------------------------------------------- /bcal/atom/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/data.py -------------------------------------------------------------------------------- /bcal/atom/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/http.py -------------------------------------------------------------------------------- /bcal/atom/http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/http_core.py -------------------------------------------------------------------------------- /bcal/atom/http_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/http_interface.py -------------------------------------------------------------------------------- /bcal/atom/mock_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/mock_http.py -------------------------------------------------------------------------------- /bcal/atom/mock_http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/mock_http_core.py -------------------------------------------------------------------------------- /bcal/atom/mock_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/mock_service.py -------------------------------------------------------------------------------- /bcal/atom/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/service.py -------------------------------------------------------------------------------- /bcal/atom/token_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/token_store.py -------------------------------------------------------------------------------- /bcal/atom/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/atom/url.py -------------------------------------------------------------------------------- /bcal/bcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/bcal.py -------------------------------------------------------------------------------- /bcal/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/calendar.html -------------------------------------------------------------------------------- /bcal/column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/column.html -------------------------------------------------------------------------------- /bcal/counselors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/counselors.html -------------------------------------------------------------------------------- /bcal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/favicon.ico -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/AES.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/AES.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/ARC2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/ARC2.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/ARC4.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/ARC4.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/Blowfish.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/Blowfish.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/CAST.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/CAST.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/DES.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/DES.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/DES3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/DES3.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/IDEA.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/IDEA.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/RC5.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/RC5.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/XOR.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/XOR.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Cipher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Cipher/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/HMAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/HMAC.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/MD2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/MD2.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/MD4.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/MD4.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/MD5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/MD5.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/RIPEMD.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/RIPEMD.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/SHA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/SHA.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/SHA256.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/SHA256.pyd -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Hash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Hash/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Protocol/Chaffing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Protocol/Chaffing.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Protocol/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/PublicKey/DSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/PublicKey/DSA.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/PublicKey/ElGamal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/PublicKey/ElGamal.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/PublicKey/RSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/PublicKey/RSA.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/PublicKey/pubkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/PublicKey/pubkey.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/PublicKey/qNEW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/PublicKey/qNEW.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Util/RFC1751.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Util/RFC1751.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Util/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Util/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Util/number.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Util/randpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Util/randpool.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/Util/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/Util/test.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/Crypto/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/Crypto/test.py -------------------------------------------------------------------------------- /bcal/gdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/acl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/acl/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/acl/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/acl/data.py -------------------------------------------------------------------------------- /bcal/gdata/alt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/alt/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/alt/app_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/alt/app_engine.py -------------------------------------------------------------------------------- /bcal/gdata/alt/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/alt/appengine.py -------------------------------------------------------------------------------- /bcal/gdata/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/analytics/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/analytics/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/analytics/client.py -------------------------------------------------------------------------------- /bcal/gdata/analytics/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/analytics/data.py -------------------------------------------------------------------------------- /bcal/gdata/analytics/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/analytics/service.py -------------------------------------------------------------------------------- /bcal/gdata/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/apps/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcal/gdata/apps/groups/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/apps/groups/service.py -------------------------------------------------------------------------------- /bcal/gdata/apps/migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/apps/migration/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/apps/migration/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/apps/migration/service.py -------------------------------------------------------------------------------- /bcal/gdata/apps/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/apps/service.py -------------------------------------------------------------------------------- /bcal/gdata/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/auth.py -------------------------------------------------------------------------------- /bcal/gdata/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/base/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/base/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/base/service.py -------------------------------------------------------------------------------- /bcal/gdata/blogger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/blogger/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/blogger/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/blogger/client.py -------------------------------------------------------------------------------- /bcal/gdata/blogger/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/blogger/data.py -------------------------------------------------------------------------------- /bcal/gdata/blogger/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/blogger/service.py -------------------------------------------------------------------------------- /bcal/gdata/books/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/books/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/books/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/books/data.py -------------------------------------------------------------------------------- /bcal/gdata/books/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/books/service.py -------------------------------------------------------------------------------- /bcal/gdata/calendar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/calendar/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/calendar/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/calendar/data.py -------------------------------------------------------------------------------- /bcal/gdata/calendar/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/calendar/service.py -------------------------------------------------------------------------------- /bcal/gdata/calendar_resource/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bcal/gdata/calendar_resource/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/calendar_resource/client.py -------------------------------------------------------------------------------- /bcal/gdata/calendar_resource/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/calendar_resource/data.py -------------------------------------------------------------------------------- /bcal/gdata/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/client.py -------------------------------------------------------------------------------- /bcal/gdata/codesearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/codesearch/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/codesearch/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/codesearch/service.py -------------------------------------------------------------------------------- /bcal/gdata/contacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/contacts/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/contacts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/contacts/client.py -------------------------------------------------------------------------------- /bcal/gdata/contacts/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/contacts/data.py -------------------------------------------------------------------------------- /bcal/gdata/contacts/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/contacts/service.py -------------------------------------------------------------------------------- /bcal/gdata/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/core.py -------------------------------------------------------------------------------- /bcal/gdata/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/data.py -------------------------------------------------------------------------------- /bcal/gdata/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/docs/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/docs/client.py -------------------------------------------------------------------------------- /bcal/gdata/docs/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/docs/data.py -------------------------------------------------------------------------------- /bcal/gdata/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/docs/service.py -------------------------------------------------------------------------------- /bcal/gdata/dublincore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/dublincore/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/dublincore/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/dublincore/data.py -------------------------------------------------------------------------------- /bcal/gdata/exif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/exif/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/finance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/finance/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/finance/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/finance/data.py -------------------------------------------------------------------------------- /bcal/gdata/finance/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/finance/service.py -------------------------------------------------------------------------------- /bcal/gdata/gauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/gauth.py -------------------------------------------------------------------------------- /bcal/gdata/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/geo/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/geo/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/geo/data.py -------------------------------------------------------------------------------- /bcal/gdata/health/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/health/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/health/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/health/service.py -------------------------------------------------------------------------------- /bcal/gdata/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcal/gdata/maps/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/maps/client.py -------------------------------------------------------------------------------- /bcal/gdata/maps/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/maps/data.py -------------------------------------------------------------------------------- /bcal/gdata/media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/media/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/media/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/media/data.py -------------------------------------------------------------------------------- /bcal/gdata/notebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/notebook/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/notebook/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/notebook/data.py -------------------------------------------------------------------------------- /bcal/gdata/oauth/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/oauth/CHANGES.txt -------------------------------------------------------------------------------- /bcal/gdata/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/oauth/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/oauth/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/oauth/rsa.py -------------------------------------------------------------------------------- /bcal/gdata/opensearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/opensearch/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/opensearch/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/opensearch/data.py -------------------------------------------------------------------------------- /bcal/gdata/photos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/photos/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/photos/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/photos/service.py -------------------------------------------------------------------------------- /bcal/gdata/projecthosting/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bcal/gdata/projecthosting/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/projecthosting/client.py -------------------------------------------------------------------------------- /bcal/gdata/projecthosting/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/projecthosting/data.py -------------------------------------------------------------------------------- /bcal/gdata/sample_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/sample_util.py -------------------------------------------------------------------------------- /bcal/gdata/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/service.py -------------------------------------------------------------------------------- /bcal/gdata/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcal/gdata/sites/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/sites/client.py -------------------------------------------------------------------------------- /bcal/gdata/sites/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/sites/data.py -------------------------------------------------------------------------------- /bcal/gdata/spreadsheet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/spreadsheet/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/spreadsheet/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/spreadsheet/service.py -------------------------------------------------------------------------------- /bcal/gdata/spreadsheet/text_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/spreadsheet/text_db.py -------------------------------------------------------------------------------- /bcal/gdata/spreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcal/gdata/spreadsheets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/spreadsheets/client.py -------------------------------------------------------------------------------- /bcal/gdata/spreadsheets/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/spreadsheets/data.py -------------------------------------------------------------------------------- /bcal/gdata/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/test_config.py -------------------------------------------------------------------------------- /bcal/gdata/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/test_data.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/BaseDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/BaseDB.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/Checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/Checker.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/FileObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/FileObject.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/Session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/Session.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/SessionCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/SessionCache.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/SharedKeyDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/SharedKeyDB.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/TLSConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/TLSConnection.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/TLSRecordLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/TLSRecordLayer.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/VerifierDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/VerifierDB.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/X509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/X509.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/X509CertChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/X509CertChain.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/api.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/constants.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/errors.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/mathtls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/mathtls.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/messages.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/AES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/AES.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/ASN1Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/ASN1Parser.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/Python_AES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/Python_AES.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/Python_RC4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/Python_RC4.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/RC4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/RC4.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/RSAKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/RSAKey.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/TripleDES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/TripleDES.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/codec.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/compat.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/cryptomath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/cryptomath.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/dateFuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/dateFuncs.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/entropy.c -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/hmac.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/keyfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/keyfactory.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/rijndael.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/rijndael.py -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/win32prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/win32prng.c -------------------------------------------------------------------------------- /bcal/gdata/tlslite/utils/xmltools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/tlslite/utils/xmltools.py -------------------------------------------------------------------------------- /bcal/gdata/urlfetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/urlfetch.py -------------------------------------------------------------------------------- /bcal/gdata/webmastertools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/webmastertools/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/webmastertools/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/webmastertools/data.py -------------------------------------------------------------------------------- /bcal/gdata/webmastertools/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/webmastertools/service.py -------------------------------------------------------------------------------- /bcal/gdata/youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/youtube/__init__.py -------------------------------------------------------------------------------- /bcal/gdata/youtube/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/youtube/data.py -------------------------------------------------------------------------------- /bcal/gdata/youtube/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/gdata/youtube/service.py -------------------------------------------------------------------------------- /bcal/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/groups.html -------------------------------------------------------------------------------- /bcal/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/index.yaml -------------------------------------------------------------------------------- /bcal/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/main.html -------------------------------------------------------------------------------- /bcal/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/popup.html -------------------------------------------------------------------------------- /bcal/static/bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/static/bkgnd.png -------------------------------------------------------------------------------- /bcal/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/static/jquery.js -------------------------------------------------------------------------------- /bcal/tryauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bcal/tryauth.py -------------------------------------------------------------------------------- /bluetooth-fun/btcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/bluetooth-fun/btcalc.py -------------------------------------------------------------------------------- /c_logger/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/c_logger/clog.c -------------------------------------------------------------------------------- /c_logger/clog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/c_logger/clog.h -------------------------------------------------------------------------------- /code_commenter/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/Doxyfile -------------------------------------------------------------------------------- /code_commenter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/README -------------------------------------------------------------------------------- /code_commenter/commenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/commenter.py -------------------------------------------------------------------------------- /code_commenter/hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/hack.sh -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/classes.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/doxygen.css -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/doxygen.png -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/fft_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/fft_8c.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/files.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/form_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/form_0.png -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/ftv2doc.png -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/ftv2link.png -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/ftv2node.png -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/globals.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/index.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/index.hhc -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/index.hhk -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/index.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/index.hhp -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/index.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/main.html -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/tab_b.gif -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/tab_l.gif -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/tab_r.gif -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/tabs.css -------------------------------------------------------------------------------- /code_commenter/lt_doxygen/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/lt_doxygen/tree.html -------------------------------------------------------------------------------- /code_commenter/scan.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/scan.cu -------------------------------------------------------------------------------- /code_commenter/scan_best_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/code_commenter/scan_best_kernel.cu -------------------------------------------------------------------------------- /codegrepper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/codegrepper/ReadMe.txt -------------------------------------------------------------------------------- /cpp_logger/Hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/cpp_logger/Hack.cpp -------------------------------------------------------------------------------- /cpp_logger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/cpp_logger/README -------------------------------------------------------------------------------- /databases/mongodb/Doorenbos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/mongodb/Doorenbos.pdf -------------------------------------------------------------------------------- /databases/mongodb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/mongodb/README.rst -------------------------------------------------------------------------------- /databases/mongodb/inference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/mongodb/inference.js -------------------------------------------------------------------------------- /databases/mysql/foo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/mysql/foo.sql -------------------------------------------------------------------------------- /databases/neo4j/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/neo4j/Foo.java -------------------------------------------------------------------------------- /databases/neo4j/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/neo4j/Makefile -------------------------------------------------------------------------------- /databases/neo4j/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/neo4j/README.rst -------------------------------------------------------------------------------- /databases/neo4j/neo4j_config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/databases/neo4j/neo4j_config.props -------------------------------------------------------------------------------- /datasheets/FT232R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/datasheets/FT232R.pdf -------------------------------------------------------------------------------- /datasheets/FT245R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/datasheets/FT245R.pdf -------------------------------------------------------------------------------- /dbus-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/dbus-example/Makefile -------------------------------------------------------------------------------- /dbus-example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/dbus-example/README.rst -------------------------------------------------------------------------------- /dbus-example/dbus-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/dbus-example/dbus-example.c -------------------------------------------------------------------------------- /dbus-example/try-dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/dbus-example/try-dbus.c -------------------------------------------------------------------------------- /debian-ubuntu/make-deb-package/debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | echo This is a post-installation script. 4 | -------------------------------------------------------------------------------- /debian-ubuntu/make-deb-package/debian/prerm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | echo This is a pre-removal script. 4 | -------------------------------------------------------------------------------- /discretesim/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/discretesim/tryit.py -------------------------------------------------------------------------------- /django_orm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/django_orm/README.rst -------------------------------------------------------------------------------- /django_orm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_orm/fixtures/silly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/django_orm/fixtures/silly.json -------------------------------------------------------------------------------- /django_orm/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/django_orm/manage.py -------------------------------------------------------------------------------- /django_orm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/django_orm/models.py -------------------------------------------------------------------------------- /django_orm/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/django_orm/settings.py -------------------------------------------------------------------------------- /doxygen-xml/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/doxygen-xml/README.rst -------------------------------------------------------------------------------- /doxygen-xml/doxyxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/doxygen-xml/doxyxml.py -------------------------------------------------------------------------------- /doxygen-xml/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/doxygen-xml/tryit.py -------------------------------------------------------------------------------- /elf_files/elfparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/elf_files/elfparse.py -------------------------------------------------------------------------------- /ellipsoid/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ellipsoid/pca.py -------------------------------------------------------------------------------- /embedpython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/embedpython/Makefile -------------------------------------------------------------------------------- /embedpython/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/embedpython/README.rst -------------------------------------------------------------------------------- /embedpython/callpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/embedpython/callpy.c -------------------------------------------------------------------------------- /embedpython/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/embedpython/foo.py -------------------------------------------------------------------------------- /eurascal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/eurascal/README -------------------------------------------------------------------------------- /eurascal/eurascal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/eurascal/eurascal.py -------------------------------------------------------------------------------- /evolved_neural_nets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/evolved_neural_nets/README -------------------------------------------------------------------------------- /evolved_neural_nets/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/evolved_neural_nets/tictactoe.py -------------------------------------------------------------------------------- /fft-fun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/Makefile -------------------------------------------------------------------------------- /fft-fun/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/README.rst -------------------------------------------------------------------------------- /fft-fun/check-c-code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/check-c-code.py -------------------------------------------------------------------------------- /fft-fun/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/fft.c -------------------------------------------------------------------------------- /fft-fun/mt19937ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/mt19937ar.c -------------------------------------------------------------------------------- /fft-fun/pig_intestines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/pig_intestines.jpg -------------------------------------------------------------------------------- /fft-fun/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/tryit.py -------------------------------------------------------------------------------- /fft-fun/tryit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fft-fun/tryit2.py -------------------------------------------------------------------------------- /fixwhitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/fixwhitespace.py -------------------------------------------------------------------------------- /genealogy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/genealogy/README.rst -------------------------------------------------------------------------------- /genealogy/family.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/genealogy/family.json -------------------------------------------------------------------------------- /genealogy/putter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/genealogy/putter.py -------------------------------------------------------------------------------- /git-replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/git-replace -------------------------------------------------------------------------------- /githelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/githelper.sh -------------------------------------------------------------------------------- /gmath/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gmath/README.rst -------------------------------------------------------------------------------- /gmath/math.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gmath/math.scm -------------------------------------------------------------------------------- /gmath/tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gmath/tests.scm -------------------------------------------------------------------------------- /gmath/verlet.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gmath/verlet.scm -------------------------------------------------------------------------------- /gtk-fun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/Makefile -------------------------------------------------------------------------------- /gtk-fun/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/README.rst -------------------------------------------------------------------------------- /gtk-fun/nada.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/nada.c -------------------------------------------------------------------------------- /gtk-fun/nada.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/nada.pl -------------------------------------------------------------------------------- /gtk-fun/nada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/nada.py -------------------------------------------------------------------------------- /gtk-fun/nada.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gtk-fun/nada.xml -------------------------------------------------------------------------------- /gwt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/README.rst -------------------------------------------------------------------------------- /gwt/Tryit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/.classpath -------------------------------------------------------------------------------- /gwt/Tryit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/.project -------------------------------------------------------------------------------- /gwt/Tryit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/README.txt -------------------------------------------------------------------------------- /gwt/Tryit/Tryit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/Tryit.launch -------------------------------------------------------------------------------- /gwt/Tryit/TryitTest-dev.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/TryitTest-dev.launch -------------------------------------------------------------------------------- /gwt/Tryit/TryitTest-prod.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/TryitTest-prod.launch -------------------------------------------------------------------------------- /gwt/Tryit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/build.xml -------------------------------------------------------------------------------- /gwt/Tryit/war/Tryit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/war/Tryit.css -------------------------------------------------------------------------------- /gwt/Tryit/war/Tryit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/war/Tryit.html -------------------------------------------------------------------------------- /gwt/Tryit/war/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/gwt/Tryit/war/WEB-INF/web.xml -------------------------------------------------------------------------------- /hack-gunicorn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/Dockerfile -------------------------------------------------------------------------------- /hack-gunicorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/README.md -------------------------------------------------------------------------------- /hack-gunicorn/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/foo.py -------------------------------------------------------------------------------- /hack-gunicorn/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/playbook.yml -------------------------------------------------------------------------------- /hack-gunicorn/undo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/undo.yml -------------------------------------------------------------------------------- /hack-gunicorn/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-gunicorn/wsgi.py -------------------------------------------------------------------------------- /hack-malloc/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-malloc/FreeRTOS.h -------------------------------------------------------------------------------- /hack-malloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-malloc/Makefile -------------------------------------------------------------------------------- /hack-malloc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-malloc/README.rst -------------------------------------------------------------------------------- /hack-malloc/heap_ww.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-malloc/heap_ww.c -------------------------------------------------------------------------------- /hack-malloc/task.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack-malloc/tryit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hack-malloc/tryit.c -------------------------------------------------------------------------------- /hackflex/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hackflex/README.rst -------------------------------------------------------------------------------- /hackflex/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hackflex/build.properties -------------------------------------------------------------------------------- /hackflex/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hackflex/build.xml -------------------------------------------------------------------------------- /hackflex/src/Tryit.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/hackflex/src/Tryit.mxml -------------------------------------------------------------------------------- /homedir/dot-bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/homedir/dot-bashrc -------------------------------------------------------------------------------- /homedir/dot-emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/homedir/dot-emacs -------------------------------------------------------------------------------- /homedir/mkpasswd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/homedir/mkpasswd.py -------------------------------------------------------------------------------- /java-mysql/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/.classpath -------------------------------------------------------------------------------- /java-mysql/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/.project -------------------------------------------------------------------------------- /java-mysql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/build.sh -------------------------------------------------------------------------------- /java-mysql/make-jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/make-jar.sh -------------------------------------------------------------------------------- /java-mysql/makedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/makedocs.sh -------------------------------------------------------------------------------- /java-mysql/net/willware/Mysql/Row.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/net/willware/Mysql/Row.java -------------------------------------------------------------------------------- /java-mysql/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/setup.sh -------------------------------------------------------------------------------- /java-mysql/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/test.sh -------------------------------------------------------------------------------- /java-mysql/testschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/java-mysql/testschema.sql -------------------------------------------------------------------------------- /kindle-authoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/Makefile -------------------------------------------------------------------------------- /kindle-authoring/chapter1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/chapter1.rst -------------------------------------------------------------------------------- /kindle-authoring/chapter2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/chapter2.rst -------------------------------------------------------------------------------- /kindle-authoring/chapter3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/chapter3.rst -------------------------------------------------------------------------------- /kindle-authoring/create-cover-art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/create-cover-art.py -------------------------------------------------------------------------------- /kindle-authoring/make-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/kindle-authoring/make-index.py -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | build/ 3 | venv/ 4 | 5 | *.pyc 6 | -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/README.md -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/Vagrantfile -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/db.sqlite3 -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/localvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/localvm -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/main.yml -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/manage.py -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/mysite/urls.py -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/mysite/wsgi.py -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/requirements.txt: -------------------------------------------------------------------------------- 1 | Django 2 | wsgiref 3 | -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/setup.sh -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/site.yml -------------------------------------------------------------------------------- /learn-stuff/ansible-ec2/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/ansible-ec2/vars.yml -------------------------------------------------------------------------------- /learn-stuff/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/README.md -------------------------------------------------------------------------------- /learn-stuff/docker/example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/example/run.sh -------------------------------------------------------------------------------- /learn-stuff/docker/flask-serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/flask-serve.py -------------------------------------------------------------------------------- /learn-stuff/docker/kill-dockers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/kill-dockers.sh -------------------------------------------------------------------------------- /learn-stuff/docker/start-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/start-bash.sh -------------------------------------------------------------------------------- /learn-stuff/docker/start-many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/docker/start-many.sh -------------------------------------------------------------------------------- /learn-stuff/myhdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/Makefile -------------------------------------------------------------------------------- /learn-stuff/myhdl/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/README.rst -------------------------------------------------------------------------------- /learn-stuff/myhdl/amps_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/amps_filters.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/blinker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/blinker.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/config.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/cosim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/cosim.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/envgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/envgen.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/foo.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/output_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/output_stage.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/param_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/param_loading.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/plugh/plugh.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/plugh/plugh.ino -------------------------------------------------------------------------------- /learn-stuff/myhdl/synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/synth.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/tb_fpga.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/tb_fpga.tf -------------------------------------------------------------------------------- /learn-stuff/myhdl/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/tryit.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/wavegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/wavegen.py -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/README.rst -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/blinker.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/blinker.bit -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/blinker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/blinker.v -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/blinker.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/blinker.xise -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/go.sh -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/nexys2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/nexys2.ucf -------------------------------------------------------------------------------- /learn-stuff/myhdl/xilinx/prog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/myhdl/xilinx/prog.sh -------------------------------------------------------------------------------- /learn-stuff/redblacktree/C++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/redblacktree/C++/Makefile -------------------------------------------------------------------------------- /learn-stuff/redblacktree/C++/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/redblacktree/C++/README -------------------------------------------------------------------------------- /learn-stuff/redblacktree/C++/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/redblacktree/C++/misc.h -------------------------------------------------------------------------------- /learn-stuff/redblacktree/C++/sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/redblacktree/C++/sets.h -------------------------------------------------------------------------------- /learn-stuff/redblacktree/C++/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/redblacktree/C++/test.cc -------------------------------------------------------------------------------- /learn-stuff/sip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/sip/README.md -------------------------------------------------------------------------------- /learn-stuff/sip/sharedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/sip/sharedptr.h -------------------------------------------------------------------------------- /learn-stuff/sip/sharedptr.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/sip/sharedptr.sip -------------------------------------------------------------------------------- /learn-stuff/sip/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/learn-stuff/sip/tryit.py -------------------------------------------------------------------------------- /libusb-pbatard/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/.gitattributes -------------------------------------------------------------------------------- /libusb-pbatard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/.gitignore -------------------------------------------------------------------------------- /libusb-pbatard/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/AUTHORS -------------------------------------------------------------------------------- /libusb-pbatard/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/COPYING -------------------------------------------------------------------------------- /libusb-pbatard/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/Doxyfile -------------------------------------------------------------------------------- /libusb-pbatard/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/INSTALL -------------------------------------------------------------------------------- /libusb-pbatard/INSTALL_WIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/INSTALL_WIN.txt -------------------------------------------------------------------------------- /libusb-pbatard/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/Makefile.am -------------------------------------------------------------------------------- /libusb-pbatard/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/NEWS -------------------------------------------------------------------------------- /libusb-pbatard/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/PORTING -------------------------------------------------------------------------------- /libusb-pbatard/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/README -------------------------------------------------------------------------------- /libusb-pbatard/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/THANKS -------------------------------------------------------------------------------- /libusb-pbatard/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/TODO -------------------------------------------------------------------------------- /libusb-pbatard/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/autogen.sh -------------------------------------------------------------------------------- /libusb-pbatard/bd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/bd.cmd -------------------------------------------------------------------------------- /libusb-pbatard/bm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/bm.sh -------------------------------------------------------------------------------- /libusb-pbatard/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/bump.sh -------------------------------------------------------------------------------- /libusb-pbatard/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/configure.ac -------------------------------------------------------------------------------- /libusb-pbatard/cygwin-libusb-1.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/cygwin-libusb-1.0.a -------------------------------------------------------------------------------- /libusb-pbatard/cygwin-libusb-1.0.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/cygwin-libusb-1.0.dll.a -------------------------------------------------------------------------------- /libusb-pbatard/cygwin-libusb-1.0.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/cygwin-libusb-1.0.la -------------------------------------------------------------------------------- /libusb-pbatard/ddk_build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/ddk_build.cmd -------------------------------------------------------------------------------- /libusb-pbatard/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/doc/Makefile.am -------------------------------------------------------------------------------- /libusb-pbatard/doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /libusb-pbatard/examples/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/.gitattributes -------------------------------------------------------------------------------- /libusb-pbatard/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/Makefile.am -------------------------------------------------------------------------------- /libusb-pbatard/examples/dpfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/dpfp.c -------------------------------------------------------------------------------- /libusb-pbatard/examples/lsusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/lsusb.c -------------------------------------------------------------------------------- /libusb-pbatard/examples/lsusb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/lsusb.dsp -------------------------------------------------------------------------------- /libusb-pbatard/examples/lsusb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/lsusb.vcproj -------------------------------------------------------------------------------- /libusb-pbatard/examples/lsusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/lsusb_sources -------------------------------------------------------------------------------- /libusb-pbatard/examples/xusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/xusb.c -------------------------------------------------------------------------------- /libusb-pbatard/examples/xusb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/xusb.dsp -------------------------------------------------------------------------------- /libusb-pbatard/examples/xusb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/xusb.vcproj -------------------------------------------------------------------------------- /libusb-pbatard/examples/xusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/examples/xusb_sources -------------------------------------------------------------------------------- /libusb-pbatard/hack-cygwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/hack-cygwin.sh -------------------------------------------------------------------------------- /libusb-pbatard/libtool-nls.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libtool-nls.diff -------------------------------------------------------------------------------- /libusb-pbatard/libusb-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb-1.0.pc.in -------------------------------------------------------------------------------- /libusb-pbatard/libusb.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb.dsw -------------------------------------------------------------------------------- /libusb-pbatard/libusb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb.sln -------------------------------------------------------------------------------- /libusb-pbatard/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/Makefile.am -------------------------------------------------------------------------------- /libusb-pbatard/libusb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/core.c -------------------------------------------------------------------------------- /libusb-pbatard/libusb/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/descriptor.c -------------------------------------------------------------------------------- /libusb-pbatard/libusb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/io.c -------------------------------------------------------------------------------- /libusb-pbatard/libusb/libusb-1.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/libusb-1.0.def -------------------------------------------------------------------------------- /libusb-pbatard/libusb/libusb-1.0.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/libusb-1.0.rc -------------------------------------------------------------------------------- /libusb-pbatard/libusb/libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/libusb.h -------------------------------------------------------------------------------- /libusb-pbatard/libusb/libusb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/libusb_version.h -------------------------------------------------------------------------------- /libusb-pbatard/libusb/libusbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/libusbi.h -------------------------------------------------------------------------------- /libusb-pbatard/libusb/os/darwin_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/os/darwin_usb.c -------------------------------------------------------------------------------- /libusb-pbatard/libusb/os/darwin_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/os/darwin_usb.h -------------------------------------------------------------------------------- /libusb-pbatard/libusb/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb/sync.c -------------------------------------------------------------------------------- /libusb-pbatard/libusb_2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb_2008.sln -------------------------------------------------------------------------------- /libusb-pbatard/libusb_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb_dll.dsp -------------------------------------------------------------------------------- /libusb-pbatard/libusb_dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb_dll.vcproj -------------------------------------------------------------------------------- /libusb-pbatard/libusb_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb_static.dsp -------------------------------------------------------------------------------- /libusb-pbatard/libusb_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/libusb_static.vcproj -------------------------------------------------------------------------------- /libusb-pbatard/msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/msvc/config.h -------------------------------------------------------------------------------- /libusb-pbatard/msvc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/msvc/inttypes.h -------------------------------------------------------------------------------- /libusb-pbatard/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/libusb-pbatard/msvc/stdint.h -------------------------------------------------------------------------------- /linkeddata/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linkeddata/README.rst -------------------------------------------------------------------------------- /linuxtuples-1.03/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/ChangeLog -------------------------------------------------------------------------------- /linuxtuples-1.03/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/Doxyfile -------------------------------------------------------------------------------- /linuxtuples-1.03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/Makefile -------------------------------------------------------------------------------- /linuxtuples-1.03/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/README -------------------------------------------------------------------------------- /linuxtuples-1.03/SLAVES: -------------------------------------------------------------------------------- 1 | desktop webserver 2 | -------------------------------------------------------------------------------- /linuxtuples-1.03/endian_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/endian_test.c -------------------------------------------------------------------------------- /linuxtuples-1.03/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/fft.c -------------------------------------------------------------------------------- /linuxtuples-1.03/jobcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/jobcontrol.py -------------------------------------------------------------------------------- /linuxtuples-1.03/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/package.html -------------------------------------------------------------------------------- /linuxtuples-1.03/pingpong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/pingpong.py -------------------------------------------------------------------------------- /linuxtuples-1.03/py_linuxtuples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/py_linuxtuples.c -------------------------------------------------------------------------------- /linuxtuples-1.03/testCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/testCount.py -------------------------------------------------------------------------------- /linuxtuples-1.03/tuple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/tuple.c -------------------------------------------------------------------------------- /linuxtuples-1.03/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/tuple.h -------------------------------------------------------------------------------- /linuxtuples-1.03/tuple_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/tuple_client.c -------------------------------------------------------------------------------- /linuxtuples-1.03/tuple_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/linuxtuples-1.03/tuple_server.c -------------------------------------------------------------------------------- /litprog/litprog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/litprog/litprog.html -------------------------------------------------------------------------------- /mapreduce/MR_UT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/MR_UT.py -------------------------------------------------------------------------------- /mapreduce/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/NOTES -------------------------------------------------------------------------------- /mapreduce/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/doc/Makefile -------------------------------------------------------------------------------- /mapreduce/doc/etherio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/doc/etherio.pdf -------------------------------------------------------------------------------- /mapreduce/doc/mr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/doc/mr.tex -------------------------------------------------------------------------------- /mapreduce/doc/mr_arch.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/doc/mr_arch.fig -------------------------------------------------------------------------------- /mapreduce/mapreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mapreduce/mapreduce.py -------------------------------------------------------------------------------- /mechanics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/Makefile -------------------------------------------------------------------------------- /mechanics/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/debian/changelog -------------------------------------------------------------------------------- /mechanics/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/debian/control -------------------------------------------------------------------------------- /mechanics/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/debian/copyright -------------------------------------------------------------------------------- /mechanics/python/mech_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/python/mech_lib.py -------------------------------------------------------------------------------- /mechanics/python/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mechanics/python/tryit.py -------------------------------------------------------------------------------- /mechanics/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.7.0 2 | wsgiref==0.1.2 3 | -------------------------------------------------------------------------------- /mixedmode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mixedmode/README -------------------------------------------------------------------------------- /mixedmode/cpeptide.gro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mixedmode/cpeptide.gro -------------------------------------------------------------------------------- /mixedmode/cpeptide.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mixedmode/cpeptide.pdb -------------------------------------------------------------------------------- /mixedmode/cpeptide_after_md.gro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mixedmode/cpeptide_after_md.gro -------------------------------------------------------------------------------- /mixedmode/cpeptide_md.trr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mixedmode/cpeptide_md.trr -------------------------------------------------------------------------------- /mmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mmt/Makefile -------------------------------------------------------------------------------- /mmt/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mmt/NOTES -------------------------------------------------------------------------------- /mmt/mmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mmt/mmt.py -------------------------------------------------------------------------------- /mmt/tryit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mmt/tryit.c -------------------------------------------------------------------------------- /monty-hall/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/monty-hall/README.rst -------------------------------------------------------------------------------- /monty-hall/mh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/monty-hall/mh.py -------------------------------------------------------------------------------- /music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/Makefile -------------------------------------------------------------------------------- /music/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/foo.py -------------------------------------------------------------------------------- /music/midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/midi.py -------------------------------------------------------------------------------- /music/rdnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/rdnotes.py -------------------------------------------------------------------------------- /music/sndblit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/sndblit.1 -------------------------------------------------------------------------------- /music/sndblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/music/sndblit.c -------------------------------------------------------------------------------- /mw-helper/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/mw-helper/README.rst -------------------------------------------------------------------------------- /ncad2/getpdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncad2/getpdb.php -------------------------------------------------------------------------------- /ncad2/nc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncad2/nc.html -------------------------------------------------------------------------------- /ncad2/nc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncad2/nc.js -------------------------------------------------------------------------------- /ncadjava/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/Doxyfile -------------------------------------------------------------------------------- /ncadjava/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/Makefile -------------------------------------------------------------------------------- /ncadjava/aspirin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/aspirin.java -------------------------------------------------------------------------------- /ncadjava/aterm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/aterm.java -------------------------------------------------------------------------------- /ncadjava/atom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/atom.java -------------------------------------------------------------------------------- /ncadjava/bond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/bond.java -------------------------------------------------------------------------------- /ncadjava/buckyball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/buckyball.java -------------------------------------------------------------------------------- /ncadjava/carbon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/carbon.java -------------------------------------------------------------------------------- /ncadjava/diamond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/diamond.java -------------------------------------------------------------------------------- /ncadjava/diamrod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/diamrod.java -------------------------------------------------------------------------------- /ncadjava/dl_atom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/dl_atom.java -------------------------------------------------------------------------------- /ncadjava/dl_bond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/dl_bond.java -------------------------------------------------------------------------------- /ncadjava/dlentry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/dlentry.java -------------------------------------------------------------------------------- /ncadjava/dlforce.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/dlforce.java -------------------------------------------------------------------------------- /ncadjava/group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/group.java -------------------------------------------------------------------------------- /ncadjava/hydrogen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/hydrogen.java -------------------------------------------------------------------------------- /ncadjava/lrterm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/lrterm.java -------------------------------------------------------------------------------- /ncadjava/lterm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/lterm.java -------------------------------------------------------------------------------- /ncadjava/nanocad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/nanocad.java -------------------------------------------------------------------------------- /ncadjava/nitrogen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/nitrogen.java -------------------------------------------------------------------------------- /ncadjava/oxygen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/oxygen.java -------------------------------------------------------------------------------- /ncadjava/propane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/propane.java -------------------------------------------------------------------------------- /ncadjava/term.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/term.java -------------------------------------------------------------------------------- /ncadjava/textwin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/textwin.java -------------------------------------------------------------------------------- /ncadjava/tterm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/tterm.java -------------------------------------------------------------------------------- /ncadjava/tworings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/tworings.java -------------------------------------------------------------------------------- /ncadjava/view.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/view.java -------------------------------------------------------------------------------- /ncadjava/water.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/water.java -------------------------------------------------------------------------------- /ncadjava/wrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ncadjava/wrapper.java -------------------------------------------------------------------------------- /number-theory/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/number-theory/foo.py -------------------------------------------------------------------------------- /number-theory/makeprimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/number-theory/makeprimes.py -------------------------------------------------------------------------------- /packetfun/packetfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/packetfun/packetfun.py -------------------------------------------------------------------------------- /packetfun/rawsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/packetfun/rawsocket.c -------------------------------------------------------------------------------- /python/NOTES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/NOTES.rst -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ast/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/ast/README.rst -------------------------------------------------------------------------------- /python/ast/tryit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/ast/tryit.py -------------------------------------------------------------------------------- /python/cmdline/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/cmdline/cmdline.py -------------------------------------------------------------------------------- /python/cmdline/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/cmdline/example.py -------------------------------------------------------------------------------- /python/debugging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/debugging/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/debugging/debugger.py -------------------------------------------------------------------------------- /python/debugging/hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/debugging/hack/__init__.py -------------------------------------------------------------------------------- /python/debugging/testit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/debugging/testit.py -------------------------------------------------------------------------------- /python/feature-toggle/ftoggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/feature-toggle/ftoggle.py -------------------------------------------------------------------------------- /python/hack-cdll/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/hack-cdll/foo.py -------------------------------------------------------------------------------- /python/mysql/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/mysql/README.rst -------------------------------------------------------------------------------- /python/mysql/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/mysql/mysql.py -------------------------------------------------------------------------------- /python/mysql/testschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/mysql/testschema.sql -------------------------------------------------------------------------------- /python/test-batch/testBatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/python/test-batch/testBatch.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/LICENSE -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/PKG-INFO -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/README -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/TODO -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/docs/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/docs/tutorial.txt -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/setup.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/tests/devinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/tests/devinfo.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/tests/test_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/tests/test_find.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/tests/test_util.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/tests/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/tests/testall.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/tests/utils.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/__init__.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/_debug.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/_interop.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/core.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/legacy.py -------------------------------------------------------------------------------- /pyusb-1.0.0-a0/usb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/pyusb-1.0.0-a0/usb/util.py -------------------------------------------------------------------------------- /qemu-rpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/qemu-rpi/README.md -------------------------------------------------------------------------------- /remaster-dsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-dsl/Makefile -------------------------------------------------------------------------------- /remaster-dsl/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-dsl/README.rst -------------------------------------------------------------------------------- /remaster-dsl/additions/bin/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-dsl/additions/bin/hello.sh -------------------------------------------------------------------------------- /remaster-dsl/verify-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-dsl/verify-number.c -------------------------------------------------------------------------------- /remaster-slackware/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-slackware/README.rst -------------------------------------------------------------------------------- /remaster-umr/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-umr/README.rst -------------------------------------------------------------------------------- /remaster-umr/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/remaster-umr/customize.sh -------------------------------------------------------------------------------- /renderfarm/renderfarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/renderfarm/renderfarm.py -------------------------------------------------------------------------------- /semantic-wiki/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semantic-wiki/README.rst -------------------------------------------------------------------------------- /semantic-wiki/rdf-cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semantic-wiki/rdf-cgi.py -------------------------------------------------------------------------------- /semantic-wiki/setup-ubuntu-12.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semantic-wiki/setup-ubuntu-12.04.sh -------------------------------------------------------------------------------- /semantic-wiki/undo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semantic-wiki/undo.sh -------------------------------------------------------------------------------- /semweb/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/.classpath -------------------------------------------------------------------------------- /semweb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/.project -------------------------------------------------------------------------------- /semweb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/README.rst -------------------------------------------------------------------------------- /semweb/animals.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/animals.ttl -------------------------------------------------------------------------------- /semweb/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/build.xml -------------------------------------------------------------------------------- /semweb/family.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/family.rdf -------------------------------------------------------------------------------- /semweb/family.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/family.ttl -------------------------------------------------------------------------------- /semweb/hack-rdflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/hack-rdflib.py -------------------------------------------------------------------------------- /semweb/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/index.jsp -------------------------------------------------------------------------------- /semweb/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/log4j.properties -------------------------------------------------------------------------------- /semweb/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/plugin.py -------------------------------------------------------------------------------- /semweb/runfoo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/runfoo.sh -------------------------------------------------------------------------------- /semweb/try-cwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/try-cwm.py -------------------------------------------------------------------------------- /semweb/try-surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/try-surf.py -------------------------------------------------------------------------------- /semweb/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/web.xml -------------------------------------------------------------------------------- /semweb/x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/semweb/x.sh -------------------------------------------------------------------------------- /simann/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/Makefile -------------------------------------------------------------------------------- /simann/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/README -------------------------------------------------------------------------------- /simann/dostats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/dostats.py -------------------------------------------------------------------------------- /simann/sa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/sa.py -------------------------------------------------------------------------------- /simann/sahelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/sahelp.c -------------------------------------------------------------------------------- /simann/sahelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/simann/sahelp.h -------------------------------------------------------------------------------- /siod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/README -------------------------------------------------------------------------------- /siod/acct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/acct.c -------------------------------------------------------------------------------- /siod/cgi-echo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/cgi-echo.scm -------------------------------------------------------------------------------- /siod/cgi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/cgi.scm -------------------------------------------------------------------------------- /siod/cp-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/cp-build -------------------------------------------------------------------------------- /siod/cp-build.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/cp-build.1 -------------------------------------------------------------------------------- /siod/csiod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/csiod -------------------------------------------------------------------------------- /siod/csiod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/csiod.1 -------------------------------------------------------------------------------- /siod/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/descrip.mms -------------------------------------------------------------------------------- /siod/find-files.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/find-files.scm -------------------------------------------------------------------------------- /siod/fork-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/fork-test.scm -------------------------------------------------------------------------------- /siod/ftp-cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-cp -------------------------------------------------------------------------------- /siod/ftp-cp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-cp.1 -------------------------------------------------------------------------------- /siod/ftp-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-get -------------------------------------------------------------------------------- /siod/ftp-put: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-put -------------------------------------------------------------------------------- /siod/ftp-put.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-put.1 -------------------------------------------------------------------------------- /siod/ftp-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-test -------------------------------------------------------------------------------- /siod/ftp-test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp-test.1 -------------------------------------------------------------------------------- /siod/ftp.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ftp.scm -------------------------------------------------------------------------------- /siod/gd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/gd.c -------------------------------------------------------------------------------- /siod/hello.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/hello.scm -------------------------------------------------------------------------------- /siod/http-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/http-get -------------------------------------------------------------------------------- /siod/http-get.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/http-get.1 -------------------------------------------------------------------------------- /siod/http-server.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/http-server.scm -------------------------------------------------------------------------------- /siod/http-stress.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/http-stress.scm -------------------------------------------------------------------------------- /siod/http.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/http.scm -------------------------------------------------------------------------------- /siod/libsiod.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/libsiod.def -------------------------------------------------------------------------------- /siod/libsiod.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/libsiod.mak -------------------------------------------------------------------------------- /siod/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/make.bat -------------------------------------------------------------------------------- /siod/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/makefile -------------------------------------------------------------------------------- /siod/makefile.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/makefile.com -------------------------------------------------------------------------------- /siod/maze-support.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/maze-support.scm -------------------------------------------------------------------------------- /siod/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/md5.c -------------------------------------------------------------------------------- /siod/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/md5.h -------------------------------------------------------------------------------- /siod/ndbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ndbm.c -------------------------------------------------------------------------------- /siod/parser_pratt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/parser_pratt.c -------------------------------------------------------------------------------- /siod/parser_pratt.def: -------------------------------------------------------------------------------- 1 | LIBRARY PARSER_PRATT 2 | 3 | EXPORTS 4 | init_parser_pratt 5 | 6 | -------------------------------------------------------------------------------- /siod/parser_pratt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/parser_pratt.mak -------------------------------------------------------------------------------- /siod/parser_pratt.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/parser_pratt.opt -------------------------------------------------------------------------------- /siod/parser_pratt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/parser_pratt.scm -------------------------------------------------------------------------------- /siod/piechart.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/piechart.scm -------------------------------------------------------------------------------- /siod/pop3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/pop3.scm -------------------------------------------------------------------------------- /siod/pratt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/pratt.scm -------------------------------------------------------------------------------- /siod/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/regex.c -------------------------------------------------------------------------------- /siod/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/sample.c -------------------------------------------------------------------------------- /siod/selfdoc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/selfdoc.scm -------------------------------------------------------------------------------- /siod/siod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.1 -------------------------------------------------------------------------------- /siod/siod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.c -------------------------------------------------------------------------------- /siod/siod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.h -------------------------------------------------------------------------------- /siod/siod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.html -------------------------------------------------------------------------------- /siod/siod.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.mak -------------------------------------------------------------------------------- /siod/siod.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.opt -------------------------------------------------------------------------------- /siod/siod.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siod.scm -------------------------------------------------------------------------------- /siod/siodm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siodm.c -------------------------------------------------------------------------------- /siod/siodp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siodp.h -------------------------------------------------------------------------------- /siod/siodshr.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/siodshr.opt -------------------------------------------------------------------------------- /siod/slib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/slib.c -------------------------------------------------------------------------------- /siod/sliba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/sliba.c -------------------------------------------------------------------------------- /siod/slibu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/slibu.c -------------------------------------------------------------------------------- /siod/smtp.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/smtp.scm -------------------------------------------------------------------------------- /siod/snapshot-compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/snapshot-compare -------------------------------------------------------------------------------- /siod/snapshot-compare.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/snapshot-compare.1 -------------------------------------------------------------------------------- /siod/snapshot-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/snapshot-dir -------------------------------------------------------------------------------- /siod/snapshot-dir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/snapshot-dir.1 -------------------------------------------------------------------------------- /siod/ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ss.c -------------------------------------------------------------------------------- /siod/ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ss.h -------------------------------------------------------------------------------- /siod/ss.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/ss.opt -------------------------------------------------------------------------------- /siod/statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/statfs.c -------------------------------------------------------------------------------- /siod/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/tar.c -------------------------------------------------------------------------------- /siod/tar.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/tar.opt -------------------------------------------------------------------------------- /siod/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/siod/trace.c -------------------------------------------------------------------------------- /statemachines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/statemachines/Makefile -------------------------------------------------------------------------------- /statemachines/readme.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/statemachines/readme.tex -------------------------------------------------------------------------------- /statemachines/smtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/statemachines/smtests.py -------------------------------------------------------------------------------- /statemachines/stateMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/statemachines/stateMachine.py -------------------------------------------------------------------------------- /statemachines/stateMachine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/statemachines/stateMachine.pyc -------------------------------------------------------------------------------- /tarball-runner/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tarball-runner/README.rst -------------------------------------------------------------------------------- /tarball-runner/example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tarball-runner/example/run.sh -------------------------------------------------------------------------------- /tarball-runner/tarballrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tarball-runner/tarballrunner.py -------------------------------------------------------------------------------- /tarball-runner/uck-script-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tarball-runner/uck-script-1.sh -------------------------------------------------------------------------------- /tarball-runner/uck-script-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tarball-runner/uck-script-2.sh -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/Makefile -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/ctrl.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/ctrl.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/decode/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/decode/audio.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/decode/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/decode/audio.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/decode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/decode/main.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/decode/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/decode/video.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/decode/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/decode/video.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/demo.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/encode/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/encode/audio.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/encode/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/encode/audio.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/encode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/encode/main.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/encode/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/encode/video.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/encode/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/encode/video.h -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/ui.c -------------------------------------------------------------------------------- /ti-dvsdk-demos-dm368/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ti-dvsdk-demos-dm368/ui.h -------------------------------------------------------------------------------- /tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tidy.py -------------------------------------------------------------------------------- /tinyscheme1.39/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/BUILDING -------------------------------------------------------------------------------- /tinyscheme1.39/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/CHANGES -------------------------------------------------------------------------------- /tinyscheme1.39/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/COPYING -------------------------------------------------------------------------------- /tinyscheme1.39/Manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/Manual.txt -------------------------------------------------------------------------------- /tinyscheme1.39/dynload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/dynload.c -------------------------------------------------------------------------------- /tinyscheme1.39/dynload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/dynload.h -------------------------------------------------------------------------------- /tinyscheme1.39/hack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/hack.txt -------------------------------------------------------------------------------- /tinyscheme1.39/init.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/init.scm -------------------------------------------------------------------------------- /tinyscheme1.39/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/makefile -------------------------------------------------------------------------------- /tinyscheme1.39/opdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/opdefines.h -------------------------------------------------------------------------------- /tinyscheme1.39/scheme-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/scheme-private.h -------------------------------------------------------------------------------- /tinyscheme1.39/scheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/scheme.c -------------------------------------------------------------------------------- /tinyscheme1.39/scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tinyscheme1.39/scheme.h -------------------------------------------------------------------------------- /triangles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triangles/Makefile -------------------------------------------------------------------------------- /triangles/PPMtoMPEG.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triangles/PPMtoMPEG.par -------------------------------------------------------------------------------- /triangles/anima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triangles/anima.py -------------------------------------------------------------------------------- /triangles/zbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triangles/zbuf.c -------------------------------------------------------------------------------- /triplestore/TR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triplestore/TR -------------------------------------------------------------------------------- /triplestore/crc16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triplestore/crc16.py -------------------------------------------------------------------------------- /triplestore/foo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triplestore/foo.scm -------------------------------------------------------------------------------- /triplestore/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/triplestore/hack.py -------------------------------------------------------------------------------- /tube-symbol/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tube-symbol/symbol.png -------------------------------------------------------------------------------- /tube-symbol/symbol.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/tube-symbol/symbol.ps -------------------------------------------------------------------------------- /twitter-search/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twitter-search/hack.py -------------------------------------------------------------------------------- /twofishmodule-0.7/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/CHANGES -------------------------------------------------------------------------------- /twofishmodule-0.7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/LICENSE -------------------------------------------------------------------------------- /twofishmodule-0.7/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/Makefile.in -------------------------------------------------------------------------------- /twofishmodule-0.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/README -------------------------------------------------------------------------------- /twofishmodule-0.7/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/TODO -------------------------------------------------------------------------------- /twofishmodule-0.7/_twofish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/_twofish.c -------------------------------------------------------------------------------- /twofishmodule-0.7/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/aes.h -------------------------------------------------------------------------------- /twofishmodule-0.7/bin2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/bin2hex.py -------------------------------------------------------------------------------- /twofishmodule-0.7/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/config.h.in -------------------------------------------------------------------------------- /twofishmodule-0.7/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/configure -------------------------------------------------------------------------------- /twofishmodule-0.7/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/configure.in -------------------------------------------------------------------------------- /twofishmodule-0.7/cryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/cryptfile.py -------------------------------------------------------------------------------- /twofishmodule-0.7/cryptrand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/cryptrand.py -------------------------------------------------------------------------------- /twofishmodule-0.7/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/debug.h -------------------------------------------------------------------------------- /twofishmodule-0.7/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/install-sh -------------------------------------------------------------------------------- /twofishmodule-0.7/makedist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/makedist -------------------------------------------------------------------------------- /twofishmodule-0.7/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/platform.h -------------------------------------------------------------------------------- /twofishmodule-0.7/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/table.h -------------------------------------------------------------------------------- /twofishmodule-0.7/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/test.py -------------------------------------------------------------------------------- /twofishmodule-0.7/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/twofish.h -------------------------------------------------------------------------------- /twofishmodule-0.7/twofish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/twofish.py -------------------------------------------------------------------------------- /twofishmodule-0.7/twofishmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/twofishmodule-0.7/twofishmodule.c -------------------------------------------------------------------------------- /ubw-src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/Doxyfile -------------------------------------------------------------------------------- /ubw-src/autofiles/usbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/autofiles/usbcfg.h -------------------------------------------------------------------------------- /ubw-src/autofiles/usbdsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/autofiles/usbdsc.c -------------------------------------------------------------------------------- /ubw-src/autofiles/usbdsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/autofiles/usbdsc.h -------------------------------------------------------------------------------- /ubw-src/io_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/io_cfg.h -------------------------------------------------------------------------------- /ubw-src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/main.c -------------------------------------------------------------------------------- /ubw-src/system/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/typedefs.h -------------------------------------------------------------------------------- /ubw-src/system/usb/class/cdc/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/class/cdc/cdc.c -------------------------------------------------------------------------------- /ubw-src/system/usb/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/class/cdc/cdc.h -------------------------------------------------------------------------------- /ubw-src/system/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usb.h -------------------------------------------------------------------------------- /ubw-src/system/usb/usb9/usb9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usb9/usb9.c -------------------------------------------------------------------------------- /ubw-src/system/usb/usb9/usb9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usb9/usb9.h -------------------------------------------------------------------------------- /ubw-src/system/usb/usbdrv/usbdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usbdrv/usbdrv.c -------------------------------------------------------------------------------- /ubw-src/system/usb/usbdrv/usbdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usbdrv/usbdrv.h -------------------------------------------------------------------------------- /ubw-src/system/usb/usbmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usbmmap.c -------------------------------------------------------------------------------- /ubw-src/system/usb/usbmmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/system/usb/usbmmap.h -------------------------------------------------------------------------------- /ubw-src/user/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/user/user.c -------------------------------------------------------------------------------- /ubw-src/user/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/user/user.h -------------------------------------------------------------------------------- /ubw-src/user/user_SpeedTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/ubw-src/user/user_SpeedTest.c -------------------------------------------------------------------------------- /wavebot/waveapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/__init__.py -------------------------------------------------------------------------------- /wavebot/waveapi/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/document.py -------------------------------------------------------------------------------- /wavebot/waveapi/document_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/document_test.py -------------------------------------------------------------------------------- /wavebot/waveapi/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/errors.py -------------------------------------------------------------------------------- /wavebot/waveapi/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/events.py -------------------------------------------------------------------------------- /wavebot/waveapi/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/model.py -------------------------------------------------------------------------------- /wavebot/waveapi/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/model_test.py -------------------------------------------------------------------------------- /wavebot/waveapi/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/ops.py -------------------------------------------------------------------------------- /wavebot/waveapi/ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/ops_test.py -------------------------------------------------------------------------------- /wavebot/waveapi/robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/robot.py -------------------------------------------------------------------------------- /wavebot/waveapi/robot_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/robot_abstract.py -------------------------------------------------------------------------------- /wavebot/waveapi/run_unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/run_unit_tests.py -------------------------------------------------------------------------------- /wavebot/waveapi/simplejson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/simplejson/LICENSE -------------------------------------------------------------------------------- /wavebot/waveapi/simplejson/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/simplejson/tool.py -------------------------------------------------------------------------------- /wavebot/waveapi/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/util.py -------------------------------------------------------------------------------- /wavebot/waveapi/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/wavebot/waveapi/util_test.py -------------------------------------------------------------------------------- /webfun/django-example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/django-example/README.rst -------------------------------------------------------------------------------- /webfun/django-example/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webfun/django-example/mysite/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webfun/django-example/mysite/polls/rawjson.html: -------------------------------------------------------------------------------- 1 | {{ jsonoutput|safe }} 2 | -------------------------------------------------------------------------------- /webfun/django/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/django/README.rst -------------------------------------------------------------------------------- /webfun/django/django-app/caloriecounter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webfun/django/django-app/trivialproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webfun/django/genkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/django/genkey.py -------------------------------------------------------------------------------- /webfun/django/hack-virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/django/hack-virtualenv.sh -------------------------------------------------------------------------------- /webfun/grails/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/grails/README.rst -------------------------------------------------------------------------------- /webfun/grails/my-project/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/grails/my-project/.classpath -------------------------------------------------------------------------------- /webfun/grails/my-project/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/grails/my-project/.project -------------------------------------------------------------------------------- /webfun/graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/graphs/README.md -------------------------------------------------------------------------------- /webfun/graphs/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/graphs/d3.js -------------------------------------------------------------------------------- /webfun/graphs/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/graphs/d3.min.js -------------------------------------------------------------------------------- /webfun/graphs/graph-by-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/graphs/graph-by-date.html -------------------------------------------------------------------------------- /webfun/guile/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/README.rst -------------------------------------------------------------------------------- /webfun/guile/gserver.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/gserver.scm -------------------------------------------------------------------------------- /webfun/guile/guile-web-0.5.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-web-0.5.0/NEWS -------------------------------------------------------------------------------- /webfun/guile/guile-web-0.5.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-web-0.5.0/README -------------------------------------------------------------------------------- /webfun/guile/guile-web-0.5.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-web-0.5.0/TODO -------------------------------------------------------------------------------- /webfun/guile/guile-web-0.5.0/db.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-web-0.5.0/db.scm -------------------------------------------------------------------------------- /webfun/guile/guile-www-2.28/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-www-2.28/AUTHORS -------------------------------------------------------------------------------- /webfun/guile/guile-www-2.28/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-www-2.28/COPYING -------------------------------------------------------------------------------- /webfun/guile/guile-www-2.28/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-www-2.28/INSTALL -------------------------------------------------------------------------------- /webfun/guile/guile-www-2.28/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-www-2.28/NEWS -------------------------------------------------------------------------------- /webfun/guile/guile-www-2.28/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/guile/guile-www-2.28/README -------------------------------------------------------------------------------- /webfun/rails/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/rails/README.rst -------------------------------------------------------------------------------- /webfun/rails/build-website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/rails/build-website -------------------------------------------------------------------------------- /webfun/rails/tinkering/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/rails/tinkering/foo.rb -------------------------------------------------------------------------------- /webfun/random/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/random/autocomplete.py -------------------------------------------------------------------------------- /webfun/random/blarg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/random/blarg.php -------------------------------------------------------------------------------- /webfun/random/collect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/random/collect.php -------------------------------------------------------------------------------- /webfun/random/oscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/random/oscope.html -------------------------------------------------------------------------------- /webfun/random/trycanvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/webfun/random/trycanvas.html -------------------------------------------------------------------------------- /will_snow_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wware/stuff/HEAD/will_snow_small.png --------------------------------------------------------------------------------