├── 1. K-近邻 ├── .idea │ ├── 1. KNN.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── ReadMe.md ├── __pycache__ │ └── utils.cpython-37.pyc ├── knn.py ├── pima-indians-diabetes │ └── diabetes.csv └── utils.py ├── 2. 线性回归 ├── .idea │ ├── 2. 线性回归.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── LinearRegression.py ├── README.md ├── __pycache__ │ └── utils.cpython-37.pyc └── utils.py ├── 3. 逻辑回归 ├── .idea │ ├── .gitignore │ ├── 3. 逻辑回归.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── __pycache__ │ └── utils.cpython-37.pyc ├── logistics regression.py └── utils.py ├── 4. 决策树 ├── .idea │ ├── .gitignore │ ├── 4. 决策树.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── Decision Tree.py ├── README.md ├── titanic.dot ├── titanic.png └── titanic │ ├── test.csv │ └── train.csv ├── 5. 支持向量机SVM ├── .idea │ ├── .gitignore │ ├── 5. 支持向量机SVM.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── SVM.py ├── __pycache__ │ └── utils.cpython-37.pyc └── utils.py ├── 6. 朴素贝叶斯 ├── .idea │ ├── .gitignore │ ├── 6. 朴素贝叶斯.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── NaiveBayes.py └── README.md ├── 7. PCA ├── .idea │ ├── .gitignore │ ├── 7. PCA.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── PCA.py ├── README.md ├── dataset │ ├── olivetti.pkz │ └── olivetti_py3.pkz └── face.py ├── 8. K-均值 ├── .idea │ ├── .gitignore │ ├── 8. K-均值.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── K-means.py ├── K_means_doc.py ├── README.md └── data │ ├── sci.crypt │ ├── 10629-15886 │ ├── 10630-15364 │ ├── 10631-16122 │ ├── 10632-15558 │ ├── 10633-15287 │ ├── 10634-15975 │ ├── 10635-15584 │ ├── 10636-15643 │ ├── 10637-15528 │ ├── 10638-16115 │ ├── 10639-15776 │ ├── 10640-14985 │ ├── 10641-15872 │ ├── 10642-15237 │ ├── 10643-15436 │ ├── 10644-15432 │ ├── 10645-16000 │ ├── 10646-16086 │ ├── 10647-15996 │ ├── 10648-15866 │ ├── 10649-15453 │ ├── 10650-16121 │ ├── 10651-15744 │ ├── 10652-15992 │ ├── 10653-15977 │ ├── 10654-15224 │ ├── 10655-15571 │ ├── 10656-15425 │ ├── 10657-15467 │ ├── 10658-15892 │ ├── 10659-15404 │ ├── 10660-15615 │ ├── 10661-15770 │ ├── 10662-16140 │ ├── 10663-15552 │ ├── 10664-15420 │ ├── 10665-15699 │ ├── 10666-15599 │ ├── 10667-15631 │ ├── 10668-16030 │ ├── 10669-15182 │ ├── 10670-14982 │ ├── 10671-15464 │ ├── 10672-15497 │ ├── 10673-15647 │ ├── 10674-15882 │ ├── 10675-16035 │ ├── 10676-15316 │ ├── 10677-15988 │ ├── 10678-16089 │ ├── 10679-15932 │ ├── 10680-15173 │ ├── 10681-16028 │ ├── 10682-15984 │ ├── 10683-16143 │ ├── 10684-15827 │ ├── 10685-15688 │ ├── 10686-15412 │ ├── 10687-15179 │ ├── 10688-15339 │ ├── 10689-15427 │ ├── 10690-15926 │ ├── 10691-16137 │ ├── 10692-16009 │ ├── 10693-16127 │ ├── 10694-15678 │ ├── 10695-15677 │ ├── 10696-15764 │ ├── 10697-15218 │ ├── 10698-15922 │ ├── 10699-15603 │ ├── 10700-16036 │ ├── 10701-15172 │ ├── 10702-15781 │ ├── 10703-15302 │ ├── 10704-15848 │ ├── 10705-15000 │ ├── 10706-15239 │ ├── 10707-15446 │ ├── 10708-15668 │ ├── 10709-15353 │ ├── 10710-15219 │ ├── 10711-15262 │ ├── 10712-15981 │ ├── 10713-15847 │ ├── 10714-15804 │ ├── 10715-15530 │ ├── 10716-15858 │ ├── 10717-15478 │ ├── 10718-15524 │ ├── 10719-15503 │ ├── 10720-15803 │ ├── 10721-15969 │ ├── 10722-15912 │ ├── 10723-15763 │ ├── 10724-14994 │ ├── 10725-15881 │ ├── 10726-15325 │ ├── 10727-16042 │ ├── 10728-15903 │ ├── 10729-16006 │ ├── 10730-15185 │ ├── 10731-15527 │ ├── 10732-16039 │ ├── 10733-16005 │ ├── 10734-15372 │ ├── 10735-15507 │ ├── 10736-15388 │ ├── 10737-15260 │ ├── 10738-15334 │ ├── 10739-15820 │ ├── 10740-15205 │ ├── 10741-16145 │ ├── 10742-15459 │ ├── 10743-15576 │ ├── 10744-15347 │ ├── 10745-15856 │ ├── 10746-15923 │ ├── 10747-15397 │ ├── 10748-16129 │ ├── 10749-15650 │ ├── 10750-15231 │ ├── 10751-15382 │ ├── 10752-15434 │ ├── 10753-15291 │ ├── 10754-16066 │ ├── 10755-15614 │ ├── 10756-15716 │ ├── 10757-15526 │ ├── 10758-16033 │ ├── 10759-15700 │ ├── 10760-15226 │ ├── 10761-15729 │ ├── 10762-15850 │ ├── 10763-15735 │ ├── 10764-15416 │ ├── 10765-15490 │ ├── 10766-15788 │ ├── 10767-15875 │ ├── 10768-15354 │ ├── 10769-15995 │ ├── 10770-15349 │ ├── 10771-15987 │ ├── 10772-16059 │ ├── 10773-16151 │ ├── 10774-15176 │ ├── 10775-16079 │ ├── 10776-15918 │ ├── 10777-15701 │ ├── 10778-15362 │ ├── 10779-15320 │ ├── 10780-15280 │ ├── 10781-15440 │ ├── 10782-15384 │ ├── 10783-15938 │ ├── 10784-15417 │ ├── 10785-15414 │ ├── 10786-16004 │ ├── 10787-15739 │ ├── 10788-16123 │ ├── 10789-15419 │ ├── 10790-15572 │ ├── 10791-14986 │ ├── 10792-15687 │ ├── 10793-15702 │ ├── 10794-16057 │ ├── 10795-16050 │ ├── 10796-15483 │ ├── 10797-15330 │ ├── 10798-15620 │ ├── 10799-15660 │ ├── 10800-15742 │ ├── 10801-15718 │ ├── 10802-15451 │ ├── 10803-16054 │ ├── 10804-14995 │ ├── 10805-15240 │ ├── 10806-15574 │ ├── 10807-15235 │ ├── 10808-15481 │ ├── 10809-16065 │ ├── 10810-15450 │ ├── 10811-15963 │ ├── 10812-15931 │ ├── 10813-16058 │ ├── 10814-15563 │ ├── 10815-15821 │ ├── 10816-15533 │ ├── 10817-15536 │ ├── 10818-15274 │ ├── 10819-16024 │ ├── 10820-14991 │ ├── 10821-15794 │ ├── 10822-15610 │ ├── 10823-14831 │ ├── 10824-15511 │ ├── 10825-15649 │ ├── 10826-15978 │ ├── 10827-15465 │ ├── 10828-15950 │ ├── 10829-15455 │ ├── 10830-15598 │ ├── 10831-15423 │ ├── 10832-15202 │ ├── 10833-15352 │ ├── 10834-15644 │ ├── 10835-15435 │ ├── 10836-16023 │ ├── 10837-16044 │ ├── 10838-15196 │ ├── 10839-15670 │ ├── 10840-15811 │ ├── 10841-15998 │ ├── 10842-15925 │ ├── 10843-15521 │ ├── 10844-15964 │ ├── 10845-15974 │ ├── 10846-15456 │ ├── 10847-15371 │ ├── 10848-15486 │ ├── 10849-15399 │ ├── 10850-15560 │ ├── 10851-15719 │ ├── 10852-15402 │ ├── 10853-15398 │ ├── 10854-16045 │ ├── 10855-15669 │ ├── 10856-15947 │ ├── 10857-15551 │ ├── 10858-15865 │ ├── 10859-14147 │ ├── 10860-15900 │ ├── 10861-16120 │ ├── 10862-15653 │ ├── 10863-15588 │ ├── 10864-16165 │ ├── 10865-15249 │ ├── 10866-15577 │ ├── 10867-15547 │ ├── 10868-16077 │ ├── 10869-15288 │ ├── 10870-15715 │ ├── 10871-15965 │ ├── 10872-15549 │ ├── 10873-15392 │ ├── 10874-15368 │ ├── 10875-15833 │ ├── 10876-15874 │ ├── 10877-15736 │ ├── 10878-15730 │ ├── 10879-15873 │ ├── 10880-15508 │ ├── 10881-15774 │ ├── 10882-15381 │ ├── 10883-15181 │ ├── 10884-15601 │ ├── 10885-15639 │ ├── 10886-15635 │ ├── 10887-15407 │ ├── 10888-15289 │ ├── 10889-15941 │ ├── 10890-15232 │ ├── 10891-15253 │ ├── 10892-16085 │ ├── 10893-15951 │ ├── 10894-15462 │ ├── 10895-15189 │ ├── 10896-16010 │ ├── 10897-15733 │ ├── 10898-15885 │ ├── 10899-15390 │ ├── 10900-15580 │ ├── 10901-15962 │ ├── 10902-15270 │ ├── 10903-15516 │ ├── 10904-15714 │ ├── 10905-15617 │ ├── 10906-15553 │ ├── 10907-15175 │ ├── 10908-15174 │ ├── 10909-15897 │ ├── 10910-15828 │ ├── 10911-16069 │ ├── 10912-15703 │ ├── 10913-15674 │ ├── 10914-15799 │ ├── 10915-14989 │ ├── 10916-16011 │ ├── 10917-15879 │ ├── 10918-15252 │ ├── 10919-16142 │ ├── 10920-15443 │ ├── 10921-15939 │ ├── 10922-15745 │ ├── 10923-15934 │ ├── 10924-15768 │ ├── 10925-15834 │ ├── 10926-16352 │ ├── 10927-15646 │ ├── 10928-15581 │ ├── 10929-15625 │ ├── 10930-15806 │ ├── 10931-15634 │ ├── 10932-15789 │ ├── 10933-15554 │ ├── 10934-15221 │ ├── 10935-15539 │ ├── 10936-15361 │ ├── 10937-15343 │ ├── 10938-15664 │ ├── 10939-15199 │ ├── 10940-16084 │ ├── 10941-15973 │ ├── 10942-15757 │ ├── 10943-15535 │ ├── 10944-15976 │ ├── 10945-15215 │ ├── 10946-15491 │ ├── 10947-15542 │ ├── 10948-16031 │ ├── 10949-15365 │ ├── 10950-15929 │ ├── 10951-15706 │ ├── 10952-15800 │ ├── 10953-15579 │ ├── 10954-16128 │ ├── 10955-15784 │ ├── 10956-15637 │ ├── 10957-15807 │ ├── 10958-15930 │ ├── 10959-15546 │ ├── 10960-15485 │ ├── 10961-15400 │ ├── 10962-15345 │ ├── 10963-15449 │ ├── 10964-15888 │ ├── 10965-15421 │ ├── 10966-15725 │ ├── 10967-16074 │ ├── 10968-16017 │ ├── 10969-15672 │ ├── 10970-15940 │ ├── 10971-15913 │ ├── 10972-15777 │ ├── 10973-15711 │ ├── 10974-16105 │ ├── 10975-15661 │ ├── 10976-15271 │ ├── 10977-15945 │ ├── 10978-15837 │ ├── 10979-15741 │ ├── 10980-15358 │ ├── 10981-16355 │ ├── 10982-15338 │ ├── 10983-15282 │ ├── 10984-15997 │ ├── 10985-15989 │ ├── 10986-15517 │ ├── 10987-15824 │ ├── 10988-16080 │ ├── 10989-15795 │ ├── 10990-16354 │ ├── 10991-15246 │ ├── 10992-15859 │ ├── 10993-15755 │ ├── 10994-15697 │ ├── 10995-15441 │ ├── 10996-15652 │ ├── 10997-15210 │ ├── 10998-15216 │ ├── 10999-15626 │ ├── 11000-15887 │ ├── 11001-16022 │ ├── 11002-15300 │ ├── 11003-15805 │ ├── 11004-15783 │ ├── 11005-15209 │ ├── 11006-15541 │ ├── 11007-15878 │ ├── 11008-15409 │ ├── 11009-15194 │ ├── 11010-15403 │ ├── 11011-15698 │ ├── 11012-15290 │ ├── 11013-15683 │ ├── 11014-15570 │ ├── 11015-15814 │ ├── 11016-15948 │ ├── 11017-15812 │ ├── 11018-16348 │ ├── 11019-15426 │ ├── 11020-15666 │ ├── 11021-15623 │ ├── 11022-16076 │ ├── 11023-15259 │ ├── 11024-15340 │ ├── 11025-15476 │ ├── 11026-15905 │ ├── 11027-15691 │ ├── 11028-15374 │ ├── 11029-16132 │ ├── 11030-16002 │ ├── 11031-16032 │ ├── 11032-15213 │ ├── 11033-16038 │ ├── 11034-15665 │ ├── 11035-15986 │ ├── 11036-16025 │ ├── 11037-15411 │ ├── 11038-16060 │ ├── 11039-15655 │ ├── 11040-15193 │ ├── 11041-15543 │ ├── 11042-15333 │ ├── 11043-15871 │ ├── 11044-15322 │ ├── 11045-15188 │ ├── 11046-15375 │ ├── 11047-15813 │ ├── 11048-15292 │ ├── 11049-15766 │ ├── 11050-15366 │ ├── 11051-15619 │ ├── 11052-15305 │ ├── 11053-15785 │ ├── 11054-15713 │ ├── 11055-15906 │ ├── 11056-15284 │ ├── 11057-15370 │ ├── 11058-15944 │ ├── 11059-15895 │ ├── 11060-15405 │ ├── 11061-15509 │ ├── 11062-15772 │ ├── 11063-15822 │ ├── 11064-15278 │ ├── 11065-15592 │ ├── 11066-15318 │ ├── 11067-15728 │ ├── 11068-15337 │ ├── 11069-15329 │ ├── 11070-16070 │ ├── 11071-15544 │ ├── 11072-15238 │ ├── 11073-15538 │ ├── 11074-16136 │ ├── 11075-15605 │ ├── 11076-15840 │ ├── 11077-15994 │ ├── 11078-15589 │ ├── 11079-15214 │ ├── 11080-15896 │ ├── 11081-15212 │ ├── 11082-15575 │ ├── 11083-15379 │ ├── 11084-16081 │ ├── 11085-15505 │ ├── 11086-15662 │ ├── 11087-16051 │ ├── 11088-15901 │ ├── 11089-15609 │ ├── 11090-15437 │ ├── 11091-15642 │ ├── 11092-15826 │ ├── 11093-16067 │ ├── 11094-16126 │ ├── 11095-15477 │ ├── 11096-15431 │ ├── 11097-16048 │ ├── 11098-15658 │ ├── 11099-15303 │ ├── 11100-15816 │ ├── 11101-15245 │ ├── 11102-15893 │ ├── 11103-15823 │ ├── 11104-15819 │ ├── 11105-15529 │ ├── 11106-15737 │ ├── 11107-15311 │ ├── 11108-15734 │ ├── 11109-16344 │ ├── 11110-15990 │ ├── 11111-15241 │ ├── 11112-15843 │ ├── 11113-15484 │ ├── 11114-15386 │ ├── 11115-15545 │ ├── 11116-15657 │ ├── 11117-15684 │ ├── 11118-16144 │ ├── 11119-15266 │ ├── 11120-15750 │ ├── 11121-15309 │ ├── 11122-15582 │ ├── 11123-15727 │ ├── 11124-15458 │ ├── 11125-15778 │ ├── 11126-14990 │ ├── 11127-16353 │ ├── 11128-15686 │ ├── 11129-15773 │ ├── 11130-15936 │ ├── 11131-15556 │ ├── 11132-15532 │ ├── 11133-15600 │ ├── 11134-15229 │ ├── 11135-15960 │ ├── 11136-15621 │ ├── 11137-15667 │ ├── 11138-15225 │ ├── 11139-15171 │ ├── 11140-15775 │ ├── 11141-15296 │ ├── 11142-15410 │ ├── 11143-15861 │ ├── 11144-15959 │ ├── 11145-16102 │ ├── 11146-15624 │ ├── 11147-15709 │ ├── 11148-15418 │ ├── 11149-15908 │ ├── 11150-15272 │ ├── 11151-15350 │ ├── 11152-15915 │ ├── 11153-15796 │ ├── 11154-15438 │ ├── 11155-15983 │ ├── 11156-15952 │ ├── 11157-16012 │ ├── 11158-15867 │ ├── 11159-15251 │ ├── 11160-15567 │ ├── 11161-16347 │ ├── 11162-15234 │ ├── 11163-15469 │ ├── 11164-15797 │ ├── 11165-15780 │ ├── 11166-15782 │ ├── 11167-15514 │ ├── 11168-15612 │ ├── 11169-15902 │ ├── 11170-15786 │ ├── 11171-15857 │ ├── 11172-15809 │ ├── 11173-15223 │ ├── 11174-15756 │ ├── 11175-15690 │ ├── 11176-15321 │ ├── 11177-15993 │ ├── 11178-16016 │ ├── 11179-15550 │ ├── 11180-16020 │ ├── 11181-15396 │ ├── 11182-15748 │ ├── 11183-14998 │ ├── 11184-16068 │ ├── 11185-16138 │ ├── 11186-15369 │ ├── 11187-16019 │ ├── 11188-15673 │ ├── 11189-15910 │ ├── 11190-16141 │ ├── 11191-15846 │ ├── 11192-15355 │ ├── 11193-15475 │ ├── 11194-15870 │ ├── 11195-15877 │ ├── 11196-15638 │ ├── 11197-15335 │ ├── 11198-15263 │ ├── 11199-15569 │ ├── 11200-15707 │ ├── 11201-15461 │ ├── 11202-15869 │ ├── 11203-15656 │ ├── 11204-15654 │ ├── 11205-15724 │ ├── 11206-15281 │ ├── 11207-16007 │ ├── 11208-15439 │ ├── 11209-15001 │ ├── 11210-15743 │ ├── 11211-15310 │ ├── 11212-15982 │ ├── 11213-15710 │ ├── 11214-15501 │ ├── 11215-15676 │ ├── 11216-15301 │ ├── 11217-15512 │ ├── 11218-15726 │ ├── 11219-15632 │ ├── 11220-15935 │ ├── 11221-16061 │ ├── 11222-15921 │ ├── 11223-15264 │ ├── 11224-15831 │ ├── 11225-15504 │ ├── 11226-15466 │ ├── 11227-15314 │ ├── 11228-15855 │ ├── 11229-15681 │ ├── 11230-16034 │ ├── 11231-15971 │ ├── 11232-15583 │ ├── 11233-15496 │ ├── 11234-15760 │ ├── 11235-15920 │ ├── 11236-15480 │ ├── 11237-16117 │ ├── 11238-15315 │ ├── 11239-15771 │ ├── 11240-15953 │ ├── 11241-15860 │ ├── 11242-15852 │ ├── 11243-15376 │ ├── 11244-15261 │ ├── 11245-15573 │ ├── 11246-16001 │ ├── 11247-15326 │ ├── 11248-16037 │ ├── 11249-15693 │ ├── 11250-14996 │ ├── 11251-15595 │ ├── 11252-15255 │ ├── 11253-15845 │ ├── 11254-15286 │ ├── 11255-15285 │ ├── 11256-16134 │ ├── 11257-15641 │ ├── 11258-15943 │ ├── 11259-15561 │ ├── 11260-15675 │ ├── 11261-15894 │ ├── 11262-15236 │ ├── 11263-15513 │ ├── 11264-15883 │ ├── 11265-15520 │ ├── 11266-15651 │ ├── 11267-16345 │ ├── 11268-15463 │ ├── 11269-15295 │ ├── 11270-15346 │ ├── 11271-15442 │ ├── 11272-15344 │ ├── 11273-16133 │ ├── 11274-15862 │ ├── 11275-15401 │ ├── 11276-15611 │ ├── 11277-15265 │ ├── 11278-15732 │ ├── 11279-15367 │ ├── 11280-15500 │ ├── 11281-15891 │ ├── 11282-15277 │ ├── 11283-16359 │ ├── 11284-16078 │ ├── 11285-15607 │ ├── 11286-15394 │ ├── 11287-16003 │ ├── 11288-15566 │ ├── 11289-16075 │ ├── 11290-16358 │ ├── 11291-15488 │ ├── 11292-15909 │ ├── 11293-15506 │ ├── 11294-15689 │ ├── 11295-15596 │ ├── 11296-15991 │ ├── 11297-15587 │ ├── 11298-15680 │ ├── 11299-15980 │ ├── 11300-15293 │ ├── 11301-15342 │ ├── 11302-15942 │ ├── 11303-15187 │ ├── 11304-15844 │ ├── 11305-15817 │ ├── 11306-15679 │ ├── 11307-16062 │ ├── 11308-15602 │ ├── 11309-15630 │ ├── 11310-15312 │ ├── 11311-15190 │ ├── 11312-15769 │ ├── 11313-15002 │ ├── 11314-15890 │ ├── 11315-15492 │ ├── 11316-15227 │ ├── 11317-16148 │ ├── 11318-15429 │ ├── 11319-15568 │ ├── 11320-15413 │ ├── 11321-16021 │ ├── 11322-15758 │ ├── 11323-15564 │ ├── 11324-15591 │ ├── 11325-15283 │ ├── 11326-15853 │ ├── 11327-15408 │ ├── 11328-15555 │ ├── 11329-15961 │ ├── 11330-15383 │ ├── 11331-15562 │ ├── 11332-15914 │ ├── 11333-15759 │ ├── 11334-15791 │ ├── 11335-16008 │ ├── 11336-15740 │ ├── 11337-15957 │ ├── 11338-15195 │ ├── 11339-15444 │ ├── 11340-16064 │ ├── 11341-15470 │ ├── 11342-15999 │ ├── 11343-15712 │ ├── 11344-15269 │ ├── 11345-15351 │ ├── 11346-15356 │ ├── 11347-15889 │ ├── 11348-15907 │ ├── 11349-15380 │ ├── 11350-15178 │ ├── 11351-15636 │ ├── 11352-15830 │ ├── 11353-14988 │ ├── 11354-15616 │ ├── 11355-16118 │ ├── 11356-16147 │ ├── 11357-15876 │ ├── 11358-15360 │ ├── 11359-15184 │ ├── 11360-15835 │ ├── 11361-15406 │ ├── 11362-16015 │ ├── 11363-15754 │ ├── 11364-15256 │ ├── 11365-15523 │ ├── 11366-15790 │ ├── 11367-15722 │ ├── 11368-15815 │ ├── 11369-15904 │ ├── 11370-16124 │ ├── 11371-15487 │ ├── 11372-15348 │ ├── 11373-15233 │ ├── 11374-15746 │ ├── 11375-16014 │ ├── 11376-15949 │ ├── 11377-16047 │ ├── 11378-14984 │ ├── 11379-15445 │ ├── 11380-15985 │ ├── 11381-15308 │ ├── 11382-15761 │ ├── 11383-14999 │ ├── 11384-15452 │ ├── 11385-15898 │ ├── 11386-15629 │ ├── 11387-16029 │ ├── 11388-15841 │ ├── 11389-15792 │ ├── 11390-15474 │ ├── 11391-15191 │ ├── 11392-15557 │ ├── 11393-15708 │ ├── 11394-15203 │ ├── 11395-15731 │ ├── 11396-15753 │ ├── 11397-15242 │ ├── 11398-16092 │ ├── 11399-15222 │ ├── 11400-15387 │ ├── 11401-15363 │ ├── 11402-15279 │ ├── 11403-15590 │ ├── 11404-15460 │ ├── 11405-15540 │ ├── 11406-15391 │ ├── 11407-15230 │ ├── 11408-16083 │ ├── 11409-16013 │ ├── 11410-15518 │ ├── 11411-16149 │ ├── 11412-16152 │ ├── 11413-16150 │ ├── 11414-15177 │ ├── 11415-15498 │ ├── 11416-14992 │ ├── 11417-15377 │ ├── 11418-16049 │ ├── 11419-15415 │ ├── 11420-15645 │ ├── 11421-15494 │ ├── 11422-15519 │ ├── 11423-15389 │ ├── 11424-15489 │ ├── 11425-15479 │ ├── 11426-14987 │ ├── 11427-15313 │ ├── 11428-15608 │ ├── 11429-15723 │ ├── 11430-14993 │ ├── 11431-16130 │ ├── 11432-16053 │ ├── 11433-15917 │ ├── 11434-15169 │ ├── 11435-15531 │ ├── 11436-15659 │ ├── 11437-16071 │ ├── 11438-15273 │ ├── 11439-16052 │ ├── 11440-15275 │ ├── 11441-15200 │ ├── 11442-14997 │ ├── 11443-15838 │ ├── 11444-15559 │ ├── 11445-15243 │ ├── 11446-15217 │ ├── 11447-15839 │ ├── 11448-15331 │ ├── 11449-15721 │ ├── 11450-15585 │ ├── 11451-15692 │ ├── 11452-15967 │ ├── 11453-16357 │ ├── 11454-16146 │ ├── 11455-15454 │ ├── 11456-15749 │ ├── 11457-15832 │ ├── 11458-15495 │ ├── 11459-15966 │ ├── 11460-15307 │ ├── 11461-15685 │ ├── 11462-16131 │ ├── 11463-15933 │ ├── 11464-15695 │ ├── 11465-15323 │ ├── 11466-15317 │ ├── 11467-15836 │ ├── 11468-15510 │ ├── 11469-15254 │ ├── 11470-14832 │ ├── 11471-15704 │ ├── 11472-15003 │ ├── 11473-15899 │ ├── 11474-16139 │ ├── 11475-15954 │ ├── 11476-16018 │ ├── 11477-16125 │ ├── 11478-15257 │ ├── 11479-15694 │ ├── 11480-15613 │ ├── 11481-15956 │ ├── 11482-15180 │ ├── 11483-15299 │ ├── 11484-15211 │ ├── 11485-15201 │ ├── 11486-15787 │ ├── 11487-15968 │ ├── 11488-15298 │ ├── 11489-15622 │ ├── 11490-15880 │ ├── 11491-15471 │ ├── 11492-15537 │ ├── 11493-15393 │ ├── 11494-15868 │ ├── 11495-15250 │ ├── 11496-15565 │ ├── 11497-15204 │ ├── 11498-15767 │ ├── 11499-15197 │ ├── 11500-15304 │ ├── 11501-15765 │ ├── 11502-15818 │ ├── 11503-15808 │ ├── 11504-15306 │ ├── 11505-15958 │ ├── 11506-16073 │ ├── 11507-15751 │ ├── 11508-15928 │ ├── 11509-15433 │ ├── 11510-15720 │ ├── 11511-15970 │ ├── 11512-15328 │ ├── 11513-15762 │ ├── 11514-15422 │ ├── 11515-16088 │ ├── 11516-15525 │ ├── 11517-15648 │ ├── 11518-16041 │ ├── 11519-16082 │ ├── 11520-16056 │ ├── 11521-15247 │ ├── 11522-15578 │ ├── 11523-15228 │ ├── 11524-15522 │ ├── 11525-15825 │ ├── 11526-15499 │ ├── 11527-15916 │ ├── 11528-15336 │ ├── 11529-15801 │ ├── 11530-16119 │ ├── 11531-15447 │ ├── 11532-16135 │ ├── 11533-15258 │ ├── 11534-16087 │ ├── 11535-15206 │ ├── 11536-15373 │ ├── 11537-15946 │ ├── 11538-15851 │ ├── 11539-15604 │ ├── 11540-15324 │ ├── 11541-15628 │ ├── 11542-15186 │ ├── 11543-16055 │ ├── 11544-15738 │ ├── 11545-15276 │ ├── 11546-15705 │ ├── 11547-15586 │ ├── 11548-15297 │ ├── 11549-15972 │ ├── 11550-15717 │ ├── 11551-15854 │ ├── 11552-15829 │ ├── 11553-15682 │ ├── 11554-16043 │ ├── 11555-15696 │ ├── 11556-15482 │ ├── 11557-15864 │ ├── 11558-15267 │ ├── 11559-15633 │ ├── 11560-15798 │ ├── 11561-15640 │ ├── 11562-15493 │ ├── 11563-15627 │ ├── 11564-16026 │ ├── 11565-15842 │ ├── 11566-15378 │ ├── 11567-15863 │ ├── 11568-15183 │ ├── 11569-15779 │ ├── 11570-15468 │ ├── 11571-15955 │ ├── 11572-16063 │ ├── 11573-15593 │ ├── 11574-15663 │ ├── 11575-15534 │ ├── 11576-15594 │ ├── 11577-15802 │ ├── 11578-16351 │ ├── 11579-15198 │ ├── 11580-15597 │ ├── 11581-15919 │ ├── 11582-15244 │ ├── 11583-15424 │ ├── 11584-15671 │ ├── 11585-15341 │ ├── 11586-15192 │ ├── 11587-15793 │ ├── 11588-15752 │ ├── 11589-15357 │ ├── 11590-15359 │ ├── 11591-15937 │ ├── 11592-15515 │ ├── 11593-16040 │ ├── 11594-15884 │ ├── 11595-15448 │ ├── 11596-15618 │ ├── 11597-15927 │ ├── 11598-15268 │ ├── 11599-15248 │ ├── 11600-15911 │ ├── 11601-15747 │ ├── 11602-15168 │ ├── 11603-16101 │ ├── 11604-15924 │ ├── 11605-15327 │ ├── 11606-15548 │ ├── 11607-15810 │ ├── 11608-15606 │ ├── 11609-15395 │ ├── 11610-15332 │ ├── 11611-15502 │ ├── 11612-16046 │ ├── 11613-15220 │ ├── 11614-15170 │ ├── 11615-16356 │ ├── 11616-15294 │ ├── 11617-16279 │ ├── 11618-14983 │ └── 11619-15849 │ ├── sci.electronics │ ├── 11620-54278 │ ├── 11621-54137 │ ├── 11622-53978 │ ├── 11623-52749 │ ├── 11624-52818 │ ├── 11625-54271 │ ├── 11626-53553 │ ├── 11627-54064 │ ├── 11628-53677 │ ├── 11629-53693 │ ├── 11630-53987 │ ├── 11631-54106 │ ├── 11632-54244 │ ├── 11633-53671 │ ├── 11634-53640 │ ├── 11635-53517 │ ├── 11636-53663 │ ├── 11637-52752 │ ├── 11638-53590 │ ├── 11639-54308 │ ├── 11640-53593 │ ├── 11641-54037 │ ├── 11642-53539 │ ├── 11643-54177 │ ├── 11644-53881 │ ├── 11645-54489 │ ├── 11646-53943 │ ├── 11647-54235 │ ├── 11648-53953 │ ├── 11649-53627 │ ├── 11650-53913 │ ├── 11651-54483 │ ├── 11652-53958 │ ├── 11653-54249 │ ├── 11654-53867 │ ├── 11655-52748 │ ├── 11656-53701 │ ├── 11657-54296 │ ├── 11658-54056 │ ├── 11659-53779 │ ├── 11660-54314 │ ├── 11661-53993 │ ├── 11662-54001 │ ├── 11663-54036 │ ├── 11664-53692 │ ├── 11665-53651 │ ├── 11666-53902 │ ├── 11667-53739 │ ├── 11668-53566 │ ├── 11669-54343 │ ├── 11670-53731 │ ├── 11671-53980 │ ├── 11672-54243 │ ├── 11673-54026 │ ├── 11674-54131 │ ├── 11675-54159 │ ├── 11676-54069 │ ├── 11677-54239 │ ├── 11678-53521 │ ├── 11679-53530 │ ├── 11680-53968 │ ├── 11681-53629 │ ├── 11682-54252 │ ├── 11683-53947 │ ├── 11684-54170 │ ├── 11685-54328 │ ├── 11686-53687 │ ├── 11687-53659 │ ├── 11688-53554 │ ├── 11689-53770 │ ├── 11690-53513 │ ├── 11691-53616 │ ├── 11692-53509 │ ├── 11693-53935 │ ├── 11694-54043 │ ├── 11695-53633 │ ├── 11696-52817 │ ├── 11697-54479 │ ├── 11698-54301 │ ├── 11699-53729 │ ├── 11700-53946 │ ├── 11701-54095 │ ├── 11702-53945 │ ├── 11703-53926 │ ├── 11704-53812 │ ├── 11705-54091 │ ├── 11706-52813 │ ├── 11707-54118 │ ├── 11708-54247 │ ├── 11709-54109 │ ├── 11710-53865 │ ├── 11711-54474 │ ├── 11712-53988 │ ├── 11713-53866 │ ├── 11714-53732 │ ├── 11715-53707 │ ├── 11716-52725 │ ├── 11717-54317 │ ├── 11718-53807 │ ├── 11719-53538 │ ├── 11720-54146 │ ├── 11721-54256 │ ├── 11722-52830 │ ├── 11723-53907 │ ├── 11724-54130 │ ├── 11725-54019 │ ├── 11726-53854 │ ├── 11727-54263 │ ├── 11728-53717 │ ├── 11729-53555 │ ├── 11730-54098 │ ├── 11731-53603 │ ├── 11732-54210 │ ├── 11733-54193 │ ├── 11734-53712 │ ├── 11735-54323 │ ├── 11736-54257 │ ├── 11737-53688 │ ├── 11738-54236 │ ├── 11739-53818 │ ├── 11740-53666 │ ├── 11741-53762 │ ├── 11742-53514 │ ├── 11743-54222 │ ├── 11744-53952 │ ├── 11745-54264 │ ├── 11746-53591 │ ├── 11747-52763 │ ├── 11748-53821 │ ├── 11749-54318 │ ├── 11750-53662 │ ├── 11751-53628 │ ├── 11752-53572 │ ├── 11753-53985 │ ├── 11754-53668 │ ├── 11755-53819 │ ├── 11756-52773 │ ├── 11757-53877 │ ├── 11758-54203 │ ├── 11759-53706 │ ├── 11760-52774 │ ├── 11761-54029 │ ├── 11762-53618 │ ├── 11763-53904 │ ├── 11764-54493 │ ├── 11765-54136 │ ├── 11766-54009 │ ├── 11767-53726 │ ├── 11768-53847 │ ├── 11769-53626 │ ├── 11770-54171 │ ├── 11771-53681 │ ├── 11772-52762 │ ├── 11773-54228 │ ├── 11774-54204 │ ├── 11775-54156 │ ├── 11776-54246 │ ├── 11777-54070 │ ├── 11778-54076 │ ├── 11779-53820 │ ├── 11780-53971 │ ├── 11781-52746 │ ├── 11782-54490 │ ├── 11783-53607 │ ├── 11784-52778 │ ├── 11785-53516 │ ├── 11786-54300 │ ├── 11787-54248 │ ├── 11788-53831 │ ├── 11789-53785 │ ├── 11790-53845 │ ├── 11791-54240 │ ├── 11792-52751 │ ├── 11793-54187 │ ├── 11794-54100 │ ├── 11795-52722 │ ├── 11796-53767 │ ├── 11797-54261 │ ├── 11798-53728 │ ├── 11799-52726 │ ├── 11800-54298 │ ├── 11801-54268 │ ├── 11802-54186 │ ├── 11803-54487 │ ├── 11804-54020 │ ├── 11805-53841 │ ├── 11806-54150 │ ├── 11807-52790 │ ├── 11808-53876 │ ├── 11809-53672 │ ├── 11810-52756 │ ├── 11811-54179 │ ├── 11812-53850 │ ├── 11813-54152 │ ├── 11814-54032 │ ├── 11815-52807 │ ├── 11816-54074 │ ├── 11817-52806 │ ├── 11818-53857 │ ├── 11819-52768 │ ├── 11820-52750 │ ├── 11821-53860 │ ├── 11822-52799 │ ├── 11823-54014 │ ├── 11824-54348 │ ├── 11825-53786 │ ├── 11826-54341 │ ├── 11827-53689 │ ├── 11828-53783 │ ├── 11829-53609 │ ├── 11830-53604 │ ├── 11831-54025 │ ├── 11832-53999 │ ├── 11833-53788 │ ├── 11834-54321 │ ├── 11835-52788 │ ├── 11836-53997 │ ├── 11837-53909 │ ├── 11838-53630 │ ├── 11839-54116 │ ├── 11840-53674 │ ├── 11841-53698 │ ├── 11842-54315 │ ├── 11843-53880 │ ├── 11844-53543 │ ├── 11845-54282 │ ├── 11846-53556 │ ├── 11847-54144 │ ├── 11848-54311 │ ├── 11849-53565 │ ├── 11850-54148 │ ├── 11851-54087 │ ├── 11852-54293 │ ├── 11853-52755 │ ├── 11854-53833 │ ├── 11855-54163 │ ├── 11856-54151 │ ├── 11857-53765 │ ├── 11858-53780 │ ├── 11859-54336 │ ├── 11860-52805 │ ├── 11861-54286 │ ├── 11862-53653 │ ├── 11863-53763 │ ├── 11864-53802 │ ├── 11865-54027 │ ├── 11866-54237 │ ├── 11867-53856 │ ├── 11868-53836 │ ├── 11869-52786 │ ├── 11870-53679 │ ├── 11871-54047 │ ├── 11872-53740 │ ├── 11873-53685 │ ├── 11874-52804 │ ├── 11875-52814 │ ├── 11876-53656 │ ├── 11877-54503 │ ├── 11878-54061 │ ├── 11879-54288 │ ├── 11880-54292 │ ├── 11881-54162 │ ├── 11882-53564 │ ├── 11883-54325 │ ├── 11884-53760 │ ├── 11885-54312 │ ├── 11886-53523 │ ├── 11887-52823 │ ├── 11888-53676 │ ├── 11889-54481 │ ├── 11890-54274 │ ├── 11891-54003 │ ├── 11892-54006 │ ├── 11893-53775 │ ├── 11894-53735 │ ├── 11895-53810 │ ├── 11896-52446 │ ├── 11897-53128 │ ├── 11898-54154 │ ├── 11899-53704 │ ├── 11900-54111 │ ├── 11901-53972 │ ├── 11902-54322 │ ├── 11903-53900 │ ├── 11904-54217 │ ├── 11905-54166 │ ├── 11906-53748 │ ├── 11907-53742 │ ├── 11908-54051 │ ├── 11909-53645 │ ├── 11910-53798 │ ├── 11911-54031 │ ├── 11912-54176 │ ├── 11913-54078 │ ├── 11914-53716 │ ├── 11915-53649 │ ├── 11916-54234 │ ├── 11917-53537 │ ├── 11918-53878 │ ├── 11919-53795 │ ├── 11920-54283 │ ├── 11921-53725 │ ├── 11922-52776 │ ├── 11923-54352 │ ├── 11924-54071 │ ├── 11925-53920 │ ├── 11926-53806 │ ├── 11927-53834 │ ├── 11928-53835 │ ├── 11929-54178 │ ├── 11930-53884 │ ├── 11931-52787 │ ├── 11932-53536 │ ├── 11933-53829 │ ├── 11934-54270 │ ├── 11935-53777 │ ├── 11936-53542 │ ├── 11937-53637 │ ├── 11938-54017 │ ├── 11939-54063 │ ├── 11940-52759 │ ├── 11941-53570 │ ├── 11942-53691 │ ├── 11943-54075 │ ├── 11944-54119 │ ├── 11945-53613 │ ├── 11946-54316 │ ├── 11947-53939 │ ├── 11948-53697 │ ├── 11949-53623 │ ├── 11950-54132 │ ├── 11951-54114 │ ├── 11952-54337 │ ├── 11953-54216 │ ├── 11954-54199 │ ├── 11955-53797 │ ├── 11956-52789 │ ├── 11957-52736 │ ├── 11958-53665 │ ├── 11959-53595 │ ├── 11960-52815 │ ├── 11961-53643 │ ├── 11962-53686 │ ├── 11963-54143 │ ├── 11964-54477 │ ├── 11965-53720 │ ├── 11966-54153 │ ├── 11967-52724 │ ├── 11968-53897 │ ├── 11969-54072 │ ├── 11970-53540 │ ├── 11971-54164 │ ├── 11972-53657 │ ├── 11973-53874 │ ├── 11974-53583 │ ├── 11975-54093 │ ├── 11976-53998 │ ├── 11977-53524 │ ├── 11978-53855 │ ├── 11979-52718 │ ├── 11980-53778 │ ├── 11981-54140 │ ├── 11982-54041 │ ├── 11983-53584 │ ├── 11984-54229 │ ├── 11985-52772 │ ├── 11986-53871 │ ├── 11987-54084 │ ├── 11988-54134 │ ├── 11989-52770 │ ├── 11990-53804 │ ├── 11991-53864 │ ├── 11992-54251 │ ├── 11993-54128 │ ├── 11994-54290 │ ├── 11995-53511 │ ├── 11996-54250 │ ├── 11997-53989 │ ├── 11998-53621 │ ├── 11999-53883 │ ├── 12000-53680 │ ├── 12001-53892 │ ├── 12002-54502 │ ├── 12003-53574 │ ├── 12004-53528 │ ├── 12005-53577 │ ├── 12006-53974 │ ├── 12007-53764 │ ├── 12008-53625 │ ├── 12009-53664 │ ├── 12010-54033 │ ├── 12011-54039 │ ├── 12012-53849 │ ├── 12013-53882 │ ├── 12014-54269 │ ├── 12015-53791 │ ├── 12016-54090 │ ├── 12017-53635 │ ├── 12018-53632 │ ├── 12019-53949 │ ├── 12020-53598 │ ├── 12021-54335 │ ├── 12022-53934 │ ├── 12023-54200 │ ├── 12024-54345 │ ├── 12025-53610 │ ├── 12026-54310 │ ├── 12027-53956 │ ├── 12028-53903 │ ├── 12029-53636 │ ├── 12030-53792 │ ├── 12031-54285 │ ├── 12032-52808 │ ├── 12033-54280 │ ├── 12034-54073 │ ├── 12035-53887 │ ├── 12036-53796 │ ├── 12037-52771 │ ├── 12038-53896 │ ├── 12039-53872 │ ├── 12040-54015 │ ├── 12041-53846 │ ├── 12042-53948 │ ├── 12043-53879 │ ├── 12044-53532 │ ├── 12045-54350 │ ├── 12046-52780 │ ├── 12047-53612 │ ├── 12048-54260 │ ├── 12049-53955 │ ├── 12050-53573 │ ├── 12051-53696 │ ├── 12052-54189 │ ├── 12053-54082 │ ├── 12054-53875 │ ├── 12055-54102 │ ├── 12056-52794 │ ├── 12057-54018 │ ├── 12058-54055 │ ├── 12059-52812 │ ├── 12060-54077 │ ├── 12061-54346 │ ├── 12062-54498 │ ├── 12063-53622 │ ├── 12064-53575 │ ├── 12065-53549 │ ├── 12066-53977 │ ├── 12067-53894 │ ├── 12068-53670 │ ├── 12069-53824 │ ├── 12070-53969 │ ├── 12071-53996 │ ├── 12072-53699 │ ├── 12073-52717 │ ├── 12074-54092 │ ├── 12075-52775 │ ├── 12076-53675 │ ├── 12077-53667 │ ├── 12078-53597 │ ├── 12079-54496 │ ├── 12080-52761 │ ├── 12081-53890 │ ├── 12082-53647 │ ├── 12083-54245 │ ├── 12084-53921 │ ├── 12085-54215 │ ├── 12086-52816 │ ├── 12087-54053 │ ├── 12088-53827 │ ├── 12089-54044 │ ├── 12090-53711 │ ├── 12091-53736 │ ├── 12092-53715 │ ├── 12093-52747 │ ├── 12094-53535 │ ├── 12095-53771 │ ├── 12096-53534 │ ├── 12097-53673 │ ├── 12098-52798 │ ├── 12099-54324 │ ├── 12100-54231 │ ├── 12101-53505 │ ├── 12102-53562 │ ├── 12103-53709 │ ├── 12104-54184 │ ├── 12105-54205 │ ├── 12106-53975 │ ├── 12107-54172 │ ├── 12108-54013 │ ├── 12109-53594 │ ├── 12110-54060 │ ├── 12111-54294 │ ├── 12112-53793 │ ├── 12113-53561 │ ├── 12114-53702 │ ├── 12115-53722 │ ├── 12116-53811 │ ├── 12117-52757 │ ├── 12118-54480 │ ├── 12119-53596 │ ├── 12120-54024 │ ├── 12121-53967 │ ├── 12122-54224 │ ├── 12123-53581 │ ├── 12124-54342 │ ├── 12125-54272 │ ├── 12126-53520 │ ├── 12127-53723 │ ├── 12128-52737 │ ├── 12129-53638 │ ├── 12130-53567 │ ├── 12131-53713 │ ├── 12132-54142 │ ├── 12133-54030 │ ├── 12134-53745 │ ├── 12135-52734 │ ├── 12136-53512 │ ├── 12137-54307 │ ├── 12138-54108 │ ├── 12139-54241 │ ├── 12140-53683 │ ├── 12141-53961 │ ├── 12142-53526 │ ├── 12143-54052 │ ├── 12144-53750 │ ├── 12145-53970 │ ├── 12146-53682 │ ├── 12147-52828 │ ├── 12148-53954 │ ├── 12149-53773 │ ├── 12150-53784 │ ├── 12151-53684 │ ├── 12152-53912 │ ├── 12153-54349 │ ├── 12154-53794 │ ├── 12155-53761 │ ├── 12156-54173 │ ├── 12157-53826 │ ├── 12158-53578 │ ├── 12159-54185 │ ├── 12160-53757 │ ├── 12161-54484 │ ├── 12162-53624 │ ├── 12163-53915 │ ├── 12164-54096 │ ├── 12165-54331 │ ├── 12166-53901 │ ├── 12167-54167 │ ├── 12168-52811 │ ├── 12169-54297 │ ├── 12170-53527 │ ├── 12171-54306 │ ├── 12172-53634 │ ├── 12173-54022 │ ├── 12174-54028 │ ├── 12175-54353 │ ├── 12176-53585 │ ├── 12177-52825 │ ├── 12178-54202 │ ├── 12179-54133 │ ├── 12180-54180 │ ├── 12181-54340 │ ├── 12182-53654 │ ├── 12183-54238 │ ├── 12184-54105 │ ├── 12185-53861 │ ├── 12186-53940 │ ├── 12187-53789 │ ├── 12188-54065 │ ├── 12189-53803 │ ├── 12190-54303 │ ├── 12191-54232 │ ├── 12192-53800 │ ├── 12193-53808 │ ├── 12194-54067 │ ├── 12195-52795 │ ├── 12196-52743 │ ├── 12197-53600 │ ├── 12198-53922 │ ├── 12199-53741 │ ├── 12200-53705 │ ├── 12201-53619 │ ├── 12202-54112 │ ├── 12203-54305 │ ├── 12204-54110 │ ├── 12205-53893 │ ├── 12206-53976 │ ├── 12207-53822 │ ├── 12208-54088 │ ├── 12209-53714 │ ├── 12210-52765 │ ├── 12211-53504 │ ├── 12212-54332 │ ├── 12213-53828 │ ├── 12214-54351 │ ├── 12215-52827 │ ├── 12216-54198 │ ├── 12217-53862 │ ├── 12218-53669 │ ├── 12219-53965 │ ├── 12220-53563 │ ├── 12221-53825 │ ├── 12222-54101 │ ├── 12223-53839 │ ├── 12224-54347 │ ├── 12225-53814 │ ├── 12226-53560 │ ├── 12227-54491 │ ├── 12228-53708 │ ├── 12229-52779 │ ├── 12230-54227 │ ├── 12231-54299 │ ├── 12232-54226 │ ├── 12233-53914 │ ├── 12234-52760 │ ├── 12235-53545 │ ├── 12236-52820 │ ├── 12237-54326 │ ├── 12238-53546 │ ├── 12239-52809 │ ├── 12240-53769 │ ├── 12241-53695 │ ├── 12242-53805 │ ├── 12243-52792 │ ├── 12244-54265 │ ├── 12245-53917 │ ├── 12246-52785 │ ├── 12247-53982 │ ├── 12248-52739 │ ├── 12249-54259 │ ├── 12250-54281 │ ├── 12251-54107 │ ├── 12252-53700 │ ├── 12253-54333 │ ├── 12254-53721 │ ├── 12255-52777 │ ├── 12256-53751 │ ├── 12257-52745 │ ├── 12258-53502 │ ├── 12259-53873 │ ├── 12260-54097 │ ├── 12261-53547 │ ├── 12262-53813 │ ├── 12263-53852 │ ├── 12264-54147 │ ├── 12265-53558 │ ├── 12266-52824 │ ├── 12267-53931 │ ├── 12268-54012 │ ├── 12269-54046 │ ├── 12270-54267 │ ├── 12271-53768 │ ├── 12272-54040 │ ├── 12273-53508 │ ├── 12274-54183 │ ├── 12275-53738 │ ├── 12276-53747 │ ├── 12277-54287 │ ├── 12278-53888 │ ├── 12279-54207 │ ├── 12280-53992 │ ├── 12281-54126 │ ├── 12282-54094 │ ├── 12283-54104 │ ├── 12284-52733 │ ├── 12285-53587 │ ├── 12286-54478 │ ├── 12287-54218 │ ├── 12288-54499 │ ├── 12289-53639 │ ├── 12290-53776 │ ├── 12291-53541 │ ├── 12292-52769 │ ├── 12293-53973 │ ├── 12294-53601 │ ├── 12295-52791 │ ├── 12296-54138 │ ├── 12297-53774 │ ├── 12298-53858 │ ├── 12299-53840 │ ├── 12300-53648 │ ├── 12301-54289 │ ├── 12302-53994 │ ├── 12303-54486 │ ├── 12304-52801 │ ├── 12305-54141 │ ├── 12306-54002 │ ├── 12307-54016 │ ├── 12308-54103 │ ├── 12309-54197 │ ├── 12310-53809 │ ├── 12311-54221 │ ├── 12312-54125 │ ├── 12313-53749 │ ├── 12314-54313 │ ├── 12315-54194 │ ├── 12316-53658 │ ├── 12317-52742 │ ├── 12318-53932 │ ├── 12319-54089 │ ├── 12320-54279 │ ├── 12321-53588 │ ├── 12322-54168 │ ├── 12323-54066 │ ├── 12324-52434 │ ├── 12325-53991 │ ├── 12326-54191 │ ├── 12327-53960 │ ├── 12328-54190 │ ├── 12329-53870 │ ├── 12330-53746 │ ├── 12331-52731 │ ├── 12332-52753 │ ├── 12333-54344 │ ├── 12334-54062 │ ├── 12335-53730 │ ├── 12336-53859 │ ├── 12337-54208 │ ├── 12338-53631 │ ├── 12339-53927 │ ├── 12340-53781 │ ├── 12341-53710 │ ├── 12342-54494 │ ├── 12343-53550 │ ├── 12344-52784 │ ├── 12345-52819 │ ├── 12346-54209 │ ├── 12347-53737 │ ├── 12348-52829 │ ├── 12349-53580 │ ├── 12350-54123 │ ├── 12351-53942 │ ├── 12352-54004 │ ├── 12353-54330 │ ├── 12354-54165 │ ├── 12355-53611 │ ├── 12356-52822 │ ├── 12357-54276 │ ├── 12358-54495 │ ├── 12359-54284 │ ├── 12360-53886 │ ├── 12361-54233 │ ├── 12362-53519 │ ├── 12363-54068 │ ├── 12364-53529 │ ├── 12365-54327 │ ├── 12366-54262 │ ├── 12367-53851 │ ├── 12368-52821 │ ├── 12369-52744 │ ├── 12370-53617 │ ├── 12371-53752 │ ├── 12372-53966 │ ├── 12373-53644 │ ├── 12374-52729 │ ├── 12375-54196 │ ├── 12376-54338 │ ├── 12377-53734 │ ├── 12378-54319 │ ├── 12379-54083 │ ├── 12380-53592 │ ├── 12381-53571 │ ├── 12382-54011 │ ├── 12383-53525 │ ├── 12384-53655 │ ├── 12385-52723 │ ├── 12386-54213 │ ├── 12387-54206 │ ├── 12388-52781 │ ├── 12389-53981 │ ├── 12390-53569 │ ├── 12391-54182 │ ├── 12392-54255 │ ├── 12393-53938 │ ├── 12394-54295 │ ├── 12395-53964 │ ├── 12396-53515 │ ├── 12397-53614 │ ├── 12398-54304 │ ├── 12399-53589 │ ├── 12400-54275 │ ├── 12401-54302 │ ├── 12402-54048 │ ├── 12403-52800 │ ├── 12404-53576 │ ├── 12405-54181 │ ├── 12406-54220 │ ├── 12407-53743 │ ├── 12408-54057 │ ├── 12409-53615 │ ├── 12410-53551 │ ├── 12411-54473 │ ├── 12412-53552 │ ├── 12413-53919 │ ├── 12414-52721 │ ├── 12415-53983 │ ├── 12416-53957 │ ├── 12417-53782 │ ├── 12418-53506 │ ├── 12419-54500 │ ├── 12420-54085 │ ├── 12421-53895 │ ├── 12422-52754 │ ├── 12423-53754 │ ├── 12424-54212 │ ├── 12425-53842 │ ├── 12426-54219 │ ├── 12427-53510 │ ├── 12428-54201 │ ├── 12429-53941 │ ├── 12430-54192 │ ├── 12431-54485 │ ├── 12432-54117 │ ├── 12433-53727 │ ├── 12434-53918 │ ├── 12435-53910 │ ├── 12436-53568 │ ├── 12437-53758 │ ├── 12438-53522 │ ├── 12439-53661 │ ├── 12440-54035 │ ├── 12441-52758 │ ├── 12442-54135 │ ├── 12443-53608 │ ├── 12444-54081 │ ├── 12445-53936 │ ├── 12446-52797 │ ├── 12447-53843 │ ├── 12448-54000 │ ├── 12449-53905 │ ├── 12450-54129 │ ├── 12451-54169 │ ├── 12452-53869 │ ├── 12453-53531 │ ├── 12454-53891 │ ├── 12455-54127 │ ├── 12456-52783 │ ├── 12457-54042 │ ├── 12458-53986 │ ├── 12459-54254 │ ├── 12460-54501 │ ├── 12461-54158 │ ├── 12462-53756 │ ├── 12463-52767 │ ├── 12464-53753 │ ├── 12465-54253 │ ├── 12466-54273 │ ├── 12467-54050 │ ├── 12468-54157 │ ├── 12469-53620 │ ├── 12470-54139 │ ├── 12471-54174 │ ├── 12472-53602 │ ├── 12473-54049 │ ├── 12474-53605 │ ├── 12475-53759 │ ├── 12476-54008 │ ├── 12477-53984 │ ├── 12478-54038 │ ├── 12479-53823 │ ├── 12480-52796 │ ├── 12481-54258 │ ├── 12482-54329 │ ├── 12483-53916 │ ├── 12484-54320 │ ├── 12485-53906 │ ├── 12486-53863 │ ├── 12487-52728 │ ├── 12488-54086 │ ├── 12489-52738 │ ├── 12490-54488 │ ├── 12491-54214 │ ├── 12492-53830 │ ├── 12493-54195 │ ├── 12494-53641 │ ├── 12495-52831 │ ├── 12496-53801 │ ├── 12497-54497 │ ├── 12498-54334 │ ├── 12499-54021 │ ├── 12500-52740 │ ├── 12501-53889 │ ├── 12502-54225 │ ├── 12503-53848 │ ├── 12504-53925 │ ├── 12505-53533 │ ├── 12506-52732 │ ├── 12507-53507 │ ├── 12508-53838 │ ├── 12509-52826 │ ├── 12510-53923 │ ├── 12511-53586 │ ├── 12512-54161 │ ├── 12513-54175 │ ├── 12514-54188 │ ├── 12515-54277 │ ├── 12516-54291 │ ├── 12517-53924 │ ├── 12518-53799 │ ├── 12519-53518 │ ├── 12520-53959 │ ├── 12521-53937 │ ├── 12522-53815 │ ├── 12523-52764 │ ├── 12524-53642 │ ├── 12525-54309 │ ├── 12526-53787 │ ├── 12527-53703 │ ├── 12528-53766 │ ├── 12529-54045 │ ├── 12530-53548 │ ├── 12531-54120 │ ├── 12532-53963 │ ├── 12533-53733 │ ├── 12534-53844 │ ├── 12535-53816 │ ├── 12536-53646 │ ├── 12537-54005 │ ├── 12538-53772 │ ├── 12539-52719 │ ├── 12540-53559 │ ├── 12541-52464 │ ├── 12542-54266 │ ├── 12543-54492 │ ├── 12544-53544 │ ├── 12545-52793 │ ├── 12546-53853 │ ├── 12547-54058 │ ├── 12548-54121 │ ├── 12549-54223 │ ├── 12550-53503 │ ├── 12551-53868 │ ├── 12552-54007 │ ├── 12553-53582 │ ├── 12554-54482 │ ├── 12555-53790 │ ├── 12556-53911 │ ├── 12557-52735 │ ├── 12558-54149 │ ├── 12559-53979 │ ├── 12560-53928 │ ├── 12561-53817 │ ├── 12562-53990 │ ├── 12563-54023 │ ├── 12564-53944 │ ├── 12565-53755 │ ├── 12566-53690 │ ├── 12567-54122 │ ├── 12568-53599 │ ├── 12569-54230 │ ├── 12570-54242 │ ├── 12571-54339 │ ├── 12572-52727 │ ├── 12573-53660 │ ├── 12574-53557 │ ├── 12575-53579 │ ├── 12576-54115 │ ├── 12577-52730 │ ├── 12578-54099 │ ├── 12579-53898 │ ├── 12580-52782 │ ├── 12581-53606 │ ├── 12582-53929 │ ├── 12583-53678 │ ├── 12584-54079 │ ├── 12585-53837 │ ├── 12586-54034 │ ├── 12587-54145 │ ├── 12588-53694 │ ├── 12589-53650 │ ├── 12590-54113 │ ├── 12591-52766 │ ├── 12592-53995 │ ├── 12593-54010 │ ├── 12594-53832 │ ├── 12595-54155 │ ├── 12596-54080 │ ├── 12597-53652 │ ├── 12598-53899 │ ├── 12599-54211 │ └── 12600-52810 │ ├── sci.med │ ├── 12601-58892 │ ├── 12602-58828 │ ├── 12603-58971 │ ├── 12604-59643 │ ├── 12605-58827 │ ├── 12606-58043 │ ├── 12607-59387 │ ├── 12608-59130 │ ├── 12609-59652 │ ├── 12610-59400 │ ├── 12611-58773 │ ├── 12612-59075 │ ├── 12613-59112 │ ├── 12614-59363 │ ├── 12615-59436 │ ├── 12616-58925 │ ├── 12617-58860 │ ├── 12618-58869 │ ├── 12619-59242 │ ├── 12620-59059 │ ├── 12621-59640 │ ├── 12622-58060 │ ├── 12623-58961 │ ├── 12624-59551 │ ├── 12625-59170 │ ├── 12626-59251 │ ├── 12627-58138 │ ├── 12628-59049 │ ├── 12629-59290 │ ├── 12630-58818 │ ├── 12631-59388 │ ├── 12632-59053 │ ├── 12633-59432 │ ├── 12634-58786 │ ├── 12635-59159 │ ├── 12636-59249 │ ├── 12637-59043 │ ├── 12638-58973 │ ├── 12639-58833 │ ├── 12640-59006 │ ├── 12641-59639 │ ├── 12642-59224 │ ├── 12643-58932 │ ├── 12644-58782 │ ├── 12645-59081 │ ├── 12646-59239 │ ├── 12647-59165 │ ├── 12648-59236 │ ├── 12649-58763 │ ├── 12650-59569 │ ├── 12651-59340 │ ├── 12652-59056 │ ├── 12653-59517 │ ├── 12654-59303 │ ├── 12655-59315 │ ├── 12656-59181 │ ├── 12657-58907 │ ├── 12658-59604 │ ├── 12659-59140 │ ├── 12660-59605 │ ├── 12661-59508 │ ├── 12662-59114 │ ├── 12663-58811 │ ├── 12664-59197 │ ├── 12665-59226 │ ├── 12666-59409 │ ├── 12667-59095 │ ├── 12668-59637 │ ├── 12669-59205 │ ├── 12670-59272 │ ├── 12671-58984 │ ├── 12672-58897 │ ├── 12673-58912 │ ├── 12674-59536 │ ├── 12675-59134 │ ├── 12676-59116 │ ├── 12677-59539 │ ├── 12678-59233 │ ├── 12679-58088 │ ├── 12680-59136 │ ├── 12681-59377 │ ├── 12682-58150 │ ├── 12683-59321 │ ├── 12684-59122 │ ├── 12685-59281 │ ├── 12686-59616 │ ├── 12687-59379 │ ├── 12688-59460 │ ├── 12689-59117 │ ├── 12690-59216 │ ├── 12691-59310 │ ├── 12692-58921 │ ├── 12693-59214 │ ├── 12694-59588 │ ├── 12695-58886 │ ├── 12696-59179 │ ├── 12697-58974 │ ├── 12698-59190 │ ├── 12699-59630 │ ├── 12700-59312 │ ├── 12701-59221 │ ├── 12702-58982 │ ├── 12703-59099 │ ├── 12704-59318 │ ├── 12705-58930 │ ├── 12706-58939 │ ├── 12707-59212 │ ├── 12708-58956 │ ├── 12709-58843 │ ├── 12710-59481 │ ├── 12711-59323 │ ├── 12712-58106 │ ├── 12713-58778 │ ├── 12714-58790 │ ├── 12715-59192 │ ├── 12716-59198 │ ├── 12717-59505 │ ├── 12718-58070 │ ├── 12719-59548 │ ├── 12720-58882 │ ├── 12721-58784 │ ├── 12722-58987 │ ├── 12723-59009 │ ├── 12724-59425 │ ├── 12725-58947 │ ├── 12726-58995 │ ├── 12727-59309 │ ├── 12728-59632 │ ├── 12729-58965 │ ├── 12730-59011 │ ├── 12731-58145 │ ├── 12732-59024 │ ├── 12733-59543 │ ├── 12734-59057 │ ├── 12735-59062 │ ├── 12736-58903 │ ├── 12737-59250 │ ├── 12738-58998 │ ├── 12739-58853 │ ├── 12740-58985 │ ├── 12741-59493 │ ├── 12742-58107 │ ├── 12743-58805 │ ├── 12744-58997 │ ├── 12745-59415 │ ├── 12746-59322 │ ├── 12747-58109 │ ├── 12748-59060 │ ├── 12749-59074 │ ├── 12750-58836 │ ├── 12751-59535 │ ├── 12752-58950 │ ├── 12753-58091 │ ├── 12754-59158 │ ├── 12755-59484 │ ├── 12756-58830 │ ├── 12757-59552 │ ├── 12758-58765 │ ├── 12759-58942 │ ├── 12760-58880 │ ├── 12761-59629 │ ├── 12762-59408 │ ├── 12763-59403 │ ├── 12764-59102 │ ├── 12765-59174 │ ├── 12766-59010 │ ├── 12767-59152 │ ├── 12768-59252 │ ├── 12769-58837 │ ├── 12770-59599 │ ├── 12771-59085 │ ├── 12772-59016 │ ├── 12773-59494 │ ├── 12774-59586 │ ├── 12775-59237 │ ├── 12776-58578 │ ├── 12777-59186 │ ├── 12778-58896 │ ├── 12779-59091 │ ├── 12780-59456 │ ├── 12781-59463 │ ├── 12782-59155 │ ├── 12783-59176 │ ├── 12784-59111 │ ├── 12785-59390 │ ├── 12786-59320 │ ├── 12787-58803 │ ├── 12788-59084 │ ├── 12789-58077 │ ├── 12790-59079 │ ├── 12791-58933 │ ├── 12792-59301 │ ├── 12793-59265 │ ├── 12794-59078 │ ├── 12795-58859 │ ├── 12796-58793 │ ├── 12797-59113 │ ├── 12798-59211 │ ├── 12799-59459 │ ├── 12800-58045 │ ├── 12801-58719 │ ├── 12802-58855 │ ├── 12803-59051 │ ├── 12804-58895 │ ├── 12805-59329 │ ├── 12806-59598 │ ├── 12807-59307 │ ├── 12808-59223 │ ├── 12809-59383 │ ├── 12810-58779 │ ├── 12811-59573 │ ├── 12812-58808 │ ├── 12813-59137 │ ├── 12814-58062 │ ├── 12815-59546 │ ├── 12816-59241 │ ├── 12817-58812 │ ├── 12818-59030 │ ├── 12819-59123 │ ├── 12820-58850 │ ├── 12821-58944 │ ├── 12822-58872 │ ├── 12823-58888 │ ├── 12824-59154 │ ├── 12825-59217 │ ├── 12826-59208 │ ├── 12827-59260 │ ├── 12828-59577 │ ├── 12829-58900 │ ├── 12830-58066 │ ├── 12831-58139 │ ├── 12832-59452 │ ├── 12833-58908 │ ├── 12834-58962 │ ├── 12835-59395 │ ├── 12836-58920 │ ├── 12837-59047 │ ├── 12838-58055 │ ├── 12839-59563 │ ├── 12840-59374 │ ├── 12841-59127 │ ├── 12842-58824 │ ├── 12843-58124 │ ├── 12844-58072 │ ├── 12845-58120 │ ├── 12846-59473 │ ├── 12847-59527 │ ├── 12848-59346 │ ├── 12849-58061 │ ├── 12850-59603 │ ├── 12851-59104 │ ├── 12852-58948 │ ├── 12853-58852 │ ├── 12854-59453 │ ├── 12855-59584 │ ├── 12856-58856 │ ├── 12857-58111 │ ├── 12858-59550 │ ├── 12859-59336 │ ├── 12860-59210 │ ├── 12861-58766 │ ├── 12862-59234 │ ├── 12863-59555 │ ├── 12864-59451 │ ├── 12865-58813 │ ├── 12866-59106 │ ├── 12867-59153 │ ├── 12868-59316 │ ├── 12869-58764 │ ├── 12870-58104 │ ├── 12871-58849 │ ├── 12872-59082 │ ├── 12873-59407 │ ├── 12874-59298 │ ├── 12875-59285 │ ├── 12876-58899 │ ├── 12877-59268 │ ├── 12878-59619 │ ├── 12879-59352 │ ├── 12880-59571 │ ├── 12881-59172 │ ├── 12882-58822 │ ├── 12883-59004 │ ├── 12884-58047 │ ├── 12885-59581 │ ├── 12886-59461 │ ├── 12887-59470 │ ├── 12888-59182 │ ├── 12889-58934 │ ├── 12890-58955 │ ├── 12891-59350 │ ├── 12892-59326 │ ├── 12893-59524 │ ├── 12894-59219 │ ├── 12895-58952 │ ├── 12896-59513 │ ├── 12897-59447 │ ├── 12898-59427 │ ├── 12899-58936 │ ├── 12900-59485 │ ├── 12901-59342 │ ├── 12902-58772 │ ├── 12903-59269 │ ├── 12904-58893 │ ├── 12905-59617 │ ├── 12906-58135 │ ├── 12907-59359 │ ├── 12908-59568 │ ├── 12909-59144 │ ├── 12910-59380 │ ├── 12911-59648 │ ├── 12912-59589 │ ├── 12913-59044 │ ├── 12914-59080 │ ├── 12915-58119 │ ├── 12916-59343 │ ├── 12917-58140 │ ├── 12918-58966 │ ├── 12919-59489 │ ├── 12920-59558 │ ├── 12921-59533 │ ├── 12922-59332 │ ├── 12923-59194 │ ├── 12924-58067 │ ├── 12925-59289 │ ├── 12926-59296 │ ├── 12927-59620 │ ├── 12928-59168 │ ├── 12929-59361 │ ├── 12930-59553 │ ├── 12931-59101 │ ├── 12932-59178 │ ├── 12933-59048 │ ├── 12934-59638 │ ├── 12935-59375 │ ├── 12936-59280 │ ├── 12937-59033 │ ├── 12938-58146 │ ├── 12939-58087 │ ├── 12940-59367 │ ├── 12941-59498 │ ├── 12942-59299 │ ├── 12943-59294 │ ├── 12944-59419 │ ├── 12945-58967 │ ├── 12946-58108 │ ├── 12947-58051 │ ├── 12948-59163 │ ├── 12949-58847 │ ├── 12950-59311 │ ├── 12951-59131 │ ├── 12952-58100 │ ├── 12953-59120 │ ├── 12954-58131 │ ├── 12955-59308 │ ├── 12956-59532 │ ├── 12957-58800 │ ├── 12958-59032 │ ├── 12959-59514 │ ├── 12960-59587 │ ├── 12961-59069 │ ├── 12962-58854 │ ├── 12963-59339 │ ├── 12964-59277 │ ├── 12965-59503 │ ├── 12966-59115 │ ├── 12967-59110 │ ├── 12968-58883 │ ├── 12969-59631 │ ├── 12970-58983 │ ├── 12971-59556 │ ├── 12972-59345 │ ├── 12973-59348 │ ├── 12974-58090 │ ├── 12975-59418 │ ├── 12976-59417 │ ├── 12977-59518 │ ├── 12978-59100 │ ├── 12979-58916 │ ├── 12980-58834 │ ├── 12981-58115 │ ├── 12982-59624 │ ├── 12983-58989 │ ├── 12984-59328 │ ├── 12985-59538 │ ├── 12986-59341 │ ├── 12987-59238 │ ├── 12988-59039 │ ├── 12989-59061 │ ├── 12990-58953 │ ├── 12991-58976 │ ├── 12992-59467 │ ├── 12993-59097 │ ├── 12994-59601 │ ├── 12995-59094 │ ├── 12996-58089 │ ├── 12997-58829 │ ├── 12998-58979 │ ├── 12999-58874 │ ├── 13000-59356 │ ├── 13001-59621 │ ├── 13002-58096 │ ├── 13003-59595 │ ├── 13004-58780 │ ├── 13005-59476 │ ├── 13006-58791 │ ├── 13007-59564 │ ├── 13008-58954 │ ├── 13009-58901 │ ├── 13010-58819 │ ├── 13011-59378 │ ├── 13012-59567 │ ├── 13013-59229 │ ├── 13014-59264 │ ├── 13015-59354 │ ├── 13016-59227 │ ├── 13017-59333 │ ├── 13018-59365 │ ├── 13019-59499 │ ├── 13020-59064 │ ├── 13021-58881 │ ├── 13022-59248 │ ├── 13023-58865 │ ├── 13024-58092 │ ├── 13025-58073 │ ├── 13026-58123 │ ├── 13027-58103 │ ├── 13028-59169 │ ├── 13029-59483 │ ├── 13030-58986 │ ├── 13031-59541 │ ├── 13032-59466 │ ├── 13033-58795 │ ├── 13034-59414 │ ├── 13035-59157 │ ├── 13036-59077 │ ├── 13037-59572 │ ├── 13038-59240 │ ├── 13039-59282 │ ├── 13040-58154 │ ├── 13041-59592 │ ├── 13042-58991 │ ├── 13043-59070 │ ├── 13044-59141 │ ├── 13045-58913 │ ├── 13046-58935 │ ├── 13047-58155 │ ├── 13048-59628 │ ├── 13049-59121 │ ├── 13050-59457 │ ├── 13051-58914 │ ├── 13052-59368 │ ├── 13053-59200 │ ├── 13054-58927 │ ├── 13055-58857 │ ├── 13056-59445 │ ├── 13057-59068 │ ├── 13058-59353 │ ├── 13059-59406 │ ├── 13060-59295 │ ├── 13061-59420 │ ├── 13062-58844 │ ├── 13063-59204 │ ├── 13064-59023 │ ├── 13065-58054 │ ├── 13066-59173 │ ├── 13067-59478 │ ├── 13068-58069 │ ├── 13069-59357 │ ├── 13070-59193 │ ├── 13071-59031 │ ├── 13072-59582 │ ├── 13073-58801 │ ├── 13074-58931 │ ├── 13075-58990 │ ├── 13076-59000 │ ├── 13077-59083 │ ├── 13078-59203 │ ├── 13079-59391 │ ├── 13080-59412 │ ├── 13081-58074 │ ├── 13082-59509 │ ├── 13083-58831 │ ├── 13084-59488 │ ├── 13085-59578 │ ├── 13086-59386 │ ├── 13087-58078 │ ├── 13088-59261 │ ├── 13089-58846 │ ├── 13090-59465 │ ├── 13091-58152 │ ├── 13092-58134 │ ├── 13093-59034 │ ├── 13094-58079 │ ├── 13095-58959 │ ├── 13096-58059 │ ├── 13097-59602 │ ├── 13098-59087 │ ├── 13099-59545 │ ├── 13100-59565 │ ├── 13101-59054 │ ├── 13102-59366 │ ├── 13103-59125 │ ├── 13104-59404 │ ├── 13105-59319 │ ├── 13106-59347 │ ├── 13107-59244 │ ├── 13108-58137 │ ├── 13109-59132 │ ├── 13110-59300 │ ├── 13111-59557 │ ├── 13112-59263 │ ├── 13113-58799 │ ├── 13114-59645 │ ├── 13115-59646 │ ├── 13116-58992 │ ├── 13117-59230 │ ├── 13118-59371 │ ├── 13119-59283 │ ├── 13120-58774 │ ├── 13121-59185 │ ├── 13122-59180 │ ├── 13123-59231 │ ├── 13124-59585 │ ├── 13125-59454 │ ├── 13126-59544 │ ├── 13127-58802 │ ├── 13128-59014 │ ├── 13129-58081 │ ├── 13130-59156 │ ├── 13131-58806 │ ├── 13132-59008 │ ├── 13133-59218 │ ├── 13134-59041 │ ├── 13135-58841 │ ├── 13136-58941 │ ├── 13137-58823 │ ├── 13138-58964 │ ├── 13139-59468 │ ├── 13140-58972 │ ├── 13141-58835 │ ├── 13142-59119 │ ├── 13143-59071 │ ├── 13144-59195 │ ├── 13145-58775 │ ├── 13146-59570 │ ├── 13147-58792 │ ├── 13148-58781 │ ├── 13149-59529 │ ├── 13150-59243 │ ├── 13151-59036 │ ├── 13152-58994 │ ├── 13153-59255 │ ├── 13154-59448 │ ├── 13155-58153 │ ├── 13156-59098 │ ├── 13157-59521 │ ├── 13158-59314 │ ├── 13159-58767 │ ├── 13160-58783 │ ├── 13161-59525 │ ├── 13162-58821 │ ├── 13163-59002 │ ├── 13164-59520 │ ├── 13165-58889 │ ├── 13166-58864 │ ├── 13167-58577 │ ├── 13168-58149 │ ├── 13169-58085 │ ├── 13170-59433 │ ├── 13171-59531 │ ├── 13172-58126 │ ├── 13173-59267 │ ├── 13174-59413 │ ├── 13175-58086 │ ├── 13176-58768 │ ├── 13177-58082 │ ├── 13178-59175 │ ├── 13179-59257 │ ├── 13180-58798 │ ├── 13181-59373 │ ├── 13182-59355 │ ├── 13183-59013 │ ├── 13184-58884 │ ├── 13185-59209 │ ├── 13186-59501 │ ├── 13187-59103 │ ├── 13188-59073 │ ├── 13189-58898 │ ├── 13190-59580 │ ├── 13191-59327 │ ├── 13192-58136 │ ├── 13193-58099 │ ├── 13194-58890 │ ├── 13195-57110 │ ├── 13196-59641 │ ├── 13197-58928 │ ├── 13198-58926 │ ├── 13199-59500 │ ├── 13200-58116 │ ├── 13201-58785 │ ├── 13202-58980 │ ├── 13203-58050 │ ├── 13204-58929 │ ├── 13205-58083 │ ├── 13206-58946 │ ├── 13207-58958 │ ├── 13208-59522 │ ├── 13209-58144 │ ├── 13210-58071 │ ├── 13211-59402 │ ├── 13212-59516 │ ├── 13213-58796 │ ├── 13214-58758 │ ├── 13215-59042 │ ├── 13216-59422 │ ├── 13217-58132 │ ├── 13218-59444 │ ├── 13219-59150 │ ├── 13220-59291 │ ├── 13221-59540 │ ├── 13222-59222 │ ├── 13223-58945 │ ├── 13224-59028 │ ├── 13225-59560 │ ├── 13226-58770 │ ├── 13227-59126 │ ├── 13228-58771 │ ├── 13229-58789 │ ├── 13230-58058 │ ├── 13231-58993 │ ├── 13232-59124 │ ├── 13233-59583 │ ├── 13234-58102 │ ├── 13235-59274 │ ├── 13236-59642 │ ├── 13237-58988 │ ├── 13238-59171 │ ├── 13239-58975 │ ├── 13240-59021 │ ├── 13241-59471 │ ├── 13242-58817 │ ├── 13243-59279 │ ├── 13244-59397 │ ├── 13245-59399 │ ├── 13246-59040 │ ├── 13247-59188 │ ├── 13248-58117 │ ├── 13249-59317 │ ├── 13250-59393 │ ├── 13251-59050 │ ├── 13252-59191 │ ├── 13253-58868 │ ├── 13254-59344 │ ├── 13255-58839 │ ├── 13256-59477 │ ├── 13257-59001 │ ├── 13258-59012 │ ├── 13259-58810 │ ├── 13260-58761 │ ├── 13261-58891 │ ├── 13262-58832 │ ├── 13263-59148 │ ├── 13264-59304 │ ├── 13265-58127 │ ├── 13266-59092 │ ├── 13267-59306 │ ├── 13268-59381 │ ├── 13269-59201 │ ├── 13270-58838 │ ├── 13271-59055 │ ├── 13272-59512 │ ├── 13273-59003 │ ├── 13274-59441 │ ├── 13275-59302 │ ├── 13276-59072 │ ├── 13277-59547 │ ├── 13278-59526 │ ├── 13279-58133 │ ├── 13280-59490 │ ├── 13281-59162 │ ├── 13282-59474 │ ├── 13283-58128 │ ├── 13284-58840 │ ├── 13285-58151 │ ├── 13286-58917 │ ├── 13287-59184 │ ├── 13288-59401 │ ├── 13289-59382 │ ├── 13290-59416 │ ├── 13291-58848 │ ├── 13292-59372 │ ├── 13293-58905 │ ├── 13294-59026 │ ├── 13295-59164 │ ├── 13296-58943 │ ├── 13297-59435 │ ├── 13298-59591 │ ├── 13299-59562 │ ├── 13300-59228 │ ├── 13301-59337 │ ├── 13302-59606 │ ├── 13303-59035 │ ├── 13304-59220 │ ├── 13305-58777 │ ├── 13306-58094 │ ├── 13307-58902 │ ├── 13308-58906 │ ├── 13309-59511 │ ├── 13310-59519 │ ├── 13311-58570 │ ├── 13312-58065 │ ├── 13313-59510 │ ├── 13314-59088 │ ├── 13315-58075 │ ├── 13316-59351 │ ├── 13317-59018 │ ├── 13318-58919 │ ├── 13319-59166 │ ├── 13320-59138 │ ├── 13321-59146 │ ├── 13322-59449 │ ├── 13323-59575 │ ├── 13324-59439 │ ├── 13325-59542 │ ├── 13326-59019 │ ├── 13327-58776 │ ├── 13328-59369 │ ├── 13329-59058 │ ├── 13330-59574 │ ├── 13331-59275 │ ├── 13332-59423 │ ├── 13333-59430 │ ├── 13334-59067 │ ├── 13335-59626 │ ├── 13336-59364 │ ├── 13337-59579 │ ├── 13338-59183 │ ├── 13339-59487 │ ├── 13340-59424 │ ├── 13341-58797 │ ├── 13342-59213 │ ├── 13343-59142 │ ├── 13344-58870 │ ├── 13345-58110 │ ├── 13346-59566 │ ├── 13347-58568 │ ├── 13348-58814 │ ├── 13349-59480 │ ├── 13350-58147 │ ├── 13351-58924 │ ├── 13352-59278 │ ├── 13353-59506 │ ├── 13354-58878 │ ├── 13355-59076 │ ├── 13356-59334 │ ├── 13357-58057 │ ├── 13358-59338 │ ├── 13359-58046 │ ├── 13360-59189 │ ├── 13361-58809 │ ├── 13362-59384 │ ├── 13363-58999 │ ├── 13364-59262 │ ├── 13365-59206 │ ├── 13366-59247 │ ├── 13367-59644 │ ├── 13368-58097 │ ├── 13369-58938 │ ├── 13370-59523 │ ├── 13371-59022 │ ├── 13372-59507 │ ├── 13373-59389 │ ├── 13374-59428 │ ├── 13375-59410 │ ├── 13376-59597 │ ├── 13377-58129 │ ├── 13378-58118 │ ├── 13379-58923 │ ├── 13380-59052 │ ├── 13381-58105 │ ├── 13382-59464 │ ├── 13383-59046 │ ├── 13384-59479 │ ├── 13385-58910 │ ├── 13386-59596 │ ├── 13387-58759 │ ├── 13388-59066 │ ├── 13389-58826 │ ├── 13390-59207 │ ├── 13391-59559 │ ├── 13392-59455 │ ├── 13393-59330 │ ├── 13394-59636 │ ├── 13395-58940 │ ├── 13396-58762 │ ├── 13397-58963 │ ├── 13398-59105 │ ├── 13399-58788 │ ├── 13400-59537 │ ├── 13401-59133 │ ├── 13402-59446 │ ├── 13403-58909 │ ├── 13404-58978 │ ├── 13405-59313 │ ├── 13406-59025 │ ├── 13407-58879 │ ├── 13408-59215 │ ├── 13409-59199 │ ├── 13410-58951 │ ├── 13411-59276 │ ├── 13412-59017 │ ├── 13413-59038 │ ├── 13414-59020 │ ├── 13415-59398 │ ├── 13416-59090 │ ├── 13417-59271 │ ├── 13418-58825 │ ├── 13419-58114 │ ├── 13420-59594 │ ├── 13421-59362 │ ├── 13422-58957 │ ├── 13423-58911 │ ├── 13424-58807 │ ├── 13425-58867 │ ├── 13426-58894 │ ├── 13427-58142 │ ├── 13428-59015 │ ├── 13429-58873 │ ├── 13430-58804 │ ├── 13431-59590 │ ├── 13432-59396 │ ├── 13433-59497 │ ├── 13434-59232 │ ├── 13435-59472 │ ├── 13436-59160 │ ├── 13437-59421 │ ├── 13438-59270 │ ├── 13439-59623 │ ├── 13440-59431 │ ├── 13441-59469 │ ├── 13442-58885 │ ├── 13443-59297 │ ├── 13444-58876 │ ├── 13445-59549 │ ├── 13446-59475 │ ├── 13447-58816 │ ├── 13448-58851 │ ├── 13449-59633 │ ├── 13450-59086 │ ├── 13451-59225 │ ├── 13452-58915 │ ├── 13453-58101 │ ├── 13454-59118 │ ├── 13455-59273 │ ├── 13456-59286 │ ├── 13457-58858 │ ├── 13458-59253 │ ├── 13459-58904 │ ├── 13460-59258 │ ├── 13461-59256 │ ├── 13462-59528 │ ├── 13463-58875 │ ├── 13464-59147 │ ├── 13465-58863 │ ├── 13466-59429 │ ├── 13467-59065 │ ├── 13468-59358 │ ├── 13469-59284 │ ├── 13470-59458 │ ├── 13471-59502 │ ├── 13472-58148 │ ├── 13473-59007 │ ├── 13474-59635 │ ├── 13475-58125 │ ├── 13476-59360 │ ├── 13477-59442 │ ├── 13478-58970 │ ├── 13479-59093 │ ├── 13480-59443 │ ├── 13481-59167 │ ├── 13482-59437 │ ├── 13483-59370 │ ├── 13484-59292 │ ├── 13485-59325 │ ├── 13486-59089 │ ├── 13487-59534 │ ├── 13488-58076 │ ├── 13489-59108 │ ├── 13490-58861 │ ├── 13491-58760 │ ├── 13492-59288 │ ├── 13493-58842 │ ├── 13494-58981 │ ├── 13495-59145 │ ├── 13496-58122 │ ├── 13497-58937 │ ├── 13498-58922 │ ├── 13499-59530 │ ├── 13500-59109 │ ├── 13501-59254 │ ├── 13502-58871 │ ├── 13503-59450 │ ├── 13504-59482 │ ├── 13505-59196 │ ├── 13506-59293 │ ├── 13507-58569 │ ├── 13508-58949 │ ├── 13509-59376 │ ├── 13510-59625 │ ├── 13511-59037 │ ├── 13512-59385 │ ├── 13513-59029 │ ├── 13514-58845 │ ├── 13515-59634 │ ├── 13516-58048 │ ├── 13517-59496 │ ├── 13518-59135 │ ├── 13519-59187 │ ├── 13520-59426 │ ├── 13521-58112 │ ├── 13522-58056 │ ├── 13523-58143 │ ├── 13524-59202 │ ├── 13525-58969 │ ├── 13526-59627 │ ├── 13527-58820 │ ├── 13528-59622 │ ├── 13529-58084 │ ├── 13530-59324 │ ├── 13531-59576 │ ├── 13532-59259 │ ├── 13533-59561 │ ├── 13534-59486 │ ├── 13535-59438 │ ├── 13536-59107 │ ├── 13537-59161 │ ├── 13538-59139 │ ├── 13539-58141 │ ├── 13540-58794 │ ├── 13541-59462 │ ├── 13542-58918 │ ├── 13543-59491 │ ├── 13544-58977 │ ├── 13545-59027 │ ├── 13546-59063 │ ├── 13547-59266 │ ├── 13548-58080 │ ├── 13549-59615 │ ├── 13550-58968 │ ├── 13551-59492 │ ├── 13552-58064 │ ├── 13553-59394 │ ├── 13554-59149 │ ├── 13555-58095 │ ├── 13556-59143 │ ├── 13557-58815 │ ├── 13558-59045 │ ├── 13559-58866 │ ├── 13560-58130 │ ├── 13561-58877 │ ├── 13562-59593 │ ├── 13563-58996 │ ├── 13564-59245 │ ├── 13565-58093 │ ├── 13566-59151 │ ├── 13567-58063 │ ├── 13568-59331 │ ├── 13569-58862 │ ├── 13570-59504 │ ├── 13571-58787 │ ├── 13572-58960 │ ├── 13573-58098 │ ├── 13574-59392 │ ├── 13575-58121 │ ├── 13576-58113 │ ├── 13577-59235 │ ├── 13578-59554 │ ├── 13579-59287 │ ├── 13580-59600 │ ├── 13581-59096 │ ├── 13582-58769 │ ├── 13583-59246 │ ├── 13584-59305 │ ├── 13585-58887 │ ├── 13586-59411 │ ├── 13587-59335 │ ├── 13588-59129 │ ├── 13589-59128 │ └── 13590-58049 │ └── sci.space │ ├── 13591-61435 │ ├── 13592-61327 │ ├── 13593-60824 │ ├── 13594-61102 │ ├── 13595-61490 │ ├── 13596-61075 │ ├── 13597-61218 │ ├── 13598-62429 │ ├── 13599-61452 │ ├── 13600-60863 │ ├── 13601-60182 │ ├── 13602-60177 │ ├── 13603-61551 │ ├── 13604-60927 │ ├── 13605-61500 │ ├── 13606-60820 │ ├── 13607-61308 │ ├── 13608-60874 │ ├── 13609-62412 │ ├── 13610-60895 │ ├── 13611-61159 │ ├── 13612-61104 │ ├── 13613-60936 │ ├── 13614-61022 │ ├── 13615-62395 │ ├── 13616-60792 │ ├── 13617-60960 │ ├── 13618-61000 │ ├── 13619-61372 │ ├── 13620-61034 │ ├── 13621-61235 │ ├── 13622-61547 │ ├── 13623-61289 │ ├── 13624-60184 │ ├── 13625-60233 │ ├── 13626-60934 │ ├── 13627-61011 │ ├── 13628-62115 │ ├── 13629-61404 │ ├── 13630-62317 │ ├── 13631-60240 │ ├── 13632-60210 │ ├── 13633-61492 │ ├── 13634-60924 │ ├── 13635-60911 │ ├── 13636-61062 │ ├── 13637-60952 │ ├── 13638-61175 │ ├── 13639-60153 │ ├── 13640-60992 │ ├── 13641-62425 │ ├── 13642-61491 │ ├── 13643-61509 │ ├── 13644-61354 │ ├── 13645-62416 │ ├── 13646-60809 │ ├── 13647-60784 │ ├── 13648-60932 │ ├── 13649-61503 │ ├── 13650-61566 │ ├── 13651-61232 │ ├── 13652-61136 │ ├── 13653-61273 │ ├── 13654-61246 │ ├── 13655-61198 │ ├── 13656-59906 │ ├── 13657-61479 │ ├── 13658-61497 │ ├── 13659-61240 │ ├── 13660-61013 │ ├── 13661-60961 │ ├── 13662-61375 │ ├── 13663-61097 │ ├── 13664-62410 │ ├── 13665-61028 │ ├── 13666-61181 │ ├── 13667-61402 │ ├── 13668-61164 │ ├── 13669-62448 │ ├── 13670-60201 │ ├── 13671-60169 │ ├── 13672-61002 │ ├── 13673-61331 │ ├── 13674-61116 │ ├── 13675-61190 │ ├── 13676-60151 │ ├── 13677-61069 │ ├── 13678-60242 │ ├── 13679-60238 │ ├── 13680-59846 │ ├── 13681-61364 │ ├── 13682-61286 │ ├── 13683-61314 │ ├── 13684-61433 │ ├── 13685-60775 │ ├── 13686-61417 │ ├── 13687-61347 │ ├── 13688-61441 │ ├── 13689-62451 │ ├── 13690-61504 │ ├── 13691-60171 │ ├── 13692-61357 │ ├── 13693-60828 │ ├── 13694-61223 │ ├── 13695-61454 │ ├── 13696-61177 │ ├── 13697-60891 │ ├── 13698-61326 │ ├── 13699-62116 │ ├── 13700-61016 │ ├── 13701-61194 │ ├── 13702-60990 │ ├── 13703-61064 │ ├── 13704-59909 │ ├── 13705-61087 │ ├── 13706-61562 │ ├── 13707-61466 │ ├── 13708-61147 │ ├── 13709-61122 │ ├── 13710-61045 │ ├── 13711-61322 │ ├── 13712-60852 │ ├── 13713-61243 │ ├── 13714-61055 │ ├── 13715-61041 │ ├── 13716-61274 │ ├── 13717-60172 │ ├── 13718-60188 │ ├── 13719-62389 │ ├── 13720-60243 │ ├── 13721-62479 │ ├── 13722-62398 │ ├── 13723-60982 │ ├── 13724-61548 │ ├── 13725-61186 │ ├── 13726-61124 │ ├── 13727-61139 │ ├── 13728-60946 │ ├── 13729-61541 │ ├── 13730-60801 │ ├── 13731-60950 │ ├── 13732-60939 │ ├── 13733-62399 │ ├── 13734-61428 │ ├── 13735-62401 │ ├── 13736-60214 │ ├── 13737-61208 │ ├── 13738-61538 │ ├── 13739-61438 │ ├── 13740-60957 │ ├── 13741-61413 │ ├── 13742-61307 │ ├── 13743-61508 │ ├── 13744-60923 │ ├── 13745-60807 │ ├── 13746-61120 │ ├── 13747-61007 │ ├── 13748-62318 │ ├── 13749-61259 │ ├── 13750-61299 │ ├── 13751-60889 │ ├── 13752-60905 │ ├── 13753-61098 │ ├── 13754-60781 │ ├── 13755-61554 │ ├── 13756-61285 │ ├── 13757-61100 │ ├── 13758-59908 │ ├── 13759-61187 │ ├── 13760-62428 │ ├── 13761-60993 │ ├── 13762-61033 │ ├── 13763-61133 │ ├── 13764-61310 │ ├── 13765-62477 │ ├── 13766-61155 │ ├── 13767-60791 │ ├── 13768-62413 │ ├── 13769-61334 │ ├── 13770-61305 │ ├── 13771-61367 │ ├── 13772-61266 │ ├── 13773-61057 │ ├── 13774-61421 │ ├── 13775-61450 │ ├── 13776-61234 │ ├── 13777-61265 │ ├── 13778-61298 │ ├── 13779-60793 │ ├── 13780-59872 │ ├── 13781-61163 │ ├── 13782-61183 │ ├── 13783-60879 │ ├── 13784-61388 │ ├── 13785-61024 │ ├── 13786-61230 │ ├── 13787-60224 │ ├── 13788-60966 │ ├── 13789-60969 │ ├── 13790-61569 │ ├── 13791-61460 │ ├── 13792-60170 │ ├── 13793-60865 │ ├── 13794-61496 │ ├── 13795-62708 │ ├── 13796-61005 │ ├── 13797-62411 │ ├── 13798-61400 │ ├── 13799-60212 │ ├── 13800-61060 │ ├── 13801-60967 │ ├── 13802-60162 │ ├── 13803-60207 │ ├── 13804-61227 │ ├── 13805-61563 │ ├── 13806-60829 │ ├── 13807-61210 │ ├── 13808-61294 │ ├── 13809-60859 │ ├── 13810-60161 │ ├── 13811-61258 │ ├── 13812-61543 │ ├── 13813-61283 │ ├── 13814-61489 │ ├── 13815-61456 │ ├── 13816-61049 │ ├── 13817-60806 │ ├── 13818-61152 │ ├── 13819-61242 │ ├── 13820-59905 │ ├── 13821-60944 │ ├── 13822-60937 │ ├── 13823-61422 │ ├── 13824-60786 │ ├── 13825-60821 │ ├── 13826-60862 │ ├── 13827-61201 │ ├── 13828-61260 │ ├── 13829-60878 │ ├── 13830-61340 │ ├── 13831-61523 │ ├── 13832-61493 │ ├── 13833-61217 │ ├── 13834-60208 │ ├── 13835-60866 │ ├── 13836-61488 │ ├── 13837-60987 │ ├── 13838-61412 │ ├── 13839-61204 │ ├── 13840-61304 │ ├── 13841-61282 │ ├── 13842-61387 │ ├── 13843-61044 │ ├── 13844-60864 │ ├── 13845-61048 │ ├── 13846-61161 │ ├── 13847-61535 │ ├── 13848-61455 │ ├── 13849-61316 │ ├── 13850-60845 │ ├── 13851-61264 │ ├── 13852-60839 │ ├── 13853-61080 │ ├── 13854-61244 │ ├── 13855-60904 │ ├── 13856-61010 │ ├── 13857-61370 │ ├── 13858-60917 │ ├── 13859-61026 │ ├── 13860-61521 │ ├── 13861-61507 │ ├── 13862-59873 │ ├── 13863-59870 │ ├── 13864-61374 │ ├── 13865-61035 │ ├── 13866-61440 │ ├── 13867-61495 │ ├── 13868-60947 │ ├── 13869-60817 │ ├── 13870-61352 │ ├── 13871-61215 │ ├── 13872-61506 │ ├── 13873-61288 │ ├── 13874-61107 │ ├── 13875-62117 │ ├── 13876-61009 │ ├── 13877-62114 │ ├── 13878-61481 │ ├── 13879-61209 │ ├── 13880-61063 │ ├── 13881-61252 │ ├── 13882-61403 │ ├── 13883-61338 │ ├── 13884-61279 │ ├── 13885-62404 │ ├── 13886-60221 │ ├── 13887-61134 │ ├── 13888-61382 │ ├── 13889-61473 │ ├── 13890-62392 │ ├── 13891-61092 │ ├── 13892-61427 │ ├── 13893-61384 │ ├── 13894-61185 │ ├── 13895-60200 │ ├── 13896-61392 │ ├── 13897-60209 │ ├── 13898-60951 │ ├── 13899-60810 │ ├── 13900-60164 │ ├── 13901-62419 │ ├── 13902-61090 │ ├── 13903-60837 │ ├── 13904-61556 │ ├── 13905-61040 │ ├── 13906-61332 │ ├── 13907-61565 │ ├── 13908-61300 │ ├── 13909-61117 │ ├── 13910-62402 │ ├── 13911-60812 │ ├── 13912-61477 │ ├── 13913-61103 │ ├── 13914-61149 │ ├── 13915-62476 │ ├── 13916-61053 │ ├── 13917-60253 │ ├── 13918-62474 │ ├── 13919-60778 │ ├── 13920-61468 │ ├── 13921-62394 │ ├── 13922-61449 │ ├── 13923-61213 │ ├── 13924-62427 │ ├── 13925-61325 │ ├── 13926-61233 │ ├── 13927-61020 │ ├── 13928-62113 │ ├── 13929-60994 │ ├── 13930-60173 │ ├── 13931-60782 │ ├── 13932-60976 │ ├── 13933-61383 │ ├── 13934-61469 │ ├── 13935-60156 │ ├── 13936-62396 │ ├── 13937-60901 │ ├── 13938-62126 │ ├── 13939-61238 │ ├── 13940-61043 │ ├── 13941-61150 │ ├── 13942-60940 │ ├── 13943-59871 │ ├── 13944-61517 │ ├── 13945-61408 │ ├── 13946-61174 │ ├── 13947-61074 │ ├── 13948-60234 │ ├── 13949-61555 │ ├── 13950-61083 │ ├── 13951-61474 │ ├── 13952-60965 │ ├── 13953-61459 │ ├── 13954-60231 │ ├── 13955-61524 │ ├── 13956-62478 │ ├── 13957-59850 │ ├── 13958-60871 │ ├── 13959-61012 │ ├── 13960-60887 │ ├── 13961-61313 │ ├── 13962-61532 │ ├── 13963-61095 │ ├── 13964-61379 │ ├── 13965-61188 │ ├── 13966-60774 │ ├── 13967-62414 │ ├── 13968-60894 │ ├── 13969-60787 │ ├── 13970-61111 │ ├── 13971-60190 │ ├── 13972-61558 │ ├── 13973-61222 │ ├── 13974-60955 │ ├── 13975-61315 │ ├── 13976-60867 │ ├── 13977-60958 │ ├── 13978-61319 │ ├── 13979-62374 │ ├── 13980-60189 │ ├── 13981-61545 │ ├── 13982-60856 │ ├── 13983-61463 │ ├── 13984-61567 │ ├── 13985-60235 │ ├── 13986-61014 │ ├── 13987-60912 │ ├── 13988-61113 │ ├── 13989-61510 │ ├── 13990-60838 │ ├── 13991-60783 │ ├── 13992-60930 │ ├── 13993-61156 │ ├── 13994-61096 │ ├── 13995-61077 │ ├── 13996-61160 │ ├── 13997-61356 │ ├── 13998-60903 │ ├── 13999-61447 │ ├── 14000-61346 │ ├── 14001-60226 │ ├── 14002-60941 │ ├── 14003-62129 │ ├── 14004-61522 │ ├── 14005-60815 │ ├── 14006-59874 │ ├── 14007-60953 │ ├── 14008-61410 │ ├── 14009-61320 │ ├── 14010-60888 │ ├── 14011-60215 │ ├── 14012-60239 │ ├── 14013-61484 │ ├── 14014-61439 │ ├── 14015-60902 │ ├── 14016-61047 │ ├── 14017-62104 │ ├── 14018-61091 │ ├── 14019-61337 │ ├── 14020-61115 │ ├── 14021-60206 │ ├── 14022-61189 │ ├── 14023-60814 │ ├── 14024-61065 │ ├── 14025-60804 │ ├── 14026-60854 │ ├── 14027-60154 │ ├── 14028-61389 │ ├── 14029-60225 │ ├── 14030-60185 │ ├── 14031-60187 │ ├── 14032-61162 │ ├── 14033-61499 │ ├── 14034-61293 │ ├── 14035-60777 │ ├── 14036-61345 │ ├── 14037-61229 │ ├── 14038-60929 │ ├── 14039-61019 │ ├── 14040-61247 │ ├── 14041-61453 │ ├── 14042-61324 │ ├── 14043-61381 │ ├── 14044-61068 │ ├── 14045-61419 │ ├── 14046-61275 │ ├── 14047-61168 │ ├── 14048-62150 │ ├── 14049-61429 │ ├── 14050-61192 │ ├── 14051-61199 │ ├── 14052-61157 │ ├── 14053-61539 │ ├── 14054-61461 │ ├── 14055-61405 │ ├── 14056-62452 │ ├── 14057-61515 │ ├── 14058-62450 │ ├── 14059-61093 │ ├── 14060-60853 │ ├── 14061-61109 │ ├── 14062-61207 │ ├── 14063-62386 │ ├── 14064-60928 │ ├── 14065-60970 │ ├── 14066-61059 │ ├── 14067-61399 │ ├── 14068-61031 │ ├── 14069-61363 │ ├── 14070-61457 │ ├── 14071-61434 │ ├── 14072-62373 │ ├── 14073-61534 │ ├── 14074-61072 │ ├── 14075-61351 │ ├── 14076-61444 │ ├── 14077-59913 │ ├── 14078-60956 │ ├── 14079-61220 │ ├── 14080-60241 │ ├── 14081-60796 │ ├── 14082-60985 │ ├── 14083-61182 │ ├── 14084-61475 │ ├── 14085-60910 │ ├── 14086-61076 │ ├── 14087-62127 │ ├── 14088-61365 │ ├── 14089-61312 │ ├── 14090-61137 │ ├── 14091-60179 │ ├── 14092-61511 │ ├── 14093-61306 │ ├── 14094-62418 │ ├── 14095-61424 │ ├── 14096-61038 │ ├── 14097-61330 │ ├── 14098-61333 │ ├── 14099-62475 │ ├── 14100-61348 │ ├── 14101-61145 │ ├── 14102-62616 │ ├── 14103-62420 │ ├── 14104-61528 │ ├── 14105-61318 │ ├── 14106-60981 │ ├── 14107-61070 │ ├── 14108-61004 │ ├── 14109-60833 │ ├── 14110-60972 │ ├── 14111-62481 │ ├── 14112-62385 │ ├── 14113-60822 │ ├── 14114-60858 │ ├── 14115-60247 │ ├── 14116-61328 │ ├── 14117-60166 │ ├── 14118-61415 │ ├── 14119-61425 │ ├── 14120-60842 │ ├── 14121-60213 │ ├── 14122-60973 │ ├── 14123-61284 │ ├── 14124-61350 │ ├── 14125-60228 │ ├── 14126-61001 │ ├── 14127-60204 │ ├── 14128-61462 │ ├── 14129-61228 │ ├── 14130-61512 │ ├── 14131-61101 │ ├── 14132-61241 │ ├── 14133-61253 │ ├── 14134-61520 │ ├── 14135-60868 │ ├── 14136-61262 │ ├── 14137-60997 │ ├── 14138-61432 │ ├── 14139-61039 │ ├── 14140-60811 │ ├── 14141-61144 │ ├── 14142-61559 │ ├── 14143-61471 │ ├── 14144-60217 │ ├── 14145-61110 │ ├── 14146-60935 │ ├── 14147-61303 │ ├── 14148-61197 │ ├── 14149-61003 │ ├── 14150-61226 │ ├── 14151-61054 │ ├── 14152-60964 │ ├── 14153-61414 │ ├── 14154-61056 │ ├── 14155-61411 │ ├── 14156-61125 │ ├── 14157-60825 │ ├── 14158-61395 │ ├── 14159-61423 │ ├── 14160-61052 │ ├── 14161-61151 │ ├── 14162-61502 │ ├── 14163-60943 │ ├── 14164-61032 │ ├── 14165-60855 │ ├── 14166-62387 │ ├── 14167-61206 │ ├── 14168-61343 │ ├── 14169-60785 │ ├── 14170-61195 │ ├── 14171-61442 │ ├── 14172-60251 │ ├── 14173-61079 │ ├── 14174-60949 │ ├── 14175-61061 │ ├── 14176-60884 │ ├── 14177-61358 │ ├── 14178-61191 │ ├── 14179-60219 │ ├── 14180-61396 │ ├── 14181-60971 │ ├── 14182-60181 │ ├── 14183-61173 │ ├── 14184-61549 │ ├── 14185-59849 │ ├── 14186-60175 │ ├── 14187-60893 │ ├── 14188-62454 │ ├── 14189-61170 │ ├── 14190-61261 │ ├── 14191-60244 │ ├── 14192-61127 │ ├── 14193-60885 │ ├── 14194-60920 │ ├── 14195-62397 │ ├── 14196-61254 │ ├── 14197-62453 │ ├── 14198-61086 │ ├── 14199-61081 │ ├── 14200-60772 │ ├── 14201-60163 │ ├── 14202-61420 │ ├── 14203-60914 │ ├── 14204-61369 │ ├── 14205-61036 │ ├── 14206-60794 │ ├── 14207-61105 │ ├── 14208-61276 │ ├── 14209-61301 │ ├── 14210-60840 │ ├── 14211-61317 │ ├── 14212-61361 │ ├── 14213-61239 │ ├── 14214-60882 │ ├── 14215-61263 │ ├── 14216-60938 │ ├── 14217-61394 │ ├── 14218-60178 │ ├── 14219-60849 │ ├── 14220-61362 │ ├── 14221-60931 │ ├── 14222-61376 │ ├── 14223-61526 │ ├── 14224-60797 │ ├── 14225-61143 │ ├── 14226-61531 │ ├── 14227-62319 │ ├── 14228-61536 │ ├── 14229-60883 │ ├── 14230-60193 │ ├── 14231-60921 │ ├── 14232-61088 │ ├── 14233-60826 │ ├── 14234-60800 │ ├── 14235-61437 │ ├── 14236-61172 │ ├── 14237-61082 │ ├── 14238-60959 │ ├── 14239-61008 │ ├── 14240-60926 │ ├── 14241-61251 │ ├── 14242-60945 │ ├── 14243-60158 │ ├── 14244-61138 │ ├── 14245-61470 │ ├── 14246-61094 │ ├── 14247-60789 │ ├── 14248-60915 │ ├── 14249-61042 │ ├── 14250-61397 │ ├── 14251-61486 │ ├── 14252-61476 │ ├── 14253-61245 │ ├── 14254-60942 │ ├── 14255-62403 │ ├── 14256-60199 │ ├── 14257-60908 │ ├── 14258-60850 │ ├── 14259-61165 │ ├── 14260-60834 │ ├── 14261-61311 │ ├── 14262-60925 │ ├── 14263-61349 │ ├── 14264-61295 │ ├── 14265-60913 │ ├── 14266-59848 │ ├── 14267-60236 │ ├── 14268-61378 │ ├── 14269-61513 │ ├── 14270-61430 │ ├── 14271-61302 │ ├── 14272-60159 │ ├── 14273-61501 │ ├── 14274-61071 │ ├── 14275-61529 │ ├── 14276-61099 │ ├── 14277-61153 │ ├── 14278-62388 │ ├── 14279-61431 │ ├── 14280-61407 │ ├── 14281-60211 │ ├── 14282-61533 │ ├── 14283-60103 │ ├── 14284-61178 │ ├── 14285-61385 │ ├── 14286-61446 │ ├── 14287-60968 │ ├── 14288-61393 │ ├── 14289-61321 │ ├── 14290-61467 │ ├── 14291-61106 │ ├── 14292-61196 │ ├── 14293-61564 │ ├── 14294-62709 │ ├── 14295-61158 │ ├── 14296-60995 │ ├── 14297-60229 │ ├── 14298-61485 │ ├── 14299-61118 │ ├── 14300-61140 │ ├── 14301-61270 │ ├── 14302-61390 │ ├── 14303-60996 │ ├── 14304-61494 │ ├── 14305-61527 │ ├── 14306-61380 │ ├── 14307-60198 │ ├── 14308-61108 │ ├── 14309-61465 │ ├── 14310-62455 │ ├── 14311-61066 │ ├── 14312-61214 │ ├── 14313-61216 │ ├── 14314-61472 │ ├── 14315-62405 │ ├── 14316-61030 │ ├── 14317-61519 │ ├── 14318-61482 │ ├── 14319-60195 │ ├── 14320-61248 │ ├── 14321-60978 │ ├── 14322-60155 │ ├── 14323-62131 │ ├── 14324-60897 │ ├── 14325-60873 │ ├── 14326-61236 │ ├── 14327-60798 │ ├── 14328-61542 │ ├── 14329-60165 │ ├── 14330-61146 │ ├── 14331-61193 │ ├── 14332-60183 │ ├── 14333-60174 │ ├── 14334-61568 │ ├── 14335-61445 │ ├── 14336-61355 │ ├── 14337-61126 │ ├── 14338-60876 │ ├── 14339-60844 │ ├── 14340-61203 │ ├── 14341-60779 │ ├── 14342-61281 │ ├── 14343-60918 │ ├── 14344-61557 │ ├── 14345-60203 │ ├── 14346-61084 │ ├── 14347-62615 │ ├── 14348-61339 │ ├── 14349-61368 │ ├── 14350-60223 │ ├── 14351-61373 │ ├── 14352-61154 │ ├── 14353-61530 │ ├── 14354-60813 │ ├── 14355-61129 │ ├── 14356-60890 │ ├── 14357-62390 │ ├── 14358-60836 │ ├── 14359-61205 │ ├── 14360-60819 │ ├── 14361-60979 │ ├── 14362-60861 │ ├── 14363-60771 │ ├── 14364-61114 │ ├── 14365-61142 │ ├── 14366-60248 │ ├── 14367-61329 │ ├── 14368-61131 │ ├── 14369-61544 │ ├── 14370-60922 │ ├── 14371-62118 │ ├── 14372-61112 │ ├── 14373-60983 │ ├── 14374-61148 │ ├── 14375-60841 │ ├── 14376-61211 │ ├── 14377-60827 │ ├── 14378-60799 │ ├── 14379-61200 │ ├── 14380-60237 │ ├── 14381-61176 │ ├── 14382-60870 │ ├── 14383-61018 │ ├── 14384-60880 │ ├── 14385-61089 │ ├── 14386-61353 │ ├── 14387-61550 │ ├── 14388-61021 │ ├── 14389-60245 │ ├── 14390-61342 │ ├── 14391-62409 │ ├── 14392-60795 │ ├── 14393-60790 │ ├── 14394-60881 │ ├── 14395-61249 │ ├── 14396-61051 │ ├── 14397-61451 │ ├── 14398-61560 │ ├── 14399-60835 │ ├── 14400-61132 │ ├── 14401-61257 │ ├── 14402-60886 │ ├── 14403-61221 │ ├── 14404-61448 │ ├── 14405-61344 │ ├── 14406-61537 │ ├── 14407-59497 │ ├── 14408-62375 │ ├── 14409-60980 │ ├── 14410-60991 │ ├── 14411-60948 │ ├── 14412-60963 │ ├── 14413-61037 │ ├── 14414-60998 │ ├── 14415-61219 │ ├── 14416-61058 │ ├── 14417-60974 │ ├── 14418-61458 │ ├── 14419-60892 │ ├── 14420-61377 │ ├── 14421-60230 │ ├── 14422-60907 │ ├── 14423-60803 │ ├── 14424-60232 │ ├── 14425-61180 │ ├── 14426-60802 │ ├── 14427-60246 │ ├── 14428-62415 │ ├── 14429-61271 │ ├── 14430-61121 │ ├── 14431-61561 │ ├── 14432-60896 │ ├── 14433-60205 │ ├── 14434-61006 │ ├── 14435-60220 │ ├── 14436-61046 │ ├── 14437-61256 │ ├── 14438-61202 │ ├── 14439-61371 │ ├── 14440-60770 │ ├── 14441-61514 │ ├── 14442-60846 │ ├── 14443-60216 │ ├── 14444-60773 │ ├── 14445-60954 │ ├── 14446-60847 │ ├── 14447-60252 │ ├── 14448-61078 │ ├── 14449-62407 │ ├── 14450-61067 │ ├── 14451-60984 │ ├── 14452-60816 │ ├── 14453-61386 │ ├── 14454-61478 │ ├── 14455-60818 │ ├── 14456-60830 │ ├── 14457-60788 │ ├── 14458-61015 │ ├── 14459-60196 │ ├── 14460-60899 │ ├── 14461-61505 │ ├── 14462-59904 │ ├── 14463-60222 │ ├── 14464-61025 │ ├── 14465-61464 │ ├── 14466-61023 │ ├── 14467-60157 │ ├── 14468-61483 │ ├── 14469-60202 │ ├── 14470-60860 │ ├── 14471-61141 │ ├── 14472-60831 │ ├── 14473-60933 │ ├── 14474-62449 │ ├── 14475-61184 │ ├── 14476-60180 │ ├── 14477-60823 │ ├── 14478-61426 │ ├── 14479-60851 │ ├── 14480-61323 │ ├── 14481-60194 │ ├── 14482-60898 │ ├── 14483-61272 │ ├── 14484-60168 │ ├── 14485-61553 │ ├── 14486-60176 │ ├── 14487-61487 │ ├── 14488-61525 │ ├── 14489-60808 │ ├── 14490-61050 │ ├── 14491-60962 │ ├── 14492-61231 │ ├── 14493-61552 │ ├── 14494-62408 │ ├── 14495-62393 │ ├── 14496-61418 │ ├── 14497-60986 │ ├── 14498-62391 │ ├── 14499-61237 │ ├── 14500-60249 │ ├── 14501-61135 │ ├── 14502-60843 │ ├── 14503-60909 │ ├── 14504-60848 │ ├── 14505-61278 │ ├── 14506-61277 │ ├── 14507-60919 │ ├── 14508-60832 │ ├── 14509-60875 │ ├── 14510-60250 │ ├── 14511-61366 │ ├── 14512-61480 │ ├── 14513-62614 │ ├── 14514-60999 │ ├── 14515-61359 │ ├── 14516-60191 │ ├── 14517-61212 │ ├── 14518-61398 │ ├── 14519-61255 │ ├── 14520-61443 │ ├── 14521-60975 │ ├── 14522-62406 │ ├── 14523-61287 │ ├── 14524-61169 │ ├── 14525-60197 │ ├── 14526-61309 │ ├── 14527-61540 │ ├── 14528-61336 │ ├── 14529-60218 │ ├── 14530-62480 │ ├── 14531-61546 │ ├── 14532-61516 │ ├── 14533-61401 │ ├── 14534-61267 │ ├── 14535-59907 │ ├── 14536-60872 │ ├── 14537-60900 │ ├── 14538-61171 │ ├── 14539-60988 │ ├── 14540-60227 │ ├── 14541-62400 │ ├── 14542-60989 │ ├── 14543-62426 │ ├── 14544-61360 │ ├── 14545-61085 │ ├── 14546-61119 │ ├── 14547-61406 │ ├── 14548-61280 │ ├── 14549-60977 │ ├── 14550-61341 │ ├── 14551-61017 │ ├── 14552-62417 │ ├── 14553-61179 │ ├── 14554-61123 │ ├── 14555-61027 │ ├── 14556-61436 │ ├── 14557-61029 │ ├── 14558-60160 │ ├── 14559-61167 │ ├── 14560-60192 │ ├── 14561-61073 │ ├── 14562-61409 │ ├── 14563-60857 │ ├── 14564-61250 │ ├── 14565-60869 │ ├── 14566-61391 │ ├── 14567-61498 │ ├── 14568-61128 │ ├── 14569-60916 │ ├── 14570-60780 │ ├── 14571-61416 │ ├── 14572-60906 │ ├── 14573-61130 │ ├── 14574-61166 │ ├── 14575-61292 │ ├── 14576-61518 │ └── 14577-62130 ├── README.md └── run.bash /1. K-近邻/.idea/1. KNN.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /1. K-近邻/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /1. K-近邻/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1. K-近邻/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/1. K-近邻/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /2. 线性回归/.idea/2. 线性回归.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /2. 线性回归/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /2. 线性回归/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2. 线性回归/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/2. 线性回归/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /3. 逻辑回归/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /3. 逻辑回归/.idea/3. 逻辑回归.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /3. 逻辑回归/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /3. 逻辑回归/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /3. 逻辑回归/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /3. 逻辑回归/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/3. 逻辑回归/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /4. 决策树/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /4. 决策树/.idea/4. 决策树.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /4. 决策树/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /4. 决策树/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /4. 决策树/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /4. 决策树/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /4. 决策树/titanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/4. 决策树/titanic.png -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/5. 支持向量机SVM.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /5. 支持向量机SVM/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/5. 支持向量机SVM/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/6. 朴素贝叶斯.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /6. 朴素贝叶斯/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /7. PCA/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /7. PCA/.idea/7. PCA.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /7. PCA/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /7. PCA/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /7. PCA/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /7. PCA/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /7. PCA/dataset/olivetti.pkz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/7. PCA/dataset/olivetti.pkz -------------------------------------------------------------------------------- /7. PCA/dataset/olivetti_py3.pkz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/7. PCA/dataset/olivetti_py3.pkz -------------------------------------------------------------------------------- /8. K-均值/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /8. K-均值/.idea/8. K-均值.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /8. K-均值/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /8. K-均值/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10636-15643: -------------------------------------------------------------------------------- 1 | From: mathew 2 | Subject: Re: text of White House announcement and Q&As on clipper chip encryption 3 | 4 | bena@dec05.cs.monash.edu.au (Ben Aveling) writes: 5 | > Don't forget, you are in the country that wouldn't let the Russians 6 | > buy Apple II's because of security concerns. 7 | 8 | That's nothing. They wouldn't let the British buy Inmos Transputer systems 9 | because of security concerns. And we designed the damn things! 10 | 11 | 12 | mathew 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10642-15237: -------------------------------------------------------------------------------- 1 | From: schneier@chinet.chi.il.us (Bruce Schneier) 2 | Subject: ISSA '93 Conference 3 | 4 | If there is anyone attending the ISSA conference in Arlington, VA next 5 | week, I would appreciate them getting in touch with me. 6 | 7 | Bruce 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10655-15571: -------------------------------------------------------------------------------- 1 | Subject: Looking for MS-DOS crypto programs 2 | From: EXTDSM@LURE.LATROBE.EDU.AU (MADDISON,David) 3 | 4 | I am a new reader of sci.crypt I would like to obtain a copy of a 5 | public domain program that can encrypt files, preferably using DES, 6 | that runs under MS-DOS. 7 | 8 | I would also like to obtain a program which will password protect 9 | floppy disks, if this is possible. 10 | 11 | Thanks. 12 | 13 | David Maddison 14 | Melbourne, Australia 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10682-15984: -------------------------------------------------------------------------------- 1 | From: tedcrum@garnet.berkeley.edu (Ted Crum) 2 | Subject: Re: Trademark violation claimed 3 | 4 | 5 | The RISC processor made by Fairchild, sold to Intergraph, much the same 6 | story as the R4000. 7 | 8 | Remember how Spielberg lost the control of Star Wars when the DOD started 9 | using the name? The loss was confirmed in court. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10730-15185: -------------------------------------------------------------------------------- 1 | From: hooper@ccs.QueensU.CA (Andy Hooper) 2 | Subject: Re: text of White House announcement and Q&As on clipper chip encryption 3 | 4 | Isn't Clipper a trademark of Fairchild Semiconductor? 5 | 6 | Andy Hooper 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10767-15875: -------------------------------------------------------------------------------- 1 | From: strnlght@netcom.com (David Sternlight) 2 | Subject: Re: THE CLIPPER CHIP: A TECHNICAL SUMMARY 3 | 4 | 5 | For some reason my fingers want to type "probably" cause whenever I want to 6 | say "probable" cause. Sorry for any confusion in the previous message. 7 | 8 | David 9 | -- 10 | David Sternlight Great care has been taken to ensure the accuracy of 11 | our information, errors and omissions excepted. 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10778-15362: -------------------------------------------------------------------------------- 1 | From: jed@pollux.usc.edu (Jonathan DeMarrais) 2 | Subject: Crypto Conference 3 | 4 | I need to know the following information about the upcoming 5 | Crypto Conference; The address to submit articles, and the 6 | number of copies needed. Thanks, 7 | Jonathan DeMarrais 8 | jed@pollux.usc.edu 9 | 10 | -- 11 | --- Jay jed@pollux.usc.edu (University of Southern California) 12 | 13 | What a depressingly stupid machine. 14 | Marvin 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10781-15440: -------------------------------------------------------------------------------- 1 | From: langley@dirac.scri.fsu.edu (Randolph Langley) 2 | Subject: Re: text of White House announcement and Q&As on clipper chip encryption 3 | 4 | 5 | Gee, I guess they should also have such a repository for house keys, 6 | car keys, safety deposit keys, ... :-( 7 | 8 | rdl 9 | -- 10 | 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10806-15574: -------------------------------------------------------------------------------- 1 | From: amanda@intercon.com (Amanda Walker) 2 | Subject: Re: Clipper considered harmful 3 | 4 | shirriff@sprite.berkeley.edu (Ken Shirriff) writes: 5 | > Since archiving would be such a powerful tool and so easy to do, why 6 | > wouldn't it happen? 7 | 8 | Not enough magtape. 9 | 10 | Seriously, do you have any idea how much traffic flows through the US phone 11 | system in a single day? 12 | 13 | 14 | Amanda Walker 15 | InterCon Systems Corporation 16 | 17 | 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10824-15511: -------------------------------------------------------------------------------- 1 | From: amanda@intercon.com (Amanda Walker) 2 | Subject: Re: text of White House announcement and Q&As on clipper chip 3 | encryption 4 | 5 | gtoal@gtoal.com (Graham Toal) writes: 6 | > Whatever happens though, the effect of this new chip will be to make 7 | > private crypto stand out like a sore thumb. 8 | 9 | It already does. 10 | 11 | 12 | Amanda Walker 13 | InterCon Systems Corporation 14 | 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10828-15950: -------------------------------------------------------------------------------- 1 | From: feeley@cattell.psych.upenn.edu (Wm. Michael Feeley) 2 | Subject: Clipper and conference calls 3 | 4 | Just curious, how would the Clipper Chip system handle 5 | conference calls? 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10837-16044: -------------------------------------------------------------------------------- 1 | From: uskmg@emoryu1.cc.emory.edu (Ken Guyton) 2 | Subject: Amiga RIPEM? 3 | 4 | Has anyone ported RIPEM to the Amiga yet or is anyone working on it? 5 | 6 | Emailed responses are fine. 7 | 8 | -- 9 | Ken Guyton, Emory University | PREFERRED: uskmg@unix.cc.emory.edu 10 | Information Technology Division | UUCP: ...gatech!emoryu1!uskmg 11 | Atlanta, GA 30322 | NON-DOMAIN BITNET: uskmg@emoryu1 12 | Phone: (404) 727-7685 | FAX: (404) 727-2599 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10871-15965: -------------------------------------------------------------------------------- 1 | From: jhart@agora.rain.com (Jim Hart) 2 | Subject: Dorothy Denning opposes Clipper, Capstone wiretap chips 3 | 4 | "The security of the system should depend only on the secrecy of 5 | the keys and not on the secrecy of the algorithms" -- Dorothy Denning 6 | 7 | jhart@agora.rain.com 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10886-15635: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Once tapped, your code is no good any more. 3 | 4 | Agreed. This is like the Bay of Pigs fiasco (planned by the Eisenhower 5 | Administration but given the final green light by Kennedy). 6 | To be sure, hen it all went down, Kennedy was at least man enough to take 7 | full responsibility, which is not what I expect from Slick Willie Clinton.... 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10893-15951: -------------------------------------------------------------------------------- 1 | From: kingj@hpcc01.corp.hp.com (John C. King) 2 | Subject: Wanted: Riverbank Pub. No. 16 3 | 4 | I'm looking for a copy of Friedman's Riverbank Publication No. 16 "Methods 5 | for the Solution of Running-Key Ciphers." Agean Park Press tells me that their 6 | publication C-23 "The Riverbank Publications, Volume 1" is out of print. Can 7 | anyone snail-mail me a photocopy of No. 16? If someone could it would be much 8 | appreciated. 9 | 10 | Regards, 11 | 12 | John King 13 | kingj@corp.hp.com 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10896-16010: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Tempest 3 | 4 | The "low radiation" claims one sees on monitors these days pertain to 5 | allegedly harmful electromagnetic emissions, which does not necessarily have 6 | anything to do wtih TEMPEST security. 7 | (I think the alleged hazard is BS, but that's another topic.) 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10915-14989: -------------------------------------------------------------------------------- 1 | From: ho@cs.arizona.edu (Hilarie Orman) 2 | Subject: Re: Licensing of public key implementations 3 | 4 | With regard to your speculations on NSA involvement in the creation of 5 | PKP, I find that it fails the test of Occam's butcher knife. Never 6 | attribute to conspiracy what can be explained by forthright greed. 7 | 8 | 9 | Hilarie Orman 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10922-15745: -------------------------------------------------------------------------------- 1 | From: victori@xetron.com (Victor Iseli) 2 | Subject: Re: freely distributable public key cryptography c++ code: where? 3 | 4 | 5 | 6 | "Numerical Recipes in C"..Fortran..Pascal has a nice section on 7 | encryption and decryption based on the DES algorithm. There is 8 | also source code provided (I think some versions of this book are 9 | distributed with the source code on disk; the source code can 10 | also be ordered from the publisher). 11 | 12 | --Victor Iseli 13 | victori@xetron.com 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10930-15806: -------------------------------------------------------------------------------- 1 | From: "Stephen J. Ludwick" 2 | Subject: Encryption Chips 3 | 4 | 5 | Does anyone know where I can get a hold of some secure encrypting chips 6 | or devices before they are banned completely?!? 7 | 8 | Steve 9 | 10 | 11 | "If encryption is outlawed, only outlaws will have encryption" 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10935-15539: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Once tapped, your code is no good any more. 3 | 4 | For that matter, it shouldn't be that difficult to design a black box 5 | that gives off EMR similar to a monitor with gibberish on the screen.... 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10947-15542: -------------------------------------------------------------------------------- 1 | From: amanda@intercon.com (Amanda Walker) 2 | Subject: Re: Secret algorithm [Re: Clipper Chip and crypto key-escrow] 3 | 4 | pdc@dcs.ed.ac.uk (Paul Crowley) writes: 5 | > As for the cleaners, I'll stick with my 850W Electrolux and damn the 6 | > carpet. 7 | 8 | Nah. Nothing sucks like a VAX :)... 9 | 10 | 11 | Amanda Walker 12 | InterCon Systems Corporation 13 | 14 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10952-15800: -------------------------------------------------------------------------------- 1 | From: "Stephen J. Ludwick" 2 | Subject: Encryption Chip Availibility 3 | 4 | Hi everybody! 5 | 6 | Does anyone know of companies that are currently manufacturing 7 | encryption chips for sale to the general public? Get them while you 8 | can! Some pointers would be greatly appreciated. 9 | 10 | Thanks 11 | 12 | Steve 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10954-16128: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Is it illegal to transmit encrypted data? 3 | 4 | > I'm afraid I have to disagree with you on that point. NSA will *not* 5 | >tell RSA or any other non-DOD entity anything that its eavesdropping 6 | >reveals. 7 | 8 | I don't know about that; they might if they find it the most expedient 9 | way to keep people from using something they can't crack. 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10969-15672: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.crypt/10969-15672 -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/10983-15282: -------------------------------------------------------------------------------- 1 | From: mearle@netcom.com (Mark Earle) 2 | Subject: PGP 2.0 vs 2.2 3 | 4 | 5 | I've seen PGP 2.2 mentioned for the Mac platform. I use 2.0 on MS/DOS. 6 | Is there a 2.2 for MS/DOS? If so, a site or two that has it available 7 | (I'd need executables, although source would be nice to review). 8 | What was "fixed" or changed from 2.0 > 2.2? 9 | 10 | Thanks, mwe 11 | mearle@netcom.com 12 | finger for pgp2.0 public key 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11007-15878: -------------------------------------------------------------------------------- 1 | From: pvr@wang.com () 2 | Subject: Crypto File System reference? 3 | 4 | A while ago there was a reference to a paper on a crypto file 5 | system (CFS) given by someone at at AT&T (?). How can I 6 | get a copy? Is it available on the net? Was it published? 7 | Who was the author? 8 | 9 | Thanks 10 | 11 | -- 12 | -->>>>>>>>>> Peter Reilley ..... pvr@wiis.wang.com ..... KA1LAT <<<<<<<<<<<-- 13 | Well, that about says it. 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11018-16348: -------------------------------------------------------------------------------- 1 | From: pooka@access.digex.net (Louis Emmet Mahoney) 2 | Subject: Re: Clipper: Two additional possible problems 3 | 4 | erwin@trwacs.fp.trw.com (Harry Erwin) writes: 5 | 6 | >Anyone interested in adopting British Telecom's quantum encryption scheme? 7 | >They've demonstrated it over a 10 km link. It automatically detects 8 | >wiretapping. 9 | 10 | Can you tell us more? 11 | 12 | -pooka 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11021-15623: -------------------------------------------------------------------------------- 1 | From: smhanaes@gpu.utcc.utoronto.ca (D. Wigglesworth) 2 | Subject: freely distributable public key cryptography c++ code: where? 3 | 4 | 5 | Do you know of any freely distributable c++ (or c) code for public 6 | key cryptography (such as RSA)? 7 | 8 | I've tried various archie searches to no avail. 9 | 10 | Thanks, 11 | Dan 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11026-15905: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Secret algorithm [Re: Clipper Chip and crypto key-escrow] 3 | 4 | > Nonsense! I wasn't asked if Larry O'Brien should trust Nixon with his keys, 5 | >but whether I would. 6 | 7 | Well, that explains it. The government has no real need to spy on people 8 | who already love Big Brother; it's the people who are inclined to talk 9 | back who need to be watched. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11041-15543: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Once tapped, your code is no good any more. 3 | 4 | > I wonder if she landed such a fat fee from cooperation with the NSA in 5 | >the design and propoganda stages that she doesn't care any more? 6 | 7 | Which is to say: is the NSA -totally- perfidious, or does it at least 8 | have the redeeming virtue of taking care of its own? 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11044-15322: -------------------------------------------------------------------------------- 1 | From: schinagl@fstgds15.tu-graz.ac.at (Hermann Schinagl) 2 | Subject: Need source of FEAL encrytion algorithm 3 | 4 | Hi ! 5 | 6 | I am interested in the source of FEAL encryption algorithm. 7 | Does someone of you know where I can get the source from, or 8 | where I can find documentation about FEAL. 9 | 10 | Thanks in advance 11 | 12 | 13 | Ciao Hermann 14 | 15 | Please email me !!! 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11063-15822: -------------------------------------------------------------------------------- 1 | From: stan@tacobel.UUCP (stan) 2 | Subject: Re: I have seen the lobby, and it is us 3 | 4 | ns111310@LANCE.ColoState.Edu (Nathaniel Sammons) writes: 5 | > I second the motion. 6 | > 7 | > All in favor? 8 | 9 | In favor. If y'all have any newsletters or are taking down addresses for 10 | any in the future, feel free to put me on such a list. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11065-15592: -------------------------------------------------------------------------------- 1 | From: gtoal@gtoal.com (Graham Toal) 2 | Subject: Re: Off the shelf cheap DES keyseach machine (Was: Re: Corporate acceptance of the wiretap chip) 3 | 4 | I think I should also point out that the mystical DES engines 5 | are known plaintext engines (unless you add a ton of really smart 6 | hardware?) 7 | 8 | Assume the ton of smart hardware. It doesn't really have to be that smart. 9 | 10 | G 11 | 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11106-15737: -------------------------------------------------------------------------------- 1 | From: agk@neural.hampshire.edu (Andrew Kriger) 2 | Subject: Re: How to detect use of an illegal cipher? 3 | 4 | 5 | could someone repost or send to me via email the original posting of the 6 | Clipper Chip press release. 7 | 8 | thanks 9 | 10 | andrew kriger 11 | hampshire college 12 | agk@neural.hampshire.edu 13 | -- 14 | Andrew Kriger "Three may keep a secret 15 | Hampshire College if two of them are dead" 16 | agk@neural.hampshire.edu ---Benjamin Franklin 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11127-16353: -------------------------------------------------------------------------------- 1 | From: schlege@lips.ecn.purdue.edu (Kevin L Schlegelmilch) 2 | Subject: Source code for Substitution cipher 3 | 4 | I was wondering if anyone knew of where I could find source 5 | code for a program to solve a substitution cipher? 6 | 7 | Thanks! 8 | Kevin 9 | 10 | (Please post your answer instead of e-mailing me directly) 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11142-15410: -------------------------------------------------------------------------------- 1 | From: skt@dcs.glasgow.ac.uk (Simon K Train) 2 | Subject: Help me please! 3 | 4 | I am a PhD student. 5 | Can I get the sci.crypt group posted directly to me??? 6 | Also I would like some feed-back on the encryption schemes that my research in 7 | finite fields can be applied to. Any takers 8 | Reply to gamv25@udcf.gla.ac.uk 9 | Thanks yours 10 | Gavin. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11170-15786: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Overreacting (was Re: Once tapped, your code is no good any more) 3 | 4 | It is my intent to cut the government off at the knees with the pen 5 | (and keyboard). True, the lawyer and the lawbook only go so far, but 6 | I agree that it is best to use those resources to the maximum extent 7 | before seriously contemplating anything more... disruptive. 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11180-16020: -------------------------------------------------------------------------------- 1 | From: jbs@watson.ibm.com 2 | Subject: Re: Clipper chip 3 | 4 | Is it realistic for the government to try to keep the details 5 | of the encrytion algorithm secret if it intends to use evidence from 6 | wiretaps in court? Won't defense attorneys attempt to obtain the 7 | details of the method if the prosecution attempts to present evidence 8 | from wiretaps in court? Is it certain that such attempts will fail? 9 | James B. Shearer 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11186-15369: -------------------------------------------------------------------------------- 1 | From: 2 | Subject: Re: Clipper -- some new thoughts 3 | 4 | The cryptographic algorythm MUST be kept secret, or 5 | private individuals could make ClipperClones with 6 | which they could transmit messages which the feds would not have 7 | ready access to. This is clearly unacceptable. 8 | 9 | I hope somebody starts doing this soon after the first 10 | ones are released... 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11190-16141: -------------------------------------------------------------------------------- 1 | From: koontzd@phobos.lrmsc.loral.com (David Koontz ) 2 | Subject: Re: triple des 3 | 4 | 5 | Please post to news, too. 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11192-15355: -------------------------------------------------------------------------------- 1 | From: mcbeeb@atlantis.CSOS.ORST.EDU (Brian Mcbee) 2 | Subject: How can clipper stay classified? 3 | 4 | Maybe I don't know enough to know what I am asking, but with millions 5 | of these things about, how could the algorythm possibly stay secret? 6 | Couldn't some clever hackers just grind the thing down layer by layer, 7 | and see how it worked? 8 | 9 | -- 10 | ---- 11 | Brian McBee mcbeeb@atlantis.cs.orst.edu Finger me for PGP 2.1 key 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11258-15943: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Secret algorithm [Re: Clipper Chip and crypto key-escrow] 3 | 4 | > Though I think this an overstatement, it does contain a grain of truth. It's 5 | >drug dealers, spies, terrorists, and organized crime figures (assuming 6 | >enough probable cause to convince a judge) who need to be watched, not 7 | >law-abiding citizens. 8 | 9 | Don't tell me; tell the Feds. They, not I, need to get a clue about this. 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11279-15367: -------------------------------------------------------------------------------- 1 | From: "Douglas Johnson" 2 | Subject: Unix crypt for DOS 3 | 4 | I've recently moved from Unix to a DOS box and have a number of files 5 | that I used crypt to "protect". Does anyone know of a DOS version of 6 | crypt? I've found one, but it insists on six letter keys and I used 7 | some shorter ones. Thanks for your help. -- Doug 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11292-15909: -------------------------------------------------------------------------------- 1 | From: gtoal@gtoal.com (Graham Toal) 2 | Subject: Re: PGP ideas for IBM systems 3 | 4 | : I've been thinking about how difficult it would be to make PGP available 5 | : in some form on EBCDIC machines. 6 | 7 | Don't encourage them. Let EBCDIC machines die an honorable death :) 8 | 9 | G 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11295-15596: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Fighting the Clipper Initiative 3 | 4 | > er, excuse me but since the escrow agencies aren't yet chosen, how can you 5 | >say they have a "history of untrustworthy behavoir[sic]"? 6 | 7 | I refer to the Federal law enforcement apparatus (which is ultimately in 8 | charge of this) generally. 9 | 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11307-16062: -------------------------------------------------------------------------------- 1 | From: jin@spdcc.com (Jerry Natowitz) 2 | Subject: PD code for crypt(1) like encryption 3 | 4 | I am looking for some Public Domain (and exportable) code for 5 | encryption. Nothing elaborate, just something that will satisfy 6 | a marketing need :-) 7 | Oh yes, UNIX platform. 8 | -- 9 | Jerry Natowitz 10 | Guest user on: 11 | ARPA jin@ursa-major.spdcc.com 12 | UUCP {ima,harvard,rayssd,linus,m2c}!spdcc!jin 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11322-15758: -------------------------------------------------------------------------------- 1 | From: gardner@convex.com (Steve Gardner) 2 | Subject: Re: Clipper will corrupt cops (was WH proposal from Police point of view) 3 | 4 | In article <1993Apr21.041033.16550@news.clarkson.edu> tuinstra@signal.ece.clarkson.edu.soe writes: 5 | >Clipper will make criminals out of cops. Do we want to do this to our 6 | >police forces? 7 | The War on some drugs has already turned alot of police into 8 | criminals. This is yet another nail in the constitution's coffin. 9 | 10 | 11 | smg 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11335-16008: -------------------------------------------------------------------------------- 1 | From: spp@zabriskie.berkeley.edu (Steve Pope) 2 | Subject: Re: What is going on?... 3 | 4 | sdoty@odie.santarosa.edu (Scott Doty) writes: 5 | 6 | > But it does look like csrc.ncsl.nist.gov has become an 7 | > un-machine. If someone would try ftp'ing to it, or knows what's up, 8 | > I'd really appreciate the info. 9 | 10 | csrc.ncsl.nist.gov (129.6.54.11) is ftp-able from here... 11 | 12 | 13 | Steve 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11341-15470: -------------------------------------------------------------------------------- 1 | From: tedwards@wam.umd.edu (technopagan priest) 2 | Subject: Re: Would "clipper" make a good cover for other encryption method? 3 | 4 | In article <1993Apr20.032623.3046@eff.org> kadie@eff.org (Carl M. Kadie) writes: 5 | >Clipper might be a good way to cover the use of another layer of 6 | >encryption. 7 | 8 | True, but will traditional encryptions schemes, when further encrypted 9 | by Clipper, be _more_ vulnerable to attacks such as partially known 10 | plaintext? 11 | 12 | -Thomas 13 | 14 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11348-15907: -------------------------------------------------------------------------------- 1 | From: steve-b@access.digex.com (Steve Brinich) 2 | Subject: Re: Suggestions for escrow agencies (was: Re: More technical details) 3 | 4 | On the contrary, the entire Clipper proposal is an example of the 5 | government servicing the people (in the sense of the term found in the 6 | sentence, "The farmer paid $100 to rent a bull to service his cows.") 7 | 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11376-15949: -------------------------------------------------------------------------------- 1 | From: pmetzger@snark.shearson.com (Perry E. Metzger) 2 | Subject: Re: Tempest 3 | 4 | whughes@lonestar.utsa.edu (William W. Hughes) writes: 5 | >Hell, just set up a spark jammer, or some other _very_ electrically-noisy 6 | >device. 7 | 8 | As I've noted, you can likely get around that with a directional 9 | sensor. Phased array systems could completely defeat this scheme. 10 | 11 | -- 12 | Perry Metzger pmetzger@shearson.com 13 | -- 14 | Laissez faire, laissez passer. Le monde va de lui meme. 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11385-15898: -------------------------------------------------------------------------------- 1 | From: ed@titipu.resun.com (Edward Reid) 2 | Subject: Re: Once tapped, PLEASE RESTRICT YOUR FOLLOWUPS 3 | 4 | However valuable, this discussion does NOT belong on comp.org.acm or on 5 | comp.org.ieee. Please edit your followups to include only the appropriate 6 | newsgroups. 7 | 8 | -- 9 | Edward Reid Greensboro FL ed@titipu.resun.com or nosc!blkhole!ed 10 | (looking for programming contracts, especially Unisys A-Series) 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11387-16029: -------------------------------------------------------------------------------- 1 | From: weaver@kuttner.sfc.sony.com (Eric Weaver) 2 | Subject: Citations for Electronic Cash papers please 3 | 4 | 5 | Deeply grateful for citations to any papers on electronic cash schemes. 6 | Enquiring minds &c... 7 | -- 8 | Eric Weaver Sony AVTC 677 River Oaks Pkwy, MS 35 SJ CA 95134 408 944-4904 9 | & Chief Engineer, KFJC 89.7 Foothill College, Los Altos Hills CA 94022 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11388-15841: -------------------------------------------------------------------------------- 1 | From: mathew 2 | Subject: Re: Screw the people, crypto is for hard-core hackers & spooks only 3 | 4 | ifarqhar@laurel.ocs.mq.edu.au (Ian Farquhar) writes: 5 | > Hmmm... I also wonder what Intergraph thinks about the use of the name 6 | > "Clipper" for this device. :) 7 | 8 | Not to mention Computer Associates. I'll have to be careful to stop telling 9 | people I'm a Clipper programmer, they might lynch me... :-) 10 | 11 | 12 | mathew 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11421-15494: -------------------------------------------------------------------------------- 1 | From: ted@nmsu.edu (Ted Dunning) 2 | Subject: Re: text of White House announcement and Q&As on clipper chip encryption 3 | 4 | 5 | nobody seems to have noticed that the clipper chip *must* have been 6 | under development for considerably longer than the 3 months that 7 | clinton has been president. this is not something that choosing 8 | choosing bush over clinton would have changed in the slightest; it has 9 | been in the works for some time. 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11423-15389: -------------------------------------------------------------------------------- 1 | From: gtoal@gtoal.com (Graham Toal) 2 | Subject: Re: Clipper chip -- technical details 3 | 4 | The protocol/key-management description published so far is either 5 | incomplete or incorrect. It leaves me with no idea of how the system 6 | would actually _work_. I hope the CPSR FOIA request succeeds so that 7 | we get full details. 8 | 9 | Wouldn't it be easier just to ask denning@cs.georgetown.edu? ;-) 10 | 11 | G 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11453-16357: -------------------------------------------------------------------------------- 1 | From: ji@cs.columbia.edu (John Ioannidis) 2 | Subject: Re: Organized Lobbying for Cryptography 3 | 4 | In article <1993Apr30.004519.7741@csus.edu> sphughes@sfsuvax1.sfsu.edu (Shaun P. Hughes) writes: 5 | > 6 | >Perhaps someone should ask Zippy the Pinhead for his opinion. :) 7 | > 8 | 9 | Yow! Am I ENCRYPTING yet? 10 | 11 | Didn't we go over this guns'n'crypto discussion a few months ago? Must 12 | we go over it again? 13 | 14 | /ji 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11454-16146: -------------------------------------------------------------------------------- 1 | From: rboudrie@chpc.org (Rob Boudrie) 2 | Subject: Re: Suggestions for escrow agencies (was: Re: More technical details) 3 | 4 | >What are the assurances the escrow people will not be FORBIDDEN to 5 | >report any access attempts for one's keys? 6 | 7 | 8 | In NY State it is already a crime to inform anyone of a law enforcement 9 | wiretap on their phone, even if the person doing the informing learns 10 | about it through "non privliged" means. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11459-15966: -------------------------------------------------------------------------------- 1 | From: smb@research.att.com (Steven Bellovin) 2 | Subject: Re: Clipper and conference calls 3 | 4 | In article <122723@netnews.upenn.edu>, feeley@cattell.psych.upenn.edu (Wm. Michael Feeley) writes: 5 | > Just curious, how would the Clipper Chip system handle 6 | > conference calls? 7 | 8 | It's not Clipper, it's any encryption system. I've seen a number of 9 | designs; they generally involve a multi-line cleartext bridge. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11533-15258: -------------------------------------------------------------------------------- 1 | From: george@minster.york.ac.uk 2 | Subject: Non-word password generator 3 | 4 | Does anyone know of a non-word password generator program 5 | for PC's?? i.e. it will produce a nonsense word but still 6 | be pronouncible. e.g. lisgollan 7 | 8 | Wanted to "force" users to adopt more secure passwords, 9 | but still be memorable! 10 | 11 | Thanks - George Bolt 12 | 13 | p.s. please email me as well if possible "george@psychmips.york.ac.uk" 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11572-16063: -------------------------------------------------------------------------------- 1 | From: paul@fairgate.com 2 | Subject: Birthday attack? 3 | 4 | 5 | I recently saw a message here (posted by Bob Silverman, I think) which 6 | referred to a "birthday" attack on a cryptosystem. I'm looking for 7 | references on, and explanations of, this type of attack. 8 | 9 | Thanks, 10 | -Paul 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11581-15919: -------------------------------------------------------------------------------- 1 | From: feustel@netcom.com (David Feustel) 2 | Subject: Re: The Escrow Database. 3 | 4 | And the fox has rabies too. 5 | -- 6 | Dave Feustel N9MYI 7 | 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.crypt/11603-16101: -------------------------------------------------------------------------------- 1 | From: C445585@mizzou1.missouri.edu (John Kelsey) 2 | Subject: forbidden to reveal wiretap? 3 | 4 | 5 | If it's forbidden to inform someone of a police wiretap on their phone, then 6 | is it legal to work privtely as a "sweeper," and report to the person you 7 | work for whether you found a bug? 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11620-54278: -------------------------------------------------------------------------------- 1 | From: bsc_graham@vd.seqeb.gov.au 2 | Subject: FM Transmitter ICs- Help!!!!! 3 | 4 | I am trying to design a small 90mW 472MHz FM transmitter for remote alarm 5 | use. 6 | 7 | Is there an FM transmitter IC available that can be used for this purpose? 8 | 9 | Any help, circuits, info etc will be greatfully accepted. 10 | 11 | Please reply to bsc_graham@seqeb.gov.au 12 | 13 | Thanks in advance. 14 | 15 | Graham Castledine. 16 | 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11621-54137: -------------------------------------------------------------------------------- 1 | From: rpo@trsvax.tandy.com 2 | Subject: Re: IR detector 'cards'??? 3 | 4 | 5 | Radio Shack stores sell them here in the States. Not sure if 6 | InterTan is carrying these for Australia or not... 7 | 8 | Cost is $6 USD. You charge them under a fluorescent, then 9 | they glow when exposed to IR. 10 | 11 | Paul Opitz 12 | Radio Shack Publications 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11633-53671: -------------------------------------------------------------------------------- 1 | From: sundar@fiber-one.ai.mit.edu (Sundar Narasimhan) 2 | Subject: how much would a Tektronix 2465A oscilloscope fetch 3 | 4 | Hi: I'd like to know how much the foll. equipment will fetch in the used 5 | equipment market (without manuals or other accessories): 6 | 1. Tektronix 2465 scope 7 | 2. Tektronix 2465A scope 8 | 3. Tektronix 1240 logic analyser 9 | 10 | Thanks much for your help. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11643-54177: -------------------------------------------------------------------------------- 1 | From: nelson@sun.soe.clarkson.edu (Russ Nelson) 2 | Subject: Proposal: alt.fan.tesla 3 | 4 | For discussion of Nikolai Tesla (who else??) 5 | 6 | -- 7 | --russ Businesses persuade; Governments force. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11651-54483: -------------------------------------------------------------------------------- 1 | From: ftqz@aurora.alaska.edu 2 | Subject: Re: Looking for a good book on Pspice 5.2 3 | 4 | In article , v064mb9k@ubvmsb.cc.buffalo.edu (NEIL B. GANDLER) writes: 5 | > I just got a copy of spice 5.2. I would like to know if there are 6 | > any published books on the market yet and where I could get one. I would 7 | > appreciate any help. Thank You 8 | > 9 | > Neil Gandler 10 | > 11 | ISBN 0-13-747270-6 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11657-54296: -------------------------------------------------------------------------------- 1 | From: Mike Diack 2 | Subject: FREE! EPROM eraser/PCB exposer(Twin cities collect) 3 | 4 | This inelegant device started life as a 175 watt security lamp, until 5 | i smashed off the outer glass to liberate the nasty rays, It works a 6 | treat, weighs a heap (due to the ballast) , and NO - i wont ship it !! 7 | cheers 8 | Mike. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11661-53993: -------------------------------------------------------------------------------- 1 | From: kolstad@cae.wisc.edu (Joel Kolstad) 2 | Subject: Re: Can Radio Freq. Be Used To Measure Distance? 3 | 4 | In article <72020037@otter.hpl.hp.com> tgg@otter.hpl.hp.com (Tom Gardner) writes: 5 | >What is the difference between vertical and horizontal? 6 | 7 | Gravity? Doesn't gravity pull down the photons and cause a doppler shift 8 | or something? 9 | 10 | 11 | 12 | 13 | 14 | (Just kidding!) 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11664-53692: -------------------------------------------------------------------------------- 1 | From: mlee@eng.sdsu.edu (Mike Lee) 2 | Subject: Wire-Amperage table needed 3 | 4 | 5 | Does anyone has a table about the size of the wire to the amount of current it can carry. Probably in the 1-15amp range. My friend is interested in converting a Mazda into an electric car. Needed information for estimation. Thanks in advance. 6 | 7 | p.s. any info on electric will be greatly appreaciated. 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11666-53902: -------------------------------------------------------------------------------- 1 | From: leblanc@cvm.msu.edu (Pat Leblanc) 2 | Subject: wireless data transfer 3 | 4 | I am involved with a Michigan company that has an application requiring 5 | wireless data transfer. If you have expertise or information that may 6 | assist us in this project, please contact me (INTERNET: leblanc@cvm.msu. 7 | edu). 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11676-54069: -------------------------------------------------------------------------------- 1 | From: kuusama@kaarne.cs.tut.fi (Kuusama Juha,,,VTT,) 2 | Subject: Why circuit boards are green? 3 | 4 | Not that the question is anything important, but I am still curious: 5 | Why is that almost all printed circuit boards are green? I have seen 6 | a few blue ones, but no red, yellow, company logo etc. Is there a 7 | technical reason or could it be that the marketing "geniuses" have 8 | not tought about it (yet)? 9 | -- 10 | Juha 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11683-53947: -------------------------------------------------------------------------------- 1 | From: wayne@uva386.schools.virginia.edu (Tony Wayne) 2 | Subject: Pink Noise 3 | 4 | What is Pink noise and how is it used in sound experiments? 5 | -tony 6 | wayne@uva386.schools.virginia.edu 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11699-53729: -------------------------------------------------------------------------------- 1 | From: andrei@labomath.univ-orleans.fr (Andrei Yakovlev) 2 | Subject: References to switched-capacitor filter ICs wanted. 3 | 4 | 5 | Hi All! 6 | 7 | I would like to know what are the popular ICs of the type, their capabilities 8 | (# of channels et.c.) and prices :-) 9 | 10 | Great thanks, 11 | 12 | Andrew. 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11703-53926: -------------------------------------------------------------------------------- 1 | From: jam@ameslab.gov (Jerry Musselman) 2 | Subject: UART needed 3 | 4 | I need to find a UART that will interface to an 8051 and do the following: 5 | -250k baud, 8 data bits, 2 stop bits, no parity 6 | -ability to do BREAK detect (IRQ or output pin) 7 | -IRQ on character received 8 | 9 | I'm using a Dallas DS2250 at 16 Mhz (8051 clone), but it won't do 10 | break detect. I've looked at the 6850, 8251, 7201, 2661, etc... 11 | 12 | Any help would be appriciated!!! 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11704-53812: -------------------------------------------------------------------------------- 1 | From: kng@pt.com (Ken Gravenstede) 2 | Subject: Decent, CHEAP 20+MHZ Scopes? 3 | 4 | Any info on modern 20MHZ or better dual trace scopes would be appreciated. 5 | Should I buy a used one or a new one? And where? 6 | 7 | Please E-Mail. 8 | 9 | Thanks in advance. 10 | 11 | Ken 12 | -- 13 | __ 14 | Ken Gravenstede, Performance Technologies Incorporated kng@pt.com 15 | 315 Science Parkway, Rochester, New York 14620 uupsi!ptsys1!kng 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11707-54118: -------------------------------------------------------------------------------- 1 | From: cyberman@toz.buffalo.ny.us (Cyberman) 2 | Subject: NEED help finding parts! 3 | 4 | OK I posted this B4 but: 5 | 6 | ___ Blue Wave/QWK v2.12 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11713-53866: -------------------------------------------------------------------------------- 1 | From: rogerw@world.std.com (Roger A Williams) 2 | Subject: Re: 68HC16 public domain software? 3 | 4 | Doesn't Motorola AMCU have something on the BBS yet? (512-891-3733) 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11722-52830: -------------------------------------------------------------------------------- 1 | From: Joseph N Hosteny 2 | Subject: Re: Electric power line "balls" 3 | 4 | 5 | Do you know if there is an airport nearby? They may just be markers 6 | to tell pilots of small planes that there are power lines nearby. 7 | 8 | /Joe 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11730-54098: -------------------------------------------------------------------------------- 1 | From: alany@tekig5.pen.tek.com (Alan Yelvington) 2 | Subject: Re: Lead Acid batteries & Concrete? 3 | 4 | The battery goes dead primarily becaust the floor is cold. The temperature 5 | combined with self-discharge promotes sulfation which ruins the plates of 6 | the battery. I strongly suspect that the only reason the battery doesn't 7 | go dead as quickly on a dirt surface is because cement tends to be quite 8 | cooler. 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11732-54210: -------------------------------------------------------------------------------- 1 | From: fuchs@tsar.princeton.edu (Ira H. Fuchs) 2 | Subject: Removing battery corrosion 3 | 4 | Is there a readily available solvent that does a good job at removing the 5 | corrosion/encrustation that collects on the battery terminals (usually the 6 | cathode) when using alkaline batteries (or more accurately, when NOT using 7 | them for a long time)? 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11744-53952: -------------------------------------------------------------------------------- 1 | From: ulan@ee.ualberta.ca (Dale Ulan) 2 | Subject: Part MC68SEC811E2 3 | 4 | 5 | I know what the 68HC811E2 is all about, but I'm trying to figure 6 | out what the 68SEC811E2 is... specifically, what does the SEC 7 | stand for? 8 | 9 | ---- 10 | Dale Ulan VE6DAU ulan@ee.ualberta.ca 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11745-54264: -------------------------------------------------------------------------------- 1 | From: rowley@netcom.com (Thomas Rowley) 2 | Subject: Re: Voice synth chips 3 | 4 | Alltronics in San Jose (408) 943-9773 sells the Votrax Sc-01 Speech Synthesis 5 | chip for about $5.00. Also I noticed that Radio Shack sells the ISD chip which 6 | will store small amounts of digitized speech. 7 | 8 | Good Luck 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11753-53985: -------------------------------------------------------------------------------- 1 | From: hughes@jupiter.ral.rpi.edu (Declan Hughes) 2 | Subject: Manual for Eprom Blower (Logical Devices Prompro-8) Wanted 3 | 4 | 5 | I have an eprom blower made by Logical Devices and the 6 | model name is Prompro-8, but I have lost the manual. Does anyone 7 | have a spare manual that they would like to sell ? 8 | 9 | Declan Hughes 10 | hughes@ral.rpi.edu 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11777-54070: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/11777-54070 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11799-52726: -------------------------------------------------------------------------------- 1 | From: rajan@cco.caltech.edu (Rajan Ranga) 2 | Subject: An external timer 3 | 4 | I was wondering if anyone knows of a chip that that is similar to 5 | the internal timer 0 on the Intel 80C188? I want a timer that has 6 | a Maxcount A and B and the output should the same as Intel's timer. I called 7 | Intel and they told me that they don't make such a chip. Any suggestions 8 | are welcome. Thanks in advance. 9 | 10 | Rajan Ranga 11 | E-mail: rajan@cco.caltech.edu 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11800-54298: -------------------------------------------------------------------------------- 1 | From: nilesh@shakti.ncst.ernet.in (Nilesh Parikh) 2 | Subject: HELP : Wanted Pinouts of OKI 58321, RTC 3 | 4 | Can anybody send me Pinouts of Real Time Clock IC of OKI Semiconductors, 5 | 58321. I wish to know if any RTC IC of OKI has an inbuilt crystal rather 6 | than an external 32.768KHz crystal. 7 | Thanks in advance. 8 | Nilesh Parikh 9 | nilesh@shakti.ncst.ernet.in 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11801-54268: -------------------------------------------------------------------------------- 1 | From: u95_dgold@vaxc.stevens-tech.edu 2 | Subject: EMI filter, What's in it? 3 | 4 | Could someone tell me what's in a Cornell-Dubilier EMI Filter 5 | FIL 3363-001? 6 | 7 | It is rated at 13A 115/250VAC 50/60HZ. Is it just MOV's and ferrite? 8 | 9 | Dave / n2mxx 10 | Stevens Institute of Technology 11 | Hoboken, New Jersey 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11810-52756: -------------------------------------------------------------------------------- 1 | From: blakey@ug.cs.dal.ca (Jason Blakey) 2 | Subject: FTP sites anyone? 3 | 4 | Hello netters:) Does anyone out there know any FTP sites for projects, 5 | plans, etc of an electrical nature? 6 | 7 | -Jason 8 | -- 9 | ............................................................................ 10 | Jason Blakey -> blakey@ug.cs.dal.ca 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11811-54179: -------------------------------------------------------------------------------- 1 | From: dws30@p1hdb01cd.amdahl.com (David Sharpe) 2 | Subject: Re: Pink Noise 3 | 4 | 5 | Pink Noise and White Noise are equal amounts of all frequencies. This 6 | is in most cases around the 20-3.3K Hz range. Pink/White are used to 7 | adjust for room dynamics and stuff like that. There are a few EQ's out 8 | on the market that have Pink noise built in. Most all from Audio 9 | Control have them I know the C-101 does. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11814-54032: -------------------------------------------------------------------------------- 1 | From: dougwong@cco.caltech.edu (Douglas M. Wong) 2 | Subject: Silicon Storage Inc. 3 | 4 | I would appreciate very much the address and/or phone # of 5 | this company. They supposely make analog EEPROMS. Thanks in 6 | advance. 7 | 8 | Doug. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11819-52768: -------------------------------------------------------------------------------- 1 | From: jmichael@vnet.IBM.COM 2 | Subject: Re: A to D hardware for a PC 3 | 4 | If you can find a copy of "8088 Assembler Language Programming: The IBM PC" 5 | by Willen and Krantz, 2nd ed. pub. by Sams, there is a discussion of the 6 | game control adapter, monostable multivibrators, and conversion to other 7 | uses, as well as an assembler program. If you need greater accuracy, there 8 | is no reason you couldn't modify the approach to suit your needs. 9 | 10 | Jim 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11820-52750: -------------------------------------------------------------------------------- 1 | From: Wayne Alan Martin 2 | Subject: Re: Help with ultra-long timing 3 | 4 | Sounds like a job for a universal time reciever. I don't know the 5 | logisitics of the situation, but if you could just place a reciever in 6 | snow and place the oscillator in a nice lab somewhere else, your 7 | problems should be solved. 8 | Just a suggestion. 9 | 10 | Wayne Martin 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11831-54025: -------------------------------------------------------------------------------- 1 | From: goofy@howlin.cs.unlv.edu (David Haag) 2 | Subject: Test 3 | 4 | This is just a test to see if this works. 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11835-52788: -------------------------------------------------------------------------------- 1 | From: jmichael@vnet.IBM.COM 2 | Subject: Electric power line "balls" 3 | 4 | Power lines and airplanes don't mix. In areas where lines are strung very 5 | high, or where a lot of crop dusting takes place, or where there is danger 6 | of airplanes flying into the lines, they place these plastic balls on the 7 | lines so they are easier to spot. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11858-53780: -------------------------------------------------------------------------------- 1 | From: loving@lanai.cs.ucla.edu (Mike Loving) 2 | Subject: specs on eprom data formats 3 | 4 | 5 | I need the specs on various eprom data formats such as Intel Hex, Motorola S 6 | JEDEC etc. 7 | 8 | 9 | Can anyone out there provide such info or a pointer to it? 10 | The one I want the most is Intel Hex. 11 | 12 | Mike 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11859-54336: -------------------------------------------------------------------------------- 1 | From: inelson@gopher.cc.ucf.edu (Ian Nelson - I&R IBM Consultant) 2 | Subject: Old schematics 3 | 4 | Wonder if anyone would know where (or if) I could find the schematic for the 5 | old Timex-sinclare (sp) computer... Or even a pin out on the expansion bus?? 6 | 7 | Thanks in advance.. 8 | Ian Nelson 9 | (inelson@ucf1vm.cc.ucf.edu) 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11865-54027: -------------------------------------------------------------------------------- 1 | From: koberg@spot.Colorado.EDU (Allen Koberg) 2 | Subject: Packet Radio on the PC 3 | 4 | I'm looking for any and all information regarding packet radio 5 | implementation on the PC. Software, hardware, whatever. 6 | 7 | Please e-mail any info to koberg@spot.colorado.edu. 8 | 9 | Thanks 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11874-52804: -------------------------------------------------------------------------------- 1 | From: corleyg@ul.ie 2 | Subject: Microstrip help wanted 3 | 4 | I need information on microstrip circuit design especially 5 | filter design for the 1-3GHz range. Can you recommend any 6 | good books, journals, or microstrip circuit design software. 7 | . 8 | all help appreciated 9 | 10 | Gerry Corley, ECE Department, Univesity of Limerick, Ireland. 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11879-54288: -------------------------------------------------------------------------------- 1 | From: yxy4145@ucs.usl.edu (Yu Yingbin) 2 | Subject: Does any one know what is the biggest ROM for present ? 3 | 4 | Please replay to : yxy4145@usl.edu 5 | Thanks a lot 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11884-53760: -------------------------------------------------------------------------------- 1 | From: yxy4145@ucs.usl.edu (Yu Yingbin) 2 | Subject: Does someone know what is the news group for IEEE. 3 | 4 | yxy4145@usl.edu Thanks a lot. 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11900-54111: -------------------------------------------------------------------------------- 1 | From: vanderby@mprgate.mpr.ca (David Vanderbyl) 2 | Subject: Re: Question on addressing... (correction) 3 | 4 | A little correction on my previous post about an hour ago. 5 | Please replace the term 'EEPROM' with the term 'EPROM' wherever it appears. 6 | (Don't not why I added that extra 'E' every time.) 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11907-53742: -------------------------------------------------------------------------------- 1 | From: mjhill@eos.ncsu.edu (MICHAEL JAMES HILL) 2 | Subject: New applications of electronics 3 | 4 | 5 | 6 | I'm looking for brief information on new 7 | applications of electronics (or new electronics in 8 | applications.) If you know of any interesting new 9 | stuff, I would be intrested in hearing about it. 10 | 11 | Thanks, MJH 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11909-53645: -------------------------------------------------------------------------------- 1 | From: rgc3679@bcstec.ca.boeing.com (Robert G. Carpenter) 2 | Subject: Re: Can Microwaves Be Used To Collect XYZ Coordinates 3 | 4 | Where can you get info (brochures...) on Differential GPS Systems and where to 5 | buy them? 6 | 7 | BobC 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11924-54071: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/11924-54071 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11926-53806: -------------------------------------------------------------------------------- 1 | From: d2bohre@dtek.chalmers.se (Henrik Bohre) 2 | Subject: Digital Answering mach 3 | 4 | Does anybody know anything about the chips D6275A/D6235A/D6205A chips from 5 | DSP Telecommunications Inc? 6 | 7 | I'd greatly appreciate information about price, pinouts and peripherals. 8 | 9 | Regards, 10 | 11 | Henrik Bohre 12 | 13 | @>-+-- 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11933-53829: -------------------------------------------------------------------------------- 1 | From: cantrell@sauron.msfc.nasa.gov (Eric Cantrell) 2 | Subject: EEG Kit? 3 | 4 | Awhile back someone posted some information on where you can get 5 | kits to build an EEG. Does anyone remember where you could get 6 | this. I'm very interested in getting some info on this. Thanks 7 | in advance. 8 | 9 | eric 10 | 11 | cantrell@sauron.msfc.nasa 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11952-54337: -------------------------------------------------------------------------------- 1 | From: mcole@spock (COLE) 2 | Subject: Disk drive read & write 3 | 4 | I am working on a project and am in need of information regarding the 5 | currents (at the head) needed to write to a hard drive and the currents 6 | produced when reading. If anyone has information it would be much 7 | appreciated. 8 | mcole@nmsu.edu 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11953-54216: -------------------------------------------------------------------------------- 1 | From: hugo@cats.ucsc.edu (Hugo Calendar) 2 | Subject: How universal are phones these days? 3 | 4 | 5 | I'm wondering if I can tote my American touch tone phone around with me 6 | to Sweden and Germany. It's DC powered, and I can buy a special adapter 7 | for that in Europe. The question is if the general electronics work 8 | the same. I can buy a different wall plug and refit it (I'm sure I'd 9 | have to), but would that do the trick? 10 | 11 | Thanks, 12 | Hugo 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11961-53643: -------------------------------------------------------------------------------- 1 | From: kolstad@cae.wisc.edu (Joel Kolstad) 2 | Subject: Radio Shack voice recognition chips 3 | 4 | Hi there, 5 | 6 | I have a friend who'd like to get a hold of a bunch of those simple voice 7 | recognition chips that Radio Shack used to sell (and no longer does). If 8 | anybody knows of a source for these, please e-mail me. I'll forward the 9 | responses to him. 10 | 11 | Thanks! 12 | 13 | ---Joel Kolstad 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11966-54153: -------------------------------------------------------------------------------- 1 | From: rwong1@ugly.UVic.CA (Richard Wong) 2 | Subject: Voice synth chips 3 | 4 | Does anyone know where I can get some voice synthesis chips?? 5 | I am looking for something like the ones that do the time and date 6 | stamp on answering machines. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11981-54140: -------------------------------------------------------------------------------- 1 | From: adrian@tasman.cc.utas.edu.au (Adrian Lewis) 2 | Subject: cleaning electronic equipment? 3 | 4 | Hi, 5 | Just a quick question. What standard lab solvents can be used to 6 | clean electronic equipment and components safely (ie not corrode, dissolve, 7 | short-out, etc the equipment)? 8 | water? :-) 9 | methanol? 10 | CCl4? 11 | etc? 12 | I am not an electronics type (surprise, surprise), and I want to avoid using 13 | freons. 14 | 15 | Thanks, Adrian 16 | 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11985-52772: -------------------------------------------------------------------------------- 1 | From: kenh@sail.LABS.TEK.COM (Ken Hillen) 2 | Subject: RF data transmission 3 | 4 | I need a off-the-shelf method of transmitting small amounts of data up to 5 | 300 feet. The data is low speed and can be encoded as needed. Low power 6 | on the transmitting end would be a plus. An FCC certified product would 7 | be prefered. 8 | 9 | If you have any pointers to products or companies I'd appreciate hearing from 10 | you. 11 | 12 | Thanks, 13 | Ken 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11989-52770: -------------------------------------------------------------------------------- 1 | From: hanavin@huey.udel.edu (Chuck Hanavin) 2 | Subject: Re: HeathKit/Zenith 3 | 4 | In article $LOGIN@austin.ibm.com writes: 5 | > 6 | >Does anyone out there have the toll-free (catalog request and order line) for 7 | >Heathkit/Zenith? Please post the number if you've got it! Thanks. 8 | 9 | ---------------------------------------------------- 10 | 1-800-253-0570 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11991-53864: -------------------------------------------------------------------------------- 1 | From: dnewman@lynx.dac.northeastern.edu (David F. Newman) 2 | Subject: arcade style buttons and joysticks 3 | 4 | Hi there, 5 | Can anyone tell me where it is possible to purchase controls found 6 | on most arcade style games. Many projects I am working on would 7 | be greatly augmented if I could implement them. Thanx in advance. 8 | 9 | -Dave 10 | dnewman@lynx.dac.northeastern.edu 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11997-53989: -------------------------------------------------------------------------------- 1 | Subject: Re: electronic parts in NYC? 2 | From: david tillyer 3 | 4 | Does anyone here know where I can find a modem and comm. software for 5 | an Apple IIe? I would prefer in Manhattan, but New Jersey would 6 | work too. David Tillyer, DATCC@CUNYVM.CUNY.EDU 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/11999-53883: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/11999-53883 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12001-53892: -------------------------------------------------------------------------------- 1 | From: cfb@fc.hp.com (Charlie Brett) 2 | Subject: FET-TRONS(sp?) 3 | 4 | Has anyone ever heard of FET-TRONS (or is it FETRONS, FETTRONS, ...). 5 | These were FET replacement modules for vacuum tubes. I'm looking for 6 | applications where they were used. 7 | 8 | Charlie Brett - HP Ft. Collins 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12006-53974: -------------------------------------------------------------------------------- 1 | From: pauls@trsvax.tandy.com 2 | Subject: Re: Need source for old Radio Shack ste 3 | 4 | 5 | It's made by Rohm. (as is all BAxxx parts). Call 714-855-2131 and ask if 6 | you can get a sample (it's only like a $2 part). 7 | 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12010-54033: -------------------------------------------------------------------------------- 1 | From: srgxnbs@grace.cri.nz 2 | Subject: Re: CAD Program for Electronics? 3 | 4 | >>What I want the CAD program to do is to draw diagrams by 5 | >>dragging elements onto the screen, and in this the elements 6 | >>needed are as diverse as vacuum tubes to ICs (case with pins). 7 | .. 8 | try DraftChoice, its not windows but its shareware and object 9 | oriented. Use it with PrintGL for high quality output. 10 | 11 | Bruce 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12011-54039: -------------------------------------------------------------------------------- 1 | From: mkrajci@wilkes1.wilkes.edu (Martin K.) 2 | Subject: Tunnel diodes on I-G SPICE 3 | 4 | 5 | Does anybody have an idea how to model a tunnel diode on SPICE? 6 | Thank you. 7 | 8 | Martin Krajci mkrajci@wilkes1.wilkes.edu 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12012-53849: -------------------------------------------------------------------------------- 1 | From: chin@ee.ualberta.ca (Jing Chin) 2 | Subject: Need Info on DSP project 3 | 4 | I want to start a DSP project that can maniplate music in a stereo cassette. 5 | Is that any chip set, development kit and/or compiler that 6 | can equilize/mix music? Ideally, The system should have D/A A/D converters & 7 | a DSP compiler. A rough estimate of the cost is greately appreciated. 8 | 9 | Thanks in advance. 10 | 11 | Regards, 12 | Jing Chin 13 | e-mail address:chin@bode.ee.ualberta.ca 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12015-53791: -------------------------------------------------------------------------------- 1 | From: mtrek@netcom.com (Chuck L. Peterson) 2 | Subject: 40MHZ Oscilloscope FOR SALE 3 | 4 | I'm giving up hardware design and 5 | am selling my Oscilloscope: 6 | 7 | BK Precision Model 1541B 8 | 40 MHZ Dual-Trace 9 | Barely Used 10 | $450 firm (Fry's sells it for $589+tax) 11 | 12 | Prefer people in Silicon Valley, so I don't have to ship it. 13 | 14 | mtrek@netcom.com 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12029-53636: -------------------------------------------------------------------------------- 1 | From: martinkm@leland.Stanford.EDU (Kenneth michael Martin) 2 | Subject: PADS model of a 68hc11. 3 | 4 | Has anyone done a model of the 52 pin version of the 68hc11? It doesn't 5 | seem to be too big a job, but if someone else has already done it ... 6 | 7 | many thanks 8 | Ken Martin 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12035-53887: -------------------------------------------------------------------------------- 1 | From: fishman@panix.com (Harvey Fishman) 2 | Subject: Re: electronic parts in NYC? 3 | 4 | There are also a couple or three places on West 45th between Fifth and 5 | Sixth. 6 | 7 | Harvey 8 | 9 | 10 | -- 11 | ---------------------------------------------------------------------------- 12 | Harvey Fishman | 13 | fishman@panix.com | You don't get smart except by asking stupid questions. 14 | 718-258-7276 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12039-53872: -------------------------------------------------------------------------------- 1 | From: pat@fegmania.wustl.edu (Pat Niemeyer) 2 | Subject: Re: Radar detector DETECTORS? 3 | 4 | >>> Are any brands "quieter" than others? 5 | 6 | >Yes some radar detectors are less detectable by radar detector 7 | >detectors. ;-) 8 | 9 | I have a Bel-966. 10 | I just looked at the manual yesterday... and it does indeed claim to be 11 | undetectable by RDD's. 12 | 13 | 14 | Pat 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12040-54015: -------------------------------------------------------------------------------- 1 | From: swwynen@undergrad.math.uwaterloo.ca (Steve W. Wynen) 2 | Subject: 68008 cross compilers and assemblers (Shareware?) 3 | 4 | Can anyone point me to a cross compiler and/or assembler for the Motorola 5 | 68008, hosted by a PC compatible. Preferable Free or Shareware. 6 | 7 | Also does anyone know of a GNU CC port to this chip. 8 | 9 | Thanks in advance. 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12067-53894: -------------------------------------------------------------------------------- 1 | From: v064mb9k@ubvmsb.cc.buffalo.edu (NEIL B. GANDLER) 2 | Subject: Radio Electronics Free information card 3 | 4 | 5 | How does the radio Electronics free information cards work. 6 | Do they just send you some general information about the companies that 7 | advertise in their magazine or does it also give you sign you up for a 8 | catalog. 9 | 10 | 11 | Neil Gandler 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12073-52717: -------------------------------------------------------------------------------- 1 | From: jml@norman.vi.ri.cmu.edu 2 | Subject: Re: Radar Jammers And Stealth Cars 3 | 4 | Eric H. Taylor writes 5 | > ... If you are determined 6 | > to go faster, get an airplane. They dont have speed limits. 7 | 8 | Just don't make a habit of buzzing your local airport at >200 knots 9 | (250 knots if you're flying a jet). :-) 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12074-54092: -------------------------------------------------------------------------------- 1 | From: gcarter@infoserv.com (George Carter) 2 | Subject: Re: Does someone know what is the news group for IEEE. 3 | 4 | In <1993Apr19.192953.22874@usl.edu> yxy4145@ucs.usl.edu (Yu Yingbin) writes: 5 | > yxy4145@usl.edu Thanks a lot. 6 | 7 | ieee.general 8 | 9 | and 10 | 11 | ieee.announce 12 | 13 | 14 | are the most frequently used groups. 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12076-53675: -------------------------------------------------------------------------------- 1 | From: mcole@spock (COLE) 2 | Subject: 8051 Microcontroller 3 | 4 | I would like to experiment with the INTEL 8051 family. Does anyone out 5 | there know of any good FTP sites that might have compiliers, assemblers, 6 | etc.? 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12078-53597: -------------------------------------------------------------------------------- 1 | From: Mike Diack 2 | Subject: Husky Programmer bits req'd 3 | 4 | Help !! - I'm looking for a ISA driver card and driver software for a 5 | Logical Devices Husky programmer (It aint mush good without these) 6 | can anyone help with either of these items ? 7 | cheers 8 | Mike. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12092-53715: -------------------------------------------------------------------------------- 1 | From: xandor@unixg.ubc.ca (John Gilbert ) 2 | Subject: Re: Exploding TV! 3 | 4 | Just as a not of possible interest on this subject .. 5 | It is my understanding that exploding televisions were a major cause of 6 | domestic accidents in the Soviet Union in past years! 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12099-54324: -------------------------------------------------------------------------------- 1 | From: rbhurtha@cs1.uct.ac.za (R BHURTHA) 2 | Subject: HD-TV SOUND SYSTEMS 3 | 4 | I would like to get some information on the current systems used for HD-TV 5 | sound systems.thanks. 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12101-53505: -------------------------------------------------------------------------------- 1 | From: obrien@hri.com (Jim Obrien) 2 | Subject: IBM-PC XT switch settings 3 | 4 | I just got an IBM-PC XT with no documents. Its a true 5 | IBM, and I was wondering if anyone had the definitions 6 | of the 2 8 position dip switches? 7 | 8 | - thankx Jim 9 | 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12103-53709: -------------------------------------------------------------------------------- 1 | From: ski@wpi.WPI.EDU (Joseph Mich Krzeszewski) 2 | Subject: Re: Need to find out number to a phone line 3 | 4 | In Texas (Well, Corpus Christi anyway) if you pick up the phone and dial 5 | 890 the phone company will read back the number to you. 6 | Try it. It might work. 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12106-53975: -------------------------------------------------------------------------------- 1 | From: pauls@trsvax.tandy.com 2 | Subject: Re: Need Info on DSP project 3 | 4 | 5 | Motorola has a good app note on a 10 band equalizer using a 56000 DSP. It 6 | could be easily ported to an Ariel board, or even a Turtle Beach 56K 7 | development system. 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12109-53594: -------------------------------------------------------------------------------- 1 | Subject: Re: Picking up cable tv with an aerial. 2 | From: ganter@ifi.unibas.ch (Robert Ganter) 3 | 4 | Great, the first advantage of cheap coax, I've ever heard. 5 | 6 | Cheers Robert (HB9NBY) 7 | 8 | -- 9 | Robert Ganter /------------\ 10 | Universitaet Basel | I am a fan | 11 | Institut fuer Informatik | of my plan | 12 | Basel/Switzerland \------------/ 13 | ganter@ifi.unibas.ch 14 | amateurradio: HB9NBY packet: HB9NBY@HB9EAS.CHE.EU 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12126-53520: -------------------------------------------------------------------------------- 1 | From: wex@cs.ulowell.edu (Paul M. Wexelblat) 2 | Subject: Re: A question about 120VAC outlet wiring.. (the truth) 3 | 4 | I suggest that misc.consumer.house is a better forum for this, several 5 | electricians, a huge FAQ that adresses ALL the issues raised here. 6 | 7 | -- 8 | 9 | ...Wex 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12128-52737: -------------------------------------------------------------------------------- 1 | Subject: Re: Principle_of_the_Breathalyzer 2 | From: srgxnbs@grace.cri.nz 3 | 4 | In NZ apparently things like aftershave are also giving positive 5 | readings 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12134-53745: -------------------------------------------------------------------------------- 1 | From: babb@sciences.sdsu.edu (J. Babb) 2 | Subject: Re: What do Nuclear Site's Cooling Towers do? 3 | 4 | > I really don't know where to post this question so I figured that 5 | > this board would be most appropriate. 6 | 7 | try sci.energy 8 | 9 | Jeff Babb 10 | babb@sciences.sdsu.edu babb@ucssun1.sdsu.edu 11 | Programmer, SDSU - LARC 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12141-53961: -------------------------------------------------------------------------------- 1 | From: Mike Diack 2 | Subject: Anyone got 200+ Schadow switches with LED? 3 | 4 | Name your price, cap colours & quantity available. 5 | cheers 6 | Mike 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12149-53773: -------------------------------------------------------------------------------- 1 | From: tron@ux1.cso.uiuc.edu (Tron R.) 2 | Subject: modulation over rf 3 | 4 | I would like to modulate a 40KHz squarewave over rf. This is for a rf 5 | remote control project. The squarewave has a high of 5 v and low of 0v. 6 | 7 | thanks. 8 | 9 | tron 10 | -- 11 | T 12 | T T 13 | T T T 14 | T T T 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12150-53784: -------------------------------------------------------------------------------- 1 | From: ptorre@hardy.u.washington.edu (Phil Torre) 2 | Subject: Circuit Cellar Ink address? 3 | 4 | Is CCI still published? If so, does anyone have their address? 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12155-53761: -------------------------------------------------------------------------------- 1 | From: khairon@usc.edu (Rosli Bin Khairon) 2 | Subject: Looking for Address of Noise Cancellation Tech. 3 | 4 | I am new to this newsgroup so I apologise if this is not the appropriate 5 | forum to ask this question. I am looking for the address of Noise Cancellation 6 | Technologies. It is rather important. So if you can help me in this regard, 7 | please do. Thank you. 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -- Rosli 17 | Khairon@aludra.usc.edu 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12169-54297: -------------------------------------------------------------------------------- 1 | From: wa2ise@netcom.com (Robert Casey) 2 | Subject: Re: Cable TVI interference 3 | 4 | If I remember rightly, there is a pulsating set of tones piped thru the CATV 5 | systems (somewheres near the FM broadcast band). And that the cable company 6 | trucks listen for this as they roam around town. If you can hear it over 7 | the air and not cable.... 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12186-53940: -------------------------------------------------------------------------------- 1 | From: paula@nlbbs.com (Paula Stockholm) 2 | Subject: Re: Need to find out number to a phone line 3 | 4 | In most areas of the country, serviced by ESS (or CESS), your phone 5 | -- 6 | 7 | * * * * * * * * * * * * * * * * * * * * * * * * * * * 8 | * paula@nlbbs.com * 9 | * Paula Stockholm Cumberland, Maine USA * 10 | * * * * * * * * * * * * * * * * * * * * * * * * * * * 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12189-53803: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/12189-53803 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12201-53619: -------------------------------------------------------------------------------- 1 | From: lperez@decserv2.eecs.wsu.edu (Luis G. Perez) 2 | Subject: Re: BEAM Robot Olympic Games next Week in Toronto. 3 | 4 | 5 | Does anybody know if there is a mailing list or newsgroup for 6 | Power Systems and related areas? 7 | 8 | Thanks, 9 | 10 | -- 11 | Luis G. Perez 12 | lperez@eecs.wsu.edu 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12210-52765: -------------------------------------------------------------------------------- 1 | From: leapman@austin.ibm.com 2 | Subject: HeathKit/Zenith 3 | 4 | 5 | Does anyone out there have the toll-free (catalog request and order line) for 6 | Heathkit/Zenith? Please post the number if you've got it! Thanks. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12211-53504: -------------------------------------------------------------------------------- 1 | From: rich1@netcom.com (Richard Soennichsen) 2 | Subject: Re: electronic odometers (was: Used BMW Question ..... ???) 3 | 4 | The Bmw speedo is triggered by a reed switch\magnet assembly in the differential. I would think that this signal would be easy to reproduce. 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12212-54332: -------------------------------------------------------------------------------- 1 | From: pguello@uwsuper.edu (Paul Guello) 2 | Subject: Re: solvent for duck tape adhesive 3 | 4 | If you want to try a non-toxic solvent, there's one made of citrus that 5 | works very well and doesn't take your skin off in the process. One brand 6 | name I've used is Citra-Solve, but there are others too. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12230-54227: -------------------------------------------------------------------------------- 1 | From: red@tina.dei.unipd.it (Piergiorgio Sartor 274199/IL) 2 | Subject: PALs, GALs 3 | 4 | Does anyone know how can I get detailed information about PALs and GALs. 5 | Please reply via e-mail. 6 | Thanks a lot in advance. 7 | -- 8 | red@paola.dei.unipd.it 9 | red@maya.dei.unipd.it 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12246-52785: -------------------------------------------------------------------------------- 1 | From: jmichael@vnet.IBM.COM 2 | Subject: Radar Detector DETECTORS? 3 | 4 | 5 | They detect the oscillator operating in the detector. Saw a story about 6 | their use in Canada. Now don't go putting oscillators in your cars... :-) 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12250-54281: -------------------------------------------------------------------------------- 1 | From: wesw@sr.hp.com (Wes Whiteley) 2 | Subject: Re: solvent for duct-tape adhesive? 3 | 4 | 5 | I have used a product called "Goof-off" it comes in a little yellow 6 | can (about the size of a deck of playing cards). 7 | 8 | It has worked well for removing all kinds of sticker and tape residues. 9 | 10 | NOTE: always test a small area in an inconspicuous place before using. 11 | 12 | Good luck, 13 | 14 | 15 | 16 | Wes Whiteley 17 | (707) 577-5292 18 | wesw@sr.hp.com 19 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12253-54333: -------------------------------------------------------------------------------- 1 | From: v064mb9k@ubvmsb.cc.buffalo.edu (NEIL B. GANDLER) 2 | Subject: Looking for a good book on Pspice 5.2 3 | 4 | 5 | I just got a copy of spice 5.2. I would like to know if there are 6 | any published books on the market yet and where I could get one. I would 7 | appreciate any help. Thank You 8 | 9 | Neil Gandler 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12254-53721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/12254-53721 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12266-52824: -------------------------------------------------------------------------------- 1 | From: dzenc@hal.gnu.ai.mit.edu (Dan Zenchelsky) 2 | Subject: VIdeotext/teletext descrambler 3 | 4 | Hi, 5 | 6 | I am looking for a PC card which does european videotext/teletext 7 | descrambling (PAL). Does anyone in the US sell such a card? I once 8 | saw an article about a card with the same functionallity in a 9 | european Elektor magazine, but I wasn't able to track it down. 10 | 11 | Thanx in advance, 12 | Dan 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12271-53768: -------------------------------------------------------------------------------- 1 | From: 2575brooksr@vms.csd.mu.edu 2 | Subject: NeXT cube board monitor cable ? 3 | 4 | Hi all! 5 | Quick question. Could someone please send me a pinout of 6 | the cable that goes between a NeXT cube and the monitor? Also, 7 | I am interested in the video signal (sync type, horz/vert rate) 8 | so any information on that would be greatly appreciated also. 9 | 10 | Thanks! 11 | Ryan Brooks ryan@agnus.mcs.mu.edu 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12307-54016: -------------------------------------------------------------------------------- 1 | From: ngupta@geds01.jsc.nasa.gov (ngupta) 2 | Subject: WANTED A SCOPE 3 | 4 | I am looking for a 20/40 MHz scope, in good condition. Please email me or call me at (713)280-2788. 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12330-53746: -------------------------------------------------------------------------------- 1 | From: Mike Diack 2 | Subject: 16 bit serial converters 3 | 4 | Someone was looking for these a few weeks ago - check out comp.dsp 5 | Mike. 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12331-52731: -------------------------------------------------------------------------------- 1 | From: laird@pasture.ecn.purdue.edu (Kyler Laird) 2 | Subject: Re: Telephone on hook/off hok ok circuit 3 | 4 | These circuits abound in most electronic project books. If you're more 5 | inclined to buy something, try Radio Shack. I think they still have a 6 | device that is designed to disconnect an answering machine when an 7 | extension line is lifted. It has LED indicators also. 8 | 9 | --kyler 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12357-54276: -------------------------------------------------------------------------------- 1 | From: malmedal@ulke.dhmolde.no (Terje Malmedal) 2 | Subject: Ranger2.0 shareware 3 | 4 | 5 | Hello. 6 | 7 | The last issue of Electronics world describes Ranger 2.0 a PCB CAD program. 8 | According to the article there is a crippled version available as shareware, 9 | does anybody know of any FTP sites/BBSes where this program may be found? 10 | 11 | Thanks in advance. 12 | -- 13 | - Terje 14 | malmedal@unix01.dhmolde.no 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12370-53617: -------------------------------------------------------------------------------- 1 | Subject: Re: Exploding TV! 2 | From: xhan@uceng.uc.edu (Xiaoping Han) 3 | 4 | In article <1qk4hj$qos@vtserf.cc.vt.edu> prasad@vtaix.cc.vt.edu (Prasad Ramakrishna) writes: 5 | 6 | >... Why would the picture tube explode or even smoke? 7 | 8 | It's not the picture tube. More likely the flyback. Emerson? can't admire. 9 | Han 10 | 11 | >Prasad 12 | >prasadr@vtvm1.cc.vt.edu 13 | > 14 | 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12378-54319: -------------------------------------------------------------------------------- 1 | From: ba1926108@ntuvax.ntu.ac.sg (AaronAw) 2 | Subject: Card Phones 3 | 4 | Can you help me to understand how a CardPhone operates and 5 | how the values are stored on the phonecard.. 6 | 7 | Thanx 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12410-53551: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: Exploding TV! 3 | 4 | Sounds like the picture tube lost vacuum. This would cause the filament 5 | to ignite and could actually turn the tube from a vacuum to a pressure 6 | vessel, followed by an explosion when the neck assembly (mostly likely 7 | cracked to begin with) blows off. During the whole sequence of events, 8 | the other circuits may continue functioning, which accounts for not 9 | losing sound. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12414-52721: -------------------------------------------------------------------------------- 1 | From: blakey@ug.cs.dal.ca (Jason Blakey) 2 | Subject: Site for projects 3 | 4 | Does anyone out there know of any ftp sites which deal with 5 | electronics projects, plans, etc? Any response appreciated.:) 6 | JB 7 | -- 8 | ............................................................................ 9 | Jason Blakey -> blakey@ug.cs.dal.ca 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12431-54485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.electronics/12431-54485 -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12450-54129: -------------------------------------------------------------------------------- 1 | From: erini@enterprise.ifp.uiuc.edu (Erini Doss) 2 | Subject: CELLULAR ANTENNAS 3 | 4 | i need to know about the market for cellular antenna 5 | technology today... who are the main companies in the 6 | market.. how much are they selling them for? who are the 7 | contact people? what are the specs? 8 | 9 | I will mail oyou our reserach so far if youcan help us!! 10 | 11 | 12 | erini@ifp.uiuc.edu 13 | 14 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12454-53891: -------------------------------------------------------------------------------- 1 | From: wayne@uva386.schools.virginia.edu (Tony Wayne) 2 | Subject: speaker impedance help needed 3 | 4 | I want to connect a very small "home-made" speaker 5 | up to the headphone jack on my macintosh LC for an experiment. 6 | The dc resistance of the speaker is 1 ohm. Any ideas how I can 7 | do this safely? I think I need some kind of an impedance 8 | transformer or something.? 9 | -tony 10 | wayne@uva386.school.virginia.edu 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12455-54127: -------------------------------------------------------------------------------- 1 | From: weaver@kuttner.sfc.sony.com (Eric Weaver) 2 | Subject: Re: ATARI 2600 Processors 3 | 4 | 5 | I'm a 2600 hacker from The Old Days. Let's see how much trouble I can 6 | get into by telling you what you want to know... ;-} 7 | -- 8 | Eric Weaver Sony AVTC 677 River Oaks Pkwy, MS 35 SJ CA 95134 408 944-4904 9 | & Chief Engineer, KFJC 89.7 Foothill College, Los Altos Hills CA 94022 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12456-52783: -------------------------------------------------------------------------------- 1 | From: rsd@sei.cmu.edu (Richard S D'Ippolito) 2 | Subject: Re: What is Zero dB???? 3 | 4 | 5 | In article <1pkveuINNduk@gap.caltech.edu>, Joseph Chiu writes: 6 | 7 | > The Ohmite company was the first to characterize resistances by numbers, thus 8 | > our use of the Ohms... 9 | 10 | 11 | Yeah, right. And the company was started by George Simon Ohmite. 12 | 13 | Rich 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12458-53986: -------------------------------------------------------------------------------- 1 | From: 880518l@dragon.acadiau.ca (Nelson Langille) 2 | Subject: Re: Need Info on DSP project 3 | 4 | There is a file at the simtel archives called adda10.zip I think that 5 | is for DSP. 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12461-54158: -------------------------------------------------------------------------------- 1 | From: Mike Diack 2 | Subject: Re: Blue LED's 3 | 4 | In article Baden de Bari, 5 | baden@inqmind.bison.mb.ca writes: 6 | >Anybody have a 'scoop' on FAIRLY LOW PRICED >BLUE< LED's??? 7 | Hosfelt 8 | T-1 stock # 25-214 9 | T-1-3/4 # 25-213 10 | Both $1.29 - Vf 3.0..3.4, 470nm, 3mcd @ 10ma, Mfg Liton 11 | Call 1-800-524-6464 12 | Disclaimer - dont know these guys from a bar of soap, but the price 13 | looks reasonable. 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12463-52767: -------------------------------------------------------------------------------- 1 | From: cobust@seagoon.ee.sun.ac.za (Cobus Theunissen) 2 | Subject: Wide band Analog time delay 3 | 4 | Hi there, 5 | 6 | I am looking for a wide band analog time delay (not phase delay) 7 | variable from 200 microseconds to 2 milliseconds. 8 | 9 | Please reply via email to rrc@firga.sun.ac.za 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12467-54050: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: Making up odd resistor values required by filters 3 | 4 | One way to make cheap trimmable resistors is to use a high-wattage carbon 5 | composition resistor, and saw a notch in it with a triangular file. 6 | Of course, you can only increase the resistance, not decrease it. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12472-53602: -------------------------------------------------------------------------------- 1 | From: donrm@sr.hp.com (Don Montgomery) 2 | Subject: Radio Shack Battery of the Month Club 3 | 4 | 5 | Radio Shack has canceled their "Battery of the Month" Club. Does 6 | anyone know why? 7 | 8 | They say they'll honor existing cards in customer hands, but no new 9 | cards will be issued. 10 | 11 | Don Montgomery 12 | donrm@sr.hp.com 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12476-54008: -------------------------------------------------------------------------------- 1 | From: rgvander@apgea.army.mil (Richard G. Vanderbeek ) 2 | Subject: MAGIC layout editor 3 | 4 | I heard that MAGIC has been transported to the Macintosh environment. Does 5 | anybody know where I can get a hold of this? Thanks in advance for any 6 | responses. 7 | 8 | Rich Vanderbeek 9 | Dept of the Army 10 | Aberdeen Proving Ground, MD 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12480-52796: -------------------------------------------------------------------------------- 1 | From: rivero@sol.cie.unizar.es 2 | Subject: Video IO ideas? 3 | 4 | Have anyone some idea about how to build a cheap, low 5 | resolution (or high :-) video projector... 6 | 7 | (example: a LCD and an slide projector) 8 | . 9 | 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12493-54195: -------------------------------------------------------------------------------- 1 | From: hubich@mercury.cs.uregina.ca (Chad D. Hubich) 2 | Subject: Asynchronous Receiver Recommendations? 3 | 4 | 5 | I am looking for a suitable UART for a project. What I require 6 | is a stand alone device (i.e. not cpu controlled) which will 7 | receive 1200 baud RS232. Also a nice extra would be a received 8 | data buffer. Please reply with any info you have. 9 | 10 | Thanks, 11 | -- 12 | Chad D. Hubich University of Regina Dept. of Computer Science 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12499-54021: -------------------------------------------------------------------------------- 1 | From: anon0188@nyx.cs.du.edu (Einstein) 2 | Subject: I need to access reports on Hall effect Devices. 3 | 4 | 5 | Does anyone know of the whereabouts of technical reports that 6 | I can access via the Internet? 7 | 8 | -- 9 | ______ ___ 10 | (/__ . __ (/__) _ . __ / _ /) _/__ 11 | (____/\_(_(_____/\_ /-\_(__) )_/_)_(_)_(___/_ 12 | ( 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12508-53838: -------------------------------------------------------------------------------- 1 | From: sehari@iastate.edu (Babak Sehari) 2 | Subject: How to the disks copy protected. 3 | 4 | --- 5 | 6 | I was wondering, what copy protection techniques are avaliable, and how 7 | effective are they? Has anyone have any experience in this area? 8 | 9 | With highest regards, 10 | Babak Sehari. 11 | 12 | 13 | -- 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12509-52826: -------------------------------------------------------------------------------- 1 | From: smithr@teecs.UUCP (Robert Smith) 2 | Subject: Re: Conductive Plastic, what happened? 3 | 4 | If you're thinking of reactive polymers they're making ESD safe 5 | contauiners out of it. As far as being conductive goes anything with 6 | a resistance less than 10 to the fouthrth power ohms per cubic measure 7 | is classed as conductive per MIL-STD-1686 for ESD protection. My $0.02 8 | ($0.016 US). 9 | 10 | Bob. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12517-53924: -------------------------------------------------------------------------------- 1 | From: babb@sciences.sdsu.edu (J. Babb) 2 | Subject: Re: Circuit Cellar Ink address? 3 | 4 | In article <1qvlmaINNhuu@shelley.u.washington.edu>, 5 | ptorre@hardy.u.washington.edu (Phil Torre) wrote: 6 | > 7 | > Is CCI still published? If so, does anyone have their address? 8 | 9 | 10 | Circuit Cellar Inc. 11 | 4 Park St. Suite 20 12 | Vernon, CT 06066 13 | (203)875-2751 14 | 15 | Jeff Babb 16 | babb@sciences.sdsu.edu babb@ucssun1.sdsu.edu 17 | Programmer, SDSU - LARC 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12521-53937: -------------------------------------------------------------------------------- 1 | From: dclaar@cup.hp.com (Doug Claar) 2 | Subject: Los Angeles Freeway traffic reports 3 | 4 | 5 | oops, that's KNX 1070. KNBR is up in 'Frisco, and down at 680. 6 | 7 | ==Doug "San Fran can't be 'the city': Jack Webb told me so" Claar 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12528-53766: -------------------------------------------------------------------------------- 1 | From: Wayne Alan Martin 2 | Subject: Re: Dayton Hamfest 3 | 4 | Yes, it is the 23, 24 and 25, in but does anyone have directions how to 5 | get there after I get to Dayton. Thanks 6 | 7 | Wayne Martin 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12533-53733: -------------------------------------------------------------------------------- 1 | From: sean@dip1.ee.uct.ac.za (Sean Borman) 2 | Subject: INFO WANTED : Graphics LCD displays 3 | 4 | 5 | Hi there 6 | 7 | Does anyone know how to get hold of data as well as stock of the 8 | LCD displays used in the NINTENDO GAMEBOY handheld TV game machines? 9 | 10 | Any information wouold be MOST appreciated. 11 | 12 | Please e-mail any replies to 13 | 14 | arawstorne@eleceng.uct.ac.za 15 | 16 | thanks 17 | 18 | Alex 19 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12534-53844: -------------------------------------------------------------------------------- 1 | From: ravin@eecg.toronto.edu (Govindan Ravindran) 2 | Subject: decoupling caps - onboard 3 | 4 | (posted for a friend) 5 | hello there, 6 | I would like to know if any one had any experience with having 7 | on-board decoupling capacitors (inside a cmos chip) for the power 8 | lines. Say I have a lot of space left im my pad limited design. 9 | any data on the effect of oxide breakdown? any info or pointers 10 | are appreciated. 11 | 12 | rs 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12545-52793: -------------------------------------------------------------------------------- 1 | From: cab@col.hp.com (Chris Best) 2 | Subject: Re: Police radar....Just how does it work?? 3 | 4 | I've seen several references to split- or separate-beam radars, which I 5 | claimed didn't exist. Gotta eat some crow here - I wasn't aware of them. 6 | All I really knew was that it can be done with one beam. 7 | 8 | I believe the rest of what I said is accurate, though. 9 | 10 | Mmmmmmm....crow.... (oops-wrong group) 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12550-53503: -------------------------------------------------------------------------------- 1 | From: heuvel@neptune.iex.com (Ted Van Den Heuvel) 2 | Subject: Motorola MC143150 and MC143120 3 | 4 | 5 | Does anyone out there know of any products using Motorola's Neuron(r) chips MC143150 or MC143120. If so, what are they and are they utilizing Standard Network Variable Types (SNVT)? 6 | _________________________________________________________________________________ 7 | 8 | Ted Van Den Heuvel heuvel@neptune.iex.com 9 | KX5P 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12552-54007: -------------------------------------------------------------------------------- 1 | From: mchen@terra.cs.psu.edu (Michael Chen) 2 | Subject: Re: How to the disks copy protected. 3 | 4 | If companies compressed their executables with LZW andd did some kind of 5 | encryption in the process, this "change two bytes here" thing would go right 6 | out the window. 7 | -- 8 | Michael Chen | From the depths of our most lucid horrors | 9 | | spring our fond hopes and pure desires... | 10 | mchen@cs.psu.edu | except what comes from HELL! :-) 7/23/92 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12558-54149: -------------------------------------------------------------------------------- 1 | From: yxy4145@ucs.usl.edu (Yu Yingbin) 2 | Subject: Does any one know what is biggest ROM for present ? 3 | 4 | Please replay yxy4145@usl.edu 5 | Thanks a lot 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12563-54023: -------------------------------------------------------------------------------- 1 | From: cab@col.hp.com (Chris Best) 2 | Subject: Re: IR detector 'cards'??? 3 | 4 | > Also are they really commonly avaliable in the states, and if so, then 5 | > how much are they and who sells them (maybe if I cant get one here, I'll 6 | > write to one of the companies over seas..) 7 | 8 | ---------- 9 | 10 | Radio Shack, part 276-099, Infrared Sensor Card, $US 5.95 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12584-54079: -------------------------------------------------------------------------------- 1 | From: mcole@spock (COLE) 2 | Subject: microstepping 3 | 4 | Does anyone know where to get a schematic for a micro stepping circuit? 5 | Any help would be appreciated. 6 | mcole@nmsu.edu 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12596-54080: -------------------------------------------------------------------------------- 1 | From: mcole@spock (COLE) 2 | Subject: HM8350 or HM8348 3 | 4 | I have some MICE that have a chip numbered HM8348 and HM8350. I have not 5 | been able to find information on these. Any help would be appreciated. 6 | mcole@nmsu.edu 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.electronics/12599-54211: -------------------------------------------------------------------------------- 1 | From: jsm@shade.Princeton.EDU (John Scott McCauley Jr.) 2 | Subject: how to get rid of flyback whine? 3 | 4 | I recently took apart my color Sony TV to clean the volume pushbuttons and 5 | when I put the beast back together, the flyback whine got much louder. 6 | 7 | Is this easy to fix? Which part is resonating? I have heard rumors of a 8 | spray that will fix the noise. Is this a simple thing for a TV repairman 9 | to fix? 10 | 11 | Thanks, 12 | 13 | Scott 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12604-59643: -------------------------------------------------------------------------------- 1 | From: dkibbe@med.unc.edu (David C. Kibbe) 2 | Subject: quality management 3 | 4 | 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12609-59652: -------------------------------------------------------------------------------- 1 | From: bj368@cleveland.Freenet.Edu (Mike E. Romano) 2 | Subject: Re: Drop your drawers and the doctor will see you 3 | 4 | 5 | This is not an unusual practice if the doctor is also a 6 | member of a nudist colony. 7 | 8 | 9 | 10 | -- 11 | Sir, I admit your gen'ral rule 12 | That every poet is a fool; 13 | But you yourself may serve to show it, 14 | That every fool is not a poet. A. Pope 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12640-59006: -------------------------------------------------------------------------------- 1 | Subject: What are knots? 2 | From: ng4@husc11.harvard.edu (Ho Leung Ng) 3 | 4 | What exactly are knots, those sore, tight spots in your muscles? 5 | In certain kinds of massage, people try and break up these knots; it this 6 | really helpful? 7 | 8 | 9 | Ho Leung Ng 10 | ng4@husc.harvard.edu 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12646-59239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.med/12646-59239 -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12650-59569: -------------------------------------------------------------------------------- 1 | From: abruno@adobe (Andrea Bruno) 2 | Subject: Re: thyroidal deficiency 3 | 4 | 5 | In article <19930430140738SFB2763@MVS.draper.com> SFB2763@MVS.draper.com 6 | (Eileen Bauer) writes: 7 | > Thyroxin controls energy production which explains sleepiness, coldness, 8 | > and weight gain. There is also water retention (possibly around heart), 9 | > changes in vision, and coarser hair and skin among other things. 10 | 11 | Is there any relation between thyroid deficiency and depression? 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12666-59409: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: WE CAN SUPPLY YOU WITH THE TRANSPLANTANTS & OTHER 3 | 4 | Harvested to order? 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12675-59134: -------------------------------------------------------------------------------- 1 | Subject: Re: Broken rib 2 | From: jc@oneb.almanac.bc.ca 3 | 4 | Hello , I think you are probaly right, in spite of the movement 5 | it is getting better each day. cheers 6 | 7 | jc@oneb.almanac.bc.ca (John Cross) 8 | The Old Frog's Almanac (Home of The Almanac UNIX Users Group) 9 | (604) 245-3205 (v32) (604) 245-4366 (2400x4) 10 | Vancouver Island, British Columbia Waffle XENIX 1.64 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12679-58088: -------------------------------------------------------------------------------- 1 | From: vida@mdavcr.mda.ca (Vida Morkunas) 2 | Subject: Inner Ear Problems from Too Much Flying? 3 | 4 | Can one develop inner-ear problems from too much flying? I hear that pilots 5 | and steward/esses have a limit as to the maximum number of flying hours -- 6 | what are these limits? What are the main problems associated with too many 7 | long-haul (over 4 hours) trips? 8 | 9 | Frequent Flyer. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12688-59460: -------------------------------------------------------------------------------- 1 | From: stephen@mont.cs.missouri.edu (Stephen Montgomery-Smith) 2 | Subject: Earwax 3 | 4 | What is the healthiest way to deal with earwax? Should one just leave 5 | it in your ear and not mess with it, or should you clean it out 6 | every so often? Can cleaning it out damage your eardrums? 7 | Are there any tubes in your ear that might get blocked? 8 | 9 | Stephen 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12689-59117: -------------------------------------------------------------------------------- 1 | From: ghica@fig.citib.com (Renato Ghica) 2 | Subject: seek sedative information 3 | 4 | 5 | 6 | has any one heard of a sedative called "Rhoepnol"? Made by LaRouche, 7 | I believe. Any info as to side effects or equivalent tranquillizers? 8 | 9 | thanks.... 10 | -- 11 | 12 | "This will just take a minute." 13 | "I'm 90% done." 14 | "It worked on my machine." 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12695-58886: -------------------------------------------------------------------------------- 1 | From: rsilver@world.std.com (Richard Silver) 2 | Subject: Barbecued foods and health risk 3 | 4 | 5 | Some recent postings remind me that I had read about risks 6 | associated with the barbecuing of foods, namely that carcinogens 7 | are generated. Is this a valid concern? If so, is it a function 8 | of the smoke or the elevated temperatures? Is it a function of 9 | the cooking elements, wood or charcoal vs. lava rocks? I wish 10 | to know more. Thanks. 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12705-58930: -------------------------------------------------------------------------------- 1 | From: kilty@ucrengr (kathleen richards) 2 | Subject: Re: Lyme vaccine 3 | 4 | Jeff, 5 | 6 | If you have time to type it in I'd love to have the reference for that 7 | paper! thanks! 8 | 9 | -- 10 | 11 | kathleen richards email: karicha@eis.calstate.edu 12 | 13 | ~Sometimes you're the windshield, sometimes you're the bug!~ 14 | -dire straits 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12714-58790: -------------------------------------------------------------------------------- 1 | From: sue@netcom.com (Sue Miller) 2 | Subject: Re: Eugenics 3 | 4 | In article <19617@pitt.UUCP> geb@cs.pitt.edu (Gordon Banks) writes: 5 | >we do this? Should we make a race of disease-free, long-lived, 6 | >Arnold Schwartzenegger-muscled, supermen? Even if we can. 7 | > 8 | 9 | Sure, as long as they'll make one for me. 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12716-59198: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: HELP ME INJECT... 3 | 4 | According to a previous poster, one should seek a doctor's 5 | assistance for injections. But what about Sumatriptin [sp?]? 6 | Doesn't one have to inject oneself immediately upon the onset 7 | of a migraine? 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12727-59309: -------------------------------------------------------------------------------- 1 | From: n3022@cray.com (Jim Knoll) 2 | Subject: Patti Duke's Problem 3 | 4 | Does anyone have information about the struggles that Patti 5 | Duke went through in her personal life with severe mood swings. 6 | Did she have some form of chemical imbalance that triggered 7 | these problems? I recall that she wrote a book about her troubles. 8 | Does someone have the title of that book? 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12751-59535: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.med/12751-59535 -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12752-58950: -------------------------------------------------------------------------------- 1 | From: 2 | Subject: Re: Foreskin Troubles 3 | 4 | This is generally called phimosis..usually it is due to an inflammation, and ca 5 | n be retracted in the physician's offfice rather eaaasily. One should see a GP 6 | , or in complicated cases, a urologist. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12757-59552: -------------------------------------------------------------------------------- 1 | From: gecko@camelot.bradley.edu (Anastasia Defend) 2 | Subject: Physical Therapy Students 3 | 4 | 5 | 6 | I am interested in finding other Physical Therapy Students on the 7 | net...If you are one, or you know anyone could you get into contact 8 | with me via email, my address is 9 | 10 | gecko@camelot.bradley.edu 11 | 12 | 13 | thankyou 14 | 15 | anastasia 16 | 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12759-58942: -------------------------------------------------------------------------------- 1 | From: Isabelle.Rosso@Dartmouth.edu (Isabelle Rosso) 2 | Subject: Hunchback 3 | 4 | I have a friend who has a very pronounced slouch of his upper back. He 5 | always walks and sits this way so I have concluded that he is 6 | hunchback. 7 | Is this a genetic disorder, or is it something that people can correct. 8 | i.e. is it just bad posture that can be changed with a bit of will 9 | power? 10 | 11 | 12 | 13 | 14 | 15 | Isabelle.Rosso@Dartmouth.edu 16 | 17 | 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12762-59408: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: Iridology - Any credence to it??? 3 | 4 | Iridology is descendant from a 19th-century theory which mapped certain 5 | diseases to sectors of the iris of the eye. There's enough natural 6 | variation in color that a skilled examiner can find indicators of 7 | virtually any disease. 8 | 9 | Modern scientists consider it to be complete bunk. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12769-58837: -------------------------------------------------------------------------------- 1 | Subject: prozac 2 | From: agilmet@eis.calstate.edu (Adriana Gilmete) 3 | 4 | Can anyone help me find any information on the drug Prozac? I am writing 5 | a report on the inventors , Eli Lilly and Co., and the product. I need as 6 | much help as I can get. Thanks a lot, Adriana Gilmete. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12788-59084: -------------------------------------------------------------------------------- 1 | From: romdas@uclink.berkeley.edu (Ella I Baff) 2 | Subject: Re: Good Grief! (was Re: Candida Albicans: what is it?) 3 | 4 | >If anybody, doctors included, said to me to my face that there is no 5 | >evidence of the 'yeast connection', I cannot guarantee their safety. 6 | >For their incompetence, ripping off their lips is justified as far as 7 | >I am concerned. 8 | 9 | This doesn't sound like Candida Albicans to me. 10 | 11 | John Badanes, DC, CA 12 | romdas@uclink.berkeley.edu 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12791-58933: -------------------------------------------------------------------------------- 1 | From: Gia Kiria 2 | Subject: help 3 | 4 | HELP! 5 | Maybe anybody know names of conferences in 6 | Please help Me find any information for next keywords: 7 | echocardiography and cardiology+dopler 8 | I hawe no informatins on this subjects 2 years becouse i leave in 9 | Tbilisy. 10 | sorry for my bad english! 11 | MY adress: irina@kiria.kheta.georgia.su 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12795-58859: -------------------------------------------------------------------------------- 1 | From: georgec@eng.umd.edu (George B. Clark) 2 | Subject: Re: Endometriosis 3 | 4 | You may want to inquire about taking Lupron as a medication. It's 5 | supposed to be a new treatment, and it's described in Nov. 1992 6 | issue of J. of Obst. and Gyn. 7 | 8 | Lupron is taken as a monthly injection, whereas other drugs such 9 | as danazol are taken daily as pills. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12832-59452: -------------------------------------------------------------------------------- 1 | From: rdd@uts.ipp-garching.mpg.de (Reinhard Drube) 2 | Subject: allergic reactions against laser printers?? 3 | 4 | Hello, 5 | 6 | does anyone know about allergic reactions caused by the developer/toner 7 | of laser printers? What chemical stuff is involved? 8 | 9 | Thanks in advance! 10 | 11 | Reinhard 12 | 13 | email: rdd@ibma.ipp-garching.mpg.de 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12840-59374: -------------------------------------------------------------------------------- 1 | From: Lawrence Curcio 2 | Subject: Re: Can men get yeast infections? 3 | 4 | My (then) wife used to get recurrent yeast infections. One day, her 5 | doctor sent her home with medication for her and a pill for me. I took 6 | the pill, upon her insistence, and was very relieved the next day when I 7 | looked it up in the PDR. It only RARELY causes testicular atrophy... 8 | 9 | Anyway, men apparently do get yeast infections. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12846-59473: -------------------------------------------------------------------------------- 1 | From: mikeq@freddy.CNA.TEK.COM (Mike Quigley) 2 | Subject: Re: Should I be angry at this doctor? 3 | 4 | How about going to a doctor to get some minor surgery done. Doctor 5 | refuses to do it because it's ``to risky'' (still charges me $50!). 6 | I go home and do it myself. No problem. 7 | 8 | The ``surgery'' involved digging out a pine needle that had buried 9 | itself under my tongue. 10 | 11 | Mike 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12852-58948: -------------------------------------------------------------------------------- 1 | From: ruegg@med.unc.edu (Robert G. Ruegg) 2 | Subject: Re: Eugenics 3 | 4 | Thanks to Tarl Neustaedter of MA for kindly letting me know that my 5 | reference in prior post to Orwell and "1984" should probably have been to 6 | Huxley and "Brave New World." 7 | 8 | Sorry, Al. 9 | 10 | Bob (ruegg@med.unc.edu) 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12877-59268: -------------------------------------------------------------------------------- 1 | Subject: hypodermic needle 2 | From: bolsen@eis.calstate.edu (Becky Olsen) 3 | 4 | Hi, I am doing a term paper on the syringe and I have found some 5 | information. It is said that Charles Pravaz has invented the hypodermic 6 | needle, but then I have also found that Alexander Wood has invented it. 7 | Does anyone know which one it is, of if it was anyone else? If there is 8 | anymore information that is out there could you please send it to me. 9 | Thank you very much. 10 | Becky Olsen 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12878-59619: -------------------------------------------------------------------------------- 1 | From: stanley@skyking.OCE.ORST.EDU (John Stanley) 2 | Subject: Re: Krillean Photography 3 | 4 | In article taob@r-node.hub.org writes: 5 | >In article , Alexander P. Zijdenbos writes... 6 | >> I am neither a real believer, nor a disbeliever when it comes to 7 | > But no one (or at least, not many people) are trying to pass off God 8 | 9 | Will you please keep this crap out of sci.image.processing? 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12879-59352: -------------------------------------------------------------------------------- 1 | From: badboy@netcom.com (Jay Keller) 2 | Subject: Re: Proventil Inhaler 3 | 4 | In article <16BB6CDEB.RICK@ysub.ysu.edu> RICK@ysub.ysu.edu (Rick Marsico) 5 | writes: 6 | 7 | >Does the Proventil inhaler for asthma relief fall into the steroid 8 | >or nonsteroid category? Looking at the product literature it's 9 | >not clear. 10 | 11 | Non-steroid. Proventil is a brand of albuterol, a bronchodilator. 12 | 13 | Regards, 14 | 15 | Jay Keller 16 | (asthmatic Proventil-head) 17 | 18 | 19 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12891-59350: -------------------------------------------------------------------------------- 1 | From: gary@concave.cs.wits.ac.za (Gary Taylor) 2 | Subject: Umbilical Hernia 3 | 4 | Could anyone give me information on Umbilical hernias. 5 | The patient is over weight and has a protruding hernia. 6 | 7 | Surgery may be risky due to the obesity. 8 | What other remedies could I try? 9 | 10 | Thanx in advance 11 | 12 | Dr. Gary Taylor 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12893-59524: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: cure for dry skin? 3 | 4 | I cured mine with Bag Balm which I bought at the local farm 5 | supply store. It is relatively cheap and works in a few days. 6 | The product was developed to treat sore udders. 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12896-59513: -------------------------------------------------------------------------------- 1 | From: cacci@interlan.interlan.com (Ernie Cacciapuoti) 2 | Subject: Question: Phosphorylase Kinase Deficiency??? 3 | 4 | If anyone has any information on this deficiency I would very greatly 5 | appreciate a response here or preferably by Email. All I know at this 6 | point is a deficiency can cause myoglobin to be released, and in times 7 | of stress and high ambient temperature could cause renal failure. 8 | x 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12901-59342: -------------------------------------------------------------------------------- 1 | From: klaus@ipri.go.jp (Klaus Hofmann;(6663)) 2 | Subject: cats and pregnancy 3 | 4 | Hello, 5 | I heard that a certain disease (toxoplasmosys?) is transmitted by cats which 6 | can harm the unborn fetus. Does anybody know about it? Is it a problem to 7 | have a cat in the same apartment? 8 | 9 | Thanks 10 | 11 | 12 | 13 | -- 14 | Klaus Hofmann 15 | National Institute of Materials and Chemical Research 16 | 1-1, Higashi Tsukuba, Ibaraki 305, Japan 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12914-59080: -------------------------------------------------------------------------------- 1 | From: pk115050@wvnvms.wvnet.edu 2 | Subject: HELP for Kidney Stones .............. 3 | 4 | My girlfriend is in pain from kidney stones. She says that because she has no 5 | medical insurance, she cannot get them removed. 6 | 7 | My question: Is there any way she can treat them herself, or at least mitigate 8 | their effects? Any help is deeply appreciated. (Advice, referral to literature, 9 | etc...) 10 | 11 | Thank you, 12 | 13 | Dave Carvell 14 | pk115050@wvnvms.wvnet.edu 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12939-58087: -------------------------------------------------------------------------------- 1 | From: jmetz@austin.ibm.com () 2 | Subject: Re: Twitching eye? 3 | 4 | 5 | I had this one time. I attributed it to a lack of sleep since it disappeared 6 | after a few nights of good zzz's. 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12940-59367: -------------------------------------------------------------------------------- 1 | From: sutton@vxcrna.cern.ch (SUTTON,BERN./SL) 2 | Subject: Hip replacement 3 | 4 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12958-59032: -------------------------------------------------------------------------------- 1 | From: jhoskins@magnus.acs.ohio-state.edu (James M Hoskins) 2 | Subject: Cost of Roxonal 3 | 4 | 5 | Does anyone know the approximate prescription cost 6 | of a 250 ml bottle of Roxonal (morphine)? 7 | 8 | Thanks. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12960-59587: -------------------------------------------------------------------------------- 1 | From: stephen@mont.cs.missouri.edu (Stephen Montgomery-Smith) 2 | Subject: Nose Picking 3 | 4 | I have two quations to ask: 5 | 6 | 1) Does it cause the body any harm if one picks one's nose? For example, 7 | might it lead to a loss of ability to smell? 8 | 9 | 2) Is it harmful for one to eat one's nose pickings? 10 | 11 | Stephen 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12962-58854: -------------------------------------------------------------------------------- 1 | From: Mark-Tarbell@suite.com 2 | Subject: Amniocentesis, et. al. 3 | 4 | Is there some difference between the purposes behind 5 | amniocentesis and chorionic villi sampling? They sound 6 | similar to me, but are intended to detect different 7 | things? 8 | 9 | Thanks. 10 |  11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12969-59631: -------------------------------------------------------------------------------- 1 | From: Diane.Mayronne@f232.n109.z1.cobaka.com (Diane Mayronne) 2 | Subject: fever blisters 3 | 4 | Cause and cures for fever blisters respectfully requested. 5 | Thanks! 6 | :-D iane 7 | 8 | * Origin: Another PerManNet Kit (1:109/232) 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12976-59417: -------------------------------------------------------------------------------- 1 | From: dozonoff@bu.edu (david ozonoff) 2 | Subject: Re: food-related seizures? 3 | 4 | Michael Covington (mcovingt@aisun3.ai.uga.edu) wrote: 5 | : 6 | : How about contaminants on the corn, e.g. aflatoxin??? 7 | : 8 | Little alflatoxin on commercial cereal products and certainly wouldn't 9 | cause seizures. 10 | 11 | -- 12 | David Ozonoff, MD, MPH |Boston University School of Public Health 13 | dozonoff@med-itvax1.bu.edu |80 East Concord St., T3C 14 | (617) 638-4620 |Boston, MA 02118 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12983-58989: -------------------------------------------------------------------------------- 1 | From: dyer@spdcc.com (Steve Dyer) 2 | Subject: Re: food-related seizures? 3 | 4 | My comments about the Feingold Diet have no relevance to your 5 | daughter's purported FrostedFlakes-related seizures. I can't imagine 6 | why you included it. 7 | 8 | -- 9 | Steve Dyer 10 | dyer@ursa-major.spdcc.com aka {ima,harvard,rayssd,linus,m2c}!spdcc!dyer 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/12989-59061: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: Paxil (request) 3 | 4 | I don't know much and in fact, have asked questions here 5 | myself. My doctor told me that Paxil is a "cleaner" SRI in that 6 | it produces fewer side effects. As to a comparison between 7 | Zoloft and Prozac, I'm not able to remember what he said about 8 | the differences between those two drugs. Sorry 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13000-59356: -------------------------------------------------------------------------------- 1 | From: chcho@vnet.IBM.COM ( Chul-hee Cho ) 2 | Subject: ProHibit for Spiral Meningitis 3 | 4 | I like to know how effective ProHibit is to prevent spiral meningitis 5 | for a child who is five years old. I heard it's from Canada. 6 | What sort of side effects , etc. 7 | 8 | Chul-hee Cho 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13004-58780: -------------------------------------------------------------------------------- 1 | From: georgec@eng.umd.edu (George B. Clark) 2 | Subject: Re: chronic sinus and antibiotics 3 | 4 | You can also swab the inside of your nose with Bacitracin using a 5 | Q tip. Bacitracin is an antibiotic that can be bought OTC as an 6 | ointment in a tube. The doctor I listen to on the radio says to apply 7 | it for 30 days, while you are taking other antibiotics by mouth. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13007-59564: -------------------------------------------------------------------------------- 1 | From: Donald Mackie 2 | Subject: Re: cure for dry skin? 3 | 4 | In article <1993Apr30.035235.26613@pbs.org> , jlecher@pbs.org writes: 5 | >As a matter of fact, I just saw a dermatologist the other day, and 6 | while I 7 | 8 | Seeing a dermatologist sounds like a very good idea if you are 9 | worried about your dry skin. 10 | 11 | Don Mackie - his opinions 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13039-59282: -------------------------------------------------------------------------------- 1 | From: stephen@mont.cs.missouri.edu (Stephen Montgomery-Smith) 2 | Subject: Pregnency without sex? 3 | 4 | When I was a school boy, my biology teacher told us of an incident 5 | in which a couple were very passionate without actually having 6 | sexual intercourse. Somehow the girl became pregnent as sperm 7 | cells made their way to her through the clothes via persperation. 8 | 9 | Was my biology teacher misinforming us, or do such incidents actually 10 | occur? 11 | 12 | Stephen 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13040-58154: -------------------------------------------------------------------------------- 1 | From: bshelley@ucs.indiana.edu () 2 | Subject: Xanax...please provide info 3 | 4 | I am currently doing a group research project on the drug Xanax. I would 5 | be exponentially gracious to receive any and all information you could 6 | provide 7 | me regarding its usage, history, mechanism of reaction, side effects, and 8 | other pertinent information. I don't care how long or how short your 9 | response is. 10 | 11 | Thanks in advance! 12 | Brent E. Shelley 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13048-59628: -------------------------------------------------------------------------------- 1 | From: j.thornton@hawkesbury.uws.EDU.AU (Jason Thornton x640) 2 | Subject: Cancer of the testis 3 | 4 | Could someone give me some information on the cause, pathophysiology and 5 | clinical manifestations and treatment of this type of cancer. 6 | 7 | Thank you in advance, Jason. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13054-58927: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Foreskin Troubles 3 | 4 | What can be done, short of circumcision, for an adult male 5 | whose foreskin will not retract? 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13057-59068: -------------------------------------------------------------------------------- 1 | From: berryh@huey.udel.edu (John Berryhill, Ph.D.) 2 | Subject: Re: Krillean Photography 3 | 4 | 5 | I think he means Girlie Photography. A good place to find it is in 6 | non-descript little places that usually just say "Books" on the 7 | outside of the building in black and white. 8 | 9 | 10 | -- 11 | 12 | John Berryhill 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13059-59406: -------------------------------------------------------------------------------- 1 | From: enea1@applelink.apple.com (Horace Enea) 2 | Subject: Persistent vs Chronic 3 | 4 | Can anyone out there tell me the difference between a "persistent" disease 5 | and a "chronic" one? For example, persistent hepatitis vs chronic 6 | hepatitis. 7 | 8 | Thanks, 9 | Horace 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13061-59420: -------------------------------------------------------------------------------- 1 | Subject: EXPERTS ON EDWARD JENNER...LOOK!!! 2 | From: pkwok@eis.calstate.edu (Philip Kwok) 3 | 4 | I am a student from San Leandro High school. I am doing a research 5 | project for physics and I would like information on Edward Jenner and the 6 | vaccination for small pox. Any information at all would be greatly 7 | apprectiated. Thank you. 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13066-59173: -------------------------------------------------------------------------------- 1 | From: tron@fafnir.la.locus.com (Michael Trofimoff) 2 | Subject: REQUEST: Gyro (souvlaki) sauce 3 | 4 | 5 | Hi All, 6 | 7 | Would anyone out there in 'net-land' happen to have an 8 | authentic, sure-fire way of making this great sauce that 9 | is used to adorn Gyro's and Souvlaki? 10 | 11 | Thanks, 12 | 13 | -=< tron >=- 14 | e-mail: tron@locus.com *Vidi, vici, veni* 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13086-59386: -------------------------------------------------------------------------------- 1 | From: matthews@Oswego.EDU (Harry Matthews) 2 | Subject: Re: Pregnency without sex? 3 | 4 | All right, listen up.... What are the possibilities of transmission through 5 | swimming pool water? Especially if the chlorination isn't up to par? 6 | 7 | I've heard of community swimming pools refered to as PUBLIC URINALS so what 8 | else is going on? 9 | 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13094-58079: -------------------------------------------------------------------------------- 1 | From: jec@watson.ibm.com 2 | Subject: Contraceptive pill 3 | 4 | A very simple question : it seems to me that the contraceptive 5 | pill just prevents the ovule to nest in the vagina and forces it to 6 | fall every month. But it does not prevent the fertilzation of the 7 | ovule. Is it true ? If yes, is there a risk of extra-uterine 8 | pregnancy, that is the development of the ovule inside the Fallopian 9 | tube ? 10 | 11 | J.Cherbonnier 12 | jec@zurich.ibm.com 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13095-58959: -------------------------------------------------------------------------------- 1 | From: markmc@halcyon.com (Mark McWiggins) 2 | Subject: Re: Barbecued foods and health risk 3 | 4 | Also, don't forget that it's better for your health to enjoy your steak 5 | than to resent your sprouts ... 6 | -- 7 | Mark McWiggins Hermes & Associates +1 206 632 1905 (voice) 8 | markmc@halcyon.com Box 31356, Seattle WA 98103-1356 +1 206 632 1738 (fax) 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13101-59054: -------------------------------------------------------------------------------- 1 | Subject: Ovarian cancer treatment centers 2 | From: 3 | 4 | A relative of mine has recently been diagnosed with "stage 3 papillary cell 5 | ovarian cancer". We are urgently seeking the best place in the country for 6 | treatment for this. 7 | 8 | Does anyone have any suggestions? 9 | 10 | As you might suspect, time is of the essence. 11 | 12 | Thanks for your help. Bob 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13114-59645: -------------------------------------------------------------------------------- 1 | From: matthews@Oswego.EDU (Harry Matthews) 2 | Subject: Re: Need info on Circumcision, medical cons and pros 3 | 4 | BULLSHIT ! ! ! 5 | 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13116-58992: -------------------------------------------------------------------------------- 1 | From: wsun@jeeves.ucsd.edu (Fiberman) 2 | Subject: Re: Is MSG sensitivity superstition? 3 | 4 | I have heard that epileptic patients go into seizures if they 5 | eat anything with MSG added. This may have something to do with 6 | the excitotoxicity of neurons. 7 | 8 | -fm 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13121-59185: -------------------------------------------------------------------------------- 1 | From: eulenbrg@carson.u.washington.edu (Julia Eulenberg) 2 | Subject: Re: Arythmia 3 | 4 | Alexis Perry asked if low blood potassium could be dangerous. Yes. 5 | ZZ 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13144-59195: -------------------------------------------------------------------------------- 1 | From: sjha+@cs.cmu.edu (Somesh Jha) 2 | Subject: What is "intersection syndrome" near the forearm/wrist? 3 | 4 | 5 | Hi: 6 | 7 | I went to the orthopedist on Tuesday. He diagnosed me as having 8 | "intersection syndrome". He prescribed Feldene for me. I want 9 | to know more about the disease and the drug. 10 | 11 | Thanks 12 | 13 | 14 | Somesh 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13158-59314: -------------------------------------------------------------------------------- 1 | From: aj2a@galen.med.Virginia.EDU (Amir Anthony Jazaeri) 2 | Subject: Re: Heat Shock Proteins 3 | 4 | by the way ms. olmstead dna is not degraded in the stomach nor 5 | under pH of 2. its degraded in the duodenum under approx. 6 | neutral pH by DNAase enzymes secreted by the pancreas. my 7 | point: check your facts before yelling at other people for not 8 | doing so. just a friendly suggestion. 9 | 10 | 11 | aaj 4/26/93 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13162-58821: -------------------------------------------------------------------------------- 1 | From: rcj2@cbnewsd.cb.att.com (ray.c.jender) 2 | Subject: Looking for a doctor 3 | 4 | 5 | I was kind of half watching Street Stories last night 6 | and one of the segments was about this doctor in 7 | S.F. who provides a service of investigating treatment 8 | for various diseases. I'm pretty sure his name is 9 | Dr. Mark Renniger (sp?) or close to that. 10 | Did anyone else watch this? I'd like to get his 11 | correct name and address/phone number if possible. 12 | Thanks. 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13182-59355: -------------------------------------------------------------------------------- 1 | From: jprice@dpw.com (Janice Price) 2 | Subject: Iridology - Any credence to it??? 3 | 4 | 5 | I saw a printed up flyer that stated the person was a 6 | "licensed herbologist and iridologist" 7 | What are your opinions? 8 | How much can you tell about a person's health by looking into their eyes? 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13187-59103: -------------------------------------------------------------------------------- 1 | From: gmark@cbnewse.cb.att.com (gilbert.m.stewart) 2 | Subject: oxaprozin? 3 | 4 | Anyone have any information on the effects/origin of oxaprozin? 5 | It's marketed under the name "DAYpro", and appears to be an 6 | anti-inflammatory. Is it similar to naproxin? Stronger? 7 | 8 | TIA 9 | 10 | GMS 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13204-58929: -------------------------------------------------------------------------------- 1 | From: 2 | Subject: quality control in medicine 3 | 4 | Does anybody know of any information regarding the implementaion of total 5 | quality management, quality control, quality assurance in the delivery of 6 | health care service. I would appreciate any information. If there is enough 7 | interest, I will post the responses. 8 | Thank You 9 | Abhin Singla MS BioE, MBA, MD 10 | President AC Medcomp Inc 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13210-58071: -------------------------------------------------------------------------------- 1 | From: julkunen@messi.uku.fi (Antero Julkunen) 2 | Subject: What about sci.med.chemistry 3 | 4 | 5 | There is this newsgroup sci.med.physics and there has been quite a lot 6 | discussion in this group about many chemical items e.g. prolactin 7 | cholesterol, TSH etc. Should there also be a newsgroup sci.med.chemistry? 8 | 9 | 10 | -- 11 | Antero Julkunen, Dept Clinical Chemistry, University of Kuopio, Finland 12 | e-mail: julkunen@messi.uku.fi, phone +358-71-162680, fax +358-71-162020 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13211-59402: -------------------------------------------------------------------------------- 1 | From: OPDBS@vm.cc.latech.edu 2 | Subject: Can I sell my TENS unit? 3 | 4 | 5 | Sci med people: 6 | 7 | Can I sell my TENS unit or does it have to be sold by a physician or 8 | other liscened person? 9 | 10 | Doug 11 | opdbs@vm.cc.latech.edu 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13234-58102: -------------------------------------------------------------------------------- 1 | From: km@cs.pitt.edu (Ken Mitchum) 2 | Subject: Re: Open letter to Hillary Rodham Clinton (#7) 3 | 4 | How about posting one of her replies to your letters? 5 | 6 | -km 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13245-59399: -------------------------------------------------------------------------------- 1 | From: werckme1@eecs.uic.edu (robert werckmeister) 2 | Subject: ECG data needed 3 | 4 | I need some ECG data , uncompressed, hopefully in ascii format. 5 | Don't care what it looks like, this is for a signal processing 6 | project. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13268-59381: -------------------------------------------------------------------------------- 1 | From: kryan@stein.u.washington.edu (Kerry Ryan) 2 | Subject: looking for info on kemotherapy(sp?) 3 | 4 | 5 | Hello, a friend is under going kemotherapy(sp?) for breast cancer. I'm 6 | trying to learn what I can about it. Any info would be appreciated. 7 | Thanks. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13271-59055: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.med/13271-59055 -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13278-59526: -------------------------------------------------------------------------------- 1 | From: cindy@berkp.uadv.uci.edu (Cindy Windham) 2 | Subject: What's a bone scan? 3 | 4 | My mother has been advised to have a bone scan performed? What is this 5 | procedure for, and is it painful? She's been having leg and back pain 6 | which her GP said was sciatica. Her oncologist listened to her symptoms 7 | and said that it didn't sound like sciatica, and she should get a bone 8 | scan. 9 | 10 | - Cindy W. 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13292-59372: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: hypodermic needle 3 | 4 | Scientific American had a nice short article on the history of the 5 | hypodermic about 10 or 15 years ago. Prior to liquid injectables, 6 | there were paddle-like needles used to implant a tiny pill under the 7 | skin. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13303-59035: -------------------------------------------------------------------------------- 1 | From: RICK@ysub.ysu.edu (Rick Marsico) 2 | Subject: Proventil Inhaler 3 | 4 | Does the Proventil inhaler for asthma relief fall into the steroid 5 | or nonsteroid category? Looking at the product literature it's 6 | not clear. 7 | 8 | rick@ysu.edu 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13310-59519: -------------------------------------------------------------------------------- 1 | From: alan.barclay@almac.co.uk (Alan Barclay) 2 | Subject: Re: Need info on Circumci 3 | 4 | TO: menon@boulder.Colorado.EDU (Ravi or Deantha Menon) 5 | 6 | 7 | RO> First off, use some decent terms if ya don't mind. This is sci.med, not 8 | RO> alt.sex. 9 | 10 | Would you like to rephrase that? 11 | 12 | --- 13 | . ATP/Unix1.40a . G'day mate, throw another cat on the barbie! 14 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13316-59351: -------------------------------------------------------------------------------- 1 | From: spp@zabriskie.berkeley.edu (Steve Pope) 2 | Subject: Re: Can men get yeast infections? 3 | 4 | A woman once told me her doctor told her that I 5 | could catch, asymptomatically, her yeast infection 6 | from her, then give it back to her, causing 7 | a relapse. 8 | 9 | Probably bogus, but if not, it's another reason to use 10 | latex... 11 | 12 | Steve 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13331-59275: -------------------------------------------------------------------------------- 1 | From: doyle+@pitt.edu (Howard R Doyle) 2 | Subject: ROC curves software 3 | 4 | 5 | I understand Robert Centor has a program called ROC ANALYZER, that can be 6 | used to do receiver operating characteristic (ROC) curve analysis. Does 7 | anyone know if this is avaliable from an FTP site? If not, does anyone 8 | know how to get a copy of it? 9 | 10 | ============================== 11 | 12 | Howard Doyle 13 | doyle+@pitt.edu 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13342-59213: -------------------------------------------------------------------------------- 1 | From: ffujita@s.psych.uiuc.edu (Frank Fujita) 2 | Subject: Re: "Choleric" and The Great NT/NF Semantic War. 3 | 4 | Also remember that most people map the 5 | sanguine/choleric/melencholic/phlegmatic division onto the extraversion 6 | and neuroticism dimensions (Like Eysenck) and that the MBTI does not 7 | deal with neuroticism (Costa & McCrae). 8 | 9 | Frank Fujita 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13353-59506: -------------------------------------------------------------------------------- 1 | From: tysoem@facman.ohsu.edu (Marie E Tysoe) 2 | Subject: Natural Alternatives to Estrogen 3 | 4 | Need Diet for Diverticular Disease 5 | and ideas for gastrointestinal distress 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13359-58046: -------------------------------------------------------------------------------- 1 | From: Lawrence Curcio 2 | Subject: Analgesics with Diuretics 3 | 4 | I sometimes see OTC preparations for muscle aches/back aches that 5 | combine aspirin with a diuretic. The idea seems to be to reduce 6 | inflammation by getting rid of fluid. Does this actually work? 7 | 8 | Thanks, 9 | -Larry C. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13370-59523: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: Sumatripton (spelling?) 3 | 4 | It just received FDA approval a few months ago. I have a 5 | prescription which I haven't had to use yet. I believe the 6 | company [Glaxol] is developing an oral form. At this stage, one 7 | must inject the drug into one's muscle. The doctor said that 8 | within 30 minutes, the migraine is gone for good! 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13372-59507: -------------------------------------------------------------------------------- 1 | From: tysoem@facman.ohsu.edu (Marie E Tysoe) 2 | Subject: sciatica 3 | 4 | Ideas for the relief of sciatica. Please respond to my E-mail 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13373-59389: -------------------------------------------------------------------------------- 1 | From: groleau@e7sa.crd.ge.com (Wes Groleau X7574) 2 | Subject: Re: Discussions on alt.psychoactives 3 | 4 | Re: serious discussion about drugs vs. "Where can I get a good bong, man?" 5 | 6 | Why not have the group moderated? That would eliminate some of the idiots. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13374-59428: -------------------------------------------------------------------------------- 1 | From: msnyder@nmt.edu (Rebecca Snyder) 2 | Subject: centi- and milli- pedes 3 | 4 | Does anyone know how posionous centipedes and millipedes are? If someone 5 | was bitten, how soon would medical treatment be needed, and what would 6 | be liable to happen to the person? 7 | 8 | (Just for clarification - I have NOT been bitten by one of these, but my 9 | house seems to be infested, and I want to know 'just in case'.) 10 | 11 | Rebecca 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13380-59052: -------------------------------------------------------------------------------- 1 | From: aliceb@tea4two.Eng.Sun.COM (Alice Taylor) 2 | Subject: accupuncture and AIDS 3 | 4 | A friend of mine is seeing an acupuncturist and 5 | wants to know if there is any danger of getting 6 | AIDS from the needles. 7 | 8 | Thanks, 9 | 10 | -alice 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13386-59596: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: Nose Picking 3 | 4 | I don't know if it causes the body any harm, but in the 23 5 | years I've been teaching nine and ten years olds I've never had 6 | one fall over from eating "boogers" which many kids do on a 7 | regular basis [when they think no one is looking . . .] 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13416-59090: -------------------------------------------------------------------------------- 1 | From: ray@engr.LaTech.edu (Bill Ray) 2 | Subject: Re: Acutane, Fibromyalgia Syndrome and CFS 3 | 4 | Daniel Prince (Daniel.Prince@f129.n102.z1.calcom.socal.com) wrote: 5 | 6 | : ... I think they should rename Waco TX to Wacko TX! 7 | 8 | I know it is just a joke, but please remember: the people of Waco 9 | did not ask David Koresh to be a lunatic there, he just happened. 10 | Waco is a lovely town. I would think someone living in the home 11 | of flakes and nut would be more sensitive :-) 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13431-59590: -------------------------------------------------------------------------------- 1 | From: mmm@cup.portal.com (Mark Robert Thorson) 2 | Subject: Re: centi- and milli- pedes 3 | 4 | I remember as a kid visiting my relatives on Kauai, and one of the things 5 | that really frightened me was centipedes. I'd been told they were poisonous 6 | and infrequently one would pop up and scare the heck out of me. Once 7 | one came out of the vacuum cleaner and it seemed like it was at least a foot 8 | long and moving at 35 miles an hour! 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13460-59258: -------------------------------------------------------------------------------- 1 | Subject: CALCIUM deposits on heart valve 2 | From: john.greze@execnet.com (John Greze) 3 | 4 | 5 | A friend, a 62 year old man, has calcium deposits on one of his 6 | heart valves . What causes this to happen and what can be done about 7 | it? 8 | 9 | John.Greze@execnet.com 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13466-59429: -------------------------------------------------------------------------------- 1 | From: help4@dcs2.dc (len ramirez) 2 | Subject: Re: Krillean Photography 3 | 4 | very good. 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13468-59358: -------------------------------------------------------------------------------- 1 | From: mmatusev@radford.vak12ed.edu (Melissa N. Matusevich) 2 | Subject: Re: Pregnency without sex? 3 | 4 | Speaking of educational systems, I recently had a colleague 5 | tell me that the reason one of our fifth grade students is so 6 | physically developed is because she was sexually abused as a younger 7 | child. This, she went on to say, kicks the pituitary gland into 8 | action and causes puberty. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13476-59360: -------------------------------------------------------------------------------- 1 | From: chungy2@rebecca.its.rpi.edu (Yau Felix Chung) 2 | Subject: Nasopharinx Carcenoma... 3 | 4 | 5 | Hi. Does anyone know the possible causes of nasoparynx carcenoma 6 | and what are the chances of it being hereditary? 7 | 8 | Also, in the advacned cases, what is the general procedure to 9 | reduce the pain the area as it prevents the patient from eating 10 | due to the excessive pain of swallowing and even talking? 11 | 12 | Thanks. 13 | 14 | -F. 15 | . 16 | 17 | 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13480-59443: -------------------------------------------------------------------------------- 1 | From: eileen@microware.com (Eileen Beck) 2 | Subject: cortisone shots 3 | 4 | I need some information on the implications of receiving 5 | cortisone shots for a seasonal allergic condition. 6 | 7 | I've had the usual "skin prick" tests for the 8 | common allergies, but reacted to none of the substances. 9 | So for the last two seasons I've received cortisone shots 10 | but the doctors seem reluctant to give more than two or 11 | three shots. Why? What are the dangers? 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13482-59437: -------------------------------------------------------------------------------- 1 | From: rrome@nyx.cs.du.edu (Robert Rome) 2 | Subject: Need Prozac info 3 | 4 | 5 | I'm looking for information regarding dosages of prozac used in minor 6 | depression. Also any other information regarding the drug is helpful. 7 | Please send responses direct. Thanks! 8 | 9 | rrome@nyx.cs.du.edu 10 | 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13486-59089: -------------------------------------------------------------------------------- 1 | From: billc@col.hp.com (Bill Claussen) 2 | Subject: Re: Should I be angry at this doctor? 3 | 4 | 5 | Report them to your local BBB (Better Business Bureau). 6 | 7 | Bill Claussen 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13501-59254: -------------------------------------------------------------------------------- 1 | From: x91hozak@gw.wmich.edu 2 | Subject: PRK referral in Canada 3 | 4 | Could some please refer me to someone who can perform PRK (Photo Refractive 5 | Keratostomy) in Canada (preferably eastern portion). I've looked in 6 | the yellow pages with little success, and if someone has had a good (or 7 | bad, for that matter) experience, that would be especially helpful if you 8 | could please let me know. 9 | 10 | Thanks, 11 | Kurt Hozak 12 | 92hozak@lab.cc.wmich.edu (preferred address) 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13506-59293: -------------------------------------------------------------------------------- 1 | From: dh@fncrd6.fnal.gov (don husby) 2 | Subject: Re: Krillean Photography 3 | 4 | 5 | Poor person's Kirlian Photography (try this at home) 6 | 7 | 1. Hold your hand up to a cold window. 8 | 2. Look closely at the stunning corona effects around 9 | your fingertips. 10 | 3. Remove hand (from window) and observe after image. 11 | 4. Invent crackpot theory to explain the effect. 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13514-58845: -------------------------------------------------------------------------------- 1 | Subject: EXPERTS on PENICILLIN...LOOK! 2 | From: ndacumo@eis.calstate.edu (Noah Dacumos) 3 | 4 | My name is Noah Dacumos and I am a student at San Leandro High. I am 5 | doing a project for my physics class and I would like some info on the 6 | discovery of penicillin, its discoverer(Sir Alexander Fleming), and how it 7 | helps people with many incurable bacterias. Also how it effects those who 8 | are allergic to it. Any info will be greatly appreciated. 9 | 10 | Noah Dacumos 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13516-58048: -------------------------------------------------------------------------------- 1 | From: bennett@kuhub.cc.ukans.edu 2 | Subject: Smoker's Lungs 3 | 4 | How long does it take a smoker's lungs to clear of the tar after quitting? 5 | Does your chances of getting lung cancer decrease quickly or does it take 6 | a considerable amount of time for that to happen? 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13522-58056: -------------------------------------------------------------------------------- 1 | From: rousseaua@immunex.com 2 | Subject: Re: Lactose intolerance 3 | 4 | In article , ng4@husc11.harvard.edu (Ho Leung Ng) writes: 5 | > 6 | > When I was a kid in primary school, I used to drink tons of milk without 7 | > any problems. However, nowadays, I can hardly drink any at all without 8 | > experiencing some discomfort. What could be responsible for the change? 9 | > 10 | > Ho Leung Ng 11 | > ng4@husc.harvard.edu 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13526-59627: -------------------------------------------------------------------------------- 1 | From: sjha+@cs.cmu.edu (Somesh Jha) 2 | Subject: What is intersection syndrome and Feldene? 3 | 4 | 5 | Hi: 6 | 7 | I went to the orthopedist on Tuesday. He diagnosed me as having 8 | "intersection syndrome". He prescribed Feldene for me. I want 9 | to know more about the disease and the drug. 10 | 11 | Thanks 12 | 13 | 14 | Somesh 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13530-59324: -------------------------------------------------------------------------------- 1 | From: brown@spk.hp.com (Pat R. Brown) 2 | Subject: Re: HELP...REFLUX ESOPHAGITIS 3 | 4 | Please post your results, a close friend has this condition and 5 | has asked these same questions. 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13532-59259: -------------------------------------------------------------------------------- 1 | From: vrao@nyx.cs.du.edu (Vinay Rao) 2 | Subject: Density of the skull bone 3 | 4 | Could someone tell me what the density of skull bone is or direct me to 5 | a reference that contains this info? I would appreciate it very much. 6 | Thanks. 7 | 8 | Vinay 9 | 10 | 11 | -- 12 | ********************************************** 13 | Vinay J. Rao vrao@nyx.cs.du.edu 14 | ********************************************** 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13543-59491: -------------------------------------------------------------------------------- 1 | From: tung@paaiec.enet.dec.com 2 | Subject: Re: Opinions on Allergy (Hay Fever) shots? 3 | 4 | 5 | I have just started taking allergy shots a month ago and is 6 | still wondering what I am getting into. A friend of mine told 7 | me that the body change every 7 years (whatever that means) 8 | and I don't need those antibody-building allergy shots at all. 9 | Does that make sense to anyone? 10 | 11 | BTW, can someone summarize what is in the Consumer Report 12 | February, 1988 article? 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13559-58866: -------------------------------------------------------------------------------- 1 | Subject: Post Polio Syndrome Information Needed Please !!! 2 | From: keith@actrix.gen.nz (Keith Stewart) 3 | 4 | My wife has become interested through an acquaintance in Post-Polio Syndrome 5 | This apparently is not recognised in New Zealand and different symptons ( eg 6 | chest complaints) are treated separately. Does anone have any information on 7 | it 8 | 9 | Thanks 10 | 11 | 12 | Keith 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13563-58996: -------------------------------------------------------------------------------- 1 | From: leisner@wrc.xerox.com (Marty Leisner 71348 ) 2 | Subject: Intravenous antibiotics 3 | 4 | I recently had a case of shingles and my doctors wanted to give me 5 | intravenous Acyclovir. 6 | 7 | It was a pain finding IV sites in my arms...can I have some facts about 8 | how advantageous it is to give intravenous antibiotics rather than oral? 9 | 10 | marty 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13582-58769: -------------------------------------------------------------------------------- 1 | From: wsun@jeeves.ucsd.edu (Fiberman) 2 | Subject: erythromycin 3 | 4 | Is erythromycin effective in treating pneumonia? 5 | 6 | -fm 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13584-59305: -------------------------------------------------------------------------------- 1 | From: chorley@vms.ocom.okstate.edu 2 | Subject: CS "gas" and allergic response- Ques. 3 | 4 | This question derives from the Waco incident: 5 | Could CS ("gas") particles create an allergic response which would 6 | result in laryngospasm and asphyxiation?- especially in children. 7 | 8 | DNC in Ok. 9 | OSU-COM will disavow my opinion, and my existence, if necessary. 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.med/13586-59411: -------------------------------------------------------------------------------- 1 | From: 2 | Subject: Re: Med school admission 3 | 4 | Then there are always osteopathy colleges.... 5 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13602-60177: -------------------------------------------------------------------------------- 1 | From: nsmca@aurora.alaska.edu 2 | Subject: MACH 25 landing site bases? 3 | 4 | The supersonic booms hear a few months ago over I belive San Fran, heading east 5 | of what I heard, some new super speed Mach 25 aircraft?? What military based 6 | int he direction of flight are there that could handle a Mach 25aircraft on its 7 | landing decent?? Odd question?? 8 | 9 | == 10 | Michael Adams, nsmca@acad3.alaska.edu -- I'm not high, just jacked 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13619-61372: -------------------------------------------------------------------------------- 1 | From: Cohen@ssdgwy.mdc.com (Andy Cohen) 2 | Subject: DC-X news 3 | 4 | Static test firings are now scheduled for this Saturday.....after many 5 | schedule changes..... 6 | 7 | It may be difficult to get test status during the next two weeks....the 8 | number of contacts are drying up as they all go to New Mexico......GO DELTA 9 | CLIPPER!! 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13630-62317: -------------------------------------------------------------------------------- 1 | From: Keith.Stein@f118.n109.z1.permanet.org (Keith Stein) 2 | Subject: Re: Gps launch 3 | 4 | Next GPS launch is scheduled for June 24th. 5 | 6 | * Origin: No. VA Astronomy Club 703-256-4777 (1:109/118) 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13635-60911: -------------------------------------------------------------------------------- 1 | From: claice@rintintin.Colorado.EDU (Farmer Ted) 2 | Subject: Re: Space Debris 3 | 4 | > There is this buy at NASA Langley... 5 | 6 | 7 | 8 | 9 | YES! Give me his name I would greatly appreciate it. 10 | 11 | 12 | 13 | Rich 14 | 15 | "The Earth is a cradle of the mind. But, we cannot live forever in a cradle" 16 | K.E. Tsiolkovski 17 | Father of Russian Astronautics 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13649-61503: -------------------------------------------------------------------------------- 1 | From: billosh@netcom.com (William E. O'Shaughnessy) 2 | Subject: Re: moon image in weather sat image 3 | 4 | If you brighten up the dark part of CV043015.GIF with your viewer you 5 | will see two other objects near the upper left part of the moon. 6 | One is actually between the weather satellite and the moon. 7 | 8 | Bill O'Shaughnessy 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13650-61566: -------------------------------------------------------------------------------- 1 | From: perky@acs.bu.edu (Melissa Sherrin) 2 | Subject: Re: moon image in weather sat image 3 | 4 | 5 | I'm afraid I was not able to find the GIFs... is the list 6 | updated weekly, perhaps, or am I just missing something? 7 | 8 | _______ 9 | ( ) 10 | (_ ( ) 11 | ( ) 12 | ( ) ) 13 | ( ( ) 14 | (__________) 15 | / / / / / 16 | Melissa Sherrin 17 | perky@acs.bu.edu 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13657-61479: -------------------------------------------------------------------------------- 1 | From: David.Anderman@ofa123.fidonet.org 2 | Subject: NASA contributions? 3 | 4 | Teflon? A contribution from the space program? Since the French were using 5 | Teflon on household items in the early 1950's, it is unlikely that it was 6 | invented by NASA. As for pacemakers and calculators, again those are 7 | anecdotally connected with NASA. 8 | 9 | --- Maximus 2.01wb 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13664-62410: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: Near Miss Asteroids (Q) 3 | 4 | 5 | TRry the SKywatch project in Arizona. 6 | 7 | pat 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13671-60169: -------------------------------------------------------------------------------- 1 | From: DKELO@msmail.pepperdine.edu (Dan Kelo) 2 | Subject: M-81 Supernova 3 | 4 | 5 | How 'bout some more info on that alleged supernova in M-81? 6 | I might just break out the scope for this one. 7 | ____________________________________________________ 8 | "No sir, I don't like it! "-- Mr. Horse 9 | Dan Kelo dkelo@pepvax.pepperdine.edu 10 | ____________________________________________________ 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13675-61190: -------------------------------------------------------------------------------- 1 | From: landis@stsci.edu (Robert Landis,S202,,) 2 | Subject: Re: Soviet Space Book 3 | 4 | What in blazes is going on with Wayne Matson and gang 5 | down in Alabama? I also heard an unconfirmed rumor that 6 | Aerospace Ambassadors have disappeared. Can anyone else 7 | confirm?? 8 | 9 | ++Rob Landis 10 | STScI, Baltimore, MD 11 | 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13693-60828: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Shuttle oxygen (was Budget Astronaut) 3 | 4 | 5 | 6 | I thought that under emergency conditions, the STS can 7 | put down at any good size Airport. IF it could take a C-5 or a 8 | 747, then it can take an orbiter. You just need a VOR/TAC 9 | 10 | I don't know if they need ILS. 11 | 12 | pat 13 | 14 | ANyone know for sure. 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13715-61041: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Commercial mining activities on the moon 3 | 4 | In article <1r46j3INN14j@mojo.eng.umd.edu> sysmgr@king.eng.umd.edu writes: 5 | >In article , steinly@topaz.ucsc.edu (Steinn Sigurdsson) writes: 6 | | 7 | |>Very cost effective if you use the right accounting method :-) 8 | | 9 | >Sherzer Methodology!!!!!! 10 | 11 | Let it never be said that an opportunity was missed to put someone down. 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13724-61548: -------------------------------------------------------------------------------- 1 | From: gkm@wampyr.cc.uow.edu.au (Glen K Moore) 2 | Subject: Fax/email wanted for Louis Friedman/Planetary Society 3 | 4 | If available please send to 5 | Glen Moore 6 | Director 7 | Science Centre 8 | Wollongong, Australia 9 | fax: 61 42 213151 email: gkm@cc.uow.edu.au 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13725-61186: -------------------------------------------------------------------------------- 1 | From: rlennip4@mach1.wlu.ca (robert lennips 9209 U) 2 | Subject: Re: PLANETS STILL: IMAGES ORBIT BY ETHER TWIST 3 | 4 | Please get a REAL life. 5 | 6 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13730-60801: -------------------------------------------------------------------------------- 1 | From: 8725157m@levels.unisa.edu.au 2 | Subject: Cold gas roll control thruster tanks 3 | 4 | Does anyone know how to size cold gas roll control thruster tanks 5 | for sounding rockets? 6 | 7 | Thanks in advance, 8 | Jim. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13755-61554: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: France spied on by the U.S. 3 | 4 | 5 | You mena in the same way french intelliegence agents steal 6 | documents from US corporate executives? 7 | 8 | pat 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13760-62428: -------------------------------------------------------------------------------- 1 | From: richard@cs.arizona.edu (Richard J Shank) 2 | Subject: Re: Space Marketing would be wonderfull. 3 | 4 | 5 | I can see it now emblazened across the evening sky -- 6 | 7 | THIS SPACE FOR RENT 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13763-61133: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Moonbase race, NASA resources, why? 3 | 4 | 5 | Henry, 6 | 7 | didn't the Little Joe and Big Joe get built in under a year? 8 | 6 months for little Joe, and 12 Months for Big Joe? 9 | 10 | i thought i saw something on that for a old mercury film. 11 | 12 | pat 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13782-61183: -------------------------------------------------------------------------------- 1 | From: Pat.Hoage@f6507.n124.z1.fidonet.org (Pat Hoage) 2 | Subject: army in space 3 | 4 | I just got out of the Army. Go signal corps or Intelligence; 5 | photointelligence interpretation. If you go ADA you might get to play with 6 | rockets but space will look pretty far away dug in the mud next to a grunt 7 | protecting the foward troops from low flying objects. Good Luck 8 | 9 | 10 | * Origin: *AmeriComm*, 214/373-7314. Dallas'Info Source. (1:124/6507) 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13784-61388: -------------------------------------------------------------------------------- 1 | From: jecurt01@starbase.spd.louisville.edu (John E. Curtis) 2 | Subject: space surveillance 3 | 4 | One of the main reasons nations like the US and RUSSIA observe satellite 5 | that have been launched is FORBs system whick loft nuclear bombs into 6 | orbit which are planned to be detonated in LEO causing EMP pulses 7 | interfering with the target command and control system. 8 | 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13810-60161: -------------------------------------------------------------------------------- 1 | From: gallas2@marcus.its.rpi.edu (Sean Michael Gallagher) 2 | Subject: Funding for NASA 3 | 4 | I am doing a political science paper on the funding of NASA and pork-barrel 5 | politics. I would be interested in information about funding practices and 6 | histories of some of the major programs (Apollo, STS, SSF, etc) and the 7 | funding of SSTO to contrast. Could someone please recommend some sources 8 | that would be useful? Thank you. 9 | -- 10 | Sean Gallagher 11 | gallas2@rpi.edu 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13811-61258: -------------------------------------------------------------------------------- 1 | From: vamwendt@atlas.cs.upei.ca (Michael Wendt) 2 | Subject: Historic shuttle flights 3 | 4 | Would someone please send me a list of the historic space flights? I 5 | am not looking for a list of all flights, just the ones in which something 6 | monumental happened. Or better yet, is there an ftp site with the list of all 7 | shuttle flights? 8 | 9 | Thanks (if you helped), 10 | vamwendt@upei.ca 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13839-61204: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: How many read sci.space? 3 | 4 | In article <1993Apr22.184650.4833@mksol.dseg.ti.com> mccall@mksol.dseg.ti.com (fred j mccall 575-3539) writes: 5 | >isn't my real name, either. I'm actually Elvis. Or maybe a lemur; I 6 | >sometimes have difficulty telling which is which. 7 | 8 | definitely a lemur. 9 | 10 | Elvis couldn't spell, just listen to any of his songs. 11 | 12 | pat 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13856-61010: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: NAVSTAR positions 3 | 4 | C-3's bird may be flaking out and expecting to die soon. 5 | 6 | or C-3 may orbit over major users areas, and it may be 7 | needed to provide redundancy on that plane while b-4 may orbit 8 | over hicksville, and not have muc of a user community. 9 | 10 | pat 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13860-61521: -------------------------------------------------------------------------------- 1 | From: schumach@convex.com (Richard A. Schumacher) 2 | Subject: Re: Boeing TSTO (Was: Words from Chairman of Boeing) 3 | 4 | [Description of Boeing study of two-staged spaceplane using 5 | supersonic ramjets deleted.] 6 | 7 | In other words, Boeing is not seriously thinking about 8 | reliable, less-expensive access to orbit. They just like 9 | to fool around with exotic airplanes. 10 | 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13870-61352: -------------------------------------------------------------------------------- 1 | From: STK1203@VAX003.STOCKTON.EDU 2 | Subject: Internet resources 3 | 4 | exit 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13890-62392: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: Interesting DC-X cost anecdote 3 | 4 | 5 | That's assuming it could get built by them. 6 | 7 | Of course, it would probably sport Cruise missile Racks, 8 | Sidewinder Missile tubes, Bomb Points, extra drop tanks, 9 | a Full ECM suite, Terrain following radar and stealth 10 | materials. 11 | 12 | IT might not fly, but a technology demonstrator does 13 | not require actual flight. 14 | 15 | :-) 16 | pat 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13904-61556: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.space/13904-61556 -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13926-61233: -------------------------------------------------------------------------------- 1 | From: jfc@athena.mit.edu (John F Carr) 2 | Subject: Re: Gamma Ray Bursters. WHere are they. 3 | 4 | 5 | If gamma ray bursters are extragalactic, would absorption from the 6 | galaxy be expected? How transparent is the galactic core to gamma 7 | rays? 8 | 9 | How much energy does a burster put out? I know energy depends on 10 | distance, which is unknown. An answer of the form _X_ ergs per 11 | megaparsec^2 is OK. 12 | 13 | 14 | -- 15 | John Carr (jfc@athena.mit.edu) 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13929-60994: -------------------------------------------------------------------------------- 1 | From: sysmgr@king.eng.umd.edu (Doug Mohney) 2 | Subject: Re: Commercial mining activities on the moon 3 | 4 | In article , steinly@topaz.ucsc.edu (Steinn Sigurdsson) writes: 5 | 6 | >Very cost effective if you use the right accounting method :-) 7 | 8 | Sherzer Methodology!!!!!! 9 | 10 | 11 | 12 | Software engineering? That's like military intelligence, isn't it? 13 | -- > SYSMGR@CADLAB.ENG.UMD.EDU < -- 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13936-62396: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: DC-X Publicity 3 | 4 | 5 | 6 | No. Do this. 7 | 8 | Have the DC-X1, make an unscheduled landing at teh 50 yard 9 | line during the halftime show of This years Superbowl. 10 | 11 | ABC will have more reporters there for that, then at 12 | any news event. 13 | 14 | pat 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13960-60887: -------------------------------------------------------------------------------- 1 | From: uck@netcom.com (Tom Chamberlain) 2 | Subject: Buzz Aldrin's Race Into Space? 3 | 4 | Has anyone heard of or Played Buzz Aldrin's Race into Space? 5 | 6 | Does anyone know when it is expected to be released...? 7 | 8 | Thanx, Tom. 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13965-61188: -------------------------------------------------------------------------------- 1 | From: arthurc@sfsuvax1.sfsu.edu (Arthur Chandler) 2 | Subject: Russian Phobos Mission 3 | 4 | 5 | Did the Russian spacecraft(s) on the ill-fated Phobos mission a few 6 | years ago send back any images of the Martian moon? If so, does anyone know if 7 | they're housed at an ftp site? 8 | Thanks. 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13972-61558: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: Combo Propulsion System!? 3 | 4 | 5 | How difficult would it be to do a solar sail mission to say mercury? 6 | 7 | Not much has been there and there is a 23?KM/s delta v to eat off. 8 | 9 | could a solar sail, handle say adiscovery bus, and drop it into 10 | mercury orbit, good enough for rockets to put it into some 11 | form of polar orbit? 12 | 13 | pat 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13975-61315: -------------------------------------------------------------------------------- 1 | From: lcm@spl1.spl.loral.com (Luciana C. Messina) 2 | Subject: Re: HST Servicing Mission Scheduled for 11 Days 3 | 4 | 5 | Another factor against bringing the HST back to Earth is risk of contamination. 6 | 7 | Luciana C. Messina 8 | lcm@spl1.spl.loral.com 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13985-60235: -------------------------------------------------------------------------------- 1 | From: freed@nss.org (Bev Freed) 2 | Subject: FAQs 3 | 4 | I was wondering if the FAQ files could be posted quarterly rather than monthly. Every 28-30 days, I get this bloated feeling. 5 | 6 | 7 | 8 | -- 9 | Bev Freed - via FidoNet node 1:129/104 10 | UUCP: ...!pitt!nss!freed 11 | INTERNET: freed@nss.org 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/13998-60903: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Conference on Manned Lunar Exploration. May 7 Crystal City 3 | 4 | 5 | AW&ST had a brief blurb on a Manned Lunar Exploration confernce 6 | May 7th at Crystal City Virginia, under the auspices of AIAA. 7 | 8 | Does anyone know more about this? How much, to attend???? 9 | 10 | Anyone want to go? 11 | 12 | pat 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14002-60941: -------------------------------------------------------------------------------- 1 | From: loss@fs7.ECE.CMU.EDU (Doug Loss) 2 | Subject: Jemison on Star Trek 3 | 4 | I saw in the newspaper last night that Dr. Mae Jemison, the first 5 | black woman in space (she's a physician and chemical engineer who flew 6 | on Endeavour last year) will appear as a transporter operator on the 7 | "Star Trek: The Next Generation" episode that airs the week of May 31. 8 | It's hardly space science, I know, but it's interesting. 9 | 10 | Doug Loss 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14004-61522: -------------------------------------------------------------------------------- 1 | From: schumach@convex.com (Richard A. Schumacher) 2 | Subject: Re: Gamma Ray Bursters. WHere are they. 3 | 4 | You should have been following the discussion of GRBs 5 | going on in sci.astro. It's been discussed in some detail, 6 | with references even. 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14022-61189: -------------------------------------------------------------------------------- 1 | From: landis@stsci.edu (Robert Landis,S202,,) 2 | Subject: Re: Space Debris 3 | 4 | Another fish to check out is Richard Rast -- he works 5 | for Lockheed Missiles, but is on-site at NASA Johnson. 6 | 7 | Nick Johnson at Kaman Sciences in Colo. Spgs and his 8 | friend, Darren McKnight at Kaman in Alexandria, VA. 9 | 10 | Good luck. 11 | 12 | R. Landis 13 | 14 | "Behind every general is his wife.... and... 15 | behind every Hillary is a Bill . ." 16 | 17 | 18 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14034-61293: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.space/14034-61293 -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14037-61229: -------------------------------------------------------------------------------- 1 | From: Graydon 2 | Subject: Re: Gamma Ray Bursters. Where are they? 3 | 4 | If all of these things have been detected in space, has anyone 5 | looked into possible problems with the detectors? 6 | 7 | That is, is there some mechanism (cosmic rays, whatever) that 8 | could cause the dector to _think_ it was seeing one of these 9 | things? 10 | 11 | Graydon 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14042-61324: -------------------------------------------------------------------------------- 1 | From: rostroff@watson.princeton.edu (robert ostroff) 2 | Subject: Comet Launch Date 3 | 4 | Hello out there, 5 | If your familiar with the COMET program then this concerns you. 6 | COMET is scheduled to be launched from Wallops Island sometime in June. 7 | Does anyone know if an official launch date has been set? 8 | 9 | Thanks, 10 | Rob 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14049-61429: -------------------------------------------------------------------------------- 1 | From: oreilly@olivia.la.asu.edu (Tom O'Reilly) 2 | Subject: RE: Commercials on the Moon 3 | 4 | u920496@daimi.aau.dk (Hans Erik Martino Hansen) writes 5 | 6 | > How about a Coca Cola logo at the moon, easy way to target billions of 7 | > people. 8 | 9 | Arthur C. Clarke was way ahead of you on this one... he wrote a short story 10 | (title?) in the 1950s describing exactly your proposal! 11 | 12 | Tom O'Reilly 13 | Department of Geology 14 | Arizona State University 15 | 16 | 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14066-61059: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Eco-Freaks forcing Space Mining. 3 | 4 | Besides this was the same line of horse puckey the mining companies claimed 5 | when they were told to pay for restoring land after strip mining. 6 | 7 | they still mine coal in the midwest, but now it doesn't look like 8 | the moon when theyare done. 9 | 10 | pat 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14073-61534: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DongZhouGu/scikit-learn-ml/15b92ec37d3db1e02de45566833c2828acf5ac90/8. K-均值/data/sci.space/14073-61534 -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14081-60796: -------------------------------------------------------------------------------- 1 | Subject: 2 | From: bioccnt@otago.ac.nz 3 | 4 | 5 | Can someone please remind me who said a well known quotation? 6 | 7 | He was sitting atop a rocket awaiting liftoff and afterwards, in answer to 8 | the question what he had been thinking about, said (approximately) "half a 9 | million components, each has to work perfectly, each supplied by the lowest 10 | bidder....." 11 | 12 | Attribution and correction of the quote would be much appreciated. 13 | 14 | Clive Trotman 15 | 16 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14082-60985: -------------------------------------------------------------------------------- 1 | From: nsmca@aurora.alaska.edu 2 | Subject: Old Spacecraft as NAvigation Beacons! 3 | 4 | Other idea for old space crafts is as navigation beacons and such.. 5 | Why not?? If you can put them on "safe" "pause" mode.. why not have them be 6 | activated by a signal from a space craft (manned?) to act as a naviagtion 7 | beacon, to take a directional plot on?? 8 | 9 | Wierd or what? 10 | == 11 | Michael Adams, nsmca@acad3.alaska.edu -- I'm not high, just jacked 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14103-62420: -------------------------------------------------------------------------------- 1 | From: ghelf@violet.berkeley.edu (;;;;RD48) 2 | Subject: Re: Soyuz and Shuttle Comparisons 3 | 4 | Are you guys talking about the Soviet "shuttle"? It's not "Soyuz", 5 | it's called "Buran" which means "snow storm." 6 | 7 | (At least that's what they call it on Russian TV). 8 | 9 | 10 | -- 11 | Gavin Helf 12 | UC Berkeley Political Science 13 | Berkeley-Stanford Program in Soviet Studies 14 | ghelf@violet.berkeley.edu 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14106-60981: -------------------------------------------------------------------------------- 1 | From: jpw@cbis.ece.drexel.edu (Joseph Wetstein) 2 | Subject: Sunrise/ sunset times 3 | 4 | 5 | Hello. I am looking for a program (or algorithm) that can be used 6 | to compute sunrise and sunset times. 7 | 8 | I would appreciate any advice. 9 | 10 | Joe Wetstein 11 | jpw@coe.drexel.edu 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14108-61004: -------------------------------------------------------------------------------- 1 | From: Andrew Rogers 2 | Subject: Re: Life on Mars??? 3 | 4 | In article <1993Apr20.120311.1@pa881a.inland.com> Don Schiewer, 5 | schiewer@pa881a.inland.com writes: 6 | >What is the deal with life on Mars? I save the "face" and heard 7 | >associated theories. (which sound thin to me) 8 | > 9 | >Are we going back to Mars to look at this face agian? 10 | >Does anyone buy all the life theories? 11 | 12 | try alt.alien.visitors 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14112-62385: -------------------------------------------------------------------------------- 1 | From: 0004651657@mcimail.com (THE ARTSTONE COLLECTIVE) 2 | Subject: Near Miss Asteroids 3 | 4 | If by chance you answered my request for NEO Asteroids in the last two days 5 | please send them to me directly. I by mistake deleted instead of read 6 | all the space-request messages . 7 | 8 | Thanks and sorry. 9 | 10 | Harry G. Osoff 11 | Science & Technology Editor 12 | Access News Network 13 | 14 | jukebox@mcimail.com 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14143-61471: -------------------------------------------------------------------------------- 1 | From: zellner@stsci.edu 2 | Subject: Re: HST Servicing Mission 3 | 4 | In article <1rrhlo$ajb@access.digex.net>, prb@access.digex.net (Pat) writes: 5 | > 6 | > After all the space walking, they are going to re-boost the HST's 7 | > orbit. I think right now it's sitting at 180 miles up, 8 | > they would like 220. 9 | 10 | Where did that idea come from? It's news to me. 11 | 12 | Ben 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14160-61052: -------------------------------------------------------------------------------- 1 | From: cain@geomag.gly.fsu.edu (Joe Cain) 2 | Subject: Re: Keeping Spacecraft on after Funding Cuts. 3 | 4 | This discussion is better followed in talk.politics.space 5 | Joseph Cain cain@geomag.gly.fsu.edu 6 | cain@fsu.bitnet scri::cain 7 | (904) 644-4014 FAX (904) 644-4214 or -0098 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14170-61195: -------------------------------------------------------------------------------- 1 | From: maverick@wpi.WPI.EDU (T. Giaquinto) 2 | Subject: General Information Request 3 | 4 | 5 | I am looking for any information about the space program. 6 | This includes NASA, the shuttles, history, anything! I would like to 7 | know if anyone could suggest books, periodicals, even ftp sites for a 8 | novice who is interested in the space program. 9 | 10 | 11 | 12 | Todd Giaquinto 13 | maverick@wpi.WPI.EDU 14 | 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14171-61442: -------------------------------------------------------------------------------- 1 | From: nsmca@aurora.alaska.edu 2 | Subject: Private Support of Exploration (Russian America) 3 | 4 | Commericial support for exploration examples: 5 | 6 | Also much if Baranovs exploration and Utilization of Alaska (Russian America, 7 | also included parts of Washington state, Oregon, and N. California) was doen by 8 | private funds (yes some royal governmental funds at times..).. 9 | 10 | == 11 | Michael Adams, nsmca@acad3.alaska.edu -- I'm not high, just jacked 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14194-60920: -------------------------------------------------------------------------------- 1 | From: C.O.EGALON@LARC.NASA.GOV (CLAUDIO OLIVEIRA EGALON) 2 | Subject: Re: Space Debris 3 | 4 | > Keesler, Loftus, Potter, Stansbery, Kubriek....? 5 | 6 | I gues it is Keesler. The others do not ring the bell but they might be 7 | involved as well. Sometime ago Keesler was here at Langley teaching 8 | a course on space debris and, if my memory does not fai,l I think there 9 | was even a reference to a book on the subject. 10 | 11 | C.O.Egalon@larc.nasa.gov 12 | 13 | Claudio Oliveira Egalon 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14195-62397: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: DC-X Publicity 3 | 4 | 5 | Even better. Make up pete conrad in a Martian Suit, 6 | and have him get ou;t and throw a football 7 | to the refs. 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14204-61369: -------------------------------------------------------------------------------- 1 | From: binglis@health.ufl.edu (binglis) 2 | Subject: test (please ignore) 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14221-60931: -------------------------------------------------------------------------------- 1 | From: jennise@opus.dgi.com (Milady Printcap the goddess of peripherals) 2 | Subject: Looking for a little research help [ addendum] 3 | 4 | Sorry but I forgot this ps. 5 | 6 | Right now my sight is getting news about two weeks behind so it's 7 | kind of necessary (to me) that any responses be sent to me directly. 8 | 9 | 10 | Thanks a lot 11 | 12 | Jennise 13 | jennise@dgi.com 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14243-60158: -------------------------------------------------------------------------------- 1 | From: shread@ll.mit.edu ( Peter Shread) 2 | Subject: El Sets 3 | 4 | I am looking for a source of orbital element sets 5 | other than UAF/Space Command. I believe there is 6 | one on CompuServe. Please let me know what other 7 | possible sources there are and how I can reach 8 | them. Thanks much. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14244-61138: -------------------------------------------------------------------------------- 1 | From: jdnicoll@prism.ccs.uwo.ca (James Davis Nicoll) 2 | Subject: Re: New planet/Kuiper object found? 3 | 4 | If the new Kuiper belt object *is* called 'Karla', the next 5 | one should be called 'Smiley'. 6 | 7 | James Nicoll 8 | 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14248-60915: -------------------------------------------------------------------------------- 1 | From: xrcjd@resolve.gsfc.nasa.gov (Charles J. Divine) 2 | Subject: Science News article on Federal R&D 3 | 4 | Just a pointer to the article in the current Science News article 5 | on Federal R&D funding. 6 | 7 | Very briefly, all R&D is being shifted to gaining current 8 | competitive advantage from things like military and other work that 9 | does not have as much commercial utility. 10 | -- 11 | Chuck Divine 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14253-61245: -------------------------------------------------------------------------------- 1 | From: vandenbe@crayxmp.lmsc.lockheed.com (J.A. Vanden Beukel) 2 | Subject: Re: Drag Free Satellites 3 | 4 | Regarding drag free satellites, Joe Cain gives a good description of the concept. It is however more than a concept. The Navy's Triad satellite succesfully used drag free control. Drag free control is an integral part of the Stanford Gravity Probe-B spacecraft, due to fly in 1999. It is also part of the European STEP satellite. 5 | 6 | Jeff V. 7 | 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14276-61099: -------------------------------------------------------------------------------- 1 | From: howard@sharps.astro.wisc.edu (Greg Howard) 2 | Subject: Re: PLANETS STILL: IMAGES ORBIT BY ETHER TWIST 3 | 4 | 5 | Actually, the "ether" stuff sounded a fair bit like a bizzare, 6 | qualitative corruption of general relativity. nothing to do with 7 | the old-fashioned, ether, though. maybe somebody could loan him 8 | a GR text at a low level. 9 | 10 | didn't get much further than that, tho.... whew. 11 | 12 | 13 | greg 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14303-60996: -------------------------------------------------------------------------------- 1 | Subject: Life on Mars??? 2 | From: schiewer@pa881a.inland.com (Don Schiewer) 3 | 4 | What is the deal with life on Mars? I save the "face" and heard 5 | associated theories. (which sound thin to me) 6 | 7 | Are we going back to Mars to look at this face agian? 8 | Does anyone buy all the life theories? 9 | 10 | -- 11 | Don Schiewer | Internet schiewer@pa881a.inland.com | Onward Great 12 | Inland Steel | UUCP: !uucp!pa881a.inland!schiewer | Stream... 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14338-60876: -------------------------------------------------------------------------------- 1 | From: wdwells@nyx.cs.du.edu (David "Fuzzy" Wells) 2 | Subject: Re: Space Debris 3 | 4 | >There is a guy in NASA Johnson Space Center that might answer 5 | >your question. I do not have his name right now but if you follow 6 | >up I can dig that out for you. 7 | 8 | Keesler, Loftus, Potter, Stansbery, Kubriek....? 9 | 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14340-61203: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Drag free satellites (was: Stephen Hawking Tours JPL) 3 | 4 | 5 | 6 | Joe, 7 | 8 | your description sounds like one of the gravity probe spacecraft 9 | ideas. 10 | 11 | pat 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14346-61084: -------------------------------------------------------------------------------- 1 | From: tffreeba@indyvax.iupui.edu 2 | Subject: Re: PLANETS STILL: IMAGES ORBIT BY ETHER TWIST 3 | 4 | They must be shipping that good Eau Clair acid to California now. 5 | 6 | Tom Freebairn 7 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14349-61368: -------------------------------------------------------------------------------- 1 | From: u1452@penelope.sdsc.edu (Jeff Bytof - SIO) 2 | Subject: Political banner in space 3 | 4 | I propose that PepsiCo, Mcdonalds and other companies could put 5 | into orbit banners that have timely political messages, such as, 6 | 7 | "Stop the slaughter in Bosnia!" 8 | 9 | , etc. 10 | 11 | -rabjab 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14370-60922: -------------------------------------------------------------------------------- 1 | From: arthurc@sfsuvax1.sfsu.edu (Arthur Chandler) 2 | Subject: Stereo Pix of planets? 3 | 4 | Can anyone tell me where I might find stereo images of planetary and 5 | planetary satellite surfaces? GIFs preferred, but any will do. I'm 6 | especially interested in stereos of the surfaces of Phobos, Deimos, Mars 7 | and the Moon (in that order). 8 | Thanks. 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14380-60237: -------------------------------------------------------------------------------- 1 | From: dietz@cs.rochester.edu (Paul Dietz) 2 | Subject: Re: nuclear waste 3 | 4 | In article <844@rins.ryukoku.ac.jp> will@rins.ryukoku.ac.jp (William Reiken) writes: 5 | 6 | > Ok, so how about the creation of oil producing bacteria? I figure 7 | > that if you can make them to eat it up then you can make them to shit it. 8 | > Any comments? 9 | 10 | They exist. Even photosynthetic varieties. Not economical at this 11 | time, though. 12 | 13 | Paul F. Dietz 14 | dietz@cs.rochester.edu 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14389-60245: -------------------------------------------------------------------------------- 1 | From: C.O.EGALON@LARC.NASA.GOV (CLAUDIO OLIVEIRA EGALON) 2 | Subject: Re: pushing the envelope 3 | 4 | 5 | > flight tests are generally carefully coreographed and just what 6 | > is going to be 'pushed' and how 7 | > far is precisely planned (despite occasional deviations from plans, 8 | > such as the 'early' first flight of the F-16 during its high-speed 9 | > taxi tests). 10 | 11 | .. and Chuck Yeager earlier flights with the X-1... 12 | 13 | 14 | C.O.EGALON@LARC.NASA.GOV 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14391-62409: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.net (Pat) 2 | Subject: Re: SDIO kaput! 3 | 4 | 5 | Not to mention how those those liberal presidents, Nixon, Ford, 6 | Reagan, Bush. did nothing to support true commercial space 7 | activities. 8 | 9 | pat 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14425-61180: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Level 5? 3 | 4 | 5 | 6 | WHile we are on the subject of the shuttle software. 7 | 8 | what ever happened to the hypothesis that the shuttle flight software 9 | was a major factor in the loss of 51-L. to wit, that during the 10 | wind shear event, the Flight control software indicated a series 11 | of very violent engine movements that shocked and set upa harmonic 12 | resonance leading to an overstress of the struts. 13 | 14 | pat 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14433-60205: -------------------------------------------------------------------------------- 1 | From: will@rins.ryukoku.ac.jp (William Reiken) 2 | Subject: Re: nuclear waste 3 | 4 | 5 | Thanks for the Update. 6 | 7 | Will... 8 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14448-61078: -------------------------------------------------------------------------------- 1 | From: pearson@tsd.arlut.utexas.edu (N. Shirlene Pearson) 2 | Subject: Re: Sunrise/ sunset times 3 | 4 | jpw@cbis.ece.drexel.edu (Joseph Wetstein) writes: 5 | 6 | 7 | >Hello. I am looking for a program (or algorithm) that can be used 8 | >to compute sunrise and sunset times. 9 | 10 | Would you mind posting the responses you get? 11 | I am also interested, and there may be others. 12 | 13 | Thanks, 14 | 15 | N. Shirlene Pearson 16 | pearson@titan.tsd.arlut.utexas.edu 17 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14451-60984: -------------------------------------------------------------------------------- 1 | From: jennise@opus.dgi.com (Milady Printcap the goddess of peripherals) 2 | Subject: RE: Looking for a little research help 3 | 4 | Found it! Thanks. I got several offers for help. I appreciate it and 5 | will be contacting those people via e-mail. 6 | 7 | Thanks again... 8 | 9 | jennise 10 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14479-60851: -------------------------------------------------------------------------------- 1 | From: C.O.EGALON@LARC.NASA.GOV (CLAUDIO OLIVEIRA EGALON) 2 | Subject: Re: Space Debris 3 | 4 | There is a guy in NASA Johnson Space Center that might answer 5 | your question. I do not have his name right now but if you follow 6 | up I can dig that out for you. 7 | 8 | C.O.Egalon@larc.nasa.gov 9 | 10 | Claudio Oliveira Egalon 11 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14486-60176: -------------------------------------------------------------------------------- 1 | From: dietz@cs.rochester.edu (Paul Dietz) 2 | Subject: Re: Terraforming Venus: can it be done "cheaply"? 3 | 4 | Would someone please send me James Oberg's email address, if he has 5 | one and if someone reading this list knows it? I wanted to send 6 | him a comment on something in his terraforming book. 7 | 8 | Paul F. Dietz 9 | dietz@cs.rochester.edu 10 | 11 | Potential explosive yield of the annual global 12 | production of borax: 5 million megatons 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14497-60986: -------------------------------------------------------------------------------- 1 | From: wats@scicom.AlphaCDC.COM (Bruce Watson) 2 | Subject: Re: Why not give $1 billion to first year-long moon residents? 3 | 4 | The Apollo program cost something like $25 billion at a time when 5 | the value of a dollar was worth more than it is now. No one would 6 | take the offer. 7 | -- 8 | Bruce Watson (wats@scicom.alphaCDC.COM) Bulletin 629-49 Item 6700 Extract 75,131 9 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14508-60832: -------------------------------------------------------------------------------- 1 | From: schumach@convex.com (Richard A. Schumacher) 2 | Subject: Re: space news from Feb 1 AW&ST 3 | 4 | 5 | >Marshall is investigating a small but odd pressure rise in one SRB 6 | >during the Jan 12 Endeavour launch. It lasted only three seconds and 7 | >the thrust difference between the two SRBs was not enough to cause 8 | >nozzle gimballing. The SRB casing shows no abnormalities. 9 | 10 | Is this the one that had the {wrench|pliers} found inside after 11 | recovery? 12 | 13 | 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14543-62426: -------------------------------------------------------------------------------- 1 | From: ez012344@hamlet.ucdavis.edu (Dan Herrin) 2 | Subject: Re: Space Marketing -- Boycott 3 | 4 | 5 | [Space ad proposed] 6 | 7 | This is undoubtedly the sickest thing to come down the marketing pipe 8 | in years, and the best reason for resurrecting the "Star Wars" killer 9 | satellite system. 10 | 11 | Dan 12 | 13 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14549-60977: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: Keeping Spacecraft on after Funding Cuts. 3 | 4 | 5 | 6 | Some birds require constant management for survival. Pointing a sensor at 7 | the sun, even when powered down, may burn it out. Pointing a 8 | parabolic antenna at Sol, from venus orbit may trash the 9 | foci elements. 10 | 11 | Even if you let teh bird drift, it may get hosed by some 12 | cosmic phenomena. 13 | 14 | pat 15 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14561-61073: -------------------------------------------------------------------------------- 1 | From: pgf@srl02.cacs.usl.edu (Phil G. Fraering) 2 | Subject: Re: PLANETS STILL: IMAGES ORBIT BY ETHER TWIST 3 | 4 | The only ether I see here is the stuff you must 5 | have been breathing before you posted... 6 | 7 | -- 8 | Phil Fraering |"Seems like every day we find out all sorts of stuff. 9 | pgf@srl02.cacs.usl.edu|Like how the ancient Mayans had televison." Repo Man 10 | 11 | 12 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14563-60857: -------------------------------------------------------------------------------- 1 | From: prb@access.digex.com (Pat) 2 | Subject: Re: army in space 3 | 4 | 5 | There is the Army Ballistic Missile Defense Organization. 6 | 7 | They were the precursors to SDIO. and still exist under 8 | that umbrella. Army Signal Corp's and DCA defense Comm Agency 9 | oops DISA, they just changed names do space work. that's 10 | the point of all those defense comm sats. 11 | 12 | But don't worry, there are lots of jobs that need ditch digging, 13 | somehow you'll end up there ;-) 14 | -------------------------------------------------------------------------------- /8. K-均值/data/sci.space/14577-62130: -------------------------------------------------------------------------------- 1 | From: elowitz@noao.edu (Mark Elowitz) 2 | Subject: Need help in finding address... 3 | 4 | Could someone please help me. I am trying to find the 5 | address to the TDRS receiving station at White Sands 6 | Missile Range. I am interested in possible employment 7 | and would like to write for information. 8 | 9 | Thanks... 10 | 11 | -------------------------------------------------------------------------------- /run.bash: -------------------------------------------------------------------------------- 1 | git add . 2 | git commit -m "update" 3 | git push origin master --------------------------------------------------------------------------------