-
Notifications
You must be signed in to change notification settings - Fork 1
/
file_list.txt
4112 lines (4109 loc) · 270 KB
/
file_list.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#/g/sicp Gentoomen Programming, Computer Science, Wizardry, and General Technology Book Library - File Listing
(λ . Gentoomen Library
(λ . Algorithms
(λ .Algorithm Design - John Kleinberg - Éva Tardos.pdf)
(λ .Algorithms and Data Structures in C++(diamond-torrents.info).chm)
(λ .Algorithms in C.pdf)
(λ .Algorithms_in_Pascal_-_Sedgewick.pdf)
(λ .Algorithms_Nutshell .pdf)
(λ .ALGORITHMS - ROBERT SEDGEWICK.pdf)
(λ .Algorithms (upload by spark_plug_101).pdf)
(λ .An Introduction to Genetic Algorithms - Melanie Mitchell.pdf)
(λ .Computer Graphics - C Version, 2nd Edition.pdf)
(λ .Core Techniques and Algorithms in Game Programming.pdf)
(λ . Data Structure And Algorithms Books
(λ .Algorithms and Data Structures in CPlusPlus - Alan Parker.pdf)
(λ .Algorithms and Data Structures - Niklaus Wirth.pdf)
(λ .Algorithms and Data Structures The Science of Computing - Douglas Baldwin.chm)
(λ .Algorithm Theory - SWAT 2002 - M. Penttonen.pdf)
(λ .C Algorithms For Real Time DsP - Paul Embree.pdf)
(λ .C and Data Structures - P.S. Deshpande.chm)
(λ .C++ Data Structures 3rd ed - Nell Dale.pdf)
)
(λ .Data Structures and Algorithms in Java, 4th Edition.pdf)
(λ .Data Structures and Algorithms in Java, 5th Edition.pdf)
(λ .Dictionaryof Algorithms and Data Structures.chm)
(λ .Distributed Source Coding Theory, Algorithms and Applications~tqw~_darksiderg.pdf)
(λ .Fast Transforms Algorithms, Analyses, Applications~tqw~_darksiderg.pdf)
(λ .Handbook of Algorithms and Data Structures In Pascal and C 2nd Ed - G.H. Gonnet.djvu)
(λ .Internet Security. Cryptographic Principles, Algorithms and Protocols.pdf)
(λ .Introduction to Algorithms 3rd Edition Sep 2010.pdf)
(λ .Introduction to Algorithms-Cormen.pdf)
(λ .Introduction to Algorithms-Cormen Solution.pdf)
(λ .knuth_-_the_art_of_computer_programming_-_vol.1.djvu)
(λ .Petascale Computing Algorithms and Applications.pdf)
(λ .Springer - Encyclopedia of Algorithms (2008).pdf)
(λ .Teach Yourself Data Structures And Algorithms In 24 hours - Robert Lafore.pdf)
(λ .The Art Of Computer Programming 2nd ed Vol3 - Donald Knuth.djvu)
(λ . Top Ten Data Mining Algos Chapters
(λ .#10.pdf)
(λ .#11.pdf)
(λ .#1.pdf)
(λ .#2.pdf)
(λ .#3.pdf)
(λ .#4.pdf)
(λ .#5.pdf)
(λ .#6.pdf)
(λ .#7.pdf)
(λ .#8.pdf)
(λ .#9.pdf)
)
)
(λ . Animation
(λ .3D Studio Max 5 for Dummies.chm)
(λ .Advanced_Animation_Preston_Blair.pdf)
(λ .Animating_with_Stop_Motion_Pro.pdf)
(λ .Animation_From_Pencils_to_Pixels.pdf)
(λ .Animation_Mechanics_Motion.pdf)
(λ .Animation_Writing_Development_Script_Pitch.pdf)
(λ .Cartoon Animation - Preston Blair.zip)
(λ .Character_Animation_2D_Skills_for_Better_3D.pdf)
(λ .How_to_Make_Animated_Films_Tony_Whites_Complete_Masterclass_on_The_Traditional_Principles_of_Animation.pdf)
(λ .Hybrid_Animation_Integrating_2d_and_3d_Assets.pdf)
(λ .Stop_Motion_Passion_Process_and_Performance.pdf)
(λ .The_Advanced_Art_of_Stop_Motion_Animation.pdf)
(λ .The _Animator's_Survival_Kit.pdf)
(λ .Thinking_Animation_Bridging_Gap_2D_3D.pdf)
(λ .Timing_for Animation.chm)
)
(λ . Artificial Intelligence
(λ . Bayesian networks
(λ .Dynamic Bayesian Networks Representation, Inference And Learning - Kevin Patrick Murphy.pdf)
(λ .Judea Pearl - Heuristics.djvu)
(λ .Judea Pearl - Probabilistic Reasoning in Intelligent Systems.pdf)
(λ .Learning Bayesian Networks - Neapolitan R. E..pdf)
)
(λ . Computer Vision
(λ .Computer Modeling and Simulation Techniques for Computer Vision Problems - Ming-Chin Lu.pdf)
(λ .Computer Vision 2d ed - Dand h Ballard.pdf)
(λ .Computer Vision A Modern Approach - Forsyth , Ponce.pdf)
(λ .Computer Vision and Applications A Guide for Students and Practitioners - Bernd Jahne.pdf)
(λ .Computer Vision - Linda Shapiro.pdf)
(λ .Feature Extraction in Computer Vision and Image Processing - Mark S. Nixon.pdf)
(λ .Fundamentals of Computer Vision - Mubarak Shah.pdf)
(λ .Handbook of Computer Vision Algorithms in Image Algebra, 2nd Ed - Gerhard X. Ritter.pdf)
(λ .Handbook of Computer Vision and Applications Volume 1 Sensors and Imaging - Bernd Jahne.pdf)
(λ .Handbook of Computer Vision and Applications Volume 2 Signal Processing and Pattern Recognition - - Bernd Jahne.pdf)
(λ .Handbook of Computer Vision and Applications Volume 3 Systems and Applications - Bernd Jahne.pdf)
(λ .Handbook Of Mathematical Models In Computer Vision - Nikos Paragios.pdf)
(λ .Multiple View Geometry in Computer Vision 2ed - Hartley R., Zisserman A.pdf)
(λ .Vision with Direction A Systematic Introduction to Image Processing and Computer Vision - Josef Bigun.pdf)
)
(λ . Evolutionary computation
(λ .Data Mining Using Grammar Based Genetic Programming and Applications - Wong, Cheung.pdf)
(λ .Evolutionary Computation for Modeling and Optimization - Daniel Ashlock.pdf)
(λ .Evolutionary computation, vol.1 basic algorithms and operators - Baeck T., Fogel D.B., Michalewicz Z.djvu)
(λ .Evolutionary computation, vol.2 advanced algorithms and operators - Baeck T., Fogel D.B., Michalewicz Z.djvu)
(λ .FRONTIERS OF EVOLUTIONARY COMPUTATION - Anil Menon.pdf)
(λ .Genetic Programming An Introduction On the Automatic Evolution of Computer Programs and its Applications - Morgan Kaufmann.pdf)
(λ .Genetic programming Complex adaptive systems - Koza J.R..pdf)
(λ .Genetic Programming Theory and Practice II - John Koza.pdf)
(λ .The Handbook of Evolutionary Computation - Kenneth De Jong.pdf)
)
(λ . Fuzzy systems
(λ .FLEXIBLE NEURO-FUZZY SYSTEMS Structures, Learning and Performance Evaluation - Leszek Rutkowski.pdf)
(λ .Fusion Of Neural Networks, Fuzzy Systems And Genetic Algorithms - Lakhmi C. Jain , N.M. Martin.pdf)
(λ .Fuzzy Control Systems Design and Analysis A Linear Matrix Inequality Approach - Kazuo Tanaka, Hua O. Wang.pdf)
(λ .Fuzzy Logic in Embedded Microcomputers and Control Systems - Walter Banks.pdf)
(λ .Fuzzy Sets And Fuzzy Information Granulation Theory - lotfi Zadeh.pdf)
(λ .FUZZY SETS AND FUZZY LOGIC Theory and Applications - GEORGE J. KLIR , BO YUAN.pdf)
(λ .Fuzzy Sets And Systems Theory And Applications - Didier Dubois , Henri Prade.pdf)
(λ .FUZZY SETS AND THEIR APPLICATIONS TO COGNITIVE AND DECISION PROCESSES - Lotfi A. Zadeh , King-Sun Fu.pdf)
(λ .Neuro-Fuzzy and Soft Computing A Computational Approach to Learning and Machine Intelligence - Jyh-Shing Roger Jang.djvu)
(λ .Simulating Continuous Fuzzy Systems - James J. Buckley.pdf)
)
(λ . General
(λ .Advances in Applied Artificial Intelligence - John Fulcher.pdf)
(λ .Advances in Artificial Intelligence ? SBIA 2004 - Ana L.C. Bazzan , Sofiane Labidi.pdf)
(λ .Agent-Oriented Programming - From Prolog to Guarded Definite Clauses - Matthew M. Huntbach.pdf)
(λ .Artificial Intelligence A Modern Approach - Stuart J. Russell , Peter Norvig.pdf)
(λ .Artificial Intelligence and Soft Computing Behavioral and Cognitive Modeling of the Human Brain - Konar Amit.pdf)
(λ .ARTIFICIAL INTELLIGENCE and SOFTWARE ENGINEERING Understanding the Promise of the Future - Derek Partridge.pdf)
(λ .Artificial Intelligence Applications and Innovations - Bramer Max.pdf)
(λ .Artificial Intelligence Strategies, Applications, and Models Through Search 2d ed - Christopher Thornton.pdf)
(λ .Artificial Intelligence, Structures And Strategies For Complex Problem Solving 3rd ed - George F Luger.pdf)
(λ .Artificial Intelligence Through Prolog - Neil C Rowe.pdf)
(λ .Artificial Intelligence Today Recent Trends and Development - Manuela Veloso.pdf)
(λ .Computational Intelligence An Introduction - Andries P. Engelbrecht.pdf)
(λ .Computational Intelligence For Decision Support - Chen.pdf)
(λ .Computational Intelligence In Control - Masoud Mohammadian.pdf)
(λ .Computational Intelligence in Manufacturing Handbook - Jun Wang.pdf)
(λ .COMPUTATIONAL LINGUISTICSModels, Resources, Applications - Igor A. Bolshakov , Alexander Gelbukh.pdf)
(λ .Computational Web Intelligence Intelligent Technology for Web Applications - Y.-Q. Zhang.pdf)
(λ .Data Mining with Computational Intelligence - Lipo Wang , Xiuju Fu.pdf)
(λ .Essentials of Programming Languages 2d ed - Daniel P. FriedmanMitchell WandChristopher T. Haynes.pdf)
(λ .Intelligent Information Integration for the Semantic Web - Ubbo Visser.pdf)
(λ .Methods And Applications Of Artificial Intelligence - Themistoklis Panayiotopoulos.pdf)
(λ .Morgan.Kaufmann.Semantic.Web.for.the.Working.Ontologist.May.2008.pdf)
(λ .Multiagent systems a modern approach to distributed artificial intelligence - Gerhard Weiss.pdf)
(λ .O'Reilly AI for Game Developers.chm)
(λ .Practical Artificial Intelligence Programming in Java - Mark Watson.pdf)
(λ .PROLOG PROGRAMMING FOR ARTIFICIAL INTELLIGENCE - lvan Bratko.pdf)
(λ .The Elements of Artificial Intelligence Using Lisp - Steven L. Tanimoto.pdf)
(λ .The International Dictionary Of Artificial Intelligence - William Raynor.pdf)
)
(λ . Intelligent Systems
(λ .Artificial_Intelligence_-_A_Guide_to_Intelligent_Systems.pdf)
(λ .Hybrid architectures for intelligent systems - Lotfi A. Zadeh.chm)
(λ .Intelligent Communication Systems - Nobuyoshi Terashima.pdf)
(λ .Intelligent Systems for Engineers and Scientists 2d ed - Adrian A. Hopgood.pdf)
(λ .Intelligent Systems Fusion, Tracking, and Control - GeeWah Ng.pdf)
)
(λ .ISR.Encyclopedia.Of.Artificial.Intelligence.Aug.2008.eBook-ELOHiM.pdf)
(λ . Knowledge-based systems
(λ .Artificial Intelligence and Expert Systems for Engineers - Krishnamoorthy , S. Rajeev.pdf)
(λ .Building Expert Systems in Prolog - Dennis Merritt.pdf)
(λ .Fuzzy Expert Systems and Fuzzy Reasoning - William Siler.pdf)
(λ .The handbook of applied expert systems - Jay Liebowitz.pdf)
)
(λ . Knowledge representation
(λ .Knowledge representation reasoning and declarative problem solving with Answer sets - Chitta Baral.pdf)
)
(λ . Machine learning
(λ .An Introduction to Support Vector Machines and Other Kernel-based Learning Methods - Nello Cristianini , John Shawe.chm)
(λ .CRC.Press-Utility.Based.Learning.from.Data.2010.RETAiL.EBook.pdf)
(λ .Data Mining Practical Machine Learning Tools and Techniques 2d ed - Morgan Kaufmann.pdf)
(λ .Introduction to Machine Learning - Nils J Nilsson.pdf)
(λ .Machine Learning And Its Applications - Georgios Paliouras.pdf)
(λ .Machine Learning, Game Play, and Go - David Stoutamire.pdf)
(λ .Machine Learning in Computer Vision - N. SEBE.pdf)
(λ .Machine Learning, Neural And Statistical Classification - Michie , Spiegelhalter , Taylor.pdf)
(λ .Machine Learning - Tom Mitchell.pdf)
(λ .PROBLEM SOLVING WITH REINFORCEMENT LEARNING - Gavin Adrian Rummery.pdf)
(λ .Reinforcement Learning An Introduction - Richard S. Sutton , Andrew G. Barto.pdf)
(λ .Statistical Machine Learning For Information Retrieval - Adam Berger.pdf)
)
(λ . Natural Language Processing
(λ .Formal Syntax and Semantics of Programming Languages - Kenneth Slonneger.pdf)
(λ .Foundations of Statistical Natural Language Processing - Christopher D. Manning.pdf)
(λ .Natural Language Processing for Online Applications Text Retrieval,Extraction and Categorization - Peter Jackson , Isabelle Moulinier.pdf)
(λ .Ontological Semantics - Sergei Nirenburg , Victor Raskin.pdf)
(λ .Speech and Language Processing An Introduction to Natural Language Processing, Computational Linguistics and Speech Recognition - D.djvu)
)
(λ . Neural networks
(λ .Analysis And Applications Of Artificial Neural Networks - LPG Veelenturf.pdf)
(λ .An Introduction to Neural Networks - Patrick van der Smagt.pdf)
(λ .Artificial Neural Networks - Colin Fyfe.pdf)
(λ .Artificial Neural Networks in Real-life Applications - Juan R. Rabunal.pdf)
(λ .C++ Neural Networks and Fuzzy Logic - Valluru B. Rao.pdf)
(λ .Foundations of Neural Networks, Fuzzy Systems, and Knowledge Engineering - Nikola Kazabov.pdf)
(λ .Fusion of Neural Networks, Fuzzy Systems and Genetic Algorithms Industrial Applications - Lakhmi C. Jain , N.M. Martin.pdf)
(λ .Kalman Filtering and Neural Networks - Simon Haykin.pdf)
(λ .Machine Learning, Neural And Statistical Classification - Cc Taylor.pdf)
(λ .Methods and Procedures for the Verification and Validation of Artificial Neural Networks - Brian J. Taylor.pdf)
(λ .Neural Networks - A Comprehensive Foundation - Simon Haykin.pdf)
(λ .Neural Networks Algorithms, Applications,and Programming Techniques - James A. Freeman.pdf)
(λ .Programming Neural Networks in Java - JeffHeaton.pdf)
(λ .RECENT ADVANCES IN ARTIFICIAL NEURAL NETWORKS Design and Applications - Lakhmi Jain.pdf)
(λ .Recurrent Neural Networks Design And Applications - L.R. Medsker.pdf)
(λ .Static and Dynamic Neural Networks From Fundamentals to Advanced Theory - Madan M. Gupta, Liang Jin, Noriyasu Homma.pdf)
(λ .The Handbook Of Brain Theory And Neural Networks 2Nd Ed - Michael A Arbib.pdf)
)
(λ . Pattern recognition
(λ .An Introduction to Pattern Recognition - Michael Alder.pdf)
(λ .Evolutionary Synthesis of Pattern Recognition Systems - Bir Bhanu.pdf)
(λ .Introduction to Statistical Pattern Recognition 2nd Ed - Keinosuke Fukunaga.pdf)
(λ .Particle Swarm Optimization Methods for Pattern Recognition and Image Processing - Mahamed G. H. Omran.pdf)
(λ .Pattern recognition and image preprocessing 2nd ed -Sing T. Bow.pdf)
(λ .Pattern Recognition in Speech and Language Processing - WU CHOU.pdf)
(λ .Pattern Recognition with Neural Networks in C++ - Abhijit S. Pandya, Robert B. Macy.chm)
(λ .Statistical Pattern Recognition 2nd Ed - Andrew R. Webb.pdf)
)
(λ . Soft Computing
(λ .Foundations Of Soft Case-based Reasoning - SANKAR K. PAL.pdf)
(λ .Intelligent Control Systems Using Soft Computing Methodologies - Ali Zilouchian.pdf)
(λ .Learning And Soft Computing - Support Vector Machines, Neural Networks, And Fuzzy Logic Models - Vojislav Kecman.pdf)
)
(λ . Swarm Intelligence
(λ .Swarm intelligence - James Kennedy.pdf)
)
)
(λ . Computational Linguistics
(λ .Jurafsky_Martin-Speech_and_Language_Processing_draft.zip)
(λ .LeipzigGlossingRules.pdf)
(λ . Machine_Learning_Unsupervised_parsing_and_MT
(λ .Bod-AllSubtreesApproachUP.pdf)
(λ .Bod-UDOP.pdf)
(λ .brown1990sam.pdf)
(λ .brown1993msm.pdf)
(λ .brown-statisticalMT.pdf)
(λ .Carroll_Charniak-DependencyGrammar.pdf)
(λ .Goodman-efficient_parsing_of_DOP.pdf)
(λ .hearne2008ccd.pdf)
(λ .Hearne-DOT_thesis__goodmanreductions.pdf)
(λ .Klein_and_Manning-factored_syntactic_induction.pdf)
(λ .Klein_and_Manning-generative_induction.pdf)
(λ .Klein-thesis_Unsupervised_Learning.pdf)
(λ .koehn2003spb.pdf)
(λ .lari_young-insideoutsidealgorithm.pdf)
(λ .Mitchell-Machine_Learning_Mc-Graw_Hill-1997.pdf)
(λ .Och_Ney-Comparison_MT_alignment.pdf)
(λ .Pereira_and_Schabes-Inside-Outside.pdf)
(λ .Prescher-Expectation_Maximation_tutorial.pdf)
(λ .riezler2006gmt.pdf)
(λ .Way-LFG_DOP.pdf)
)
(λ . McEnery_Xiao_Tono-Corpus_Based_Language_Studies
(λ .cbls_bib.pdf)
(λ .contents.pdf)
(λ .Help or help to- what do corpora have to say_.pdf)
(λ .Unit 10 Corpora and language studies pt1_3.pdf)
(λ .Unit 10 Corpora and language studies pt2_3.pdf)
(λ .Unit 10 Corpora and language studies pt3_3.pdf)
(λ .Unit 1 Corpus linguistics- the basics.pdf)
(λ .Unit 2 Representativeness, balance and sampling.pdf)
(λ .Unit 3 Corpus markup .pdf)
(λ .Unit 4 Corpus annotation.pdf)
(λ .Unit 5 Multilingual corpora.pdf)
(λ .Unit 6 Making statistical claims.pdf)
(λ .Unit 7 Extended Well-known and influential corpora.pdf)
(λ .Unit 8 Going solo- DIY corpora.pdf)
)
(λ .Paul_Graham-on_lisp.pdf)
(λ . Psycholinguistics
(λ .Trueswell_et_al-Kindergarten_Path.pdf)
)
(λ . Semantics
(λ .Ide, Nancy & Yorick Wilks-Making Sense about Sense, WSDbook.pdf)
(λ .Lakoff-1987-Women-Fire-and-Dangerous-Things.pdf)
(λ .Lambalgen_Hamm-Proper_Treatment_of_Events.pdf)
)
(λ . Statistics
(λ .Baayen2008-analyzing_linguistic_data_with_R-draft.pdf)
(λ . johnson2008-quantitative_methods_in_linguistics
(λ .1fundamentals.pdf)
(λ .2patterns.pdf)
(λ .3phonetics.pdf)
(λ .4psycholinguistics.pdf)
(λ .5sociolinguistics.pdf)
(λ .6historical.pdf)
(λ .7syntax.pdf)
(λ .A_R_getting_started.pdf)
(λ .frontmatter.pdf)
(λ .references.pdf)
)
)
(λ . Syntactic_theory
(λ .austin-LFG_intro.pdf)
(λ .Bod-ch.3_Prob_grammars.pdf)
(λ .Bresnan_Mchombo-Lexical_Integrity.pdf)
(λ .Dalrymple-LFG_encyclopedia_entry.pdf)
(λ .Dalrymple-LFG.pdf)
(λ .Goldberg-CG.pdf)
(λ .Joshi-TAG.pdf)
(λ .Kaplan_Maxwell-grammar_writers_workbench_lfg_manual.pdf)
(λ .Levine_Meurers-HPSG_encyclopedia_entry.pdf)
(λ .Pullum_Scholz-Model_Theoretic_syntax.pdf)
(λ .Pullum_Zwicky-Cliticization_Inflection.pdf)
(λ .Sag_Manning-ARGST_vs_SEM.pdf)
(λ .Sells-Syntax_book.pdf)
)
)
(λ . Computer Architecture
(λ .Advanced Computer Architecture and Parallel Processing.pdf)
(λ .Computer_Organization_5th_Edition.pdf)
(λ .Computer.Organization.and.Design.The.Hardware.Software.Interface.3rd.Ed.2004.iso)
(λ .Computer.Organization.and.Design.The.Hardware.Software.Interface.3rd.Ed.2004.pdf)
(λ .Computer Organization and Design -The Hardware Software Interface 3rd ed solutions.pdf)
(λ .computer_org_design_patterson.pdf)
(λ .Fundamentals of Computer Organization and Architecture.pdf)
(λ .Jones & Bartlett, The Essentials of Computer Organization and Architecture -2003.chm)
(λ .Modern_Operating_Systems_2ndEd_by_Tanenbaum_Prentice_Hall.chm)
(λ .Morgan Kaufmann Computer Architecture, A Quantitative Approach 3rd edition 2002.pdf)
(λ .PointersAndMemory.pdf)
(λ .Principles of Computer Architecture - 1999.pdf)
(λ . Reverse Engeniering
(λ .A-list CD Cracking Uncovered - Protection Against Unsanctioned CD Copying.chm)
(λ .Covert Java Techniques for Decompiling, Patching,and Reverse Engineering.pdf)
(λ .Introduction To Software Reverse Engineering 2003.pdf)
(λ .Reverse Engineering of Object Oriented Code.pdf)
(λ .Reversing - Secrets of Reverse Engineering.pdf)
(λ .Static And Dynamic Reverse Engineering Techniques For Java Software Sysytems.pdf)
)
)
(λ . Computer Graphics
(λ .Fundamentals of Computer Graphics -- Peter Shirley.pdf)
(λ .Mathematics for 3D Game Programming and Computer Graphics - Eric Lengyel.zip)
(λ .OpenGL Programming Guide, 7th Edition.pdf)
(λ .Packt.-.3D.Graphics.with.XNA.Game.Studio.4.0.pdf)
)
(λ . Computer History
(λ .Apple Confidential 2.0 msword.zip)
(λ .Apple Confidential 2.0 The Definitive History of the World's Most Colorful Company.pdf)
(λ .Dealers of Lightning - Michael Hiltzik.epub)
(λ .Edstrom & Eller - Barbarians Led by Bill Gates - Microsoft from the Inside - How the World's Richest Corporation Wields Its Power (1999).pdf)
(λ .Game Over_ How Nintendo Conquered the Wo - David Sheff.epub)
(λ .iCon Steve Jobs_ The Greatest Second Act - Jeffrey S. Young.epub)
(λ .Inside Steve's Brain - Leander Kahney.epub)
(λ .iWoz - Steve Wozniak.epub)
(λ .Paul Allen - Idea Man_ A Memoir by the Cofo_oft (v5.0).epub)
(λ .Racing_the_Beam_-_The_Atari_Video_Computer_System.pdf)
(λ .Return to the Little Kingdom-Steve Jobs, the Creation of Apple, & How it Changed the World, 2e [2009].epub)
(λ .stevejobs 1996_Wired.pdf)
(λ .Steve Wozniak - iWoz (epub).epub)
(λ .TheUltimateHistoryOfVideoGames_Revisited.zip)
(λ .Tracy_Kidder-The_Soul_of_A_New_Machine-Back_Bay_Books(2000).epub)
(λ .Walter Isaacson - Steve Jobs (v5.0).epub)
(λ .ZAP - Story of atari.epub)
)
(λ . Cryptography
(λ .A Course In Number Theory And Cryptography 2d ed - Neal Koblitz.djvu)
(λ .Algebraic Aspects of Cryptography - Neal Koblitz.djvu)
(λ .Beginning Cryptography with Java - David Hook.chm)
(λ .Complexity and Cryptography An Introduction - JOHN TALBOT.pdf)
(λ .Contemporary Cryptography - Rolf Oppliger.pdf)
(λ .Cryptography and Network Security Principles and Practices, 4th Ed - William Stallings.pdf)
(λ .Cryptography for Developers - Simon Johnson.pdf)
(λ .Cryptography For Dummies - Chey Cobb.chm)
(λ .Cryptography in C and C++ - Michael Welschenbach.chm)
(λ .Cryptography Theory And Practice - Douglas Stinson.pdf)
(λ .(eBook) Bruce Schneier - Applied Cryptography, Second Edition - John Wiley & Sons [ISBN0471128457].pdf)
(λ .Encryption in a Windows Environment EFS File, 802.1x Wireless, IPSec Transport, and SMIME Exchange - Rand Morimoto.chm)
(λ .Foundations of Cryptography A Primer - Oded Goldreich.pdf)
(λ .Guide to Elliptic Curve Cryptography - Darrel Hankerson.pdf)
(λ .Handbook of Applied Cryptography - Alfred J. Menezes.pdf)
(λ .Handbook of Applied Cryptography (Crc Press Series on Discrete Mathematics and Its Applications) 5th Edition.pdf)
(λ .Image and Video Encryption From Digital Rights Management to Secured Personal Communication - Sushil Jajodia.pdf)
(λ .INTRODUCTION TO CRYPTOGRAPHY WITH JAVA APPLETS - DAVID BISHOP.pdf)
(λ .Java Cryptography - Jonathan B. Knudsen.pdf)
(λ .Learn Encryption Techniques with BASIC and C++ - Gil Held.chm)
(λ .Malicious Cryptography Exposing Cryptovirology - Adam Young.pdf)
(λ .Military Cryptanalysis.pdf)
(λ .Modern Cryptography Theory and Practice - Wenbo Mao.chm)
(λ .Modern Cryptography Theory and Practice - Wenbo Mao.pdf)
(λ .PROGRESS ON CRYPTOGRAPHY 25 Years of Cryptography in China - Kefei Chen.pdf)
(λ .The CodeBreakers - Kahn David.pdf)
)
(λ . Data Analysis
(λ .Data Analysis and Decision Making 4th Edition by Albright, Winston and Zappe.pdf)
(λ .Wiley.Symbolic.Data.Analysis.and.the.SODAS.Software.Mar.2008.pdf)
)
(λ . Databases
(λ .Access Database Design & Programming, 3rd Ed 2002.pdf)
(λ .Access Database Design & Programming, Ed 2 1999.pdf)
(λ .Advanced DBA Certification Guide And Reference For DB2 Universal Database V8 For Linux UNIX And Windows 2004.chm)
(λ .Beginning Database Design 2006.pdf)
(λ .Beginning Database Design Solutions.pdf)
(λ .Database Design Know It All.pdf)
(λ .Database Design Manual Using Mysql for Windows 2004.pdf)
(λ .Databases A Beginners Guide.pdf)
(λ .DB2 Universal Database for OS390 v7 1 Application Certification Guide 2003.chm)
(λ .DB2 Universal Database for OS390 v7 1 Certification Guide 2002.chm)
(λ .DB2 Universal Database V8 For Linux UNIX And Windows Database Administration Certification Guide 5th Ed 2003.chm)
(λ .DB2 Universal Database V8 Handbook For Windows UNIX And Linux 2003.chm)
(λ .Designing Relational Database Systems 1999.chm)
(λ .First_Course_in_Database_Systems_-_Jeffrey_Ullman_Jennifer_Widom.pdf)
(λ .Fundamentals_of_Database_Systems,_6th_Edition_(0136086209).pdf)
(λ .Kimball & Ross - The Data Warehouse Toolkit 2nd Ed [Wiley 2002].pdf)
(λ .Microsoft Access Tutorial.pdf)
(λ .Molina,Ullman - Database Systems The Complete Book.pdf)
(λ . mssql
(λ .A Developers Guide to SQL Server 2005.chm)
(λ .Advanced SQL Database Programmers Handbook 2003.pdf)
(λ .Advanced SQL Database Programming - 2003.pdf)
(λ .Apress.Beginning.SQL.Server.2008.for.Developers.From.Novice.to.Professional.Jul.2008.pdf)
(λ .Apress.SQL.Server.2008.Transact.SQL.Recipes.Jul.2008.pdf)
(λ .Beginning SQL 2005.pdf)
(λ .Beginning SQL Server 2005 For Developers.pdf)
(λ .Beginning SQL Server 2005 Programming 2006.pdf)
(λ .Inside SQL Server 2000.chm)
(λ .Microsoft SQL Server 2005 For Dummies 2006.pdf)
(λ .Portable DBA SQL Server 2004.chm)
(λ .Professional SQL Server 2005 XML.pdf)
(λ .Programming SQL Server 2005.chm)
(λ .Pro SQL Server 2005.pdf)
(λ .Pro SQL Server 2005 Reporting Services 2006.pdf)
(λ .SQL Bible - 2003.chm)
(λ .SQL Cookbook 2005.chm)
(λ .SQL for Dummies 5th Edition - 2003.pdf)
(λ .SQL in a Nutshell, 2nd Edition - 2004.chm)
(λ .SQL In Nutshell 2001.pdf)
(λ .SQL Performance Tuning - Sep 2002.chm)
(λ .SQL Programming Style - Apr 2005.pdf)
(λ .SQL Server 2000 For Experienced DBAs 2003.chm)
(λ .SQL Server 2000 Stored Procedure and XML Programming 2nd Ed 2003.pdf)
(λ .SQL Server 2000 Stored Procedures Handbook 2003.chm)
(λ .SQL Server 2005 Express Edition Starter Kit 2006.pdf)
(λ .SQL Server 2005 Express Edition Starter Kit (example files)2006.zip)
(λ .SQL Server 7 Backup & Recovery 2000.pdf)
(λ .SQL Server Security Distilled 2nd Ed 2003.chm)
(λ .SQL Tips and Techniques - 2002.chm)
(λ .SQL Tuning 2004.chm)
(λ .SQL Visual QuickStart Guide 2nd Ed 2005.chm)
(λ .Teach Yourself SQL in 10 Minutes 3rd ed 2004.chm)
(λ .Teach Yourself SQL in 24 Hours, 3rd ed 2003.chm)
(λ .The Gurus Guide To SQL Server Architecture And Internals 2004.chm)
(λ .The Gurus Guide To Transact SQL - 2000.pdf)
(λ .The Programmer's Guide to SQL - 2003.chm)
(λ .Transact-SQL Cookbook - 2002.chm)
(λ .Wrox.Beginning.Microsoft.SQL.Server.2008.Administration.Apr.2009.pdf)
)
(λ . mysql
(λ .How To Do Everything With PHP & MySQL 2005.pdf)
(λ .JDBC Metadata MySQL and Oracle Recipes A Problem Solution Approach 2006.pdf)
(λ .Managing And Using MySQL.zip)
(λ .Mastering MySQL 4 2003.chm)
(λ .MySQL 2nd Ed.chm)
(λ .MySQL and Java Developers Guide.pdf)
(λ .MySQL Certification Study Guide 2004.chm)
(λ .MySQL Cookbook 2002.chm)
(λ .MySQL Cookbook.pdf)
(λ .MySQL Enterprise Solutions.pdf)
(λ .MySQL - Essential Skills 2004.chm)
(λ .MySQL PHP Database Applications 2001.pdf)
(λ .MySQL PHP Database Applications 2nd Ed 2004.pdf)
(λ .MySQL Pocket Reference 2003.chm)
(λ .MySQL Press MySQL Administrators Guide 2004.chm)
(λ .MySQL Tutorial 2003.chm)
(λ .O'Reilly High Performance MySQL.chm)
(λ .OReilly.High.Performance.MySQL.Second.Edition.Jun.2008.eBook-DDU.pdf)
(λ .O'Reilly MySQL and mSQL.pdf)
(λ .O'Reilly MySQL Cookbook (2nd Edition).chm)
(λ .O'Reilly MySQL in a Nutshell (2nd Edition).chm)
(λ .O'Reilly MySQL Pocket Reference (2nd Edition).pdf)
(λ .O'Reilly MySQL Stored Procedure Programming.chm)
(λ .O'Reilly Understanding MySQL Internals.pdf)
(λ .PHP and MySQL for Dummies, 2nd ed 2004.pdf)
(λ .PHP & MySQL Programming For The Absolute Beginner 2003.chm)
(λ .Professional ADO NET 2 Programming With SQL Server 2005, Oracle, & MySQL 2006.pdf)
(λ .SitePoint Build Your Own Database Driven Website Using PHP MySQL.chm)
(λ .SitePoint Pty Ltd Build Your Own Database Driven Website Using PHP and MySQL 2nd ed.pdf)
(λ .Teach Yourself PHP, MySQL, And Apache All-In-One 2003.chm)
(λ .Teach Yourself PHP, MySQL, And Apache In 24 Hours 2002.chm)
(λ .Teach Yourself PHP MySQL and Apache in 24Hours.pdf)
(λ .The Definitive Guide To MySQL, 2nd Ed 2004.chm)
(λ .The Definitive Guide To MySQL 5, 3rd Ed 2005.pdf)
(λ .Web Database Applications With PHP and MySQL 1st ed.chm)
(λ .Web Database Applications with PHP and MySQL 2nd ed May 2004.chm)
(λ .Wiley.MySQL.Administrators.Bible.May.2009.pdf)
)
(λ .OCP Oracle Database 11g Administrator Certified Professional Study Guide.pdf)
(λ . Oracle
(λ .Crystal Reports 9 On Oracle 2003.chm)
(λ .Documenting Oracle Databases Complete Oracle Database Schema Auditing 2003.pdf)
(λ .Guerrilla Oracle 2003.chm)
(λ .IBM Oracle to DB2 Udb Conversion Guide Dec 2003.chm)
(λ .Java Programming with Oracle ODBC 2002.pdf)
(λ .Mastering Oracle SQL 2002.chm)
(λ .Mastering Oracle SQL 2nd ed 2004.chm)
(λ .OCA Oracle 10g Administration I Study Guide 1Z0-042 2005.pdf)
(λ .OCP Oracle Database 10g New Features for Administrators 2004.pdf)
(λ .Oracle 10g 2Day Training 2003.pdf)
(λ .Oracle 10G By Examples 2004.zip)
(λ .Oracle 11i E-Business Suite From The Front Lines 2004.chm)
(λ .Oracle 8i Interal Service 1999.pdf)
(λ .Oracle 9i DBA JumpStart 2003.chm)
(λ .Oracle 9i R2 Data Warehousing 2003.chm)
(λ .Oracle Application Server 10g Administration Handbook 2004.pdf)
(λ .Oracle Application Server 10g Essentials 2004.chm)
(λ .Oracle Database 10g, A Beginner's Guide.chm)
(λ .Oracle Database 10G - Automatic Sga Memory Management.pdf)
(λ .Oracle Database 10G - Automatic Storage Management.pdf)
(λ .Oracle Database 10g - DBA.pdf)
(λ .Oracle Database 10g High Availability with RAC Flashback and Data Guard 2004.chm)
(λ .Oracle Database 10g New Features.chm)
(λ .Oracle Database 10g - New Features.pdf)
(λ .Oracle Database 10g - Proactive Space & Schema Object Management 2003.pdf)
(λ .Oracle Database 10g SQL 2004.chm)
(λ .Oracle Database 10g - SQLAccess Advisor.pdf)
(λ .Oracle Database 10G - The Complete Reference 2004.pdf)
(λ .Oracle Database 10g XML and SQL Design Build and Manage XML Applications in Java C C++ and PL SQL 2004.chm)
(λ .Oracle Database Foundations 2004.pdf)
(λ .Oracle Data Warehouse Management 2003.pdf)
(λ .Oracle DBA Guide to Data Warehousing and Star Schemas 2003.chm)
(λ .Oracle DBA Made Simple Oracle Database Administration Techniques 2003.pdf)
(λ .Oracle DBA Scripting Quick Reference 2004.chm)
(λ .Oracle DBA SQL Quick Reference 2003.chm)
(λ .Oracle Essentials Oracle Database 10g 3rd ed 2004.chm)
(λ .Oracle High Performance Tuning for 9i & 10g 2004.chm)
(λ .Oracle Index Management Secrets Top Oracle Experts Discuss Index Management Techniques 2003.pdf)
(λ .Oracle Net8 Configuration and Troubleshooting 2001.chm)
(λ .Oracle PL SQL Best Practices 2001.pdf)
(λ .Oracle PL SQL By Example 3rd Ed 2004.chm)
(λ .Oracle PLSQL Interactive Workbook, 2nd ed 2003.chm)
(λ .Oracle PL SQL Language Pocket Reference 2nd ed 2003.chm)
(λ .Oracle PLSQL Programming Guide to Oracle 8i Features 1999.chm)
(λ .Oracle RAC 10g Best Practices.pdf)
(λ .Oracle Real Application Clusters 2004.chm)
(λ .Oracle Security 1998.chm)
(λ .Oracle Space Management Handbook 2003.pdf)
(λ .Oracle SQL Internals Handbook 2003.pdf)
(λ .Oracle sql loader 2001.pdf)
(λ .Oracle Wait Interface A Practical Guide to Performance Diagnostics and Tuning 2004.chm)
(λ .Oracle Web Applications PLSQL Developer's Introduction 1999.chm)
(λ .Oracle XSQL 2003.pdf)
(λ .Professional Oracle Programming 2005.pdf)
(λ .Programming Oracle Triggers And Stored Procedures 3rd ed 2004.chm)
(λ .Tuning Third-party Vendor Oracle Systems 2003.pdf)
(λ .Using Oracle SQL Stored Outlines and Optimizer Plan Stability 2003.pdf)
(λ .Using the Oracle oradebug Utility Debugging Oracle Applications 2002.pdf)
)
(λ .O'Reilly Access 2003 Personal Trainer.chm)
(λ .O'Reilly Access 2007 The Missing Manual.chm)
(λ .O'Reilly Access Cookbook (2nd Edition).chm)
(λ .O'Reilly Access Database Design & Programming (3rd Edition).pdf)
(λ .O'Reilly Head First SQL.pdf)
(λ .O'Reilly Mastering Oracle SQL (2nd Edition).chm)
(λ .O'Reilly Practical PostgreSQL.chm)
(λ . postgresql
(λ .Beginning Databases With PostreSQL - From Novice To Professional, 2nd Ed 2005.pdf)
(λ .PostgreSQL - Introduction And Concepts 2001.pdf)
(λ .PostgreSQL - The Comprehensive Guide, 1st ed 2003.chm)
(λ .PostgreSQL - The Comprehensive Guide, 2nd ed 2005.chm)
)
(λ .STL Cheatsheet.pdf)
)
(λ . Data Mining
(λ .Advanced Data Mining Techniques_Olson DS (2008).pdf)
(λ .Applied Data Mining For Business And Industry_Paolo Giudici (2009).pdf)
(λ .Applied Data Mining-Statistical Methods for Business and Industry_Giudici P (2003).pdf)
(λ .Data Mining-A Heuristic Approach_Abbass HA (2002).pdf)
(λ .Data Mining Concepts And Techniques_Jiawei Han-Micheline Kamber (2000).pdf)
(λ .Data Mining Cookbook_Robert Elliot (2001).pdf)
(λ .Data Mining-Foundations And Practice_Tsau Young Lin (2008).pdf)
(λ .Data Mining-Know It All_Soumen Chakrabarti (2009).pdf)
(λ .Data Mining Methods And Models_Larose DT (2006).pdf)
(λ .Data Mining Patterns-New Methods And Applications_Pascal Poncelet (2008).pdf)
(λ .Data Mining Practical Machine Learning Tools and Techniques 3rd Edition-Mantesh.pdf)
(λ .Dunham - Data Mining.pdf)
(λ .ISR.Encyclopedia.Of.Data.Warehousing.And.Mining.2nd.Edition.Sep.2008.eBook-ELOHiM.pdf)
)
(λ . Data Structures
(λ .CPlusPlus Plus Data Structures, 3rd Ed - Nell Dale.chm)
(λ .Data Structure And Algorithms In C++ 2nd ed - Adam Drozdek.djvu)
(λ .Data Structure And Algorithms In Java - Mitchel Waite.pdf)
(λ .Data Structure For Game Programers - Ron Penton.pdf)
(λ .Data Structures, Algorithms and Program Style Using C - James F. Korsh.chm)
(λ .Data Structures and Algorithm Analysis in C - Mark Allen Weiss.chm)
(λ .Data Structures and Algorithms 3 Multi-dimensional Searching and Computational Geometry - Kurt Mehlhorn.djvu)
(λ .Data Structures and Algorithms - Alfred V. Aho.pdf)
(λ .Data Structures and Algorithms in Java - Robert Lafore.pdf)
(λ .DATA STRUCTURES AND ALGORITHMS USING VISUAL BASIC.NET - MICHAEL MCMILLAN.pdf)
(λ .Data Structures and Algorithms with Object-Oriented Design Patterns in CPlusPlus - Bruno R. Preiss.chm)
(λ .Data Structures and Algorithms with Object-Oriented Design Patterns in CSharp - Bruno R. Preiss.chm)
(λ .Data Structures And Problem Solving Using C++ 2nd ed - Mark Weiss.pdf)
(λ .Data Structures and Program Design in C++ - Robert L. Kruse.pdf)
(λ .DATA STRUCTURES IN JAVA A Laboratory Course - Sandra Andersen.pdf)
(λ .Fundamentals of Data Structures - Ellis Horowitz.chm)
(λ .Fundamentals of OOP and Data Structures in Java - Richard Wiener.pdf)
(λ .Object-Oriented Data Structures Using Java - Nell Dale.pdf)
(λ .The Design And Analysis Of Spatial Data Structures - Hanan Samet.pdf)
)
(λ . Digital Design
(λ .ASIC and FPGA Verification - A Guide To Component Modeling.pdf)
(λ .Complete Digital Design.pdf)
(λ .Digital Design and Fabrication.pdf)
(λ .Digital Design - Mano.pdf)
(λ .Digital Design Principles And Practices Solutions - Wakerly.pdf)
(λ .Digital Design Principles And Practices - Wakerly.pdf)
(λ .Digital Design with CPLD Applications & VHDL - Dueck.pdf)
(λ .Digital Electronics.pdf)
(λ .Digital Logic & Microprocessor Design With VHDL - Hwang.pdf)
(λ .Digital Systems and Applications 2e.pdf)
(λ .Engineering Digital Design 2e - Tinder.pdf)
(λ .fund of digital logic with vhdl design 2e brown.pdf)
(λ .Logic & Computer Design Fundamentals 3e- Mano & Kime.pdf)
(λ .RTL Hardware Design Using VHDL.pdf)
(λ .The Design Warriors Guide to FPGAs.pdf)
(λ .Verilog - A Guide to Digital Design and Synthesis.pdf)
(λ .VHDL - Coding Styles and Methodologies.pdf)
(λ .VHDL Programming by Example.pdf)
)
(λ . DSP-Collection
(λ .Addison, P.S., The Illustrated Wavelet Transform Handbook, IOP, 2002.djvu)
(λ .Girod, B., Rabenstein, R., Stenger, A., Signals and Systems, Wiley, 2001.djvu)
(λ .Gonzales, R.C., Woods, R.E., Digital Image Processing, 2ed, Prentice Hall, 2002.djvu)
(λ .Hayes, M.H., Schaum's Outline of Digital Signal Processing, McGraw-Hill, 1999.pdf)
(λ .Haykin, S., Neural Networks, 2ed, Pearson, 1999.djvu)
(λ .Haykin, S., Veen, B.V., Signals And Systems, Wiley, 1999 [Incomplete] [To Chapter 7].djvu)
(λ .Hsu, H., Schaum's Outline in Theory and Problems of Signals and Systems, McGraw-Hill, 1995.pdf)
(λ .Lyons, R., Understanding Digital Signal Processing, 2ed, Prentice Hall, 2004.chm)
(λ .Meyer-Baese, U., Digital Signal Processing with Field Programmable Gate Arrays, Springer, 2001.djvu)
(λ .Meyer-Baese, U., Digital Signal Processing with Field Programmable Gate Arrays, Springer, 2001.pdf)
(λ .Oppenheim, A., Discrete-Time Signal Processing, Prentice Hall.djvu)
)
(λ . Electronics
(λ .35 Electrical and Electronics Engineering Books.iso)
(λ .Basic Engineering Mathematics [by John Bird].pdf)
(λ .Digital Systems Principles And Applications [by Ronald Tocci].pdf)
(λ .Electrical Engineering 101 [by Darren Ashby].pdf)
(λ .Electronic Devices And Circuit Theory 7th Edition [by Robert L. Boylestad].pdf)
(λ .Electronics for Dummies (2005).pdf)
(λ .Foundations Of Analog And Digital Electronic Circuit[by Anant Agarwal and Jeffrey H. Lang].pdf)
(λ .Fundamentals of Industrial Instrumentation and Process Control [by William Dunn].pdf)
(λ .Fundamentals of Materials Science and Engineering 5th Edition.pdf)
(λ .Instruction Set Reference [by Allen-Bradley].pdf)
(λ .Introductory Circuit Analysis (10th Edition).pdf)
(λ .Jan_M._Rabaey-Digital_Integrated_Circuits-Prentice_Hall(1995).pdf)
(λ .John Bird - Higher Engineering Mathematics.pdf)
(λ .Materials for engineering [by John Martin].pdf)
(λ .OReilly.Programming.Interactivity.Jul.2009.pdf)
(λ .Programmable Controllers Theory and Implementation [L.A. Bryan & E.A. Bryan].PDF)
(λ .Schaum's Outline of Electronic Devices and Circuits, Second Edition [by Jimmie J. Cathey].pdf)
(λ .Springer.Analog.Circuit.Design.Nov.2008.eBook-ELOHiM.pdf)
(λ .Springer.The.NeuroProcessor.An.Integrated.Interface.To.Biological.Neural.Networks.Oct.2008.eBook-ELOHiM.pdf)
(λ .Starting Electronics, 3rd Ed. - (Malestrom).pdf)
(λ .Teach Yourself Electricity and Electronics,4th Edition - (Malestrom).pdf)
)
(λ . Extra
(λ .330 Top Secret Restaurant Recipes.zip)
(λ .D._Knuth-The_TeXbook.pdf)
(λ .Douglas_R._Hofstadter-Gödel,_Escher,_Bach__An_Eternal_Golden_Braid_(Twentieth-Anniversary_Edition)-Basic_Books(1999).pdf)
(λ .MITLockGuide.pdf)
(λ .Richard_Feynman-Feynman_Lectures_on_Physics,_Vol._1_Exercises-1964._Volume_1-Addison-Wesley(1964).pdf)
(λ .Richard_P._Feynman-Feynman_Lectures_on_Computation__-Addison-Wesley(1996).pdf)
(λ .Richard_P._Feynman-Feynman_Lectures_on_Physics,_Vol._2_Exercises-1964._Volume_2-Addison-Wesley(1964).pdf)
(λ .Richard_P._Feynman-Feynman_Lectures_on_Physics,_Vol._3_Exercises-1965._Volume_3-Addison-Wesley(1965).pdf)
(λ .Richard_P._Feynman-''Surely_You're_Joking,_Mr._Feynman!''__Adventures_of_a_Curious_Character(1997).pdf)
)
(λ . Game Development
(λ .Computer Gaming World - Mar 2006.pdf)
(λ . Designing
(λ .3ds Max 2009 Beyond the Basics.zip)
(λ .3DS Max 2009 Bible.pdf)
(λ .3DS Max 2009 Essential Training.zip)
(λ .3ds Max 6 Bible.pdf)
(λ .Adobe Creative Suite 2 Classroom In A Book.chm)
(λ .Adobe GoLive CS2 Classroom in a Book.chm)
(λ .Adobe Illustrator CS2 Classroom in a Book.chm)
(λ .Adobe InDesign CS2 Classroom in a Book.chm)
(λ .Adobe Photoshop CS2 Classroom in a Book.chm)
(λ .Animating Real-Time Game Characters.pdf)
(λ .A Theory Of Fun In Game Design.pdf)
(λ .Beginning Game Art In 3DS Max 8.pdf)
(λ .Beginning Game Level Design.pdf)
(λ .Character Development and Storytelling for Games.pdf)
(λ .Chris Crawford on Game Design.chm)
(λ .Deconstructing the Elements with 3ds Max 2nd Ed.pdf)
(λ .Digital Animation Bible.pdf)
(λ .Digital Character Design & Painting The Photoshop CS Edition.chm)
(λ .Digital Lighting and Rendering.pdf)
(λ .Easy Guide to Photoshop CS2 Image Editing.pdf)
(λ .Example Design Documents.zip)
(λ .Facial Modeling and Animation Done Right.pdf)
(λ .Focus On 3D Models.pdf)
(λ .Game Architecture and Design.pdf)
(λ .Game Character Design Complete.pdf)
(λ .Game Design Foundations.chm)
(λ .Game Design Theory and Practice.chm)
(λ .Game Development and Production.pdf)
(λ .Hacking Photoshop CS2.pdf)
(λ .Introducing 3ds Max 2008.pdf)
(λ .Introducing 3ds Max 9.pdf)
(λ .Level of Detail for 3D Graphics.pdf)
(λ .Modeling a Character in 3DS Max, 2nd Edition.pdf)
(λ .Model Rig Animate With 3ds Max 7.chm)
(λ .The Game Animator's Guide To Maya.pdf)
(λ .Ultimate Game Design Building Game Worlds.pdf)
)
(λ .Elsevier Creating Games with Unity and Maya.pdf)
(λ .Game Developer - Game Career Guide Fall 2005.pdf)
(λ .Game Developer - Game Career Guide Fall 2008.pdf)
(λ . Programming
(λ .3D Computer Graphics - A Mathematical Introduction with OpenGL.pdf)
(λ .3D Game Engine Architecture.pdf)
(λ .3D_Game_Engine_Design_-_Eberly.pdf)
(λ .3D Game Engine Design .pdf)
(λ .3D Game Engine Programming .pdf)
(λ .3D Game Programming All In One.pdf)
(λ .3D Geometry Tuts.zip)
(λ .3D Math Primer for Graphics and Game Development.pdf)
(λ .3D Math Primer for Graphics and Game Development Souce Code.zip)
(λ .Advanced 3D Game Programming All in One.pdf)
(λ .Advanced 3D Game Programming with DirectX 9.0.pdf)
(λ .Advanced Animation with DirectX.pdf)
(λ .Advanced Graphics Programming Techniques Using Opengl.pdf)
(λ .Advanced Graphics Programming Using OpenGL.pdf)
(λ .Advanced WinSock Multiplayer Game Programming Multicasting.pdf)
(λ .A First Course in Linear Algebra.pdf)
(λ .AI for Game Developers - David M. Bourg, Glenn Seeman.pdf)
(λ .AI for Game Developers Examples.zip)
(λ .AI Game Development.chm)
(λ .AI Game Engine Programming.pdf)
(λ .AI Game Wisdom.pdf)
(λ .Algorithms And Networking For Computer Games.pdf)
(λ .Artificial Intelligence for Games.pdf)
(λ .Artificial Intelligence for Games Source Code.zip)
(λ .Beginning 3D Game Programming.chm)
(λ .Beginning C++ Game Programming.chm)
(λ .Beginning C# Game Programming.pdf)
(λ .Beginning C++ Game Programming.pdf)
(λ .Beginning C# Game Programming Source Code.zip)
(λ .Beginning Direct3D Game Programming, Second Edition.pdf)
(λ .Beginning DirectX 9.pdf)
(λ .Beginning Game Audio Programming.chm)
(λ .Beginning Game Programming.pdf)
(λ .Beginning Math and Physics for Game Programmers.chm)
(λ .Beginning OpenGL Game Programming.pdf)
(λ .Beginning OpenGL Game Programming Source Code.zip)
(λ .Cengage-Multi.Threaded.Game.Engine.Design.2010.RETAiL.EBook.pdf)
(λ .C Game Programming For Dummies 2.pdf)
(λ .C++ Module II.pdf)
(λ .C++ Module I.pdf)
(λ .Collision Detection in Interactive 3D Environments.pdf)
(λ .Computer_Graphics:_C_Version_-_Hearn,_Baker.pdf)
(λ .Computer Organization And Design The Hardware Software Interface.pdf)
(λ .Core Techniques And Algorithms in Game Programming.chm)
(λ .Core Techniques and Algorithms in Game Programming.pdf)
(λ .Creating Games In C++ - A Step By Step Guide.chm)
(λ .CryENGINE 2 Features.pdf)
(λ .Cutting Edge Direct3D Programming.chm)
(λ .Data Structures for Game Programmers.pdf)
(λ .DirectX 3D Graphics Programming Bible.pdf)
(λ .DirectX 8.1 Programming for C PlusPlus.chm)
(λ .DirectX 9 Graphics - The Definitive Guide to Direct3D.pdf)
(λ .Directx 9 User Interfaces - Design and Implementation.pdf)
(λ .Essential Mathematics for Games and Interactive Applications 2nd Edition.pdf)
(λ .Essential Mathematics for Games and Interactive Applications.pdf)
(λ .Evolution of GPUs.pdf)
(λ .Focus on Mod Programming In Quake III Arena.pdf)
(λ .Focus On Photon Mapping.chm)
(λ .Focus on SDL.pdf)
(λ .Fundamentals of Audio and Video Programming for Games.chm)
(λ .Game Coding Complete.chm)
(λ .Game Engine Toolset Development.pdf)
(λ .Game Physics Engine Development.pdf)
(λ .Game Physics Engine Development Source Code.zip)
(λ .Game Physics.pdf)
(λ .Game Programming All in One.pdf)
(λ .Game Programming Gems 1.pdf)
(λ .Game Programming Gems 2.pdf)
(λ .Game Programming Gems 3.pdf)
(λ .Game Programming Gems 4.pdf)
(λ .GameProgrammingGems5-CDROM.zip)
(λ .GameProgrammingGems6-CDROM.zip)
(λ .Game Programming Gems 6.pdf)
(λ .Game Programming Golden Rules.pdf)
(λ .Game Programming Tricks of the Trade.pdf)
(λ .Game Programming with DirectX 9.0.pdf)
(λ .Game Scripting Mastery.pdf)
(λ .GeForce 8800 GPU Architecture Technical Brief .pdf)
(λ .GPU Gems 1.djvu)
(λ .GPU Gems 2.djvu)
(λ .GPU Gems 3.chm)
(λ .GPU Programming Guide.pdf)
(λ .Graphics Gems 1.pdf)
(λ .Graphics Gems 2.pdf)
(λ .Graphics Gems 3.pdf)
(λ .Graphics Gems 4.pdf)
(λ .Graphics Gems 5.pdf)
(λ .Graphics Gems Series Source Code.zip)
(λ .Graphics Programming Black Book.pdf)
(λ .Graphics Programming with DirectX 9 Module II.pdf)
(λ .Graphics Programming with DirectX 9 Module I.pdf)
(λ .Half Life 2 Mods For Dummies.pdf)
(λ .Hardcore AI for Computer Games and Animation.pdf)
(λ .How GPUs Work.pdf)
(λ .Inside Direct3D.chm)
(λ .Introduction to 3D Game Programming with DirectX 9.0c Shader Approach.chm)
(λ .Introduction to 3D Game Programming with DirectX 9.0c Shader Approach Source Code.zip)
(λ .Introduction to 3D Game Programming with DirectX 9.0 Source Code.zip)
(λ .Introduction to 3D Game Programming with DirectX 9.pdf)
(λ .Introduction_to_Computer_Graphics_-_Foley.pdf)
(λ .Introduction to Game Programming with C++.chm)
(λ .Isometric Game Programming With DirectX 7.pdf)
(λ .Learn Vertex and Pixel Shader Programming With DirectX 9.pdf)
(λ .Level of Detail for 3D Graphics.pdf)
(λ .Linear Algebra Demystified.pdf)
(λ .Linux 3D Graphics Programming.pdf)
(λ .Linux Games Programming.pdf)
(λ .Lumenex Engine Technical Brief.pdf)
(λ .Managed DirectX 9 Kick Start - Graphics and Game Programming.chm)
(λ .Math Course Description.pdf)
(λ .Mathematical Physics - A Modern Introduction To It's Foundations.pdf)
(λ .Mathematics for 3D Game Programming and Computer Graphics, Second Edition.pdf)
(λ .Mathematics for Computer Graphics.pdf)
(λ .Mathematics_for_Computer_Graphics_-_Vince.pdf)
(λ .Mathematics for Game Developers.pdf)
(λ .Mathematics_for_Game_Developers_-_Tremblay.pdf)
(λ .Memory Management - Algorithms And Implementation In C-C++.pdf)
(λ .Microsoft DirectX 10 Technical Brief.pdf)
(λ .MUD Game Programming.chm)
(λ .Multiplayer Game Programming.pdf)
(λ .Networking and Online Games - Understanding and Engineering Multiplayer Internet Games.pdf)
(λ .OpenGL Game Development.pdf)
(λ .OpenGL Programming Guide.pdf)
(λ .OpenGL Red Book and Blue Book.zip)
(λ .OpenGL Reference Manual.pdf)
(λ .OpenGL.Shading.Language.2nd.Edition.(Orange.Book).2006.pdf)
(λ .OpenGL Shading Language.chm)
(λ .OpenGL SuperBible 4th Edition.pdf)
(λ .OpenGL Super Bible.pdf)
(λ .Physically-Based Rendering - From Theory To Implementation.pdf)
(λ .Physics Course Description.pdf)
(λ .Physics for Game Developers.pdf)
(λ .Polygon Collision Tutorials.zip)
(λ .Postmortems From Game Developers.pdf)
(λ .Probability for Dummies.pdf)
(λ .Probability Theory - The Logic of Science.pdf)
(λ .Programming AI by Example Source Code.zip)
(λ .Programming Game AI by Example.pdf)
(λ .Programming Multiplayer Games.pdf)
(λ .Programming Role Playing Games with DirectX, 2nd Edition.pdf)
(λ .Programming Role-Playing Games With DirectX 8.pdf)
(λ .Quake 4 Mods For Dummies.pdf)
(λ .Real-Time Collision Detection.pdf)
(λ .Real-time Rendering 2nd ed.djvu)
(λ .Real-Time Rendering Tricks and Techniques in DirectX.pdf)
(λ .Real Time Shader Programming.chm)
(λ .Shaders for Game Programming and Artists.pdf)
(λ .ShaderX1 - Vertex and Pixel Shader Tips and Tricks.pdf)
(λ .ShaderX2 - Introductions and Tutorials with DirectX9.pdf)
(λ .Shaderx2 - Shader Programming Tips & Tricks With Directx 9.pdf)
(λ .ShaderX3 - Advanced Rendering with DirectX and OpenGL.pdf)
(λ .Software Engineering and Computer Games.chm)
(λ .Software Engineering - for Game Developers.pdf)
(λ .Source Engine Infosheet.pdf)
(λ .Special Effects Game Programming with DirectX.pdf)
(λ .Special Effects Game Programming With DirectX Source Code.zip)
(λ .Strategy Game Programming With Directx 9.0.chm)
(λ .Teach Yourself Game Programming in 24 Hours.chm)
(λ .The Elements of Euclid.pdf)
(λ .The Official Guide to Learning OpenGL, Version 2.1.pdf)
(λ .Tricks of the 3D Game Programming Gurus - Advanced 3D Graphics and Rasterization.pdf)
(λ .Tricks of the Windows Game Programming Gurus - Fundamentals of 2D and 3D Game Programming.pdf)
(λ .Tricks of the Windows Game Programming Gurus, Second Edition.chm)
(λ .Using Opengl In Visual C++.pdf)
(λ .Vector Game Math Processors.pdf)
(λ .Vector Game Math Processors Source Code.zip)
(λ .Visualizing Quaternions.pdf)
(λ .Zen of Graphics Programming - Michael Abrash.zip)
)
)
(λ . Information Retrieval
(λ .Information Retrieval Data Structures And Algorithms_FRAKES WB (2004).pdf)
(λ .Information Storage And Retrieval Systems-Theory And Impl 2e_Kowalski GJ (2002).pdf)
(λ .Interactive Information Retrieval In Digital Environments_Iris Xie (2008).pdf)
(λ .Modern Information Retrieval_Ricardo Baeza-Yates (1999).pdf)
(λ .Multimedia Information Storage And Retrieval Techniques And Technologies_Tse PKC (2008).pdf)
(λ .Querying Databases Privately-A New Approach To Private Information Retrieval_Asanov D (2004).pdf)
)
(λ . Information Theory
(λ .Claude Shannon - Mathematical Theory of Communication.pdf)
(λ . Coding Theory
(λ .Algorithmic introduction to coding theory - M. Sudan.pdf)
(λ .Coding Theory And Algebraic Geometry - H. Stichtenoth.pdf)
(λ .Coding Theory - John C. Bowman.pdf)
(λ .Coding Theory The Essentials - D.G Hoffman.pdf)
(λ .Error Control Coding Fundamentals and Applications - Shu Lin.pdf)
(λ .ESSENTIALS OF ERROR-CONTROL CODING - Patrick Guy Farrell.pdf)
(λ .EXPONENTIAL SUMS IN CODING THEORY,CRYPTOLOGY AND ALGORITHMS - Igor E. Shparlinski.pdf)
(λ .Finite geometry and coding theory - Peter Cameron.pdf)
(λ .Fundamentals of Error-Correcting Codes - W. Cary Huffman.pdf)
(λ .Introduction To Coding Theory And Algebraic Geometry - Jacobus Van Lint.pdf)
(λ .Introduction To Error Correcting Codes - Michael Purser.pdf)
(λ .Network Coding Theory - Raymond Yeung.pdf)
(λ .Notes on Coding Theory - J.I.Hall.pdf)
(λ .The Art of Error Correcting Coding - Robert H. Morelos-Zaragoza.djvu)
)
(λ . Compression
(λ .Compressed Image File Formats JPEG, PNG, GIF, XBM, BMP - John Miano.pdf)
(λ .Data Compression The Complete Reference 3rd Ed - David Salomon.pdf)
(λ .Fast and Efficient Algorithms for Video Compression and Rate Control - Dzung Tien Hoang.pdf)
(λ .Fractal Image Compression Theory and Application - Yuval Fisher.djvu)
(λ .H.264 and MPEG-4 Video Compression Video Coding for Next-generation Multimedia - Iain E. G. Richardson.pdf)
(λ .IMAGE and VIDEO COMPRESSION for MULTIMEDIA ENGINEERING Fundamentals, Algorithms, and Standards - Yun Q. Shi.pdf)
(λ .Introduction to Data Compression - Guy E. Blelloch.PDF)
(λ .JPEG2000 Standard for Image Compression Concepts, Algorithms and VLSI Architectures - Tinku Acharya.pdf)
(λ .PNG The Definitive Guide - Greg Roelofs.pdf)
(λ .Real-Time Video Compression Techniques and Algorithms - Raymond Westwater.pdf)
(λ .Standard Codecs Image Compression to Advanced Video Coding - Mohammed Ghanbari.chm)
(λ .Structures Of String Matching And Data Compression - Jesper Larsson.pdf)
(λ .The Data Compression Book 2nd Ed - Mark Nelson.pdf)
(λ .THE TRANSFORM AND DATA COMPRESSION HANDBOOK - K.R. RAO.PDF)
(λ .Video COdec Design Developing Image And Video Compression Systems - Iain Richardson.pdf)
(λ .Video Demystified A Handbook for the Digital Engineer 4th ed - keith Jack.pdf)
)
(λ . Information Theory
(λ .ALGORITHMIC INFORMATION THEORY - G.J. Chaitin.pdf)
(λ .Elements Of Information Theory 2nd ed - Thomas Cover.pdf)
(λ .Entropy and Information Theory - Robert M. Gray.pdf)
(λ .INFORMATION RANDOMNESS & INCOMPLETENESS Papers on Algorithmic Information Theory 2nd Ed - G J Chaitin.pdf)
(λ .Information Theory and Quantum Physics - H.S Green.djvu)
(λ .Information theory and statistics - Solomon Kullback.pdf)
(λ .Information Theory Inference And Learning Algorithms - David Mackay.pdf)
(λ .Information Theory - Robert Ash.pdf)
(λ .Neural Networks And Information Theory - Colin Fyfe.pdf)
(λ .UNCERTAINTY AND INFORMATION Foundations of Generalized Information Theory - George J. Klir.pdf)
)
)
(λ . Maths
(λ . Algebra
(λ .Algebra Know-It-All (Malestrom).pdf)
(λ .Bilinear_operator.html)
(λ .Foundations of Mathematical Logic.djvu)
(λ .Introduction_to_Linear_Algebra.djvu)
(λ .Jim_Hefferon_-_Linear_Algebra.pdf)
)
(λ . Calculus
(λ .Academic.Press.Handbook.Of.Mathematical.Formula.And.Integrals.4th.Edition.Jan.2008.eBook-ELOHiM.pdf)
(λ .A Course in Mathematical Analysis.pdf)
(λ .Advanced Calculus 2nd Edition - Spiegel.pdf)
(λ .Calculus_6th_ed_sols_manual.pdf)
(λ .Calculus - Early Transcendentals 6e.pdf)
(λ .Calculus - J. Stewart.pdf)
(λ .Calculus Know-It-All - Beginner to Advanced, and Everything in Between (Malestrom).pdf)
(λ .Calculus Made Easy.pdf)
(λ .California Calculus.pdf)
(λ .Hawaii Calculus.pdf)
(λ .Michael Spivak - Calculus.pdf)
(λ .Tom Apostol - Calculus vol.1 - One-variable Calculus, with an Introduction to Linear Algebra (1975).pdf)
(λ .Tom Apostol - Calculus Vol.2 - Multi-Variable Calculus and Linear Algebra with Applications.pdf)
)
(λ . Comp Sci Math
(λ .Benjamin_C._Pierce-Advanced_topics_in_types_and_programming_languages-The_MIT_Press(2004).pdf)
(λ .Benjamin_C._Pierce-Types_and_Programming_Languages-The_MIT_Press(2002).pdf)
(λ .Computer Science An Overview, 11e.pdf)
(λ .Concrete Mathematics A Foundation for Computer Science~tqw~_darksiderg.pdf)
(λ .Discrete Math in Computer Science - Bogart , Stein.pdf)
(λ .Foundations of Computer Science.pdf)
(λ .MIT Math For Computer Science.html)
(λ .Springer - Mathematical Methods In Computer Science.pdf)
)
(λ . Computer Arithmetic
(λ .Computer Arithmetic__netbks.com.pdf)
)
(λ . Digital Engineering
(λ .Electrical Engineering know it all.pdf)
(λ .Mechanical Engineering Principles.pdf)
)
(λ . Geometry
(λ .Geometry.pdf)
)
(λ . Linear Algebra
(λ .Elementary Linear Algebra.pdf)
(λ .Linear Algebra and its Applns 4th ed (intro txt) - D. Lay (Pearson, 2012) BBS.pdf)
(λ .Linear Algebra - Jim Heffeson.pdf)
(λ .New Linear Algebra.pdf)
)
(λ .Mathmatical Expressions For Dummies.pdf)
(λ . Matrix Algebra
(λ .Introduction to Matrix Algebra.pdf)
(λ .Matrix Algebra - Kaw.pdf)
)
(λ .Sol Discrete and Combinatorial Mathematics 5ed R. Grimaldi Part 1 BZUPAGES.COM.pdf)
(λ . Statistics
(λ .A Course in Mathematical Statistics 2nd edition.pdf)
(λ .Introduction to Probability and Statistics for Engineers and Scientists 0125980574.pdf)
(λ .Introduction to Probability and Statistics.pdf)
(λ .OReilly.Statistics.in.a.Nutshell.A.Desktop.Quick.Reference.Aug.2008.pdf)
(λ .Statistics For Dummies.chm)
)
(λ . Trigonemetry
(λ .TrigMecMathBook.pdf)
)
(λ . Vector Calculus
(λ .Vector Calc-Calc 3.pdf)
(λ .Vector Calc Open Math.pdf)
)